Searched refs:isBSS (Results 1 – 11 of 11) sorted by relevance
/external/llvm/lib/Target/MBlaze/ |
D | MBlazeTargetObjectFile.cpp | 64 if (!Kind.isBSS() && !Kind.isDataRel()) in IsGlobalInSmallSection() 83 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonTargetObjectFile.cpp | 74 if (Kind.isBSS() || Kind.isDataNoRel() || Kind.isCommon()) { in IsGlobalInSmallSection() 87 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
|
/external/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 202 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/ |
D | MipsTargetObjectFile.cpp | 90 if (!Kind.isBSS() && !Kind.isDataRel()) in IsGlobalInSmallSection() 111 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) in SelectSectionForGlobal()
|
/external/llvm/include/llvm/MC/ |
D | SectionKind.h | 173 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/ |
D | TargetLoweringObjectFileImpl.cpp | 168 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/ |
D | TargetLoweringObjectFile.cpp | 268 if (Kind.isBSS() && BSSSection != 0) in SelectSectionForGlobal()
|
/external/llvm/include/llvm/Object/ |
D | ObjectFile.h | 162 error_code isBSS(bool &Result) const; 506 inline error_code SectionRef::isBSS(bool &Result) const { in isBSS() function
|
/external/llvm/tools/llvm-readobj/ |
D | llvm-readobj.cpp | 108 { &SectionRef::isBSS, "bss,", "Section.isBSS() failed" }, in getSectionFlagStr()
|
/external/llvm/tools/llvm-objdump/ |
D | llvm-objdump.cpp | 444 if (error(si->isBSS(BSS))) return; in PrintSectionHeaders()
|
/external/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 663 if (secKind.isBSS()) in SymbolToReloc()
|