Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerBase.cpp19 .Case(getSectionName(DebugSectionKind::DebugInfo), in parseDebugTableName()
21 .Case(getSectionName(DebugSectionKind::DebugLine), in parseDebugTableName()
23 .Case(getSectionName(DebugSectionKind::DebugFrame), in parseDebugTableName()
25 .Case(getSectionName(DebugSectionKind::DebugRange), in parseDebugTableName()
29 .Case(getSectionName(DebugSectionKind::DebugLoc), in parseDebugTableName()
35 .Case(getSectionName(DebugSectionKind::DebugAbbrev), in parseDebugTableName()
39 .Case(getSectionName(DebugSectionKind::DebugMacro), in parseDebugTableName()
41 .Case(getSectionName(DebugSectionKind::DebugAddr), in parseDebugTableName()
43 .Case(getSectionName(DebugSectionKind::DebugStr), in parseDebugTableName()
53 .Case(getSectionName(DebugSectionKind::DebugNames), in parseDebugTableName()
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DChunks.h98 StringRef getSectionName() const;
163 virtual StringRef getSectionName() const { in getSectionName() function
252 StringRef getSectionName() const { in getSectionName() function
282 return getSectionName() == ".debug" || getSectionName().starts_with(".debug$"); in isCodeView()
287 return getSectionName().starts_with(".debug_") || getSectionName() == ".eh_frame"; in isDWARF()
415 inline StringRef Chunk::getSectionName() const { in getSectionName() function
417 return static_cast<const SectionChunk *>(this)->getSectionName(); in getSectionName()
418 return static_cast<const NonSectionChunk *>(this)->getSectionName(); in getSectionName()
472 StringRef getSectionName() const override { return ".rdata"; } in getSectionName() function
489 StringRef getSectionName() const override { return ".bss"; } in getSectionName() function
H A DICF.cpp92 StringRef outSecName = c->getSectionName().split('$').first; in isEligible()
138 StringRef Name = assoc.getSectionName(); in assocEquals()
178 a->getSectionName() == b->getSectionName() && in equalsConstant()
H A DMapFile.cpp262 c->getSectionName() != ChunkRanges.back().first->getSectionName()) { in writeMapFile()
282 os << " " << left_justify(cr.first->getSectionName(), 23); in writeMapFile()
H A DChunks.cpp43 if (Expected<StringRef> e = file->getCOFFObj()->getSectionName(header)) in SectionChunk()
92 error("overflow in SECREL relocation in section: " + sec->getSectionName()); in applySecRel()
295 sec->getSectionName()); in applySecRelHigh12A()
508 if (next->getSectionName() <= child->getSectionName()) in addAssociative()
709 return consumeDebugMagic(getContents(), getSectionName()); in consumeDebugMagic()
739 if (c->getSectionName() == name) in findByName()
H A DLLDMapFile.cpp121 os << indent8 << sc->file->getName() << ":(" << sc->getSectionName() in writeLLDMapFile()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DProfileList.cpp74 static StringRef getSectionName(CodeGenOptions::ProfileInstrKind Kind) { in getSectionName() function
90 StringRef Section = getSectionName(Kind); in getDefault()
121 StringRef Section = getSectionName(Kind); in isFunctionExcluded()
141 StringRef Section = getSectionName(Kind); in isFileExcluded()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Di386.h341 static StringRef getSectionName() { return "$__GOT"; } in getSectionName() function
377 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
389 static StringRef getSectionName() { return "$__STUBS"; } in getSectionName() function
415 PLTSection = &G.createSection(getSectionName(), in getStubsSection()
H A DTableManager.h41 dbgs() << " Created " << impl().getSectionName() << " entry for " in getEntryForTarget()
49 dbgs() << " Using " << impl().getSectionName() << " entry " in getEntryForTarget()
H A Dloongarch.h317 static StringRef getSectionName() { return "$__GOT"; } in getSectionName() function
350 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
363 static StringRef getSectionName() { return "$__STUBS"; } in getSectionName() function
386 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Dppc64.h161 static StringRef getSectionName() { return "$__GOT"; } in getSectionName() function
190 TOCSection = G.findSectionByName(getSectionName()); in getOrCreateTOCSection()
192 TOCSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getOrCreateTOCSection()
204 static StringRef getSectionName() { return "$__STUBS"; } in getSectionName() function
248 PLTSection = G.findSectionByName(getSectionName()); in getOrCreateStubsSection()
250 PLTSection = &G.createSection(getSectionName(), in getOrCreateStubsSection()
H A Dx86_64.h569 static StringRef getSectionName() { return "$__GOT"; } in getSectionName() function
617 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getGOTSection()
629 static StringRef getSectionName() { return "$__STUBS"; } in getSectionName() function
655 PLTSection = &G.createSection(getSectionName(), in getStubsSection()
H A Daarch64.h670 static StringRef getSectionName() { return "$__GOT"; } in getSectionName() function
720 GOTSection = &G.createSection(getSectionName(), in getGOTSection()
733 static StringRef getSectionName() { return "$__STUBS"; } in getSectionName() function
756 StubsSection = &G.createSection(getSectionName(), in getStubsSection()
H A Daarch32.h333 static StringRef getSectionName() { return "$__GOT"; }
351 static StringRef getSectionName() {
385 static StringRef getSectionName() {
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerBinaryMetadata.cpp167 StringRef getSectionName(StringRef SectionSuffix);
291 const StringRef Section = getSectionName(MI->SectionSuffix); in runOn()
436 Sections.push_back({getSectionName(MI->SectionSuffix), {}}); in runOn()
454 StringRef SanitizerBinaryMetadata::getSectionName(StringRef SectionSuffix) { in getSectionName() function in __anon0fd18e980111::SanitizerBinaryMetadata
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h97 StringRef getSectionName() const { return SectionName; } in getSectionName() function
216 Header.getSectionName(), in extract()
290 Header.getSectionName(), Header.getListTypeString())) in findList()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_aarch64.cpp441 static StringRef getSectionName() { return "$__TLSINFO"; } in getSectionName() function in __anon8321e4d40111::TLSInfoTableManager_ELF_aarch64
460 TLSInfoTable = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSInfoSection()
485 static StringRef getSectionName() { return "$__TLSDESC"; } in getSectionName() function in __anon8321e4d40111::TLSDescTableManager_ELF_aarch64
528 GOTSection = &G.createSection(getSectionName(), orc::MemProt::Read); in getTLSDescSection()
H A DELF_x86_64.cpp40 static StringRef getSectionName() { return ELFTLSInfoSectionName; } in getSectionName() function in __anondf6a795a0111::TLSInfoTableManager_ELF_x86_64
259 x86_64::GOTTableManager::getSectionName())) { in getOrCreateGOTSymbol()
279 G.findSectionByName(x86_64::GOTTableManager::getSectionName())) { in getOrCreateGOTSymbol()
H A DELFLinkGraphBuilder.h321 auto Name = Obj.getSectionName(Sec, SectionStringTab); in graphifySections()
432 if (auto SymTabNameOrErr = Obj.getSectionName(*SymTabSec, SectionStringTab)) in graphifySymbols()
608 Expected<StringRef> Name = Obj.getSectionName(**FixupSection); in forEachRelaRelocation()
658 Expected<StringRef> Name = Obj.getSectionName(**FixupSection); in forEachRelRelocation()
H A DELF_i386.cpp61 i386::GOTTableManager::getSectionName())) { in getOrCreateGOTSymbol()
81 G.findSectionByName(i386::GOTTableManager::getSectionName())) { in getOrCreateGOTSymbol()
H A DELF_ppc64.cpp41 static StringRef getSectionName() { return ELFTLSInfoSectionName; } in getSectionName() function in __anonccdfa0d80111::TLSInfoTableManager_ELF_ppc64
170 if (Section *TOCSection = G.findSectionByName(TOC.getSectionName())) { in buildTables_ELF_ppc64()
437 ppc64::TOCTableManager<Endianness>::getSectionName())) { in defineTOCBase()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Parallel/
H A DDWARFLinker.h103 const StringLiteral &getName() const { return getSectionName(SectionKind); } in getName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h87 Expected<StringRef> NameOrErr = Obj.getSectionName(Shdr); in printUnwindInformation()
106 Expected<StringRef> NameOrErr = Obj.getSectionName(*EHFrameHdr); in printEHFrameHdr()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerBase.h66 getSectionName(DebugSectionKind SectionKind) { in getSectionName() function
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DOutputSections.h322 formatv("Section {0} does not exist", getSectionName(SectionKind)) in getSectionDescriptor()
337 formatv("Section {0} does not exist", getSectionName(SectionKind)) in getSectionDescriptor()

123