Re: [Qemu-devel] [PATCH v3 04/40] target/mips: Add decode_nanomips_opc() function

2018-07-24 Thread Aleksandar Markovic
> From: Richard Henderson > Sent: Thursday, July 19, 2018 6:39 PM > On 07/19/2018 05:54 AM, Stefan Markovic wrote: > > decode_opc(env, ctx); > > } else if (ctx->insn_flags & ASE_MICROMIPS) { > > -ctx->opcode = cpu_lduw_code(env, ctx->base.pc_next); > > -insn_bytes = d

Re: [Qemu-devel] [PATCH v3 04/40] target/mips: Add decode_nanomips_opc() function

2018-07-19 Thread Richard Henderson
On 07/19/2018 05:54 AM, Stefan Markovic wrote: > decode_opc(env, ctx); > } else if (ctx->insn_flags & ASE_MICROMIPS) { > -ctx->opcode = cpu_lduw_code(env, ctx->base.pc_next); > -insn_bytes = decode_micromips_opc(env, ctx); > +if (env->insn_flags & ISA_NANOMIPS3

[Qemu-devel] [PATCH v3 04/40] target/mips: Add decode_nanomips_opc() function

2018-07-19 Thread Stefan Markovic
From: Yongbok Kim Add empty body and invocation of decode_nanomips_opc() if the bit ISA_NANOMIPS32 is set in env->insn_flags. Signed-off-by: Yongbok Kim Signed-off-by: Aleksandar Markovic Signed-off-by: Stefan Markovic --- target/mips/translate.c | 22 -- 1 file changed,