| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | elf2yaml.cpp | 849 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpStackSizesSection() 882 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpBBAddrMapSection() 939 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpAddrsigSection() 980 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpLinkerOptionsSection() 1011 Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.getSectionContents(*Shdr); in dumpDependentLibrariesSection() 1038 Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.getSectionContents(*Shdr); in dumpCallGraphProfileSection() 1152 Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.getSectionContents(*Shdr); in dumpRelrSection() 1168 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpContentSection() 1218 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpNoteSection() 1254 auto ContentOrErr = Obj.getSectionContents(*Shdr); in dumpHashSection() [all …]
|
| H A D | coff2yaml.cpp | 124 cantFail(Obj.getSectionContents(COFFSection, sectionData)); in initializeFileAndStringTable() 183 cantFail(Obj.getSectionContents(COFFSection, sectionData)); in dumpSections()
|
| H A D | xcoff2yaml.cpp | 84 Obj.getSectionContents(SectionDRI); in dumpSections()
|
| H A D | macho2yaml.cpp | 97 yaml::BinaryRef(Obj.getSectionContents(Sec.offset, Sec.size)); in constructSectionCommon() 190 yaml::BinaryRef(Obj.getSectionContents(Sec.offset, Sec.size)); in extractSections()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/XCOFF/ |
| H A D | XCOFFReader.cpp | 29 XCOFFObj.getSectionContents(SectionDRI); in readSections()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 352 getSectionContents(const COFFObjectFile *Obj, in getSectionContents() function 361 return Obj->getSectionContents(Section, Contents); in getSectionContents() 599 if (Error E = Obj->getSectionContents(Pdata, Contents)) in getPDataSection() 717 if (Error E = getSectionContents( in printRuntimeFunctionRels()
|
| H A D | ELFDump.cpp | 362 unwrapOrError(Elf.getSectionContents(Shdr), FileName); in printSymbolVersionInfo()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 379 if (Error E = Ctx.COFF.getSectionContents(XData, Contents)) in printRuntimeFunction() 406 if (Error E = Ctx.COFF.getSectionContents(PData, Contents)) in printData()
|
| H A D | ARMEHABIPrinter.h | 450 Expected<ArrayRef<uint8_t>> Contents = ELF.getSectionContents(EHT); in PrintExceptionTable() 522 Expected<ArrayRef<uint8_t>> Contents = ELF.getSectionContents(*IT); in PrintIndexTable()
|
| H A D | DwarfCFIEHPrinter.h | 183 ObjF.getELFFile().getSectionContents(*EHFrameShdr); in printEHFrame()
|
| H A D | ELFDumper.cpp | 2695 Obj.getSectionContents(Sec)) { in printAttributes() 2796 unwrapOrError(FileName, Obj.getSectionContents(*GotSec)); in findGOT() 2846 unwrapOrError(FileName, Obj.getSectionContents(*GotSec)); in findGOT() 2890 Obj.getSectionContents(*PltSec)) in findPLT() 3116 Obj.getSectionContents(*RegInfoSec); in printMipsReginfo() 3182 unwrapOrError(ObjF.getFileName(), Obj.getSectionContents(*MipsOpts)); in printMipsOptions() 3221 Obj.getSectionContents(*StackMapSection); in printStackMap() 4201 Expected<ArrayRef<uint8_t>> Data = this->Obj.getSectionContents(S); in printSectionDetails() 4906 Expected<ArrayRef<uint8_t>> ContentsOrErr = Obj.getSectionContents(Sec); in decodeAddrsigSection() 5866 Expected<ArrayRef<uint8_t>> ContentsOrErr = Obj.getSectionContents(Shdr); in printDependentLibsHelper() [all …]
|
| H A D | ARMWinEHPrinter.cpp | 1024 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord() 1451 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 268 getSectionContents(DataRefImpl Sec) const = 0; 478 OwningObject->getSectionContents(SectionPimpl); in getContents()
|
| H A D | ELF.h | 392 Expected<ArrayRef<uint8_t>> getSectionContents(const Elf_Shdr &Sec) const; 544 ELFFile<ELFT>::getSectionContents(const Elf_Shdr &Sec) const { in getSectionContents() function 911 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in getVersionDefinitions() 1004 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in getVersionDependencies()
|
| H A D | MachO.h | 446 ArrayRef<uint8_t> getSectionContents(uint32_t Offset, uint64_t Size) const; 448 getSectionContents(DataRefImpl Sec) const override;
|
| H A D | Wasm.h | 183 getSectionContents(DataRefImpl Sec) const override;
|
| H A D | ELFObjectFile.h | 296 getSectionContents(DataRefImpl Sec) const override; 386 auto ErrorOrContents = EF.getSectionContents(Sec); in getBuildAttributes() 860 ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec) const { in getSectionContents() function
|
| H A D | COFF.h | 948 getSectionContents(DataRefImpl Sec) const override; 1072 Error getSectionContents(const coff_section *Sec,
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | ELF.cpp | 389 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in android_relas() 644 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in decodeBBAddrMap()
|
| H A D | COFFObjectFile.cpp | 294 COFFObjectFile::getSectionContents(DataRefImpl Ref) const { in getSectionContents() function in COFFObjectFile 297 if (Error E = getSectionContents(Sec, Res)) in getSectionContents() 1188 Error COFFObjectFile::getSectionContents(const coff_section *Sec, in getSectionContents() function in COFFObjectFile 1926 if (Error E = Obj->getSectionContents(*Section, Contents)) in getContents()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/COFF/ |
| H A D | COFFReader.cpp | 69 if (Error E = COFFObj.getSectionContents(Sec, Contents)) in readSections()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 1666 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1677 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1687 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1692 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1697 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1702 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1719 Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr); in makeSection()
|
| /openbsd-src/gnu/llvm/lld/ELF/ |
| H A D | InputSection.cpp | 44 static ArrayRef<uint8_t> getSectionContents(ObjFile<ELFT> &file, in getSectionContents() function 48 return check(file.getObj().getSectionContents(hdr)); in getSectionContents() 94 hdr.sh_addralign, getSectionContents(file, hdr), name, in InputSectionBase()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOReader.cpp | 86 MachOObj.getSectionContents(SecRef->getRawDataRefImpl()); in extractSections()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | COFFLinkGraphBuilder.cpp | 168 if (auto Err = Obj.getSectionContents(*Sec, Data)) in graphifySections()
|