| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCSectionXCOFF.h | 100 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function 101 return QualName->getStorageClass(); in getStorageClass()
|
| H A D | MCSymbolXCOFF.h | 40 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Object/ |
| H A D | COFF.h | 338 uint8_t getStorageClass() const { in getStorageClass() function 361 getStorageClass() != COFF::IMAGE_SYM_CLASS_STATIC) in getSectionDefinition() 368 getStorageClass() != COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL) in getWeakExternal() 378 return getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL; in isExternal() 392 return getStorageClass() == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL; in isWeakExternal() 402 return getStorageClass() == COFF::IMAGE_SYM_CLASS_FUNCTION; in isFunctionLineInfo() 410 return getStorageClass() == COFF::IMAGE_SYM_CLASS_FILE; in isFileRecord() 414 return getStorageClass() == COFF::IMAGE_SYM_CLASS_SECTION; in isSection() 421 getStorageClass() == COFF::IMAGE_SYM_CLASS_EXTERNAL && in isSectionDefinition() 423 bool isOrdinarySection = getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC; in isSectionDefinition() [all …]
|
| H A D | XCOFFObjectFile.h | 795 assert(getStorageClass() == XCOFF::C_FILE && 801 assert(getStorageClass() == XCOFF::C_FILE && 806 XCOFF::StorageClass getStorageClass() const { return GETVALUE(StorageClass); }
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | InterfaceStubFunctionsConsumer.cpp | 61 if ((VD->getStorageClass() == StorageClass::SC_Extern) || in WriteNamedDecl() 62 (VD->getStorageClass() == StorageClass::SC_Static && in WriteNamedDecl() 78 if (FD->getStorageClass() == StorageClass::SC_Static) in WriteNamedDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Decl.cpp | 633 static StorageClass getStorageClass(const Decl *D) { in getStorageClass() function 638 return VD->getStorageClass(); in getStorageClass() 640 return FD->getStorageClass(); in getStorageClass() 657 if (getStorageClass(D->getCanonicalDecl()) == SC_Static) { in getLVForNamespaceScopeDecl() 682 if (Var->getStorageClass() != SC_Extern && in getLVForNamespaceScopeDecl() 683 Var->getStorageClass() != SC_PrivateExtern && in getLVForNamespaceScopeDecl() 690 if (PrevVar->getStorageClass() == SC_PrivateExtern && in getLVForNamespaceScopeDecl() 691 Var->getStorageClass() == SC_None) in getLVForNamespaceScopeDecl() 694 if (PrevVar->getStorageClass() == SC_Static) in getLVForNamespaceScopeDecl() 813 if (Var->getStorageClass() == SC_PrivateExtern) in getLVForNamespaceScopeDecl() [all …]
|
| H A D | DeclPrinter.cpp | 610 switch (D->getStorageClass()) { in VisitFunctionDecl() 863 StorageClass SC = D->getStorageClass(); in VisitVarDecl()
|
| H A D | JSONNodeDumper.cpp | 837 StorageClass SC = VD->getStorageClass(); in VisitVarDecl() 874 StorageClass SC = FD->getStorageClass(); in VisitFunctionDecl()
|
| H A D | TextNodeDumper.cpp | 1682 StorageClass SC = D->getStorageClass(); in VisitFunctionDecl() 1777 StorageClass SC = D->getStorageClass(); in VisitVarDecl()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFFLinkGraphBuilder.cpp | 502 if (Symbol.getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC || in createDefinedSymbol() 503 Symbol.getStorageClass() == COFF::IMAGE_SYM_CLASS_LABEL) { in createDefinedSymbol() 527 formatv("{0:d}", Symbol.getStorageClass()) + in createDefinedSymbol()
|
| /openbsd-src/gnu/llvm/lld/COFF/ |
| H A D | MapFile.cpp | 109 symRef.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL) { in getSymbols() 110 if (symRef.getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC) in getSymbols()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | XCOFFObjectWriter.cpp | 74 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function 75 return MCSym->getStorageClass(); in getStorageClass() 827 SymbolRef.getStorageClass(), in writeSymbolEntryForCsectMemberLabel() 851 SymbolRef.getStorageClass()); in writeSymbolEntryForCsectMemberLabel() 1039 Csect.MCSec->getStorageClass()); in writeSymbolTable() 1055 Csect.MCSec->getStorageClass()); in writeSymbolTable()
|
| H A D | MCXCOFFStreamer.cpp | 96 Symbol->setExternal(cast<MCSymbolXCOFF>(Symbol)->getStorageClass() != in emitCommonSymbol()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 135 if (CoffSym.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol() 142 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
|
| H A D | ARMWinEHPrinter.cpp | 268 if (CoffSym.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol() 275 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | xcoff2yaml.cpp | 133 Sym.StorageClass = SymbolEntRef.getStorageClass(); in dumpSymbols()
|
| H A D | coff2yaml.cpp | 289 Sym.Header.StorageClass = Symbol.getStorageClass(); in dumpSymbols()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Decl.h | 1127 StorageClass getStorageClass() const { in getStorageClass() function 1144 if (getStorageClass() == SC_None) { in hasLocalStorage() 1156 if (getStorageClass() == SC_Register && !isLocalVarDeclOrParm()) in hasLocalStorage() 1162 return getStorageClass() >= SC_Auto; in hasLocalStorage() 1168 return (getStorageClass() == SC_Static || in isStaticLocal() 1170 (getStorageClass() == SC_None && getTSCSpec() == TSCS_thread_local)) in isStaticLocal() 1177 return getStorageClass() == SC_Extern || in hasExternalStorage() 1178 getStorageClass() == SC_PrivateExtern; in hasExternalStorage() 2681 StorageClass getStorageClass() const { in getStorageClass() function 2722 bool isStatic() const { return getStorageClass() == SC_Static; } in isStatic()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | XCOFFObjectFile.cpp | 305 if (XCOFF::C_FILE == XCOFFSym.getStorageClass()) in getSymbolType() 646 XCOFF::StorageClass SC = XCOFFSym.getStorageClass(); in getSymbolFlags() 1259 XCOFF::StorageClass SC = getStorageClass(); in isCsectSymbol() 1310 if (getStorageClass() & 0x80) in getName()
|
| /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 356 StorageClass SC = Var->getStorageClass(); in getFragmentsForVar() 408 switch (Func->getStorageClass()) { in getFragmentsForFunction()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 233 if (FD->getStorageClass() != DFD->getStorageClass() || in gatherTemplatePseudoOverrides()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGHLSLRuntime.cpp | 120 if (D->getStorageClass() == SC_Static) { in addConstant()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaLambda.cpp | 1476 From->getTypeSourceInfo(), From->getStorageClass(), in addFunctionPointerConversion() 2046 From->getStorageClass(), in BuildBlockForLambdaConversion()
|
| H A D | SemaDecl.cpp | 3481 FD->getStorageClass() == SC_Extern); in canRedefineFunction() 3680 New->getStorageClass() == SC_Static && in MergeFunctionDecl() 4576 Old->getStorageClass() == SC_None && in MergeVarDecl() 4611 if (New->getStorageClass() == SC_Static && in MergeVarDecl() 4636 else if (New->getCanonicalDecl()->getStorageClass() != SC_Static && in MergeVarDecl() 4638 Old->getCanonicalDecl()->getStorageClass() == SC_Static) { in MergeVarDecl() 7873 NewVD->isStaticDataMember() || NewVD->getStorageClass() != SC_None); in ActOnVariableDeclarator() 10340 if (SC != Info->getTemplate()->getTemplatedDecl()->getStorageClass()) in ActOnFunctionDeclarator() 11956 if (FD->getStorageClass() == SC_Static) in CheckMain() 13297 } else if (VDecl->getStorageClass() == SC_Static) { in AddInitializerToDecl() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 845 << "(scl " << format("%3x", unsigned(Symbol->getStorageClass())) in printCOFFSymbolTable()
|