Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCSymbol.h337 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize()
360 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment()
370 assert(isCommon() || getOffset() == 0); in declareCommon()
371 if(isCommon()) { in declareCommon()
380 bool isCommon() const { in isCommon() function
DSectionKind.h157 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData()
164 bool isCommon() const { return K == Common; } in isCommon() function
DMCSymbolMachO.h113 if (isCommon()) { in getEncodedFlags()
/external/llvm/include/llvm/MC/
DMCSymbol.h330 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize()
353 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment()
363 assert(isCommon() || getOffset() == 0); in declareCommon()
364 if(isCommon()) { in declareCommon()
373 bool isCommon() const { in isCommon() function
DSectionKind.h151 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData()
158 bool isCommon() const { return K == Common; } in isCommon() function
DMCSymbolMachO.h113 if (isCommon()) { in getEncodedFlags()
/external/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp131 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal()
138 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal()
144 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp127 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal()
134 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal()
140 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind"); in SelectSectionForGlobal()
/external/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp116 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal()
123 if (Kind.isCommon()) { in SelectSectionForGlobal()
149 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal()
343 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp139 << (Kind.isCommon() ? "kind_common " : "" ) in SelectSectionForGlobal()
153 if (Kind.isCommon()) { in SelectSectionForGlobal()
176 << (Kind.isCommon() ? "kind_common " : "" ) in getExplicitSectionGlobal()
368 if (Kind.isCommon()) { in selectSmallSectionForGlobal()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DSectionKind.h173 return isBSS() || isCommon() || isDataRel() || isReadOnlyWithRel(); in isGlobalWriteableData()
180 bool isCommon() const { return K == Common; } in isCommon() function
DMCAssembler.h580 bool isCommon() const { return CommonSize != 0; } in isCommon() function
593 assert(isCommon() && "Not a 'common' symbol!"); in getCommonSize()
608 assert(isCommon() && "Not a 'common' symbol!"); in getCommonAlignment()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DIRSymtab.h192 bool isCommon() const { return (Flags >> S::FB_common) & 1; } in isCommon() function
207 assert(isCommon()); in getCommonSize()
212 assert(isCommon()); in getCommonAlignment()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/
DJITSymbol.h98 bool isCommon() const { in isCommon() function
104 return !isWeak() && !isCommon(); in isStrong()
/external/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp68 (Kind.isData() || Kind.isBSS() || Kind.isCommon())); in isGlobalInSmallSection()
/external/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp81 (Kind.isData() || Kind.isBSS() || Kind.isCommon())); in IsGlobalInSmallSection()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto2/
Dllvm-lto2.cpp361 PrintBool('C', Sym.isCommon()); in dumpSymtab()
369 if (Sym.isCommon()) in dumpSymtab()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp87 (Kind.isData() || Kind.isBSS() || Kind.isCommon() || in IsGlobalInSmallSection()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp258 if (JITSymFlags.isWeak() || JITSymFlags.isCommon()) { in loadObjectImpl()
269 (JITSymFlags.isCommon() && FlagsI->second.isCommon())) { in loadObjectImpl()
272 if (JITSymFlags.isCommon()) { in loadObjectImpl()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp220 !Kind.isCommon() && !Kind.isBSS()) { in SelectSectionForGlobal()
286 if (Kind.isBSS() || Kind.isCommon()) return BSSSection; in SelectSectionForGlobal()
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp320 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) { in SelectSectionForGlobal()
939 if ((EmitUniquedSection && !Kind.isCommon()) || GV->hasComdat()) { in SelectSectionForGlobal()
982 if (Kind.isBSS() || Kind.isCommon()) in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp510 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) { in SelectSectionForGlobal()
1136 if ((EmitUniquedSection && !Kind.isCommon()) || GO->hasComdat()) { in SelectSectionForGlobal()
1187 if (Kind.isBSS() || Kind.isCommon()) in SelectSectionForGlobal()
1528 if (Kind.isCommon()) in SelectSectionForGlobal()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/
DLTO.h117 using irsymtab::Symbol::isCommon;
/external/llvm/lib/MC/
DELFObjectWriter.cpp358 if (Sym.isCommon() && Sym.isExternal()) in SymbolValue()
468 bool IsReserved = !Base || Symbol.isCommon(); in writeSymbol()
814 } else if (Symbol.isCommon()) { in computeSymbolTable()
/external/swiftshader/third_party/LLVM/lib/MC/
DELFObjectWriter.cpp175 if (Data.isCommon() && Data.isExternal()) in SymbolValue()
248 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() || in WriteSymbol()
261 assert(!(Data.isCommon() && !Data.isExternal())); in WriteSymbol()
605 if (it->isCommon()) { in ComputeSymbolTable()

12