Home
last modified time | relevance | path

Searched refs:getSectionName (Results 1 – 25 of 122) sorted by relevance

12345

/external/llvm-project/lld/COFF/
DChunks.h98 StringRef getSectionName() const;
161 virtual StringRef getSectionName() const { in getSectionName() function
210 StringRef getSectionName() const { in getSectionName() function
239 return getSectionName() == ".debug" || getSectionName().startswith(".debug$"); in isCodeView()
244 return getSectionName().startswith(".debug_") || getSectionName() == ".eh_frame"; in isDWARF()
371 inline StringRef Chunk::getSectionName() const { in getSectionName() function
373 return static_cast<const SectionChunk *>(this)->getSectionName(); in getSectionName()
375 return static_cast<const NonSectionChunk *>(this)->getSectionName(); in getSectionName()
409 StringRef getSectionName() const override { return ".rdata"; } in getSectionName() function
427 StringRef getSectionName() const override { return ".bss"; } in getSectionName() function
DICF.cpp89 StringRef outSecName = c->getSectionName().split('$').first; in isEligible()
132 StringRef Name = assoc.getSectionName(); in assocEquals()
172 a->getSectionName() == b->getSectionName() && in equalsConstant()
DMapFile.cpp260 c->getSectionName() != ChunkRanges.back().first->getSectionName()) { in writeMapFile()
280 os << " " << left_justify(cr.first->getSectionName(), 23); in writeMapFile()
/external/llvm/lib/MC/
DMCAsmInfoDarwin.cpp32 if (SMO.getSegmentName() == "__DATA" && SMO.getSectionName() == "__cfstring") in isSectionAtomizableBySymbols()
36 SMO.getSectionName() == "__objc_classrefs") in isSectionAtomizableBySymbols()
DMCSectionCOFF.cpp46 OS << '\t' << getSectionName() << '\n'; in PrintSwitchToSection()
50 OS << "\t.section\t" << getSectionName() << ",\""; in PrintSwitchToSection()
DMCSectionELF.cpp61 OS << '\t' << getSectionName(); in PrintSwitchToSection()
71 printName(OS, getSectionName()); in PrintSwitchToSection()
DMCContext.cpp132 StringRef Name = Section.getSectionName(); in getOrCreateSectionSymbol()
303 ELFSectionKey{Section->getSectionName(), GroupName, UniqueID}); in renameELFSection()
447 return getCOFFSection(Sec->getSectionName(), Characteristics, in getAssociativeCOFFSection()
452 return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(), in getAssociativeCOFFSection()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCAsmInfoDarwin.cpp32 if (SMO.getSegmentName() == "__DATA" && SMO.getSectionName() == "__cfstring") in isSectionAtomizableBySymbols()
36 SMO.getSectionName() == "__objc_classrefs") in isSectionAtomizableBySymbols()
DMCSectionWasm.cpp52 OS << '\t' << getSectionName(); in PrintSwitchToSection()
62 printName(OS, getSectionName()); in PrintSwitchToSection()
DMCSectionELF.cpp57 OS << '\t' << getSectionName(); in PrintSwitchToSection()
67 printName(OS, getSectionName()); in PrintSwitchToSection()
161 " for section " + getSectionName()); in PrintSwitchToSection()
DMCSectionCOFF.cpp42 OS << '\t' << getSectionName() << '\n'; in PrintSwitchToSection()
46 OS << "\t.section\t" << getSectionName() << ",\""; in PrintSwitchToSection()
DWasmObjectWriter.cpp155 << ", FixupSection=" << FixupSection->getSectionName(); in print()
420 Sec.getSectionName()); in executePostLayoutBinding()
440 if (FixupSection.getSectionName().startswith(".init_array")) in recordRelocation()
588 LLVM_DEBUG(errs() << "addData: " << DataSection.getSectionName() << "\n"); in addData()
1220 StringRef SectionName = Section.getSectionName(); in writeObject()
1512 if (WS.getSectionName().startswith(".fini_array")) in writeObject()
1514 if (!WS.getSectionName().startswith(".init_array")) in writeObject()
1541 if (WS.getSectionName().size() > PrefixLength) { in writeObject()
1542 if (WS.getSectionName()[PrefixLength] != '.') in writeObject()
1545 if (WS.getSectionName() in writeObject()
/external/llvm-project/lld/wasm/
DOutputSections.cpp29 return (sec.getSectionName() + "(" + sec.name + ")").str(); in toString()
30 return std::string(sec.getSectionName()); in toString()
69 StringRef OutputSection::getSectionName() const { in getSectionName() function in lld::wasm::OutputSection
75 debugWrite(os.tell(), "section type [" + getSectionName() + "]"); in createHeader()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFListTable.h102 StringRef getSectionName() const { return SectionName; } in getSectionName() function
204 Header.getSectionName(), in extract()
282 Header.getSectionName(), Header.getListTypeString())) in findList()
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFListTable.h97 StringRef getSectionName() const { return SectionName; } in getSectionName() function
211 Header.getSectionName(), in extract()
285 Header.getSectionName(), Header.getListTypeString())) in findList()
/external/llvm-project/lld/test/COFF/
Dinvalid-obj.test4 # CHECK: getSectionName failed: #1:
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DELF_x86_64.cpp309 auto Name = Obj.getSectionName(SecRef); in createNormalizedSections()
377 auto RelSectName = Obj.getSectionName(SecRef); in addRelocations()
388 auto UpdateSectionName = Obj.getSectionName(**UpdateSection); in addRelocations()
477 auto Name = Obj.getSectionName(SecRef); in graphifyRegularSymbols()
534 auto sectName = Obj.getSectionName(**DefinedSection); in graphifyRegularSymbols()
/external/llvm/tools/obj2yaml/
Delf2yaml.cpp197 ErrorOr<StringRef> NameOrErr = Obj.getSectionName(Shdr); in dumpSymbol()
239 ErrorOr<StringRef> NameOrErr = Obj.getSectionName(Shdr); in dumpCommonSection()
248 NameOrErr = Obj.getSectionName(*LinkSection); in dumpCommonSection()
268 ErrorOr<StringRef> NameOrErr = Obj.getSectionName(*InfoSection); in dumpCommonRelocationSection()
389 ErrorOr<StringRef> sectionName = Obj.getSectionName(*sHdr); in dumpGroup()
/external/llvm/include/llvm/MC/
DMCSectionCOFF.h69 StringRef getSectionName() const { return SectionName; } in getSectionName() function
DMCSectionMachO.h48 StringRef getSectionName() const { in getSectionName() function
DMCSectionELF.h74 StringRef getSectionName() const { return SectionName; } in getSectionName() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCSectionMachO.h47 StringRef getSectionName() const { in getSectionName() function
DMCSectionCOFF.h69 StringRef getSectionName() const { return SectionName; } in getSectionName() function
DMCSectionXCOFF.h61 StringRef getSectionName() const { return Name; } in getSectionName() function
DMCSectionWasm.h59 StringRef getSectionName() const { return SectionName; } in getSectionName() function

12345