Home
last modified time | relevance | path

Searched refs:ElfFile (Results 1 – 4 of 4) sorted by relevance

/openbsd/gnu/llvm/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp360 static Expected<DynSym> create(const ELFFile<ELFT> &ElfFile, in create() argument
362 Expected<Elf_Shdr_Range> Shdrs = ElfFile.sections(); in create()
365 return DynSym(ElfFile, DynEnt, *Shdrs); in create()
370 return ElfFile.base() + DynSymHdr->sh_offset; in getDynSym()
376 return ElfFile.getStringTableForSymtab(*DynSymHdr, Shdrs); in getDynStr()
386 DynSym(const ELFFile<ELFT> &ElfFile, const DynamicEntries &DynEnt, in DynSym() argument
388 : ElfFile(ElfFile), DynEnt(DynEnt), Shdrs(Shdrs), in DynSym()
416 const ELFFile<ELFT> &ElfFile; member in llvm::ifs::__anon99d7a38b0111::DynSym
581 const ELFFile<ELFT> &ElfFile = ElfObj.getELFFile(); in buildStub() local
583 Expected<Elf_Dyn_Range> DynTable = ElfFile.dynamicEntries(); in buildStub()
[all …]
/openbsd/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1366 : ElfFile(ElfObj.getELFFile()), Obj(Obj), in ELFBuilder()
1368 Obj.IsMips64EL = ElfFile.isMips64EL(); in ELFBuilder()
1533 ElfFile.symbols(*Shdr); in initSymbolTable()
1739 ElfFile.sections(); in readSectionHeaders()
1769 ElfFile.base() + Shdr.sh_offset, in readSectionHeaders()
1777 uint32_t ShstrIndex = ElfFile.getHeader().e_shstrndx; in readSections()
1779 Expected<const Elf_Shdr *> Sec = ElfFile.getSection(0); in readSections()
1832 ElfFile.sections(); in readSections()
1840 ElfFile.rels(*Shdr); in readSections()
1848 ElfFile.relas(*Shdr); in readSections()
[all …]
H A DELFObject.h957 const ELFFile<ELFT> &ElfFile; variable
/openbsd/gnu/llvm/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp269 const llvm::object::ELF64LEFile& ElfFile = Elf64LEObject->getELFFile(); in initialize() local
270 auto PHdrsOr = ElfFile.program_headers(); in initialize()