mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 00:21:17 +00:00
perf annotate: Introduce scnprintf ins_ops method
And implement the jump one, where if the operands string is not passed, a compact form that uses just the target address is used. Right now this is toggled via the 'o' option in the annotate browser, switching from: 0.00 : ffffffff811661e8: je ffffffff81166204 <mem_cgroup_count_vm_event+0x44> 0.00 : ffffffff811661ea: cmp $0xb,%esi 0.00 : ffffffff811661ed: je ffffffff811661f8 <mem_cgroup_count_vm_event+0x38> To: 0.00 : 28: je 44 0.00 : 2a: cmp $0xb,%esi 0.00 : 2d: je 38 Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-o88q46yh4kxgpd1chk5gvjl5@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
d86b0597c4
commit
28548d78ad
3 changed files with 25 additions and 2 deletions
|
@ -7,8 +7,12 @@
|
|||
#include <linux/list.h>
|
||||
#include <linux/rbtree.h>
|
||||
|
||||
struct ins;
|
||||
|
||||
struct ins_ops {
|
||||
int (*parse_target)(const char *operands, u64 *target);
|
||||
int (*scnprintf)(struct ins *ins, char *bf, size_t size,
|
||||
const char *operands, u64 target);
|
||||
};
|
||||
|
||||
struct ins {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue