Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147547
b: refs/heads/master
c: b7a16ea
h: refs/heads/master
i:
  147545: 2b329d7
  147543: e467ba9
v: v3
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 27, 2009
1 parent 4f79ce6 commit 4e76784
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d716fba49c7445ec87c3f045c59624fac03ee3f2
refs/heads/master: b7a16eac5e679fb5f531b9eeff7db7952303e77d
94 changes: 76 additions & 18 deletions trunk/Documentation/perf_counter/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ static inline int elf_sym__is_function(const GElf_Sym *sym)
{
return elf_sym__type(sym) == STT_FUNC &&
sym->st_name != 0 &&
sym->st_shndx != SHN_UNDEF;
sym->st_shndx != SHN_UNDEF &&
sym->st_size != 0;
}

static inline const char *elf_sym__name(const GElf_Sym *sym,
Expand Down Expand Up @@ -222,28 +223,24 @@ static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
return sec;
}

static int dso__load(struct dso *self)
static int dso__load_sym(struct dso *self, int fd, char *name)
{
Elf_Data *symstrs;
uint32_t nr_syms;
int fd, err = -1;
int err = -1;
uint32_t index;
GElf_Ehdr ehdr;
GElf_Shdr shdr;
Elf_Data *syms;
GElf_Sym sym;
Elf_Scn *sec;
Elf *elf;


fd = open(self->name, O_RDONLY);
if (fd == -1)
return -1;
int nr = 0;

elf = elf_begin(fd, ELF_C_READ_MMAP, NULL);
if (elf == NULL) {
fprintf(stderr, "%s: cannot read %s ELF file.\n",
__func__, self->name);
__func__, name);
goto out_close;
}

Expand Down Expand Up @@ -292,16 +289,63 @@ static int dso__load(struct dso *self)
goto out_elf_end;

dso__insert_symbol(self, f);

nr++;
}

err = 0;
err = nr;
out_elf_end:
elf_end(elf);
out_close:
close(fd);
return err;
}

static int dso__load(struct dso *self)
{
int size = strlen(self->name) + sizeof("/usr/lib/debug%s.debug");
char *name = malloc(size);
int variant = 0;
int ret = -1;
int fd;

if (!name)
return -1;

more:
do {
switch (variant) {
case 0: /* Fedora */
snprintf(name, size, "/usr/lib/debug%s.debug", self->name);
break;
case 1: /* Ubuntu */
snprintf(name, size, "/usr/lib/debug%s", self->name);
break;
case 2: /* Sane people */
snprintf(name, size, "%s", self->name);
break;

default:
goto out;
}
variant++;

fd = open(name, O_RDONLY);
} while (fd < 0);

ret = dso__load_sym(self, fd, name);
close(fd);

/*
* Some people seem to have debuginfo files _WITHOUT_ debug info!?!?
*/
if (!ret)
goto more;

out:
free(name);
return ret;
}

static size_t dso__fprintf(struct dso *self, FILE *fp)
{
size_t ret = fprintf(fp, "dso: %s\n", self->name);
Expand Down Expand Up @@ -336,11 +380,23 @@ static struct dso *dsos__find(const char *name)
static struct dso *dsos__findnew(const char *name)
{
struct dso *dso = dsos__find(name);
int nr;

if (dso == NULL) {
dso = dso__new(name);
if (dso != NULL && dso__load(dso) < 0)
if (!dso)
goto out_delete_dso;

nr = dso__load(dso);
if (nr < 0) {
fprintf(stderr, "Failed to open: %s\n", name);
goto out_delete_dso;
}
if (!nr) {
fprintf(stderr,
"Failed to find debug symbols for: %s, maybe install a debug package?\n",
name);
}

dsos__add(dso);
}
Expand Down Expand Up @@ -547,9 +603,9 @@ symhist__fprintf(struct symhist *self, uint64_t total_samples, FILE *fp)
size_t ret;

if (total_samples)
ret = fprintf(fp, "%5.2f", (self->count * 100.0) / total_samples);
ret = fprintf(fp, "%5.2f%% ", (self->count * 100.0) / total_samples);
else
ret = fprintf(fp, "%12d", self->count);
ret = fprintf(fp, "%12d ", self->count);

ret += fprintf(fp, "%14s [%c] ",
thread__name(self->thread, bf, sizeof(bf)),
Expand Down Expand Up @@ -922,10 +978,12 @@ static int __cmd_report(void)
}
default: {
broken_event:
fprintf(stderr, "%p [%p]: skipping unknown header type: %d\n",
(void *)(offset + head),
(void *)(long)(event->header.size),
event->header.type);
if (dump_trace)
fprintf(stderr, "%p [%p]: skipping unknown header type: %d\n",
(void *)(offset + head),
(void *)(long)(event->header.size),
event->header.type);

total_unknown++;

/*
Expand Down

0 comments on commit 4e76784

Please sign in to comment.