Lines Matching defs:raw

219 	zfree(&ops->source.raw);
221 zfree(&ops->target.raw);
228 return scnprintf(bf, size, "%-*s %s", max_ins_name, ins->name, ops->raw);
256 ops->target.addr = strtoull(ops->raw, &endptr, 16);
350 const char *c = strchr(ops->raw, ',');
353 ops->raw_comment = strchr(ops->raw, arch->objdump.comment_char);
354 ops->raw_func_start = strchr(ops->raw, '<');
382 ops->target.addr = strtoull(ops->raw, NULL, 16);
434 c = strchr(ops->raw, ',');
452 ins->name, c ? c - ops->raw : 0, ops->raw,
466 static int comment__symbol(char *raw, char *comment, u64 *addrp, char **namep)
470 if (strstr(raw, "(%rip)") == NULL)
499 if (disasm_line__parse(ops->raw, &ops->locked.ins.name, &ops->locked.ops->raw) < 0)
541 zfree(&ops->target.raw);
553 char *s = strchr(ops->raw, ','), *target, *comment, prev;
559 ops->source.raw = strdup(ops->raw);
562 if (ops->source.raw == NULL)
579 ops->target.raw = strdup(target);
582 if (ops->target.raw == NULL)
589 comment__symbol(ops->source.raw, comment + 1, &ops->source.addr, &ops->source.name);
590 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
595 zfree(&ops->source.raw);
603 ops->source.name ?: ops->source.raw,
604 ops->target.name ?: ops->target.raw);
616 target = s = ops->raw;
623 ops->target.raw = strdup(target);
626 if (ops->target.raw == NULL)
634 comment__symbol(ops->target.raw, comment + 1, &ops->target.addr, &ops->target.name);
643 ops->target.name ?: ops->target.raw);
1221 if (disasm_line__parse(dl->al.line, &dl->ins.name, &dl->ops.raw) < 0)
1247 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw, int max_ins_name)
1249 if (raw || !dl->ins.ops)
1250 return scnprintf(bf, size, "%-*s %s", max_ins_name, dl->ins.name, dl->ops.raw);
1468 * symbol__parse_objdump_line() parses objdump output (with -d --no-show-raw)
1481 * <offset> <name> <ops.raw>
1485 * The ops.raw part will be parsed further according to type of the instruction.
1998 opts->show_asm_raw ? "" : "--no-show-raw-insn",
2604 if (dl->ops.raw[0] != '\0') {
2606 dl->ops.raw);