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

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp55 if (getKind().isBSSLocal() || getKind().isCommon()) {
H A DMCFragment.cpp165 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()) {
/freebsd-11-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-11-stable/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp280 if (!isDefined() && !isCommon())
299 else if (sym->isCommon())
540 assert(other->isDefined() || other->isCommon());
542 if (!isDefined() && !isCommon())
554 if (isCommon() && other->isCommon()) {
560 if (isCommon()) {
566 if (other->isCommon()) {
678 if (isCommon()) {
H A DSymbolTable.cpp123 if (!sym->isDefined() && !sym->isCommon())
135 if (b->isDefined() || b->isCommon())
152 if ((sym->isDefined() || sym->isCommon()) && m.match(sym->getName()))
H A DSymbols.h148 bool isCommon() const { return symbolKind == CommonKind; } function in class:lld::elf::Symbol
322 static bool classof(const Symbol *s) { return s->isCommon(); }
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h195 bool isCommon() const { return (Flags >> S::FB_common) & 1; } function in struct:llvm::irsymtab::Symbol
210 assert(isCommon());
215 assert(isCommon());
H A DELFTypes.h218 bool isCommon() const {
H A DCOFF.h381 bool isCommon() const { function in class:llvm::object::COFFSymbolRef
/freebsd-11-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 " : "" )
375 if (Kind.isCommon()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp87 (Kind.isData() || Kind.isBSS() || Kind.isCommon() ||
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h132 bool isCommon() const { function in class:llvm::JITSymbolFlags
138 return !isWeak() && !isCommon();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp403 PrintBool('C', Sym.isCommon());
411 if (Sym.isCommon())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h139 using irsymtab::Symbol::isCommon;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp691 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) {
1348 if ((EmitUniquedSection && !Kind.isCommon()) || GO->hasComdat()) {
1399 if (Kind.isBSS() || Kind.isCommon())
1761 if (Kind.isCommon())
1842 if (Kind.isBSSLocal() || Kind.isCommon()) {
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp595 if (sym.isCommon()) {
930 } else if (objSym.isCommon()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp173 if (Symb.isAnyUndefined() || Symb.isCommon() ||
197 if (Symb.isCommon())
234 if (Symb.isCommon())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp266 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) {
279 if (JITSymFlags->isCommon()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp1656 if (GVKind.isCommon() || GVKind.isBSSLocal()) {
1781 } else if (GOKind.isCommon() || GOKind.isBSSLocal()) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp356 if (!Sym.isCommon() && Sym.getShndx() != SHN_UNDEF &&

Completed in 408 milliseconds

12