Skip to content

Commit 0ea11a1

Browse files
Changbin Dugregkh
authored andcommitted
perf: script: add raw|disasm arguments to --insn-trace option
[ Upstream commit 6750ba4 ] Now '--insn-trace' accept a argument to specify the output format: - raw: display raw instructions. - disasm: display mnemonic instructions (if capstone is installed). $ sudo perf script --insn-trace=raw ls 1443864 [006] 2275506.209908875: 7f216b426100 _start+0x0 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) insn: 48 89 e7 ls 1443864 [006] 2275506.209908875: 7f216b426103 _start+0x3 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) insn: e8 e8 0c 00 00 ls 1443864 [006] 2275506.209908875: 7f216b426df0 _dl_start+0x0 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) insn: f3 0f 1e fa $ sudo perf script --insn-trace=disasm ls 1443864 [006] 2275506.209908875: 7f216b426100 _start+0x0 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) movq %rsp, %rdi ls 1443864 [006] 2275506.209908875: 7f216b426103 _start+0x3 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) callq _dl_start+0x0 ls 1443864 [006] 2275506.209908875: 7f216b426df0 _dl_start+0x0 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) illegal instruction ls 1443864 [006] 2275506.209908875: 7f216b426df4 _dl_start+0x4 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) pushq %rbp ls 1443864 [006] 2275506.209908875: 7f216b426df5 _dl_start+0x5 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) movq %rsp, %rbp ls 1443864 [006] 2275506.209908875: 7f216b426df8 _dl_start+0x8 (/usr/lib/x86_64-linux-gnu/ld-2.31.so) pushq %r15 Signed-off-by: Changbin Du <changbin.du@huawei.com> Reviewed-by: Adrian Hunter <adrian.hunter@intel.com> Cc: changbin.du@gmail.com Cc: Thomas Richter <tmricht@linux.ibm.com> Cc: Andi Kleen <ak@linux.intel.com> Signed-off-by: Namhyung Kim <namhyung@kernel.org> Link: https://lore.kernel.org/r/20240217074046.4100789-5-changbin.du@huawei.com Stable-dep-of: d4a98b4 ("perf script: Show also errors for --insn-trace option") Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 23b1940 commit 0ea11a1

2 files changed

Lines changed: 22 additions & 7 deletions

File tree

tools/perf/Documentation/perf-script.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,10 @@ include::itrace.txt[]
441441
will be printed. Each entry has function name and file/line. Enabled by
442442
default, disable with --no-inline.
443443

444-
--insn-trace::
445-
Show instruction stream for intel_pt traces. Combine with --xed to
446-
show disassembly.
444+
--insn-trace[=<raw|disasm>]::
445+
Show instruction stream in bytes (raw) or disassembled (disasm)
446+
for intel_pt traces. The default is 'raw'. To use xed, combine
447+
'raw' with --xed to show disassembly done by xed.
447448

448449
--xed::
449450
Run xed disassembler on output. Requires installing the xed disassembler.

tools/perf/builtin-script.c

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3765,10 +3765,24 @@ static int perf_script__process_auxtrace_info(struct perf_session *session,
37653765
#endif
37663766

37673767
static int parse_insn_trace(const struct option *opt __maybe_unused,
3768-
const char *str __maybe_unused,
3769-
int unset __maybe_unused)
3768+
const char *str, int unset __maybe_unused)
37703769
{
3771-
parse_output_fields(NULL, "+insn,-event,-period", 0);
3770+
const char *fields = "+insn,-event,-period";
3771+
int ret;
3772+
3773+
if (str) {
3774+
if (strcmp(str, "disasm") == 0)
3775+
fields = "+disasm,-event,-period";
3776+
else if (strlen(str) != 0 && strcmp(str, "raw") != 0) {
3777+
fprintf(stderr, "Only accept raw|disasm\n");
3778+
return -EINVAL;
3779+
}
3780+
}
3781+
3782+
ret = parse_output_fields(NULL, fields, 0);
3783+
if (ret < 0)
3784+
return ret;
3785+
37723786
itrace_parse_synth_opts(opt, "i0ns", 0);
37733787
symbol_conf.nanosecs = true;
37743788
return 0;
@@ -3914,7 +3928,7 @@ int cmd_script(int argc, const char **argv)
39143928
"only consider these symbols"),
39153929
OPT_INTEGER(0, "addr-range", &symbol_conf.addr_range,
39163930
"Use with -S to list traced records within address range"),
3917-
OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, NULL,
3931+
OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, "raw|disasm",
39183932
"Decode instructions from itrace", parse_insn_trace),
39193933
OPT_CALLBACK_OPTARG(0, "xed", NULL, NULL, NULL,
39203934
"Run xed disassembler on output", parse_xed),

0 commit comments

Comments
 (0)