Home
last modified time | relevance | path

Searched refs:isBSS (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Target/MBlaze/
DMBlazeTargetObjectFile.cpp64 if (!Kind.isBSS() && !Kind.isDataRel()) in IsGlobalInSmallSection()
83 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
/external/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp74 if (Kind.isBSS() || Kind.isDataNoRel() || Kind.isCommon()) { in IsGlobalInSmallSection()
87 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
/external/llvm/tools/llvm-size/
Dllvm-size.cpp202 bool isBSS = false; in PrintObjectSectionSizes() local
206 if (error(i->isBSS(isBSS))) return; in PrintObjectSectionSizes()
211 else if (isBSS) in PrintObjectSectionSizes()
/external/llvm/lib/Target/Mips/
DMipsTargetObjectFile.cpp90 if (!Kind.isBSS() && !Kind.isDataRel()) in IsGlobalInSmallSection()
111 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
/external/llvm/include/llvm/MC/
DSectionKind.h173 return isBSS() || isCommon() || isDataRel() || isReadOnlyWithRel(); in isGlobalWriteableData()
176 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; } in isBSS() function
/external/llvm/lib/CodeGen/
DTargetLoweringObjectFileImpl.cpp168 if (K.isBSS() || K.isThreadBSS()) in getELFSectionType()
221 if (Kind.isBSS()) return ".bss."; in getSectionPrefixForGlobal()
316 if (Kind.isBSS() || Kind.isCommon()) return BSSSection; in SelectSectionForGlobal()
698 else if (K.isBSS ()) in getCOFFSectionFlags()
743 if (Kind.isBSS ()) in getCOFFSectionPrefixForUniqueGlobal()
/external/llvm/lib/Target/
DTargetLoweringObjectFile.cpp268 if (Kind.isBSS() && BSSSection != 0) in SelectSectionForGlobal()
/external/llvm/include/llvm/Object/
DObjectFile.h162 error_code isBSS(bool &Result) const;
506 inline error_code SectionRef::isBSS(bool &Result) const { in isBSS() function
/external/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp108 { &SectionRef::isBSS, "bss,", "Section.isBSS() failed" }, in getSectionFlagStr()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp444 if (error(si->isBSS(BSS))) return; in PrintSectionHeaders()
/external/llvm/lib/MC/
DELFObjectWriter.cpp663 if (secKind.isBSS()) in SymbolToReloc()