| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | Chunks.h | 98 StringRef getSectionName() const; 161 virtual StringRef getSectionName() const { in getSectionName() function 219 StringRef getSectionName() const { in getSectionName() function 249 return getSectionName() == ".debug" || getSectionName().startswith(".debug$"); in isCodeView() 254 return getSectionName().startswith(".debug_") || getSectionName() == ".eh_frame"; in isDWARF() 385 inline StringRef Chunk::getSectionName() const { in getSectionName() function 387 return static_cast<const SectionChunk *>(this)->getSectionName(); in getSectionName() 389 return static_cast<const NonSectionChunk *>(this)->getSectionName(); in getSectionName() 423 StringRef getSectionName() const override { return ".rdata"; } in getSectionName() function 441 StringRef getSectionName() const override { return ".bss"; } in getSectionName() function
|
| H A D | ICF.cpp | 92 StringRef outSecName = c->getSectionName().split('$').first; in isEligible() 135 StringRef Name = assoc.getSectionName(); in assocEquals() 175 a->getSectionName() == b->getSectionName() && in equalsConstant()
|
| H A D | MapFile.cpp | 260 c->getSectionName() != ChunkRanges.back().first->getSectionName()) { in writeMapFile() 280 os << " " << left_justify(cr.first->getSectionName(), 23); in writeMapFile()
|
| H A D | Chunks.cpp | 41 if (Expected<StringRef> e = file->getCOFFObj()->getSectionName(header)) in SectionChunk() 90 error("overflow in SECREL relocation in section: " + sec->getSectionName()); in applySecRel() 268 sec->getSectionName()); in applySecRelHigh12A() 470 if (next->getSectionName() <= child->getSectionName()) in addAssociative() 653 return consumeDebugMagic(getContents(), getSectionName()); in consumeDebugMagic() 683 if (c->getSectionName() == name) in findByName()
|
| H A D | LLDMapFile.cpp | 117 os << indent8 << sc->file->getName() << ":(" << sc->getSectionName() in writeLLDMapFile()
|
| H A D | InputFiles.cpp | 234 if (Expected<StringRef> e = coffObj->getSectionName(sec)) in readSection() 325 if (Expected<StringRef> e = coffObj->getSectionName(parentSec)) in readAssociativeDefinition() 366 StringRef name = sc->getSectionName().split('$').second; in recordPrevailingSymbolForMingw()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | ProfileList.cpp | 74 static StringRef getSectionName(CodeGenOptions::ProfileInstrKind Kind) { in getSectionName() function 91 StringRef Section = getSectionName(Kind); in isFunctionExcluded() 108 StringRef Section = getSectionName(Kind); in isFileExcluded()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFListTable.h | 98 StringRef getSectionName() const { return SectionName; } in getSectionName() function 214 Header.getSectionName(), in extract() 288 Header.getSectionName(), Header.getListTypeString())) in findList()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | DwarfCFIEHPrinter.h | 87 Expected<StringRef> NameOrErr = Obj.getSectionName(Shdr); in printUnwindInformation() 106 Expected<StringRef> NameOrErr = Obj.getSectionName(*EHFrameHdr); in printEHFrameHdr()
|
| H A D | ARMEHABIPrinter.h | 608 if (Expected<StringRef> Name = ELF.getSectionName(*EHT)) in PrintIndexTable() 634 if (Expected<StringRef> SectionName = ELF.getSectionName(Sec)) in PrintUnwindInformation()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | ELF_riscv.cpp | 181 auto RelSectName = Base::Obj.getSectionName(SecRef); in addRelocations() 193 auto UpdateSectionName = Base::Obj.getSectionName(**UpdateSection); in addRelocations()
|
| H A D | ELFLinkGraphBuilder.h | 237 auto Name = Obj.getSectionName(Sec, SectionStringTab); in graphifySections() 318 if (auto SymTabNameOrErr = Obj.getSectionName(*SymTabSec, SectionStringTab)) in graphifySymbols()
|
| H A D | ELF_x86_64.cpp | 271 auto RelSectName = Obj.getSectionName(SecRef); in addRelocations() 283 auto UpdateSectionName = Obj.getSectionName(**UpdateSection); in addRelocations()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELF.h | 387 getSectionName(const Elf_Shdr &Section, 389 Expected<StringRef> getSectionName(const Elf_Shdr &Section, 1161 ELFFile<ELFT>::getSectionName(const Elf_Shdr &Section, in getSectionName() function 1169 return getSectionName(Section, *Table); in getSectionName() 1173 Expected<StringRef> ELFFile<ELFT>::getSectionName(const Elf_Shdr &Section, in getSectionName() function
|
| H A D | ObjectFile.h | 263 virtual Expected<StringRef> getSectionName(DataRefImpl Sec) const = 0; 447 return OwningObject->getSectionName(SectionPimpl); in getName()
|
| H A D | ELFObjectFile.h | 278 Expected<StringRef> getSectionName(DataRefImpl Sec) const override; 813 Expected<StringRef> ELFObjectFile<ELFT>::getSectionName(DataRefImpl Sec) const { in getSectionName() function 814 return EF.getSectionName(*getSection(Sec)); in getSectionName() 932 Expected<StringRef> SectionNameOrErr = getSectionName(Sec); in isDebugSection()
|
| H A D | IRSymtab.h | 231 StringRef getSectionName() const { return SectionName; } in getSectionName() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Mangling.cpp | 159 auto SecName = cantFail(MachOObj.getSectionName(Sec.getRawDataRefImpl())); in getObjectSymbolInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-lto2/ |
| H A D | llvm-lto2.cpp | 476 if (!Sym.getSectionName().empty()) in dumpSymtab() 477 outs() << " section " << Sym.getSectionName() << "\n"; in dumpSymtab()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ObjectFile.cpp | 80 Expected<StringRef> NameOrErr = getSectionName(Sec); in isSectionBitcode()
|
| H A D | COFFObjectFile.cpp | 270 Expected<StringRef> COFFObjectFile::getSectionName(DataRefImpl Ref) const { in getSectionName() function in COFFObjectFile 272 return getSectionName(Sec); in getSectionName() 332 Expected<StringRef> SectionNameOrErr = getSectionName(Ref); in isDebugSection() 1088 COFFObjectFile::getSectionName(const coff_section *Sec) const { in getSectionName() function in COFFObjectFile
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/ |
| H A D | Reader.cpp | 75 if (Expected<StringRef> NameOrErr = COFFObj.getSectionName(Sec)) in readSections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | SanitizerCoverage.cpp | 232 std::string getSectionName(const std::string &Section) const; 690 Array->setSection(getSectionName(Section)); in CreateFunctionLocalArrayInSection() 970 ModuleSanitizerCoverage::getSectionName(const std::string &Section) const { in getSectionName() function in ModuleSanitizerCoverage
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 151 using irsymtab::Symbol::getSectionName;
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | InputFiles.h | 265 StringRef getSectionName(const Elf_Shdr &sec);
|