• Home
  • Raw
  • Download

Lines Matching refs:add_str

44 		add_str(&result, " ; reading from reg: %s", reg_name);  in print_read_write_regs()
50 add_str(&result, " ; writing to reg: %s", reg_name); in print_read_write_regs()
71 add_str(&result, " ; op_count: %u", m68k->op_count); in get_detail_m68k()
75 add_str(&result, " ; groups_count: %u", detail->groups_count); in get_detail_m68k()
84 add_str(&result, " ; operands[%u].type: REG = %s", i, cs_reg_name(*handle, op->reg)); in get_detail_m68k()
87 add_str(&result, " ; operands[%u].type: IMM = 0x%x", i, (int)op->imm); in get_detail_m68k()
90 add_str(&result, " ; operands[%u].type: MEM", i); in get_detail_m68k()
92add_str(&result, " ; operands[%u].mem.base: REG = %s", i, cs_reg_name(*handle, op->mem.base_reg)); in get_detail_m68k()
94add_str(&result, " ; operands[%u].mem.index: REG = %s", i, cs_reg_name(*handle, op->mem.index_reg)… in get_detail_m68k()
95 add_str(&result, " ; operands[%u].mem.index: size = %c", i, op->mem.index_size ? 'l' : 'w'); in get_detail_m68k()
98 add_str(&result, " ; operands[%u].mem.disp: 0x%x", i, op->mem.disp); in get_detail_m68k()
100 add_str(&result, " ; operands[%u].mem.scale: %d", i, op->mem.scale); in get_detail_m68k()
102 add_str(&result, " ; address mode: %s", s_addressing_modes[op->address_mode]); in get_detail_m68k()
105 add_str(&result, " ; operands[%u].type: FP_SINGLE", i); in get_detail_m68k()
106 add_str(&result, " ; operands[%u].simm: %f", i, op->simm); in get_detail_m68k()
109 add_str(&result, " ; operands[%u].type: FP_DOUBLE", i); in get_detail_m68k()
110 add_str(&result, " ; operands[%u].dimm: %lf", i, op->dimm); in get_detail_m68k()