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

12

/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h343 assert(isCommon() && "Not a 'common' symbol!");
365 assert(isCommon() && "Not a 'common' symbol!");
376 assert(isCommon() || getOffset() == 0);
377 if(isCommon()) {
387 bool isCommon() const {
H A DSectionKind.h166 return isBSS() || isCommon() || isData() || isReadOnlyWithRel();
173 bool isCommon() const { return K == Common; } function in class:llvm::SectionKind
H A DMCSymbolMachO.h117 if (isCommon()) {
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp103 assert((getKind().isBSSLocal() || getKind().isCommon() ||
H A DMCFragment.cpp188 if (ASym.isCommon()) {
H A DELFObjectWriter.cpp466 if (Sym.isCommon())
535 bool IsReserved = !Base || Symbol.isCommon();
693 } else if (Symbol.isCommon()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp137 << (Kind.isCommon() ? "kind_common " : "" )
151 if (Kind.isCommon()) {
174 << (Kind.isCommon() ? "kind_common " : "" )
379 if (Kind.isCommon()) {
/freebsd-current/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-current/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h200 bool isCommon() const { return (Flags >> S::FB_common) & 1; } function in struct:llvm::irsymtab::Symbol
215 assert(isCommon());
220 assert(isCommon());
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp283 if (!isDefined() && !isCommon())
302 else if (sym.isCommon())
511 if (LLVM_UNLIKELY(isCommon())) {
634 if (LLVM_UNLIKELY(isCommon()) && elf::config->fortranCommon &&
671 if (isCommon()) {
H A DSymbols.h177 bool isCommon() const { return symbolKind == CommonKind; } function in class:lld::elf::Symbol
408 static bool classof(const Symbol *s) { return s->isCommon(); }
H A DSymbolTable.cpp123 return sym.isDefined() || sym.isCommon() || sym.isLazy();
H A DInputFiles.cpp1265 return !sym.isUndefined() && !sym.isWeak() && !sym.isCommon();
1281 !sym.isCommon();
1703 if (objSym.isCommon()) {
1755 irSym.isCommon() || irSym.isWeak())
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp86 (Kind.isData() || Kind.isBSS() || Kind.isCommon() ||
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DJITSymbol.h134 bool isCommon() const { function in class:llvm::JITSymbolFlags
140 return !isWeak() && !isCommon();
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp491 PrintBool('C', Sym.isCommon());
499 if (Sym.isCommon())
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp166 else if (Flags.isCommon())
/freebsd-current/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h144 using irsymtab::Symbol::isCommon;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp918 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) {
1728 if ((EmitUniquedSection && !Kind.isCommon()) || GO->hasComdat()) {
1783 if (Kind.isBSS() || Kind.isCommon())
2222 if (Kind.isCommon())
2440 : Kind.isCommon() ? XCOFF::XMC_RW
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h471 if (Sym.isCommon()) {
H A DCOFFLinkGraphBuilder.cpp465 if (Symbol.isCommon()) {
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp273 if (JITSymFlags->isWeak() || JITSymFlags->isCommon()) {
286 if (JITSymFlags->isCommon()) {
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp592 if (sym.isCommon()) {
1058 } else if (objSym.isCommon()) {
/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DCOFFObjectFile.cpp171 if (Symb.isAnyUndefined() || Symb.isCommon() ||
195 if (Symb.isCommon())
232 if (Symb.isCommon())
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp295 if (!Sym.isCommon() && Sym.getShndx() != SHN_UNDEF &&

Completed in 354 milliseconds

12