File: dump-lines.cc

package info (click to toggle)
libelfin 0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 668 kB
  • sloc: cpp: 4,883; makefile: 189; python: 139; sh: 129; ansic: 10
file content (45 lines) | stat: -rw-r--r-- 1,125 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "elf++.hh"
#include "dwarf++.hh"

#include <fcntl.h>
#include <inttypes.h>

using namespace std;

void
dump_line_table(const dwarf::line_table &lt)
{
        for (auto &line : lt) {
                if (line.end_sequence)
                        printf("\n");
                else
                        printf("%-40s%8d%#20" PRIx64 "\n", line.file->path.c_str(),
                               line.line, line.address);
        }
}

int
main(int argc, char **argv)
{
        if (argc != 2) {
                fprintf(stderr, "usage: %s elf-file\n", argv[0]);
                return 2;
        }

        int fd = open(argv[1], O_RDONLY);
        if (fd < 0) {
                fprintf(stderr, "%s: %s\n", argv[1], strerror(errno));
                return 1;
        }

        elf::elf ef(elf::create_mmap_loader(fd));
        dwarf::dwarf dw(dwarf::elf::create_loader(ef));

        for (auto cu : dw.compilation_units()) {
                printf("--- <%x>\n", (unsigned int)cu.get_section_offset());
                dump_line_table(cu.get_line_table());
                printf("\n");
        }

        return 0;
}