Searched defs:BSS (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/src/
H A DIceELFObjectWriter.h94 enum SectionType { ROData = 0, Data, BSS, NumSectionTypes }; enumerator in enum:Ice::ELFObjectWriter::SectionType
/external/llvm/include/llvm/MC/
H A DSectionKind.h86 /// BSS - Zero initialized writeable data.
87 BSS, enumerator in enum:llvm::SectionKind::Kind
89 /// BSSLocal - This is BSS (zero initialized and writable) data
93 /// BSSExtern - This is BSS data with normal external linkage.
154 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; }
191 static SectionKind getBSS() { return get(BSS); }
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DSectionKind.h88 /// BSS - Zero initialized writeable data.
89 BSS, enumerator in enum:llvm::SectionKind::Kind
91 /// BSSLocal - This is BSS (zero initialized and writable) data
95 /// BSSExtern - This is BSS data with normal external linkage.
176 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; }
225 static SectionKind getBSS() { return get(BSS); }
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFWriter.cpp196 const MCSectionELF *BSS = (const MCSectionELF *)TLOF.getBSSSection(); local
197 return getSection(BSS->getSectionName(), BSS->getType(), BSS->getFlags(), 4);
389 } else if (Kind.isBSS() || Kind.isThreadBSS()) { // Symbol goes to BSS.
398 // Virtual because the BSS space is not allocated on ELF objects

Completed in 268 milliseconds