aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/annotate.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/annotate.h')
-rw-r--r--tools/perf/util/annotate.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h
index bb0a9f27165b..78a5692dd718 100644
--- a/tools/perf/util/annotate.h
+++ b/tools/perf/util/annotate.h
@@ -13,13 +13,26 @@ struct ins;
13struct ins_operands { 13struct ins_operands {
14 char *raw; 14 char *raw;
15 struct { 15 struct {
16 char *raw;
16 char *name; 17 char *name;
17 u64 offset;
18 u64 addr; 18 u64 addr;
19 u64 offset;
19 } target; 20 } target;
21 union {
22 struct {
23 char *raw;
24 char *name;
25 u64 addr;
26 } source;
27 struct {
28 struct ins *ins;
29 struct ins_operands *ops;
30 } locked;
31 };
20}; 32};
21 33
22struct ins_ops { 34struct ins_ops {
35 void (*free)(struct ins_operands *ops);
23 int (*parse)(struct ins_operands *ops); 36 int (*parse)(struct ins_operands *ops);
24 int (*scnprintf)(struct ins *ins, char *bf, size_t size, 37 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
25 struct ins_operands *ops); 38 struct ins_operands *ops);