Lines Matching refs:mo
257 struct simple_memory_operand *mo = in opr_emit_disassembly() local
259 decode_possible_symbol (mo->addr, mo->base, info, mo->relative); in opr_emit_disassembly()
265 struct memory_operand *mo = (struct memory_operand *) opr; in opr_emit_disassembly() local
266 (*info->fprintf_func) (info->stream, "%c", mo->indirect ? '[' : '('); in opr_emit_disassembly()
269 assert (mo->mutation == OPND_RM_NONE || mo->n_regs == 1); in opr_emit_disassembly()
270 switch (mo->mutation) in opr_emit_disassembly()
286 if (mo->n_regs < 2) in opr_emit_disassembly()
287 … (*info->fprintf_func) (info->stream, (mo->n_regs == 0) ? "%d" : "%d,", mo->base_offset); in opr_emit_disassembly()
291 if (mo->n_regs > 0) in opr_emit_disassembly()
293 int r = mo->regs[0]; in opr_emit_disassembly()
302 if (mo->n_regs > used_reg) in opr_emit_disassembly()
304 int r = mo->regs[used_reg]; in opr_emit_disassembly()
314 mo->indirect ? ']' : ')'); in opr_emit_disassembly()