| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 195 getSectionContents(const COFFObjectFile *Obj, in getSectionContents() function 204 return Obj->getSectionContents(Section, Contents); in getSectionContents() 463 if (Error E = Obj->getSectionContents(Pdata, Contents)) in getPDataSection() 581 if (Error E = getSectionContents( in printRuntimeFunctionRels()
|
| H A D | ELFDump.cpp | 348 unwrapOrError(Elf.getSectionContents(Shdr), FileName); in printSymbolVersionInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 340 if (Error E = Ctx.COFF.getSectionContents(XData, Contents)) in printRuntimeFunction() 367 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 | 2602 Obj.getSectionContents(Sec)) { in printAttributes() 2709 unwrapOrError(FileName, Obj.getSectionContents(*GotSec)); in findGOT() 2759 unwrapOrError(FileName, Obj.getSectionContents(*GotSec)); in findGOT() 2803 Obj.getSectionContents(*PltSec)) in findPLT() 3029 Obj.getSectionContents(*RegInfoSec); in printMipsReginfo() 3095 unwrapOrError(ObjF.getFileName(), Obj.getSectionContents(*MipsOpts)); in printMipsOptions() 3134 Obj.getSectionContents(*StackMapSection); in printStackMap() 4744 Expected<ArrayRef<uint8_t>> ContentsOrErr = Obj.getSectionContents(Sec); in decodeAddrsigSection() 5895 unwrapOrError(this->FileName, Obj.getSectionContents(Sec)); in printNonRelocatableStackSizes() 6169 Dumper.getElfObject().getELFFile().getSectionContents(*Sec); in getMipsAbiFlagsSection() [all …]
|
| H A D | ARMWinEHPrinter.cpp | 908 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpXDataRecord() 1276 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents)) in dumpProcedureData()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ObjectFile.h | 268 getSectionContents(DataRefImpl Sec) const = 0; 464 OwningObject->getSectionContents(SectionPimpl); in getContents()
|
| H A D | ELF.h | 393 Expected<ArrayRef<uint8_t>> getSectionContents(const Elf_Shdr &Sec) const; 544 ELFFile<ELFT>::getSectionContents(const Elf_Shdr &Sec) const { in getSectionContents() function 877 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in getVersionDefinitions() 970 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in getVersionDependencies()
|
| H A D | MachO.h | 300 ArrayRef<uint8_t> getSectionContents(uint32_t Offset, uint64_t Size) const; 302 getSectionContents(DataRefImpl Sec) const override;
|
| H A D | ELFObjectFile.h | 283 getSectionContents(DataRefImpl Sec) const override; 373 auto ErrorOrContents = EF.getSectionContents(Sec); in getBuildAttributes() 840 ELFObjectFile<ELFT>::getSectionContents(DataRefImpl Sec) const { in getSectionContents() function
|
| H A D | Wasm.h | 186 getSectionContents(DataRefImpl Sec) const override;
|
| H A D | COFF.h | 955 getSectionContents(DataRefImpl Sec) const override; 1077 Error getSectionContents(const coff_section *Sec,
|
| H A D | XCOFFObjectFile.h | 335 getSectionContents(DataRefImpl Sec) const override;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ELF.cpp | 380 Expected<ArrayRef<uint8_t>> ContentsOrErr = getSectionContents(Sec); in android_relas() 618 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() 1131 Error COFFObjectFile::getSectionContents(const coff_section *Sec, in getSectionContents() function in COFFObjectFile 1862 if (Error E = Obj->getSectionContents(*Section, Contents)) in getContents()
|
| H A D | XCOFFObjectFile.cpp | 276 XCOFFObjectFile::getSectionContents(DataRefImpl Sec) const { in getSectionContents() function in llvm::object::XCOFFObjectFile
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/ |
| H A D | Reader.cpp | 69 if (Error E = COFFObj.getSectionContents(Sec, Contents)) in readSections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/ |
| H A D | Object.cpp | 1682 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1693 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1703 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1708 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1713 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1718 if (Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr)) in makeSection() 1735 Expected<ArrayRef<uint8_t>> Data = ElfFile.getSectionContents(Shdr); in makeSection()
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | InputSection.cpp | 52 static ArrayRef<uint8_t> getSectionContents(ObjFile<ELFT> &file, in getSectionContents() function 56 return check(file.getObj().getSectionContents(hdr)); in getSectionContents() 145 getSectionContents(file, hdr), name, sectionKind) { in InputSectionBase()
|
| H A D | InputFiles.cpp | 882 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(sec)); in createInputSection() 906 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(sec)); in createInputSection() 1388 ArrayRef<uint8_t> data = CHECK(obj.getSectionContents(*sec), this); in parseVerneed()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| H A D | MachOReader.cpp | 86 MachOObj.getSectionContents(SecRef->getRawDataRefImpl()); in extractSections()
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | Chunks.cpp | 647 cantFail(file->getCOFFObj()->getSectionContents(header, a)); in getContents()
|
| H A D | Driver.cpp | 1050 obj->getCOFFObj()->getSectionContents(obj->callgraphSec, contents)); in readCallGraphsFromObjectFiles() 1093 obj->getCOFFObj()->getSectionContents(obj->addrsigSec, contents)); in findKeepUniqueSections()
|
| H A D | InputFiles.cpp | 242 cantFail(coffObj->getSectionContents(sec, data)); in readSection()
|