diff options
author | Andi Kleen <ak@linux.intel.com> | 2012-10-30 17:34:08 -0700 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-31 12:18:26 -0200 |
commit | ffadcf090d468e9c4938b718649f38dd10cfdb02 (patch) | |
tree | 5a62de8c8cf9c47d2c27e933e68a9d9a5e877990 /tools/perf | |
parent | 688b2c2f17943d48bccbaad4c43430ee68c4c1cd (diff) | |
download | linux-ffadcf090d468e9c4938b718649f38dd10cfdb02.tar.gz linux-ffadcf090d468e9c4938b718649f38dd10cfdb02.tar.bz2 linux-ffadcf090d468e9c4938b718649f38dd10cfdb02.zip |
perf annotate: Handle XBEGIN like a jump
So that the browser still shows the abort label.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1351643663-23828-18-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/util/annotate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c index 7a34dd18b74c..b14d4df9f149 100644 --- a/tools/perf/util/annotate.c +++ b/tools/perf/util/annotate.c @@ -401,6 +401,8 @@ static struct ins instructions[] = { { .name = "testb", .ops = &mov_ops, }, { .name = "testl", .ops = &mov_ops, }, { .name = "xadd", .ops = &mov_ops, }, + { .name = "xbeginl", .ops = &jump_ops, }, + { .name = "xbeginq", .ops = &jump_ops, }, }; static int ins__cmp(const void *name, const void *insp) |