Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp2391 elf_xword plt_entsize = in GetPltEntrySizeAndOffset() local
2400 if (plt_entsize <= 4) { in GetPltEntrySizeAndOffset()
2407 plt_entsize = plt_hdr->sh_size / 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()
2415 return std::make_pair(plt_entsize, plt_offset); in GetPltEntrySizeAndOffset()
2428 uint64_t plt_offset, plt_entsize; in ParsePLTRelocations() local
2429 std::tie(plt_entsize, plt_offset) = in ParsePLTRelocations()
2459 uint64_t plt_index = plt_offset + i * plt_entsize; in ParsePLTRelocations()
2471 plt_entsize, // Size in bytes of this symbol. in ParsePLTRelocations()