/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSymbol.h | 343 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 D | SectionKind.h | 166 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData() 173 bool isCommon() const { return K == Common; } in isCommon() function
|
H A D | MCSymbolMachO.h | 133 if (isCommon()) { in getEncodedFlags()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreTargetObjectFile.cpp | 126 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 D | MCSectionXCOFF.cpp | 87 if (getKind().isCommon() && !getKind().isBSSLocal()) in printSwitchToSection() 107 assert((getKind().isBSSLocal() || getKind().isCommon() || in printSwitchToSection()
|
H A D | ELFObjectWriter.cpp | 333 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 D | HexagonTargetObjectFile.cpp | 137 << (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 D | Symbols.cpp | 283 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 D | Symbols.h | 186 bool isCommon() const { return symbolKind == CommonKind; } in isCommon() function 426 static bool classof(const Symbol *s) { return s->isCommon(); } in classof()
|
H A D | SymbolTable.cpp | 123 return sym.isDefined() || sym.isCommon() || sym.isLazy(); in canBeVersioned()
|
H A D | InputFiles.cpp | 1323 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 D | IRSymtab.h | 200 bool isCommon() const { return (Flags >> S::FB_common) & 1; } in isCommon() function 215 assert(isCommon()); in getCommonSize() 220 assert(isCommon()); in getCommonAlignment()
|
H A D | ELFTypes.h | 250 bool isCommon() const {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | JITSymbol.h | 134 bool isCommon() const { in isCommon() function 140 return !isWeak() && !isCommon(); in isStrong()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsTargetObjectFile.cpp | 86 (Kind.isData() || Kind.isBSS() || Kind.isCommon() || in IsGlobalInSmallSection()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/ |
H A D | llvm-lto2.cpp | 513 PrintBool('C', Sym.isCommon()); in dumpSymtab() 521 if (Sym.isCommon()) in dumpSymtab()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | DebugUtils.cpp | 170 else if (Flags.isCommon()) in operator <<()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/ |
H A D | LTO.h | 146 using irsymtab::Symbol::isCommon;
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetLoweringObjectFileImpl.cpp | 921 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 D | COFFObjectFile.cpp | 170 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 D | RuntimeDyld.cpp | 273 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) { in loadObjectImpl() 286 if (JITSymFlags->isCommon()) { in loadObjectImpl()
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | InputFiles.cpp | 631 if (sym.isCommon()) { in createDefined() 1107 } else if (objSym.isCommon()) { in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFFLinkGraphBuilder.cpp | 465 if (Symbol.isCommon()) { in createDefinedSymbol()
|
H A D | ELFLinkGraphBuilder.h | 471 if (Sym.isCommon()) { in graphifySymbols()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 317 if (!Sym.isCommon() && Sym.getShndx() != SHN_UNDEF && in updateAndRemoveSymbols()
|