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 #define HELPER_H "helper.h"
32 #include "exec/helper-info.c.inc"
36 typedef struct DisasContext
{
37 DisasContextBase base
;
43 typedef struct DisasCompare
{
49 const char *rx_crname(uint8_t cr
)
51 static const char *cr_names
[] = {
52 "psw", "pc", "usp", "fpsw", "", "", "", "",
53 "bpsw", "bpc", "isp", "fintv", "intb", "", "", ""
55 if (cr
>= ARRAY_SIZE(cr_names
)) {
61 /* Target-specific values for dc->base.is_jmp. */
62 #define DISAS_JUMP DISAS_TARGET_0
63 #define DISAS_UPDATE DISAS_TARGET_1
64 #define DISAS_EXIT DISAS_TARGET_2
66 /* global register indexes */
67 static TCGv cpu_regs
[16];
68 static TCGv cpu_psw_o
, cpu_psw_s
, cpu_psw_z
, cpu_psw_c
;
69 static TCGv cpu_psw_i
, cpu_psw_pm
, cpu_psw_u
, cpu_psw_ipl
;
70 static TCGv cpu_usp
, cpu_fpsw
, cpu_bpsw
, cpu_bpc
, cpu_isp
;
71 static TCGv cpu_fintv
, cpu_intb
, cpu_pc
;
72 static TCGv_i64 cpu_acc
;
74 #define cpu_sp cpu_regs[0]
77 static uint32_t decode_load_bytes(DisasContext
*ctx
, uint32_t insn
,
81 uint8_t b
= cpu_ldub_code(ctx
->env
, ctx
->base
.pc_next
++);
82 insn
|= b
<< (32 - i
* 8);
87 static uint32_t li(DisasContext
*ctx
, int sz
)
90 CPURXState
*env
= ctx
->env
;
91 addr
= ctx
->base
.pc_next
;
93 tcg_debug_assert(sz
< 4);
96 ctx
->base
.pc_next
+= 1;
97 return cpu_ldsb_code(env
, addr
);
99 ctx
->base
.pc_next
+= 2;
100 return cpu_ldsw_code(env
, addr
);
102 ctx
->base
.pc_next
+= 3;
103 tmp
= cpu_ldsb_code(env
, addr
+ 2) << 16;
104 tmp
|= cpu_lduw_code(env
, addr
) & 0xffff;
107 ctx
->base
.pc_next
+= 4;
108 return cpu_ldl_code(env
, addr
);
113 static int bdsp_s(DisasContext
*ctx
, int d
)
129 /* Include the auto-generated decoder. */
130 #include "decode-insns.c.inc"
132 void rx_cpu_dump_state(CPUState
*cs
, FILE *f
, int flags
)
134 RXCPU
*cpu
= RX_CPU(cs
);
135 CPURXState
*env
= &cpu
->env
;
139 psw
= rx_cpu_pack_psw(env
);
140 qemu_fprintf(f
, "pc=0x%08x psw=0x%08x\n",
142 for (i
= 0; i
< 16; i
+= 4) {
143 qemu_fprintf(f
, "r%d=0x%08x r%d=0x%08x r%d=0x%08x r%d=0x%08x\n",
144 i
, env
->regs
[i
], i
+ 1, env
->regs
[i
+ 1],
145 i
+ 2, env
->regs
[i
+ 2], i
+ 3, env
->regs
[i
+ 3]);
149 static void gen_goto_tb(DisasContext
*dc
, int n
, target_ulong dest
)
151 if (translator_use_goto_tb(&dc
->base
, dest
)) {
153 tcg_gen_movi_i32(cpu_pc
, dest
);
154 tcg_gen_exit_tb(dc
->base
.tb
, n
);
156 tcg_gen_movi_i32(cpu_pc
, dest
);
157 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
->tb_flags
, PSW
, PM
)) {
240 gen_helper_raise_privilege_violation(tcg_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(DisasContext
*ctx
, TCGv ret
, int cr
, uint32_t pc
)
321 gen_helper_pack_psw(ret
, tcg_env
);
324 tcg_gen_movi_i32(ret
, pc
);
327 if (FIELD_EX32(ctx
->tb_flags
, PSW
, U
)) {
328 tcg_gen_mov_i32(ret
, cpu_sp
);
330 tcg_gen_mov_i32(ret
, cpu_usp
);
334 tcg_gen_mov_i32(ret
, cpu_fpsw
);
337 tcg_gen_mov_i32(ret
, cpu_bpsw
);
340 tcg_gen_mov_i32(ret
, cpu_bpc
);
343 if (FIELD_EX32(ctx
->tb_flags
, PSW
, U
)) {
344 tcg_gen_mov_i32(ret
, cpu_isp
);
346 tcg_gen_mov_i32(ret
, cpu_sp
);
350 tcg_gen_mov_i32(ret
, cpu_fintv
);
353 tcg_gen_mov_i32(ret
, cpu_intb
);
356 qemu_log_mask(LOG_GUEST_ERROR
, "Unimplement control register %d", cr
);
357 /* Unimplement registers return 0 */
358 tcg_gen_movi_i32(ret
, 0);
363 static void move_to_cr(DisasContext
*ctx
, TCGv val
, int cr
)
365 if (cr
>= 8 && !is_privileged(ctx
, 0)) {
366 /* Some control registers can only be written in privileged mode. */
367 qemu_log_mask(LOG_GUEST_ERROR
,
368 "disallow control register write %s", rx_crname(cr
));
373 gen_helper_set_psw(tcg_env
, val
);
374 if (is_privileged(ctx
, 0)) {
375 /* PSW.{I,U} may be updated here. exit TB. */
376 ctx
->base
.is_jmp
= DISAS_UPDATE
;
379 /* case 1: to PC not supported */
381 if (FIELD_EX32(ctx
->tb_flags
, PSW
, U
)) {
382 tcg_gen_mov_i32(cpu_sp
, val
);
384 tcg_gen_mov_i32(cpu_usp
, val
);
388 gen_helper_set_fpsw(tcg_env
, val
);
391 tcg_gen_mov_i32(cpu_bpsw
, val
);
394 tcg_gen_mov_i32(cpu_bpc
, val
);
397 if (FIELD_EX32(ctx
->tb_flags
, PSW
, U
)) {
398 tcg_gen_mov_i32(cpu_isp
, val
);
400 tcg_gen_mov_i32(cpu_sp
, val
);
404 tcg_gen_mov_i32(cpu_fintv
, val
);
407 tcg_gen_mov_i32(cpu_intb
, val
);
410 qemu_log_mask(LOG_GUEST_ERROR
,
411 "Unimplement control register %d", cr
);
416 static void push(TCGv val
)
418 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
419 rx_gen_st(MO_32
, val
, cpu_sp
);
422 static void pop(TCGv ret
)
424 rx_gen_ld(MO_32
, ret
, cpu_sp
);
425 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, 4);
428 /* mov.<bwl> rs,dsp5[rd] */
429 static bool trans_MOV_rm(DisasContext
*ctx
, arg_MOV_rm
*a
)
432 mem
= tcg_temp_new();
433 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rd
], a
->dsp
<< a
->sz
);
434 rx_gen_st(a
->sz
, cpu_regs
[a
->rs
], mem
);
438 /* mov.<bwl> dsp5[rs],rd */
439 static bool trans_MOV_mr(DisasContext
*ctx
, arg_MOV_mr
*a
)
442 mem
= tcg_temp_new();
443 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rs
], a
->dsp
<< a
->sz
);
444 rx_gen_ld(a
->sz
, cpu_regs
[a
->rd
], mem
);
448 /* mov.l #uimm4,rd */
449 /* mov.l #uimm8,rd */
451 static bool trans_MOV_ir(DisasContext
*ctx
, arg_MOV_ir
*a
)
453 tcg_gen_movi_i32(cpu_regs
[a
->rd
], a
->imm
);
457 /* mov.<bwl> #uimm8,dsp[rd] */
458 /* mov.<bwl> #imm, dsp[rd] */
459 static bool trans_MOV_im(DisasContext
*ctx
, arg_MOV_im
*a
)
462 imm
= tcg_constant_i32(a
->imm
);
463 mem
= tcg_temp_new();
464 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rd
], a
->dsp
<< a
->sz
);
465 rx_gen_st(a
->sz
, imm
, mem
);
469 /* mov.<bwl> [ri,rb],rd */
470 static bool trans_MOV_ar(DisasContext
*ctx
, arg_MOV_ar
*a
)
473 mem
= tcg_temp_new();
474 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
475 rx_gen_ld(a
->sz
, cpu_regs
[a
->rd
], mem
);
479 /* mov.<bwl> rd,[ri,rb] */
480 static bool trans_MOV_ra(DisasContext
*ctx
, arg_MOV_ra
*a
)
483 mem
= tcg_temp_new();
484 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
485 rx_gen_st(a
->sz
, cpu_regs
[a
->rs
], mem
);
489 /* mov.<bwl> dsp[rs],dsp[rd] */
490 /* mov.<bwl> rs,dsp[rd] */
491 /* mov.<bwl> dsp[rs],rd */
492 /* mov.<bwl> rs,rd */
493 static bool trans_MOV_mm(DisasContext
*ctx
, arg_MOV_mm
*a
)
497 if (a
->lds
== 3 && a
->ldd
== 3) {
498 /* mov.<bwl> rs,rd */
499 tcg_gen_ext_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
], a
->sz
| MO_SIGN
);
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
);
523 /* mov.<bwl> rs,[rd+] */
524 /* mov.<bwl> rs,[-rd] */
525 static bool trans_MOV_rp(DisasContext
*ctx
, arg_MOV_rp
*a
)
528 val
= tcg_temp_new();
529 tcg_gen_mov_i32(val
, cpu_regs
[a
->rs
]);
531 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
533 rx_gen_st(a
->sz
, val
, cpu_regs
[a
->rd
]);
535 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
540 /* mov.<bwl> [rd+],rs */
541 /* mov.<bwl> [-rd],rs */
542 static bool trans_MOV_pr(DisasContext
*ctx
, arg_MOV_pr
*a
)
545 val
= tcg_temp_new();
547 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
549 rx_gen_ld(a
->sz
, val
, cpu_regs
[a
->rd
]);
551 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
553 tcg_gen_mov_i32(cpu_regs
[a
->rs
], val
);
557 /* movu.<bw> dsp5[rs],rd */
558 /* movu.<bw> dsp[rs],rd */
559 static bool trans_MOVU_mr(DisasContext
*ctx
, arg_MOVU_mr
*a
)
562 mem
= tcg_temp_new();
563 tcg_gen_addi_i32(mem
, cpu_regs
[a
->rs
], a
->dsp
<< a
->sz
);
564 rx_gen_ldu(a
->sz
, cpu_regs
[a
->rd
], mem
);
568 /* movu.<bw> rs,rd */
569 static bool trans_MOVU_rr(DisasContext
*ctx
, arg_MOVU_rr
*a
)
571 tcg_gen_ext_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
], a
->sz
);
575 /* movu.<bw> [ri,rb],rd */
576 static bool trans_MOVU_ar(DisasContext
*ctx
, arg_MOVU_ar
*a
)
579 mem
= tcg_temp_new();
580 rx_gen_regindex(ctx
, mem
, a
->sz
, a
->ri
, a
->rb
);
581 rx_gen_ldu(a
->sz
, cpu_regs
[a
->rd
], mem
);
585 /* movu.<bw> [rd+],rs */
586 /* mov.<bw> [-rd],rs */
587 static bool trans_MOVU_pr(DisasContext
*ctx
, arg_MOVU_pr
*a
)
590 val
= tcg_temp_new();
592 tcg_gen_subi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
594 rx_gen_ldu(a
->sz
, val
, cpu_regs
[a
->rd
]);
596 tcg_gen_addi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1 << a
->sz
);
598 tcg_gen_mov_i32(cpu_regs
[a
->rs
], val
);
604 static bool trans_POP(DisasContext
*ctx
, arg_POP
*a
)
606 /* mov.l [r0+], rd */
612 trans_MOV_pr(ctx
, &mov_a
);
617 static bool trans_POPC(DisasContext
*ctx
, arg_POPC
*a
)
620 val
= tcg_temp_new();
622 move_to_cr(ctx
, val
, a
->cr
);
627 static bool trans_POPM(DisasContext
*ctx
, arg_POPM
*a
)
630 if (a
->rd
== 0 || a
->rd
>= a
->rd2
) {
631 qemu_log_mask(LOG_GUEST_ERROR
,
632 "Invalid register ranges r%d-r%d", a
->rd
, a
->rd2
);
635 while (r
<= a
->rd2
&& r
< 16) {
643 static bool trans_PUSH_r(DisasContext
*ctx
, arg_PUSH_r
*a
)
646 val
= tcg_temp_new();
647 tcg_gen_mov_i32(val
, cpu_regs
[a
->rs
]);
648 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
649 rx_gen_st(a
->sz
, val
, cpu_sp
);
653 /* push.<bwl> dsp[rs] */
654 static bool trans_PUSH_m(DisasContext
*ctx
, arg_PUSH_m
*a
)
657 mem
= tcg_temp_new();
658 val
= tcg_temp_new();
659 addr
= rx_index_addr(ctx
, mem
, a
->ld
, a
->sz
, a
->rs
);
660 rx_gen_ld(a
->sz
, val
, addr
);
661 tcg_gen_subi_i32(cpu_sp
, cpu_sp
, 4);
662 rx_gen_st(a
->sz
, val
, cpu_sp
);
667 static bool trans_PUSHC(DisasContext
*ctx
, arg_PUSHC
*a
)
670 val
= tcg_temp_new();
671 move_from_cr(ctx
, val
, a
->cr
, ctx
->pc
);
677 static bool trans_PUSHM(DisasContext
*ctx
, arg_PUSHM
*a
)
681 if (a
->rs
== 0 || a
->rs
>= a
->rs2
) {
682 qemu_log_mask(LOG_GUEST_ERROR
,
683 "Invalid register ranges r%d-r%d", a
->rs
, a
->rs2
);
686 while (r
>= a
->rs
&& r
>= 0) {
693 static bool trans_XCHG_rr(DisasContext
*ctx
, arg_XCHG_rr
*a
)
696 tmp
= tcg_temp_new();
697 tcg_gen_mov_i32(tmp
, cpu_regs
[a
->rs
]);
698 tcg_gen_mov_i32(cpu_regs
[a
->rs
], cpu_regs
[a
->rd
]);
699 tcg_gen_mov_i32(cpu_regs
[a
->rd
], tmp
);
703 /* xchg dsp[rs].<mi>,rd */
704 static bool trans_XCHG_mr(DisasContext
*ctx
, arg_XCHG_mr
*a
)
707 mem
= tcg_temp_new();
709 case 0: /* dsp[rs].b */
710 case 1: /* dsp[rs].w */
711 case 2: /* dsp[rs].l */
712 addr
= rx_index_addr(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
714 case 3: /* dsp[rs].uw */
715 case 4: /* dsp[rs].ub */
716 addr
= rx_index_addr(ctx
, mem
, a
->ld
, 4 - a
->mi
, a
->rs
);
719 g_assert_not_reached();
721 tcg_gen_atomic_xchg_i32(cpu_regs
[a
->rd
], addr
, cpu_regs
[a
->rd
],
722 0, mi_to_mop(a
->mi
));
726 static inline void stcond(TCGCond cond
, int rd
, int imm
)
730 z
= tcg_constant_i32(0);
731 _imm
= tcg_constant_i32(imm
);
732 tcg_gen_movcond_i32(cond
, cpu_regs
[rd
], cpu_psw_z
, z
,
737 static bool trans_STZ(DisasContext
*ctx
, arg_STZ
*a
)
739 stcond(TCG_COND_EQ
, a
->rd
, a
->imm
);
744 static bool trans_STNZ(DisasContext
*ctx
, arg_STNZ
*a
)
746 stcond(TCG_COND_NE
, a
->rd
, a
->imm
);
751 /* sccnd.<bwl> dsp:[rd] */
752 static bool trans_SCCnd(DisasContext
*ctx
, arg_SCCnd
*a
)
756 dc
.temp
= tcg_temp_new();
757 psw_cond(&dc
, a
->cd
);
759 val
= tcg_temp_new();
760 mem
= tcg_temp_new();
761 tcg_gen_setcondi_i32(dc
.cond
, val
, dc
.value
, 0);
762 addr
= rx_index_addr(ctx
, mem
, a
->sz
, a
->ld
, a
->rd
);
763 rx_gen_st(a
->sz
, val
, addr
);
765 tcg_gen_setcondi_i32(dc
.cond
, cpu_regs
[a
->rd
], dc
.value
, 0);
771 static bool trans_RTSD_i(DisasContext
*ctx
, arg_RTSD_i
*a
)
773 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, a
->imm
<< 2);
775 ctx
->base
.is_jmp
= DISAS_JUMP
;
779 /* rtsd #imm, rd-rd2 */
780 static bool trans_RTSD_irr(DisasContext
*ctx
, arg_RTSD_irr
*a
)
785 if (a
->rd2
>= a
->rd
) {
786 adj
= a
->imm
- (a
->rd2
- a
->rd
+ 1);
788 adj
= a
->imm
- (15 - a
->rd
+ 1);
791 tcg_gen_addi_i32(cpu_sp
, cpu_sp
, adj
<< 2);
793 while (dst
<= a
->rd2
&& dst
< 16) {
794 pop(cpu_regs
[dst
++]);
797 ctx
->base
.is_jmp
= DISAS_JUMP
;
801 typedef void (*op2fn
)(TCGv ret
, TCGv arg1
);
802 typedef void (*op3fn
)(TCGv ret
, TCGv arg1
, TCGv arg2
);
804 static inline void rx_gen_op_rr(op2fn opr
, int dst
, int src
)
806 opr(cpu_regs
[dst
], cpu_regs
[src
]);
809 static inline void rx_gen_op_rrr(op3fn opr
, int dst
, int src
, int src2
)
811 opr(cpu_regs
[dst
], cpu_regs
[src
], cpu_regs
[src2
]);
814 static inline void rx_gen_op_irr(op3fn opr
, int dst
, int src
, uint32_t src2
)
816 TCGv imm
= tcg_constant_i32(src2
);
817 opr(cpu_regs
[dst
], cpu_regs
[src
], imm
);
820 static inline void rx_gen_op_mr(op3fn opr
, DisasContext
*ctx
,
821 int dst
, int src
, int ld
, int mi
)
824 mem
= tcg_temp_new();
825 val
= rx_load_source(ctx
, mem
, ld
, mi
, src
);
826 opr(cpu_regs
[dst
], cpu_regs
[dst
], val
);
829 static void rx_and(TCGv ret
, TCGv arg1
, TCGv arg2
)
831 tcg_gen_and_i32(cpu_psw_s
, arg1
, arg2
);
832 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
833 tcg_gen_mov_i32(ret
, cpu_psw_s
);
836 /* and #uimm:4, rd */
838 static bool trans_AND_ir(DisasContext
*ctx
, arg_AND_ir
*a
)
840 rx_gen_op_irr(rx_and
, a
->rd
, a
->rd
, a
->imm
);
844 /* and dsp[rs], rd */
846 static bool trans_AND_mr(DisasContext
*ctx
, arg_AND_mr
*a
)
848 rx_gen_op_mr(rx_and
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
853 static bool trans_AND_rrr(DisasContext
*ctx
, arg_AND_rrr
*a
)
855 rx_gen_op_rrr(rx_and
, a
->rd
, a
->rs
, a
->rs2
);
859 static void rx_or(TCGv ret
, TCGv arg1
, TCGv arg2
)
861 tcg_gen_or_i32(cpu_psw_s
, arg1
, arg2
);
862 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
863 tcg_gen_mov_i32(ret
, cpu_psw_s
);
868 static bool trans_OR_ir(DisasContext
*ctx
, arg_OR_ir
*a
)
870 rx_gen_op_irr(rx_or
, a
->rd
, a
->rd
, a
->imm
);
876 static bool trans_OR_mr(DisasContext
*ctx
, arg_OR_mr
*a
)
878 rx_gen_op_mr(rx_or
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
883 static bool trans_OR_rrr(DisasContext
*ctx
, arg_OR_rrr
*a
)
885 rx_gen_op_rrr(rx_or
, a
->rd
, a
->rs
, a
->rs2
);
889 static void rx_xor(TCGv ret
, TCGv arg1
, TCGv arg2
)
891 tcg_gen_xor_i32(cpu_psw_s
, arg1
, arg2
);
892 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
893 tcg_gen_mov_i32(ret
, cpu_psw_s
);
897 static bool trans_XOR_ir(DisasContext
*ctx
, arg_XOR_ir
*a
)
899 rx_gen_op_irr(rx_xor
, a
->rd
, a
->rd
, a
->imm
);
903 /* xor dsp[rs], rd */
905 static bool trans_XOR_mr(DisasContext
*ctx
, arg_XOR_mr
*a
)
907 rx_gen_op_mr(rx_xor
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
911 static void rx_tst(TCGv ret
, TCGv arg1
, TCGv arg2
)
913 tcg_gen_and_i32(cpu_psw_s
, arg1
, arg2
);
914 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
918 static bool trans_TST_ir(DisasContext
*ctx
, arg_TST_ir
*a
)
920 rx_gen_op_irr(rx_tst
, a
->rd
, a
->rd
, a
->imm
);
924 /* tst dsp[rs], rd */
926 static bool trans_TST_mr(DisasContext
*ctx
, arg_TST_mr
*a
)
928 rx_gen_op_mr(rx_tst
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
932 static void rx_not(TCGv ret
, TCGv arg1
)
934 tcg_gen_not_i32(ret
, arg1
);
935 tcg_gen_mov_i32(cpu_psw_z
, ret
);
936 tcg_gen_mov_i32(cpu_psw_s
, ret
);
941 static bool trans_NOT_rr(DisasContext
*ctx
, arg_NOT_rr
*a
)
943 rx_gen_op_rr(rx_not
, a
->rd
, a
->rs
);
947 static void rx_neg(TCGv ret
, TCGv arg1
)
949 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, arg1
, 0x80000000);
950 tcg_gen_neg_i32(ret
, arg1
);
951 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_c
, ret
, 0);
952 tcg_gen_mov_i32(cpu_psw_z
, ret
);
953 tcg_gen_mov_i32(cpu_psw_s
, ret
);
959 static bool trans_NEG_rr(DisasContext
*ctx
, arg_NEG_rr
*a
)
961 rx_gen_op_rr(rx_neg
, a
->rd
, a
->rs
);
965 /* ret = arg1 + arg2 + psw_c */
966 static void rx_adc(TCGv ret
, TCGv arg1
, TCGv arg2
)
968 TCGv z
= tcg_constant_i32(0);
969 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, arg1
, z
, cpu_psw_c
, z
);
970 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, cpu_psw_s
, cpu_psw_c
, arg2
, z
);
971 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
972 tcg_gen_xor_i32(cpu_psw_z
, arg1
, arg2
);
973 tcg_gen_andc_i32(cpu_psw_o
, cpu_psw_o
, cpu_psw_z
);
974 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
975 tcg_gen_mov_i32(ret
, cpu_psw_s
);
979 static bool trans_ADC_ir(DisasContext
*ctx
, arg_ADC_ir
*a
)
981 rx_gen_op_irr(rx_adc
, a
->rd
, a
->rd
, a
->imm
);
986 static bool trans_ADC_rr(DisasContext
*ctx
, arg_ADC_rr
*a
)
988 rx_gen_op_rrr(rx_adc
, a
->rd
, a
->rd
, a
->rs
);
992 /* adc dsp[rs], rd */
993 static bool trans_ADC_mr(DisasContext
*ctx
, arg_ADC_mr
*a
)
999 rx_gen_op_mr(rx_adc
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1003 /* ret = arg1 + arg2 */
1004 static void rx_add(TCGv ret
, TCGv arg1
, TCGv arg2
)
1006 TCGv z
= tcg_constant_i32(0);
1007 tcg_gen_add2_i32(cpu_psw_s
, cpu_psw_c
, arg1
, z
, arg2
, z
);
1008 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
1009 tcg_gen_xor_i32(cpu_psw_z
, arg1
, arg2
);
1010 tcg_gen_andc_i32(cpu_psw_o
, cpu_psw_o
, cpu_psw_z
);
1011 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
1012 tcg_gen_mov_i32(ret
, cpu_psw_s
);
1015 /* add #uimm4, rd */
1016 /* add #imm, rs, rd */
1017 static bool trans_ADD_irr(DisasContext
*ctx
, arg_ADD_irr
*a
)
1019 rx_gen_op_irr(rx_add
, a
->rd
, a
->rs2
, a
->imm
);
1024 /* add dsp[rs], rd */
1025 static bool trans_ADD_mr(DisasContext
*ctx
, arg_ADD_mr
*a
)
1027 rx_gen_op_mr(rx_add
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1031 /* add rs, rs2, rd */
1032 static bool trans_ADD_rrr(DisasContext
*ctx
, arg_ADD_rrr
*a
)
1034 rx_gen_op_rrr(rx_add
, a
->rd
, a
->rs
, a
->rs2
);
1038 /* ret = arg1 - arg2 */
1039 static void rx_sub(TCGv ret
, TCGv arg1
, TCGv arg2
)
1041 tcg_gen_sub_i32(cpu_psw_s
, arg1
, arg2
);
1042 tcg_gen_setcond_i32(TCG_COND_GEU
, cpu_psw_c
, arg1
, arg2
);
1043 tcg_gen_xor_i32(cpu_psw_o
, cpu_psw_s
, arg1
);
1044 tcg_gen_xor_i32(cpu_psw_z
, arg1
, arg2
);
1045 tcg_gen_and_i32(cpu_psw_o
, cpu_psw_o
, cpu_psw_z
);
1046 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_s
);
1047 /* CMP not required return */
1049 tcg_gen_mov_i32(ret
, cpu_psw_s
);
1053 static void rx_cmp(TCGv dummy
, TCGv arg1
, TCGv arg2
)
1055 rx_sub(NULL
, arg1
, arg2
);
1058 /* ret = arg1 - arg2 - !psw_c */
1059 /* -> ret = arg1 + ~arg2 + psw_c */
1060 static void rx_sbb(TCGv ret
, TCGv arg1
, TCGv arg2
)
1063 temp
= tcg_temp_new();
1064 tcg_gen_not_i32(temp
, arg2
);
1065 rx_adc(ret
, arg1
, temp
);
1068 /* cmp #imm4, rs2 */
1069 /* cmp #imm8, rs2 */
1071 static bool trans_CMP_ir(DisasContext
*ctx
, arg_CMP_ir
*a
)
1073 rx_gen_op_irr(rx_cmp
, 0, a
->rs2
, a
->imm
);
1078 /* cmp dsp[rs], rs2 */
1079 static bool trans_CMP_mr(DisasContext
*ctx
, arg_CMP_mr
*a
)
1081 rx_gen_op_mr(rx_cmp
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1086 static bool trans_SUB_ir(DisasContext
*ctx
, arg_SUB_ir
*a
)
1088 rx_gen_op_irr(rx_sub
, a
->rd
, a
->rd
, a
->imm
);
1093 /* sub dsp[rs], rd */
1094 static bool trans_SUB_mr(DisasContext
*ctx
, arg_SUB_mr
*a
)
1096 rx_gen_op_mr(rx_sub
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1100 /* sub rs2, rs, rd */
1101 static bool trans_SUB_rrr(DisasContext
*ctx
, arg_SUB_rrr
*a
)
1103 rx_gen_op_rrr(rx_sub
, a
->rd
, a
->rs2
, a
->rs
);
1108 static bool trans_SBB_rr(DisasContext
*ctx
, arg_SBB_rr
*a
)
1110 rx_gen_op_rrr(rx_sbb
, a
->rd
, a
->rd
, a
->rs
);
1114 /* sbb dsp[rs], rd */
1115 static bool trans_SBB_mr(DisasContext
*ctx
, arg_SBB_mr
*a
)
1121 rx_gen_op_mr(rx_sbb
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1127 static bool trans_ABS_rr(DisasContext
*ctx
, arg_ABS_rr
*a
)
1129 rx_gen_op_rr(tcg_gen_abs_i32
, a
->rd
, a
->rs
);
1134 static bool trans_MAX_ir(DisasContext
*ctx
, arg_MAX_ir
*a
)
1136 rx_gen_op_irr(tcg_gen_smax_i32
, a
->rd
, a
->rd
, a
->imm
);
1141 /* max dsp[rs], rd */
1142 static bool trans_MAX_mr(DisasContext
*ctx
, arg_MAX_mr
*a
)
1144 rx_gen_op_mr(tcg_gen_smax_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1149 static bool trans_MIN_ir(DisasContext
*ctx
, arg_MIN_ir
*a
)
1151 rx_gen_op_irr(tcg_gen_smin_i32
, a
->rd
, a
->rd
, a
->imm
);
1156 /* min dsp[rs], rd */
1157 static bool trans_MIN_mr(DisasContext
*ctx
, arg_MIN_mr
*a
)
1159 rx_gen_op_mr(tcg_gen_smin_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1163 /* mul #uimm4, rd */
1165 static bool trans_MUL_ir(DisasContext
*ctx
, arg_MUL_ir
*a
)
1167 rx_gen_op_irr(tcg_gen_mul_i32
, a
->rd
, a
->rd
, a
->imm
);
1172 /* mul dsp[rs], rd */
1173 static bool trans_MUL_mr(DisasContext
*ctx
, arg_MUL_mr
*a
)
1175 rx_gen_op_mr(tcg_gen_mul_i32
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1179 /* mul rs, rs2, rd */
1180 static bool trans_MUL_rrr(DisasContext
*ctx
, arg_MUL_rrr
*a
)
1182 rx_gen_op_rrr(tcg_gen_mul_i32
, a
->rd
, a
->rs
, a
->rs2
);
1187 static bool trans_EMUL_ir(DisasContext
*ctx
, arg_EMUL_ir
*a
)
1189 TCGv imm
= tcg_constant_i32(a
->imm
);
1191 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1193 tcg_gen_muls2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1194 cpu_regs
[a
->rd
], imm
);
1199 /* emul dsp[rs], rd */
1200 static bool trans_EMUL_mr(DisasContext
*ctx
, arg_EMUL_mr
*a
)
1204 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1206 mem
= tcg_temp_new();
1207 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1208 tcg_gen_muls2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1209 cpu_regs
[a
->rd
], val
);
1213 /* emulu #imm, rd */
1214 static bool trans_EMULU_ir(DisasContext
*ctx
, arg_EMULU_ir
*a
)
1216 TCGv imm
= tcg_constant_i32(a
->imm
);
1218 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1220 tcg_gen_mulu2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1221 cpu_regs
[a
->rd
], imm
);
1226 /* emulu dsp[rs], rd */
1227 static bool trans_EMULU_mr(DisasContext
*ctx
, arg_EMULU_mr
*a
)
1231 qemu_log_mask(LOG_GUEST_ERROR
, "rd too large %d", a
->rd
);
1233 mem
= tcg_temp_new();
1234 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1235 tcg_gen_mulu2_i32(cpu_regs
[a
->rd
], cpu_regs
[(a
->rd
+ 1) & 15],
1236 cpu_regs
[a
->rd
], val
);
1240 static void rx_div(TCGv ret
, TCGv arg1
, TCGv arg2
)
1242 gen_helper_div(ret
, tcg_env
, arg1
, arg2
);
1245 static void rx_divu(TCGv ret
, TCGv arg1
, TCGv arg2
)
1247 gen_helper_divu(ret
, tcg_env
, arg1
, arg2
);
1251 static bool trans_DIV_ir(DisasContext
*ctx
, arg_DIV_ir
*a
)
1253 rx_gen_op_irr(rx_div
, a
->rd
, a
->rd
, a
->imm
);
1258 /* div dsp[rs], rd */
1259 static bool trans_DIV_mr(DisasContext
*ctx
, arg_DIV_mr
*a
)
1261 rx_gen_op_mr(rx_div
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1266 static bool trans_DIVU_ir(DisasContext
*ctx
, arg_DIVU_ir
*a
)
1268 rx_gen_op_irr(rx_divu
, a
->rd
, a
->rd
, a
->imm
);
1273 /* divu dsp[rs], rd */
1274 static bool trans_DIVU_mr(DisasContext
*ctx
, arg_DIVU_mr
*a
)
1276 rx_gen_op_mr(rx_divu
, ctx
, a
->rd
, a
->rs
, a
->ld
, a
->mi
);
1281 /* shll #imm:5, rd */
1282 /* shll #imm:5, rs2, rd */
1283 static bool trans_SHLL_irr(DisasContext
*ctx
, arg_SHLL_irr
*a
)
1286 tmp
= tcg_temp_new();
1288 tcg_gen_sari_i32(cpu_psw_c
, cpu_regs
[a
->rs2
], 32 - a
->imm
);
1289 tcg_gen_shli_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs2
], a
->imm
);
1290 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, cpu_psw_c
, 0);
1291 tcg_gen_setcondi_i32(TCG_COND_EQ
, tmp
, cpu_psw_c
, 0xffffffff);
1292 tcg_gen_or_i32(cpu_psw_o
, cpu_psw_o
, tmp
);
1293 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, cpu_psw_c
, 0);
1295 tcg_gen_mov_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs2
]);
1296 tcg_gen_movi_i32(cpu_psw_c
, 0);
1297 tcg_gen_movi_i32(cpu_psw_o
, 0);
1299 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1300 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1305 static bool trans_SHLL_rr(DisasContext
*ctx
, arg_SHLL_rr
*a
)
1307 TCGLabel
*noshift
, *done
;
1310 noshift
= gen_new_label();
1311 done
= gen_new_label();
1312 /* if (cpu_regs[a->rs]) { */
1313 tcg_gen_brcondi_i32(TCG_COND_EQ
, cpu_regs
[a
->rs
], 0, noshift
);
1314 count
= tcg_temp_new();
1315 tmp
= tcg_temp_new();
1316 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rs
], 31);
1317 tcg_gen_sub_i32(count
, tcg_constant_i32(32), tmp
);
1318 tcg_gen_sar_i32(cpu_psw_c
, cpu_regs
[a
->rd
], count
);
1319 tcg_gen_shl_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], tmp
);
1320 tcg_gen_setcondi_i32(TCG_COND_EQ
, cpu_psw_o
, cpu_psw_c
, 0);
1321 tcg_gen_setcondi_i32(TCG_COND_EQ
, tmp
, cpu_psw_c
, 0xffffffff);
1322 tcg_gen_or_i32(cpu_psw_o
, cpu_psw_o
, tmp
);
1323 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, cpu_psw_c
, 0);
1326 gen_set_label(noshift
);
1327 tcg_gen_movi_i32(cpu_psw_c
, 0);
1328 tcg_gen_movi_i32(cpu_psw_o
, 0);
1330 gen_set_label(done
);
1331 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1332 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1336 static inline void shiftr_imm(uint32_t rd
, uint32_t rs
, uint32_t imm
,
1339 static void (* const gen_sXri
[])(TCGv ret
, TCGv arg1
, int arg2
) = {
1340 tcg_gen_shri_i32
, tcg_gen_sari_i32
,
1342 tcg_debug_assert(alith
< 2);
1344 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rs
], imm
- 1);
1345 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1346 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], 1);
1348 tcg_gen_mov_i32(cpu_regs
[rd
], cpu_regs
[rs
]);
1349 tcg_gen_movi_i32(cpu_psw_c
, 0);
1351 tcg_gen_movi_i32(cpu_psw_o
, 0);
1352 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1353 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1356 static inline void shiftr_reg(uint32_t rd
, uint32_t rs
, unsigned int alith
)
1358 TCGLabel
*noshift
, *done
;
1360 static void (* const gen_sXri
[])(TCGv ret
, TCGv arg1
, int arg2
) = {
1361 tcg_gen_shri_i32
, tcg_gen_sari_i32
,
1363 static void (* const gen_sXr
[])(TCGv ret
, TCGv arg1
, TCGv arg2
) = {
1364 tcg_gen_shr_i32
, tcg_gen_sar_i32
,
1366 tcg_debug_assert(alith
< 2);
1367 noshift
= gen_new_label();
1368 done
= gen_new_label();
1369 count
= tcg_temp_new();
1370 /* if (cpu_regs[rs]) { */
1371 tcg_gen_brcondi_i32(TCG_COND_EQ
, cpu_regs
[rs
], 0, noshift
);
1372 tcg_gen_andi_i32(count
, cpu_regs
[rs
], 31);
1373 tcg_gen_subi_i32(count
, count
, 1);
1374 gen_sXr
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], count
);
1375 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1376 gen_sXri
[alith
](cpu_regs
[rd
], cpu_regs
[rd
], 1);
1379 gen_set_label(noshift
);
1380 tcg_gen_movi_i32(cpu_psw_c
, 0);
1382 gen_set_label(done
);
1383 tcg_gen_movi_i32(cpu_psw_o
, 0);
1384 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1385 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1388 /* shar #imm:5, rd */
1389 /* shar #imm:5, rs2, rd */
1390 static bool trans_SHAR_irr(DisasContext
*ctx
, arg_SHAR_irr
*a
)
1392 shiftr_imm(a
->rd
, a
->rs2
, a
->imm
, 1);
1397 static bool trans_SHAR_rr(DisasContext
*ctx
, arg_SHAR_rr
*a
)
1399 shiftr_reg(a
->rd
, a
->rs
, 1);
1403 /* shlr #imm:5, rd */
1404 /* shlr #imm:5, rs2, rd */
1405 static bool trans_SHLR_irr(DisasContext
*ctx
, arg_SHLR_irr
*a
)
1407 shiftr_imm(a
->rd
, a
->rs2
, a
->imm
, 0);
1412 static bool trans_SHLR_rr(DisasContext
*ctx
, arg_SHLR_rr
*a
)
1414 shiftr_reg(a
->rd
, a
->rs
, 0);
1419 static bool trans_ROLC(DisasContext
*ctx
, arg_ROLC
*a
)
1422 tmp
= tcg_temp_new();
1423 tcg_gen_shri_i32(tmp
, cpu_regs
[a
->rd
], 31);
1424 tcg_gen_shli_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1);
1425 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], cpu_psw_c
);
1426 tcg_gen_mov_i32(cpu_psw_c
, tmp
);
1427 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1428 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1433 static bool trans_RORC(DisasContext
*ctx
, arg_RORC
*a
)
1436 tmp
= tcg_temp_new();
1437 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rd
], 0x00000001);
1438 tcg_gen_shri_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 1);
1439 tcg_gen_shli_i32(cpu_psw_c
, cpu_psw_c
, 31);
1440 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], cpu_psw_c
);
1441 tcg_gen_mov_i32(cpu_psw_c
, tmp
);
1442 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[a
->rd
]);
1443 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[a
->rd
]);
1447 enum {ROTR
= 0, ROTL
= 1};
1448 enum {ROT_IMM
= 0, ROT_REG
= 1};
1449 static inline void rx_rot(int ir
, int dir
, int rd
, int src
)
1453 if (ir
== ROT_IMM
) {
1454 tcg_gen_rotli_i32(cpu_regs
[rd
], cpu_regs
[rd
], src
);
1456 tcg_gen_rotl_i32(cpu_regs
[rd
], cpu_regs
[rd
], cpu_regs
[src
]);
1458 tcg_gen_andi_i32(cpu_psw_c
, cpu_regs
[rd
], 0x00000001);
1461 if (ir
== ROT_IMM
) {
1462 tcg_gen_rotri_i32(cpu_regs
[rd
], cpu_regs
[rd
], src
);
1464 tcg_gen_rotr_i32(cpu_regs
[rd
], cpu_regs
[rd
], cpu_regs
[src
]);
1466 tcg_gen_shri_i32(cpu_psw_c
, cpu_regs
[rd
], 31);
1469 tcg_gen_mov_i32(cpu_psw_z
, cpu_regs
[rd
]);
1470 tcg_gen_mov_i32(cpu_psw_s
, cpu_regs
[rd
]);
1474 static bool trans_ROTL_ir(DisasContext
*ctx
, arg_ROTL_ir
*a
)
1476 rx_rot(ROT_IMM
, ROTL
, a
->rd
, a
->imm
);
1481 static bool trans_ROTL_rr(DisasContext
*ctx
, arg_ROTL_rr
*a
)
1483 rx_rot(ROT_REG
, ROTL
, a
->rd
, a
->rs
);
1488 static bool trans_ROTR_ir(DisasContext
*ctx
, arg_ROTR_ir
*a
)
1490 rx_rot(ROT_IMM
, ROTR
, a
->rd
, a
->imm
);
1495 static bool trans_ROTR_rr(DisasContext
*ctx
, arg_ROTR_rr
*a
)
1497 rx_rot(ROT_REG
, ROTR
, a
->rd
, a
->rs
);
1502 static bool trans_REVL(DisasContext
*ctx
, arg_REVL
*a
)
1504 tcg_gen_bswap32_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
]);
1509 static bool trans_REVW(DisasContext
*ctx
, arg_REVW
*a
)
1512 tmp
= tcg_temp_new();
1513 tcg_gen_andi_i32(tmp
, cpu_regs
[a
->rs
], 0x00ff00ff);
1514 tcg_gen_shli_i32(tmp
, tmp
, 8);
1515 tcg_gen_shri_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rs
], 8);
1516 tcg_gen_andi_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], 0x00ff00ff);
1517 tcg_gen_or_i32(cpu_regs
[a
->rd
], cpu_regs
[a
->rd
], tmp
);
1521 /* conditional branch helper */
1522 static void rx_bcnd_main(DisasContext
*ctx
, int cd
, int dst
)
1529 dc
.temp
= tcg_temp_new();
1531 t
= gen_new_label();
1532 done
= gen_new_label();
1533 tcg_gen_brcondi_i32(dc
.cond
, dc
.value
, 0, t
);
1534 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
);
1537 gen_goto_tb(ctx
, 1, ctx
->pc
+ dst
);
1538 gen_set_label(done
);
1541 /* always true case */
1542 gen_goto_tb(ctx
, 0, ctx
->pc
+ dst
);
1545 /* always false case */
1551 /* beq dsp:3 / bne dsp:3 */
1552 /* beq dsp:8 / bne dsp:8 */
1553 /* bc dsp:8 / bnc dsp:8 */
1554 /* bgtu dsp:8 / bleu dsp:8 */
1555 /* bpz dsp:8 / bn dsp:8 */
1556 /* bge dsp:8 / blt dsp:8 */
1557 /* bgt dsp:8 / ble dsp:8 */
1558 /* bo dsp:8 / bno dsp:8 */
1559 /* beq dsp:16 / bne dsp:16 */
1560 static bool trans_BCnd(DisasContext
*ctx
, arg_BCnd
*a
)
1562 rx_bcnd_main(ctx
, a
->cd
, a
->dsp
);
1570 static bool trans_BRA(DisasContext
*ctx
, arg_BRA
*a
)
1572 rx_bcnd_main(ctx
, 14, a
->dsp
);
1577 static bool trans_BRA_l(DisasContext
*ctx
, arg_BRA_l
*a
)
1579 tcg_gen_addi_i32(cpu_pc
, cpu_regs
[a
->rd
], ctx
->pc
);
1580 ctx
->base
.is_jmp
= DISAS_JUMP
;
1584 static inline void rx_save_pc(DisasContext
*ctx
)
1586 TCGv pc
= tcg_constant_i32(ctx
->base
.pc_next
);
1591 static bool trans_JMP(DisasContext
*ctx
, arg_JMP
*a
)
1593 tcg_gen_mov_i32(cpu_pc
, cpu_regs
[a
->rs
]);
1594 ctx
->base
.is_jmp
= DISAS_JUMP
;
1599 static bool trans_JSR(DisasContext
*ctx
, arg_JSR
*a
)
1602 tcg_gen_mov_i32(cpu_pc
, cpu_regs
[a
->rs
]);
1603 ctx
->base
.is_jmp
= DISAS_JUMP
;
1609 static bool trans_BSR(DisasContext
*ctx
, arg_BSR
*a
)
1612 rx_bcnd_main(ctx
, 14, a
->dsp
);
1617 static bool trans_BSR_l(DisasContext
*ctx
, arg_BSR_l
*a
)
1620 tcg_gen_addi_i32(cpu_pc
, cpu_regs
[a
->rd
], ctx
->pc
);
1621 ctx
->base
.is_jmp
= DISAS_JUMP
;
1626 static bool trans_RTS(DisasContext
*ctx
, arg_RTS
*a
)
1629 ctx
->base
.is_jmp
= DISAS_JUMP
;
1634 static bool trans_NOP(DisasContext
*ctx
, arg_NOP
*a
)
1640 static bool trans_SCMPU(DisasContext
*ctx
, arg_SCMPU
*a
)
1642 gen_helper_scmpu(tcg_env
);
1647 static bool trans_SMOVU(DisasContext
*ctx
, arg_SMOVU
*a
)
1649 gen_helper_smovu(tcg_env
);
1654 static bool trans_SMOVF(DisasContext
*ctx
, arg_SMOVF
*a
)
1656 gen_helper_smovf(tcg_env
);
1661 static bool trans_SMOVB(DisasContext
*ctx
, arg_SMOVB
*a
)
1663 gen_helper_smovb(tcg_env
);
1667 #define STRING(op) \
1669 TCGv size = tcg_constant_i32(a->sz); \
1670 gen_helper_##op(tcg_env, size); \
1674 static bool trans_SUNTIL(DisasContext
*ctx
, arg_SUNTIL
*a
)
1681 static bool trans_SWHILE(DisasContext
*ctx
, arg_SWHILE
*a
)
1687 static bool trans_SSTR(DisasContext
*ctx
, arg_SSTR
*a
)
1694 static bool trans_RMPA(DisasContext
*ctx
, arg_RMPA
*a
)
1700 static void rx_mul64hi(TCGv_i64 ret
, int rs
, int rs2
)
1702 TCGv_i64 tmp0
, tmp1
;
1703 tmp0
= tcg_temp_new_i64();
1704 tmp1
= tcg_temp_new_i64();
1705 tcg_gen_ext_i32_i64(tmp0
, cpu_regs
[rs
]);
1706 tcg_gen_sari_i64(tmp0
, tmp0
, 16);
1707 tcg_gen_ext_i32_i64(tmp1
, cpu_regs
[rs2
]);
1708 tcg_gen_sari_i64(tmp1
, tmp1
, 16);
1709 tcg_gen_mul_i64(ret
, tmp0
, tmp1
);
1710 tcg_gen_shli_i64(ret
, ret
, 16);
1713 static void rx_mul64lo(TCGv_i64 ret
, int rs
, int rs2
)
1715 TCGv_i64 tmp0
, tmp1
;
1716 tmp0
= tcg_temp_new_i64();
1717 tmp1
= tcg_temp_new_i64();
1718 tcg_gen_ext_i32_i64(tmp0
, cpu_regs
[rs
]);
1719 tcg_gen_ext16s_i64(tmp0
, tmp0
);
1720 tcg_gen_ext_i32_i64(tmp1
, cpu_regs
[rs2
]);
1721 tcg_gen_ext16s_i64(tmp1
, tmp1
);
1722 tcg_gen_mul_i64(ret
, tmp0
, tmp1
);
1723 tcg_gen_shli_i64(ret
, ret
, 16);
1727 static bool trans_MULHI(DisasContext
*ctx
, arg_MULHI
*a
)
1729 rx_mul64hi(cpu_acc
, a
->rs
, a
->rs2
);
1734 static bool trans_MULLO(DisasContext
*ctx
, arg_MULLO
*a
)
1736 rx_mul64lo(cpu_acc
, a
->rs
, a
->rs2
);
1741 static bool trans_MACHI(DisasContext
*ctx
, arg_MACHI
*a
)
1744 tmp
= tcg_temp_new_i64();
1745 rx_mul64hi(tmp
, a
->rs
, a
->rs2
);
1746 tcg_gen_add_i64(cpu_acc
, cpu_acc
, tmp
);
1751 static bool trans_MACLO(DisasContext
*ctx
, arg_MACLO
*a
)
1754 tmp
= tcg_temp_new_i64();
1755 rx_mul64lo(tmp
, a
->rs
, a
->rs2
);
1756 tcg_gen_add_i64(cpu_acc
, cpu_acc
, tmp
);
1761 static bool trans_MVFACHI(DisasContext
*ctx
, arg_MVFACHI
*a
)
1763 tcg_gen_extrh_i64_i32(cpu_regs
[a
->rd
], cpu_acc
);
1768 static bool trans_MVFACMI(DisasContext
*ctx
, arg_MVFACMI
*a
)
1771 rd64
= tcg_temp_new_i64();
1772 tcg_gen_extract_i64(rd64
, cpu_acc
, 16, 32);
1773 tcg_gen_extrl_i64_i32(cpu_regs
[a
->rd
], rd64
);
1778 static bool trans_MVTACHI(DisasContext
*ctx
, arg_MVTACHI
*a
)
1781 rs64
= tcg_temp_new_i64();
1782 tcg_gen_extu_i32_i64(rs64
, cpu_regs
[a
->rs
]);
1783 tcg_gen_deposit_i64(cpu_acc
, cpu_acc
, rs64
, 32, 32);
1788 static bool trans_MVTACLO(DisasContext
*ctx
, arg_MVTACLO
*a
)
1791 rs64
= tcg_temp_new_i64();
1792 tcg_gen_extu_i32_i64(rs64
, cpu_regs
[a
->rs
]);
1793 tcg_gen_deposit_i64(cpu_acc
, cpu_acc
, rs64
, 0, 32);
1798 static bool trans_RACW(DisasContext
*ctx
, arg_RACW
*a
)
1800 TCGv imm
= tcg_constant_i32(a
->imm
+ 1);
1801 gen_helper_racw(tcg_env
, imm
);
1806 static bool trans_SAT(DisasContext
*ctx
, arg_SAT
*a
)
1809 tmp
= tcg_temp_new();
1810 z
= tcg_constant_i32(0);
1811 /* S == 1 -> 0xffffffff / S == 0 -> 0x00000000 */
1812 tcg_gen_sari_i32(tmp
, cpu_psw_s
, 31);
1813 /* S == 1 -> 0x7fffffff / S == 0 -> 0x80000000 */
1814 tcg_gen_xori_i32(tmp
, tmp
, 0x80000000);
1815 tcg_gen_movcond_i32(TCG_COND_LT
, cpu_regs
[a
->rd
],
1816 cpu_psw_o
, z
, tmp
, cpu_regs
[a
->rd
]);
1821 static bool trans_SATR(DisasContext
*ctx
, arg_SATR
*a
)
1823 gen_helper_satr(tcg_env
);
1827 #define cat3(a, b, c) a##b##c
1828 #define FOP(name, op) \
1829 static bool cat3(trans_, name, _ir)(DisasContext *ctx, \
1830 cat3(arg_, name, _ir) * a) \
1832 TCGv imm = tcg_constant_i32(li(ctx, 0)); \
1833 gen_helper_##op(cpu_regs[a->rd], tcg_env, \
1834 cpu_regs[a->rd], imm); \
1837 static bool cat3(trans_, name, _mr)(DisasContext *ctx, \
1838 cat3(arg_, name, _mr) * a) \
1841 mem = tcg_temp_new(); \
1842 val = rx_load_source(ctx, mem, a->ld, MO_32, a->rs); \
1843 gen_helper_##op(cpu_regs[a->rd], tcg_env, \
1844 cpu_regs[a->rd], val); \
1848 #define FCONVOP(name, op) \
1849 static bool trans_##name(DisasContext *ctx, arg_##name * a) \
1852 mem = tcg_temp_new(); \
1853 val = rx_load_source(ctx, mem, a->ld, MO_32, a->rs); \
1854 gen_helper_##op(cpu_regs[a->rd], tcg_env, val); \
1864 static bool trans_FCMP_ir(DisasContext
*ctx
, arg_FCMP_ir
* a
)
1866 TCGv imm
= tcg_constant_i32(li(ctx
, 0));
1867 gen_helper_fcmp(tcg_env
, cpu_regs
[a
->rd
], imm
);
1871 /* fcmp dsp[rs], rd */
1873 static bool trans_FCMP_mr(DisasContext
*ctx
, arg_FCMP_mr
*a
)
1876 mem
= tcg_temp_new();
1877 val
= rx_load_source(ctx
, mem
, a
->ld
, MO_32
, a
->rs
);
1878 gen_helper_fcmp(tcg_env
, cpu_regs
[a
->rd
], val
);
1883 FCONVOP(ROUND
, round
)
1886 /* itof dsp[rs], rd */
1887 static bool trans_ITOF(DisasContext
*ctx
, arg_ITOF
* a
)
1890 mem
= tcg_temp_new();
1891 val
= rx_load_source(ctx
, mem
, a
->ld
, a
->mi
, a
->rs
);
1892 gen_helper_itof(cpu_regs
[a
->rd
], tcg_env
, val
);
1896 static void rx_bsetm(TCGv mem
, TCGv mask
)
1899 val
= tcg_temp_new();
1900 rx_gen_ld(MO_8
, val
, mem
);
1901 tcg_gen_or_i32(val
, val
, mask
);
1902 rx_gen_st(MO_8
, val
, mem
);
1905 static void rx_bclrm(TCGv mem
, TCGv mask
)
1908 val
= tcg_temp_new();
1909 rx_gen_ld(MO_8
, val
, mem
);
1910 tcg_gen_andc_i32(val
, val
, mask
);
1911 rx_gen_st(MO_8
, val
, mem
);
1914 static void rx_btstm(TCGv mem
, TCGv mask
)
1917 val
= tcg_temp_new();
1918 rx_gen_ld(MO_8
, val
, mem
);
1919 tcg_gen_and_i32(val
, val
, mask
);
1920 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, val
, 0);
1921 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_c
);
1924 static void rx_bnotm(TCGv mem
, TCGv mask
)
1927 val
= tcg_temp_new();
1928 rx_gen_ld(MO_8
, val
, mem
);
1929 tcg_gen_xor_i32(val
, val
, mask
);
1930 rx_gen_st(MO_8
, val
, mem
);
1933 static void rx_bsetr(TCGv reg
, TCGv mask
)
1935 tcg_gen_or_i32(reg
, reg
, mask
);
1938 static void rx_bclrr(TCGv reg
, TCGv mask
)
1940 tcg_gen_andc_i32(reg
, reg
, mask
);
1943 static inline void rx_btstr(TCGv reg
, TCGv mask
)
1946 t0
= tcg_temp_new();
1947 tcg_gen_and_i32(t0
, reg
, mask
);
1948 tcg_gen_setcondi_i32(TCG_COND_NE
, cpu_psw_c
, t0
, 0);
1949 tcg_gen_mov_i32(cpu_psw_z
, cpu_psw_c
);
1952 static inline void rx_bnotr(TCGv reg
, TCGv mask
)
1954 tcg_gen_xor_i32(reg
, reg
, mask
);
1957 #define BITOP(name, op) \
1958 static bool cat3(trans_, name, _im)(DisasContext *ctx, \
1959 cat3(arg_, name, _im) * a) \
1961 TCGv mask, mem, addr; \
1962 mem = tcg_temp_new(); \
1963 mask = tcg_constant_i32(1 << a->imm); \
1964 addr = rx_index_addr(ctx, mem, a->ld, MO_8, a->rs); \
1965 cat3(rx_, op, m)(addr, mask); \
1968 static bool cat3(trans_, name, _ir)(DisasContext *ctx, \
1969 cat3(arg_, name, _ir) * a) \
1972 mask = tcg_constant_i32(1 << a->imm); \
1973 cat3(rx_, op, r)(cpu_regs[a->rd], mask); \
1976 static bool cat3(trans_, name, _rr)(DisasContext *ctx, \
1977 cat3(arg_, name, _rr) * a) \
1980 mask = tcg_temp_new(); \
1981 b = tcg_temp_new(); \
1982 tcg_gen_andi_i32(b, cpu_regs[a->rs], 31); \
1983 tcg_gen_shl_i32(mask, tcg_constant_i32(1), b); \
1984 cat3(rx_, op, r)(cpu_regs[a->rd], mask); \
1987 static bool cat3(trans_, name, _rm)(DisasContext *ctx, \
1988 cat3(arg_, name, _rm) * a) \
1990 TCGv mask, mem, addr, b; \
1991 mask = tcg_temp_new(); \
1992 b = tcg_temp_new(); \
1993 tcg_gen_andi_i32(b, cpu_regs[a->rd], 7); \
1994 tcg_gen_shl_i32(mask, tcg_constant_i32(1), b); \
1995 mem = tcg_temp_new(); \
1996 addr = rx_index_addr(ctx, mem, a->ld, MO_8, a->rs); \
1997 cat3(rx_, op, m)(addr, mask); \
2006 static inline void bmcnd_op(TCGv val
, TCGCond cond
, int pos
)
2010 dc
.temp
= tcg_temp_new();
2011 bit
= tcg_temp_new();
2012 psw_cond(&dc
, cond
);
2013 tcg_gen_andi_i32(val
, val
, ~(1 << pos
));
2014 tcg_gen_setcondi_i32(dc
.cond
, bit
, dc
.value
, 0);
2015 tcg_gen_deposit_i32(val
, val
, bit
, pos
, 1);
2018 /* bmcnd #imm, dsp[rd] */
2019 static bool trans_BMCnd_im(DisasContext
*ctx
, arg_BMCnd_im
*a
)
2021 TCGv val
, mem
, addr
;
2022 val
= tcg_temp_new();
2023 mem
= tcg_temp_new();
2024 addr
= rx_index_addr(ctx
, mem
, a
->ld
, MO_8
, a
->rd
);
2025 rx_gen_ld(MO_8
, val
, addr
);
2026 bmcnd_op(val
, a
->cd
, a
->imm
);
2027 rx_gen_st(MO_8
, val
, addr
);
2031 /* bmcond #imm, rd */
2032 static bool trans_BMCnd_ir(DisasContext
*ctx
, arg_BMCnd_ir
*a
)
2034 bmcnd_op(cpu_regs
[a
->rd
], a
->cd
, a
->imm
);
2047 static inline void clrsetpsw(DisasContext
*ctx
, int cb
, int val
)
2052 tcg_gen_movi_i32(cpu_psw_c
, val
);
2055 tcg_gen_movi_i32(cpu_psw_z
, val
== 0);
2058 tcg_gen_movi_i32(cpu_psw_s
, val
? -1 : 0);
2061 tcg_gen_movi_i32(cpu_psw_o
, val
<< 31);
2064 qemu_log_mask(LOG_GUEST_ERROR
, "Invalid destination %d", cb
);
2067 } else if (is_privileged(ctx
, 0)) {
2070 tcg_gen_movi_i32(cpu_psw_i
, val
);
2071 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2074 if (FIELD_EX32(ctx
->tb_flags
, PSW
, U
) != val
) {
2075 ctx
->tb_flags
= FIELD_DP32(ctx
->tb_flags
, PSW
, U
, val
);
2076 tcg_gen_movi_i32(cpu_psw_u
, val
);
2077 tcg_gen_mov_i32(val
? cpu_isp
: cpu_usp
, cpu_sp
);
2078 tcg_gen_mov_i32(cpu_sp
, val
? cpu_usp
: cpu_isp
);
2082 qemu_log_mask(LOG_GUEST_ERROR
, "Invalid destination %d", cb
);
2089 static bool trans_CLRPSW(DisasContext
*ctx
, arg_CLRPSW
*a
)
2091 clrsetpsw(ctx
, a
->cb
, 0);
2096 static bool trans_SETPSW(DisasContext
*ctx
, arg_SETPSW
*a
)
2098 clrsetpsw(ctx
, a
->cb
, 1);
2103 static bool trans_MVTIPL(DisasContext
*ctx
, arg_MVTIPL
*a
)
2105 if (is_privileged(ctx
, 1)) {
2106 tcg_gen_movi_i32(cpu_psw_ipl
, a
->imm
);
2107 ctx
->base
.is_jmp
= DISAS_UPDATE
;
2113 static bool trans_MVTC_i(DisasContext
*ctx
, arg_MVTC_i
*a
)
2117 imm
= tcg_constant_i32(a
->imm
);
2118 move_to_cr(ctx
, imm
, a
->cr
);
2123 static bool trans_MVTC_r(DisasContext
*ctx
, arg_MVTC_r
*a
)
2125 move_to_cr(ctx
, cpu_regs
[a
->rs
], a
->cr
);
2130 static bool trans_MVFC(DisasContext
*ctx
, arg_MVFC
*a
)
2132 move_from_cr(ctx
, cpu_regs
[a
->rd
], a
->cr
, ctx
->pc
);
2137 static bool trans_RTFI(DisasContext
*ctx
, arg_RTFI
*a
)
2140 if (is_privileged(ctx
, 1)) {
2141 psw
= tcg_temp_new();
2142 tcg_gen_mov_i32(cpu_pc
, cpu_bpc
);
2143 tcg_gen_mov_i32(psw
, cpu_bpsw
);
2144 gen_helper_set_psw_rte(tcg_env
, psw
);
2145 ctx
->base
.is_jmp
= DISAS_EXIT
;
2151 static bool trans_RTE(DisasContext
*ctx
, arg_RTE
*a
)
2154 if (is_privileged(ctx
, 1)) {
2155 psw
= tcg_temp_new();
2158 gen_helper_set_psw_rte(tcg_env
, psw
);
2159 ctx
->base
.is_jmp
= DISAS_EXIT
;
2165 static bool trans_BRK(DisasContext
*ctx
, arg_BRK
*a
)
2167 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2168 gen_helper_rxbrk(tcg_env
);
2169 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2174 static bool trans_INT(DisasContext
*ctx
, arg_INT
*a
)
2178 tcg_debug_assert(a
->imm
< 0x100);
2179 vec
= tcg_constant_i32(a
->imm
);
2180 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2181 gen_helper_rxint(tcg_env
, vec
);
2182 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2187 static bool trans_WAIT(DisasContext
*ctx
, arg_WAIT
*a
)
2189 if (is_privileged(ctx
, 1)) {
2190 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2191 gen_helper_wait(tcg_env
);
2196 static void rx_tr_init_disas_context(DisasContextBase
*dcbase
, CPUState
*cs
)
2198 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2199 ctx
->env
= cpu_env(cs
);
2200 ctx
->tb_flags
= ctx
->base
.tb
->flags
;
2203 static void rx_tr_tb_start(DisasContextBase
*dcbase
, CPUState
*cs
)
2207 static void rx_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cs
)
2209 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2211 tcg_gen_insn_start(ctx
->base
.pc_next
);
2214 static void rx_tr_translate_insn(DisasContextBase
*dcbase
, CPUState
*cs
)
2216 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2219 ctx
->pc
= ctx
->base
.pc_next
;
2220 insn
= decode_load(ctx
);
2221 if (!decode(ctx
, insn
)) {
2222 gen_helper_raise_illegal_instruction(tcg_env
);
2226 static void rx_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cs
)
2228 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
2230 switch (ctx
->base
.is_jmp
) {
2232 case DISAS_TOO_MANY
:
2233 gen_goto_tb(ctx
, 0, dcbase
->pc_next
);
2236 tcg_gen_lookup_and_goto_ptr();
2239 tcg_gen_movi_i32(cpu_pc
, ctx
->base
.pc_next
);
2242 tcg_gen_exit_tb(NULL
, 0);
2244 case DISAS_NORETURN
:
2247 g_assert_not_reached();
2251 static void rx_tr_disas_log(const DisasContextBase
*dcbase
,
2252 CPUState
*cs
, FILE *logfile
)
2254 fprintf(logfile
, "IN: %s\n", lookup_symbol(dcbase
->pc_first
));
2255 target_disas(logfile
, cs
, dcbase
->pc_first
, dcbase
->tb
->size
);
2258 static const TranslatorOps rx_tr_ops
= {
2259 .init_disas_context
= rx_tr_init_disas_context
,
2260 .tb_start
= rx_tr_tb_start
,
2261 .insn_start
= rx_tr_insn_start
,
2262 .translate_insn
= rx_tr_translate_insn
,
2263 .tb_stop
= rx_tr_tb_stop
,
2264 .disas_log
= rx_tr_disas_log
,
2267 void gen_intermediate_code(CPUState
*cs
, TranslationBlock
*tb
, int *max_insns
,
2268 vaddr pc
, void *host_pc
)
2272 translator_loop(cs
, tb
, max_insns
, pc
, host_pc
, &rx_tr_ops
, &dc
.base
);
2275 #define ALLOC_REGISTER(sym, name) \
2276 cpu_##sym = tcg_global_mem_new_i32(tcg_env, \
2277 offsetof(CPURXState, sym), name)
2279 void rx_translate_init(void)
2281 static const char * const regnames
[NUM_REGS
] = {
2282 "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
2283 "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15"
2287 for (i
= 0; i
< NUM_REGS
; i
++) {
2288 cpu_regs
[i
] = tcg_global_mem_new_i32(tcg_env
,
2289 offsetof(CPURXState
, regs
[i
]),
2292 ALLOC_REGISTER(pc
, "PC");
2293 ALLOC_REGISTER(psw_o
, "PSW(O)");
2294 ALLOC_REGISTER(psw_s
, "PSW(S)");
2295 ALLOC_REGISTER(psw_z
, "PSW(Z)");
2296 ALLOC_REGISTER(psw_c
, "PSW(C)");
2297 ALLOC_REGISTER(psw_u
, "PSW(U)");
2298 ALLOC_REGISTER(psw_i
, "PSW(I)");
2299 ALLOC_REGISTER(psw_pm
, "PSW(PM)");
2300 ALLOC_REGISTER(psw_ipl
, "PSW(IPL)");
2301 ALLOC_REGISTER(usp
, "USP");
2302 ALLOC_REGISTER(fpsw
, "FPSW");
2303 ALLOC_REGISTER(bpsw
, "BPSW");
2304 ALLOC_REGISTER(bpc
, "BPC");
2305 ALLOC_REGISTER(isp
, "ISP");
2306 ALLOC_REGISTER(fintv
, "FINTV");
2307 ALLOC_REGISTER(intb
, "INTB");
2308 cpu_acc
= tcg_global_mem_new_i64(tcg_env
,
2309 offsetof(CPURXState
, acc
), "ACC");