| /freebsd-14.2/contrib/llvm-project/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 | 43 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function
|
| /freebsd-14.2/contrib/llvm-project/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 | 819 assert(getStorageClass() == XCOFF::C_FILE && 825 assert(getStorageClass() == XCOFF::C_FILE && 830 XCOFF::StorageClass getStorageClass() const { return GETVALUE(StorageClass); }
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 596 static StorageClass getStorageClass(const Decl *D) { in getStorageClass() function 601 return VD->getStorageClass(); in getStorageClass() 603 return FD->getStorageClass(); in getStorageClass() 645 if (Var->getStorageClass() != SC_Extern && in getLVForNamespaceScopeDecl() 654 Var->getStorageClass() == SC_None) in getLVForNamespaceScopeDecl() 657 if (PrevVar->getStorageClass() == SC_Static) in getLVForNamespaceScopeDecl() 776 if (Var->getStorageClass() == SC_PrivateExtern) in getLVForNamespaceScopeDecl() 1378 if (Var->getStorageClass() == SC_PrivateExtern) in getLVForLocalDecl() 3716 if (Redecl->getStorageClass() != SC_Extern) in redeclForcesDefMSVC() 3783 Prev->getStorageClass() != SC_Extern) in doesDeclarationForceExternallyVisibleDefinition() [all …]
|
| H A D | DeclPrinter.cpp | 715 switch (D->getStorageClass()) { in VisitFunctionDecl() 991 StorageClass SC = D->getStorageClass(); in VisitVarDecl()
|
| H A D | JSONNodeDumper.cpp | 894 StorageClass SC = VD->getStorageClass(); in VisitVarDecl() 931 StorageClass SC = FD->getStorageClass(); in VisitFunctionDecl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFFLinkGraphBuilder.cpp | 512 if (Symbol.getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC || in createDefinedSymbol() 513 Symbol.getStorageClass() == COFF::IMAGE_SYM_CLASS_LABEL) { in createDefinedSymbol() 537 formatv("{0:d}", Symbol.getStorageClass()) + in createDefinedSymbol()
|
| /freebsd-14.2/contrib/llvm-project/lld/COFF/ |
| H A D | MapFile.cpp | 110 symRef.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL) { in getSymbols() 111 if (symRef.getStorageClass() == COFF::IMAGE_SYM_CLASS_STATIC) in getSymbols()
|
| /freebsd-14.2/contrib/llvm-project/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 | 269 if (CoffSym.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol() 276 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | XCOFFObjectWriter.cpp | 74 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function 75 return MCSym->getStorageClass(); in getStorageClass() 904 SymbolRef.getStorageClass(), in writeSymbolEntryForCsectMemberLabel() 928 SymbolRef.getStorageClass()); in writeSymbolEntryForCsectMemberLabel() 1149 Csect.MCSec->getStorageClass()); in writeSymbolTable() 1165 Csect.MCSec->getStorageClass()); in writeSymbolTable()
|
| H A D | MCXCOFFStreamer.cpp | 122 Symbol->setExternal(cast<MCSymbolXCOFF>(Symbol)->getStorageClass() != in emitCommonSymbol()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 1152 StorageClass getStorageClass() const { in getStorageClass() function 1169 if (getStorageClass() == SC_None) { in hasLocalStorage() 1181 if (getStorageClass() == SC_Register && !isLocalVarDeclOrParm()) in hasLocalStorage() 1187 return getStorageClass() >= SC_Auto; in hasLocalStorage() 1193 return (getStorageClass() == SC_Static || in isStaticLocal() 1195 (getStorageClass() == SC_None && getTSCSpec() == TSCS_thread_local)) in isStaticLocal() 1202 return getStorageClass() == SC_Extern || in hasExternalStorage() 1203 getStorageClass() == SC_PrivateExtern; in hasExternalStorage() 2757 StorageClass getStorageClass() const { in getStorageClass() function 2798 bool isStatic() const { return getStorageClass() == SC_Static; } in isStatic()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCAsmBackend.cpp | 187 S->getStorageClass() == XCOFF::C_WEAKEXT; in shouldForceRelocation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | XCOFFObjectFile.cpp | 309 if (XCOFF::C_FILE == XCOFFSym.getStorageClass()) in getSymbolType() 650 XCOFF::StorageClass SC = XCOFFSym.getStorageClass(); in getSymbolFlags() 1299 XCOFF::StorageClass SC = getStorageClass(); in isCsectSymbol() 1350 if (getStorageClass() & 0x80) in getName()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexDecl.cpp | 233 if (FD->getStorageClass() != DFD->getStorageClass() || in gatherTemplatePseudoOverrides()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGHLSLRuntime.cpp | 120 if (D->getStorageClass() == SC_Static) { in addConstant()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 482 StorageClass SC = Var->getStorageClass(); in getFragmentsForVar() 642 switch (Func->getStorageClass()) { in getFragmentsForFunction()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 3553 FD->getStorageClass() == SC_Extern); in canRedefineFunction() 3752 New->getStorageClass() == SC_Static && in MergeFunctionDecl() 4658 Old->getStorageClass() == SC_None && in MergeVarDecl() 4693 if (New->getStorageClass() == SC_Static && in MergeVarDecl() 8814 if (NewVD->getStorageClass() != SC_Static) { in CheckVariableDeclarationType() 12302 if (FD->getStorageClass() == SC_Static) in CheckMain() 13899 if (VDecl->getStorageClass() == SC_Extern && in AddInitializerToDecl() 14069 if (Var->getStorageClass() == SC_Extern) { in ActOnUninitializedDecl() 14302 switch (VD->getStorageClass()) { in ActOnCXXForRangeDecl() 14416 var->getStorageClass() != SC_Register && in CheckCompleteVariableDeclaration() [all …]
|
| H A D | SemaLambda.cpp | 1685 From->getTypeSourceInfo(), From->getStorageClass(), in addFunctionPointerConversion() 2265 From->getStorageClass(), in BuildBlockForLambdaConversion()
|
| H A D | SemaStmtAsm.cpp | 200 if (Variable && Variable->getStorageClass() == SC_Register) { in extractRegisterName()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 855 << "(scl " << format("%3x", unsigned(Symbol->getStorageClass())) in printCOFFSymbolTable()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 682 FunctionDeclBits.addBits((uint32_t)D->getStorageClass(), /*BitWidth=*/3); in VisitFunctionDecl() 1091 VarDeclBits.addBits(D->getStorageClass(), /*BitWidth=*/3); in VisitVarDecl() 1200 !D->hasExtInfo() && D->getStorageClass() == 0 && !D->isInvalidDecl() && in VisitParmVarDecl()
|