Commit d3e7cad6 authored by Namhyung Kim's avatar Namhyung Kim

perf annotate: Add a hashmap for symbol histogram

Now symbol histogram uses an array to save per-offset sample counts.
But it wastes a lot of memory if the symbol has a few samples only.
Add a hashmap to save values only for actual samples.

For now, it has duplicate histogram (one in the existing array and
another in the new hash map).  Once it can convert to use the hash
in all places, we can get rid of the array later.
Reviewed-by: default avatarIan Rogers <irogers@google.com>
Reviewed-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Tested-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Signed-off-by: default avatarNamhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20240304230815.1440583-2-namhyung@kernel.org
parent 7bfc84b2
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include "arch/common.h" #include "arch/common.h"
#include "namespaces.h" #include "namespaces.h"
#include "thread.h" #include "thread.h"
#include "hashmap.h"
#include <regex.h> #include <regex.h>
#include <linux/bitops.h> #include <linux/bitops.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -863,6 +864,17 @@ bool arch__is(struct arch *arch, const char *name) ...@@ -863,6 +864,17 @@ bool arch__is(struct arch *arch, const char *name)
return !strcmp(arch->name, name); return !strcmp(arch->name, name);
} }
/* symbol histogram: key = offset << 16 | evsel->core.idx */
static size_t sym_hist_hash(long key, void *ctx __maybe_unused)
{
return (key >> 16) + (key & 0xffff);
}
static bool sym_hist_equal(long key1, long key2, void *ctx __maybe_unused)
{
return key1 == key2;
}
static struct annotated_source *annotated_source__new(void) static struct annotated_source *annotated_source__new(void)
{ {
struct annotated_source *src = zalloc(sizeof(*src)); struct annotated_source *src = zalloc(sizeof(*src));
...@@ -877,6 +889,8 @@ static __maybe_unused void annotated_source__delete(struct annotated_source *src ...@@ -877,6 +889,8 @@ static __maybe_unused void annotated_source__delete(struct annotated_source *src
{ {
if (src == NULL) if (src == NULL)
return; return;
hashmap__free(src->samples);
zfree(&src->histograms); zfree(&src->histograms);
free(src); free(src);
} }
...@@ -909,6 +923,14 @@ static int annotated_source__alloc_histograms(struct annotated_source *src, ...@@ -909,6 +923,14 @@ static int annotated_source__alloc_histograms(struct annotated_source *src,
src->sizeof_sym_hist = sizeof_sym_hist; src->sizeof_sym_hist = sizeof_sym_hist;
src->nr_histograms = nr_hists; src->nr_histograms = nr_hists;
src->histograms = calloc(nr_hists, sizeof_sym_hist) ; src->histograms = calloc(nr_hists, sizeof_sym_hist) ;
if (src->histograms == NULL)
return -1;
src->samples = hashmap__new(sym_hist_hash, sym_hist_equal, NULL);
if (src->samples == NULL)
zfree(&src->histograms);
return src->histograms ? 0 : -1; return src->histograms ? 0 : -1;
} }
...@@ -920,6 +942,7 @@ void symbol__annotate_zero_histograms(struct symbol *sym) ...@@ -920,6 +942,7 @@ void symbol__annotate_zero_histograms(struct symbol *sym)
if (notes->src != NULL) { if (notes->src != NULL) {
memset(notes->src->histograms, 0, memset(notes->src->histograms, 0,
notes->src->nr_histograms * notes->src->sizeof_sym_hist); notes->src->nr_histograms * notes->src->sizeof_sym_hist);
hashmap__clear(notes->src->samples);
} }
if (notes->branch && notes->branch->cycles_hist) { if (notes->branch && notes->branch->cycles_hist) {
memset(notes->branch->cycles_hist, 0, memset(notes->branch->cycles_hist, 0,
...@@ -983,8 +1006,10 @@ static int __symbol__inc_addr_samples(struct map_symbol *ms, ...@@ -983,8 +1006,10 @@ static int __symbol__inc_addr_samples(struct map_symbol *ms,
struct perf_sample *sample) struct perf_sample *sample)
{ {
struct symbol *sym = ms->sym; struct symbol *sym = ms->sym;
unsigned offset; long hash_key;
u64 offset;
struct sym_hist *h; struct sym_hist *h;
struct sym_hist_entry *entry;
pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map__unmap_ip(ms->map, addr)); pr_debug3("%s: addr=%#" PRIx64 "\n", __func__, map__unmap_ip(ms->map, addr));
...@@ -1002,15 +1027,28 @@ static int __symbol__inc_addr_samples(struct map_symbol *ms, ...@@ -1002,15 +1027,28 @@ static int __symbol__inc_addr_samples(struct map_symbol *ms,
__func__, __LINE__, sym->name, sym->start, addr, sym->end, sym->type == STT_FUNC); __func__, __LINE__, sym->name, sym->start, addr, sym->end, sym->type == STT_FUNC);
return -ENOMEM; return -ENOMEM;
} }
hash_key = offset << 16 | evidx;
if (!hashmap__find(src->samples, hash_key, &entry)) {
entry = zalloc(sizeof(*entry));
if (entry == NULL)
return -ENOMEM;
if (hashmap__add(src->samples, hash_key, entry) < 0)
return -ENOMEM;
}
h->nr_samples++; h->nr_samples++;
h->addr[offset].nr_samples++; h->addr[offset].nr_samples++;
h->period += sample->period; h->period += sample->period;
h->addr[offset].period += sample->period; h->addr[offset].period += sample->period;
entry->nr_samples++;
entry->period += sample->period;
pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64 pr_debug3("%#" PRIx64 " %s: period++ [addr: %#" PRIx64 ", %#" PRIx64
", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n", ", evidx=%d] => nr_samples: %" PRIu64 ", period: %" PRIu64 "\n",
sym->start, sym->name, addr, addr - sym->start, evidx, sym->start, sym->name, addr, addr - sym->start, evidx,
h->addr[offset].nr_samples, h->addr[offset].period); entry->nr_samples, entry->period);
return 0; return 0;
} }
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "symbol_conf.h" #include "symbol_conf.h"
#include "mutex.h" #include "mutex.h"
#include "spark.h" #include "spark.h"
#include "hashmap.h"
struct hist_browser_timer; struct hist_browser_timer;
struct hist_entry; struct hist_entry;
...@@ -280,6 +281,7 @@ struct annotated_source { ...@@ -280,6 +281,7 @@ struct annotated_source {
size_t sizeof_sym_hist; size_t sizeof_sym_hist;
struct sym_hist *histograms; struct sym_hist *histograms;
struct annotation_line **offsets; struct annotation_line **offsets;
struct hashmap *samples;
int nr_histograms; int nr_histograms;
int nr_entries; int nr_entries;
int nr_asm_entries; int nr_asm_entries;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment