]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf symbols: Record whether a dso is 64-bit
authorAdrian Hunter <adrian.hunter@intel.com>
Mon, 14 Jul 2014 10:02:41 +0000 (13:02 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 16 Jul 2014 20:57:35 +0000 (17:57 -0300)
Add a flag to 'struct dso' to record if the dso is 64-bit or not.
Update the flag when reading the ELF.

This is needed for instruction decoding.  For example, x86 instruction
decoding depends on whether or not the 64-bit instruction set is used.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1405332185-4050-18-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/dso.c
tools/perf/util/dso.h
tools/perf/util/symbol-elf.c
tools/perf/util/symbol-minimal.c
tools/perf/util/symbol.c
tools/perf/util/symbol.h

index 819f10414f084a38722ecec1f3be747ebe7a36c7..fc006fed8877c6bc6c8dad239f607bb4a7770f76 100644 (file)
@@ -703,6 +703,7 @@ struct dso *dso__new(const char *name)
                dso->data.fd = -1;
                dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
                dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
+               dso->is_64_bit = (sizeof(void *) == 8);
                dso->loaded = 0;
                dso->rel = 0;
                dso->sorted_by_name = 0;
index ad553ba257bf4b5b88675d98a49255b2e6992bc1..c239e86541a3d075a1b8790d89ffd356ead177e6 100644 (file)
@@ -90,6 +90,7 @@ struct dso {
        u8               annotate_warned:1;
        u8               short_name_allocated:1;
        u8               long_name_allocated:1;
+       u8               is_64_bit:1;
        u8               sorted_by_name;
        u8               loaded;
        u8               rel;
index dce5ccf61f11e7cde9834ab3797def3f4933bb05..cef8f426356e7fff8cc146dc94514bead43f86a2 100644 (file)
@@ -599,6 +599,8 @@ int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
                        goto out_elf_end;
        }
 
+       ss->is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
+
        ss->symtab = elf_section_by_name(elf, &ehdr, &ss->symshdr, ".symtab",
                        NULL);
        if (ss->symshdr.sh_type != SHT_SYMTAB)
@@ -699,6 +701,7 @@ int dso__load_sym(struct dso *dso, struct map *map,
        bool remap_kernel = false, adjust_kernel_syms = false;
 
        dso->symtab_type = syms_ss->type;
+       dso->is_64_bit = syms_ss->is_64_bit;
        dso->rel = syms_ss->ehdr.e_type == ET_REL;
 
        /*
index bd15f490d04fe5ea83607d761b65bcdfca09cbbe..101f55d407d08216b139c33e550fddeaeefeccd2 100644 (file)
@@ -288,6 +288,23 @@ int dso__synthesize_plt_symbols(struct dso *dso __maybe_unused,
        return 0;
 }
 
+static int fd__is_64_bit(int fd)
+{
+       u8 e_ident[EI_NIDENT];
+
+       if (lseek(fd, 0, SEEK_SET))
+               return -1;
+
+       if (readn(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
+               return -1;
+
+       if (memcmp(e_ident, ELFMAG, SELFMAG) ||
+           e_ident[EI_VERSION] != EV_CURRENT)
+               return -1;
+
+       return e_ident[EI_CLASS] == ELFCLASS64;
+}
+
 int dso__load_sym(struct dso *dso, struct map *map __maybe_unused,
                  struct symsrc *ss,
                  struct symsrc *runtime_ss __maybe_unused,
@@ -295,6 +312,11 @@ int dso__load_sym(struct dso *dso, struct map *map __maybe_unused,
                  int kmodule __maybe_unused)
 {
        unsigned char *build_id[BUILD_ID_SIZE];
+       int ret;
+
+       ret = fd__is_64_bit(ss->fd);
+       if (ret >= 0)
+               dso->is_64_bit = ret;
 
        if (filename__read_build_id(ss->name, build_id, BUILD_ID_SIZE) > 0) {
                dso__set_build_id(dso, build_id);
index 2e6a2e219eb95f4dc33a44332635f90b02077523..ae2e4464afa7165a555e6cc0c3f1a0f8059d577c 100644 (file)
@@ -1065,6 +1065,7 @@ static int dso__load_kcore(struct dso *dso, struct map *map,
                              &is_64_bit);
        if (err)
                goto out_err;
+       dso->is_64_bit = is_64_bit;
 
        if (list_empty(&md.maps)) {
                err = -EINVAL;
index a81877b1dee0ec65efe783ec90e6a504b29d7518..436169dd1d84dde8c1f37ffce81b8819e7778e05 100644 (file)
@@ -216,6 +216,7 @@ struct symsrc {
        GElf_Shdr dynshdr;
 
        bool adjust_symbols;
+       bool is_64_bit;
 #endif
 };