reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 2383       plt_hdr->sh_addralign
 2384           ? llvm::alignTo(plt_hdr->sh_entsize, plt_hdr->sh_addralign)
 2384           ? llvm::alignTo(plt_hdr->sh_entsize, plt_hdr->sh_addralign)
 2385           : plt_hdr->sh_entsize;
 2397     if (plt_hdr->sh_addralign)
 2398       plt_entsize = plt_hdr->sh_size / plt_hdr->sh_addralign /
 2398       plt_entsize = plt_hdr->sh_size / plt_hdr->sh_addralign /
 2399                     (num_relocations + 1) * plt_hdr->sh_addralign;
 2401       plt_entsize = plt_hdr->sh_size / (num_relocations + 1);
 2404   elf_xword plt_offset = plt_hdr->sh_size - num_relocations * plt_entsize;