Home
last modified time | relevance | path

Searched refs:getStorageClass (Results 1 – 25 of 53) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionXCOFF.h100 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function
101 return QualName->getStorageClass(); in getStorageClass()
H A DMCSymbolXCOFF.h43 XCOFF::StorageClass getStorageClass() const { in getStorageClass() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DCOFF.h338 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 DXCOFFObjectFile.h819 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 DInterfaceStubFunctionsConsumer.cpp61 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 DDecl.cpp596 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 DDeclPrinter.cpp715 switch (D->getStorageClass()) { in VisitFunctionDecl()
991 StorageClass SC = D->getStorageClass(); in VisitVarDecl()
H A DJSONNodeDumper.cpp894 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 DCOFFLinkGraphBuilder.cpp512 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 DMapFile.cpp110 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 DWin64EHDumper.cpp135 if (CoffSym.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
142 CS.getStorageClass() != COFF::IMAGE_SYM_CLASS_LABEL && in getPreferredSymbol()
H A DARMWinEHPrinter.cpp269 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 DXCOFFObjectWriter.cpp74 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 DMCXCOFFStreamer.cpp122 Symbol->setExternal(cast<MCSymbolXCOFF>(Symbol)->getStorageClass() != in emitCommonSymbol()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h1152 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 DPPCAsmBackend.cpp187 S->getStorageClass() == XCOFF::C_WEAKEXT; in shouldForceRelocation()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp309 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 DIndexDecl.cpp233 if (FD->getStorageClass() != DFD->getStorageClass() || in gatherTemplatePseudoOverrides()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGHLSLRuntime.cpp120 if (D->getStorageClass() == SC_Static) { in addConstant()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp482 StorageClass SC = Var->getStorageClass(); in getFragmentsForVar()
642 switch (Func->getStorageClass()) { in getFragmentsForFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp3553 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 DSemaLambda.cpp1685 From->getTypeSourceInfo(), From->getStorageClass(), in addFunctionPointerConversion()
2265 From->getStorageClass(), in BuildBlockForLambdaConversion()
H A DSemaStmtAsm.cpp200 if (Variable && Variable->getStorageClass() == SC_Register) { in extractRegisterName()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp855 << "(scl " << format("%3x", unsigned(Symbol->getStorageClass())) in printCOFFSymbolTable()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp682 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()

123