Lines Matching refs:ElfFile
359 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()
402 Expected<const uint8_t *> SecPtr = ElfFile.toMappedAddr(EntAddr); in getDynamicData()
407 Expected<const uint8_t *> SecEndPtr = ElfFile.toMappedAddr(EntAddr + Size); in getDynamicData()
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()
591 Expected<DynSym<ELFT>> EDynSym = DynSym<ELFT>::create(ElfFile, DynEnt); in buildStub()
602 DestStub->Target.Arch = static_cast<IFSArch>(ElfFile.getHeader().e_machine); in buildStub()
604 convertELFBitWidthToIFS(ElfFile.getHeader().e_ident[EI_CLASS]); in buildStub()
606 convertELFEndiannessToIFS(ElfFile.getHeader().e_ident[EI_DATA]); in buildStub()
630 Expected<uint64_t> SymCount = ElfFile.getDynSymtabSize(); in buildStub()