Home
last modified time | relevance | path

Searched refs:isCommon (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h343 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize()
365 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment()
376 assert(isCommon() || getOffset() == 0);
377 if(isCommon()) {
387 bool isCommon() const { in isCommon() function
H A DSectionKind.h166 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData()
173 bool isCommon() const { return K == Common; } in isCommon() function
H A DMCSymbolMachO.h133 if (isCommon()) { in getEncodedFlags()
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp126 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal()
133 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal()
139 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp87 if (getKind().isCommon() && !getKind().isBSSLocal()) in printSwitchToSection()
107 assert((getKind().isBSSLocal() || getKind().isCommon() || in printSwitchToSection()
H A DELFObjectWriter.cpp333 if (Sym.isCommon()) in symbolValue()
402 bool IsReserved = !Base || Symbol.isCommon(); in writeSymbol()
541 } else if (Symbol.isCommon()) { in computeSymbolTable()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp137 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal()
151 if (Kind.isCommon()) { in SelectSectionForGlobal()
174 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal()
379 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp283 if (!isDefined() && !isCommon()) in includeInDynsym()
302 else if (sym.isCommon()) in printTraceSymbol()
511 if (LLVM_UNLIKELY(isCommon())) { in shouldReplace()
634 if (LLVM_UNLIKELY(isCommon()) && elf::config->fortranCommon && in resolve()
671 if (isCommon()) { in resolve()
H A DSymbols.h186 bool isCommon() const { return symbolKind == CommonKind; } in isCommon() function
426 static bool classof(const Symbol *s) { return s->isCommon(); } in classof()
H A DSymbolTable.cpp123 return sym.isDefined() || sym.isCommon() || sym.isLazy(); in canBeVersioned()
H A DInputFiles.cpp1323 return !sym.isUndefined() && !sym.isWeak() && !sym.isCommon(); in isBitcodeNonCommonDef()
1339 !sym.isCommon(); in isNonCommonDef()
1761 if (objSym.isCommon()) { in createBitcodeSymbol()
1813 irSym.isCommon() || irSym.isWeak()) in postParse()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h200 bool isCommon() const { return (Flags >> S::FB_common) & 1; } in isCommon() function
215 assert(isCommon()); in getCommonSize()
220 assert(isCommon()); in getCommonAlignment()
H A DELFTypes.h250 bool isCommon() const {
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h134 bool isCommon() const { in isCommon() function
140 return !isWeak() && !isCommon(); in isStrong()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp86 (Kind.isData() || Kind.isBSS() || Kind.isCommon() || in IsGlobalInSmallSection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp513 PrintBool('C', Sym.isCommon()); in dumpSymtab()
521 if (Sym.isCommon()) in dumpSymtab()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp170 else if (Flags.isCommon()) in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h146 using irsymtab::Symbol::isCommon;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp921 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) { in SelectSectionForGlobal()
1726 if ((EmitUniquedSection && !Kind.isCommon()) || GO->hasComdat()) { in SelectSectionForGlobal()
1781 if (Kind.isBSS() || Kind.isCommon()) in SelectSectionForGlobal()
2225 if (Kind.isCommon()) in SelectSectionForGlobal()
2456 : Kind.isCommon() ? XCOFF::XMC_RW in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp170 if (Symb.isAnyUndefined() || Symb.isCommon() || in getSymbolAddress()
194 if (Symb.isCommon()) in getSymbolType()
231 if (Symb.isCommon()) in getSymbolFlags()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp273 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) { in loadObjectImpl()
286 if (JITSymFlags->isCommon()) { in loadObjectImpl()
/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp631 if (sym.isCommon()) { in createDefined()
1107 } else if (objSym.isCommon()) { in parse()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.cpp465 if (Symbol.isCommon()) { in createDefinedSymbol()
H A DELFLinkGraphBuilder.h471 if (Sym.isCommon()) { in graphifySymbols()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp317 if (!Sym.isCommon() && Sym.getShndx() != SHN_UNDEF && in updateAndRemoveSymbols()

12