Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf annotate-data: Add pr_debug_scope()

The pr_debug_scope() is to print more information about the scope DIE
during the instruction tracking so that it can help finding relevant
debug info and the source code like inlined functions more easily.

$ perf --debug type-profile annotate --data-type
...
-----------------------------------------------------------
find data type for 0(reg0, reg12) at set_task_cpu+0xdd
CU for kernel/sched/core.c (die:0x1268dae)
frame base: cfa=1 fbreg=7
scope: [3/3] (die:12b6d28) [inlined] set_task_rq <<<--- (here)
bb: [9f - dd]
var [9f] reg3 type='struct task_struct*' size=0x8 (die:0x126aff0)
var [9f] reg6 type='unsigned int' size=0x4 (die:0x1268e0d)

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20240909214251.3033827-2-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Namhyung Kim and committed by
Arnaldo Carvalho de Melo
02648783 c8b93587

+23 -2
+23 -2
tools/perf/util/annotate-data.c
··· 131 131 } 132 132 } 133 133 134 + static void pr_debug_scope(Dwarf_Die *scope_die) 135 + { 136 + int tag; 137 + 138 + if (!debug_type_profile && verbose < 3) 139 + return; 140 + 141 + pr_info("(die:%lx) ", (long)dwarf_dieoffset(scope_die)); 142 + 143 + tag = dwarf_tag(scope_die); 144 + if (tag == DW_TAG_subprogram) 145 + pr_info("[function] %s\n", dwarf_diename(scope_die)); 146 + else if (tag == DW_TAG_inlined_subroutine) 147 + pr_info("[inlined] %s\n", dwarf_diename(scope_die)); 148 + else if (tag == DW_TAG_lexical_block) 149 + pr_info("[block]\n"); 150 + else 151 + pr_info("[unknown] tag=%x\n", tag); 152 + } 153 + 134 154 bool has_reg_type(struct type_state *state, int reg) 135 155 { 136 156 return (unsigned)reg < ARRAY_SIZE(state->regs); ··· 1325 1305 if (dwarf_ranges(&scopes[i], 0, &base, &start, &end) < 0) 1326 1306 break; 1327 1307 1328 - pr_debug_dtp("scope: [%d/%d] (die:%lx)\n", 1329 - i + 1, nr_scopes, (long)dwarf_dieoffset(&scopes[i])); 1308 + pr_debug_dtp("scope: [%d/%d] ", i + 1, nr_scopes); 1309 + pr_debug_scope(&scopes[i]); 1310 + 1330 1311 src_ip = map__objdump_2rip(dloc->ms->map, start); 1331 1312 1332 1313 again: