Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp2386 const ELFSectionHeader *plt_hdr) { in GetPltEntrySizeAndOffset() argument
2392 plt_hdr->sh_addralign in GetPltEntrySizeAndOffset()
2393 ? llvm::alignTo(plt_hdr->sh_entsize, plt_hdr->sh_addralign) in GetPltEntrySizeAndOffset()
2394 : plt_hdr->sh_entsize; in GetPltEntrySizeAndOffset()
2406 if (plt_hdr->sh_addralign) in GetPltEntrySizeAndOffset()
2407 plt_entsize = plt_hdr->sh_size / plt_hdr->sh_addralign / in GetPltEntrySizeAndOffset()
2408 (num_relocations + 1) * plt_hdr->sh_addralign; in GetPltEntrySizeAndOffset()
2410 plt_entsize = plt_hdr->sh_size / (num_relocations + 1); in GetPltEntrySizeAndOffset()
2413 elf_xword plt_offset = plt_hdr->sh_size - num_relocations * plt_entsize; in GetPltEntrySizeAndOffset()
2421 const ELFSectionHeader *plt_hdr, const ELFSectionHeader *sym_hdr, in ParsePLTRelocations() argument
[all …]