Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionGOFF.h61 SymbolType(GOFF::ESD_ST_SectionDefinition), IsBSS(K.isBSS()), in MCSectionGOFF()
68 SymbolType(GOFF::ESD_ST_ElementDefinition), IsBSS(K.isBSS()), in MCSectionGOFF()
75 SymbolType(GOFF::ESD_ST_PartReference), IsBSS(K.isBSS()), in MCSectionGOFF()
89 bool isBSS() const { return IsBSS; } in isBSS() function
H A DSectionKind.h166 return isBSS() || isCommon() || isData() || isReadOnlyWithRel(); in isGlobalWriteableData()
169 bool isBSS() const { return K == BSS || K == BSSLocal || K == BSSExtern; } in isBSS() function
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreTargetObjectFile.cpp66 if (K.isBSS()) in getXCoreSectionType()
126 if (Kind.isBSS() || Kind.isCommon())return BSSSection; in SelectSectionForGlobal()
133 if (Kind.isBSS() || Kind.isCommon())return BSSSectionLarge; in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetObjectFile.cpp85 (Kind.isData() || Kind.isBSS() || Kind.isCommon() || in IsGlobalInSmallSection()
154 if (Kind.isBSS() && IsGlobalInSmallSection(GO, TM, Kind)) in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp138 << (Kind.isBSS() ? "kind_bss " : "" ) in SelectSectionForGlobal()
175 << (Kind.isBSS() ? "kind_bss " : "" ) in getExplicitSectionGlobal()
353 if (Kind.isBSS() || Kind.isBSSLocal()) { in selectSmallSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSectionXCOFF.cpp90 assert(getKind().isBSS() && "Unexpected section kind for toc-data"); in printSwitchToSection()
H A DGOFFObjectWriter.cpp476 if (Section->isBSS()) in writeText()
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetObjectFile.cpp101 if (Kind.isBSS() && isGlobalInSmallSection(GO, TM, Kind)) in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetObjectFile.cpp114 if (Kind.isBSS()) { in SelectSectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStaticDataSplitter.cpp220 Kind.isBSS(); in inStaticDataSection()
H A DTargetLoweringObjectFileImpl.cpp523 if (K.isBSS() || K.isThreadBSS()) in getELFSectionType()
619 if (Kind.isBSS()) in getSectionPrefixForGlobal()
807 if (Attrs.hasAttribute("bss-section") && Kind.isBSS()) in handlePragmaClangSection()
1663 else if (K.isBSS()) in getCOFFSectionFlags()
1767 if (Kind.isBSS()) in getCOFFSectionNameForUniqueGlobal()
1841 if (Kind.isBSS() || Kind.isCommon()) in SelectSectionForGlobal()
2434 else if (Kind.isData() || Kind.isBSS()) in getExplicitSectionGlobal()
2533 if (Kind.isData() || Kind.isReadOnlyWithRel() || Kind.isBSS()) { in SelectSectionForGlobal()
2811 if (Kind.isBSS() || Kind.isData()) { in SelectSectionForGlobal()
H A DGlobalMerge.cpp737 TargetLoweringObjectFile::getKindForGlobal(&GV, *TM).isBSS()) in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DObjectFile.h113 bool isBSS() const;
559 inline bool SectionRef::isBSS() const { in isBSS() function
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp461 bool isBSS = Section.isBSS(); in printObjectSectionSizes() local
466 else if (isBSS) in printObjectSectionSizes()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp100 if (ElfSection.isBSS()) { in fillSectionInformation()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp356 if ((Attrs.hasAttribute("bss-section") && Kind.isBSS()) || in SectionForGlobal()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DXCOFFLinkGraphBuilder.cpp176 if (Section.isData() || Section.isBSS()) in processSections()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp206 if (Sec.isBSS() || Sec.isVirtual()) in dumpCXXData()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp163 << "isBSS: " << Section.isBSS() << ", " in mapVirtualAddress()
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp566 if (Section.isBSS()) in handleSection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp517 if (opts::SectionData && !Section.isBSS()) in printSectionHeaders()
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp998 if (SecIter->isBSS()) in getSymbolNMTypeChar()
1736 if (!(SecIter->isText() || SecIter->isData() || SecIter->isBSS())) in getXCOFFExports()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2840 if (Section.isBSS()) in printSectionHeaders()
2873 if (Section.isBSS()) { in printSectionContents()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp2151 if (Section.isBSS() || Section.isVirtual()) in DWARFObjInMemory()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp812 if (GVKind.isBSS() && MAI->isMachO() && TheSection->isVirtualSection()) { in emitGlobalVariable()

12