Searched refs:isCommon (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp59 if (getKind().isBSSLocal() || getKind().isCommon()) {
H A DMCFragment.cpp184 if (ASym.isCommon()) {
H A DELFObjectWriter.cpp467 if (Sym.isCommon() && (Sym.isTargetCommon() || Sym.isExternal()))
536 bool IsReserved = !Base || Symbol.isCommon();
655 } else if (Symbol.isCommon()) {
H A DMachObjectWriter.cpp384 else if (Symbol->isCommon()) {
H A DWinCOFFObjectWriter.cpp336 if (Symbol.isCommon() && Symbol.isExternal())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h332 assert(isCommon() && "Not a 'common' symbol!");
356 assert(isCommon() && "Not a 'common' symbol!");
367 assert(isCommon() || getOffset() == 0);
368 if(isCommon()) {
378 bool isCommon() const {
H A DSectionKind.h156 return isBSS() || isCommon() || isData() || isReadOnlyWithRel();
163 bool isCommon() const { return K == Common; } function in class:llvm::SectionKind
H A DMCSymbolMachO.h117 if (isCommon()) {
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp293 if (!isDefined() && !isCommon())
312 else if (sym->isCommon())
573 assert(other->isDefined() || other->isCommon());
575 if (!isDefined() && !isCommon())
587 if (isCommon() && other->isCommon()) {
593 if (isCommon()) {
599 if (other->isCommon()) {
715 if (isCommon()) {
H A DSymbols.h150 bool isCommon() const { return symbolKind == CommonKind; } function in class:lld::elf::Symbol
327 static bool classof(const Symbol *s) { return s->isCommon(); }
H A DSymbolTable.cpp116 return sym.isDefined() || sym.isCommon() || sym.isLazy();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp126 if (Kind.isBSS() || Kind.isCommon())return BSSSection;
133 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge;
139 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind");
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h196 bool isCommon() const { return (Flags >> S::FB_common) & 1; } function in struct:llvm::irsymtab::Symbol
211 assert(isCommon());
216 assert(isCommon());
H A DELFTypes.h218 bool isCommon() const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp138 << (Kind.isCommon() ? "kind_common " : "" )
152 if (Kind.isCommon()) {
175 << (Kind.isCommon() ? "kind_common " : "" )
377 if (Kind.isCommon()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp86 (Kind.isData() || Kind.isBSS() || Kind.isCommon() ||
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h134 bool isCommon() const { function in class:llvm::JITSymbolFlags
140 return !isWeak() && !isCommon();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp420 PrintBool('C', Sym.isCommon());
428 if (Sym.isCommon())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp166 else if (Flags.isCommon())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h135 using irsymtab::Symbol::isCommon;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp798 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) {
1495 if ((EmitUniquedSection && !Kind.isCommon()) || GO->hasComdat()) {
1546 if (Kind.isBSS() || Kind.isCommon())
1904 if (Kind.isCommon())
1995 if (GOKind.isCommon() || GOKind.isBSSLocal())
2035 if (Kind.isBSSLocal() || Kind.isCommon()) {
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp588 if (sym.isCommon()) {
1017 } else if (objSym.isCommon()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp169 if (Symb.isAnyUndefined() || Symb.isCommon() ||
193 if (Symb.isCommon())
230 if (Symb.isCommon())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp273 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) {
286 if (JITSymFlags->isCommon()) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp359 if (!Sym.isCommon() && Sym.getShndx() != SHN_UNDEF &&

Completed in 240 milliseconds

12