4 * Copyright (c) 2019 Yoshinori Sato
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2 or later, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
20 #include "qemu/bswap.h"
21 #include "qemu/qemu-print.h"
23 #include "exec/exec-all.h"
24 #include "tcg/tcg-op.h"
25 #include "exec/cpu_ldst.h"
26 #include "exec/helper-proto.h"
27 #include "exec/helper-gen.h"
28 #include "exec/translator.h"
31 typedef struct DisasContext
{
32 DisasContextBase base
;
37 typedef struct DisasCompare
{
43 const char *rx_crname(uint8_t cr
)
45 static const char *cr_names
[] = {
46 "psw", "pc", "usp", "fpsw", "", "", "", "",
47 "bpsw", "bpc", "isp", "fintv", "intb", "", "", ""
49 if (cr
>= ARRAY_SIZE(cr_names
)) {
55 /* Target-specific values for dc->base.is_jmp. */
56 #define DISAS_JUMP DISAS_TARGET_0
57 #define DISAS_UPDATE DISAS_TARGET_1
58 #define DISAS_EXIT DISAS_TARGET_2
60 /* global register indexes */
61 static TCGv cpu_regs
[16];
62 static TCGv cpu_psw_o
, cpu_psw_s
, cpu_psw_z
, cpu_psw_c
;
63 static TCGv cpu_psw_i
, cpu_psw_pm
, cpu_psw_u
, cpu_psw_ipl
;
64 static TCGv cpu_usp
, cpu_fpsw
, cpu_bpsw
, cpu_bpc
, cpu_isp
;
65 static TCGv cpu_fintv
, cpu_intb
, cpu_pc
;
66 static TCGv_i64 cpu_acc
;
68 #define cpu_sp cpu_regs[0]
70 #include "exec/gen-icount.h"
73 static uint32_t decode_load_bytes(DisasContext
*ctx
, uint32_t insn
,
77 uint8_t b
= cpu_ldub_code(ctx
->env
, ctx
->base
.pc_next
++);
78 insn
|= b
<< (32 - i
* 8);
83 static uint32_t li(DisasContext
*ctx
, int sz
)
86 CPURXState
*env
= ctx
->env
;
87 addr
= ctx
->base
.pc_next
;
89 tcg_debug_assert(sz
< 4);
92 ctx
->base
.pc_next
+= 1;
93 return cpu_ldsb_code(env
, addr
);
95 ctx
->base
.pc_next
+= 2;
96 return cpu_ldsw_code(env
, addr
);
98 ctx
->base
.pc_next
+= 3;
99 tmp
= cpu_ldsb_code(env
, addr
+ 2) << 16;
100 tmp
|= cpu_lduw_code(env
, addr
) & 0xffff;
103 ctx
->base
.pc_next
+= 4;
104 return cpu_ldl_code(env
, addr
);
109 static int bdsp_s(DisasContext
*ctx
, int d
)
125 /* Include the auto-generated decoder. */
126 #include "decode-insns.c.inc"
128 void rx_cpu_dump_state(CPUState
*cs
, FILE *f
, int flags
)
130 RXCPU
*cpu
= RX_CPU(cs
);
131 CPURXState
*env
= &cpu
->env
;
135 psw
= rx_cpu_pack_psw(env
);
136 qemu_fprintf(f
, "pc=0x%08x psw=0x%08x\n",
138 for (i
= 0; i
< 16; i
+= 4) {
139 qemu_fprintf(f
, "r%d=0x%08x r%d=0x%08x r%d=0x%08x r%d=0x%08x\n",
140 i
, env
->regs
[i
], i
+ 1, env
->regs
[i
+ 1],
141 i
+ 2, env
->regs
[i
+ 2], i
+ 3, env
->regs
[i
+ 3]);
145 static void gen_goto_tb(DisasContext
*dc
, int n
, target_ulong dest
)
147 if (translator_use_goto_tb(&dc
->base
, dest
)) {
149 tcg_gen_movi_i32(cpu_pc
, dest
);
150 tcg_gen_exit_tb(dc
->base
.tb
, n
);
152 tcg_gen_movi_i32(cpu_pc
, dest
);
153 if (dc
->base
.singlestep_enabled
) {
154 gen_helper_debug(cpu_env
);
156 tcg_gen_lookup_and_goto_ptr();
159 dc
->base
.is_jmp
= DISAS_NORETURN
;
162 /* generic load wrapper */
163 static inline void rx_gen_ld(unsigned int size
, TCGv reg
, TCGv mem
)
165 tcg_gen_qemu_ld_i32(reg
, mem
, 0, size
| MO_SIGN
| MO_TE
);
168 /* unsigned load wrapper */
169 static inline void rx_gen_ldu(unsigned int size
, TCGv reg
, TCGv mem
)
171 tcg_gen_qemu_ld_i32(reg
, mem
, 0, size
| MO_TE
);
174 /* generic store wrapper */
175 static inline void rx_gen_st(unsigned int size
, TCGv reg
, TCGv mem
)
177 tcg_gen_qemu_st_i32(reg
, mem
, 0, size
| MO_TE
);
181 static inline void rx_gen_regindex(DisasContext
*ctx
, TCGv mem
,
182 int size
, int ri
, int rb
)
184 tcg_gen_shli_i32(mem
, cpu_regs
[ri
], size
);
185 tcg_gen_add_i32(mem
, mem
, cpu_regs
[rb
]);
189 static inline TCGv
rx_index_addr(DisasContext
*ctx
, TCGv mem
,
190 int ld
, int size
, int reg
)
194 tcg_debug_assert(ld
< 3);
197 return cpu_regs
[reg
];
199 dsp
= cpu_ldub_code(ctx
->env
, ctx
->base
.pc_next
) << size
;
200 tcg_gen_addi_i32(mem
, cpu_regs
[reg
], dsp
);
201 ctx
->base
.pc_next
+= 1;
204 dsp
= cpu_lduw_code(ctx
->env
, ctx
->base
.pc_next
) << size
;
205 tcg_gen_addi_i32(mem
, cpu_regs
[reg
], dsp
);
206 ctx
->base
.pc_next
+= 2;
212 static inline MemOp
mi_to_mop(unsigned mi
)
214 static const MemOp mop
[5] = { MO_SB
, MO_SW
, MO_UL
, MO_UW
, MO_UB
};
215 tcg_debug_assert(mi
< 5);
219 /* load source operand */
220 static inline TCGv
rx_load_source(DisasContext
*ctx
, TCGv mem
,
221 int ld
, int mi
, int rs
)
227 addr
= rx_index_addr(ctx
, mem
, ld
, mop
& MO_SIZE
, rs
);
228 tcg_gen_qemu_ld_i32(mem
, addr
, 0, mop
| MO_TE
);
235 /* Processor mode check */
236 static int is_privileged(DisasContext
*ctx
, int is_exception
)
238 if (FIELD_EX32(ctx
->base
.tb
->flags
, PSW
, PM
)) {
240 gen_helper_raise_privilege_violation(cpu_env
);
248 /* generate QEMU condition */
249 static void psw_cond(DisasCompare
*dc
, uint32_t cond
)
251 tcg_debug_assert(cond
< 16);
254 dc
->cond
= TCG_COND_EQ
;
255 dc
->value
= cpu_psw_z
;
258 dc
->cond
= TCG_COND_NE
;
259 dc
->value
= cpu_psw_z
;
262 dc
->cond
= TCG_COND_NE
;
263 dc
->value
= cpu_psw_c
;
266 dc
->cond
= TCG_COND_EQ
;
267 dc
->value
= cpu_psw_c
;
269 case 4: /* gtu (C& ~Z) == 1 */
270 case 5: /* leu (C& ~Z) == 0 */
271 tcg_gen_setcondi_i32(TCG_COND_NE
, dc
->temp
, cpu_psw_z
, 0);
272 tcg_gen_and_i32(dc
->temp
, dc
->temp
, cpu_psw_c
);
273 dc
->cond
= (cond
== 4) ? TCG_COND_NE
: TCG_COND_EQ
;
274 dc
->value
= dc
->temp
;
276 case 6: /* pz (S == 0) */
277 dc
->cond
= TCG_COND_GE
;
278 dc
->value
= cpu_psw_s
;
280 case 7: /* n (S == 1) */
281 dc
->cond
= TCG_COND_LT
;
282 dc
->value
= cpu_psw_s
;
284 case 8: /* ge (S^O)==0 */
285 case 9: /* lt (S^O)==1 */
286 tcg_gen_xor_i32(dc
->temp
, cpu_psw_o
, cpu_psw_s
);
287 dc
->cond
= (cond
== 8) ? TCG_COND_GE
: TCG_COND_LT
;
288 dc
->value
= dc
->temp
;
290 case 10: /* gt ((S^O)|Z)==0 */
291 case 11: /* le ((S^O)|Z)==1 */
292 tcg_gen_xor_i32(dc
->temp
, cpu_psw_o
, cpu_psw_s
);
293 tcg_gen_sari_i32(dc
->temp
, dc
->temp
, 31);
294 tcg_gen_andc_i32(dc
->temp
, cpu_psw_z
, dc
->temp
);
295 dc
->cond
= (cond
== 10) ? TCG_COND_NE
: TCG_COND_EQ
;
296 dc
->value
= dc
->temp
;
299 dc
->cond
= TCG_COND_LT
;
300 dc
->value
= cpu_psw_o
;
303 dc
->cond
= TCG_COND_GE
;
304 dc
->value
= cpu_psw_o
;
306 case 14: /* always true */
307 dc
->cond
= TCG_COND_ALWAYS
;
308 dc
->value
= dc
->temp
;
310 case 15: /* always false */
311 dc
->cond
= TCG_COND_NEVER
;
312 dc
->value
= dc
->temp
;
317 static void move_from_cr(TCGv ret
, int cr
, uint32_t pc
)
319 TCGv z
= tcg_const_i32(0);
322 gen_helper_pack_psw(ret
, cpu_env
);
325 tcg_gen_movi_i32(ret
, pc
);
328 tcg_gen_movcond_i32(TCG_COND_NE
, ret
,
329 cpu_psw_u
, z
, cpu_sp
, cpu_usp
);
332 tcg_gen_mov_i32(ret
, cpu_fpsw
);
335 tcg_gen_mov_i32(ret
, cpu_bpsw
);
338 tcg_gen_mov_i32(ret
, cpu_bpc
);
341 tcg_gen_movcond_i32(TCG_COND_EQ
, ret
,
342 cpu_psw_u
, z
, cpu_sp
, cpu_isp
);
345 tcg_gen_mov_i32(ret
, cpu_fintv
);
348 tcg_gen_mov_i32(ret
, cpu_intb
);
351 qemu_log_mask(LOG_GUEST_ERROR
, "Unimplement control register %d", cr
);
352 /* Unimplement registers return 0 */
353 tcg_gen_movi_i32(ret
, 0);
359 static void move_to_cr(DisasContext
*ctx
, TCGv val
, int cr
)
362 if (cr
>= 8 && !is_privileged(ctx
, 0)) {
363 /* Some control registers can only be written in privileged mode. */
364 qemu_log_mask(LOG_GUEST_ERROR
,
365 "disallow control register write %s", rx_crname(cr
));
368 z
= tcg_const_i32(0);
371 gen_helper_set_psw(cpu_env
, val
);
373 /* case 1: to PC not supported */
375 tcg_gen_mov_i32(cpu_usp
, val
);
376 tcg_gen_movcond_i32(TCG_COND_NE
, cpu_sp
,
377 cpu_psw_u
, z
, cpu_usp
, cpu_sp
);
380 gen_helper_set_fpsw(cpu_env
, val
);
383 tcg_gen_mov_i32(cpu_bpsw
, val
);
386 tcg_gen_mov_i32(cpu_bpc
, val
);
389 tcg_gen_mov_i32(cpu_isp
, val
);
390 /* if PSW.U is 0, copy isp to r0 */
391 tcg_gen_movcond_i32(TCG_COND_EQ
, cpu_sp
,
392 cpu_psw_u
, z
, cpu_isp
, cpu_sp
);
395 tcg_gen_mov_i32(cpu_fintv
, val
);
398 tcg_gen_mov_i32(cpu_intb
, val
);
401 qemu_log_mask(LOG_GUEST_ERROR
,
402 "Unimplement control register %d", cr
);
408 static void push(TCGv val
)
410 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
411 rx_gen_st(MO_32
, val
, cpu_sp
);
414 static void pop(TCGv ret
)
416 rx_gen_ld(MO_32
, ret
, cpu_sp
);
417 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, 4);
420 /* mov.<bwl> rs,dsp5[rd] */
421 static bool trans_MOV_rm(DisasContext
*ctx
, arg_MOV_rm
*a
)
424 mem
= tcg_temp_new();
425 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rd
], a
->dsp
<< a
->sz
);
426 rx_gen_st(a
->sz
, cpu_regs
[a
->rs
], mem
);
431 /* mov.<bwl> dsp5[rs],rd */
432 static bool trans_MOV_mr(DisasContext
*ctx
, arg_MOV_mr
*a
)
435 mem
= tcg_temp_new();
436 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rs
], a
->dsp
<< a
->sz
);
437 rx_gen_ld(a
->sz
, cpu_regs
[a
->rd
], mem
);
442 /* mov.l #uimm4,rd */
443 /* mov.l #uimm8,rd */
445 static bool trans_MOV_ir(DisasContext
*ctx
, arg_MOV_ir
*a
)
447 tcg_gen_movi_i32(cpu_regs
[a
->rd
], a
->imm
);
451 /* mov.<bwl> #uimm8,dsp[rd] */
452 /* mov.<bwl> #imm, dsp[rd] */
453 static bool trans_MOV_im(DisasContext
*ctx
, arg_MOV_im
*a
)
456 imm
= tcg_const_i32(a
->imm
);
457 mem
= tcg_temp_new();
458 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rd
], a
->dsp
<< a
->sz
);
459 rx_gen_st(a
->sz
, imm
, mem
);
465 /* mov.<bwl> [ri,rb],rd */
466 static bool trans_MOV_ar(DisasContext
*ctx
, arg_MOV_ar
*a
)
469 mem
= tcg_temp_new();
470 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
471 rx_gen_ld(a
->sz
, cpu_regs
[a
->rd
], mem
);
476 /* mov.<bwl> rd,[ri,rb] */
477 static bool trans_MOV_ra(DisasContext
*ctx
, arg_MOV_ra
*a
)
480 mem
= tcg_temp_new();
481 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
482 rx_gen_st(a
->sz
, cpu_regs
[a
->rs
], mem
);
487 /* mov.<bwl> dsp[rs],dsp[rd] */
488 /* mov.<bwl> rs,dsp[rd] */
489 /* mov.<bwl> dsp[rs],rd */
490 /* mov.<bwl> rs,rd */
491 static bool trans_MOV_mm(DisasContext
*ctx
, arg_MOV_mm
*a
)
493 static void (* const mov
[])(TCGv ret
, TCGv arg
) = {
494 tcg_gen_ext8s_i32
, tcg_gen_ext16s_i32
, tcg_gen_mov_i32
,
497 if (a
->lds
== 3 && a
->ldd
== 3) {
498 /* mov.<bwl> rs,rd */
499 mov
[a
->sz
](cpu_regs
[a
->rd
], cpu_regs
[a
->rs
]);
503 mem
= tcg_temp_new();
505 /* mov.<bwl> rs,dsp[rd] */
506 addr
= rx_index_addr(ctx
, mem
, a
->ldd
, a
->sz
, a
->rs
);
507 rx_gen_st(a
->sz
, cpu_regs
[a
->rd
], addr
);
508 } else if (a
->ldd
== 3) {
509 /* mov.<bwl> dsp[rs],rd */
510 addr
= rx_index_addr(ctx
, mem
, a
->lds
, a
->sz
, a
->rs
);
511 rx_gen_ld(a
->sz
, cpu_regs
[a
->rd
], addr
);
513 /* mov.<bwl> dsp[rs],dsp[rd] */
514 tmp
= tcg_temp_new();
515 addr
= rx_index_addr(ctx
, mem
, a
->lds
, a
->sz
, a
->rs
);
516 rx_gen_ld(a
->sz
, tmp
, addr
);
517 addr
= rx_index_addr(ctx
, mem
, a
->ldd
, a
->sz
, a
->rd
);
518 rx_gen_st(a
->sz
, tmp
, addr
);
525 /* mov.<bwl> rs,[rd+] */
526 /* mov.<bwl> rs,[-rd] */
527 static bool trans_MOV_rp(DisasContext
*ctx
, arg_MOV_rp
*a
)
530 val
= tcg_temp_new();
531 tcg_gen_mov_i32(val
, cpu_regs
[a
->rs
]);
533 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
535 rx_gen_st(a
->sz
, val
, cpu_regs
[a
->rd
]);
537 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
543 /* mov.<bwl> [rd+],rs */
544 /* mov.<bwl> [-rd],rs */
545 static bool trans_MOV_pr(DisasContext
*ctx
, arg_MOV_pr
*a
)
548 val
= tcg_temp_new();
550 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
552 rx_gen_ld(a
->sz
, val
, cpu_regs
[a
->rd
]);
554 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
556 tcg_gen_mov_i32(cpu_regs
[a
->rs
], val
);
561 /* movu.<bw> dsp5[rs],rd */
562 /* movu.<bw> dsp[rs],rd */
563 static bool trans_MOVU_mr(DisasContext
*ctx
, arg_MOVU_mr
*a
)
566 mem
= tcg_temp_new();
567 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rs
], a
->dsp
<< a
->sz
);
568 rx_gen_ldu(a
->sz
, cpu_regs
[a
->rd
], mem
);
573 /* movu.<bw> rs,rd */
574 static bool trans_MOVU_rr(DisasContext
*ctx
, arg_MOVU_rr
*a
)
576 static void (* const ext
[])(TCGv ret
, TCGv arg
) = {
577 tcg_gen_ext8u_i32
, tcg_gen_ext16u_i32
,
579 ext
[a
->sz
](cpu_regs
[a
->rd
], cpu_regs
[a
->rs
]);
583 /* movu.<bw> [ri,rb],rd */
584 static bool trans_MOVU_ar(DisasContext
*ctx
, arg_MOVU_ar
*a
)
587 mem
= tcg_temp_new();
588 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
589 rx_gen_ldu(a
->sz
, cpu_regs
[a
->rd
], mem
);
594 /* movu.<bw> [rd+],rs */
595 /* mov.<bw> [-rd],rs */
596 static bool trans_MOVU_pr(DisasContext
*ctx
, arg_MOVU_pr
*a
)
599 val
= tcg_temp_new();
601 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
603 rx_gen_ldu(a
->sz
, val
, cpu_regs
[a
->rd
]);
605 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
607 tcg_gen_mov_i32(cpu_regs
[a
->rs
], val
);
614 static bool trans_POP(DisasContext
*ctx
, arg_POP
*a
)
616 /* mov.l [r0+], rd */
622 trans_MOV_pr(ctx
, &mov_a
);
627 static bool trans_POPC(DisasContext
*ctx
, arg_POPC
*a
)
630 val
= tcg_temp_new();
632 move_to_cr(ctx
, val
, a
->cr
);
633 if (a
->cr
== 0 && is_privileged(ctx
, 0)) {
634 /* PSW.I may be updated here. exit TB. */
635 ctx
->base
.is_jmp
= DISAS_UPDATE
;
642 static bool trans_POPM(DisasContext
*ctx
, arg_POPM
*a
)
645 if (a
->rd
== 0 || a
->rd
>= a
->rd2
) {
646 qemu_log_mask(LOG_GUEST_ERROR
,
647 "Invalid register ranges r%d-r%d", a
->rd
, a
->rd2
);
650 while (r
<= a
->rd2
&& r
< 16) {
658 static bool trans_PUSH_r(DisasContext
*ctx
, arg_PUSH_r
*a
)
661 val
= tcg_temp_new();
662 tcg_gen_mov_i32(val
, cpu_regs
[a
->rs
]);
663 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
664 rx_gen_st(a
->sz
, val
, cpu_sp
);
669 /* push.<bwl> dsp[rs] */
670 static bool trans_PUSH_m(DisasContext
*ctx
, arg_PUSH_m
*a
)
673 mem
= tcg_temp_new();
674 val
= tcg_temp_new();
675 addr
= rx_index_addr(ctx
, mem
, a
->ld
, a
->sz
, a
->rs
);
676 rx_gen_ld(a
->sz
, val
, addr
);
677 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
678 rx_gen_st(a
->sz
, val
, cpu_sp
);
685 static bool trans_PUSHC(DisasContext
*ctx
, arg_PUSHC
*a
)
688 val
= tcg_temp_new();
689 move_from_cr(val
, a
->cr
, ctx
->pc
);
696 static bool trans_PUSHM(DisasContext
*ctx
, arg_PUSHM
*a
)
700 if (a
->rs
== 0 || a
->rs
>= a
->rs2
) {
701 qemu_log_mask(LOG_GUEST_ERROR
,
702 "Invalid register ranges r%d-r%d", a
->rs
, a
->rs2
);
705 while (r
>= a
->rs
&& r
>= 0) {
712 static bool trans_XCHG_rr(DisasContext
*ctx
, arg_XCHG_rr
*a
)
715 tmp
= tcg_temp_new();
716 tcg_gen_mov_i32(tmp
, cpu_regs
[a
->rs
]);
717 tcg_gen_mov_i32(cpu_regs
[a
->rs
], cpu_regs
[a
->rd
]);
718 tcg_gen_mov_i32(cpu_regs
[a
->rd
], tmp
);
723 /* xchg dsp[rs].<mi>,rd */
724 static bool trans_XCHG_mr(DisasContext
*ctx
, arg_XCHG_mr
*a
)
727 mem
= tcg_temp_new();
729 case 0: /* dsp[rs].b */
730 case 1: /* dsp[rs].w */
731 case 2: /* dsp[rs].l */
732 addr
= rx_index_addr(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
734 case 3: /* dsp[rs].uw */
735 case 4: /* dsp[rs].ub */
736 addr
= rx_index_addr(ctx
, mem
, a
->ld
, 4 - a
->mi
, a
->rs
);
739 g_assert_not_reached();
741 tcg_gen_atomic_xchg_i32(cpu_regs
[a
->rd
], addr
, cpu_regs
[a
->rd
],
742 0, mi_to_mop(a
->mi
));
747 static inline void stcond(TCGCond cond
, int rd
, int imm
)
751 z
= tcg_const_i32(0);
752 _imm
= tcg_const_i32(imm
);
753 tcg_gen_movcond_i32(cond
, cpu_regs
[rd
], cpu_psw_z
, z
,
760 static bool trans_STZ(DisasContext
*ctx
, arg_STZ
*a
)
762 stcond(TCG_COND_EQ
, a
->rd
, a
->imm
);
767 static bool trans_STNZ(DisasContext
*ctx
, arg_STNZ
*a
)
769 stcond(TCG_COND_NE
, a
->rd
, a
->imm
);
774 /* sccnd.<bwl> dsp:[rd] */
775 static bool trans_SCCnd(DisasContext
*ctx
, arg_SCCnd
*a
)
779 dc
.temp
= tcg_temp_new();
780 psw_cond(&dc
, a
->cd
);
782 val
= tcg_temp_new();
783 mem
= tcg_temp_new();
784 tcg_gen_setcondi_i32(dc
.cond
, val
, dc
.value
, 0);
785 addr
= rx_index_addr(ctx
, mem
, a
->sz
, a
->ld
, a
->rd
);
786 rx_gen_st(a
->sz
, val
, addr
);
790 tcg_gen_setcondi_i32(dc
.cond
, cpu_regs
[a
->rd
], dc
.value
, 0);
792 tcg_temp_free(dc
.temp
);
797 static bool trans_RTSD_i(DisasContext
*ctx
, arg_RTSD_i
*a
)
799 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, a
->imm
<< 2);
801 ctx
->base
.is_jmp
= DISAS_JUMP
;
805 /* rtsd #imm, rd-rd2 */
806 static bool trans_RTSD_irr(DisasContext
*ctx
, arg_RTSD_irr
*a
)
811 if (a
->rd2
>= a
->rd
) {
812 adj
= a
->imm
- (a
->rd2
- a
->rd
+ 1);
814 adj
= a
->imm
- (15 - a
->rd
+ 1);
817 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, adj
<< 2);
819 while (dst
<= a
->rd2
&& dst
< 16) {
820 pop(cpu_regs
[dst
++]);
823 ctx
->base
.is_jmp
= DISAS_JUMP
;
827 typedef void (*op2fn
)(TCGv ret
, TCGv arg1
);
828 typedef void (*op3fn
)(TCGv ret
, TCGv arg1
, TCGv arg2
);
830 static inline void rx_gen_op_rr(op2fn opr
, int dst
, int src
)
832 opr(cpu_regs
[dst
], cpu_regs
[src
]);
835 static inline void rx_gen_op_rrr(op3fn opr
, int dst
, int src
, int src2
)
837 opr(cpu_regs
[dst
], cpu_regs
[src
], cpu_regs
[src2
]);
840 static inline void rx_gen_op_irr(op3fn opr
, int dst
, int src
, uint32_t src2
)
842 TCGv imm
= tcg_const_i32(src2
);
843 opr(cpu_regs
[dst
], cpu_regs
[src
], imm
);
847 static inline void rx_gen_op_mr(op3fn opr
, DisasContext
*ctx
,
848 int dst
, int src
, int ld
, int mi
)
851 mem
= tcg_temp_new();
852 val
= rx_load_source(ctx
, mem
, ld
, mi
, src
);
853 opr(cpu_regs
[dst
], cpu_regs
[dst
], val
);
857 static void rx_and(TCGv ret
, TCGv arg1
, TCGv arg2
)
859 tcg_gen_and_i32(cpu_psw_s
, arg1
, arg2
);
860 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
861 tcg_gen_mov_i32(ret
, cpu_psw_s
);
864 /* and #uimm:4, rd */
866 static bool trans_AND_ir(DisasContext
*ctx
, arg_AND_ir
*a
)
868 rx_gen_op_irr(rx_and
, a
->rd
, a
->rd
, a
->imm
);
872 /* and dsp[rs], rd */
874 static bool trans_AND_mr(DisasContext
*ctx
, arg_AND_mr
*a
)
876 rx_gen_op_mr(rx_and
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
881 static bool trans_AND_rrr(DisasContext
*ctx
, arg_AND_rrr
*a
)
883 rx_gen_op_rrr(rx_and
, a
->rd
, a
->rs
, a
->rs2
);
887 static void rx_or(TCGv ret
, TCGv arg1
, TCGv arg2
)
889 tcg_gen_or_i32(cpu_psw_s
, arg1
, arg2
);
890 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
891 tcg_gen_mov_i32(ret
, cpu_psw_s
);
896 static bool trans_OR_ir(DisasContext
*ctx
, arg_OR_ir
*a
)
898 rx_gen_op_irr(rx_or
, a
->rd
, a
->rd
, a
->imm
);
904 static bool trans_OR_mr(DisasContext
*ctx
, arg_OR_mr
*a
)
906 rx_gen_op_mr(rx_or
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
911 static bool trans_OR_rrr(DisasContext
*ctx
, arg_OR_rrr
*a
)
913 rx_gen_op_rrr(rx_or
, a
->rd
, a
->rs
, a
->rs2
);
917 static void rx_xor(TCGv ret
, TCGv arg1
, TCGv arg2
)
919 tcg_gen_xor_i32(cpu_psw_s
, arg1
, arg2
);
920 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
921 tcg_gen_mov_i32(ret
, cpu_psw_s
);
925 static bool trans_XOR_ir(DisasContext
*ctx
, arg_XOR_ir
*a
)
927 rx_gen_op_irr(rx_xor
, a
->rd
, a
->rd
, a
->imm
);
931 /* xor dsp[rs], rd */
933 static bool trans_XOR_mr(DisasContext
*ctx
, arg_XOR_mr
*a
)
935 rx_gen_op_mr(rx_xor
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
939 static void rx_tst(TCGv ret
, TCGv arg1
, TCGv arg2
)
941 tcg_gen_and_i32(cpu_psw_s
, arg1
, arg2
);
942 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
946 static bool trans_TST_ir(DisasContext
*ctx
, arg_TST_ir
*a
)
948 rx_gen_op_irr(rx_tst
, a
->rd
, a
->rd
, a
->imm
);
952 /* tst dsp[rs], rd */
954 static bool trans_TST_mr(DisasContext
*ctx
, arg_TST_mr
*a
)
956 rx_gen_op_mr(rx_tst
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
960 static void rx_not(TCGv ret
, TCGv arg1
)
962 tcg_gen_not_i32(ret
, arg1
);
963 tcg_gen_mov_i32(cpu_psw_z
, ret
);
964 tcg_gen_mov_i32(cpu_psw_s
, ret
);
969 static bool trans_NOT_rr(DisasContext
*ctx
, arg_NOT_rr
*a
)
971 rx_gen_op_rr(rx_not
, a
->rd
, a
->rs
);
975 static void rx_neg(TCGv ret
, TCGv arg1
)
977 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, arg1
, 0x80000000);
978 tcg_gen_neg_i32(ret
, arg1
);
979 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_c
, ret
, 0);
980 tcg_gen_mov_i32(cpu_psw_z
, ret
);
981 tcg_gen_mov_i32(cpu_psw_s
, ret
);
987 static bool trans_NEG_rr(DisasContext
*ctx
, arg_NEG_rr
*a
)
989 rx_gen_op_rr(rx_neg
, a
->rd
, a
->rs
);
993 /* ret = arg1 + arg2 + psw_c */
994 static void rx_adc(TCGv ret
, TCGv arg1
, TCGv arg2
)
997 z
= tcg_const_i32(0);
998 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, arg1
, z
, cpu_psw_c
, z
);
999 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, cpu_psw_s
, cpu_psw_c
, arg2
, z
);
1000 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
1001 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
1002 tcg_gen_xor_i32(z
, arg1
, arg2
);
1003 tcg_gen_andc_i32(cpu_psw_o
, cpu_psw_o
, z
);
1004 tcg_gen_mov_i32(ret
, cpu_psw_s
);
1009 static bool trans_ADC_ir(DisasContext
*ctx
, arg_ADC_ir
*a
)
1011 rx_gen_op_irr(rx_adc
, a
->rd
, a
->rd
, a
->imm
);
1016 static bool trans_ADC_rr(DisasContext
*ctx
, arg_ADC_rr
*a
)
1018 rx_gen_op_rrr(rx_adc
, a
->rd
, a
->rd
, a
->rs
);
1022 /* adc dsp[rs], rd */
1023 static bool trans_ADC_mr(DisasContext
*ctx
, arg_ADC_mr
*a
)
1029 rx_gen_op_mr(rx_adc
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1033 /* ret = arg1 + arg2 */
1034 static void rx_add(TCGv ret
, TCGv arg1
, TCGv arg2
)
1037 z
= tcg_const_i32(0);
1038 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, arg1
, z
, arg2
, z
);
1039 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
1040 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
1041 tcg_gen_xor_i32(z
, arg1
, arg2
);
1042 tcg_gen_andc_i32(cpu_psw_o
, cpu_psw_o
, z
);
1043 tcg_gen_mov_i32(ret
, cpu_psw_s
);
1047 /* add #uimm4, rd */
1048 /* add #imm, rs, rd */
1049 static bool trans_ADD_irr(DisasContext
*ctx
, arg_ADD_irr
*a
)
1051 rx_gen_op_irr(rx_add
, a
->rd
, a
->rs2
, a
->imm
);
1056 /* add dsp[rs], rd */
1057 static bool trans_ADD_mr(DisasContext
*ctx
, arg_ADD_mr
*a
)
1059 rx_gen_op_mr(rx_add
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1063 /* add rs, rs2, rd */
1064 static bool trans_ADD_rrr(DisasContext
*ctx
, arg_ADD_rrr
*a
)
1066 rx_gen_op_rrr(rx_add
, a
->rd
, a
->rs
, a
->rs2
);
1070 /* ret = arg1 - arg2 */
1071 static void rx_sub(TCGv ret
, TCGv arg1
, TCGv arg2
)
1074 tcg_gen_sub_i32(cpu_psw_s
, arg1
, arg2
);
1075 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
1076 tcg_gen_setcond_i32(TCG_COND_GEU
, cpu_psw_c
, arg1
, arg2
);
1077 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
1078 temp
= tcg_temp_new_i32();
1079 tcg_gen_xor_i32(temp
, arg1
, arg2
);
1080 tcg_gen_and_i32(cpu_psw_o
, cpu_psw_o
, temp
);
1081 tcg_temp_free_i32(temp
);
1082 /* CMP not required return */
1084 tcg_gen_mov_i32(ret
, cpu_psw_s
);
1087 static void rx_cmp(TCGv dummy
, TCGv arg1
, TCGv arg2
)
1089 rx_sub(NULL
, arg1
, arg2
);
1091 /* ret = arg1 - arg2 - !psw_c */
1092 /* -> ret = arg1 + ~arg2 + psw_c */
1093 static void rx_sbb(TCGv ret
, TCGv arg1
, TCGv arg2
)
1096 temp
= tcg_temp_new();
1097 tcg_gen_not_i32(temp
, arg2
);
1098 rx_adc(ret
, arg1
, temp
);
1099 tcg_temp_free(temp
);
1102 /* cmp #imm4, rs2 */
1103 /* cmp #imm8, rs2 */
1105 static bool trans_CMP_ir(DisasContext
*ctx
, arg_CMP_ir
*a
)
1107 rx_gen_op_irr(rx_cmp
, 0, a
->rs2
, a
->imm
);
1112 /* cmp dsp[rs], rs2 */
1113 static bool trans_CMP_mr(DisasContext
*ctx
, arg_CMP_mr
*a
)
1115 rx_gen_op_mr(rx_cmp
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1120 static bool trans_SUB_ir(DisasContext
*ctx
, arg_SUB_ir
*a
)
1122 rx_gen_op_irr(rx_sub
, a
->rd
, a
->rd
, a
->imm
);
1127 /* sub dsp[rs], rd */
1128 static bool trans_SUB_mr(DisasContext
*ctx
, arg_SUB_mr
*a
)
1130 rx_gen_op_mr(rx_sub
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1134 /* sub rs2, rs, rd */
1135 static bool trans_SUB_rrr(DisasContext
*ctx
, arg_SUB_rrr
*a
)
1137 rx_gen_op_rrr(rx_sub
, a
->rd
, a
->rs2
, a
->rs
);
1142 static bool trans_SBB_rr(DisasContext
*ctx
, arg_SBB_rr
*a
)
1144 rx_gen_op_rrr(rx_sbb
, a
->rd
, a
->rd
, a
->rs
);
1148 /* sbb dsp[rs], rd */
1149 static bool trans_SBB_mr(DisasContext
*ctx
, arg_SBB_mr
*a
)
1155 rx_gen_op_mr(rx_sbb
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1159 static void rx_abs(TCGv ret
, TCGv arg1
)
1163 neg
= tcg_temp_new();
1164 zero
= tcg_const_i32(0);
1165 tcg_gen_neg_i32(neg
, arg1
);
1166 tcg_gen_movcond_i32(TCG_COND_LT
, ret
, arg1
, zero
, neg
, arg1
);
1168 tcg_temp_free(zero
);
1173 static bool trans_ABS_rr(DisasContext
*ctx
, arg_ABS_rr
*a
)
1175 rx_gen_op_rr(rx_abs
, a
->rd
, a
->rs
);
1180 static bool trans_MAX_ir(DisasContext
*ctx
, arg_MAX_ir
*a
)
1182 rx_gen_op_irr(tcg_gen_smax_i32
, a
->rd
, a
->rd
, a
->imm
);
1187 /* max dsp[rs], rd */
1188 static bool trans_MAX_mr(DisasContext
*ctx
, arg_MAX_mr
*a
)
1190 rx_gen_op_mr(tcg_gen_smax_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1195 static bool trans_MIN_ir(DisasContext
*ctx
, arg_MIN_ir
*a
)
1197 rx_gen_op_irr(tcg_gen_smin_i32
, a
->rd
, a
->rd
, a
->imm
);
1202 /* min dsp[rs], rd */
1203 static bool trans_MIN_mr(DisasContext
*ctx
, arg_MIN_mr
*a
)
1205 rx_gen_op_mr(tcg_gen_smin_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1209 /* mul #uimm4, rd */
1211 static bool trans_MUL_ir(DisasContext
*ctx
, arg_MUL_ir
*a
)
1213 rx_gen_op_irr(tcg_gen_mul_i32
, a
->rd
, a
->rd
, a
->imm
);
1218 /* mul dsp[rs], rd */
1219 static bool trans_MUL_mr(DisasContext
*ctx
, arg_MUL_mr
*a
)
1221 rx_gen_op_mr(tcg_gen_mul_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1225 /* mul rs, rs2, rd */
1226 static bool trans_MUL_rrr(DisasContext
*ctx
, arg_MUL_rrr
*a
)
1228 rx_gen_op_rrr(tcg_gen_mul_i32
, a
->rd
, a
->rs
, a
->rs2
);
1233 static bool trans_EMUL_ir(DisasContext
*ctx
, arg_EMUL_ir
*a
)
1235 TCGv imm
= tcg_const_i32(a
->imm
);
1237 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1239 tcg_gen_muls2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1240 cpu_regs
[a
->rd
], imm
);
1246 /* emul dsp[rs], rd */
1247 static bool trans_EMUL_mr(DisasContext
*ctx
, arg_EMUL_mr
*a
)
1251 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1253 mem
= tcg_temp_new();
1254 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1255 tcg_gen_muls2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1256 cpu_regs
[a
->rd
], val
);
1261 /* emulu #imm, rd */
1262 static bool trans_EMULU_ir(DisasContext
*ctx
, arg_EMULU_ir
*a
)
1264 TCGv imm
= tcg_const_i32(a
->imm
);
1266 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1268 tcg_gen_mulu2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1269 cpu_regs
[a
->rd
], imm
);
1275 /* emulu dsp[rs], rd */
1276 static bool trans_EMULU_mr(DisasContext
*ctx
, arg_EMULU_mr
*a
)
1280 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1282 mem
= tcg_temp_new();
1283 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1284 tcg_gen_mulu2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1285 cpu_regs
[a
->rd
], val
);
1290 static void rx_div(TCGv ret
, TCGv arg1
, TCGv arg2
)
1292 gen_helper_div(ret
, cpu_env
, arg1
, arg2
);
1295 static void rx_divu(TCGv ret
, TCGv arg1
, TCGv arg2
)
1297 gen_helper_divu(ret
, cpu_env
, arg1
, arg2
);
1301 static bool trans_DIV_ir(DisasContext
*ctx
, arg_DIV_ir
*a
)
1303 rx_gen_op_irr(rx_div
, a
->rd
, a
->rd
, a
->imm
);
1308 /* div dsp[rs], rd */
1309 static bool trans_DIV_mr(DisasContext
*ctx
, arg_DIV_mr
*a
)
1311 rx_gen_op_mr(rx_div
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1316 static bool trans_DIVU_ir(DisasContext
*ctx
, arg_DIVU_ir
*a
)
1318 rx_gen_op_irr(rx_divu
, a
->rd
, a
->rd
, a
->imm
);
1323 /* divu dsp[rs], rd */
1324 static bool trans_DIVU_mr(DisasContext
*ctx
, arg_DIVU_mr
*a
)
1326 rx_gen_op_mr(rx_divu
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1331 /* shll #imm:5, rd */
1332 /* shll #imm:5, rs2, rd */
1333 static bool trans_SHLL_irr(DisasContext
*ctx
, arg_SHLL_irr
*a
)
1336 tmp
= tcg_temp_new();
1338 tcg_gen_sari_i32(cpu_psw_c
, cpu_regs
[a
->rs2
], 32 - a
->imm
);
1339 tcg_gen_shli_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs2
], a
->imm
);
1340 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, cpu_psw_c
, 0);
1341 tcg_gen_setcondi_i32(TCG_COND_EQ
, tmp
, cpu_psw_c
, 0xffffffff);
1342 tcg_gen_or_i32(cpu_psw_o
, cpu_psw_o
, tmp
);
1343 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, cpu_psw_c
, 0);
1345 tcg_gen_mov_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs2
]);
1346 tcg_gen_movi_i32(cpu_psw_c
, 0);
1347 tcg_gen_movi_i32(cpu_psw_o
, 0);
1349 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1350 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1355 static bool trans_SHLL_rr(DisasContext
*ctx
, arg_SHLL_rr
*a
)
1357 TCGLabel
*noshift
, *done
;
1360 noshift
= gen_new_label();
1361 done
= gen_new_label();
1362 /* if (cpu_regs[a->rs]) { */
1363 tcg_gen_brcondi_i32(TCG_COND_EQ
, cpu_regs
[a
->rs
], 0, noshift
);
1364 count
= tcg_const_i32(32);
1365 tmp
= tcg_temp_new();
1366 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rs
], 31);
1367 tcg_gen_sub_i32(count
, count
, tmp
);
1368 tcg_gen_sar_i32(cpu_psw_c
, cpu_regs
[a
->rd
], count
);
1369 tcg_gen_shl_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], tmp
);
1370 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, cpu_psw_c
, 0);
1371 tcg_gen_setcondi_i32(TCG_COND_EQ
, tmp
, cpu_psw_c
, 0xffffffff);
1372 tcg_gen_or_i32(cpu_psw_o
, cpu_psw_o
, tmp
);
1373 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, cpu_psw_c
, 0);
1376 gen_set_label(noshift
);
1377 tcg_gen_movi_i32(cpu_psw_c
, 0);
1378 tcg_gen_movi_i32(cpu_psw_o
, 0);
1380 gen_set_label(done
);
1381 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1382 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1383 tcg_temp_free(count
);
1388 static inline void shiftr_imm(uint32_t rd
, uint32_t rs
, uint32_t imm
,
1391 static void (* const gen_sXri
[])(TCGv ret
, TCGv arg1
, int arg2
) = {
1392 tcg_gen_shri_i32
, tcg_gen_sari_i32
,
1394 tcg_debug_assert(alith
< 2);
1396 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rs
], imm
- 1);
1397 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1398 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], 1);
1400 tcg_gen_mov_i32(cpu_regs
[rd
], cpu_regs
[rs
]);
1401 tcg_gen_movi_i32(cpu_psw_c
, 0);
1403 tcg_gen_movi_i32(cpu_psw_o
, 0);
1404 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1405 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1408 static inline void shiftr_reg(uint32_t rd
, uint32_t rs
, unsigned int alith
)
1410 TCGLabel
*noshift
, *done
;
1412 static void (* const gen_sXri
[])(TCGv ret
, TCGv arg1
, int arg2
) = {
1413 tcg_gen_shri_i32
, tcg_gen_sari_i32
,
1415 static void (* const gen_sXr
[])(TCGv ret
, TCGv arg1
, TCGv arg2
) = {
1416 tcg_gen_shr_i32
, tcg_gen_sar_i32
,
1418 tcg_debug_assert(alith
< 2);
1419 noshift
= gen_new_label();
1420 done
= gen_new_label();
1421 count
= tcg_temp_new();
1422 /* if (cpu_regs[rs]) { */
1423 tcg_gen_brcondi_i32(TCG_COND_EQ
, cpu_regs
[rs
], 0, noshift
);
1424 tcg_gen_andi_i32(count
, cpu_regs
[rs
], 31);
1425 tcg_gen_subi_i32(count
, count
, 1);
1426 gen_sXr
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], count
);
1427 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1428 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], 1);
1431 gen_set_label(noshift
);
1432 tcg_gen_movi_i32(cpu_psw_c
, 0);
1434 gen_set_label(done
);
1435 tcg_gen_movi_i32(cpu_psw_o
, 0);
1436 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1437 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1438 tcg_temp_free(count
);
1441 /* shar #imm:5, rd */
1442 /* shar #imm:5, rs2, rd */
1443 static bool trans_SHAR_irr(DisasContext
*ctx
, arg_SHAR_irr
*a
)
1445 shiftr_imm(a
->rd
, a
->rs2
, a
->imm
, 1);
1450 static bool trans_SHAR_rr(DisasContext
*ctx
, arg_SHAR_rr
*a
)
1452 shiftr_reg(a
->rd
, a
->rs
, 1);
1456 /* shlr #imm:5, rd */
1457 /* shlr #imm:5, rs2, rd */
1458 static bool trans_SHLR_irr(DisasContext
*ctx
, arg_SHLR_irr
*a
)
1460 shiftr_imm(a
->rd
, a
->rs2
, a
->imm
, 0);
1465 static bool trans_SHLR_rr(DisasContext
*ctx
, arg_SHLR_rr
*a
)
1467 shiftr_reg(a
->rd
, a
->rs
, 0);
1472 static bool trans_ROLC(DisasContext
*ctx
, arg_ROLC
*a
)
1475 tmp
= tcg_temp_new();
1476 tcg_gen_shri_i32(tmp
, cpu_regs
[a
->rd
], 31);
1477 tcg_gen_shli_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1);
1478 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], cpu_psw_c
);
1479 tcg_gen_mov_i32(cpu_psw_c
, tmp
);
1480 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1481 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1487 static bool trans_RORC(DisasContext
*ctx
, arg_RORC
*a
)
1490 tmp
= tcg_temp_new();
1491 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rd
], 0x00000001);
1492 tcg_gen_shri_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1);
1493 tcg_gen_shli_i32(cpu_psw_c
, cpu_psw_c
, 31);
1494 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], cpu_psw_c
);
1495 tcg_gen_mov_i32(cpu_psw_c
, tmp
);
1496 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1497 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1501 enum {ROTR
= 0, ROTL
= 1};
1502 enum {ROT_IMM
= 0, ROT_REG
= 1};
1503 static inline void rx_rot(int ir
, int dir
, int rd
, int src
)
1507 if (ir
== ROT_IMM
) {
1508 tcg_gen_rotli_i32(cpu_regs
[rd
], cpu_regs
[rd
], src
);
1510 tcg_gen_rotl_i32(cpu_regs
[rd
], cpu_regs
[rd
], cpu_regs
[src
]);
1512 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1515 if (ir
== ROT_IMM
) {
1516 tcg_gen_rotri_i32(cpu_regs
[rd
], cpu_regs
[rd
], src
);
1518 tcg_gen_rotr_i32(cpu_regs
[rd
], cpu_regs
[rd
], cpu_regs
[src
]);
1520 tcg_gen_shri_i32(cpu_psw_c
, cpu_regs
[rd
], 31);
1523 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1524 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1528 static bool trans_ROTL_ir(DisasContext
*ctx
, arg_ROTL_ir
*a
)
1530 rx_rot(ROT_IMM
, ROTL
, a
->rd
, a
->imm
);
1535 static bool trans_ROTL_rr(DisasContext
*ctx
, arg_ROTL_rr
*a
)
1537 rx_rot(ROT_REG
, ROTL
, a
->rd
, a
->rs
);
1542 static bool trans_ROTR_ir(DisasContext
*ctx
, arg_ROTR_ir
*a
)
1544 rx_rot(ROT_IMM
, ROTR
, a
->rd
, a
->imm
);
1549 static bool trans_ROTR_rr(DisasContext
*ctx
, arg_ROTR_rr
*a
)
1551 rx_rot(ROT_REG
, ROTR
, a
->rd
, a
->rs
);
1556 static bool trans_REVL(DisasContext
*ctx
, arg_REVL
*a
)
1558 tcg_gen_bswap32_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
]);
1563 static bool trans_REVW(DisasContext
*ctx
, arg_REVW
*a
)
1566 tmp
= tcg_temp_new();
1567 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rs
], 0x00ff00ff);
1568 tcg_gen_shli_i32(tmp
, tmp
, 8);
1569 tcg_gen_shri_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
], 8);
1570 tcg_gen_andi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 0x00ff00ff);
1571 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], tmp
);
1576 /* conditional branch helper */
1577 static void rx_bcnd_main(DisasContext
*ctx
, int cd
, int dst
)
1584 dc
.temp
= tcg_temp_new();
1586 t
= gen_new_label();
1587 done
= gen_new_label();
1588 tcg_gen_brcondi_i32(dc
.cond
, dc
.value
, 0, t
);
1589 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
);
1592 gen_goto_tb(ctx
, 1, ctx
->pc
+ dst
);
1593 gen_set_label(done
);
1594 tcg_temp_free(dc
.temp
);
1597 /* always true case */
1598 gen_goto_tb(ctx
, 0, ctx
->pc
+ dst
);
1601 /* always false case */
1607 /* beq dsp:3 / bne dsp:3 */
1608 /* beq dsp:8 / bne dsp:8 */
1609 /* bc dsp:8 / bnc dsp:8 */
1610 /* bgtu dsp:8 / bleu dsp:8 */
1611 /* bpz dsp:8 / bn dsp:8 */
1612 /* bge dsp:8 / blt dsp:8 */
1613 /* bgt dsp:8 / ble dsp:8 */
1614 /* bo dsp:8 / bno dsp:8 */
1615 /* beq dsp:16 / bne dsp:16 */
1616 static bool trans_BCnd(DisasContext
*ctx
, arg_BCnd
*a
)
1618 rx_bcnd_main(ctx
, a
->cd
, a
->dsp
);
1626 static bool trans_BRA(DisasContext
*ctx
, arg_BRA
*a
)
1628 rx_bcnd_main(ctx
, 14, a
->dsp
);
1633 static bool trans_BRA_l(DisasContext
*ctx
, arg_BRA_l
*a
)
1635 tcg_gen_addi_i32(cpu_pc
, cpu_regs
[a
->rd
], ctx
->pc
);
1636 ctx
->base
.is_jmp
= DISAS_JUMP
;
1640 static inline void rx_save_pc(DisasContext
*ctx
)
1642 TCGv pc
= tcg_const_i32(ctx
->base
.pc_next
);
1648 static bool trans_JMP(DisasContext
*ctx
, arg_JMP
*a
)
1650 tcg_gen_mov_i32(cpu_pc
, cpu_regs
[a
->rs
]);
1651 ctx
->base
.is_jmp
= DISAS_JUMP
;
1656 static bool trans_JSR(DisasContext
*ctx
, arg_JSR
*a
)
1659 tcg_gen_mov_i32(cpu_pc
, cpu_regs
[a
->rs
]);
1660 ctx
->base
.is_jmp
= DISAS_JUMP
;
1666 static bool trans_BSR(DisasContext
*ctx
, arg_BSR
*a
)
1669 rx_bcnd_main(ctx
, 14, a
->dsp
);
1674 static bool trans_BSR_l(DisasContext
*ctx
, arg_BSR_l
*a
)
1677 tcg_gen_addi_i32(cpu_pc
, cpu_regs
[a
->rd
], ctx
->pc
);
1678 ctx
->base
.is_jmp
= DISAS_JUMP
;
1683 static bool trans_RTS(DisasContext
*ctx
, arg_RTS
*a
)
1686 ctx
->base
.is_jmp
= DISAS_JUMP
;
1691 static bool trans_NOP(DisasContext
*ctx
, arg_NOP
*a
)
1697 static bool trans_SCMPU(DisasContext
*ctx
, arg_SCMPU
*a
)
1699 gen_helper_scmpu(cpu_env
);
1704 static bool trans_SMOVU(DisasContext
*ctx
, arg_SMOVU
*a
)
1706 gen_helper_smovu(cpu_env
);
1711 static bool trans_SMOVF(DisasContext
*ctx
, arg_SMOVF
*a
)
1713 gen_helper_smovf(cpu_env
);
1718 static bool trans_SMOVB(DisasContext
*ctx
, arg_SMOVB
*a
)
1720 gen_helper_smovb(cpu_env
);
1724 #define STRING(op) \
1726 TCGv size = tcg_const_i32(a->sz); \
1727 gen_helper_##op(cpu_env, size); \
1728 tcg_temp_free(size); \
1732 static bool trans_SUNTIL(DisasContext
*ctx
, arg_SUNTIL
*a
)
1739 static bool trans_SWHILE(DisasContext
*ctx
, arg_SWHILE
*a
)
1745 static bool trans_SSTR(DisasContext
*ctx
, arg_SSTR
*a
)
1752 static bool trans_RMPA(DisasContext
*ctx
, arg_RMPA
*a
)
1758 static void rx_mul64hi(TCGv_i64 ret
, int rs
, int rs2
)
1760 TCGv_i64 tmp0
, tmp1
;
1761 tmp0
= tcg_temp_new_i64();
1762 tmp1
= tcg_temp_new_i64();
1763 tcg_gen_ext_i32_i64(tmp0
, cpu_regs
[rs
]);
1764 tcg_gen_sari_i64(tmp0
, tmp0
, 16);
1765 tcg_gen_ext_i32_i64(tmp1
, cpu_regs
[rs2
]);
1766 tcg_gen_sari_i64(tmp1
, tmp1
, 16);
1767 tcg_gen_mul_i64(ret
, tmp0
, tmp1
);
1768 tcg_gen_shli_i64(ret
, ret
, 16);
1769 tcg_temp_free_i64(tmp0
);
1770 tcg_temp_free_i64(tmp1
);
1773 static void rx_mul64lo(TCGv_i64 ret
, int rs
, int rs2
)
1775 TCGv_i64 tmp0
, tmp1
;
1776 tmp0
= tcg_temp_new_i64();
1777 tmp1
= tcg_temp_new_i64();
1778 tcg_gen_ext_i32_i64(tmp0
, cpu_regs
[rs
]);
1779 tcg_gen_ext16s_i64(tmp0
, tmp0
);
1780 tcg_gen_ext_i32_i64(tmp1
, cpu_regs
[rs2
]);
1781 tcg_gen_ext16s_i64(tmp1
, tmp1
);
1782 tcg_gen_mul_i64(ret
, tmp0
, tmp1
);
1783 tcg_gen_shli_i64(ret
, ret
, 16);
1784 tcg_temp_free_i64(tmp0
);
1785 tcg_temp_free_i64(tmp1
);
1789 static bool trans_MULHI(DisasContext
*ctx
, arg_MULHI
*a
)
1791 rx_mul64hi(cpu_acc
, a
->rs
, a
->rs2
);
1796 static bool trans_MULLO(DisasContext
*ctx
, arg_MULLO
*a
)
1798 rx_mul64lo(cpu_acc
, a
->rs
, a
->rs2
);
1803 static bool trans_MACHI(DisasContext
*ctx
, arg_MACHI
*a
)
1806 tmp
= tcg_temp_new_i64();
1807 rx_mul64hi(tmp
, a
->rs
, a
->rs2
);
1808 tcg_gen_add_i64(cpu_acc
, cpu_acc
, tmp
);
1809 tcg_temp_free_i64(tmp
);
1814 static bool trans_MACLO(DisasContext
*ctx
, arg_MACLO
*a
)
1817 tmp
= tcg_temp_new_i64();
1818 rx_mul64lo(tmp
, a
->rs
, a
->rs2
);
1819 tcg_gen_add_i64(cpu_acc
, cpu_acc
, tmp
);
1820 tcg_temp_free_i64(tmp
);
1825 static bool trans_MVFACHI(DisasContext
*ctx
, arg_MVFACHI
*a
)
1827 tcg_gen_extrh_i64_i32(cpu_regs
[a
->rd
], cpu_acc
);
1832 static bool trans_MVFACMI(DisasContext
*ctx
, arg_MVFACMI
*a
)
1835 rd64
= tcg_temp_new_i64();
1836 tcg_gen_extract_i64(rd64
, cpu_acc
, 16, 32);
1837 tcg_gen_extrl_i64_i32(cpu_regs
[a
->rd
], rd64
);
1838 tcg_temp_free_i64(rd64
);
1843 static bool trans_MVTACHI(DisasContext
*ctx
, arg_MVTACHI
*a
)
1846 rs64
= tcg_temp_new_i64();
1847 tcg_gen_extu_i32_i64(rs64
, cpu_regs
[a
->rs
]);
1848 tcg_gen_deposit_i64(cpu_acc
, cpu_acc
, rs64
, 32, 32);
1849 tcg_temp_free_i64(rs64
);
1854 static bool trans_MVTACLO(DisasContext
*ctx
, arg_MVTACLO
*a
)
1857 rs64
= tcg_temp_new_i64();
1858 tcg_gen_extu_i32_i64(rs64
, cpu_regs
[a
->rs
]);
1859 tcg_gen_deposit_i64(cpu_acc
, cpu_acc
, rs64
, 0, 32);
1860 tcg_temp_free_i64(rs64
);
1865 static bool trans_RACW(DisasContext
*ctx
, arg_RACW
*a
)
1867 TCGv imm
= tcg_const_i32(a
->imm
+ 1);
1868 gen_helper_racw(cpu_env
, imm
);
1874 static bool trans_SAT(DisasContext
*ctx
, arg_SAT
*a
)
1877 tmp
= tcg_temp_new();
1878 z
= tcg_const_i32(0);
1879 /* S == 1 -> 0xffffffff / S == 0 -> 0x00000000 */
1880 tcg_gen_sari_i32(tmp
, cpu_psw_s
, 31);
1881 /* S == 1 -> 0x7fffffff / S == 0 -> 0x80000000 */
1882 tcg_gen_xori_i32(tmp
, tmp
, 0x80000000);
1883 tcg_gen_movcond_i32(TCG_COND_LT
, cpu_regs
[a
->rd
],
1884 cpu_psw_o
, z
, tmp
, cpu_regs
[a
->rd
]);
1891 static bool trans_SATR(DisasContext
*ctx
, arg_SATR
*a
)
1893 gen_helper_satr(cpu_env
);
1897 #define cat3(a, b, c) a##b##c
1898 #define FOP(name, op) \
1899 static bool cat3(trans_, name, _ir)(DisasContext *ctx, \
1900 cat3(arg_, name, _ir) * a) \
1902 TCGv imm = tcg_const_i32(li(ctx, 0)); \
1903 gen_helper_##op(cpu_regs[a->rd], cpu_env, \
1904 cpu_regs[a->rd], imm); \
1905 tcg_temp_free(imm); \
1908 static bool cat3(trans_, name, _mr)(DisasContext *ctx, \
1909 cat3(arg_, name, _mr) * a) \
1912 mem = tcg_temp_new(); \
1913 val = rx_load_source(ctx, mem, a->ld, MO_32, a->rs); \
1914 gen_helper_##op(cpu_regs[a->rd], cpu_env, \
1915 cpu_regs[a->rd], val); \
1916 tcg_temp_free(mem); \
1920 #define FCONVOP(name, op) \
1921 static bool trans_##name(DisasContext *ctx, arg_##name * a) \
1924 mem = tcg_temp_new(); \
1925 val = rx_load_source(ctx, mem, a->ld, MO_32, a->rs); \
1926 gen_helper_##op(cpu_regs[a->rd], cpu_env, val); \
1927 tcg_temp_free(mem); \
1937 static bool trans_FCMP_ir(DisasContext
*ctx
, arg_FCMP_ir
* a
)
1939 TCGv imm
= tcg_const_i32(li(ctx
, 0));
1940 gen_helper_fcmp(cpu_env
, cpu_regs
[a
->rd
], imm
);
1945 /* fcmp dsp[rs], rd */
1947 static bool trans_FCMP_mr(DisasContext
*ctx
, arg_FCMP_mr
*a
)
1950 mem
= tcg_temp_new();
1951 val
= rx_load_source(ctx
, mem
, a
->ld
, MO_32
, a
->rs
);
1952 gen_helper_fcmp(cpu_env
, cpu_regs
[a
->rd
], val
);
1958 FCONVOP(ROUND
, round
)
1961 /* itof dsp[rs], rd */
1962 static bool trans_ITOF(DisasContext
*ctx
, arg_ITOF
* a
)
1965 mem
= tcg_temp_new();
1966 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1967 gen_helper_itof(cpu_regs
[a
->rd
], cpu_env
, val
);
1972 static void rx_bsetm(TCGv mem
, TCGv mask
)
1975 val
= tcg_temp_new();
1976 rx_gen_ld(MO_8
, val
, mem
);
1977 tcg_gen_or_i32(val
, val
, mask
);
1978 rx_gen_st(MO_8
, val
, mem
);
1982 static void rx_bclrm(TCGv mem
, TCGv mask
)
1985 val
= tcg_temp_new();
1986 rx_gen_ld(MO_8
, val
, mem
);
1987 tcg_gen_andc_i32(val
, val
, mask
);
1988 rx_gen_st(MO_8
, val
, mem
);
1992 static void rx_btstm(TCGv mem
, TCGv mask
)
1995 val
= tcg_temp_new();
1996 rx_gen_ld(MO_8
, val
, mem
);
1997 tcg_gen_and_i32(val
, val
, mask
);
1998 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, val
, 0);
1999 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_c
);
2003 static void rx_bnotm(TCGv mem
, TCGv mask
)
2006 val
= tcg_temp_new();
2007 rx_gen_ld(MO_8
, val
, mem
);
2008 tcg_gen_xor_i32(val
, val
, mask
);
2009 rx_gen_st(MO_8
, val
, mem
);
2013 static void rx_bsetr(TCGv reg
, TCGv mask
)
2015 tcg_gen_or_i32(reg
, reg
, mask
);
2018 static void rx_bclrr(TCGv reg
, TCGv mask
)
2020 tcg_gen_andc_i32(reg
, reg
, mask
);
2023 static inline void rx_btstr(TCGv reg
, TCGv mask
)
2026 t0
= tcg_temp_new();
2027 tcg_gen_and_i32(t0
, reg
, mask
);
2028 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, t0
, 0);
2029 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_c
);
2033 static inline void rx_bnotr(TCGv reg
, TCGv mask
)
2035 tcg_gen_xor_i32(reg
, reg
, mask
);
2038 #define BITOP(name, op) \
2039 static bool cat3(trans_, name, _im)(DisasContext *ctx, \
2040 cat3(arg_, name, _im) * a) \
2042 TCGv mask, mem, addr; \
2043 mem = tcg_temp_new(); \
2044 mask = tcg_const_i32(1 << a->imm); \
2045 addr = rx_index_addr(ctx, mem, a->ld, MO_8, a->rs); \
2046 cat3(rx_, op, m)(addr, mask); \
2047 tcg_temp_free(mask); \
2048 tcg_temp_free(mem); \
2051 static bool cat3(trans_, name, _ir)(DisasContext *ctx, \
2052 cat3(arg_, name, _ir) * a) \
2055 mask = tcg_const_i32(1 << a->imm); \
2056 cat3(rx_, op, r)(cpu_regs[a->rd], mask); \
2057 tcg_temp_free(mask); \
2060 static bool cat3(trans_, name, _rr)(DisasContext *ctx, \
2061 cat3(arg_, name, _rr) * a) \
2064 mask = tcg_const_i32(1); \
2065 b = tcg_temp_new(); \
2066 tcg_gen_andi_i32(b, cpu_regs[a->rs], 31); \
2067 tcg_gen_shl_i32(mask, mask, b); \
2068 cat3(rx_, op, r)(cpu_regs[a->rd], mask); \
2069 tcg_temp_free(mask); \
2073 static bool cat3(trans_, name, _rm)(DisasContext *ctx, \
2074 cat3(arg_, name, _rm) * a) \
2076 TCGv mask, mem, addr, b; \
2077 mask = tcg_const_i32(1); \
2078 b = tcg_temp_new(); \
2079 tcg_gen_andi_i32(b, cpu_regs[a->rd], 7); \
2080 tcg_gen_shl_i32(mask, mask, b); \
2081 mem = tcg_temp_new(); \
2082 addr = rx_index_addr(ctx, mem, a->ld, MO_8, a->rs); \
2083 cat3(rx_, op, m)(addr, mask); \
2084 tcg_temp_free(mem); \
2085 tcg_temp_free(mask); \
2095 static inline void bmcnd_op(TCGv val
, TCGCond cond
, int pos
)
2099 dc
.temp
= tcg_temp_new();
2100 bit
= tcg_temp_new();
2101 psw_cond(&dc
, cond
);
2102 tcg_gen_andi_i32(val
, val
, ~(1 << pos
));
2103 tcg_gen_setcondi_i32(dc
.cond
, bit
, dc
.value
, 0);
2104 tcg_gen_deposit_i32(val
, val
, bit
, pos
, 1);
2106 tcg_temp_free(dc
.temp
);
2109 /* bmcnd #imm, dsp[rd] */
2110 static bool trans_BMCnd_im(DisasContext
*ctx
, arg_BMCnd_im
*a
)
2112 TCGv val
, mem
, addr
;
2113 val
= tcg_temp_new();
2114 mem
= tcg_temp_new();
2115 addr
= rx_index_addr(ctx
, mem
, a
->ld
, MO_8
, a
->rd
);
2116 rx_gen_ld(MO_8
, val
, addr
);
2117 bmcnd_op(val
, a
->cd
, a
->imm
);
2118 rx_gen_st(MO_8
, val
, addr
);
2124 /* bmcond #imm, rd */
2125 static bool trans_BMCnd_ir(DisasContext
*ctx
, arg_BMCnd_ir
*a
)
2127 bmcnd_op(cpu_regs
[a
->rd
], a
->cd
, a
->imm
);
2140 static inline void clrsetpsw(DisasContext
*ctx
, int cb
, int val
)
2145 tcg_gen_movi_i32(cpu_psw_c
, val
);
2148 tcg_gen_movi_i32(cpu_psw_z
, val
== 0);
2151 tcg_gen_movi_i32(cpu_psw_s
, val
? -1 : 0);
2154 tcg_gen_movi_i32(cpu_psw_o
, val
<< 31);
2157 qemu_log_mask(LOG_GUEST_ERROR
, "Invalid distination %d", cb
);
2160 } else if (is_privileged(ctx
, 0)) {
2163 tcg_gen_movi_i32(cpu_psw_i
, val
);
2164 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2167 tcg_gen_movi_i32(cpu_psw_u
, val
);
2170 qemu_log_mask(LOG_GUEST_ERROR
, "Invalid distination %d", cb
);
2177 static bool trans_CLRPSW(DisasContext
*ctx
, arg_CLRPSW
*a
)
2179 clrsetpsw(ctx
, a
->cb
, 0);
2184 static bool trans_SETPSW(DisasContext
*ctx
, arg_SETPSW
*a
)
2186 clrsetpsw(ctx
, a
->cb
, 1);
2191 static bool trans_MVTIPL(DisasContext
*ctx
, arg_MVTIPL
*a
)
2193 if (is_privileged(ctx
, 1)) {
2194 tcg_gen_movi_i32(cpu_psw_ipl
, a
->imm
);
2195 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2201 static bool trans_MVTC_i(DisasContext
*ctx
, arg_MVTC_i
*a
)
2205 imm
= tcg_const_i32(a
->imm
);
2206 move_to_cr(ctx
, imm
, a
->cr
);
2207 if (a
->cr
== 0 && is_privileged(ctx
, 0)) {
2208 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2215 static bool trans_MVTC_r(DisasContext
*ctx
, arg_MVTC_r
*a
)
2217 move_to_cr(ctx
, cpu_regs
[a
->rs
], a
->cr
);
2218 if (a
->cr
== 0 && is_privileged(ctx
, 0)) {
2219 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2225 static bool trans_MVFC(DisasContext
*ctx
, arg_MVFC
*a
)
2227 move_from_cr(cpu_regs
[a
->rd
], a
->cr
, ctx
->pc
);
2232 static bool trans_RTFI(DisasContext
*ctx
, arg_RTFI
*a
)
2235 if (is_privileged(ctx
, 1)) {
2236 psw
= tcg_temp_new();
2237 tcg_gen_mov_i32(cpu_pc
, cpu_bpc
);
2238 tcg_gen_mov_i32(psw
, cpu_bpsw
);
2239 gen_helper_set_psw_rte(cpu_env
, psw
);
2240 ctx
->base
.is_jmp
= DISAS_EXIT
;
2247 static bool trans_RTE(DisasContext
*ctx
, arg_RTE
*a
)
2250 if (is_privileged(ctx
, 1)) {
2251 psw
= tcg_temp_new();
2254 gen_helper_set_psw_rte(cpu_env
, psw
);
2255 ctx
->base
.is_jmp
= DISAS_EXIT
;
2262 static bool trans_BRK(DisasContext
*ctx
, arg_BRK
*a
)
2264 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2265 gen_helper_rxbrk(cpu_env
);
2266 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2271 static bool trans_INT(DisasContext
*ctx
, arg_INT
*a
)
2275 tcg_debug_assert(a
->imm
< 0x100);
2276 vec
= tcg_const_i32(a
->imm
);
2277 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2278 gen_helper_rxint(cpu_env
, vec
);
2280 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2285 static bool trans_WAIT(DisasContext
*ctx
, arg_WAIT
*a
)
2287 if (is_privileged(ctx
, 1)) {
2288 tcg_gen_addi_i32(cpu_pc
, cpu_pc
, 2);
2289 gen_helper_wait(cpu_env
);
2294 static void rx_tr_init_disas_context(DisasContextBase
*dcbase
, CPUState
*cs
)
2296 CPURXState
*env
= cs
->env_ptr
;
2297 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2301 static void rx_tr_tb_start(DisasContextBase
*dcbase
, CPUState
*cs
)
2305 static void rx_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cs
)
2307 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2309 tcg_gen_insn_start(ctx
->base
.pc_next
);
2312 static void rx_tr_translate_insn(DisasContextBase
*dcbase
, CPUState
*cs
)
2314 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2317 ctx
->pc
= ctx
->base
.pc_next
;
2318 insn
= decode_load(ctx
);
2319 if (!decode(ctx
, insn
)) {
2320 gen_helper_raise_illegal_instruction(cpu_env
);
2324 static void rx_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cs
)
2326 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2328 switch (ctx
->base
.is_jmp
) {
2330 case DISAS_TOO_MANY
:
2331 gen_goto_tb(ctx
, 0, dcbase
->pc_next
);
2334 if (ctx
->base
.singlestep_enabled
) {
2335 gen_helper_debug(cpu_env
);
2337 tcg_gen_lookup_and_goto_ptr();
2341 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2344 tcg_gen_exit_tb(NULL
, 0);
2346 case DISAS_NORETURN
:
2349 g_assert_not_reached();
2353 static void rx_tr_disas_log(const DisasContextBase
*dcbase
, CPUState
*cs
)
2355 qemu_log("IN:\n"); /* , lookup_symbol(dcbase->pc_first)); */
2356 log_target_disas(cs
, dcbase
->pc_first
, dcbase
->tb
->size
);
2359 static const TranslatorOps rx_tr_ops
= {
2360 .init_disas_context
= rx_tr_init_disas_context
,
2361 .tb_start
= rx_tr_tb_start
,
2362 .insn_start
= rx_tr_insn_start
,
2363 .translate_insn
= rx_tr_translate_insn
,
2364 .tb_stop
= rx_tr_tb_stop
,
2365 .disas_log
= rx_tr_disas_log
,
2368 void gen_intermediate_code(CPUState
*cs
, TranslationBlock
*tb
, int max_insns
)
2372 translator_loop(&rx_tr_ops
, &dc
.base
, cs
, tb
, max_insns
);
2375 void restore_state_to_opc(CPURXState
*env
, TranslationBlock
*tb
,
2381 #define ALLOC_REGISTER(sym, name) \
2382 cpu_##sym = tcg_global_mem_new_i32(cpu_env, \
2383 offsetof(CPURXState, sym), name)
2385 void rx_translate_init(void)
2387 static const char * const regnames
[NUM_REGS
] = {
2388 "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
2389 "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"
2393 for (i
= 0; i
< NUM_REGS
; i
++) {
2394 cpu_regs
[i
] = tcg_global_mem_new_i32(cpu_env
,
2395 offsetof(CPURXState
, regs
[i
]),
2398 ALLOC_REGISTER(pc
, "PC");
2399 ALLOC_REGISTER(psw_o
, "PSW(O)");
2400 ALLOC_REGISTER(psw_s
, "PSW(S)");
2401 ALLOC_REGISTER(psw_z
, "PSW(Z)");
2402 ALLOC_REGISTER(psw_c
, "PSW(C)");
2403 ALLOC_REGISTER(psw_u
, "PSW(U)");
2404 ALLOC_REGISTER(psw_i
, "PSW(I)");
2405 ALLOC_REGISTER(psw_pm
, "PSW(PM)");
2406 ALLOC_REGISTER(psw_ipl
, "PSW(IPL)");
2407 ALLOC_REGISTER(usp
, "USP");
2408 ALLOC_REGISTER(fpsw
, "FPSW");
2409 ALLOC_REGISTER(bpsw
, "BPSW");
2410 ALLOC_REGISTER(bpc
, "BPC");
2411 ALLOC_REGISTER(isp
, "ISP");
2412 ALLOC_REGISTER(fintv
, "FINTV");
2413 ALLOC_REGISTER(intb
, "INTB");
2414 cpu_acc
= tcg_global_mem_new_i64(cpu_env
,
2415 offsetof(CPURXState
, acc
), "ACC");