Re: [Qemu-devel] [PATCH 3/5] target-tricore: Add instructions of BRN opcode format

2014-10-29 Thread Richard Henderson
On 10/29/2014 06:22 AM, Bastian Koppelmann wrote: > +if (MASK_OP_BRN_OP2(ctx->opcode) == OPC2_32_BRN_JNZ_T) { > +tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1); > +} else { > +tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1); > +} > +gen_goto_tb(ctx

[Qemu-devel] [PATCH 3/5] target-tricore: Add instructions of BRN opcode format

2014-10-29 Thread Bastian Koppelmann
Add instructions of BRN opcode format. Add MASK_OP_BRN_DISP15_SEXT. Signed-off-by: Bastian Koppelmann --- target-tricore/translate.c | 30 ++ target-tricore/tricore-opcodes.h | 1 + 2 files changed, 31 insertions(+) diff --git a/target-tricore/translate.c b/ta