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

References

tools/llvm-readobj/ELFDumper.cpp
 3568     Fields[0].Str = getElfPtType(Header->e_machine, Phdr.p_type);
 3569     Fields[1].Str = to_string(format_hex(Phdr.p_offset, 8));
 3570     Fields[2].Str = to_string(format_hex(Phdr.p_vaddr, Width));
 3571     Fields[3].Str = to_string(format_hex(Phdr.p_paddr, Width));
 3572     Fields[4].Str = to_string(format_hex(Phdr.p_filesz, SizeWidth));
 3573     Fields[5].Str = to_string(format_hex(Phdr.p_memsz, SizeWidth));
 3574     Fields[6].Str = printPhdrFlags(Phdr.p_flags);
 3575     Fields[7].Str = to_string(format_hex(Phdr.p_align, 1));
 3578     if (Phdr.p_type == ELF::PT_INTERP) {
 3580       OS << reinterpret_cast<const char *>(Obj->base()) + Phdr.p_offset << "]";