perf annotate: Group operands members

So that the ins_ops can handle them in a single place, instead of adding
more and more functions or ins_ops parameters.

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-pk4dqaum6ftiz104dvimwgtb@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 3f862fd0
...@@ -113,13 +113,12 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro ...@@ -113,13 +113,12 @@ static void annotate_browser__write(struct ui_browser *self, void *entry, int ro
if (change_color) if (change_color)
ui_browser__set_color(self, color); ui_browser__set_color(self, color);
if (dl->ins && dl->ins->ops->scnprintf) { if (dl->ins && dl->ins->ops->scnprintf) {
dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf), dl->ins->ops->scnprintf(dl->ins, bf, sizeof(bf), &dl->ops,
!ab->use_offset ? dl->operands : NULL, !ab->use_offset);
dl->target);
slsmg_write_nstring(" ", 2); slsmg_write_nstring(" ", 2);
printed += 2; printed += 2;
} else } else
scnprintf(bf, sizeof(bf), " %-6.6s %s", dl->name, dl->operands); scnprintf(bf, sizeof(bf), " %-6.6s %s", dl->name, dl->ops.raw);
slsmg_write_nstring(bf, width - 10 - printed); slsmg_write_nstring(bf, width - 10 - printed);
} }
...@@ -294,7 +293,7 @@ static bool annotate_browser__callq(struct annotate_browser *browser, ...@@ -294,7 +293,7 @@ static bool annotate_browser__callq(struct annotate_browser *browser,
if (!ins__is_call(dl->ins)) if (!ins__is_call(dl->ins))
return false; return false;
ip = ms->map->map_ip(ms->map, dl->target); ip = ms->map->map_ip(ms->map, dl->ops.target);
target = map__find_symbol(ms->map, ip, NULL); target = map__find_symbol(ms->map, ip, NULL);
if (target == NULL) { if (target == NULL) {
ui_helpline__puts("The called function was not found."); ui_helpline__puts("The called function was not found.");
...@@ -345,7 +344,7 @@ static bool annotate_browser__jump(struct annotate_browser *browser) ...@@ -345,7 +344,7 @@ static bool annotate_browser__jump(struct annotate_browser *browser)
if (!ins__is_jump(dl->ins)) if (!ins__is_jump(dl->ins))
return false; return false;
dl = annotate_browser__find_offset(browser, dl->target, &idx); dl = annotate_browser__find_offset(browser, dl->ops.target, &idx);
if (dl == NULL) { if (dl == NULL) {
ui_helpline__puts("Invallid jump offset"); ui_helpline__puts("Invallid jump offset");
return true; return true;
...@@ -621,14 +620,14 @@ static void annotate_browser__mark_jump_targets(struct annotate_browser *browser ...@@ -621,14 +620,14 @@ static void annotate_browser__mark_jump_targets(struct annotate_browser *browser
if (!dl || !dl->ins || !ins__is_jump(dl->ins)) if (!dl || !dl->ins || !ins__is_jump(dl->ins))
continue; continue;
if (dl->target >= size) { if (dl->ops.target >= size) {
ui__error("jump to after symbol!\n" ui__error("jump to after symbol!\n"
"size: %zx, jump target: %" PRIx64, "size: %zx, jump target: %" PRIx64,
size, dl->target); size, dl->ops.target);
continue; continue;
} }
dlt = browser->offsets[dl->target]; dlt = browser->offsets[dl->ops.target];
bdlt = disasm_line__browser(dlt); bdlt = disasm_line__browser(dlt);
bdlt->jump_target = true; bdlt->jump_target = true;
} }
......
...@@ -18,14 +18,14 @@ ...@@ -18,14 +18,14 @@
const char *disassembler_style; const char *disassembler_style;
static int call_ops__parse_target(const char *operands, u64 *target) static int call__parse(struct ins_operands *ops)
{ {
*target = strtoull(operands, NULL, 16); ops->target = strtoull(ops->raw, NULL, 16);
return 0; return 0;
} }
static struct ins_ops call_ops = { static struct ins_ops call_ops = {
.parse_target = call_ops__parse_target, .parse = call__parse,
}; };
bool ins__is_call(const struct ins *ins) bool ins__is_call(const struct ins *ins)
...@@ -33,29 +33,29 @@ bool ins__is_call(const struct ins *ins) ...@@ -33,29 +33,29 @@ bool ins__is_call(const struct ins *ins)
return ins->ops == &call_ops; return ins->ops == &call_ops;
} }
static int jump_ops__parse_target(const char *operands, u64 *target) static int jump__parse(struct ins_operands *ops)
{ {
const char *s = strchr(operands, '+'); const char *s = strchr(ops->raw, '+');
if (s++ == NULL) if (s++ == NULL)
return -1; return -1;
*target = strtoll(s, NULL, 16); ops->target = strtoll(s, NULL, 16);
return 0; return 0;
} }
static int jump_ops__scnprintf(struct ins *ins, char *bf, size_t size, static int jump__scnprintf(struct ins *ins, char *bf, size_t size,
const char *operands, u64 target) struct ins_operands *ops, bool addrs)
{ {
if (operands) if (addrs)
return scnprintf(bf, size, "%-6.6s %s", ins->name, operands); return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw);
return scnprintf(bf, size, "%-6.6s %" PRIx64, ins->name, target); return scnprintf(bf, size, "%-6.6s %" PRIx64, ins->name, ops->target);
} }
static struct ins_ops jump_ops = { static struct ins_ops jump_ops = {
.parse_target = jump_ops__parse_target, .parse = jump__parse,
.scnprintf = jump_ops__scnprintf, .scnprintf = jump__scnprintf,
}; };
bool ins__is_jump(const struct ins *ins) bool ins__is_jump(const struct ins *ins)
...@@ -190,8 +190,8 @@ static void disasm_line__init_ins(struct disasm_line *dl) ...@@ -190,8 +190,8 @@ static void disasm_line__init_ins(struct disasm_line *dl)
if (!dl->ins->ops) if (!dl->ins->ops)
return; return;
if (dl->ins->ops->parse_target) if (dl->ins->ops->parse)
dl->ins->ops->parse_target(dl->operands, &dl->target); dl->ins->ops->parse(&dl->ops);
} }
static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privsize) static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privsize)
...@@ -213,25 +213,25 @@ static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privs ...@@ -213,25 +213,25 @@ static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privs
if (name[0] == '\0') if (name[0] == '\0')
goto out_delete; goto out_delete;
dl->operands = name + 1; dl->ops.raw = name + 1;
while (dl->operands[0] != '\0' && while (dl->ops.raw[0] != '\0' &&
!isspace(dl->operands[0])) !isspace(dl->ops.raw[0]))
++dl->operands; ++dl->ops.raw;
tmp = dl->operands[0]; tmp = dl->ops.raw[0];
dl->operands[0] = '\0'; dl->ops.raw[0] = '\0';
dl->name = strdup(name); dl->name = strdup(name);
if (dl->name == NULL) if (dl->name == NULL)
goto out_free_line; goto out_free_line;
dl->operands[0] = tmp; dl->ops.raw[0] = tmp;
if (dl->operands[0] != '\0') { if (dl->ops.raw[0] != '\0') {
dl->operands++; dl->ops.raw++;
while (isspace(dl->operands[0])) while (isspace(dl->ops.raw[0]))
++dl->operands; ++dl->ops.raw;
} }
disasm_line__init_ins(dl); disasm_line__init_ins(dl);
...@@ -753,9 +753,9 @@ static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp) ...@@ -753,9 +753,9 @@ static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
printed = fprintf(fp, "%#" PRIx64 " %s", dl->offset, dl->name); printed = fprintf(fp, "%#" PRIx64 " %s", dl->offset, dl->name);
if (dl->operands[0] != '\0') { if (dl->ops.raw[0] != '\0') {
printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ", printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
dl->operands); dl->ops.raw);
} }
return printed + fprintf(fp, "\n"); return printed + fprintf(fp, "\n");
......
...@@ -9,10 +9,15 @@ ...@@ -9,10 +9,15 @@
struct ins; struct ins;
struct ins_operands {
char *raw;
u64 target;
};
struct ins_ops { struct ins_ops {
int (*parse_target)(const char *operands, u64 *target); int (*parse)(struct ins_operands *ops);
int (*scnprintf)(struct ins *ins, char *bf, size_t size, int (*scnprintf)(struct ins *ins, char *bf, size_t size,
const char *operands, u64 target); struct ins_operands *ops, bool addrs);
}; };
struct ins { struct ins {
...@@ -24,13 +29,12 @@ bool ins__is_jump(const struct ins *ins); ...@@ -24,13 +29,12 @@ bool ins__is_jump(const struct ins *ins);
bool ins__is_call(const struct ins *ins); bool ins__is_call(const struct ins *ins);
struct disasm_line { struct disasm_line {
struct list_head node; struct list_head node;
s64 offset; s64 offset;
u64 target; char *line;
char *line; char *name;
char *name; struct ins *ins;
struct ins *ins; struct ins_operands ops;
char *operands;
}; };
void disasm_line__free(struct disasm_line *dl); void disasm_line__free(struct disasm_line *dl);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册