Lines Matching defs:ip
129 asm_operand(const struct asm_oper *o, char *buf, size_t buflen, uint64_t ip)
218 snprintf(buf, buflen, "%lx", ip + o->o_value);
235 strlcpy(buf, "ip", buflen);
304 asm_print_bundle(const struct asm_bundle *b, uint64_t ip)
306 asm_print_inst(b, 0, ip);
307 asm_print_inst(b, 1, ip);
308 asm_print_inst(b, 2, ip);
312 asm_print_inst(const struct asm_bundle *b, int slot, uint64_t ip)
327 printf("%lx[%c] ", ip + slot, *tmpl);
331 asm_operand(i->i_oper+0, buf, sizeof(buf), ip);
363 asm_operand(i->i_oper + n, buf, sizeof(buf), ip);