Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp359 static Expected<DynSym> create(const ELFFile<ELFT> &ElfFile, in create() argument
361 Expected<Elf_Shdr_Range> Shdrs = ElfFile.sections(); in create()
364 return DynSym(ElfFile, DynEnt, *Shdrs); in create()
369 return ElfFile.base() + DynSymHdr->sh_offset; in getDynSym()
375 return ElfFile.getStringTableForSymtab(*DynSymHdr, Shdrs); in getDynStr()
385 DynSym(const ELFFile<ELFT> &ElfFile, const DynamicEntries &DynEnt, in DynSym() argument
387 : ElfFile(ElfFile), DynEnt(DynEnt), Shdrs(Shdrs), in DynSym()
415 const ELFFile<ELFT> &ElfFile; member in llvm::ifs::__anon85c935ce0111::DynSym
580 const ELFFile<ELFT> &ElfFile = ElfObj.getELFFile(); in buildStub() local
582 Expected<Elf_Dyn_Range> DynTable = ElfFile.dynamicEntries(); in buildStub()
[all …]
/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp1345 : ElfFile(ElfObj.getELFFile()), Obj(Obj), in ELFBuilder()
1347 Obj.IsMips64EL = ElfFile.isMips64EL(); in ELFBuilder()
1512 ElfFile.symbols(*Shdr); in initSymbolTable()
1718 ElfFile.sections(); in readSectionHeaders()
1748 ElfFile.base() + Shdr.sh_offset, in readSectionHeaders()
1756 uint32_t ShstrIndex = ElfFile.getHeader().e_shstrndx; in readSections()
1758 Expected<const Elf_Shdr *> Sec = ElfFile.getSection(0); in readSections()
1811 ElfFile.sections(); in readSections()
1819 ElfFile.rels(*Shdr); in readSections()
1827 ElfFile.relas(*Shdr); in readSections()
[all …]
H A DELFObject.h954 const ELFFile<ELFT> &ElfFile; variable
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp268 const llvm::object::ELF64LEFile& ElfFile = Elf64LEObject->getELFFile(); in initialize() local
269 auto PHdrsOr = ElfFile.program_headers(); in initialize()