HomeSort by relevance Sort by last modified time
    Searched refs:isCommon (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/include/llvm/MC/
MCSymbol.h 330 assert(isCommon() && "Not a 'common' symbol!");
353 assert(isCommon() && "Not a 'common' symbol!");
363 assert(isCommon() || getOffset() == 0);
364 if(isCommon()) {
373 bool isCommon() const {
SectionKind.h 151 return isBSS() || isCommon() || isData() || isReadOnlyWithRel();
158 bool isCommon() const { return K == Common; }
MCSymbolMachO.h 113 if (isCommon()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSymbol.h 337 assert(isCommon() && "Not a 'common' symbol!");
360 assert(isCommon() && "Not a 'common' symbol!");
370 assert(isCommon() || getOffset() == 0);
371 if(isCommon()) {
380 bool isCommon() const {
SectionKind.h 157 return isBSS() || isCommon() || isData() || isReadOnlyWithRel();
164 bool isCommon() const { return K == Common; }
MCSymbolMachO.h 113 if (isCommon()) {
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
SectionKind.h 173 return isBSS() || isCommon() || isDataRel() || isReadOnlyWithRel();
180 bool isCommon() const { return K == Common; }
MCAssembler.h 579 /// isCommon - Is this a 'common' symbol.
580 bool isCommon() const { return CommonSize != 0; }
593 assert(isCommon() && "Not a 'common' symbol!");
608 assert(isCommon() && "Not a 'common' symbol!");
  /external/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 116 << (Kind.isCommon() ? "kind_common " : "" )
123 if (Kind.isCommon()) {
149 << (Kind.isCommon() ? "kind_common " : "" )
343 if (Kind.isCommon()) {
  /external/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 131 if (Kind.isBSS() || Kind.isCommon())return BSSSection;
138 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge;
144 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind");
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
IRSymtab.h 192 bool isCommon() const { return (Flags >> S::FB_common) & 1; }
207 assert(isCommon());
212 assert(isCommon());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreTargetObjectFile.cpp 127 if (Kind.isBSS() || Kind.isCommon())return BSSSection;
134 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge;
140 assert((Kind.isThreadLocal() || Kind.isCommon()) && "Unknown section kind");
  /external/llvm/lib/Target/Lanai/
LanaiTargetObjectFile.cpp 68 (Kind.isData() || Kind.isBSS() || Kind.isCommon()));
  /external/llvm/lib/Target/Mips/
MipsTargetObjectFile.cpp 81 (Kind.isData() || Kind.isBSS() || Kind.isCommon()));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.cpp 139 << (Kind.isCommon() ? "kind_common " : "" )
153 if (Kind.isCommon()) {
176 << (Kind.isCommon() ? "kind_common " : "" )
368 if (Kind.isCommon()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/
JITSymbol.h 98 bool isCommon() const {
104 return !isWeak() && !isCommon();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsTargetObjectFile.cpp 87 (Kind.isData() || Kind.isBSS() || Kind.isCommon() ||
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto2/
llvm-lto2.cpp 361 PrintBool('C', Sym.isCommon());
369 if (Sym.isCommon())
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/
LTO.h 117 using irsymtab::Symbol::isCommon;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 220 !Kind.isCommon() && !Kind.isBSS()) {
286 if (Kind.isBSS() || Kind.isCommon()) return BSSSection;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 258 if (JITSymFlags.isWeak() || JITSymFlags.isCommon()) {
269 (JITSymFlags.isCommon() && FlagsI->second.isCommon())) {
272 if (JITSymFlags.isCommon()) {
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 320 if (!(Flags & ELF::SHF_MERGE) && !Kind.isCommon()) {
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 358 if (Sym.isCommon() && Sym.isExternal())
468 bool IsReserved = !Base || Symbol.isCommon();
814 } else if (Symbol.isCommon()) {
    [all...]
MCFragment.cpp 165 if (ASym.isCommon()) {
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 175 if (Data.isCommon() && Data.isExternal())
248 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
261 assert(!(Data.isCommon() && !Data.isExternal()));
605 if (it->isCommon()) {
    [all...]

Completed in 915 milliseconds

1 2