2 * TriCore emulation for qemu: main translation routines.
4 * Copyright (c) 2013-2014 Bastian Koppelmann C-Lab/University Paderborn
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
23 #include "disas/disas.h"
24 #include "exec/exec-all.h"
25 #include "tcg/tcg-op.h"
26 #include "exec/cpu_ldst.h"
27 #include "qemu/qemu-print.h"
29 #include "exec/helper-proto.h"
30 #include "exec/helper-gen.h"
32 #include "tricore-opcodes.h"
33 #include "exec/translator.h"
44 static TCGv cpu_gpr_a
[16];
45 static TCGv cpu_gpr_d
[16];
47 static TCGv cpu_PSW_C
;
48 static TCGv cpu_PSW_V
;
49 static TCGv cpu_PSW_SV
;
50 static TCGv cpu_PSW_AV
;
51 static TCGv cpu_PSW_SAV
;
53 #include "exec/gen-icount.h"
55 static const char *regnames_a
[] = {
56 "a0" , "a1" , "a2" , "a3" , "a4" , "a5" ,
57 "a6" , "a7" , "a8" , "a9" , "sp" , "a11" ,
58 "a12" , "a13" , "a14" , "a15",
61 static const char *regnames_d
[] = {
62 "d0" , "d1" , "d2" , "d3" , "d4" , "d5" ,
63 "d6" , "d7" , "d8" , "d9" , "d10" , "d11" ,
64 "d12" , "d13" , "d14" , "d15",
67 typedef struct DisasContext
{
68 DisasContextBase base
;
69 target_ulong pc_succ_insn
;
71 /* Routine used to access memory */
73 uint32_t hflags
, saved_hflags
;
77 static int has_feature(DisasContext
*ctx
, int feature
)
79 return (ctx
->features
& (1ULL << feature
)) != 0;
89 void tricore_cpu_dump_state(CPUState
*cs
, FILE *f
, int flags
)
91 TriCoreCPU
*cpu
= TRICORE_CPU(cs
);
92 CPUTriCoreState
*env
= &cpu
->env
;
98 qemu_fprintf(f
, "PC: " TARGET_FMT_lx
, env
->PC
);
99 qemu_fprintf(f
, " PSW: " TARGET_FMT_lx
, psw
);
100 qemu_fprintf(f
, " ICR: " TARGET_FMT_lx
, env
->ICR
);
101 qemu_fprintf(f
, "\nPCXI: " TARGET_FMT_lx
, env
->PCXI
);
102 qemu_fprintf(f
, " FCX: " TARGET_FMT_lx
, env
->FCX
);
103 qemu_fprintf(f
, " LCX: " TARGET_FMT_lx
, env
->LCX
);
105 for (i
= 0; i
< 16; ++i
) {
107 qemu_fprintf(f
, "\nGPR A%02d:", i
);
109 qemu_fprintf(f
, " " TARGET_FMT_lx
, env
->gpr_a
[i
]);
111 for (i
= 0; i
< 16; ++i
) {
113 qemu_fprintf(f
, "\nGPR D%02d:", i
);
115 qemu_fprintf(f
, " " TARGET_FMT_lx
, env
->gpr_d
[i
]);
117 qemu_fprintf(f
, "\n");
121 * Functions to generate micro-ops
124 /* Makros for generating helpers */
126 #define gen_helper_1arg(name, arg) do { \
127 TCGv_i32 helper_tmp = tcg_constant_i32(arg); \
128 gen_helper_##name(cpu_env, helper_tmp); \
131 #define GEN_HELPER_LL(name, ret, arg0, arg1, n) do { \
132 TCGv arg00 = tcg_temp_new(); \
133 TCGv arg01 = tcg_temp_new(); \
134 TCGv arg11 = tcg_temp_new(); \
135 tcg_gen_sari_tl(arg00, arg0, 16); \
136 tcg_gen_ext16s_tl(arg01, arg0); \
137 tcg_gen_ext16s_tl(arg11, arg1); \
138 gen_helper_##name(ret, arg00, arg01, arg11, arg11, n); \
141 #define GEN_HELPER_LU(name, ret, arg0, arg1, n) do { \
142 TCGv arg00 = tcg_temp_new(); \
143 TCGv arg01 = tcg_temp_new(); \
144 TCGv arg10 = tcg_temp_new(); \
145 TCGv arg11 = tcg_temp_new(); \
146 tcg_gen_sari_tl(arg00, arg0, 16); \
147 tcg_gen_ext16s_tl(arg01, arg0); \
148 tcg_gen_sari_tl(arg11, arg1, 16); \
149 tcg_gen_ext16s_tl(arg10, arg1); \
150 gen_helper_##name(ret, arg00, arg01, arg10, arg11, n); \
153 #define GEN_HELPER_UL(name, ret, arg0, arg1, n) do { \
154 TCGv arg00 = tcg_temp_new(); \
155 TCGv arg01 = tcg_temp_new(); \
156 TCGv arg10 = tcg_temp_new(); \
157 TCGv arg11 = tcg_temp_new(); \
158 tcg_gen_sari_tl(arg00, arg0, 16); \
159 tcg_gen_ext16s_tl(arg01, arg0); \
160 tcg_gen_sari_tl(arg10, arg1, 16); \
161 tcg_gen_ext16s_tl(arg11, arg1); \
162 gen_helper_##name(ret, arg00, arg01, arg10, arg11, n); \
165 #define GEN_HELPER_UU(name, ret, arg0, arg1, n) do { \
166 TCGv arg00 = tcg_temp_new(); \
167 TCGv arg01 = tcg_temp_new(); \
168 TCGv arg11 = tcg_temp_new(); \
169 tcg_gen_sari_tl(arg01, arg0, 16); \
170 tcg_gen_ext16s_tl(arg00, arg0); \
171 tcg_gen_sari_tl(arg11, arg1, 16); \
172 gen_helper_##name(ret, arg00, arg01, arg11, arg11, n); \
175 #define GEN_HELPER_RRR(name, rl, rh, al1, ah1, arg2) do { \
176 TCGv_i64 ret = tcg_temp_new_i64(); \
177 TCGv_i64 arg1 = tcg_temp_new_i64(); \
179 tcg_gen_concat_i32_i64(arg1, al1, ah1); \
180 gen_helper_##name(ret, arg1, arg2); \
181 tcg_gen_extr_i64_i32(rl, rh, ret); \
184 #define GEN_HELPER_RR(name, rl, rh, arg1, arg2) do { \
185 TCGv_i64 ret = tcg_temp_new_i64(); \
187 gen_helper_##name(ret, cpu_env, arg1, arg2); \
188 tcg_gen_extr_i64_i32(rl, rh, ret); \
191 #define EA_ABS_FORMAT(con) (((con & 0x3C000) << 14) + (con & 0x3FFF))
192 #define EA_B_ABSOLUT(con) (((offset & 0xf00000) << 8) | \
193 ((offset & 0x0fffff) << 1))
195 /* For two 32-bit registers used a 64-bit register, the first
196 registernumber needs to be even. Otherwise we trap. */
197 static inline void generate_trap(DisasContext
*ctx
, int class, int tin
);
198 #define CHECK_REG_PAIR(reg) do { \
200 generate_trap(ctx, TRAPC_INSN_ERR, TIN2_OPD); \
204 /* Functions for load/save to/from memory */
206 static inline void gen_offset_ld(DisasContext
*ctx
, TCGv r1
, TCGv r2
,
207 int16_t con
, MemOp mop
)
209 TCGv temp
= tcg_temp_new();
210 tcg_gen_addi_tl(temp
, r2
, con
);
211 tcg_gen_qemu_ld_tl(r1
, temp
, ctx
->mem_idx
, mop
);
214 static inline void gen_offset_st(DisasContext
*ctx
, TCGv r1
, TCGv r2
,
215 int16_t con
, MemOp mop
)
217 TCGv temp
= tcg_temp_new();
218 tcg_gen_addi_tl(temp
, r2
, con
);
219 tcg_gen_qemu_st_tl(r1
, temp
, ctx
->mem_idx
, mop
);
222 static void gen_st_2regs_64(TCGv rh
, TCGv rl
, TCGv address
, DisasContext
*ctx
)
224 TCGv_i64 temp
= tcg_temp_new_i64();
226 tcg_gen_concat_i32_i64(temp
, rl
, rh
);
227 tcg_gen_qemu_st_i64(temp
, address
, ctx
->mem_idx
, MO_LEUQ
);
230 static void gen_offset_st_2regs(TCGv rh
, TCGv rl
, TCGv base
, int16_t con
,
233 TCGv temp
= tcg_temp_new();
234 tcg_gen_addi_tl(temp
, base
, con
);
235 gen_st_2regs_64(rh
, rl
, temp
, ctx
);
238 static void gen_ld_2regs_64(TCGv rh
, TCGv rl
, TCGv address
, DisasContext
*ctx
)
240 TCGv_i64 temp
= tcg_temp_new_i64();
242 tcg_gen_qemu_ld_i64(temp
, address
, ctx
->mem_idx
, MO_LEUQ
);
243 /* write back to two 32 bit regs */
244 tcg_gen_extr_i64_i32(rl
, rh
, temp
);
247 static void gen_offset_ld_2regs(TCGv rh
, TCGv rl
, TCGv base
, int16_t con
,
250 TCGv temp
= tcg_temp_new();
251 tcg_gen_addi_tl(temp
, base
, con
);
252 gen_ld_2regs_64(rh
, rl
, temp
, ctx
);
255 static void gen_st_preincr(DisasContext
*ctx
, TCGv r1
, TCGv r2
, int16_t off
,
258 TCGv temp
= tcg_temp_new();
259 tcg_gen_addi_tl(temp
, r2
, off
);
260 tcg_gen_qemu_st_tl(r1
, temp
, ctx
->mem_idx
, mop
);
261 tcg_gen_mov_tl(r2
, temp
);
264 static void gen_ld_preincr(DisasContext
*ctx
, TCGv r1
, TCGv r2
, int16_t off
,
267 TCGv temp
= tcg_temp_new();
268 tcg_gen_addi_tl(temp
, r2
, off
);
269 tcg_gen_qemu_ld_tl(r1
, temp
, ctx
->mem_idx
, mop
);
270 tcg_gen_mov_tl(r2
, temp
);
273 /* M(EA, word) = (M(EA, word) & ~E[a][63:32]) | (E[a][31:0] & E[a][63:32]); */
274 static void gen_ldmst(DisasContext
*ctx
, int ereg
, TCGv ea
)
276 TCGv temp
= tcg_temp_new();
277 TCGv temp2
= tcg_temp_new();
279 CHECK_REG_PAIR(ereg
);
280 /* temp = (M(EA, word) */
281 tcg_gen_qemu_ld_tl(temp
, ea
, ctx
->mem_idx
, MO_LEUL
);
282 /* temp = temp & ~E[a][63:32]) */
283 tcg_gen_andc_tl(temp
, temp
, cpu_gpr_d
[ereg
+1]);
284 /* temp2 = (E[a][31:0] & E[a][63:32]); */
285 tcg_gen_and_tl(temp2
, cpu_gpr_d
[ereg
], cpu_gpr_d
[ereg
+1]);
286 /* temp = temp | temp2; */
287 tcg_gen_or_tl(temp
, temp
, temp2
);
288 /* M(EA, word) = temp; */
289 tcg_gen_qemu_st_tl(temp
, ea
, ctx
->mem_idx
, MO_LEUL
);
292 /* tmp = M(EA, word);
295 static void gen_swap(DisasContext
*ctx
, int reg
, TCGv ea
)
297 TCGv temp
= tcg_temp_new();
299 tcg_gen_qemu_ld_tl(temp
, ea
, ctx
->mem_idx
, MO_LEUL
);
300 tcg_gen_qemu_st_tl(cpu_gpr_d
[reg
], ea
, ctx
->mem_idx
, MO_LEUL
);
301 tcg_gen_mov_tl(cpu_gpr_d
[reg
], temp
);
304 static void gen_cmpswap(DisasContext
*ctx
, int reg
, TCGv ea
)
306 TCGv temp
= tcg_temp_new();
307 TCGv temp2
= tcg_temp_new();
308 tcg_gen_qemu_ld_tl(temp
, ea
, ctx
->mem_idx
, MO_LEUL
);
309 tcg_gen_movcond_tl(TCG_COND_EQ
, temp2
, cpu_gpr_d
[reg
+1], temp
,
310 cpu_gpr_d
[reg
], temp
);
311 tcg_gen_qemu_st_tl(temp2
, ea
, ctx
->mem_idx
, MO_LEUL
);
312 tcg_gen_mov_tl(cpu_gpr_d
[reg
], temp
);
315 static void gen_swapmsk(DisasContext
*ctx
, int reg
, TCGv ea
)
317 TCGv temp
= tcg_temp_new();
318 TCGv temp2
= tcg_temp_new();
319 TCGv temp3
= tcg_temp_new();
321 tcg_gen_qemu_ld_tl(temp
, ea
, ctx
->mem_idx
, MO_LEUL
);
322 tcg_gen_and_tl(temp2
, cpu_gpr_d
[reg
], cpu_gpr_d
[reg
+1]);
323 tcg_gen_andc_tl(temp3
, temp
, cpu_gpr_d
[reg
+1]);
324 tcg_gen_or_tl(temp2
, temp2
, temp3
);
325 tcg_gen_qemu_st_tl(temp2
, ea
, ctx
->mem_idx
, MO_LEUL
);
326 tcg_gen_mov_tl(cpu_gpr_d
[reg
], temp
);
330 /* We generate loads and store to core special function register (csfr) through
331 the function gen_mfcr and gen_mtcr. To handle access permissions, we use 3
332 makros R, A and E, which allow read-only, all and endinit protected access.
333 These makros also specify in which ISA version the csfr was introduced. */
334 #define R(ADDRESS, REG, FEATURE) \
336 if (has_feature(ctx, FEATURE)) { \
337 tcg_gen_ld_tl(ret, cpu_env, offsetof(CPUTriCoreState, REG)); \
340 #define A(ADDRESS, REG, FEATURE) R(ADDRESS, REG, FEATURE)
341 #define E(ADDRESS, REG, FEATURE) R(ADDRESS, REG, FEATURE)
342 static inline void gen_mfcr(DisasContext
*ctx
, TCGv ret
, int32_t offset
)
344 /* since we're caching PSW make this a special case */
345 if (offset
== 0xfe04) {
346 gen_helper_psw_read(ret
, cpu_env
);
349 #include "csfr.h.inc"
357 #define R(ADDRESS, REG, FEATURE) /* don't gen writes to read-only reg,
358 since no execption occurs */
359 #define A(ADDRESS, REG, FEATURE) R(ADDRESS, REG, FEATURE) \
361 if (has_feature(ctx, FEATURE)) { \
362 tcg_gen_st_tl(r1, cpu_env, offsetof(CPUTriCoreState, REG)); \
365 /* Endinit protected registers
366 TODO: Since the endinit bit is in a register of a not yet implemented
367 watchdog device, we handle endinit protected registers like
368 all-access registers for now. */
369 #define E(ADDRESS, REG, FEATURE) A(ADDRESS, REG, FEATURE)
370 static inline void gen_mtcr(DisasContext
*ctx
, TCGv r1
,
373 if ((ctx
->hflags
& TRICORE_HFLAG_KUU
) == TRICORE_HFLAG_SM
) {
374 /* since we're caching PSW make this a special case */
375 if (offset
== 0xfe04) {
376 gen_helper_psw_write(cpu_env
, r1
);
379 #include "csfr.h.inc"
383 /* generate privilege trap */
387 /* Functions for arithmetic instructions */
389 static inline void gen_add_d(TCGv ret
, TCGv r1
, TCGv r2
)
391 TCGv t0
= tcg_temp_new_i32();
392 TCGv result
= tcg_temp_new_i32();
393 /* Addition and set V/SV bits */
394 tcg_gen_add_tl(result
, r1
, r2
);
396 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
397 tcg_gen_xor_tl(t0
, r1
, r2
);
398 tcg_gen_andc_tl(cpu_PSW_V
, cpu_PSW_V
, t0
);
400 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
401 /* Calc AV/SAV bits */
402 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
403 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
405 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
406 /* write back result */
407 tcg_gen_mov_tl(ret
, result
);
411 gen_add64_d(TCGv_i64 ret
, TCGv_i64 r1
, TCGv_i64 r2
)
413 TCGv temp
= tcg_temp_new();
414 TCGv_i64 t0
= tcg_temp_new_i64();
415 TCGv_i64 t1
= tcg_temp_new_i64();
416 TCGv_i64 result
= tcg_temp_new_i64();
418 tcg_gen_add_i64(result
, r1
, r2
);
420 tcg_gen_xor_i64(t1
, result
, r1
);
421 tcg_gen_xor_i64(t0
, r1
, r2
);
422 tcg_gen_andc_i64(t1
, t1
, t0
);
423 tcg_gen_extrh_i64_i32(cpu_PSW_V
, t1
);
425 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
426 /* calc AV/SAV bits */
427 tcg_gen_extrh_i64_i32(temp
, result
);
428 tcg_gen_add_tl(cpu_PSW_AV
, temp
, temp
);
429 tcg_gen_xor_tl(cpu_PSW_AV
, temp
, cpu_PSW_AV
);
431 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
432 /* write back result */
433 tcg_gen_mov_i64(ret
, result
);
437 gen_addsub64_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
438 TCGv r3
, void(*op1
)(TCGv
, TCGv
, TCGv
),
439 void(*op2
)(TCGv
, TCGv
, TCGv
))
441 TCGv temp
= tcg_temp_new();
442 TCGv temp2
= tcg_temp_new();
443 TCGv temp3
= tcg_temp_new();
444 TCGv temp4
= tcg_temp_new();
446 (*op1
)(temp
, r1_low
, r2
);
448 tcg_gen_xor_tl(temp2
, temp
, r1_low
);
449 tcg_gen_xor_tl(temp3
, r1_low
, r2
);
450 if (op1
== tcg_gen_add_tl
) {
451 tcg_gen_andc_tl(temp2
, temp2
, temp3
);
453 tcg_gen_and_tl(temp2
, temp2
, temp3
);
456 (*op2
)(temp3
, r1_high
, r3
);
458 tcg_gen_xor_tl(cpu_PSW_V
, temp3
, r1_high
);
459 tcg_gen_xor_tl(temp4
, r1_high
, r3
);
460 if (op2
== tcg_gen_add_tl
) {
461 tcg_gen_andc_tl(cpu_PSW_V
, cpu_PSW_V
, temp4
);
463 tcg_gen_and_tl(cpu_PSW_V
, cpu_PSW_V
, temp4
);
465 /* combine V0/V1 bits */
466 tcg_gen_or_tl(cpu_PSW_V
, cpu_PSW_V
, temp2
);
468 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
470 tcg_gen_mov_tl(ret_low
, temp
);
471 tcg_gen_mov_tl(ret_high
, temp3
);
473 tcg_gen_add_tl(temp
, ret_low
, ret_low
);
474 tcg_gen_xor_tl(temp
, temp
, ret_low
);
475 tcg_gen_add_tl(cpu_PSW_AV
, ret_high
, ret_high
);
476 tcg_gen_xor_tl(cpu_PSW_AV
, cpu_PSW_AV
, ret_high
);
477 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp
);
479 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
482 /* ret = r2 + (r1 * r3); */
483 static inline void gen_madd32_d(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
)
485 TCGv_i64 t1
= tcg_temp_new_i64();
486 TCGv_i64 t2
= tcg_temp_new_i64();
487 TCGv_i64 t3
= tcg_temp_new_i64();
489 tcg_gen_ext_i32_i64(t1
, r1
);
490 tcg_gen_ext_i32_i64(t2
, r2
);
491 tcg_gen_ext_i32_i64(t3
, r3
);
493 tcg_gen_mul_i64(t1
, t1
, t3
);
494 tcg_gen_add_i64(t1
, t2
, t1
);
496 tcg_gen_extrl_i64_i32(ret
, t1
);
499 tcg_gen_setcondi_i64(TCG_COND_GT
, t3
, t1
, 0x7fffffffLL
);
500 /* t1 < -0x80000000 */
501 tcg_gen_setcondi_i64(TCG_COND_LT
, t2
, t1
, -0x80000000LL
);
502 tcg_gen_or_i64(t2
, t2
, t3
);
503 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t2
);
504 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
506 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
507 /* Calc AV/SAV bits */
508 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
509 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
511 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
514 static inline void gen_maddi32_d(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
516 TCGv temp
= tcg_constant_i32(con
);
517 gen_madd32_d(ret
, r1
, r2
, temp
);
521 gen_madd64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
524 TCGv t1
= tcg_temp_new();
525 TCGv t2
= tcg_temp_new();
526 TCGv t3
= tcg_temp_new();
527 TCGv t4
= tcg_temp_new();
529 tcg_gen_muls2_tl(t1
, t2
, r1
, r3
);
530 /* only the add can overflow */
531 tcg_gen_add2_tl(t3
, t4
, r2_low
, r2_high
, t1
, t2
);
533 tcg_gen_xor_tl(cpu_PSW_V
, t4
, r2_high
);
534 tcg_gen_xor_tl(t1
, r2_high
, t2
);
535 tcg_gen_andc_tl(cpu_PSW_V
, cpu_PSW_V
, t1
);
537 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
538 /* Calc AV/SAV bits */
539 tcg_gen_add_tl(cpu_PSW_AV
, t4
, t4
);
540 tcg_gen_xor_tl(cpu_PSW_AV
, t4
, cpu_PSW_AV
);
542 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
543 /* write back the result */
544 tcg_gen_mov_tl(ret_low
, t3
);
545 tcg_gen_mov_tl(ret_high
, t4
);
549 gen_maddu64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
552 TCGv_i64 t1
= tcg_temp_new_i64();
553 TCGv_i64 t2
= tcg_temp_new_i64();
554 TCGv_i64 t3
= tcg_temp_new_i64();
556 tcg_gen_extu_i32_i64(t1
, r1
);
557 tcg_gen_concat_i32_i64(t2
, r2_low
, r2_high
);
558 tcg_gen_extu_i32_i64(t3
, r3
);
560 tcg_gen_mul_i64(t1
, t1
, t3
);
561 tcg_gen_add_i64(t2
, t2
, t1
);
562 /* write back result */
563 tcg_gen_extr_i64_i32(ret_low
, ret_high
, t2
);
564 /* only the add overflows, if t2 < t1
566 tcg_gen_setcond_i64(TCG_COND_LTU
, t2
, t2
, t1
);
567 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t2
);
568 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
570 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
571 /* Calc AV/SAV bits */
572 tcg_gen_add_tl(cpu_PSW_AV
, ret_high
, ret_high
);
573 tcg_gen_xor_tl(cpu_PSW_AV
, ret_high
, cpu_PSW_AV
);
575 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
579 gen_maddi64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
582 TCGv temp
= tcg_constant_i32(con
);
583 gen_madd64_d(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
587 gen_maddui64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
590 TCGv temp
= tcg_constant_i32(con
);
591 gen_maddu64_d(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
595 gen_madd_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
596 TCGv r3
, uint32_t n
, uint32_t mode
)
598 TCGv t_n
= tcg_constant_i32(n
);
599 TCGv temp
= tcg_temp_new();
600 TCGv temp2
= tcg_temp_new();
601 TCGv_i64 temp64
= tcg_temp_new_i64();
604 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
607 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
610 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
613 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
616 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
617 gen_addsub64_h(ret_low
, ret_high
, r1_low
, r1_high
, temp
, temp2
,
618 tcg_gen_add_tl
, tcg_gen_add_tl
);
622 gen_maddsu_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
623 TCGv r3
, uint32_t n
, uint32_t mode
)
625 TCGv t_n
= tcg_constant_i32(n
);
626 TCGv temp
= tcg_temp_new();
627 TCGv temp2
= tcg_temp_new();
628 TCGv_i64 temp64
= tcg_temp_new_i64();
631 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
634 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
637 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
640 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
643 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
644 gen_addsub64_h(ret_low
, ret_high
, r1_low
, r1_high
, temp
, temp2
,
645 tcg_gen_sub_tl
, tcg_gen_add_tl
);
649 gen_maddsum_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
650 TCGv r3
, uint32_t n
, uint32_t mode
)
652 TCGv t_n
= tcg_constant_i32(n
);
653 TCGv_i64 temp64
= tcg_temp_new_i64();
654 TCGv_i64 temp64_2
= tcg_temp_new_i64();
655 TCGv_i64 temp64_3
= tcg_temp_new_i64();
658 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
661 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
664 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
667 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
670 tcg_gen_concat_i32_i64(temp64_3
, r1_low
, r1_high
);
671 tcg_gen_sari_i64(temp64_2
, temp64
, 32); /* high */
672 tcg_gen_ext32s_i64(temp64
, temp64
); /* low */
673 tcg_gen_sub_i64(temp64
, temp64_2
, temp64
);
674 tcg_gen_shli_i64(temp64
, temp64
, 16);
676 gen_add64_d(temp64_2
, temp64_3
, temp64
);
677 /* write back result */
678 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64_2
);
681 static inline void gen_adds(TCGv ret
, TCGv r1
, TCGv r2
);
684 gen_madds_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
685 TCGv r3
, uint32_t n
, uint32_t mode
)
687 TCGv t_n
= tcg_constant_i32(n
);
688 TCGv temp
= tcg_temp_new();
689 TCGv temp2
= tcg_temp_new();
690 TCGv temp3
= tcg_temp_new();
691 TCGv_i64 temp64
= tcg_temp_new_i64();
695 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
698 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
701 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
704 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
707 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
708 gen_adds(ret_low
, r1_low
, temp
);
709 tcg_gen_mov_tl(temp
, cpu_PSW_V
);
710 tcg_gen_mov_tl(temp3
, cpu_PSW_AV
);
711 gen_adds(ret_high
, r1_high
, temp2
);
713 tcg_gen_or_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
714 /* combine av bits */
715 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp3
);
718 static inline void gen_subs(TCGv ret
, TCGv r1
, TCGv r2
);
721 gen_maddsus_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
722 TCGv r3
, uint32_t n
, uint32_t mode
)
724 TCGv t_n
= tcg_constant_i32(n
);
725 TCGv temp
= tcg_temp_new();
726 TCGv temp2
= tcg_temp_new();
727 TCGv temp3
= tcg_temp_new();
728 TCGv_i64 temp64
= tcg_temp_new_i64();
732 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
735 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
738 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
741 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
744 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
745 gen_subs(ret_low
, r1_low
, temp
);
746 tcg_gen_mov_tl(temp
, cpu_PSW_V
);
747 tcg_gen_mov_tl(temp3
, cpu_PSW_AV
);
748 gen_adds(ret_high
, r1_high
, temp2
);
750 tcg_gen_or_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
751 /* combine av bits */
752 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp3
);
756 gen_maddsums_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
757 TCGv r3
, uint32_t n
, uint32_t mode
)
759 TCGv t_n
= tcg_constant_i32(n
);
760 TCGv_i64 temp64
= tcg_temp_new_i64();
761 TCGv_i64 temp64_2
= tcg_temp_new_i64();
765 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
768 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
771 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
774 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
777 tcg_gen_sari_i64(temp64_2
, temp64
, 32); /* high */
778 tcg_gen_ext32s_i64(temp64
, temp64
); /* low */
779 tcg_gen_sub_i64(temp64
, temp64_2
, temp64
);
780 tcg_gen_shli_i64(temp64
, temp64
, 16);
781 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
783 gen_helper_add64_ssov(temp64
, cpu_env
, temp64_2
, temp64
);
784 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
789 gen_maddm_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
790 TCGv r3
, uint32_t n
, uint32_t mode
)
792 TCGv t_n
= tcg_constant_i32(n
);
793 TCGv_i64 temp64
= tcg_temp_new_i64();
794 TCGv_i64 temp64_2
= tcg_temp_new_i64();
795 TCGv_i64 temp64_3
= tcg_temp_new_i64();
798 GEN_HELPER_LL(mulm_h
, temp64
, r2
, r3
, t_n
);
801 GEN_HELPER_LU(mulm_h
, temp64
, r2
, r3
, t_n
);
804 GEN_HELPER_UL(mulm_h
, temp64
, r2
, r3
, t_n
);
807 GEN_HELPER_UU(mulm_h
, temp64
, r2
, r3
, t_n
);
810 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
811 gen_add64_d(temp64_3
, temp64_2
, temp64
);
812 /* write back result */
813 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64_3
);
817 gen_maddms_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
818 TCGv r3
, uint32_t n
, uint32_t mode
)
820 TCGv t_n
= tcg_constant_i32(n
);
821 TCGv_i64 temp64
= tcg_temp_new_i64();
822 TCGv_i64 temp64_2
= tcg_temp_new_i64();
825 GEN_HELPER_LL(mulm_h
, temp64
, r2
, r3
, t_n
);
828 GEN_HELPER_LU(mulm_h
, temp64
, r2
, r3
, t_n
);
831 GEN_HELPER_UL(mulm_h
, temp64
, r2
, r3
, t_n
);
834 GEN_HELPER_UU(mulm_h
, temp64
, r2
, r3
, t_n
);
837 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
838 gen_helper_add64_ssov(temp64
, cpu_env
, temp64_2
, temp64
);
839 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
843 gen_maddr64_h(TCGv ret
, TCGv r1_low
, TCGv r1_high
, TCGv r2
, TCGv r3
, uint32_t n
,
846 TCGv t_n
= tcg_constant_i32(n
);
847 TCGv_i64 temp64
= tcg_temp_new_i64();
850 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
853 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
856 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
859 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
862 gen_helper_addr_h(ret
, cpu_env
, temp64
, r1_low
, r1_high
);
866 gen_maddr32_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
868 TCGv temp
= tcg_temp_new();
869 TCGv temp2
= tcg_temp_new();
871 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
872 tcg_gen_shli_tl(temp
, r1
, 16);
873 gen_maddr64_h(ret
, temp
, temp2
, r2
, r3
, n
, mode
);
877 gen_maddsur32_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
879 TCGv t_n
= tcg_constant_i32(n
);
880 TCGv temp
= tcg_temp_new();
881 TCGv temp2
= tcg_temp_new();
882 TCGv_i64 temp64
= tcg_temp_new_i64();
885 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
888 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
891 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
894 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
897 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
898 tcg_gen_shli_tl(temp
, r1
, 16);
899 gen_helper_addsur_h(ret
, cpu_env
, temp64
, temp
, temp2
);
904 gen_maddr64s_h(TCGv ret
, TCGv r1_low
, TCGv r1_high
, TCGv r2
, TCGv r3
,
905 uint32_t n
, uint32_t mode
)
907 TCGv t_n
= tcg_constant_i32(n
);
908 TCGv_i64 temp64
= tcg_temp_new_i64();
911 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
914 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
917 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
920 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
923 gen_helper_addr_h_ssov(ret
, cpu_env
, temp64
, r1_low
, r1_high
);
927 gen_maddr32s_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
929 TCGv temp
= tcg_temp_new();
930 TCGv temp2
= tcg_temp_new();
932 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
933 tcg_gen_shli_tl(temp
, r1
, 16);
934 gen_maddr64s_h(ret
, temp
, temp2
, r2
, r3
, n
, mode
);
938 gen_maddsur32s_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
940 TCGv t_n
= tcg_constant_i32(n
);
941 TCGv temp
= tcg_temp_new();
942 TCGv temp2
= tcg_temp_new();
943 TCGv_i64 temp64
= tcg_temp_new_i64();
946 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
949 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
952 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
955 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
958 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
959 tcg_gen_shli_tl(temp
, r1
, 16);
960 gen_helper_addsur_h_ssov(ret
, cpu_env
, temp64
, temp
, temp2
);
964 gen_maddr_q(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
)
966 TCGv t_n
= tcg_constant_i32(n
);
967 gen_helper_maddr_q(ret
, cpu_env
, r1
, r2
, r3
, t_n
);
971 gen_maddrs_q(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
)
973 TCGv t_n
= tcg_constant_i32(n
);
974 gen_helper_maddr_q_ssov(ret
, cpu_env
, r1
, r2
, r3
, t_n
);
978 gen_madd32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
,
981 TCGv temp
= tcg_temp_new();
982 TCGv temp2
= tcg_temp_new();
983 TCGv temp3
= tcg_temp_new();
984 TCGv_i64 t1
= tcg_temp_new_i64();
985 TCGv_i64 t2
= tcg_temp_new_i64();
986 TCGv_i64 t3
= tcg_temp_new_i64();
988 tcg_gen_ext_i32_i64(t2
, arg2
);
989 tcg_gen_ext_i32_i64(t3
, arg3
);
991 tcg_gen_mul_i64(t2
, t2
, t3
);
992 tcg_gen_shli_i64(t2
, t2
, n
);
994 tcg_gen_ext_i32_i64(t1
, arg1
);
995 tcg_gen_sari_i64(t2
, t2
, up_shift
);
997 tcg_gen_add_i64(t3
, t1
, t2
);
998 tcg_gen_extrl_i64_i32(temp3
, t3
);
1000 tcg_gen_setcondi_i64(TCG_COND_GT
, t1
, t3
, 0x7fffffffLL
);
1001 tcg_gen_setcondi_i64(TCG_COND_LT
, t2
, t3
, -0x80000000LL
);
1002 tcg_gen_or_i64(t1
, t1
, t2
);
1003 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t1
);
1004 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
1005 /* We produce an overflow on the host if the mul before was
1006 (0x80000000 * 0x80000000) << 1). If this is the
1007 case, we negate the ovf. */
1009 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, arg2
, 0x80000000);
1010 tcg_gen_setcond_tl(TCG_COND_EQ
, temp2
, arg2
, arg3
);
1011 tcg_gen_and_tl(temp
, temp
, temp2
);
1012 tcg_gen_shli_tl(temp
, temp
, 31);
1013 /* negate v bit, if special condition */
1014 tcg_gen_xor_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1017 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1018 /* Calc AV/SAV bits */
1019 tcg_gen_add_tl(cpu_PSW_AV
, temp3
, temp3
);
1020 tcg_gen_xor_tl(cpu_PSW_AV
, temp3
, cpu_PSW_AV
);
1022 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1023 /* write back result */
1024 tcg_gen_mov_tl(ret
, temp3
);
1028 gen_m16add32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
)
1030 TCGv temp
= tcg_temp_new();
1031 TCGv temp2
= tcg_temp_new();
1033 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1034 } else { /* n is expected to be 1 */
1035 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1036 tcg_gen_shli_tl(temp
, temp
, 1);
1037 /* catch special case r1 = r2 = 0x8000 */
1038 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1039 tcg_gen_sub_tl(temp
, temp
, temp2
);
1041 gen_add_d(ret
, arg1
, temp
);
1045 gen_m16adds32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
)
1047 TCGv temp
= tcg_temp_new();
1048 TCGv temp2
= tcg_temp_new();
1050 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1051 } else { /* n is expected to be 1 */
1052 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1053 tcg_gen_shli_tl(temp
, temp
, 1);
1054 /* catch special case r1 = r2 = 0x8000 */
1055 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1056 tcg_gen_sub_tl(temp
, temp
, temp2
);
1058 gen_adds(ret
, arg1
, temp
);
1062 gen_m16add64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1063 TCGv arg3
, uint32_t n
)
1065 TCGv temp
= tcg_temp_new();
1066 TCGv temp2
= tcg_temp_new();
1067 TCGv_i64 t1
= tcg_temp_new_i64();
1068 TCGv_i64 t2
= tcg_temp_new_i64();
1069 TCGv_i64 t3
= tcg_temp_new_i64();
1072 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1073 } else { /* n is expected to be 1 */
1074 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1075 tcg_gen_shli_tl(temp
, temp
, 1);
1076 /* catch special case r1 = r2 = 0x8000 */
1077 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1078 tcg_gen_sub_tl(temp
, temp
, temp2
);
1080 tcg_gen_ext_i32_i64(t2
, temp
);
1081 tcg_gen_shli_i64(t2
, t2
, 16);
1082 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1083 gen_add64_d(t3
, t1
, t2
);
1084 /* write back result */
1085 tcg_gen_extr_i64_i32(rl
, rh
, t3
);
1089 gen_m16adds64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1090 TCGv arg3
, uint32_t n
)
1092 TCGv temp
= tcg_temp_new();
1093 TCGv temp2
= tcg_temp_new();
1094 TCGv_i64 t1
= tcg_temp_new_i64();
1095 TCGv_i64 t2
= tcg_temp_new_i64();
1098 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1099 } else { /* n is expected to be 1 */
1100 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1101 tcg_gen_shli_tl(temp
, temp
, 1);
1102 /* catch special case r1 = r2 = 0x8000 */
1103 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1104 tcg_gen_sub_tl(temp
, temp
, temp2
);
1106 tcg_gen_ext_i32_i64(t2
, temp
);
1107 tcg_gen_shli_i64(t2
, t2
, 16);
1108 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1110 gen_helper_add64_ssov(t1
, cpu_env
, t1
, t2
);
1111 tcg_gen_extr_i64_i32(rl
, rh
, t1
);
1115 gen_madd64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1116 TCGv arg3
, uint32_t n
)
1118 TCGv_i64 t1
= tcg_temp_new_i64();
1119 TCGv_i64 t2
= tcg_temp_new_i64();
1120 TCGv_i64 t3
= tcg_temp_new_i64();
1121 TCGv_i64 t4
= tcg_temp_new_i64();
1124 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1125 tcg_gen_ext_i32_i64(t2
, arg2
);
1126 tcg_gen_ext_i32_i64(t3
, arg3
);
1128 tcg_gen_mul_i64(t2
, t2
, t3
);
1130 tcg_gen_shli_i64(t2
, t2
, 1);
1132 tcg_gen_add_i64(t4
, t1
, t2
);
1134 tcg_gen_xor_i64(t3
, t4
, t1
);
1135 tcg_gen_xor_i64(t2
, t1
, t2
);
1136 tcg_gen_andc_i64(t3
, t3
, t2
);
1137 tcg_gen_extrh_i64_i32(cpu_PSW_V
, t3
);
1138 /* We produce an overflow on the host if the mul before was
1139 (0x80000000 * 0x80000000) << 1). If this is the
1140 case, we negate the ovf. */
1142 temp
= tcg_temp_new();
1143 temp2
= tcg_temp_new();
1144 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, arg2
, 0x80000000);
1145 tcg_gen_setcond_tl(TCG_COND_EQ
, temp2
, arg2
, arg3
);
1146 tcg_gen_and_tl(temp
, temp
, temp2
);
1147 tcg_gen_shli_tl(temp
, temp
, 31);
1148 /* negate v bit, if special condition */
1149 tcg_gen_xor_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1151 /* write back result */
1152 tcg_gen_extr_i64_i32(rl
, rh
, t4
);
1154 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1155 /* Calc AV/SAV bits */
1156 tcg_gen_add_tl(cpu_PSW_AV
, rh
, rh
);
1157 tcg_gen_xor_tl(cpu_PSW_AV
, rh
, cpu_PSW_AV
);
1159 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1163 gen_madds32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
,
1166 TCGv_i64 t1
= tcg_temp_new_i64();
1167 TCGv_i64 t2
= tcg_temp_new_i64();
1168 TCGv_i64 t3
= tcg_temp_new_i64();
1170 tcg_gen_ext_i32_i64(t1
, arg1
);
1171 tcg_gen_ext_i32_i64(t2
, arg2
);
1172 tcg_gen_ext_i32_i64(t3
, arg3
);
1174 tcg_gen_mul_i64(t2
, t2
, t3
);
1175 tcg_gen_sari_i64(t2
, t2
, up_shift
- n
);
1177 gen_helper_madd32_q_add_ssov(ret
, cpu_env
, t1
, t2
);
1181 gen_madds64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1182 TCGv arg3
, uint32_t n
)
1184 TCGv_i64 r1
= tcg_temp_new_i64();
1185 TCGv t_n
= tcg_constant_i32(n
);
1187 tcg_gen_concat_i32_i64(r1
, arg1_low
, arg1_high
);
1188 gen_helper_madd64_q_ssov(r1
, cpu_env
, r1
, arg2
, arg3
, t_n
);
1189 tcg_gen_extr_i64_i32(rl
, rh
, r1
);
1192 /* ret = r2 - (r1 * r3); */
1193 static inline void gen_msub32_d(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
)
1195 TCGv_i64 t1
= tcg_temp_new_i64();
1196 TCGv_i64 t2
= tcg_temp_new_i64();
1197 TCGv_i64 t3
= tcg_temp_new_i64();
1199 tcg_gen_ext_i32_i64(t1
, r1
);
1200 tcg_gen_ext_i32_i64(t2
, r2
);
1201 tcg_gen_ext_i32_i64(t3
, r3
);
1203 tcg_gen_mul_i64(t1
, t1
, t3
);
1204 tcg_gen_sub_i64(t1
, t2
, t1
);
1206 tcg_gen_extrl_i64_i32(ret
, t1
);
1209 tcg_gen_setcondi_i64(TCG_COND_GT
, t3
, t1
, 0x7fffffffLL
);
1210 /* result < -0x80000000 */
1211 tcg_gen_setcondi_i64(TCG_COND_LT
, t2
, t1
, -0x80000000LL
);
1212 tcg_gen_or_i64(t2
, t2
, t3
);
1213 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t2
);
1214 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
1217 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1218 /* Calc AV/SAV bits */
1219 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
1220 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
1222 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1225 static inline void gen_msubi32_d(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
1227 TCGv temp
= tcg_constant_i32(con
);
1228 gen_msub32_d(ret
, r1
, r2
, temp
);
1232 gen_msub64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
1235 TCGv t1
= tcg_temp_new();
1236 TCGv t2
= tcg_temp_new();
1237 TCGv t3
= tcg_temp_new();
1238 TCGv t4
= tcg_temp_new();
1240 tcg_gen_muls2_tl(t1
, t2
, r1
, r3
);
1241 /* only the sub can overflow */
1242 tcg_gen_sub2_tl(t3
, t4
, r2_low
, r2_high
, t1
, t2
);
1244 tcg_gen_xor_tl(cpu_PSW_V
, t4
, r2_high
);
1245 tcg_gen_xor_tl(t1
, r2_high
, t2
);
1246 tcg_gen_and_tl(cpu_PSW_V
, cpu_PSW_V
, t1
);
1248 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1249 /* Calc AV/SAV bits */
1250 tcg_gen_add_tl(cpu_PSW_AV
, t4
, t4
);
1251 tcg_gen_xor_tl(cpu_PSW_AV
, t4
, cpu_PSW_AV
);
1253 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1254 /* write back the result */
1255 tcg_gen_mov_tl(ret_low
, t3
);
1256 tcg_gen_mov_tl(ret_high
, t4
);
1260 gen_msubi64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
1263 TCGv temp
= tcg_constant_i32(con
);
1264 gen_msub64_d(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
1268 gen_msubu64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
1271 TCGv_i64 t1
= tcg_temp_new_i64();
1272 TCGv_i64 t2
= tcg_temp_new_i64();
1273 TCGv_i64 t3
= tcg_temp_new_i64();
1275 tcg_gen_extu_i32_i64(t1
, r1
);
1276 tcg_gen_concat_i32_i64(t2
, r2_low
, r2_high
);
1277 tcg_gen_extu_i32_i64(t3
, r3
);
1279 tcg_gen_mul_i64(t1
, t1
, t3
);
1280 tcg_gen_sub_i64(t3
, t2
, t1
);
1281 tcg_gen_extr_i64_i32(ret_low
, ret_high
, t3
);
1282 /* calc V bit, only the sub can overflow, if t1 > t2 */
1283 tcg_gen_setcond_i64(TCG_COND_GTU
, t1
, t1
, t2
);
1284 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t1
);
1285 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
1287 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1288 /* Calc AV/SAV bits */
1289 tcg_gen_add_tl(cpu_PSW_AV
, ret_high
, ret_high
);
1290 tcg_gen_xor_tl(cpu_PSW_AV
, ret_high
, cpu_PSW_AV
);
1292 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1296 gen_msubui64_d(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
1299 TCGv temp
= tcg_constant_i32(con
);
1300 gen_msubu64_d(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
1303 static inline void gen_addi_d(TCGv ret
, TCGv r1
, target_ulong r2
)
1305 TCGv temp
= tcg_constant_i32(r2
);
1306 gen_add_d(ret
, r1
, temp
);
1309 /* calculate the carry bit too */
1310 static inline void gen_add_CC(TCGv ret
, TCGv r1
, TCGv r2
)
1312 TCGv t0
= tcg_temp_new_i32();
1313 TCGv result
= tcg_temp_new_i32();
1315 tcg_gen_movi_tl(t0
, 0);
1316 /* Addition and set C/V/SV bits */
1317 tcg_gen_add2_i32(result
, cpu_PSW_C
, r1
, t0
, r2
, t0
);
1319 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
1320 tcg_gen_xor_tl(t0
, r1
, r2
);
1321 tcg_gen_andc_tl(cpu_PSW_V
, cpu_PSW_V
, t0
);
1323 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1324 /* Calc AV/SAV bits */
1325 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
1326 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
1328 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1329 /* write back result */
1330 tcg_gen_mov_tl(ret
, result
);
1333 static inline void gen_addi_CC(TCGv ret
, TCGv r1
, int32_t con
)
1335 TCGv temp
= tcg_constant_i32(con
);
1336 gen_add_CC(ret
, r1
, temp
);
1339 static inline void gen_addc_CC(TCGv ret
, TCGv r1
, TCGv r2
)
1341 TCGv carry
= tcg_temp_new_i32();
1342 TCGv t0
= tcg_temp_new_i32();
1343 TCGv result
= tcg_temp_new_i32();
1345 tcg_gen_movi_tl(t0
, 0);
1346 tcg_gen_setcondi_tl(TCG_COND_NE
, carry
, cpu_PSW_C
, 0);
1347 /* Addition, carry and set C/V/SV bits */
1348 tcg_gen_add2_i32(result
, cpu_PSW_C
, r1
, t0
, carry
, t0
);
1349 tcg_gen_add2_i32(result
, cpu_PSW_C
, result
, cpu_PSW_C
, r2
, t0
);
1351 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
1352 tcg_gen_xor_tl(t0
, r1
, r2
);
1353 tcg_gen_andc_tl(cpu_PSW_V
, cpu_PSW_V
, t0
);
1355 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1356 /* Calc AV/SAV bits */
1357 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
1358 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
1360 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1361 /* write back result */
1362 tcg_gen_mov_tl(ret
, result
);
1365 static inline void gen_addci_CC(TCGv ret
, TCGv r1
, int32_t con
)
1367 TCGv temp
= tcg_constant_i32(con
);
1368 gen_addc_CC(ret
, r1
, temp
);
1371 static inline void gen_cond_add(TCGCond cond
, TCGv r1
, TCGv r2
, TCGv r3
,
1374 TCGv temp
= tcg_temp_new();
1375 TCGv temp2
= tcg_temp_new();
1376 TCGv result
= tcg_temp_new();
1377 TCGv mask
= tcg_temp_new();
1378 TCGv t0
= tcg_constant_i32(0);
1380 /* create mask for sticky bits */
1381 tcg_gen_setcond_tl(cond
, mask
, r4
, t0
);
1382 tcg_gen_shli_tl(mask
, mask
, 31);
1384 tcg_gen_add_tl(result
, r1
, r2
);
1386 tcg_gen_xor_tl(temp
, result
, r1
);
1387 tcg_gen_xor_tl(temp2
, r1
, r2
);
1388 tcg_gen_andc_tl(temp
, temp
, temp2
);
1389 tcg_gen_movcond_tl(cond
, cpu_PSW_V
, r4
, t0
, temp
, cpu_PSW_V
);
1391 tcg_gen_and_tl(temp
, temp
, mask
);
1392 tcg_gen_or_tl(cpu_PSW_SV
, temp
, cpu_PSW_SV
);
1394 tcg_gen_add_tl(temp
, result
, result
);
1395 tcg_gen_xor_tl(temp
, temp
, result
);
1396 tcg_gen_movcond_tl(cond
, cpu_PSW_AV
, r4
, t0
, temp
, cpu_PSW_AV
);
1398 tcg_gen_and_tl(temp
, temp
, mask
);
1399 tcg_gen_or_tl(cpu_PSW_SAV
, temp
, cpu_PSW_SAV
);
1400 /* write back result */
1401 tcg_gen_movcond_tl(cond
, r3
, r4
, t0
, result
, r1
);
1404 static inline void gen_condi_add(TCGCond cond
, TCGv r1
, int32_t r2
,
1407 TCGv temp
= tcg_constant_i32(r2
);
1408 gen_cond_add(cond
, r1
, temp
, r3
, r4
);
1411 static inline void gen_sub_d(TCGv ret
, TCGv r1
, TCGv r2
)
1413 TCGv temp
= tcg_temp_new_i32();
1414 TCGv result
= tcg_temp_new_i32();
1416 tcg_gen_sub_tl(result
, r1
, r2
);
1418 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
1419 tcg_gen_xor_tl(temp
, r1
, r2
);
1420 tcg_gen_and_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1422 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1424 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
1425 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
1427 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1428 /* write back result */
1429 tcg_gen_mov_tl(ret
, result
);
1433 gen_sub64_d(TCGv_i64 ret
, TCGv_i64 r1
, TCGv_i64 r2
)
1435 TCGv temp
= tcg_temp_new();
1436 TCGv_i64 t0
= tcg_temp_new_i64();
1437 TCGv_i64 t1
= tcg_temp_new_i64();
1438 TCGv_i64 result
= tcg_temp_new_i64();
1440 tcg_gen_sub_i64(result
, r1
, r2
);
1442 tcg_gen_xor_i64(t1
, result
, r1
);
1443 tcg_gen_xor_i64(t0
, r1
, r2
);
1444 tcg_gen_and_i64(t1
, t1
, t0
);
1445 tcg_gen_extrh_i64_i32(cpu_PSW_V
, t1
);
1447 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1448 /* calc AV/SAV bits */
1449 tcg_gen_extrh_i64_i32(temp
, result
);
1450 tcg_gen_add_tl(cpu_PSW_AV
, temp
, temp
);
1451 tcg_gen_xor_tl(cpu_PSW_AV
, temp
, cpu_PSW_AV
);
1453 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1454 /* write back result */
1455 tcg_gen_mov_i64(ret
, result
);
1458 static inline void gen_sub_CC(TCGv ret
, TCGv r1
, TCGv r2
)
1460 TCGv result
= tcg_temp_new();
1461 TCGv temp
= tcg_temp_new();
1463 tcg_gen_sub_tl(result
, r1
, r2
);
1465 tcg_gen_setcond_tl(TCG_COND_GEU
, cpu_PSW_C
, r1
, r2
);
1467 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
1468 tcg_gen_xor_tl(temp
, r1
, r2
);
1469 tcg_gen_and_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1471 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1473 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
1474 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
1476 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1477 /* write back result */
1478 tcg_gen_mov_tl(ret
, result
);
1481 static inline void gen_subc_CC(TCGv ret
, TCGv r1
, TCGv r2
)
1483 TCGv temp
= tcg_temp_new();
1484 tcg_gen_not_tl(temp
, r2
);
1485 gen_addc_CC(ret
, r1
, temp
);
1488 static inline void gen_cond_sub(TCGCond cond
, TCGv r1
, TCGv r2
, TCGv r3
,
1491 TCGv temp
= tcg_temp_new();
1492 TCGv temp2
= tcg_temp_new();
1493 TCGv result
= tcg_temp_new();
1494 TCGv mask
= tcg_temp_new();
1495 TCGv t0
= tcg_constant_i32(0);
1497 /* create mask for sticky bits */
1498 tcg_gen_setcond_tl(cond
, mask
, r4
, t0
);
1499 tcg_gen_shli_tl(mask
, mask
, 31);
1501 tcg_gen_sub_tl(result
, r1
, r2
);
1503 tcg_gen_xor_tl(temp
, result
, r1
);
1504 tcg_gen_xor_tl(temp2
, r1
, r2
);
1505 tcg_gen_and_tl(temp
, temp
, temp2
);
1506 tcg_gen_movcond_tl(cond
, cpu_PSW_V
, r4
, t0
, temp
, cpu_PSW_V
);
1508 tcg_gen_and_tl(temp
, temp
, mask
);
1509 tcg_gen_or_tl(cpu_PSW_SV
, temp
, cpu_PSW_SV
);
1511 tcg_gen_add_tl(temp
, result
, result
);
1512 tcg_gen_xor_tl(temp
, temp
, result
);
1513 tcg_gen_movcond_tl(cond
, cpu_PSW_AV
, r4
, t0
, temp
, cpu_PSW_AV
);
1515 tcg_gen_and_tl(temp
, temp
, mask
);
1516 tcg_gen_or_tl(cpu_PSW_SAV
, temp
, cpu_PSW_SAV
);
1517 /* write back result */
1518 tcg_gen_movcond_tl(cond
, r3
, r4
, t0
, result
, r1
);
1522 gen_msub_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1523 TCGv r3
, uint32_t n
, uint32_t mode
)
1525 TCGv t_n
= tcg_constant_i32(n
);
1526 TCGv temp
= tcg_temp_new();
1527 TCGv temp2
= tcg_temp_new();
1528 TCGv_i64 temp64
= tcg_temp_new_i64();
1531 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1534 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1537 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1540 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1543 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
1544 gen_addsub64_h(ret_low
, ret_high
, r1_low
, r1_high
, temp
, temp2
,
1545 tcg_gen_sub_tl
, tcg_gen_sub_tl
);
1549 gen_msubs_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1550 TCGv r3
, uint32_t n
, uint32_t mode
)
1552 TCGv t_n
= tcg_constant_i32(n
);
1553 TCGv temp
= tcg_temp_new();
1554 TCGv temp2
= tcg_temp_new();
1555 TCGv temp3
= tcg_temp_new();
1556 TCGv_i64 temp64
= tcg_temp_new_i64();
1560 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1563 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1566 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1569 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1572 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
1573 gen_subs(ret_low
, r1_low
, temp
);
1574 tcg_gen_mov_tl(temp
, cpu_PSW_V
);
1575 tcg_gen_mov_tl(temp3
, cpu_PSW_AV
);
1576 gen_subs(ret_high
, r1_high
, temp2
);
1577 /* combine v bits */
1578 tcg_gen_or_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1579 /* combine av bits */
1580 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp3
);
1584 gen_msubm_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1585 TCGv r3
, uint32_t n
, uint32_t mode
)
1587 TCGv t_n
= tcg_constant_i32(n
);
1588 TCGv_i64 temp64
= tcg_temp_new_i64();
1589 TCGv_i64 temp64_2
= tcg_temp_new_i64();
1590 TCGv_i64 temp64_3
= tcg_temp_new_i64();
1593 GEN_HELPER_LL(mulm_h
, temp64
, r2
, r3
, t_n
);
1596 GEN_HELPER_LU(mulm_h
, temp64
, r2
, r3
, t_n
);
1599 GEN_HELPER_UL(mulm_h
, temp64
, r2
, r3
, t_n
);
1602 GEN_HELPER_UU(mulm_h
, temp64
, r2
, r3
, t_n
);
1605 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
1606 gen_sub64_d(temp64_3
, temp64_2
, temp64
);
1607 /* write back result */
1608 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64_3
);
1612 gen_msubms_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1613 TCGv r3
, uint32_t n
, uint32_t mode
)
1615 TCGv t_n
= tcg_constant_i32(n
);
1616 TCGv_i64 temp64
= tcg_temp_new_i64();
1617 TCGv_i64 temp64_2
= tcg_temp_new_i64();
1620 GEN_HELPER_LL(mulm_h
, temp64
, r2
, r3
, t_n
);
1623 GEN_HELPER_LU(mulm_h
, temp64
, r2
, r3
, t_n
);
1626 GEN_HELPER_UL(mulm_h
, temp64
, r2
, r3
, t_n
);
1629 GEN_HELPER_UU(mulm_h
, temp64
, r2
, r3
, t_n
);
1632 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
1633 gen_helper_sub64_ssov(temp64
, cpu_env
, temp64_2
, temp64
);
1634 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
1638 gen_msubr64_h(TCGv ret
, TCGv r1_low
, TCGv r1_high
, TCGv r2
, TCGv r3
, uint32_t n
,
1641 TCGv t_n
= tcg_constant_i32(n
);
1642 TCGv_i64 temp64
= tcg_temp_new_i64();
1645 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1648 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1651 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1654 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1657 gen_helper_subr_h(ret
, cpu_env
, temp64
, r1_low
, r1_high
);
1661 gen_msubr32_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
1663 TCGv temp
= tcg_temp_new();
1664 TCGv temp2
= tcg_temp_new();
1666 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
1667 tcg_gen_shli_tl(temp
, r1
, 16);
1668 gen_msubr64_h(ret
, temp
, temp2
, r2
, r3
, n
, mode
);
1672 gen_msubr64s_h(TCGv ret
, TCGv r1_low
, TCGv r1_high
, TCGv r2
, TCGv r3
,
1673 uint32_t n
, uint32_t mode
)
1675 TCGv t_n
= tcg_constant_i32(n
);
1676 TCGv_i64 temp64
= tcg_temp_new_i64();
1679 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1682 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1685 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1688 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1691 gen_helper_subr_h_ssov(ret
, cpu_env
, temp64
, r1_low
, r1_high
);
1695 gen_msubr32s_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
1697 TCGv temp
= tcg_temp_new();
1698 TCGv temp2
= tcg_temp_new();
1700 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
1701 tcg_gen_shli_tl(temp
, r1
, 16);
1702 gen_msubr64s_h(ret
, temp
, temp2
, r2
, r3
, n
, mode
);
1706 gen_msubr_q(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
)
1708 TCGv temp
= tcg_constant_i32(n
);
1709 gen_helper_msubr_q(ret
, cpu_env
, r1
, r2
, r3
, temp
);
1713 gen_msubrs_q(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
)
1715 TCGv temp
= tcg_constant_i32(n
);
1716 gen_helper_msubr_q_ssov(ret
, cpu_env
, r1
, r2
, r3
, temp
);
1720 gen_msub32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
,
1723 TCGv temp3
= tcg_temp_new();
1724 TCGv_i64 t1
= tcg_temp_new_i64();
1725 TCGv_i64 t2
= tcg_temp_new_i64();
1726 TCGv_i64 t3
= tcg_temp_new_i64();
1727 TCGv_i64 t4
= tcg_temp_new_i64();
1729 tcg_gen_ext_i32_i64(t2
, arg2
);
1730 tcg_gen_ext_i32_i64(t3
, arg3
);
1732 tcg_gen_mul_i64(t2
, t2
, t3
);
1734 tcg_gen_ext_i32_i64(t1
, arg1
);
1735 /* if we shift part of the fraction out, we need to round up */
1736 tcg_gen_andi_i64(t4
, t2
, (1ll << (up_shift
- n
)) - 1);
1737 tcg_gen_setcondi_i64(TCG_COND_NE
, t4
, t4
, 0);
1738 tcg_gen_sari_i64(t2
, t2
, up_shift
- n
);
1739 tcg_gen_add_i64(t2
, t2
, t4
);
1741 tcg_gen_sub_i64(t3
, t1
, t2
);
1742 tcg_gen_extrl_i64_i32(temp3
, t3
);
1744 tcg_gen_setcondi_i64(TCG_COND_GT
, t1
, t3
, 0x7fffffffLL
);
1745 tcg_gen_setcondi_i64(TCG_COND_LT
, t2
, t3
, -0x80000000LL
);
1746 tcg_gen_or_i64(t1
, t1
, t2
);
1747 tcg_gen_extrl_i64_i32(cpu_PSW_V
, t1
);
1748 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
1750 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1751 /* Calc AV/SAV bits */
1752 tcg_gen_add_tl(cpu_PSW_AV
, temp3
, temp3
);
1753 tcg_gen_xor_tl(cpu_PSW_AV
, temp3
, cpu_PSW_AV
);
1755 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1756 /* write back result */
1757 tcg_gen_mov_tl(ret
, temp3
);
1761 gen_m16sub32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
)
1763 TCGv temp
= tcg_temp_new();
1764 TCGv temp2
= tcg_temp_new();
1766 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1767 } else { /* n is expected to be 1 */
1768 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1769 tcg_gen_shli_tl(temp
, temp
, 1);
1770 /* catch special case r1 = r2 = 0x8000 */
1771 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1772 tcg_gen_sub_tl(temp
, temp
, temp2
);
1774 gen_sub_d(ret
, arg1
, temp
);
1778 gen_m16subs32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
)
1780 TCGv temp
= tcg_temp_new();
1781 TCGv temp2
= tcg_temp_new();
1783 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1784 } else { /* n is expected to be 1 */
1785 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1786 tcg_gen_shli_tl(temp
, temp
, 1);
1787 /* catch special case r1 = r2 = 0x8000 */
1788 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1789 tcg_gen_sub_tl(temp
, temp
, temp2
);
1791 gen_subs(ret
, arg1
, temp
);
1795 gen_m16sub64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1796 TCGv arg3
, uint32_t n
)
1798 TCGv temp
= tcg_temp_new();
1799 TCGv temp2
= tcg_temp_new();
1800 TCGv_i64 t1
= tcg_temp_new_i64();
1801 TCGv_i64 t2
= tcg_temp_new_i64();
1802 TCGv_i64 t3
= tcg_temp_new_i64();
1805 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1806 } else { /* n is expected to be 1 */
1807 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1808 tcg_gen_shli_tl(temp
, temp
, 1);
1809 /* catch special case r1 = r2 = 0x8000 */
1810 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1811 tcg_gen_sub_tl(temp
, temp
, temp2
);
1813 tcg_gen_ext_i32_i64(t2
, temp
);
1814 tcg_gen_shli_i64(t2
, t2
, 16);
1815 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1816 gen_sub64_d(t3
, t1
, t2
);
1817 /* write back result */
1818 tcg_gen_extr_i64_i32(rl
, rh
, t3
);
1822 gen_m16subs64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1823 TCGv arg3
, uint32_t n
)
1825 TCGv temp
= tcg_temp_new();
1826 TCGv temp2
= tcg_temp_new();
1827 TCGv_i64 t1
= tcg_temp_new_i64();
1828 TCGv_i64 t2
= tcg_temp_new_i64();
1831 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1832 } else { /* n is expected to be 1 */
1833 tcg_gen_mul_tl(temp
, arg2
, arg3
);
1834 tcg_gen_shli_tl(temp
, temp
, 1);
1835 /* catch special case r1 = r2 = 0x8000 */
1836 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, temp
, 0x80000000);
1837 tcg_gen_sub_tl(temp
, temp
, temp2
);
1839 tcg_gen_ext_i32_i64(t2
, temp
);
1840 tcg_gen_shli_i64(t2
, t2
, 16);
1841 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1843 gen_helper_sub64_ssov(t1
, cpu_env
, t1
, t2
);
1844 tcg_gen_extr_i64_i32(rl
, rh
, t1
);
1848 gen_msub64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1849 TCGv arg3
, uint32_t n
)
1851 TCGv_i64 t1
= tcg_temp_new_i64();
1852 TCGv_i64 t2
= tcg_temp_new_i64();
1853 TCGv_i64 t3
= tcg_temp_new_i64();
1854 TCGv_i64 t4
= tcg_temp_new_i64();
1857 tcg_gen_concat_i32_i64(t1
, arg1_low
, arg1_high
);
1858 tcg_gen_ext_i32_i64(t2
, arg2
);
1859 tcg_gen_ext_i32_i64(t3
, arg3
);
1861 tcg_gen_mul_i64(t2
, t2
, t3
);
1863 tcg_gen_shli_i64(t2
, t2
, 1);
1865 tcg_gen_sub_i64(t4
, t1
, t2
);
1867 tcg_gen_xor_i64(t3
, t4
, t1
);
1868 tcg_gen_xor_i64(t2
, t1
, t2
);
1869 tcg_gen_and_i64(t3
, t3
, t2
);
1870 tcg_gen_extrh_i64_i32(cpu_PSW_V
, t3
);
1871 /* We produce an overflow on the host if the mul before was
1872 (0x80000000 * 0x80000000) << 1). If this is the
1873 case, we negate the ovf. */
1875 temp
= tcg_temp_new();
1876 temp2
= tcg_temp_new();
1877 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, arg2
, 0x80000000);
1878 tcg_gen_setcond_tl(TCG_COND_EQ
, temp2
, arg2
, arg3
);
1879 tcg_gen_and_tl(temp
, temp
, temp2
);
1880 tcg_gen_shli_tl(temp
, temp
, 31);
1881 /* negate v bit, if special condition */
1882 tcg_gen_xor_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
1884 /* write back result */
1885 tcg_gen_extr_i64_i32(rl
, rh
, t4
);
1887 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
1888 /* Calc AV/SAV bits */
1889 tcg_gen_add_tl(cpu_PSW_AV
, rh
, rh
);
1890 tcg_gen_xor_tl(cpu_PSW_AV
, rh
, cpu_PSW_AV
);
1892 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
1896 gen_msubs32_q(TCGv ret
, TCGv arg1
, TCGv arg2
, TCGv arg3
, uint32_t n
,
1899 TCGv_i64 t1
= tcg_temp_new_i64();
1900 TCGv_i64 t2
= tcg_temp_new_i64();
1901 TCGv_i64 t3
= tcg_temp_new_i64();
1902 TCGv_i64 t4
= tcg_temp_new_i64();
1904 tcg_gen_ext_i32_i64(t1
, arg1
);
1905 tcg_gen_ext_i32_i64(t2
, arg2
);
1906 tcg_gen_ext_i32_i64(t3
, arg3
);
1908 tcg_gen_mul_i64(t2
, t2
, t3
);
1909 /* if we shift part of the fraction out, we need to round up */
1910 tcg_gen_andi_i64(t4
, t2
, (1ll << (up_shift
- n
)) - 1);
1911 tcg_gen_setcondi_i64(TCG_COND_NE
, t4
, t4
, 0);
1912 tcg_gen_sari_i64(t3
, t2
, up_shift
- n
);
1913 tcg_gen_add_i64(t3
, t3
, t4
);
1915 gen_helper_msub32_q_sub_ssov(ret
, cpu_env
, t1
, t3
);
1919 gen_msubs64_q(TCGv rl
, TCGv rh
, TCGv arg1_low
, TCGv arg1_high
, TCGv arg2
,
1920 TCGv arg3
, uint32_t n
)
1922 TCGv_i64 r1
= tcg_temp_new_i64();
1923 TCGv t_n
= tcg_constant_i32(n
);
1925 tcg_gen_concat_i32_i64(r1
, arg1_low
, arg1_high
);
1926 gen_helper_msub64_q_ssov(r1
, cpu_env
, r1
, arg2
, arg3
, t_n
);
1927 tcg_gen_extr_i64_i32(rl
, rh
, r1
);
1931 gen_msubad_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1932 TCGv r3
, uint32_t n
, uint32_t mode
)
1934 TCGv t_n
= tcg_constant_i32(n
);
1935 TCGv temp
= tcg_temp_new();
1936 TCGv temp2
= tcg_temp_new();
1937 TCGv_i64 temp64
= tcg_temp_new_i64();
1940 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1943 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1946 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1949 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1952 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
1953 gen_addsub64_h(ret_low
, ret_high
, r1_low
, r1_high
, temp
, temp2
,
1954 tcg_gen_add_tl
, tcg_gen_sub_tl
);
1958 gen_msubadm_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
1959 TCGv r3
, uint32_t n
, uint32_t mode
)
1961 TCGv t_n
= tcg_constant_i32(n
);
1962 TCGv_i64 temp64
= tcg_temp_new_i64();
1963 TCGv_i64 temp64_2
= tcg_temp_new_i64();
1964 TCGv_i64 temp64_3
= tcg_temp_new_i64();
1967 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
1970 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
1973 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
1976 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
1979 tcg_gen_concat_i32_i64(temp64_3
, r1_low
, r1_high
);
1980 tcg_gen_sari_i64(temp64_2
, temp64
, 32); /* high */
1981 tcg_gen_ext32s_i64(temp64
, temp64
); /* low */
1982 tcg_gen_sub_i64(temp64
, temp64_2
, temp64
);
1983 tcg_gen_shli_i64(temp64
, temp64
, 16);
1985 gen_sub64_d(temp64_2
, temp64_3
, temp64
);
1986 /* write back result */
1987 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64_2
);
1991 gen_msubadr32_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
1993 TCGv t_n
= tcg_constant_i32(n
);
1994 TCGv temp
= tcg_temp_new();
1995 TCGv temp2
= tcg_temp_new();
1996 TCGv_i64 temp64
= tcg_temp_new_i64();
1999 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
2002 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
2005 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
2008 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
2011 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
2012 tcg_gen_shli_tl(temp
, r1
, 16);
2013 gen_helper_subadr_h(ret
, cpu_env
, temp64
, temp
, temp2
);
2017 gen_msubads_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
2018 TCGv r3
, uint32_t n
, uint32_t mode
)
2020 TCGv t_n
= tcg_constant_i32(n
);
2021 TCGv temp
= tcg_temp_new();
2022 TCGv temp2
= tcg_temp_new();
2023 TCGv temp3
= tcg_temp_new();
2024 TCGv_i64 temp64
= tcg_temp_new_i64();
2028 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
2031 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
2034 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
2037 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
2040 tcg_gen_extr_i64_i32(temp
, temp2
, temp64
);
2041 gen_adds(ret_low
, r1_low
, temp
);
2042 tcg_gen_mov_tl(temp
, cpu_PSW_V
);
2043 tcg_gen_mov_tl(temp3
, cpu_PSW_AV
);
2044 gen_subs(ret_high
, r1_high
, temp2
);
2045 /* combine v bits */
2046 tcg_gen_or_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
2047 /* combine av bits */
2048 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp3
);
2052 gen_msubadms_h(TCGv ret_low
, TCGv ret_high
, TCGv r1_low
, TCGv r1_high
, TCGv r2
,
2053 TCGv r3
, uint32_t n
, uint32_t mode
)
2055 TCGv t_n
= tcg_constant_i32(n
);
2056 TCGv_i64 temp64
= tcg_temp_new_i64();
2057 TCGv_i64 temp64_2
= tcg_temp_new_i64();
2061 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
2064 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
2067 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
2070 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
2073 tcg_gen_sari_i64(temp64_2
, temp64
, 32); /* high */
2074 tcg_gen_ext32s_i64(temp64
, temp64
); /* low */
2075 tcg_gen_sub_i64(temp64
, temp64_2
, temp64
);
2076 tcg_gen_shli_i64(temp64
, temp64
, 16);
2077 tcg_gen_concat_i32_i64(temp64_2
, r1_low
, r1_high
);
2079 gen_helper_sub64_ssov(temp64
, cpu_env
, temp64_2
, temp64
);
2080 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
2084 gen_msubadr32s_h(TCGv ret
, TCGv r1
, TCGv r2
, TCGv r3
, uint32_t n
, uint32_t mode
)
2086 TCGv t_n
= tcg_constant_i32(n
);
2087 TCGv temp
= tcg_temp_new();
2088 TCGv temp2
= tcg_temp_new();
2089 TCGv_i64 temp64
= tcg_temp_new_i64();
2092 GEN_HELPER_LL(mul_h
, temp64
, r2
, r3
, t_n
);
2095 GEN_HELPER_LU(mul_h
, temp64
, r2
, r3
, t_n
);
2098 GEN_HELPER_UL(mul_h
, temp64
, r2
, r3
, t_n
);
2101 GEN_HELPER_UU(mul_h
, temp64
, r2
, r3
, t_n
);
2104 tcg_gen_andi_tl(temp2
, r1
, 0xffff0000);
2105 tcg_gen_shli_tl(temp
, r1
, 16);
2106 gen_helper_subadr_h_ssov(ret
, cpu_env
, temp64
, temp
, temp2
);
2109 static inline void gen_abs(TCGv ret
, TCGv r1
)
2111 tcg_gen_abs_tl(ret
, r1
);
2112 /* overflow can only happen, if r1 = 0x80000000 */
2113 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, r1
, 0x80000000);
2114 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
2116 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2118 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
2119 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
2121 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2124 static inline void gen_absdif(TCGv ret
, TCGv r1
, TCGv r2
)
2126 TCGv temp
= tcg_temp_new_i32();
2127 TCGv result
= tcg_temp_new_i32();
2129 tcg_gen_sub_tl(result
, r1
, r2
);
2130 tcg_gen_sub_tl(temp
, r2
, r1
);
2131 tcg_gen_movcond_tl(TCG_COND_GT
, result
, r1
, r2
, result
, temp
);
2134 tcg_gen_xor_tl(cpu_PSW_V
, result
, r1
);
2135 tcg_gen_xor_tl(temp
, result
, r2
);
2136 tcg_gen_movcond_tl(TCG_COND_GT
, cpu_PSW_V
, r1
, r2
, cpu_PSW_V
, temp
);
2137 tcg_gen_xor_tl(temp
, r1
, r2
);
2138 tcg_gen_and_tl(cpu_PSW_V
, cpu_PSW_V
, temp
);
2140 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2142 tcg_gen_add_tl(cpu_PSW_AV
, result
, result
);
2143 tcg_gen_xor_tl(cpu_PSW_AV
, result
, cpu_PSW_AV
);
2145 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2146 /* write back result */
2147 tcg_gen_mov_tl(ret
, result
);
2150 static inline void gen_absdifi(TCGv ret
, TCGv r1
, int32_t con
)
2152 TCGv temp
= tcg_constant_i32(con
);
2153 gen_absdif(ret
, r1
, temp
);
2156 static inline void gen_absdifsi(TCGv ret
, TCGv r1
, int32_t con
)
2158 TCGv temp
= tcg_constant_i32(con
);
2159 gen_helper_absdif_ssov(ret
, cpu_env
, r1
, temp
);
2162 static inline void gen_mul_i32s(TCGv ret
, TCGv r1
, TCGv r2
)
2164 TCGv high
= tcg_temp_new();
2165 TCGv low
= tcg_temp_new();
2167 tcg_gen_muls2_tl(low
, high
, r1
, r2
);
2168 tcg_gen_mov_tl(ret
, low
);
2170 tcg_gen_sari_tl(low
, low
, 31);
2171 tcg_gen_setcond_tl(TCG_COND_NE
, cpu_PSW_V
, high
, low
);
2172 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
2174 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2176 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
2177 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
2179 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2182 static inline void gen_muli_i32s(TCGv ret
, TCGv r1
, int32_t con
)
2184 TCGv temp
= tcg_constant_i32(con
);
2185 gen_mul_i32s(ret
, r1
, temp
);
2188 static inline void gen_mul_i64s(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2
)
2190 tcg_gen_muls2_tl(ret_low
, ret_high
, r1
, r2
);
2192 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2194 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2196 tcg_gen_add_tl(cpu_PSW_AV
, ret_high
, ret_high
);
2197 tcg_gen_xor_tl(cpu_PSW_AV
, ret_high
, cpu_PSW_AV
);
2199 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2202 static inline void gen_muli_i64s(TCGv ret_low
, TCGv ret_high
, TCGv r1
,
2205 TCGv temp
= tcg_constant_i32(con
);
2206 gen_mul_i64s(ret_low
, ret_high
, r1
, temp
);
2209 static inline void gen_mul_i64u(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2
)
2211 tcg_gen_mulu2_tl(ret_low
, ret_high
, r1
, r2
);
2213 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2215 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2217 tcg_gen_add_tl(cpu_PSW_AV
, ret_high
, ret_high
);
2218 tcg_gen_xor_tl(cpu_PSW_AV
, ret_high
, cpu_PSW_AV
);
2220 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2223 static inline void gen_muli_i64u(TCGv ret_low
, TCGv ret_high
, TCGv r1
,
2226 TCGv temp
= tcg_constant_i32(con
);
2227 gen_mul_i64u(ret_low
, ret_high
, r1
, temp
);
2230 static inline void gen_mulsi_i32(TCGv ret
, TCGv r1
, int32_t con
)
2232 TCGv temp
= tcg_constant_i32(con
);
2233 gen_helper_mul_ssov(ret
, cpu_env
, r1
, temp
);
2236 static inline void gen_mulsui_i32(TCGv ret
, TCGv r1
, int32_t con
)
2238 TCGv temp
= tcg_constant_i32(con
);
2239 gen_helper_mul_suov(ret
, cpu_env
, r1
, temp
);
2242 /* gen_maddsi_32(cpu_gpr_d[r4], cpu_gpr_d[r1], cpu_gpr_d[r3], const9); */
2243 static inline void gen_maddsi_32(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
2245 TCGv temp
= tcg_constant_i32(con
);
2246 gen_helper_madd32_ssov(ret
, cpu_env
, r1
, r2
, temp
);
2249 static inline void gen_maddsui_32(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
2251 TCGv temp
= tcg_constant_i32(con
);
2252 gen_helper_madd32_suov(ret
, cpu_env
, r1
, r2
, temp
);
2256 gen_mul_q(TCGv rl
, TCGv rh
, TCGv arg1
, TCGv arg2
, uint32_t n
, uint32_t up_shift
)
2258 TCGv_i64 temp_64
= tcg_temp_new_i64();
2259 TCGv_i64 temp2_64
= tcg_temp_new_i64();
2262 if (up_shift
== 32) {
2263 tcg_gen_muls2_tl(rh
, rl
, arg1
, arg2
);
2264 } else if (up_shift
== 16) {
2265 tcg_gen_ext_i32_i64(temp_64
, arg1
);
2266 tcg_gen_ext_i32_i64(temp2_64
, arg2
);
2268 tcg_gen_mul_i64(temp_64
, temp_64
, temp2_64
);
2269 tcg_gen_shri_i64(temp_64
, temp_64
, up_shift
);
2270 tcg_gen_extr_i64_i32(rl
, rh
, temp_64
);
2272 tcg_gen_muls2_tl(rl
, rh
, arg1
, arg2
);
2275 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2276 } else { /* n is expected to be 1 */
2277 tcg_gen_ext_i32_i64(temp_64
, arg1
);
2278 tcg_gen_ext_i32_i64(temp2_64
, arg2
);
2280 tcg_gen_mul_i64(temp_64
, temp_64
, temp2_64
);
2282 if (up_shift
== 0) {
2283 tcg_gen_shli_i64(temp_64
, temp_64
, 1);
2285 tcg_gen_shri_i64(temp_64
, temp_64
, up_shift
- 1);
2287 tcg_gen_extr_i64_i32(rl
, rh
, temp_64
);
2288 /* overflow only occurs if r1 = r2 = 0x8000 */
2289 if (up_shift
== 0) {/* result is 64 bit */
2290 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, rh
,
2292 } else { /* result is 32 bit */
2293 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, rl
,
2296 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
2297 /* calc sv overflow bit */
2298 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
2300 /* calc av overflow bit */
2301 if (up_shift
== 0) {
2302 tcg_gen_add_tl(cpu_PSW_AV
, rh
, rh
);
2303 tcg_gen_xor_tl(cpu_PSW_AV
, rh
, cpu_PSW_AV
);
2305 tcg_gen_add_tl(cpu_PSW_AV
, rl
, rl
);
2306 tcg_gen_xor_tl(cpu_PSW_AV
, rl
, cpu_PSW_AV
);
2308 /* calc sav overflow bit */
2309 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2313 gen_mul_q_16(TCGv ret
, TCGv arg1
, TCGv arg2
, uint32_t n
)
2315 TCGv temp
= tcg_temp_new();
2317 tcg_gen_mul_tl(ret
, arg1
, arg2
);
2318 } else { /* n is expected to be 1 */
2319 tcg_gen_mul_tl(ret
, arg1
, arg2
);
2320 tcg_gen_shli_tl(ret
, ret
, 1);
2321 /* catch special case r1 = r2 = 0x8000 */
2322 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, ret
, 0x80000000);
2323 tcg_gen_sub_tl(ret
, ret
, temp
);
2326 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2327 /* calc av overflow bit */
2328 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
2329 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
2330 /* calc sav overflow bit */
2331 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2334 static void gen_mulr_q(TCGv ret
, TCGv arg1
, TCGv arg2
, uint32_t n
)
2336 TCGv temp
= tcg_temp_new();
2338 tcg_gen_mul_tl(ret
, arg1
, arg2
);
2339 tcg_gen_addi_tl(ret
, ret
, 0x8000);
2341 tcg_gen_mul_tl(ret
, arg1
, arg2
);
2342 tcg_gen_shli_tl(ret
, ret
, 1);
2343 tcg_gen_addi_tl(ret
, ret
, 0x8000);
2344 /* catch special case r1 = r2 = 0x8000 */
2345 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, ret
, 0x80008000);
2346 tcg_gen_muli_tl(temp
, temp
, 0x8001);
2347 tcg_gen_sub_tl(ret
, ret
, temp
);
2350 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2351 /* calc av overflow bit */
2352 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
2353 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
2354 /* calc sav overflow bit */
2355 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2356 /* cut halfword off */
2357 tcg_gen_andi_tl(ret
, ret
, 0xffff0000);
2361 gen_madds_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2364 TCGv_i64 temp64
= tcg_temp_new_i64();
2365 tcg_gen_concat_i32_i64(temp64
, r2_low
, r2_high
);
2366 gen_helper_madd64_ssov(temp64
, cpu_env
, r1
, temp64
, r3
);
2367 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
2371 gen_maddsi_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2374 TCGv temp
= tcg_constant_i32(con
);
2375 gen_madds_64(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
2379 gen_maddsu_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2382 TCGv_i64 temp64
= tcg_temp_new_i64();
2383 tcg_gen_concat_i32_i64(temp64
, r2_low
, r2_high
);
2384 gen_helper_madd64_suov(temp64
, cpu_env
, r1
, temp64
, r3
);
2385 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
2389 gen_maddsui_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2392 TCGv temp
= tcg_constant_i32(con
);
2393 gen_maddsu_64(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
2396 static inline void gen_msubsi_32(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
2398 TCGv temp
= tcg_constant_i32(con
);
2399 gen_helper_msub32_ssov(ret
, cpu_env
, r1
, r2
, temp
);
2402 static inline void gen_msubsui_32(TCGv ret
, TCGv r1
, TCGv r2
, int32_t con
)
2404 TCGv temp
= tcg_constant_i32(con
);
2405 gen_helper_msub32_suov(ret
, cpu_env
, r1
, r2
, temp
);
2409 gen_msubs_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2412 TCGv_i64 temp64
= tcg_temp_new_i64();
2413 tcg_gen_concat_i32_i64(temp64
, r2_low
, r2_high
);
2414 gen_helper_msub64_ssov(temp64
, cpu_env
, r1
, temp64
, r3
);
2415 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
2419 gen_msubsi_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2422 TCGv temp
= tcg_constant_i32(con
);
2423 gen_msubs_64(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
2427 gen_msubsu_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2430 TCGv_i64 temp64
= tcg_temp_new_i64();
2431 tcg_gen_concat_i32_i64(temp64
, r2_low
, r2_high
);
2432 gen_helper_msub64_suov(temp64
, cpu_env
, r1
, temp64
, r3
);
2433 tcg_gen_extr_i64_i32(ret_low
, ret_high
, temp64
);
2437 gen_msubsui_64(TCGv ret_low
, TCGv ret_high
, TCGv r1
, TCGv r2_low
, TCGv r2_high
,
2440 TCGv temp
= tcg_constant_i32(con
);
2441 gen_msubsu_64(ret_low
, ret_high
, r1
, r2_low
, r2_high
, temp
);
2444 static void gen_saturate(TCGv ret
, TCGv arg
, int32_t up
, int32_t low
)
2446 tcg_gen_smax_tl(ret
, arg
, tcg_constant_i32(low
));
2447 tcg_gen_smin_tl(ret
, ret
, tcg_constant_i32(up
));
2450 static void gen_saturate_u(TCGv ret
, TCGv arg
, int32_t up
)
2452 tcg_gen_umin_tl(ret
, arg
, tcg_constant_i32(up
));
2455 static void gen_shi(TCGv ret
, TCGv r1
, int32_t shift_count
)
2457 if (shift_count
== -32) {
2458 tcg_gen_movi_tl(ret
, 0);
2459 } else if (shift_count
>= 0) {
2460 tcg_gen_shli_tl(ret
, r1
, shift_count
);
2462 tcg_gen_shri_tl(ret
, r1
, -shift_count
);
2466 static void gen_sh_hi(TCGv ret
, TCGv r1
, int32_t shiftcount
)
2468 TCGv temp_low
, temp_high
;
2470 if (shiftcount
== -16) {
2471 tcg_gen_movi_tl(ret
, 0);
2473 temp_high
= tcg_temp_new();
2474 temp_low
= tcg_temp_new();
2476 tcg_gen_andi_tl(temp_low
, r1
, 0xffff);
2477 tcg_gen_andi_tl(temp_high
, r1
, 0xffff0000);
2478 gen_shi(temp_low
, temp_low
, shiftcount
);
2479 gen_shi(ret
, temp_high
, shiftcount
);
2480 tcg_gen_deposit_tl(ret
, ret
, temp_low
, 0, 16);
2484 static void gen_shaci(TCGv ret
, TCGv r1
, int32_t shift_count
)
2486 uint32_t msk
, msk_start
;
2487 TCGv temp
= tcg_temp_new();
2488 TCGv temp2
= tcg_temp_new();
2490 if (shift_count
== 0) {
2491 /* Clear PSW.C and PSW.V */
2492 tcg_gen_movi_tl(cpu_PSW_C
, 0);
2493 tcg_gen_mov_tl(cpu_PSW_V
, cpu_PSW_C
);
2494 tcg_gen_mov_tl(ret
, r1
);
2495 } else if (shift_count
== -32) {
2497 tcg_gen_mov_tl(cpu_PSW_C
, r1
);
2498 /* fill ret completely with sign bit */
2499 tcg_gen_sari_tl(ret
, r1
, 31);
2501 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2502 } else if (shift_count
> 0) {
2503 TCGv t_max
= tcg_constant_i32(0x7FFFFFFF >> shift_count
);
2504 TCGv t_min
= tcg_constant_i32(((int32_t) -0x80000000) >> shift_count
);
2507 msk_start
= 32 - shift_count
;
2508 msk
= ((1 << shift_count
) - 1) << msk_start
;
2509 tcg_gen_andi_tl(cpu_PSW_C
, r1
, msk
);
2510 /* calc v/sv bits */
2511 tcg_gen_setcond_tl(TCG_COND_GT
, temp
, r1
, t_max
);
2512 tcg_gen_setcond_tl(TCG_COND_LT
, temp2
, r1
, t_min
);
2513 tcg_gen_or_tl(cpu_PSW_V
, temp
, temp2
);
2514 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
2516 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_V
, cpu_PSW_SV
);
2518 tcg_gen_shli_tl(ret
, r1
, shift_count
);
2521 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2523 msk
= (1 << -shift_count
) - 1;
2524 tcg_gen_andi_tl(cpu_PSW_C
, r1
, msk
);
2526 tcg_gen_sari_tl(ret
, r1
, -shift_count
);
2528 /* calc av overflow bit */
2529 tcg_gen_add_tl(cpu_PSW_AV
, ret
, ret
);
2530 tcg_gen_xor_tl(cpu_PSW_AV
, ret
, cpu_PSW_AV
);
2531 /* calc sav overflow bit */
2532 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2535 static void gen_shas(TCGv ret
, TCGv r1
, TCGv r2
)
2537 gen_helper_sha_ssov(ret
, cpu_env
, r1
, r2
);
2540 static void gen_shasi(TCGv ret
, TCGv r1
, int32_t con
)
2542 TCGv temp
= tcg_constant_i32(con
);
2543 gen_shas(ret
, r1
, temp
);
2546 static void gen_sha_hi(TCGv ret
, TCGv r1
, int32_t shift_count
)
2550 if (shift_count
== 0) {
2551 tcg_gen_mov_tl(ret
, r1
);
2552 } else if (shift_count
> 0) {
2553 low
= tcg_temp_new();
2554 high
= tcg_temp_new();
2556 tcg_gen_andi_tl(high
, r1
, 0xffff0000);
2557 tcg_gen_shli_tl(low
, r1
, shift_count
);
2558 tcg_gen_shli_tl(ret
, high
, shift_count
);
2559 tcg_gen_deposit_tl(ret
, ret
, low
, 0, 16);
2561 low
= tcg_temp_new();
2562 high
= tcg_temp_new();
2564 tcg_gen_ext16s_tl(low
, r1
);
2565 tcg_gen_sari_tl(low
, low
, -shift_count
);
2566 tcg_gen_sari_tl(ret
, r1
, -shift_count
);
2567 tcg_gen_deposit_tl(ret
, ret
, low
, 0, 16);
2571 /* ret = {ret[30:0], (r1 cond r2)}; */
2572 static void gen_sh_cond(int cond
, TCGv ret
, TCGv r1
, TCGv r2
)
2574 TCGv temp
= tcg_temp_new();
2575 TCGv temp2
= tcg_temp_new();
2577 tcg_gen_shli_tl(temp
, ret
, 1);
2578 tcg_gen_setcond_tl(cond
, temp2
, r1
, r2
);
2579 tcg_gen_or_tl(ret
, temp
, temp2
);
2582 static void gen_sh_condi(int cond
, TCGv ret
, TCGv r1
, int32_t con
)
2584 TCGv temp
= tcg_constant_i32(con
);
2585 gen_sh_cond(cond
, ret
, r1
, temp
);
2588 static inline void gen_adds(TCGv ret
, TCGv r1
, TCGv r2
)
2590 gen_helper_add_ssov(ret
, cpu_env
, r1
, r2
);
2593 static inline void gen_addsi(TCGv ret
, TCGv r1
, int32_t con
)
2595 TCGv temp
= tcg_constant_i32(con
);
2596 gen_helper_add_ssov(ret
, cpu_env
, r1
, temp
);
2599 static inline void gen_addsui(TCGv ret
, TCGv r1
, int32_t con
)
2601 TCGv temp
= tcg_constant_i32(con
);
2602 gen_helper_add_suov(ret
, cpu_env
, r1
, temp
);
2605 static inline void gen_subs(TCGv ret
, TCGv r1
, TCGv r2
)
2607 gen_helper_sub_ssov(ret
, cpu_env
, r1
, r2
);
2610 static inline void gen_subsu(TCGv ret
, TCGv r1
, TCGv r2
)
2612 gen_helper_sub_suov(ret
, cpu_env
, r1
, r2
);
2615 static inline void gen_bit_2op(TCGv ret
, TCGv r1
, TCGv r2
,
2617 void(*op1
)(TCGv
, TCGv
, TCGv
),
2618 void(*op2
)(TCGv
, TCGv
, TCGv
))
2622 temp1
= tcg_temp_new();
2623 temp2
= tcg_temp_new();
2625 tcg_gen_shri_tl(temp2
, r2
, pos2
);
2626 tcg_gen_shri_tl(temp1
, r1
, pos1
);
2628 (*op1
)(temp1
, temp1
, temp2
);
2629 (*op2
)(temp1
, ret
, temp1
);
2631 tcg_gen_deposit_tl(ret
, ret
, temp1
, 0, 1);
2634 /* ret = r1[pos1] op1 r2[pos2]; */
2635 static inline void gen_bit_1op(TCGv ret
, TCGv r1
, TCGv r2
,
2637 void(*op1
)(TCGv
, TCGv
, TCGv
))
2641 temp1
= tcg_temp_new();
2642 temp2
= tcg_temp_new();
2644 tcg_gen_shri_tl(temp2
, r2
, pos2
);
2645 tcg_gen_shri_tl(temp1
, r1
, pos1
);
2647 (*op1
)(ret
, temp1
, temp2
);
2649 tcg_gen_andi_tl(ret
, ret
, 0x1);
2652 static inline void gen_accumulating_cond(int cond
, TCGv ret
, TCGv r1
, TCGv r2
,
2653 void(*op
)(TCGv
, TCGv
, TCGv
))
2655 TCGv temp
= tcg_temp_new();
2656 TCGv temp2
= tcg_temp_new();
2657 /* temp = (arg1 cond arg2 )*/
2658 tcg_gen_setcond_tl(cond
, temp
, r1
, r2
);
2660 tcg_gen_andi_tl(temp2
, ret
, 0x1);
2661 /* temp = temp insn temp2 */
2662 (*op
)(temp
, temp
, temp2
);
2663 /* ret = {ret[31:1], temp} */
2664 tcg_gen_deposit_tl(ret
, ret
, temp
, 0, 1);
2668 gen_accumulating_condi(int cond
, TCGv ret
, TCGv r1
, int32_t con
,
2669 void(*op
)(TCGv
, TCGv
, TCGv
))
2671 TCGv temp
= tcg_constant_i32(con
);
2672 gen_accumulating_cond(cond
, ret
, r1
, temp
, op
);
2675 /* ret = (r1 cond r2) ? 0xFFFFFFFF ? 0x00000000;*/
2676 static inline void gen_cond_w(TCGCond cond
, TCGv ret
, TCGv r1
, TCGv r2
)
2678 tcg_gen_setcond_tl(cond
, ret
, r1
, r2
);
2679 tcg_gen_neg_tl(ret
, ret
);
2682 static inline void gen_eqany_bi(TCGv ret
, TCGv r1
, int32_t con
)
2684 TCGv b0
= tcg_temp_new();
2685 TCGv b1
= tcg_temp_new();
2686 TCGv b2
= tcg_temp_new();
2687 TCGv b3
= tcg_temp_new();
2690 tcg_gen_andi_tl(b0
, r1
, 0xff);
2691 tcg_gen_setcondi_tl(TCG_COND_EQ
, b0
, b0
, con
& 0xff);
2694 tcg_gen_andi_tl(b1
, r1
, 0xff00);
2695 tcg_gen_setcondi_tl(TCG_COND_EQ
, b1
, b1
, con
& 0xff00);
2698 tcg_gen_andi_tl(b2
, r1
, 0xff0000);
2699 tcg_gen_setcondi_tl(TCG_COND_EQ
, b2
, b2
, con
& 0xff0000);
2702 tcg_gen_andi_tl(b3
, r1
, 0xff000000);
2703 tcg_gen_setcondi_tl(TCG_COND_EQ
, b3
, b3
, con
& 0xff000000);
2706 tcg_gen_or_tl(ret
, b0
, b1
);
2707 tcg_gen_or_tl(ret
, ret
, b2
);
2708 tcg_gen_or_tl(ret
, ret
, b3
);
2711 static inline void gen_eqany_hi(TCGv ret
, TCGv r1
, int32_t con
)
2713 TCGv h0
= tcg_temp_new();
2714 TCGv h1
= tcg_temp_new();
2717 tcg_gen_andi_tl(h0
, r1
, 0xffff);
2718 tcg_gen_setcondi_tl(TCG_COND_EQ
, h0
, h0
, con
& 0xffff);
2721 tcg_gen_andi_tl(h1
, r1
, 0xffff0000);
2722 tcg_gen_setcondi_tl(TCG_COND_EQ
, h1
, h1
, con
& 0xffff0000);
2725 tcg_gen_or_tl(ret
, h0
, h1
);
2728 /* mask = ((1 << width) -1) << pos;
2729 ret = (r1 & ~mask) | (r2 << pos) & mask); */
2730 static inline void gen_insert(TCGv ret
, TCGv r1
, TCGv r2
, TCGv width
, TCGv pos
)
2732 TCGv mask
= tcg_temp_new();
2733 TCGv temp
= tcg_temp_new();
2734 TCGv temp2
= tcg_temp_new();
2736 tcg_gen_movi_tl(mask
, 1);
2737 tcg_gen_shl_tl(mask
, mask
, width
);
2738 tcg_gen_subi_tl(mask
, mask
, 1);
2739 tcg_gen_shl_tl(mask
, mask
, pos
);
2741 tcg_gen_shl_tl(temp
, r2
, pos
);
2742 tcg_gen_and_tl(temp
, temp
, mask
);
2743 tcg_gen_andc_tl(temp2
, r1
, mask
);
2744 tcg_gen_or_tl(ret
, temp
, temp2
);
2747 static inline void gen_bsplit(TCGv rl
, TCGv rh
, TCGv r1
)
2749 TCGv_i64 temp
= tcg_temp_new_i64();
2751 gen_helper_bsplit(temp
, r1
);
2752 tcg_gen_extr_i64_i32(rl
, rh
, temp
);
2755 static inline void gen_unpack(TCGv rl
, TCGv rh
, TCGv r1
)
2757 TCGv_i64 temp
= tcg_temp_new_i64();
2759 gen_helper_unpack(temp
, r1
);
2760 tcg_gen_extr_i64_i32(rl
, rh
, temp
);
2764 gen_dvinit_b(DisasContext
*ctx
, TCGv rl
, TCGv rh
, TCGv r1
, TCGv r2
)
2766 TCGv_i64 ret
= tcg_temp_new_i64();
2768 if (!has_feature(ctx
, TRICORE_FEATURE_131
)) {
2769 gen_helper_dvinit_b_13(ret
, cpu_env
, r1
, r2
);
2771 gen_helper_dvinit_b_131(ret
, cpu_env
, r1
, r2
);
2773 tcg_gen_extr_i64_i32(rl
, rh
, ret
);
2777 gen_dvinit_h(DisasContext
*ctx
, TCGv rl
, TCGv rh
, TCGv r1
, TCGv r2
)
2779 TCGv_i64 ret
= tcg_temp_new_i64();
2781 if (!has_feature(ctx
, TRICORE_FEATURE_131
)) {
2782 gen_helper_dvinit_h_13(ret
, cpu_env
, r1
, r2
);
2784 gen_helper_dvinit_h_131(ret
, cpu_env
, r1
, r2
);
2786 tcg_gen_extr_i64_i32(rl
, rh
, ret
);
2789 static void gen_calc_usb_mul_h(TCGv arg_low
, TCGv arg_high
)
2791 TCGv temp
= tcg_temp_new();
2793 tcg_gen_add_tl(temp
, arg_low
, arg_low
);
2794 tcg_gen_xor_tl(temp
, temp
, arg_low
);
2795 tcg_gen_add_tl(cpu_PSW_AV
, arg_high
, arg_high
);
2796 tcg_gen_xor_tl(cpu_PSW_AV
, cpu_PSW_AV
, arg_high
);
2797 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp
);
2799 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2800 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2803 static void gen_calc_usb_mulr_h(TCGv arg
)
2805 TCGv temp
= tcg_temp_new();
2807 tcg_gen_add_tl(temp
, arg
, arg
);
2808 tcg_gen_xor_tl(temp
, temp
, arg
);
2809 tcg_gen_shli_tl(cpu_PSW_AV
, temp
, 16);
2810 tcg_gen_or_tl(cpu_PSW_AV
, cpu_PSW_AV
, temp
);
2812 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
2814 tcg_gen_movi_tl(cpu_PSW_V
, 0);
2817 /* helpers for generating program flow micro-ops */
2819 static inline void gen_save_pc(target_ulong pc
)
2821 tcg_gen_movi_tl(cpu_PC
, pc
);
2824 static void gen_goto_tb(DisasContext
*ctx
, int n
, target_ulong dest
)
2826 if (translator_use_goto_tb(&ctx
->base
, dest
)) {
2829 tcg_gen_exit_tb(ctx
->base
.tb
, n
);
2832 tcg_gen_lookup_and_goto_ptr();
2836 static void generate_trap(DisasContext
*ctx
, int class, int tin
)
2838 TCGv_i32 classtemp
= tcg_constant_i32(class);
2839 TCGv_i32 tintemp
= tcg_constant_i32(tin
);
2841 gen_save_pc(ctx
->base
.pc_next
);
2842 gen_helper_raise_exception_sync(cpu_env
, classtemp
, tintemp
);
2843 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2846 static inline void gen_branch_cond(DisasContext
*ctx
, TCGCond cond
, TCGv r1
,
2847 TCGv r2
, int16_t address
)
2849 TCGLabel
*jumpLabel
= gen_new_label();
2850 tcg_gen_brcond_tl(cond
, r1
, r2
, jumpLabel
);
2852 gen_goto_tb(ctx
, 1, ctx
->pc_succ_insn
);
2854 gen_set_label(jumpLabel
);
2855 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ address
* 2);
2858 static inline void gen_branch_condi(DisasContext
*ctx
, TCGCond cond
, TCGv r1
,
2859 int r2
, int16_t address
)
2861 TCGv temp
= tcg_constant_i32(r2
);
2862 gen_branch_cond(ctx
, cond
, r1
, temp
, address
);
2865 static void gen_loop(DisasContext
*ctx
, int r1
, int32_t offset
)
2867 TCGLabel
*l1
= gen_new_label();
2869 tcg_gen_subi_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r1
], 1);
2870 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr_a
[r1
], -1, l1
);
2871 gen_goto_tb(ctx
, 1, ctx
->base
.pc_next
+ offset
);
2873 gen_goto_tb(ctx
, 0, ctx
->pc_succ_insn
);
2876 static void gen_fcall_save_ctx(DisasContext
*ctx
)
2878 TCGv temp
= tcg_temp_new();
2880 tcg_gen_addi_tl(temp
, cpu_gpr_a
[10], -4);
2881 tcg_gen_qemu_st_tl(cpu_gpr_a
[11], temp
, ctx
->mem_idx
, MO_LESL
);
2882 tcg_gen_movi_tl(cpu_gpr_a
[11], ctx
->pc_succ_insn
);
2883 tcg_gen_mov_tl(cpu_gpr_a
[10], temp
);
2886 static void gen_fret(DisasContext
*ctx
)
2888 TCGv temp
= tcg_temp_new();
2890 tcg_gen_andi_tl(temp
, cpu_gpr_a
[11], ~0x1);
2891 tcg_gen_qemu_ld_tl(cpu_gpr_a
[11], cpu_gpr_a
[10], ctx
->mem_idx
, MO_LESL
);
2892 tcg_gen_addi_tl(cpu_gpr_a
[10], cpu_gpr_a
[10], 4);
2893 tcg_gen_mov_tl(cpu_PC
, temp
);
2894 tcg_gen_exit_tb(NULL
, 0);
2895 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2898 static void gen_compute_branch(DisasContext
*ctx
, uint32_t opc
, int r1
,
2899 int r2
, int32_t constant
, int32_t offset
)
2905 /* SB-format jumps */
2908 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ offset
* 2);
2910 case OPC1_32_B_CALL
:
2911 case OPC1_16_SB_CALL
:
2912 gen_helper_1arg(call
, ctx
->pc_succ_insn
);
2913 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ offset
* 2);
2916 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_d
[15], 0, offset
);
2918 case OPC1_16_SB_JNZ
:
2919 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_d
[15], 0, offset
);
2921 /* SBC-format jumps */
2922 case OPC1_16_SBC_JEQ
:
2923 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_d
[15], constant
, offset
);
2925 case OPC1_16_SBC_JEQ2
:
2926 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_d
[15], constant
,
2929 case OPC1_16_SBC_JNE
:
2930 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_d
[15], constant
, offset
);
2932 case OPC1_16_SBC_JNE2
:
2933 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_d
[15],
2934 constant
, offset
+ 16);
2936 /* SBRN-format jumps */
2937 case OPC1_16_SBRN_JZ_T
:
2938 temp
= tcg_temp_new();
2939 tcg_gen_andi_tl(temp
, cpu_gpr_d
[15], 0x1u
<< constant
);
2940 gen_branch_condi(ctx
, TCG_COND_EQ
, temp
, 0, offset
);
2942 case OPC1_16_SBRN_JNZ_T
:
2943 temp
= tcg_temp_new();
2944 tcg_gen_andi_tl(temp
, cpu_gpr_d
[15], 0x1u
<< constant
);
2945 gen_branch_condi(ctx
, TCG_COND_NE
, temp
, 0, offset
);
2947 /* SBR-format jumps */
2948 case OPC1_16_SBR_JEQ
:
2949 gen_branch_cond(ctx
, TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[15],
2952 case OPC1_16_SBR_JEQ2
:
2953 gen_branch_cond(ctx
, TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[15],
2956 case OPC1_16_SBR_JNE
:
2957 gen_branch_cond(ctx
, TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[15],
2960 case OPC1_16_SBR_JNE2
:
2961 gen_branch_cond(ctx
, TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[15],
2964 case OPC1_16_SBR_JNZ
:
2965 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_d
[r1
], 0, offset
);
2967 case OPC1_16_SBR_JNZ_A
:
2968 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_a
[r1
], 0, offset
);
2970 case OPC1_16_SBR_JGEZ
:
2971 gen_branch_condi(ctx
, TCG_COND_GE
, cpu_gpr_d
[r1
], 0, offset
);
2973 case OPC1_16_SBR_JGTZ
:
2974 gen_branch_condi(ctx
, TCG_COND_GT
, cpu_gpr_d
[r1
], 0, offset
);
2976 case OPC1_16_SBR_JLEZ
:
2977 gen_branch_condi(ctx
, TCG_COND_LE
, cpu_gpr_d
[r1
], 0, offset
);
2979 case OPC1_16_SBR_JLTZ
:
2980 gen_branch_condi(ctx
, TCG_COND_LT
, cpu_gpr_d
[r1
], 0, offset
);
2982 case OPC1_16_SBR_JZ
:
2983 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_d
[r1
], 0, offset
);
2985 case OPC1_16_SBR_JZ_A
:
2986 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_a
[r1
], 0, offset
);
2988 case OPC1_16_SBR_LOOP
:
2989 gen_loop(ctx
, r1
, offset
* 2 - 32);
2991 /* SR-format jumps */
2993 tcg_gen_andi_tl(cpu_PC
, cpu_gpr_a
[r1
], 0xfffffffe);
2994 tcg_gen_exit_tb(NULL
, 0);
2996 case OPC2_32_SYS_RET
:
2997 case OPC2_16_SR_RET
:
2998 gen_helper_ret(cpu_env
);
2999 tcg_gen_exit_tb(NULL
, 0);
3002 case OPC1_32_B_CALLA
:
3003 gen_helper_1arg(call
, ctx
->pc_succ_insn
);
3004 gen_goto_tb(ctx
, 0, EA_B_ABSOLUT(offset
));
3006 case OPC1_32_B_FCALL
:
3007 gen_fcall_save_ctx(ctx
);
3008 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ offset
* 2);
3010 case OPC1_32_B_FCALLA
:
3011 gen_fcall_save_ctx(ctx
);
3012 gen_goto_tb(ctx
, 0, EA_B_ABSOLUT(offset
));
3015 tcg_gen_movi_tl(cpu_gpr_a
[11], ctx
->pc_succ_insn
);
3018 gen_goto_tb(ctx
, 0, EA_B_ABSOLUT(offset
));
3021 tcg_gen_movi_tl(cpu_gpr_a
[11], ctx
->pc_succ_insn
);
3022 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ offset
* 2);
3025 case OPCM_32_BRC_EQ_NEQ
:
3026 if (MASK_OP_BRC_OP2(ctx
->opcode
) == OPC2_32_BRC_JEQ
) {
3027 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_d
[r1
], constant
, offset
);
3029 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_d
[r1
], constant
, offset
);
3032 case OPCM_32_BRC_GE
:
3033 if (MASK_OP_BRC_OP2(ctx
->opcode
) == OP2_32_BRC_JGE
) {
3034 gen_branch_condi(ctx
, TCG_COND_GE
, cpu_gpr_d
[r1
], constant
, offset
);
3036 constant
= MASK_OP_BRC_CONST4(ctx
->opcode
);
3037 gen_branch_condi(ctx
, TCG_COND_GEU
, cpu_gpr_d
[r1
], constant
,
3041 case OPCM_32_BRC_JLT
:
3042 if (MASK_OP_BRC_OP2(ctx
->opcode
) == OPC2_32_BRC_JLT
) {
3043 gen_branch_condi(ctx
, TCG_COND_LT
, cpu_gpr_d
[r1
], constant
, offset
);
3045 constant
= MASK_OP_BRC_CONST4(ctx
->opcode
);
3046 gen_branch_condi(ctx
, TCG_COND_LTU
, cpu_gpr_d
[r1
], constant
,
3050 case OPCM_32_BRC_JNE
:
3051 temp
= tcg_temp_new();
3052 if (MASK_OP_BRC_OP2(ctx
->opcode
) == OPC2_32_BRC_JNED
) {
3053 tcg_gen_mov_tl(temp
, cpu_gpr_d
[r1
]);
3054 /* subi is unconditional */
3055 tcg_gen_subi_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 1);
3056 gen_branch_condi(ctx
, TCG_COND_NE
, temp
, constant
, offset
);
3058 tcg_gen_mov_tl(temp
, cpu_gpr_d
[r1
]);
3059 /* addi is unconditional */
3060 tcg_gen_addi_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 1);
3061 gen_branch_condi(ctx
, TCG_COND_NE
, temp
, constant
, offset
);
3065 case OPCM_32_BRN_JTT
:
3066 n
= MASK_OP_BRN_N(ctx
->opcode
);
3068 temp
= tcg_temp_new();
3069 tcg_gen_andi_tl(temp
, cpu_gpr_d
[r1
], (1 << n
));
3071 if (MASK_OP_BRN_OP2(ctx
->opcode
) == OPC2_32_BRN_JNZ_T
) {
3072 gen_branch_condi(ctx
, TCG_COND_NE
, temp
, 0, offset
);
3074 gen_branch_condi(ctx
, TCG_COND_EQ
, temp
, 0, offset
);
3078 case OPCM_32_BRR_EQ_NEQ
:
3079 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_JEQ
) {
3080 gen_branch_cond(ctx
, TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3083 gen_branch_cond(ctx
, TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3087 case OPCM_32_BRR_ADDR_EQ_NEQ
:
3088 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_JEQ_A
) {
3089 gen_branch_cond(ctx
, TCG_COND_EQ
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
],
3092 gen_branch_cond(ctx
, TCG_COND_NE
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
],
3096 case OPCM_32_BRR_GE
:
3097 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_JGE
) {
3098 gen_branch_cond(ctx
, TCG_COND_GE
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3101 gen_branch_cond(ctx
, TCG_COND_GEU
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3105 case OPCM_32_BRR_JLT
:
3106 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_JLT
) {
3107 gen_branch_cond(ctx
, TCG_COND_LT
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3110 gen_branch_cond(ctx
, TCG_COND_LTU
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3114 case OPCM_32_BRR_LOOP
:
3115 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_LOOP
) {
3116 gen_loop(ctx
, r2
, offset
* 2);
3118 /* OPC2_32_BRR_LOOPU */
3119 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ offset
* 2);
3122 case OPCM_32_BRR_JNE
:
3123 temp
= tcg_temp_new();
3124 temp2
= tcg_temp_new();
3125 if (MASK_OP_BRC_OP2(ctx
->opcode
) == OPC2_32_BRR_JNED
) {
3126 tcg_gen_mov_tl(temp
, cpu_gpr_d
[r1
]);
3127 /* also save r2, in case of r1 == r2, so r2 is not decremented */
3128 tcg_gen_mov_tl(temp2
, cpu_gpr_d
[r2
]);
3129 /* subi is unconditional */
3130 tcg_gen_subi_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 1);
3131 gen_branch_cond(ctx
, TCG_COND_NE
, temp
, temp2
, offset
);
3133 tcg_gen_mov_tl(temp
, cpu_gpr_d
[r1
]);
3134 /* also save r2, in case of r1 == r2, so r2 is not decremented */
3135 tcg_gen_mov_tl(temp2
, cpu_gpr_d
[r2
]);
3136 /* addi is unconditional */
3137 tcg_gen_addi_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 1);
3138 gen_branch_cond(ctx
, TCG_COND_NE
, temp
, temp2
, offset
);
3141 case OPCM_32_BRR_JNZ
:
3142 if (MASK_OP_BRR_OP2(ctx
->opcode
) == OPC2_32_BRR_JNZ_A
) {
3143 gen_branch_condi(ctx
, TCG_COND_NE
, cpu_gpr_a
[r1
], 0, offset
);
3145 gen_branch_condi(ctx
, TCG_COND_EQ
, cpu_gpr_a
[r1
], 0, offset
);
3149 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3151 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3156 * Functions for decoding instructions
3159 static void decode_src_opc(DisasContext
*ctx
, int op1
)
3165 r1
= MASK_OP_SRC_S1D(ctx
->opcode
);
3166 const4
= MASK_OP_SRC_CONST4_SEXT(ctx
->opcode
);
3169 case OPC1_16_SRC_ADD
:
3170 gen_addi_d(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], const4
);
3172 case OPC1_16_SRC_ADD_A15
:
3173 gen_addi_d(cpu_gpr_d
[r1
], cpu_gpr_d
[15], const4
);
3175 case OPC1_16_SRC_ADD_15A
:
3176 gen_addi_d(cpu_gpr_d
[15], cpu_gpr_d
[r1
], const4
);
3178 case OPC1_16_SRC_ADD_A
:
3179 tcg_gen_addi_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r1
], const4
);
3181 case OPC1_16_SRC_CADD
:
3182 gen_condi_add(TCG_COND_NE
, cpu_gpr_d
[r1
], const4
, cpu_gpr_d
[r1
],
3185 case OPC1_16_SRC_CADDN
:
3186 gen_condi_add(TCG_COND_EQ
, cpu_gpr_d
[r1
], const4
, cpu_gpr_d
[r1
],
3189 case OPC1_16_SRC_CMOV
:
3190 temp
= tcg_constant_tl(0);
3191 temp2
= tcg_constant_tl(const4
);
3192 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[15], temp
,
3193 temp2
, cpu_gpr_d
[r1
]);
3195 case OPC1_16_SRC_CMOVN
:
3196 temp
= tcg_constant_tl(0);
3197 temp2
= tcg_constant_tl(const4
);
3198 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[15], temp
,
3199 temp2
, cpu_gpr_d
[r1
]);
3201 case OPC1_16_SRC_EQ
:
3202 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_gpr_d
[15], cpu_gpr_d
[r1
],
3205 case OPC1_16_SRC_LT
:
3206 tcg_gen_setcondi_tl(TCG_COND_LT
, cpu_gpr_d
[15], cpu_gpr_d
[r1
],
3209 case OPC1_16_SRC_MOV
:
3210 tcg_gen_movi_tl(cpu_gpr_d
[r1
], const4
);
3212 case OPC1_16_SRC_MOV_A
:
3213 const4
= MASK_OP_SRC_CONST4(ctx
->opcode
);
3214 tcg_gen_movi_tl(cpu_gpr_a
[r1
], const4
);
3216 case OPC1_16_SRC_MOV_E
:
3217 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
3218 tcg_gen_movi_tl(cpu_gpr_d
[r1
], const4
);
3219 tcg_gen_sari_tl(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], 31);
3221 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3224 case OPC1_16_SRC_SH
:
3225 gen_shi(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], const4
);
3227 case OPC1_16_SRC_SHA
:
3228 gen_shaci(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], const4
);
3231 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3235 static void decode_srr_opc(DisasContext
*ctx
, int op1
)
3240 r1
= MASK_OP_SRR_S1D(ctx
->opcode
);
3241 r2
= MASK_OP_SRR_S2(ctx
->opcode
);
3244 case OPC1_16_SRR_ADD
:
3245 gen_add_d(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3247 case OPC1_16_SRR_ADD_A15
:
3248 gen_add_d(cpu_gpr_d
[r1
], cpu_gpr_d
[15], cpu_gpr_d
[r2
]);
3250 case OPC1_16_SRR_ADD_15A
:
3251 gen_add_d(cpu_gpr_d
[15], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3253 case OPC1_16_SRR_ADD_A
:
3254 tcg_gen_add_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
]);
3256 case OPC1_16_SRR_ADDS
:
3257 gen_adds(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3259 case OPC1_16_SRR_AND
:
3260 tcg_gen_and_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3262 case OPC1_16_SRR_CMOV
:
3263 temp
= tcg_constant_tl(0);
3264 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[15], temp
,
3265 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
]);
3267 case OPC1_16_SRR_CMOVN
:
3268 temp
= tcg_constant_tl(0);
3269 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[15], temp
,
3270 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
]);
3272 case OPC1_16_SRR_EQ
:
3273 tcg_gen_setcond_tl(TCG_COND_EQ
, cpu_gpr_d
[15], cpu_gpr_d
[r1
],
3276 case OPC1_16_SRR_LT
:
3277 tcg_gen_setcond_tl(TCG_COND_LT
, cpu_gpr_d
[15], cpu_gpr_d
[r1
],
3280 case OPC1_16_SRR_MOV
:
3281 tcg_gen_mov_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3283 case OPC1_16_SRR_MOV_A
:
3284 tcg_gen_mov_tl(cpu_gpr_a
[r1
], cpu_gpr_d
[r2
]);
3286 case OPC1_16_SRR_MOV_AA
:
3287 tcg_gen_mov_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
]);
3289 case OPC1_16_SRR_MOV_D
:
3290 tcg_gen_mov_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
]);
3292 case OPC1_16_SRR_MUL
:
3293 gen_mul_i32s(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3295 case OPC1_16_SRR_OR
:
3296 tcg_gen_or_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3298 case OPC1_16_SRR_SUB
:
3299 gen_sub_d(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3301 case OPC1_16_SRR_SUB_A15B
:
3302 gen_sub_d(cpu_gpr_d
[r1
], cpu_gpr_d
[15], cpu_gpr_d
[r2
]);
3304 case OPC1_16_SRR_SUB_15AB
:
3305 gen_sub_d(cpu_gpr_d
[15], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3307 case OPC1_16_SRR_SUBS
:
3308 gen_subs(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3310 case OPC1_16_SRR_XOR
:
3311 tcg_gen_xor_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
3314 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3318 static void decode_ssr_opc(DisasContext
*ctx
, int op1
)
3322 r1
= MASK_OP_SSR_S1(ctx
->opcode
);
3323 r2
= MASK_OP_SSR_S2(ctx
->opcode
);
3326 case OPC1_16_SSR_ST_A
:
3327 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUL
);
3329 case OPC1_16_SSR_ST_A_POSTINC
:
3330 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUL
);
3331 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 4);
3333 case OPC1_16_SSR_ST_B
:
3334 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_UB
);
3336 case OPC1_16_SSR_ST_B_POSTINC
:
3337 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_UB
);
3338 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 1);
3340 case OPC1_16_SSR_ST_H
:
3341 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUW
);
3343 case OPC1_16_SSR_ST_H_POSTINC
:
3344 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUW
);
3345 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 2);
3347 case OPC1_16_SSR_ST_W
:
3348 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUL
);
3350 case OPC1_16_SSR_ST_W_POSTINC
:
3351 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LEUL
);
3352 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 4);
3355 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3359 static void decode_sc_opc(DisasContext
*ctx
, int op1
)
3363 const16
= MASK_OP_SC_CONST8(ctx
->opcode
);
3366 case OPC1_16_SC_AND
:
3367 tcg_gen_andi_tl(cpu_gpr_d
[15], cpu_gpr_d
[15], const16
);
3369 case OPC1_16_SC_BISR
:
3370 gen_helper_1arg(bisr
, const16
& 0xff);
3372 case OPC1_16_SC_LD_A
:
3373 gen_offset_ld(ctx
, cpu_gpr_a
[15], cpu_gpr_a
[10], const16
* 4, MO_LESL
);
3375 case OPC1_16_SC_LD_W
:
3376 gen_offset_ld(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[10], const16
* 4, MO_LESL
);
3378 case OPC1_16_SC_MOV
:
3379 tcg_gen_movi_tl(cpu_gpr_d
[15], const16
);
3382 tcg_gen_ori_tl(cpu_gpr_d
[15], cpu_gpr_d
[15], const16
);
3384 case OPC1_16_SC_ST_A
:
3385 gen_offset_st(ctx
, cpu_gpr_a
[15], cpu_gpr_a
[10], const16
* 4, MO_LESL
);
3387 case OPC1_16_SC_ST_W
:
3388 gen_offset_st(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[10], const16
* 4, MO_LESL
);
3390 case OPC1_16_SC_SUB_A
:
3391 tcg_gen_subi_tl(cpu_gpr_a
[10], cpu_gpr_a
[10], const16
);
3394 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3398 static void decode_slr_opc(DisasContext
*ctx
, int op1
)
3402 r1
= MASK_OP_SLR_D(ctx
->opcode
);
3403 r2
= MASK_OP_SLR_S2(ctx
->opcode
);
3407 case OPC1_16_SLR_LD_A
:
3408 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESL
);
3410 case OPC1_16_SLR_LD_A_POSTINC
:
3411 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESL
);
3412 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 4);
3414 case OPC1_16_SLR_LD_BU
:
3415 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_UB
);
3417 case OPC1_16_SLR_LD_BU_POSTINC
:
3418 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_UB
);
3419 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 1);
3421 case OPC1_16_SLR_LD_H
:
3422 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESW
);
3424 case OPC1_16_SLR_LD_H_POSTINC
:
3425 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESW
);
3426 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 2);
3428 case OPC1_16_SLR_LD_W
:
3429 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESL
);
3431 case OPC1_16_SLR_LD_W_POSTINC
:
3432 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
, MO_LESL
);
3433 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], 4);
3436 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3440 static void decode_sro_opc(DisasContext
*ctx
, int op1
)
3445 r2
= MASK_OP_SRO_S2(ctx
->opcode
);
3446 address
= MASK_OP_SRO_OFF4(ctx
->opcode
);
3450 case OPC1_16_SRO_LD_A
:
3451 gen_offset_ld(ctx
, cpu_gpr_a
[15], cpu_gpr_a
[r2
], address
* 4, MO_LESL
);
3453 case OPC1_16_SRO_LD_BU
:
3454 gen_offset_ld(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
, MO_UB
);
3456 case OPC1_16_SRO_LD_H
:
3457 gen_offset_ld(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
* 2, MO_LESW
);
3459 case OPC1_16_SRO_LD_W
:
3460 gen_offset_ld(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
* 4, MO_LESL
);
3462 case OPC1_16_SRO_ST_A
:
3463 gen_offset_st(ctx
, cpu_gpr_a
[15], cpu_gpr_a
[r2
], address
* 4, MO_LESL
);
3465 case OPC1_16_SRO_ST_B
:
3466 gen_offset_st(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
, MO_UB
);
3468 case OPC1_16_SRO_ST_H
:
3469 gen_offset_st(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
* 2, MO_LESW
);
3471 case OPC1_16_SRO_ST_W
:
3472 gen_offset_st(ctx
, cpu_gpr_d
[15], cpu_gpr_a
[r2
], address
* 4, MO_LESL
);
3475 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3479 static void decode_sr_system(DisasContext
*ctx
)
3482 op2
= MASK_OP_SR_OP2(ctx
->opcode
);
3485 case OPC2_16_SR_NOP
:
3487 case OPC2_16_SR_RET
:
3488 gen_compute_branch(ctx
, op2
, 0, 0, 0, 0);
3490 case OPC2_16_SR_RFE
:
3491 gen_helper_rfe(cpu_env
);
3492 tcg_gen_exit_tb(NULL
, 0);
3493 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3495 case OPC2_16_SR_DEBUG
:
3496 /* raise EXCP_DEBUG */
3498 case OPC2_16_SR_FRET
:
3502 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3506 static void decode_sr_accu(DisasContext
*ctx
)
3511 r1
= MASK_OP_SR_S1D(ctx
->opcode
);
3512 op2
= MASK_OP_SR_OP2(ctx
->opcode
);
3515 case OPC2_16_SR_RSUB
:
3516 /* calc V bit -- overflow only if r1 = -0x80000000 */
3517 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, cpu_gpr_d
[r1
], -0x80000000);
3518 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
3520 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
3522 tcg_gen_neg_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
]);
3524 tcg_gen_add_tl(cpu_PSW_AV
, cpu_gpr_d
[r1
], cpu_gpr_d
[r1
]);
3525 tcg_gen_xor_tl(cpu_PSW_AV
, cpu_gpr_d
[r1
], cpu_PSW_AV
);
3527 tcg_gen_or_tl(cpu_PSW_SAV
, cpu_PSW_SAV
, cpu_PSW_AV
);
3529 case OPC2_16_SR_SAT_B
:
3530 gen_saturate(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 0x7f, -0x80);
3532 case OPC2_16_SR_SAT_BU
:
3533 gen_saturate_u(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 0xff);
3535 case OPC2_16_SR_SAT_H
:
3536 gen_saturate(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 0x7fff, -0x8000);
3538 case OPC2_16_SR_SAT_HU
:
3539 gen_saturate_u(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 0xffff);
3542 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3546 static void decode_16Bit_opc(DisasContext
*ctx
)
3554 op1
= MASK_OP_MAJOR(ctx
->opcode
);
3556 /* handle ADDSC.A opcode only being 6 bit long */
3557 if (unlikely((op1
& 0x3f) == OPC1_16_SRRS_ADDSC_A
)) {
3558 op1
= OPC1_16_SRRS_ADDSC_A
;
3562 case OPC1_16_SRC_ADD
:
3563 case OPC1_16_SRC_ADD_A15
:
3564 case OPC1_16_SRC_ADD_15A
:
3565 case OPC1_16_SRC_ADD_A
:
3566 case OPC1_16_SRC_CADD
:
3567 case OPC1_16_SRC_CADDN
:
3568 case OPC1_16_SRC_CMOV
:
3569 case OPC1_16_SRC_CMOVN
:
3570 case OPC1_16_SRC_EQ
:
3571 case OPC1_16_SRC_LT
:
3572 case OPC1_16_SRC_MOV
:
3573 case OPC1_16_SRC_MOV_A
:
3574 case OPC1_16_SRC_MOV_E
:
3575 case OPC1_16_SRC_SH
:
3576 case OPC1_16_SRC_SHA
:
3577 decode_src_opc(ctx
, op1
);
3580 case OPC1_16_SRR_ADD
:
3581 case OPC1_16_SRR_ADD_A15
:
3582 case OPC1_16_SRR_ADD_15A
:
3583 case OPC1_16_SRR_ADD_A
:
3584 case OPC1_16_SRR_ADDS
:
3585 case OPC1_16_SRR_AND
:
3586 case OPC1_16_SRR_CMOV
:
3587 case OPC1_16_SRR_CMOVN
:
3588 case OPC1_16_SRR_EQ
:
3589 case OPC1_16_SRR_LT
:
3590 case OPC1_16_SRR_MOV
:
3591 case OPC1_16_SRR_MOV_A
:
3592 case OPC1_16_SRR_MOV_AA
:
3593 case OPC1_16_SRR_MOV_D
:
3594 case OPC1_16_SRR_MUL
:
3595 case OPC1_16_SRR_OR
:
3596 case OPC1_16_SRR_SUB
:
3597 case OPC1_16_SRR_SUB_A15B
:
3598 case OPC1_16_SRR_SUB_15AB
:
3599 case OPC1_16_SRR_SUBS
:
3600 case OPC1_16_SRR_XOR
:
3601 decode_srr_opc(ctx
, op1
);
3604 case OPC1_16_SSR_ST_A
:
3605 case OPC1_16_SSR_ST_A_POSTINC
:
3606 case OPC1_16_SSR_ST_B
:
3607 case OPC1_16_SSR_ST_B_POSTINC
:
3608 case OPC1_16_SSR_ST_H
:
3609 case OPC1_16_SSR_ST_H_POSTINC
:
3610 case OPC1_16_SSR_ST_W
:
3611 case OPC1_16_SSR_ST_W_POSTINC
:
3612 decode_ssr_opc(ctx
, op1
);
3615 case OPC1_16_SRRS_ADDSC_A
:
3616 r2
= MASK_OP_SRRS_S2(ctx
->opcode
);
3617 r1
= MASK_OP_SRRS_S1D(ctx
->opcode
);
3618 const16
= MASK_OP_SRRS_N(ctx
->opcode
);
3619 temp
= tcg_temp_new();
3620 tcg_gen_shli_tl(temp
, cpu_gpr_d
[15], const16
);
3621 tcg_gen_add_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], temp
);
3624 case OPC1_16_SLRO_LD_A
:
3625 r1
= MASK_OP_SLRO_D(ctx
->opcode
);
3626 const16
= MASK_OP_SLRO_OFF4(ctx
->opcode
);
3627 gen_offset_ld(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[15], const16
* 4, MO_LESL
);
3629 case OPC1_16_SLRO_LD_BU
:
3630 r1
= MASK_OP_SLRO_D(ctx
->opcode
);
3631 const16
= MASK_OP_SLRO_OFF4(ctx
->opcode
);
3632 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
, MO_UB
);
3634 case OPC1_16_SLRO_LD_H
:
3635 r1
= MASK_OP_SLRO_D(ctx
->opcode
);
3636 const16
= MASK_OP_SLRO_OFF4(ctx
->opcode
);
3637 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
* 2, MO_LESW
);
3639 case OPC1_16_SLRO_LD_W
:
3640 r1
= MASK_OP_SLRO_D(ctx
->opcode
);
3641 const16
= MASK_OP_SLRO_OFF4(ctx
->opcode
);
3642 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
* 4, MO_LESL
);
3645 case OPC1_16_SB_CALL
:
3647 case OPC1_16_SB_JNZ
:
3649 address
= MASK_OP_SB_DISP8_SEXT(ctx
->opcode
);
3650 gen_compute_branch(ctx
, op1
, 0, 0, 0, address
);
3653 case OPC1_16_SBC_JEQ
:
3654 case OPC1_16_SBC_JNE
:
3655 address
= MASK_OP_SBC_DISP4(ctx
->opcode
);
3656 const16
= MASK_OP_SBC_CONST4_SEXT(ctx
->opcode
);
3657 gen_compute_branch(ctx
, op1
, 0, 0, const16
, address
);
3659 case OPC1_16_SBC_JEQ2
:
3660 case OPC1_16_SBC_JNE2
:
3661 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
3662 address
= MASK_OP_SBC_DISP4(ctx
->opcode
);
3663 const16
= MASK_OP_SBC_CONST4_SEXT(ctx
->opcode
);
3664 gen_compute_branch(ctx
, op1
, 0, 0, const16
, address
);
3666 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3670 case OPC1_16_SBRN_JNZ_T
:
3671 case OPC1_16_SBRN_JZ_T
:
3672 address
= MASK_OP_SBRN_DISP4(ctx
->opcode
);
3673 const16
= MASK_OP_SBRN_N(ctx
->opcode
);
3674 gen_compute_branch(ctx
, op1
, 0, 0, const16
, address
);
3677 case OPC1_16_SBR_JEQ2
:
3678 case OPC1_16_SBR_JNE2
:
3679 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
3680 r1
= MASK_OP_SBR_S2(ctx
->opcode
);
3681 address
= MASK_OP_SBR_DISP4(ctx
->opcode
);
3682 gen_compute_branch(ctx
, op1
, r1
, 0, 0, address
);
3684 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3687 case OPC1_16_SBR_JEQ
:
3688 case OPC1_16_SBR_JGEZ
:
3689 case OPC1_16_SBR_JGTZ
:
3690 case OPC1_16_SBR_JLEZ
:
3691 case OPC1_16_SBR_JLTZ
:
3692 case OPC1_16_SBR_JNE
:
3693 case OPC1_16_SBR_JNZ
:
3694 case OPC1_16_SBR_JNZ_A
:
3695 case OPC1_16_SBR_JZ
:
3696 case OPC1_16_SBR_JZ_A
:
3697 case OPC1_16_SBR_LOOP
:
3698 r1
= MASK_OP_SBR_S2(ctx
->opcode
);
3699 address
= MASK_OP_SBR_DISP4(ctx
->opcode
);
3700 gen_compute_branch(ctx
, op1
, r1
, 0, 0, address
);
3703 case OPC1_16_SC_AND
:
3704 case OPC1_16_SC_BISR
:
3705 case OPC1_16_SC_LD_A
:
3706 case OPC1_16_SC_LD_W
:
3707 case OPC1_16_SC_MOV
:
3709 case OPC1_16_SC_ST_A
:
3710 case OPC1_16_SC_ST_W
:
3711 case OPC1_16_SC_SUB_A
:
3712 decode_sc_opc(ctx
, op1
);
3715 case OPC1_16_SLR_LD_A
:
3716 case OPC1_16_SLR_LD_A_POSTINC
:
3717 case OPC1_16_SLR_LD_BU
:
3718 case OPC1_16_SLR_LD_BU_POSTINC
:
3719 case OPC1_16_SLR_LD_H
:
3720 case OPC1_16_SLR_LD_H_POSTINC
:
3721 case OPC1_16_SLR_LD_W
:
3722 case OPC1_16_SLR_LD_W_POSTINC
:
3723 decode_slr_opc(ctx
, op1
);
3726 case OPC1_16_SRO_LD_A
:
3727 case OPC1_16_SRO_LD_BU
:
3728 case OPC1_16_SRO_LD_H
:
3729 case OPC1_16_SRO_LD_W
:
3730 case OPC1_16_SRO_ST_A
:
3731 case OPC1_16_SRO_ST_B
:
3732 case OPC1_16_SRO_ST_H
:
3733 case OPC1_16_SRO_ST_W
:
3734 decode_sro_opc(ctx
, op1
);
3737 case OPC1_16_SSRO_ST_A
:
3738 r1
= MASK_OP_SSRO_S1(ctx
->opcode
);
3739 const16
= MASK_OP_SSRO_OFF4(ctx
->opcode
);
3740 gen_offset_st(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[15], const16
* 4, MO_LESL
);
3742 case OPC1_16_SSRO_ST_B
:
3743 r1
= MASK_OP_SSRO_S1(ctx
->opcode
);
3744 const16
= MASK_OP_SSRO_OFF4(ctx
->opcode
);
3745 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
, MO_UB
);
3747 case OPC1_16_SSRO_ST_H
:
3748 r1
= MASK_OP_SSRO_S1(ctx
->opcode
);
3749 const16
= MASK_OP_SSRO_OFF4(ctx
->opcode
);
3750 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
* 2, MO_LESW
);
3752 case OPC1_16_SSRO_ST_W
:
3753 r1
= MASK_OP_SSRO_S1(ctx
->opcode
);
3754 const16
= MASK_OP_SSRO_OFF4(ctx
->opcode
);
3755 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[15], const16
* 4, MO_LESL
);
3758 case OPCM_16_SR_SYSTEM
:
3759 decode_sr_system(ctx
);
3761 case OPCM_16_SR_ACCU
:
3762 decode_sr_accu(ctx
);
3765 r1
= MASK_OP_SR_S1D(ctx
->opcode
);
3766 gen_compute_branch(ctx
, op1
, r1
, 0, 0, 0);
3768 case OPC1_16_SR_NOT
:
3769 r1
= MASK_OP_SR_S1D(ctx
->opcode
);
3770 tcg_gen_not_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
]);
3773 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3778 * 32 bit instructions
3782 static void decode_abs_ldw(DisasContext
*ctx
)
3789 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
3790 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3791 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3793 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
3796 case OPC2_32_ABS_LD_A
:
3797 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], temp
, ctx
->mem_idx
, MO_LESL
);
3799 case OPC2_32_ABS_LD_D
:
3801 gen_ld_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp
, ctx
);
3803 case OPC2_32_ABS_LD_DA
:
3805 gen_ld_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp
, ctx
);
3807 case OPC2_32_ABS_LD_W
:
3808 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LESL
);
3811 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3815 static void decode_abs_ldb(DisasContext
*ctx
)
3822 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
3823 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3824 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3826 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
3829 case OPC2_32_ABS_LD_B
:
3830 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_SB
);
3832 case OPC2_32_ABS_LD_BU
:
3833 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_UB
);
3835 case OPC2_32_ABS_LD_H
:
3836 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LESW
);
3838 case OPC2_32_ABS_LD_HU
:
3839 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LEUW
);
3842 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3846 static void decode_abs_ldst_swap(DisasContext
*ctx
)
3853 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
3854 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3855 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3857 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
3860 case OPC2_32_ABS_LDMST
:
3861 gen_ldmst(ctx
, r1
, temp
);
3863 case OPC2_32_ABS_SWAP_W
:
3864 gen_swap(ctx
, r1
, temp
);
3867 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3871 static void decode_abs_ldst_context(DisasContext
*ctx
)
3876 off18
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3877 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3880 case OPC2_32_ABS_LDLCX
:
3881 gen_helper_1arg(ldlcx
, EA_ABS_FORMAT(off18
));
3883 case OPC2_32_ABS_LDUCX
:
3884 gen_helper_1arg(lducx
, EA_ABS_FORMAT(off18
));
3886 case OPC2_32_ABS_STLCX
:
3887 gen_helper_1arg(stlcx
, EA_ABS_FORMAT(off18
));
3889 case OPC2_32_ABS_STUCX
:
3890 gen_helper_1arg(stucx
, EA_ABS_FORMAT(off18
));
3893 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3897 static void decode_abs_store(DisasContext
*ctx
)
3904 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
3905 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3906 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3908 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
3911 case OPC2_32_ABS_ST_A
:
3912 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], temp
, ctx
->mem_idx
, MO_LESL
);
3914 case OPC2_32_ABS_ST_D
:
3916 gen_st_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp
, ctx
);
3918 case OPC2_32_ABS_ST_DA
:
3920 gen_st_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp
, ctx
);
3922 case OPC2_32_ABS_ST_W
:
3923 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LESL
);
3926 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3930 static void decode_abs_storeb_h(DisasContext
*ctx
)
3937 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
3938 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
3939 op2
= MASK_OP_ABS_OP2(ctx
->opcode
);
3941 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
3944 case OPC2_32_ABS_ST_B
:
3945 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_UB
);
3947 case OPC2_32_ABS_ST_H
:
3948 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LEUW
);
3951 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3957 static void decode_bit_andacc(DisasContext
*ctx
)
3963 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
3964 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
3965 r3
= MASK_OP_BIT_D(ctx
->opcode
);
3966 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
3967 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
3968 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
3972 case OPC2_32_BIT_AND_AND_T
:
3973 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3974 pos1
, pos2
, &tcg_gen_and_tl
, &tcg_gen_and_tl
);
3976 case OPC2_32_BIT_AND_ANDN_T
:
3977 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3978 pos1
, pos2
, &tcg_gen_andc_tl
, &tcg_gen_and_tl
);
3980 case OPC2_32_BIT_AND_NOR_T
:
3981 if (TCG_TARGET_HAS_andc_i32
) {
3982 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3983 pos1
, pos2
, &tcg_gen_or_tl
, &tcg_gen_andc_tl
);
3985 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3986 pos1
, pos2
, &tcg_gen_nor_tl
, &tcg_gen_and_tl
);
3989 case OPC2_32_BIT_AND_OR_T
:
3990 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
3991 pos1
, pos2
, &tcg_gen_or_tl
, &tcg_gen_and_tl
);
3994 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
3998 static void decode_bit_logical_t(DisasContext
*ctx
)
4003 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4004 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4005 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4006 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4007 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4008 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4011 case OPC2_32_BIT_AND_T
:
4012 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4013 pos1
, pos2
, &tcg_gen_and_tl
);
4015 case OPC2_32_BIT_ANDN_T
:
4016 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4017 pos1
, pos2
, &tcg_gen_andc_tl
);
4019 case OPC2_32_BIT_NOR_T
:
4020 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4021 pos1
, pos2
, &tcg_gen_nor_tl
);
4023 case OPC2_32_BIT_OR_T
:
4024 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4025 pos1
, pos2
, &tcg_gen_or_tl
);
4028 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4032 static void decode_bit_insert(DisasContext
*ctx
)
4038 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4039 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4040 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4041 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4042 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4043 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4045 temp
= tcg_temp_new();
4047 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r2
], pos2
);
4048 if (op2
== OPC2_32_BIT_INSN_T
) {
4049 tcg_gen_not_tl(temp
, temp
);
4051 tcg_gen_deposit_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], temp
, pos1
, 1);
4054 static void decode_bit_logical_t2(DisasContext
*ctx
)
4061 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4062 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4063 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4064 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4065 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4066 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4069 case OPC2_32_BIT_NAND_T
:
4070 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4071 pos1
, pos2
, &tcg_gen_nand_tl
);
4073 case OPC2_32_BIT_ORN_T
:
4074 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4075 pos1
, pos2
, &tcg_gen_orc_tl
);
4077 case OPC2_32_BIT_XNOR_T
:
4078 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4079 pos1
, pos2
, &tcg_gen_eqv_tl
);
4081 case OPC2_32_BIT_XOR_T
:
4082 gen_bit_1op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4083 pos1
, pos2
, &tcg_gen_xor_tl
);
4086 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4090 static void decode_bit_orand(DisasContext
*ctx
)
4097 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4098 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4099 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4100 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4101 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4102 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4105 case OPC2_32_BIT_OR_AND_T
:
4106 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4107 pos1
, pos2
, &tcg_gen_and_tl
, &tcg_gen_or_tl
);
4109 case OPC2_32_BIT_OR_ANDN_T
:
4110 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4111 pos1
, pos2
, &tcg_gen_andc_tl
, &tcg_gen_or_tl
);
4113 case OPC2_32_BIT_OR_NOR_T
:
4114 if (TCG_TARGET_HAS_orc_i32
) {
4115 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4116 pos1
, pos2
, &tcg_gen_or_tl
, &tcg_gen_orc_tl
);
4118 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4119 pos1
, pos2
, &tcg_gen_nor_tl
, &tcg_gen_or_tl
);
4122 case OPC2_32_BIT_OR_OR_T
:
4123 gen_bit_2op(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4124 pos1
, pos2
, &tcg_gen_or_tl
, &tcg_gen_or_tl
);
4127 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4131 static void decode_bit_sh_logic1(DisasContext
*ctx
)
4138 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4139 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4140 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4141 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4142 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4143 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4145 temp
= tcg_temp_new();
4148 case OPC2_32_BIT_SH_AND_T
:
4149 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4150 pos1
, pos2
, &tcg_gen_and_tl
);
4152 case OPC2_32_BIT_SH_ANDN_T
:
4153 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4154 pos1
, pos2
, &tcg_gen_andc_tl
);
4156 case OPC2_32_BIT_SH_NOR_T
:
4157 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4158 pos1
, pos2
, &tcg_gen_nor_tl
);
4160 case OPC2_32_BIT_SH_OR_T
:
4161 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4162 pos1
, pos2
, &tcg_gen_or_tl
);
4165 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4167 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], 1);
4168 tcg_gen_add_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], temp
);
4171 static void decode_bit_sh_logic2(DisasContext
*ctx
)
4178 op2
= MASK_OP_BIT_OP2(ctx
->opcode
);
4179 r1
= MASK_OP_BIT_S1(ctx
->opcode
);
4180 r2
= MASK_OP_BIT_S2(ctx
->opcode
);
4181 r3
= MASK_OP_BIT_D(ctx
->opcode
);
4182 pos1
= MASK_OP_BIT_POS1(ctx
->opcode
);
4183 pos2
= MASK_OP_BIT_POS2(ctx
->opcode
);
4185 temp
= tcg_temp_new();
4188 case OPC2_32_BIT_SH_NAND_T
:
4189 gen_bit_1op(temp
, cpu_gpr_d
[r1
] , cpu_gpr_d
[r2
] ,
4190 pos1
, pos2
, &tcg_gen_nand_tl
);
4192 case OPC2_32_BIT_SH_ORN_T
:
4193 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4194 pos1
, pos2
, &tcg_gen_orc_tl
);
4196 case OPC2_32_BIT_SH_XNOR_T
:
4197 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4198 pos1
, pos2
, &tcg_gen_eqv_tl
);
4200 case OPC2_32_BIT_SH_XOR_T
:
4201 gen_bit_1op(temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
4202 pos1
, pos2
, &tcg_gen_xor_tl
);
4205 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4207 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], 1);
4208 tcg_gen_add_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], temp
);
4214 static void decode_bo_addrmode_post_pre_base(DisasContext
*ctx
)
4221 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4222 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4223 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4224 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4227 case OPC2_32_BO_CACHEA_WI_SHORTOFF
:
4228 case OPC2_32_BO_CACHEA_W_SHORTOFF
:
4229 case OPC2_32_BO_CACHEA_I_SHORTOFF
:
4230 /* instruction to access the cache */
4232 case OPC2_32_BO_CACHEA_WI_POSTINC
:
4233 case OPC2_32_BO_CACHEA_W_POSTINC
:
4234 case OPC2_32_BO_CACHEA_I_POSTINC
:
4235 /* instruction to access the cache, but we still need to handle
4236 the addressing mode */
4237 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4239 case OPC2_32_BO_CACHEA_WI_PREINC
:
4240 case OPC2_32_BO_CACHEA_W_PREINC
:
4241 case OPC2_32_BO_CACHEA_I_PREINC
:
4242 /* instruction to access the cache, but we still need to handle
4243 the addressing mode */
4244 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4246 case OPC2_32_BO_CACHEI_WI_SHORTOFF
:
4247 case OPC2_32_BO_CACHEI_W_SHORTOFF
:
4248 if (!has_feature(ctx
, TRICORE_FEATURE_131
)) {
4249 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4252 case OPC2_32_BO_CACHEI_W_POSTINC
:
4253 case OPC2_32_BO_CACHEI_WI_POSTINC
:
4254 if (has_feature(ctx
, TRICORE_FEATURE_131
)) {
4255 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4257 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4260 case OPC2_32_BO_CACHEI_W_PREINC
:
4261 case OPC2_32_BO_CACHEI_WI_PREINC
:
4262 if (has_feature(ctx
, TRICORE_FEATURE_131
)) {
4263 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4265 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4268 case OPC2_32_BO_ST_A_SHORTOFF
:
4269 gen_offset_st(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], off10
, MO_LESL
);
4271 case OPC2_32_BO_ST_A_POSTINC
:
4272 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4274 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4276 case OPC2_32_BO_ST_A_PREINC
:
4277 gen_st_preincr(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], off10
, MO_LESL
);
4279 case OPC2_32_BO_ST_B_SHORTOFF
:
4280 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_UB
);
4282 case OPC2_32_BO_ST_B_POSTINC
:
4283 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4285 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4287 case OPC2_32_BO_ST_B_PREINC
:
4288 gen_st_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_UB
);
4290 case OPC2_32_BO_ST_D_SHORTOFF
:
4292 gen_offset_st_2regs(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], cpu_gpr_a
[r2
],
4295 case OPC2_32_BO_ST_D_POSTINC
:
4297 gen_st_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
);
4298 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4300 case OPC2_32_BO_ST_D_PREINC
:
4302 temp
= tcg_temp_new();
4303 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4304 gen_st_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp
, ctx
);
4305 tcg_gen_mov_tl(cpu_gpr_a
[r2
], temp
);
4307 case OPC2_32_BO_ST_DA_SHORTOFF
:
4309 gen_offset_st_2regs(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
],
4312 case OPC2_32_BO_ST_DA_POSTINC
:
4314 gen_st_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
);
4315 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4317 case OPC2_32_BO_ST_DA_PREINC
:
4319 temp
= tcg_temp_new();
4320 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4321 gen_st_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp
, ctx
);
4322 tcg_gen_mov_tl(cpu_gpr_a
[r2
], temp
);
4324 case OPC2_32_BO_ST_H_SHORTOFF
:
4325 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4327 case OPC2_32_BO_ST_H_POSTINC
:
4328 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4330 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4332 case OPC2_32_BO_ST_H_PREINC
:
4333 gen_st_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4335 case OPC2_32_BO_ST_Q_SHORTOFF
:
4336 temp
= tcg_temp_new();
4337 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r1
], 16);
4338 gen_offset_st(ctx
, temp
, cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4340 case OPC2_32_BO_ST_Q_POSTINC
:
4341 temp
= tcg_temp_new();
4342 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r1
], 16);
4343 tcg_gen_qemu_st_tl(temp
, cpu_gpr_a
[r2
], ctx
->mem_idx
,
4345 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4347 case OPC2_32_BO_ST_Q_PREINC
:
4348 temp
= tcg_temp_new();
4349 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r1
], 16);
4350 gen_st_preincr(ctx
, temp
, cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4352 case OPC2_32_BO_ST_W_SHORTOFF
:
4353 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4355 case OPC2_32_BO_ST_W_POSTINC
:
4356 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4358 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4360 case OPC2_32_BO_ST_W_PREINC
:
4361 gen_st_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4364 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4368 static void decode_bo_addrmode_bitreverse_circular(DisasContext
*ctx
)
4373 TCGv temp
, temp2
, t_off10
;
4375 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4376 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4377 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4378 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4380 temp
= tcg_temp_new();
4381 temp2
= tcg_temp_new();
4382 t_off10
= tcg_constant_i32(off10
);
4384 tcg_gen_ext16u_tl(temp
, cpu_gpr_a
[r2
+1]);
4385 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4388 case OPC2_32_BO_CACHEA_WI_BR
:
4389 case OPC2_32_BO_CACHEA_W_BR
:
4390 case OPC2_32_BO_CACHEA_I_BR
:
4391 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4393 case OPC2_32_BO_CACHEA_WI_CIRC
:
4394 case OPC2_32_BO_CACHEA_W_CIRC
:
4395 case OPC2_32_BO_CACHEA_I_CIRC
:
4396 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4398 case OPC2_32_BO_ST_A_BR
:
4399 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4400 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4402 case OPC2_32_BO_ST_A_CIRC
:
4403 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4404 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4406 case OPC2_32_BO_ST_B_BR
:
4407 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_UB
);
4408 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4410 case OPC2_32_BO_ST_B_CIRC
:
4411 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_UB
);
4412 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4414 case OPC2_32_BO_ST_D_BR
:
4416 gen_st_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp2
, ctx
);
4417 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4419 case OPC2_32_BO_ST_D_CIRC
:
4421 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4422 tcg_gen_shri_tl(temp2
, cpu_gpr_a
[r2
+1], 16);
4423 tcg_gen_addi_tl(temp
, temp
, 4);
4424 tcg_gen_rem_tl(temp
, temp
, temp2
);
4425 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4426 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
+1], temp2
, ctx
->mem_idx
, MO_LEUL
);
4427 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4429 case OPC2_32_BO_ST_DA_BR
:
4431 gen_st_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp2
, ctx
);
4432 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4434 case OPC2_32_BO_ST_DA_CIRC
:
4436 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4437 tcg_gen_shri_tl(temp2
, cpu_gpr_a
[r2
+1], 16);
4438 tcg_gen_addi_tl(temp
, temp
, 4);
4439 tcg_gen_rem_tl(temp
, temp
, temp2
);
4440 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4441 tcg_gen_qemu_st_tl(cpu_gpr_a
[r1
+1], temp2
, ctx
->mem_idx
, MO_LEUL
);
4442 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4444 case OPC2_32_BO_ST_H_BR
:
4445 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4446 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4448 case OPC2_32_BO_ST_H_CIRC
:
4449 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4450 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4452 case OPC2_32_BO_ST_Q_BR
:
4453 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r1
], 16);
4454 tcg_gen_qemu_st_tl(temp
, temp2
, ctx
->mem_idx
, MO_LEUW
);
4455 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4457 case OPC2_32_BO_ST_Q_CIRC
:
4458 tcg_gen_shri_tl(temp
, cpu_gpr_d
[r1
], 16);
4459 tcg_gen_qemu_st_tl(temp
, temp2
, ctx
->mem_idx
, MO_LEUW
);
4460 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4462 case OPC2_32_BO_ST_W_BR
:
4463 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4464 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4466 case OPC2_32_BO_ST_W_CIRC
:
4467 tcg_gen_qemu_st_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4468 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4471 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4475 static void decode_bo_addrmode_ld_post_pre_base(DisasContext
*ctx
)
4482 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4483 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4484 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4485 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4488 case OPC2_32_BO_LD_A_SHORTOFF
:
4489 gen_offset_ld(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4491 case OPC2_32_BO_LD_A_POSTINC
:
4492 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4494 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4496 case OPC2_32_BO_LD_A_PREINC
:
4497 gen_ld_preincr(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4499 case OPC2_32_BO_LD_B_SHORTOFF
:
4500 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_SB
);
4502 case OPC2_32_BO_LD_B_POSTINC
:
4503 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4505 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4507 case OPC2_32_BO_LD_B_PREINC
:
4508 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_SB
);
4510 case OPC2_32_BO_LD_BU_SHORTOFF
:
4511 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_UB
);
4513 case OPC2_32_BO_LD_BU_POSTINC
:
4514 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4516 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4518 case OPC2_32_BO_LD_BU_PREINC
:
4519 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_UB
);
4521 case OPC2_32_BO_LD_D_SHORTOFF
:
4523 gen_offset_ld_2regs(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], cpu_gpr_a
[r2
],
4526 case OPC2_32_BO_LD_D_POSTINC
:
4528 gen_ld_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
);
4529 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4531 case OPC2_32_BO_LD_D_PREINC
:
4533 temp
= tcg_temp_new();
4534 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4535 gen_ld_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp
, ctx
);
4536 tcg_gen_mov_tl(cpu_gpr_a
[r2
], temp
);
4538 case OPC2_32_BO_LD_DA_SHORTOFF
:
4540 gen_offset_ld_2regs(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
],
4543 case OPC2_32_BO_LD_DA_POSTINC
:
4545 gen_ld_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], ctx
);
4546 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4548 case OPC2_32_BO_LD_DA_PREINC
:
4550 temp
= tcg_temp_new();
4551 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4552 gen_ld_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp
, ctx
);
4553 tcg_gen_mov_tl(cpu_gpr_a
[r2
], temp
);
4555 case OPC2_32_BO_LD_H_SHORTOFF
:
4556 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LESW
);
4558 case OPC2_32_BO_LD_H_POSTINC
:
4559 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4561 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4563 case OPC2_32_BO_LD_H_PREINC
:
4564 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LESW
);
4566 case OPC2_32_BO_LD_HU_SHORTOFF
:
4567 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4569 case OPC2_32_BO_LD_HU_POSTINC
:
4570 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4572 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4574 case OPC2_32_BO_LD_HU_PREINC
:
4575 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4577 case OPC2_32_BO_LD_Q_SHORTOFF
:
4578 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4579 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
4581 case OPC2_32_BO_LD_Q_POSTINC
:
4582 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4584 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
4585 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4587 case OPC2_32_BO_LD_Q_PREINC
:
4588 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUW
);
4589 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
4591 case OPC2_32_BO_LD_W_SHORTOFF
:
4592 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4594 case OPC2_32_BO_LD_W_POSTINC
:
4595 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], ctx
->mem_idx
,
4597 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4599 case OPC2_32_BO_LD_W_PREINC
:
4600 gen_ld_preincr(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], off10
, MO_LEUL
);
4603 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4607 static void decode_bo_addrmode_ld_bitreverse_circular(DisasContext
*ctx
)
4612 TCGv temp
, temp2
, t_off10
;
4614 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4615 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4616 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4617 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4619 temp
= tcg_temp_new();
4620 temp2
= tcg_temp_new();
4621 t_off10
= tcg_constant_i32(off10
);
4623 tcg_gen_ext16u_tl(temp
, cpu_gpr_a
[r2
+1]);
4624 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4628 case OPC2_32_BO_LD_A_BR
:
4629 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4630 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4632 case OPC2_32_BO_LD_A_CIRC
:
4633 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4634 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4636 case OPC2_32_BO_LD_B_BR
:
4637 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_SB
);
4638 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4640 case OPC2_32_BO_LD_B_CIRC
:
4641 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_SB
);
4642 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4644 case OPC2_32_BO_LD_BU_BR
:
4645 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_UB
);
4646 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4648 case OPC2_32_BO_LD_BU_CIRC
:
4649 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_UB
);
4650 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4652 case OPC2_32_BO_LD_D_BR
:
4654 gen_ld_2regs_64(cpu_gpr_d
[r1
+1], cpu_gpr_d
[r1
], temp2
, ctx
);
4655 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4657 case OPC2_32_BO_LD_D_CIRC
:
4659 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4660 tcg_gen_shri_tl(temp2
, cpu_gpr_a
[r2
+1], 16);
4661 tcg_gen_addi_tl(temp
, temp
, 4);
4662 tcg_gen_rem_tl(temp
, temp
, temp2
);
4663 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4664 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
+1], temp2
, ctx
->mem_idx
, MO_LEUL
);
4665 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4667 case OPC2_32_BO_LD_DA_BR
:
4669 gen_ld_2regs_64(cpu_gpr_a
[r1
+1], cpu_gpr_a
[r1
], temp2
, ctx
);
4670 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4672 case OPC2_32_BO_LD_DA_CIRC
:
4674 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4675 tcg_gen_shri_tl(temp2
, cpu_gpr_a
[r2
+1], 16);
4676 tcg_gen_addi_tl(temp
, temp
, 4);
4677 tcg_gen_rem_tl(temp
, temp
, temp2
);
4678 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4679 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
+1], temp2
, ctx
->mem_idx
, MO_LEUL
);
4680 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4682 case OPC2_32_BO_LD_H_BR
:
4683 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LESW
);
4684 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4686 case OPC2_32_BO_LD_H_CIRC
:
4687 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LESW
);
4688 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4690 case OPC2_32_BO_LD_HU_BR
:
4691 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4692 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4694 case OPC2_32_BO_LD_HU_CIRC
:
4695 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4696 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4698 case OPC2_32_BO_LD_Q_BR
:
4699 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4700 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
4701 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4703 case OPC2_32_BO_LD_Q_CIRC
:
4704 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUW
);
4705 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
4706 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4708 case OPC2_32_BO_LD_W_BR
:
4709 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4710 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4712 case OPC2_32_BO_LD_W_CIRC
:
4713 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp2
, ctx
->mem_idx
, MO_LEUL
);
4714 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4717 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4721 static void decode_bo_addrmode_stctx_post_pre_base(DisasContext
*ctx
)
4729 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4730 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4731 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4732 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4735 temp
= tcg_temp_new();
4738 case OPC2_32_BO_LDLCX_SHORTOFF
:
4739 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4740 gen_helper_ldlcx(cpu_env
, temp
);
4742 case OPC2_32_BO_LDMST_SHORTOFF
:
4743 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4744 gen_ldmst(ctx
, r1
, temp
);
4746 case OPC2_32_BO_LDMST_POSTINC
:
4747 gen_ldmst(ctx
, r1
, cpu_gpr_a
[r2
]);
4748 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4750 case OPC2_32_BO_LDMST_PREINC
:
4751 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4752 gen_ldmst(ctx
, r1
, cpu_gpr_a
[r2
]);
4754 case OPC2_32_BO_LDUCX_SHORTOFF
:
4755 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4756 gen_helper_lducx(cpu_env
, temp
);
4758 case OPC2_32_BO_LEA_SHORTOFF
:
4759 tcg_gen_addi_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], off10
);
4761 case OPC2_32_BO_STLCX_SHORTOFF
:
4762 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4763 gen_helper_stlcx(cpu_env
, temp
);
4765 case OPC2_32_BO_STUCX_SHORTOFF
:
4766 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4767 gen_helper_stucx(cpu_env
, temp
);
4769 case OPC2_32_BO_SWAP_W_SHORTOFF
:
4770 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4771 gen_swap(ctx
, r1
, temp
);
4773 case OPC2_32_BO_SWAP_W_POSTINC
:
4774 gen_swap(ctx
, r1
, cpu_gpr_a
[r2
]);
4775 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4777 case OPC2_32_BO_SWAP_W_PREINC
:
4778 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4779 gen_swap(ctx
, r1
, cpu_gpr_a
[r2
]);
4781 case OPC2_32_BO_CMPSWAP_W_SHORTOFF
:
4782 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4783 gen_cmpswap(ctx
, r1
, temp
);
4785 case OPC2_32_BO_CMPSWAP_W_POSTINC
:
4786 gen_cmpswap(ctx
, r1
, cpu_gpr_a
[r2
]);
4787 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4789 case OPC2_32_BO_CMPSWAP_W_PREINC
:
4790 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4791 gen_cmpswap(ctx
, r1
, cpu_gpr_a
[r2
]);
4793 case OPC2_32_BO_SWAPMSK_W_SHORTOFF
:
4794 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], off10
);
4795 gen_swapmsk(ctx
, r1
, temp
);
4797 case OPC2_32_BO_SWAPMSK_W_POSTINC
:
4798 gen_swapmsk(ctx
, r1
, cpu_gpr_a
[r2
]);
4799 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4801 case OPC2_32_BO_SWAPMSK_W_PREINC
:
4802 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r2
], off10
);
4803 gen_swapmsk(ctx
, r1
, cpu_gpr_a
[r2
]);
4806 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4810 static void decode_bo_addrmode_ldmst_bitreverse_circular(DisasContext
*ctx
)
4815 TCGv temp
, temp2
, t_off10
;
4817 r1
= MASK_OP_BO_S1D(ctx
->opcode
);
4818 r2
= MASK_OP_BO_S2(ctx
->opcode
);
4819 off10
= MASK_OP_BO_OFF10_SEXT(ctx
->opcode
);
4820 op2
= MASK_OP_BO_OP2(ctx
->opcode
);
4822 temp
= tcg_temp_new();
4823 temp2
= tcg_temp_new();
4824 t_off10
= tcg_constant_i32(off10
);
4826 tcg_gen_ext16u_tl(temp
, cpu_gpr_a
[r2
+1]);
4827 tcg_gen_add_tl(temp2
, cpu_gpr_a
[r2
], temp
);
4830 case OPC2_32_BO_LDMST_BR
:
4831 gen_ldmst(ctx
, r1
, temp2
);
4832 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4834 case OPC2_32_BO_LDMST_CIRC
:
4835 gen_ldmst(ctx
, r1
, temp2
);
4836 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4838 case OPC2_32_BO_SWAP_W_BR
:
4839 gen_swap(ctx
, r1
, temp2
);
4840 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4842 case OPC2_32_BO_SWAP_W_CIRC
:
4843 gen_swap(ctx
, r1
, temp2
);
4844 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4846 case OPC2_32_BO_CMPSWAP_W_BR
:
4847 gen_cmpswap(ctx
, r1
, temp2
);
4848 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4850 case OPC2_32_BO_CMPSWAP_W_CIRC
:
4851 gen_cmpswap(ctx
, r1
, temp2
);
4852 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4854 case OPC2_32_BO_SWAPMSK_W_BR
:
4855 gen_swapmsk(ctx
, r1
, temp2
);
4856 gen_helper_br_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1]);
4858 case OPC2_32_BO_SWAPMSK_W_CIRC
:
4859 gen_swapmsk(ctx
, r1
, temp2
);
4860 gen_helper_circ_update(cpu_gpr_a
[r2
+1], cpu_gpr_a
[r2
+1], t_off10
);
4863 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4867 static void decode_bol_opc(DisasContext
*ctx
, int32_t op1
)
4873 r1
= MASK_OP_BOL_S1D(ctx
->opcode
);
4874 r2
= MASK_OP_BOL_S2(ctx
->opcode
);
4875 address
= MASK_OP_BOL_OFF16_SEXT(ctx
->opcode
);
4878 case OPC1_32_BOL_LD_A_LONGOFF
:
4879 temp
= tcg_temp_new();
4880 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], address
);
4881 tcg_gen_qemu_ld_tl(cpu_gpr_a
[r1
], temp
, ctx
->mem_idx
, MO_LEUL
);
4883 case OPC1_32_BOL_LD_W_LONGOFF
:
4884 temp
= tcg_temp_new();
4885 tcg_gen_addi_tl(temp
, cpu_gpr_a
[r2
], address
);
4886 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LEUL
);
4888 case OPC1_32_BOL_LEA_LONGOFF
:
4889 tcg_gen_addi_tl(cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], address
);
4891 case OPC1_32_BOL_ST_A_LONGOFF
:
4892 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4893 gen_offset_st(ctx
, cpu_gpr_a
[r1
], cpu_gpr_a
[r2
], address
, MO_LEUL
);
4895 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4898 case OPC1_32_BOL_ST_W_LONGOFF
:
4899 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_LEUL
);
4901 case OPC1_32_BOL_LD_B_LONGOFF
:
4902 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4903 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_SB
);
4905 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4908 case OPC1_32_BOL_LD_BU_LONGOFF
:
4909 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4910 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_UB
);
4912 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4915 case OPC1_32_BOL_LD_H_LONGOFF
:
4916 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4917 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_LESW
);
4919 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4922 case OPC1_32_BOL_LD_HU_LONGOFF
:
4923 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4924 gen_offset_ld(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_LEUW
);
4926 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4929 case OPC1_32_BOL_ST_B_LONGOFF
:
4930 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4931 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_SB
);
4933 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4936 case OPC1_32_BOL_ST_H_LONGOFF
:
4937 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
4938 gen_offset_st(ctx
, cpu_gpr_d
[r1
], cpu_gpr_a
[r2
], address
, MO_LESW
);
4940 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4944 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
4949 static void decode_rc_logical_shift(DisasContext
*ctx
)
4956 r2
= MASK_OP_RC_D(ctx
->opcode
);
4957 r1
= MASK_OP_RC_S1(ctx
->opcode
);
4958 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
4959 op2
= MASK_OP_RC_OP2(ctx
->opcode
);
4961 temp
= tcg_temp_new();
4964 case OPC2_32_RC_AND
:
4965 tcg_gen_andi_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
4967 case OPC2_32_RC_ANDN
:
4968 tcg_gen_andi_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], ~const9
);
4970 case OPC2_32_RC_NAND
:
4971 tcg_gen_movi_tl(temp
, const9
);
4972 tcg_gen_nand_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
);
4974 case OPC2_32_RC_NOR
:
4975 tcg_gen_movi_tl(temp
, const9
);
4976 tcg_gen_nor_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
);
4979 tcg_gen_ori_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
4981 case OPC2_32_RC_ORN
:
4982 tcg_gen_ori_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], ~const9
);
4985 const9
= sextract32(const9
, 0, 6);
4986 gen_shi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
4988 case OPC2_32_RC_SH_H
:
4989 const9
= sextract32(const9
, 0, 5);
4990 gen_sh_hi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
4992 case OPC2_32_RC_SHA
:
4993 const9
= sextract32(const9
, 0, 6);
4994 gen_shaci(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
4996 case OPC2_32_RC_SHA_H
:
4997 const9
= sextract32(const9
, 0, 5);
4998 gen_sha_hi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5000 case OPC2_32_RC_SHAS
:
5001 gen_shasi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5003 case OPC2_32_RC_XNOR
:
5004 tcg_gen_xori_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5005 tcg_gen_not_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r2
]);
5007 case OPC2_32_RC_XOR
:
5008 tcg_gen_xori_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5011 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5015 static void decode_rc_accumulator(DisasContext
*ctx
)
5023 r2
= MASK_OP_RC_D(ctx
->opcode
);
5024 r1
= MASK_OP_RC_S1(ctx
->opcode
);
5025 const9
= MASK_OP_RC_CONST9_SEXT(ctx
->opcode
);
5027 op2
= MASK_OP_RC_OP2(ctx
->opcode
);
5029 temp
= tcg_temp_new();
5032 case OPC2_32_RC_ABSDIF
:
5033 gen_absdifi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5035 case OPC2_32_RC_ABSDIFS
:
5036 gen_absdifsi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5038 case OPC2_32_RC_ADD
:
5039 gen_addi_d(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5041 case OPC2_32_RC_ADDC
:
5042 gen_addci_CC(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5044 case OPC2_32_RC_ADDS
:
5045 gen_addsi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5047 case OPC2_32_RC_ADDS_U
:
5048 gen_addsui(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5050 case OPC2_32_RC_ADDX
:
5051 gen_addi_CC(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5053 case OPC2_32_RC_AND_EQ
:
5054 gen_accumulating_condi(TCG_COND_EQ
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5055 const9
, &tcg_gen_and_tl
);
5057 case OPC2_32_RC_AND_GE
:
5058 gen_accumulating_condi(TCG_COND_GE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5059 const9
, &tcg_gen_and_tl
);
5061 case OPC2_32_RC_AND_GE_U
:
5062 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5063 gen_accumulating_condi(TCG_COND_GEU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5064 const9
, &tcg_gen_and_tl
);
5066 case OPC2_32_RC_AND_LT
:
5067 gen_accumulating_condi(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5068 const9
, &tcg_gen_and_tl
);
5070 case OPC2_32_RC_AND_LT_U
:
5071 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5072 gen_accumulating_condi(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5073 const9
, &tcg_gen_and_tl
);
5075 case OPC2_32_RC_AND_NE
:
5076 gen_accumulating_condi(TCG_COND_NE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5077 const9
, &tcg_gen_and_tl
);
5080 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5082 case OPC2_32_RC_EQANY_B
:
5083 gen_eqany_bi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5085 case OPC2_32_RC_EQANY_H
:
5086 gen_eqany_hi(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5089 tcg_gen_setcondi_tl(TCG_COND_GE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5091 case OPC2_32_RC_GE_U
:
5092 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5093 tcg_gen_setcondi_tl(TCG_COND_GEU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5096 tcg_gen_setcondi_tl(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5098 case OPC2_32_RC_LT_U
:
5099 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5100 tcg_gen_setcondi_tl(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5102 case OPC2_32_RC_MAX
:
5103 tcg_gen_movi_tl(temp
, const9
);
5104 tcg_gen_movcond_tl(TCG_COND_GT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
,
5105 cpu_gpr_d
[r1
], temp
);
5107 case OPC2_32_RC_MAX_U
:
5108 tcg_gen_movi_tl(temp
, MASK_OP_RC_CONST9(ctx
->opcode
));
5109 tcg_gen_movcond_tl(TCG_COND_GTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
,
5110 cpu_gpr_d
[r1
], temp
);
5112 case OPC2_32_RC_MIN
:
5113 tcg_gen_movi_tl(temp
, const9
);
5114 tcg_gen_movcond_tl(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
,
5115 cpu_gpr_d
[r1
], temp
);
5117 case OPC2_32_RC_MIN_U
:
5118 tcg_gen_movi_tl(temp
, MASK_OP_RC_CONST9(ctx
->opcode
));
5119 tcg_gen_movcond_tl(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
,
5120 cpu_gpr_d
[r1
], temp
);
5123 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5125 case OPC2_32_RC_OR_EQ
:
5126 gen_accumulating_condi(TCG_COND_EQ
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5127 const9
, &tcg_gen_or_tl
);
5129 case OPC2_32_RC_OR_GE
:
5130 gen_accumulating_condi(TCG_COND_GE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5131 const9
, &tcg_gen_or_tl
);
5133 case OPC2_32_RC_OR_GE_U
:
5134 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5135 gen_accumulating_condi(TCG_COND_GEU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5136 const9
, &tcg_gen_or_tl
);
5138 case OPC2_32_RC_OR_LT
:
5139 gen_accumulating_condi(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5140 const9
, &tcg_gen_or_tl
);
5142 case OPC2_32_RC_OR_LT_U
:
5143 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5144 gen_accumulating_condi(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5145 const9
, &tcg_gen_or_tl
);
5147 case OPC2_32_RC_OR_NE
:
5148 gen_accumulating_condi(TCG_COND_NE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5149 const9
, &tcg_gen_or_tl
);
5151 case OPC2_32_RC_RSUB
:
5152 tcg_gen_movi_tl(temp
, const9
);
5153 gen_sub_d(cpu_gpr_d
[r2
], temp
, cpu_gpr_d
[r1
]);
5155 case OPC2_32_RC_RSUBS
:
5156 tcg_gen_movi_tl(temp
, const9
);
5157 gen_subs(cpu_gpr_d
[r2
], temp
, cpu_gpr_d
[r1
]);
5159 case OPC2_32_RC_RSUBS_U
:
5160 tcg_gen_movi_tl(temp
, const9
);
5161 gen_subsu(cpu_gpr_d
[r2
], temp
, cpu_gpr_d
[r1
]);
5163 case OPC2_32_RC_SH_EQ
:
5164 gen_sh_condi(TCG_COND_EQ
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5166 case OPC2_32_RC_SH_GE
:
5167 gen_sh_condi(TCG_COND_GE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5169 case OPC2_32_RC_SH_GE_U
:
5170 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5171 gen_sh_condi(TCG_COND_GEU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5173 case OPC2_32_RC_SH_LT
:
5174 gen_sh_condi(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5176 case OPC2_32_RC_SH_LT_U
:
5177 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5178 gen_sh_condi(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5180 case OPC2_32_RC_SH_NE
:
5181 gen_sh_condi(TCG_COND_NE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5183 case OPC2_32_RC_XOR_EQ
:
5184 gen_accumulating_condi(TCG_COND_EQ
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5185 const9
, &tcg_gen_xor_tl
);
5187 case OPC2_32_RC_XOR_GE
:
5188 gen_accumulating_condi(TCG_COND_GE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5189 const9
, &tcg_gen_xor_tl
);
5191 case OPC2_32_RC_XOR_GE_U
:
5192 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5193 gen_accumulating_condi(TCG_COND_GEU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5194 const9
, &tcg_gen_xor_tl
);
5196 case OPC2_32_RC_XOR_LT
:
5197 gen_accumulating_condi(TCG_COND_LT
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5198 const9
, &tcg_gen_xor_tl
);
5200 case OPC2_32_RC_XOR_LT_U
:
5201 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5202 gen_accumulating_condi(TCG_COND_LTU
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5203 const9
, &tcg_gen_xor_tl
);
5205 case OPC2_32_RC_XOR_NE
:
5206 gen_accumulating_condi(TCG_COND_NE
, cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
5207 const9
, &tcg_gen_xor_tl
);
5210 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5214 static void decode_rc_serviceroutine(DisasContext
*ctx
)
5219 op2
= MASK_OP_RC_OP2(ctx
->opcode
);
5220 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5223 case OPC2_32_RC_BISR
:
5224 gen_helper_1arg(bisr
, const9
);
5226 case OPC2_32_RC_SYSCALL
:
5227 /* TODO: Add exception generation */
5230 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5234 static void decode_rc_mul(DisasContext
*ctx
)
5240 r2
= MASK_OP_RC_D(ctx
->opcode
);
5241 r1
= MASK_OP_RC_S1(ctx
->opcode
);
5242 const9
= MASK_OP_RC_CONST9_SEXT(ctx
->opcode
);
5244 op2
= MASK_OP_RC_OP2(ctx
->opcode
);
5247 case OPC2_32_RC_MUL_32
:
5248 gen_muli_i32s(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5250 case OPC2_32_RC_MUL_64
:
5252 gen_muli_i64s(cpu_gpr_d
[r2
], cpu_gpr_d
[r2
+1], cpu_gpr_d
[r1
], const9
);
5254 case OPC2_32_RC_MULS_32
:
5255 gen_mulsi_i32(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5257 case OPC2_32_RC_MUL_U_64
:
5258 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5260 gen_muli_i64u(cpu_gpr_d
[r2
], cpu_gpr_d
[r2
+1], cpu_gpr_d
[r1
], const9
);
5262 case OPC2_32_RC_MULS_U_32
:
5263 const9
= MASK_OP_RC_CONST9(ctx
->opcode
);
5264 gen_mulsui_i32(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const9
);
5267 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5272 static void decode_rcpw_insert(DisasContext
*ctx
)
5276 int32_t pos
, width
, const4
;
5280 op2
= MASK_OP_RCPW_OP2(ctx
->opcode
);
5281 r1
= MASK_OP_RCPW_S1(ctx
->opcode
);
5282 r2
= MASK_OP_RCPW_D(ctx
->opcode
);
5283 const4
= MASK_OP_RCPW_CONST4(ctx
->opcode
);
5284 width
= MASK_OP_RCPW_WIDTH(ctx
->opcode
);
5285 pos
= MASK_OP_RCPW_POS(ctx
->opcode
);
5288 case OPC2_32_RCPW_IMASK
:
5290 /* if pos + width > 32 undefined result */
5291 if (pos
+ width
<= 32) {
5292 tcg_gen_movi_tl(cpu_gpr_d
[r2
+1], ((1u << width
) - 1) << pos
);
5293 tcg_gen_movi_tl(cpu_gpr_d
[r2
], (const4
<< pos
));
5296 case OPC2_32_RCPW_INSERT
:
5297 /* if pos + width > 32 undefined result */
5298 if (pos
+ width
<= 32) {
5299 temp
= tcg_constant_i32(const4
);
5300 tcg_gen_deposit_tl(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
, pos
, width
);
5304 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5310 static void decode_rcrw_insert(DisasContext
*ctx
)
5314 int32_t width
, const4
;
5316 TCGv temp
, temp2
, temp3
;
5318 op2
= MASK_OP_RCRW_OP2(ctx
->opcode
);
5319 r1
= MASK_OP_RCRW_S1(ctx
->opcode
);
5320 r3
= MASK_OP_RCRW_S3(ctx
->opcode
);
5321 r4
= MASK_OP_RCRW_D(ctx
->opcode
);
5322 width
= MASK_OP_RCRW_WIDTH(ctx
->opcode
);
5323 const4
= MASK_OP_RCRW_CONST4(ctx
->opcode
);
5325 temp
= tcg_temp_new();
5326 temp2
= tcg_temp_new();
5329 case OPC2_32_RCRW_IMASK
:
5330 tcg_gen_andi_tl(temp
, cpu_gpr_d
[r3
], 0x1f);
5331 tcg_gen_movi_tl(temp2
, (1 << width
) - 1);
5332 tcg_gen_shl_tl(cpu_gpr_d
[r4
+ 1], temp2
, temp
);
5333 tcg_gen_movi_tl(temp2
, const4
);
5334 tcg_gen_shl_tl(cpu_gpr_d
[r4
], temp2
, temp
);
5336 case OPC2_32_RCRW_INSERT
:
5337 temp3
= tcg_temp_new();
5339 tcg_gen_movi_tl(temp
, width
);
5340 tcg_gen_movi_tl(temp2
, const4
);
5341 tcg_gen_andi_tl(temp3
, cpu_gpr_d
[r3
], 0x1f);
5342 gen_insert(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], temp2
, temp
, temp3
);
5345 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5351 static void decode_rcr_cond_select(DisasContext
*ctx
)
5359 op2
= MASK_OP_RCR_OP2(ctx
->opcode
);
5360 r1
= MASK_OP_RCR_S1(ctx
->opcode
);
5361 const9
= MASK_OP_RCR_CONST9_SEXT(ctx
->opcode
);
5362 r3
= MASK_OP_RCR_S3(ctx
->opcode
);
5363 r4
= MASK_OP_RCR_D(ctx
->opcode
);
5366 case OPC2_32_RCR_CADD
:
5367 gen_condi_add(TCG_COND_NE
, cpu_gpr_d
[r1
], const9
, cpu_gpr_d
[r4
],
5370 case OPC2_32_RCR_CADDN
:
5371 gen_condi_add(TCG_COND_EQ
, cpu_gpr_d
[r1
], const9
, cpu_gpr_d
[r4
],
5374 case OPC2_32_RCR_SEL
:
5375 temp
= tcg_constant_i32(0);
5376 temp2
= tcg_constant_i32(const9
);
5377 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
,
5378 cpu_gpr_d
[r1
], temp2
);
5380 case OPC2_32_RCR_SELN
:
5381 temp
= tcg_constant_i32(0);
5382 temp2
= tcg_constant_i32(const9
);
5383 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
,
5384 cpu_gpr_d
[r1
], temp2
);
5387 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5391 static void decode_rcr_madd(DisasContext
*ctx
)
5398 op2
= MASK_OP_RCR_OP2(ctx
->opcode
);
5399 r1
= MASK_OP_RCR_S1(ctx
->opcode
);
5400 const9
= MASK_OP_RCR_CONST9_SEXT(ctx
->opcode
);
5401 r3
= MASK_OP_RCR_S3(ctx
->opcode
);
5402 r4
= MASK_OP_RCR_D(ctx
->opcode
);
5405 case OPC2_32_RCR_MADD_32
:
5406 gen_maddi32_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5408 case OPC2_32_RCR_MADD_64
:
5411 gen_maddi64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5412 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5414 case OPC2_32_RCR_MADDS_32
:
5415 gen_maddsi_32(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5417 case OPC2_32_RCR_MADDS_64
:
5420 gen_maddsi_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5421 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5423 case OPC2_32_RCR_MADD_U_64
:
5426 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5427 gen_maddui64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5428 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5430 case OPC2_32_RCR_MADDS_U_32
:
5431 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5432 gen_maddsui_32(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5434 case OPC2_32_RCR_MADDS_U_64
:
5437 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5438 gen_maddsui_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5439 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5442 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5446 static void decode_rcr_msub(DisasContext
*ctx
)
5453 op2
= MASK_OP_RCR_OP2(ctx
->opcode
);
5454 r1
= MASK_OP_RCR_S1(ctx
->opcode
);
5455 const9
= MASK_OP_RCR_CONST9_SEXT(ctx
->opcode
);
5456 r3
= MASK_OP_RCR_S3(ctx
->opcode
);
5457 r4
= MASK_OP_RCR_D(ctx
->opcode
);
5460 case OPC2_32_RCR_MSUB_32
:
5461 gen_msubi32_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5463 case OPC2_32_RCR_MSUB_64
:
5466 gen_msubi64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5467 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5469 case OPC2_32_RCR_MSUBS_32
:
5470 gen_msubsi_32(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5472 case OPC2_32_RCR_MSUBS_64
:
5475 gen_msubsi_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5476 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5478 case OPC2_32_RCR_MSUB_U_64
:
5481 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5482 gen_msubui64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5483 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5485 case OPC2_32_RCR_MSUBS_U_32
:
5486 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5487 gen_msubsui_32(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
], const9
);
5489 case OPC2_32_RCR_MSUBS_U_64
:
5492 const9
= MASK_OP_RCR_CONST9(ctx
->opcode
);
5493 gen_msubsui_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
5494 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], const9
);
5497 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5503 static void decode_rlc_opc(DisasContext
*ctx
,
5509 const16
= MASK_OP_RLC_CONST16_SEXT(ctx
->opcode
);
5510 r1
= MASK_OP_RLC_S1(ctx
->opcode
);
5511 r2
= MASK_OP_RLC_D(ctx
->opcode
);
5514 case OPC1_32_RLC_ADDI
:
5515 gen_addi_d(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const16
);
5517 case OPC1_32_RLC_ADDIH
:
5518 gen_addi_d(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], const16
<< 16);
5520 case OPC1_32_RLC_ADDIH_A
:
5521 tcg_gen_addi_tl(cpu_gpr_a
[r2
], cpu_gpr_a
[r1
], const16
<< 16);
5523 case OPC1_32_RLC_MFCR
:
5524 const16
= MASK_OP_RLC_CONST16(ctx
->opcode
);
5525 gen_mfcr(ctx
, cpu_gpr_d
[r2
], const16
);
5527 case OPC1_32_RLC_MOV
:
5528 tcg_gen_movi_tl(cpu_gpr_d
[r2
], const16
);
5530 case OPC1_32_RLC_MOV_64
:
5531 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
5533 tcg_gen_movi_tl(cpu_gpr_d
[r2
], const16
);
5534 tcg_gen_movi_tl(cpu_gpr_d
[r2
+1], const16
>> 15);
5536 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5539 case OPC1_32_RLC_MOV_U
:
5540 const16
= MASK_OP_RLC_CONST16(ctx
->opcode
);
5541 tcg_gen_movi_tl(cpu_gpr_d
[r2
], const16
);
5543 case OPC1_32_RLC_MOV_H
:
5544 tcg_gen_movi_tl(cpu_gpr_d
[r2
], const16
<< 16);
5546 case OPC1_32_RLC_MOVH_A
:
5547 tcg_gen_movi_tl(cpu_gpr_a
[r2
], const16
<< 16);
5549 case OPC1_32_RLC_MTCR
:
5550 const16
= MASK_OP_RLC_CONST16(ctx
->opcode
);
5551 gen_mtcr(ctx
, cpu_gpr_d
[r1
], const16
);
5554 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5559 static void decode_rr_accumulator(DisasContext
*ctx
)
5566 r3
= MASK_OP_RR_D(ctx
->opcode
);
5567 r2
= MASK_OP_RR_S2(ctx
->opcode
);
5568 r1
= MASK_OP_RR_S1(ctx
->opcode
);
5569 op2
= MASK_OP_RR_OP2(ctx
->opcode
);
5572 case OPC2_32_RR_ABS
:
5573 gen_abs(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
5575 case OPC2_32_RR_ABS_B
:
5576 gen_helper_abs_b(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r2
]);
5578 case OPC2_32_RR_ABS_H
:
5579 gen_helper_abs_h(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r2
]);
5581 case OPC2_32_RR_ABSDIF
:
5582 gen_absdif(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5584 case OPC2_32_RR_ABSDIF_B
:
5585 gen_helper_absdif_b(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5588 case OPC2_32_RR_ABSDIF_H
:
5589 gen_helper_absdif_h(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5592 case OPC2_32_RR_ABSDIFS
:
5593 gen_helper_absdif_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5596 case OPC2_32_RR_ABSDIFS_H
:
5597 gen_helper_absdif_h_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5600 case OPC2_32_RR_ABSS
:
5601 gen_helper_abs_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r2
]);
5603 case OPC2_32_RR_ABSS_H
:
5604 gen_helper_abs_h_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r2
]);
5606 case OPC2_32_RR_ADD
:
5607 gen_add_d(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5609 case OPC2_32_RR_ADD_B
:
5610 gen_helper_add_b(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5612 case OPC2_32_RR_ADD_H
:
5613 gen_helper_add_h(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5615 case OPC2_32_RR_ADDC
:
5616 gen_addc_CC(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5618 case OPC2_32_RR_ADDS
:
5619 gen_adds(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5621 case OPC2_32_RR_ADDS_H
:
5622 gen_helper_add_h_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5625 case OPC2_32_RR_ADDS_HU
:
5626 gen_helper_add_h_suov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5629 case OPC2_32_RR_ADDS_U
:
5630 gen_helper_add_suov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5633 case OPC2_32_RR_ADDX
:
5634 gen_add_CC(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5636 case OPC2_32_RR_AND_EQ
:
5637 gen_accumulating_cond(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5638 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5640 case OPC2_32_RR_AND_GE
:
5641 gen_accumulating_cond(TCG_COND_GE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5642 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5644 case OPC2_32_RR_AND_GE_U
:
5645 gen_accumulating_cond(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5646 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5648 case OPC2_32_RR_AND_LT
:
5649 gen_accumulating_cond(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5650 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5652 case OPC2_32_RR_AND_LT_U
:
5653 gen_accumulating_cond(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5654 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5656 case OPC2_32_RR_AND_NE
:
5657 gen_accumulating_cond(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5658 cpu_gpr_d
[r2
], &tcg_gen_and_tl
);
5661 tcg_gen_setcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5664 case OPC2_32_RR_EQ_B
:
5665 gen_helper_eq_b(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5667 case OPC2_32_RR_EQ_H
:
5668 gen_helper_eq_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5670 case OPC2_32_RR_EQ_W
:
5671 gen_cond_w(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5673 case OPC2_32_RR_EQANY_B
:
5674 gen_helper_eqany_b(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5676 case OPC2_32_RR_EQANY_H
:
5677 gen_helper_eqany_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5680 tcg_gen_setcond_tl(TCG_COND_GE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5683 case OPC2_32_RR_GE_U
:
5684 tcg_gen_setcond_tl(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5688 tcg_gen_setcond_tl(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5691 case OPC2_32_RR_LT_U
:
5692 tcg_gen_setcond_tl(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5695 case OPC2_32_RR_LT_B
:
5696 gen_helper_lt_b(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5698 case OPC2_32_RR_LT_BU
:
5699 gen_helper_lt_bu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5701 case OPC2_32_RR_LT_H
:
5702 gen_helper_lt_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5704 case OPC2_32_RR_LT_HU
:
5705 gen_helper_lt_hu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5707 case OPC2_32_RR_LT_W
:
5708 gen_cond_w(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5710 case OPC2_32_RR_LT_WU
:
5711 gen_cond_w(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5713 case OPC2_32_RR_MAX
:
5714 tcg_gen_movcond_tl(TCG_COND_GT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5715 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5717 case OPC2_32_RR_MAX_U
:
5718 tcg_gen_movcond_tl(TCG_COND_GTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5719 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5721 case OPC2_32_RR_MAX_B
:
5722 gen_helper_max_b(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5724 case OPC2_32_RR_MAX_BU
:
5725 gen_helper_max_bu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5727 case OPC2_32_RR_MAX_H
:
5728 gen_helper_max_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5730 case OPC2_32_RR_MAX_HU
:
5731 gen_helper_max_hu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5733 case OPC2_32_RR_MIN
:
5734 tcg_gen_movcond_tl(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5735 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5737 case OPC2_32_RR_MIN_U
:
5738 tcg_gen_movcond_tl(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5739 cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5741 case OPC2_32_RR_MIN_B
:
5742 gen_helper_min_b(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5744 case OPC2_32_RR_MIN_BU
:
5745 gen_helper_min_bu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5747 case OPC2_32_RR_MIN_H
:
5748 gen_helper_min_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5750 case OPC2_32_RR_MIN_HU
:
5751 gen_helper_min_hu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5753 case OPC2_32_RR_MOV
:
5754 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
5756 case OPC2_32_RR_MOV_64
:
5757 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
5758 temp
= tcg_temp_new();
5761 tcg_gen_mov_tl(temp
, cpu_gpr_d
[r1
]);
5762 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
5763 tcg_gen_mov_tl(cpu_gpr_d
[r3
+ 1], temp
);
5765 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5768 case OPC2_32_RR_MOVS_64
:
5769 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
5771 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
5772 tcg_gen_sari_tl(cpu_gpr_d
[r3
+ 1], cpu_gpr_d
[r2
], 31);
5774 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5778 tcg_gen_setcond_tl(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5781 case OPC2_32_RR_OR_EQ
:
5782 gen_accumulating_cond(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5783 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5785 case OPC2_32_RR_OR_GE
:
5786 gen_accumulating_cond(TCG_COND_GE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5787 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5789 case OPC2_32_RR_OR_GE_U
:
5790 gen_accumulating_cond(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5791 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5793 case OPC2_32_RR_OR_LT
:
5794 gen_accumulating_cond(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5795 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5797 case OPC2_32_RR_OR_LT_U
:
5798 gen_accumulating_cond(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5799 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5801 case OPC2_32_RR_OR_NE
:
5802 gen_accumulating_cond(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5803 cpu_gpr_d
[r2
], &tcg_gen_or_tl
);
5805 case OPC2_32_RR_SAT_B
:
5806 gen_saturate(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 0x7f, -0x80);
5808 case OPC2_32_RR_SAT_BU
:
5809 gen_saturate_u(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 0xff);
5811 case OPC2_32_RR_SAT_H
:
5812 gen_saturate(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 0x7fff, -0x8000);
5814 case OPC2_32_RR_SAT_HU
:
5815 gen_saturate_u(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 0xffff);
5817 case OPC2_32_RR_SH_EQ
:
5818 gen_sh_cond(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5821 case OPC2_32_RR_SH_GE
:
5822 gen_sh_cond(TCG_COND_GE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5825 case OPC2_32_RR_SH_GE_U
:
5826 gen_sh_cond(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5829 case OPC2_32_RR_SH_LT
:
5830 gen_sh_cond(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5833 case OPC2_32_RR_SH_LT_U
:
5834 gen_sh_cond(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5837 case OPC2_32_RR_SH_NE
:
5838 gen_sh_cond(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5841 case OPC2_32_RR_SUB
:
5842 gen_sub_d(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5844 case OPC2_32_RR_SUB_B
:
5845 gen_helper_sub_b(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5847 case OPC2_32_RR_SUB_H
:
5848 gen_helper_sub_h(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5850 case OPC2_32_RR_SUBC
:
5851 gen_subc_CC(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5853 case OPC2_32_RR_SUBS
:
5854 gen_subs(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5856 case OPC2_32_RR_SUBS_U
:
5857 gen_subsu(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5859 case OPC2_32_RR_SUBS_H
:
5860 gen_helper_sub_h_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5863 case OPC2_32_RR_SUBS_HU
:
5864 gen_helper_sub_h_suov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
5867 case OPC2_32_RR_SUBX
:
5868 gen_sub_CC(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5870 case OPC2_32_RR_XOR_EQ
:
5871 gen_accumulating_cond(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5872 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5874 case OPC2_32_RR_XOR_GE
:
5875 gen_accumulating_cond(TCG_COND_GE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5876 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5878 case OPC2_32_RR_XOR_GE_U
:
5879 gen_accumulating_cond(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5880 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5882 case OPC2_32_RR_XOR_LT
:
5883 gen_accumulating_cond(TCG_COND_LT
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5884 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5886 case OPC2_32_RR_XOR_LT_U
:
5887 gen_accumulating_cond(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5888 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5890 case OPC2_32_RR_XOR_NE
:
5891 gen_accumulating_cond(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
5892 cpu_gpr_d
[r2
], &tcg_gen_xor_tl
);
5895 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5899 static void decode_rr_logical_shift(DisasContext
*ctx
)
5904 r3
= MASK_OP_RR_D(ctx
->opcode
);
5905 r2
= MASK_OP_RR_S2(ctx
->opcode
);
5906 r1
= MASK_OP_RR_S1(ctx
->opcode
);
5907 op2
= MASK_OP_RR_OP2(ctx
->opcode
);
5910 case OPC2_32_RR_AND
:
5911 tcg_gen_and_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5913 case OPC2_32_RR_ANDN
:
5914 tcg_gen_andc_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5916 case OPC2_32_RR_CLO
:
5917 tcg_gen_not_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
5918 tcg_gen_clzi_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], TARGET_LONG_BITS
);
5920 case OPC2_32_RR_CLO_H
:
5921 gen_helper_clo_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
5923 case OPC2_32_RR_CLS
:
5924 tcg_gen_clrsb_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
5926 case OPC2_32_RR_CLS_H
:
5927 gen_helper_cls_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
5929 case OPC2_32_RR_CLZ
:
5930 tcg_gen_clzi_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], TARGET_LONG_BITS
);
5932 case OPC2_32_RR_CLZ_H
:
5933 gen_helper_clz_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
5935 case OPC2_32_RR_NAND
:
5936 tcg_gen_nand_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5938 case OPC2_32_RR_NOR
:
5939 tcg_gen_nor_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5942 tcg_gen_or_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5944 case OPC2_32_RR_ORN
:
5945 tcg_gen_orc_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5948 gen_helper_sh(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5950 case OPC2_32_RR_SH_H
:
5951 gen_helper_sh_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5953 case OPC2_32_RR_SHA
:
5954 gen_helper_sha(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5956 case OPC2_32_RR_SHA_H
:
5957 gen_helper_sha_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5959 case OPC2_32_RR_SHAS
:
5960 gen_shas(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5962 case OPC2_32_RR_XNOR
:
5963 tcg_gen_eqv_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5965 case OPC2_32_RR_XOR
:
5966 tcg_gen_xor_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
5969 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
5973 static void decode_rr_address(DisasContext
*ctx
)
5979 op2
= MASK_OP_RR_OP2(ctx
->opcode
);
5980 r3
= MASK_OP_RR_D(ctx
->opcode
);
5981 r2
= MASK_OP_RR_S2(ctx
->opcode
);
5982 r1
= MASK_OP_RR_S1(ctx
->opcode
);
5983 n
= MASK_OP_RR_N(ctx
->opcode
);
5986 case OPC2_32_RR_ADD_A
:
5987 tcg_gen_add_tl(cpu_gpr_a
[r3
], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
]);
5989 case OPC2_32_RR_ADDSC_A
:
5990 temp
= tcg_temp_new();
5991 tcg_gen_shli_tl(temp
, cpu_gpr_d
[r1
], n
);
5992 tcg_gen_add_tl(cpu_gpr_a
[r3
], cpu_gpr_a
[r2
], temp
);
5994 case OPC2_32_RR_ADDSC_AT
:
5995 temp
= tcg_temp_new();
5996 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 3);
5997 tcg_gen_add_tl(temp
, cpu_gpr_a
[r2
], temp
);
5998 tcg_gen_andi_tl(cpu_gpr_a
[r3
], temp
, 0xFFFFFFFC);
6000 case OPC2_32_RR_EQ_A
:
6001 tcg_gen_setcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
],
6004 case OPC2_32_RR_EQZ
:
6005 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
], 0);
6007 case OPC2_32_RR_GE_A
:
6008 tcg_gen_setcond_tl(TCG_COND_GEU
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
],
6011 case OPC2_32_RR_LT_A
:
6012 tcg_gen_setcond_tl(TCG_COND_LTU
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
],
6015 case OPC2_32_RR_MOV_A
:
6016 tcg_gen_mov_tl(cpu_gpr_a
[r3
], cpu_gpr_d
[r2
]);
6018 case OPC2_32_RR_MOV_AA
:
6019 tcg_gen_mov_tl(cpu_gpr_a
[r3
], cpu_gpr_a
[r2
]);
6021 case OPC2_32_RR_MOV_D
:
6022 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_a
[r2
]);
6024 case OPC2_32_RR_NE_A
:
6025 tcg_gen_setcond_tl(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
],
6028 case OPC2_32_RR_NEZ_A
:
6029 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_gpr_d
[r3
], cpu_gpr_a
[r1
], 0);
6031 case OPC2_32_RR_SUB_A
:
6032 tcg_gen_sub_tl(cpu_gpr_a
[r3
], cpu_gpr_a
[r1
], cpu_gpr_a
[r2
]);
6035 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6039 static void decode_rr_idirect(DisasContext
*ctx
)
6044 op2
= MASK_OP_RR_OP2(ctx
->opcode
);
6045 r1
= MASK_OP_RR_S1(ctx
->opcode
);
6049 tcg_gen_andi_tl(cpu_PC
, cpu_gpr_a
[r1
], ~0x1);
6051 case OPC2_32_RR_JLI
:
6052 tcg_gen_movi_tl(cpu_gpr_a
[11], ctx
->pc_succ_insn
);
6053 tcg_gen_andi_tl(cpu_PC
, cpu_gpr_a
[r1
], ~0x1);
6055 case OPC2_32_RR_CALLI
:
6056 gen_helper_1arg(call
, ctx
->pc_succ_insn
);
6057 tcg_gen_andi_tl(cpu_PC
, cpu_gpr_a
[r1
], ~0x1);
6059 case OPC2_32_RR_FCALLI
:
6060 gen_fcall_save_ctx(ctx
);
6061 tcg_gen_andi_tl(cpu_PC
, cpu_gpr_a
[r1
], ~0x1);
6064 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6066 tcg_gen_exit_tb(NULL
, 0);
6067 ctx
->base
.is_jmp
= DISAS_NORETURN
;
6070 static void decode_rr_divide(DisasContext
*ctx
)
6075 TCGv temp
, temp2
, temp3
;
6077 op2
= MASK_OP_RR_OP2(ctx
->opcode
);
6078 r3
= MASK_OP_RR_D(ctx
->opcode
);
6079 r2
= MASK_OP_RR_S2(ctx
->opcode
);
6080 r1
= MASK_OP_RR_S1(ctx
->opcode
);
6083 case OPC2_32_RR_BMERGE
:
6084 gen_helper_bmerge(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6086 case OPC2_32_RR_BSPLIT
:
6088 gen_bsplit(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
]);
6090 case OPC2_32_RR_DVINIT_B
:
6092 gen_dvinit_b(ctx
, cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
],
6095 case OPC2_32_RR_DVINIT_BU
:
6096 temp
= tcg_temp_new();
6097 temp2
= tcg_temp_new();
6098 temp3
= tcg_temp_new();
6100 tcg_gen_shri_tl(temp3
, cpu_gpr_d
[r1
], 8);
6102 tcg_gen_movi_tl(cpu_PSW_AV
, 0);
6103 if (!has_feature(ctx
, TRICORE_FEATURE_131
)) {
6104 /* overflow = (abs(D[r3+1]) >= abs(D[r2])) */
6105 tcg_gen_abs_tl(temp
, temp3
);
6106 tcg_gen_abs_tl(temp2
, cpu_gpr_d
[r2
]);
6107 tcg_gen_setcond_tl(TCG_COND_GE
, cpu_PSW_V
, temp
, temp2
);
6109 /* overflow = (D[b] == 0) */
6110 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, cpu_gpr_d
[r2
], 0);
6112 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
6114 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
6116 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 24);
6117 tcg_gen_mov_tl(cpu_gpr_d
[r3
+1], temp3
);
6119 case OPC2_32_RR_DVINIT_H
:
6121 gen_dvinit_h(ctx
, cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
],
6124 case OPC2_32_RR_DVINIT_HU
:
6125 temp
= tcg_temp_new();
6126 temp2
= tcg_temp_new();
6127 temp3
= tcg_temp_new();
6129 tcg_gen_shri_tl(temp3
, cpu_gpr_d
[r1
], 16);
6131 tcg_gen_movi_tl(cpu_PSW_AV
, 0);
6132 if (!has_feature(ctx
, TRICORE_FEATURE_131
)) {
6133 /* overflow = (abs(D[r3+1]) >= abs(D[r2])) */
6134 tcg_gen_abs_tl(temp
, temp3
);
6135 tcg_gen_abs_tl(temp2
, cpu_gpr_d
[r2
]);
6136 tcg_gen_setcond_tl(TCG_COND_GE
, cpu_PSW_V
, temp
, temp2
);
6138 /* overflow = (D[b] == 0) */
6139 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, cpu_gpr_d
[r2
], 0);
6141 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
6143 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
6145 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 16);
6146 tcg_gen_mov_tl(cpu_gpr_d
[r3
+1], temp3
);
6148 case OPC2_32_RR_DVINIT
:
6149 temp
= tcg_temp_new();
6150 temp2
= tcg_temp_new();
6152 /* overflow = ((D[b] == 0) ||
6153 ((D[b] == 0xFFFFFFFF) && (D[a] == 0x80000000))) */
6154 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp
, cpu_gpr_d
[r2
], 0xffffffff);
6155 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, cpu_gpr_d
[r1
], 0x80000000);
6156 tcg_gen_and_tl(temp
, temp
, temp2
);
6157 tcg_gen_setcondi_tl(TCG_COND_EQ
, temp2
, cpu_gpr_d
[r2
], 0);
6158 tcg_gen_or_tl(cpu_PSW_V
, temp
, temp2
);
6159 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
6161 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
6163 tcg_gen_movi_tl(cpu_PSW_AV
, 0);
6165 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
6166 /* sign extend to high reg */
6167 tcg_gen_sari_tl(cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], 31);
6169 case OPC2_32_RR_DVINIT_U
:
6170 /* overflow = (D[b] == 0) */
6171 tcg_gen_setcondi_tl(TCG_COND_EQ
, cpu_PSW_V
, cpu_gpr_d
[r2
], 0);
6172 tcg_gen_shli_tl(cpu_PSW_V
, cpu_PSW_V
, 31);
6174 tcg_gen_or_tl(cpu_PSW_SV
, cpu_PSW_SV
, cpu_PSW_V
);
6176 tcg_gen_movi_tl(cpu_PSW_AV
, 0);
6178 tcg_gen_mov_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
6179 /* zero extend to high reg*/
6180 tcg_gen_movi_tl(cpu_gpr_d
[r3
+1], 0);
6182 case OPC2_32_RR_PARITY
:
6183 gen_helper_parity(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
6185 case OPC2_32_RR_UNPACK
:
6187 gen_unpack(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
]);
6189 case OPC2_32_RR_CRC32
:
6190 if (has_feature(ctx
, TRICORE_FEATURE_161
)) {
6191 gen_helper_crc32(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6193 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6196 case OPC2_32_RR_DIV
:
6197 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
6198 GEN_HELPER_RR(divide
, cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
],
6201 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6204 case OPC2_32_RR_DIV_U
:
6205 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
6206 GEN_HELPER_RR(divide_u
, cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1],
6207 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6209 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6212 case OPC2_32_RR_MUL_F
:
6213 gen_helper_fmul(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6215 case OPC2_32_RR_DIV_F
:
6216 gen_helper_fdiv(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6218 case OPC2_32_RR_CMP_F
:
6219 gen_helper_fcmp(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6221 case OPC2_32_RR_FTOI
:
6222 gen_helper_ftoi(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6224 case OPC2_32_RR_ITOF
:
6225 gen_helper_itof(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6227 case OPC2_32_RR_FTOUZ
:
6228 gen_helper_ftouz(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6230 case OPC2_32_RR_UPDFL
:
6231 gen_helper_updfl(cpu_env
, cpu_gpr_d
[r1
]);
6233 case OPC2_32_RR_UTOF
:
6234 gen_helper_utof(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6236 case OPC2_32_RR_FTOIZ
:
6237 gen_helper_ftoiz(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6239 case OPC2_32_RR_QSEED_F
:
6240 gen_helper_qseed(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
]);
6243 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6248 static void decode_rr1_mul(DisasContext
*ctx
)
6256 r1
= MASK_OP_RR1_S1(ctx
->opcode
);
6257 r2
= MASK_OP_RR1_S2(ctx
->opcode
);
6258 r3
= MASK_OP_RR1_D(ctx
->opcode
);
6259 n
= tcg_constant_i32(MASK_OP_RR1_N(ctx
->opcode
));
6260 op2
= MASK_OP_RR1_OP2(ctx
->opcode
);
6263 case OPC2_32_RR1_MUL_H_32_LL
:
6264 temp64
= tcg_temp_new_i64();
6266 GEN_HELPER_LL(mul_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6267 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6268 gen_calc_usb_mul_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1]);
6270 case OPC2_32_RR1_MUL_H_32_LU
:
6271 temp64
= tcg_temp_new_i64();
6273 GEN_HELPER_LU(mul_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6274 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6275 gen_calc_usb_mul_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1]);
6277 case OPC2_32_RR1_MUL_H_32_UL
:
6278 temp64
= tcg_temp_new_i64();
6280 GEN_HELPER_UL(mul_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6281 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6282 gen_calc_usb_mul_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1]);
6284 case OPC2_32_RR1_MUL_H_32_UU
:
6285 temp64
= tcg_temp_new_i64();
6287 GEN_HELPER_UU(mul_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6288 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6289 gen_calc_usb_mul_h(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1]);
6291 case OPC2_32_RR1_MULM_H_64_LL
:
6292 temp64
= tcg_temp_new_i64();
6294 GEN_HELPER_LL(mulm_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6295 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6297 tcg_gen_movi_tl(cpu_PSW_V
, 0);
6299 tcg_gen_mov_tl(cpu_PSW_AV
, cpu_PSW_V
);
6301 case OPC2_32_RR1_MULM_H_64_LU
:
6302 temp64
= tcg_temp_new_i64();
6304 GEN_HELPER_LU(mulm_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6305 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6307 tcg_gen_movi_tl(cpu_PSW_V
, 0);
6309 tcg_gen_mov_tl(cpu_PSW_AV
, cpu_PSW_V
);
6311 case OPC2_32_RR1_MULM_H_64_UL
:
6312 temp64
= tcg_temp_new_i64();
6314 GEN_HELPER_UL(mulm_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6315 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6317 tcg_gen_movi_tl(cpu_PSW_V
, 0);
6319 tcg_gen_mov_tl(cpu_PSW_AV
, cpu_PSW_V
);
6321 case OPC2_32_RR1_MULM_H_64_UU
:
6322 temp64
= tcg_temp_new_i64();
6324 GEN_HELPER_UU(mulm_h
, temp64
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6325 tcg_gen_extr_i64_i32(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], temp64
);
6327 tcg_gen_movi_tl(cpu_PSW_V
, 0);
6329 tcg_gen_mov_tl(cpu_PSW_AV
, cpu_PSW_V
);
6331 case OPC2_32_RR1_MULR_H_16_LL
:
6332 GEN_HELPER_LL(mulr_h
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6333 gen_calc_usb_mulr_h(cpu_gpr_d
[r3
]);
6335 case OPC2_32_RR1_MULR_H_16_LU
:
6336 GEN_HELPER_LU(mulr_h
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6337 gen_calc_usb_mulr_h(cpu_gpr_d
[r3
]);
6339 case OPC2_32_RR1_MULR_H_16_UL
:
6340 GEN_HELPER_UL(mulr_h
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6341 gen_calc_usb_mulr_h(cpu_gpr_d
[r3
]);
6343 case OPC2_32_RR1_MULR_H_16_UU
:
6344 GEN_HELPER_UU(mulr_h
, cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
);
6345 gen_calc_usb_mulr_h(cpu_gpr_d
[r3
]);
6348 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6352 static void decode_rr1_mulq(DisasContext
*ctx
)
6360 r1
= MASK_OP_RR1_S1(ctx
->opcode
);
6361 r2
= MASK_OP_RR1_S2(ctx
->opcode
);
6362 r3
= MASK_OP_RR1_D(ctx
->opcode
);
6363 n
= MASK_OP_RR1_N(ctx
->opcode
);
6364 op2
= MASK_OP_RR1_OP2(ctx
->opcode
);
6366 temp
= tcg_temp_new();
6367 temp2
= tcg_temp_new();
6370 case OPC2_32_RR1_MUL_Q_32
:
6371 gen_mul_q(cpu_gpr_d
[r3
], temp
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, 32);
6373 case OPC2_32_RR1_MUL_Q_64
:
6375 gen_mul_q(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
6378 case OPC2_32_RR1_MUL_Q_32_L
:
6379 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6380 gen_mul_q(cpu_gpr_d
[r3
], temp
, cpu_gpr_d
[r1
], temp
, n
, 16);
6382 case OPC2_32_RR1_MUL_Q_64_L
:
6384 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6385 gen_mul_q(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
, n
, 0);
6387 case OPC2_32_RR1_MUL_Q_32_U
:
6388 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
6389 gen_mul_q(cpu_gpr_d
[r3
], temp
, cpu_gpr_d
[r1
], temp
, n
, 16);
6391 case OPC2_32_RR1_MUL_Q_64_U
:
6393 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
6394 gen_mul_q(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
, n
, 0);
6396 case OPC2_32_RR1_MUL_Q_32_LL
:
6397 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
6398 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
6399 gen_mul_q_16(cpu_gpr_d
[r3
], temp
, temp2
, n
);
6401 case OPC2_32_RR1_MUL_Q_32_UU
:
6402 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
6403 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
6404 gen_mul_q_16(cpu_gpr_d
[r3
], temp
, temp2
, n
);
6406 case OPC2_32_RR1_MULR_Q_32_L
:
6407 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
6408 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
6409 gen_mulr_q(cpu_gpr_d
[r3
], temp
, temp2
, n
);
6411 case OPC2_32_RR1_MULR_Q_32_U
:
6412 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
6413 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
6414 gen_mulr_q(cpu_gpr_d
[r3
], temp
, temp2
, n
);
6417 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6422 static void decode_rr2_mul(DisasContext
*ctx
)
6427 op2
= MASK_OP_RR2_OP2(ctx
->opcode
);
6428 r1
= MASK_OP_RR2_S1(ctx
->opcode
);
6429 r2
= MASK_OP_RR2_S2(ctx
->opcode
);
6430 r3
= MASK_OP_RR2_D(ctx
->opcode
);
6432 case OPC2_32_RR2_MUL_32
:
6433 gen_mul_i32s(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6435 case OPC2_32_RR2_MUL_64
:
6437 gen_mul_i64s(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
],
6440 case OPC2_32_RR2_MULS_32
:
6441 gen_helper_mul_ssov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
6444 case OPC2_32_RR2_MUL_U_64
:
6446 gen_mul_i64u(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
],
6449 case OPC2_32_RR2_MULS_U_32
:
6450 gen_helper_mul_suov(cpu_gpr_d
[r3
], cpu_env
, cpu_gpr_d
[r1
],
6454 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6459 static void decode_rrpw_extract_insert(DisasContext
*ctx
)
6466 op2
= MASK_OP_RRPW_OP2(ctx
->opcode
);
6467 r1
= MASK_OP_RRPW_S1(ctx
->opcode
);
6468 r2
= MASK_OP_RRPW_S2(ctx
->opcode
);
6469 r3
= MASK_OP_RRPW_D(ctx
->opcode
);
6470 pos
= MASK_OP_RRPW_POS(ctx
->opcode
);
6471 width
= MASK_OP_RRPW_WIDTH(ctx
->opcode
);
6474 case OPC2_32_RRPW_EXTR
:
6476 tcg_gen_movi_tl(cpu_gpr_d
[r3
], 0);
6480 if (pos
+ width
<= 32) {
6481 /* optimize special cases */
6482 if ((pos
== 0) && (width
== 8)) {
6483 tcg_gen_ext8s_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
6484 } else if ((pos
== 0) && (width
== 16)) {
6485 tcg_gen_ext16s_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
]);
6487 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], 32 - pos
- width
);
6488 tcg_gen_sari_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], 32 - width
);
6492 case OPC2_32_RRPW_EXTR_U
:
6494 tcg_gen_movi_tl(cpu_gpr_d
[r3
], 0);
6496 tcg_gen_shri_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], pos
);
6497 tcg_gen_andi_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r3
], ~0u >> (32-width
));
6500 case OPC2_32_RRPW_IMASK
:
6503 if (pos
+ width
<= 32) {
6504 temp
= tcg_temp_new();
6505 tcg_gen_movi_tl(temp
, ((1u << width
) - 1) << pos
);
6506 tcg_gen_shli_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
], pos
);
6507 tcg_gen_mov_tl(cpu_gpr_d
[r3
+ 1], temp
);
6511 case OPC2_32_RRPW_INSERT
:
6512 if (pos
+ width
<= 32) {
6513 tcg_gen_deposit_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
6518 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6523 static void decode_rrr_cond_select(DisasContext
*ctx
)
6529 op2
= MASK_OP_RRR_OP2(ctx
->opcode
);
6530 r1
= MASK_OP_RRR_S1(ctx
->opcode
);
6531 r2
= MASK_OP_RRR_S2(ctx
->opcode
);
6532 r3
= MASK_OP_RRR_S3(ctx
->opcode
);
6533 r4
= MASK_OP_RRR_D(ctx
->opcode
);
6536 case OPC2_32_RRR_CADD
:
6537 gen_cond_add(TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
6538 cpu_gpr_d
[r4
], cpu_gpr_d
[r3
]);
6540 case OPC2_32_RRR_CADDN
:
6541 gen_cond_add(TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], cpu_gpr_d
[r4
],
6544 case OPC2_32_RRR_CSUB
:
6545 gen_cond_sub(TCG_COND_NE
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], cpu_gpr_d
[r4
],
6548 case OPC2_32_RRR_CSUBN
:
6549 gen_cond_sub(TCG_COND_EQ
, cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], cpu_gpr_d
[r4
],
6552 case OPC2_32_RRR_SEL
:
6553 temp
= tcg_constant_i32(0);
6554 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
,
6555 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6557 case OPC2_32_RRR_SELN
:
6558 temp
= tcg_constant_i32(0);
6559 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
,
6560 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
]);
6563 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6567 static void decode_rrr_divide(DisasContext
*ctx
)
6573 op2
= MASK_OP_RRR_OP2(ctx
->opcode
);
6574 r1
= MASK_OP_RRR_S1(ctx
->opcode
);
6575 r2
= MASK_OP_RRR_S2(ctx
->opcode
);
6576 r3
= MASK_OP_RRR_S3(ctx
->opcode
);
6577 r4
= MASK_OP_RRR_D(ctx
->opcode
);
6580 case OPC2_32_RRR_DVADJ
:
6583 GEN_HELPER_RRR(dvadj
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6584 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6586 case OPC2_32_RRR_DVSTEP
:
6589 GEN_HELPER_RRR(dvstep
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6590 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6592 case OPC2_32_RRR_DVSTEP_U
:
6595 GEN_HELPER_RRR(dvstep_u
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6596 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6598 case OPC2_32_RRR_IXMAX
:
6601 GEN_HELPER_RRR(ixmax
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6602 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6604 case OPC2_32_RRR_IXMAX_U
:
6607 GEN_HELPER_RRR(ixmax_u
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6608 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6610 case OPC2_32_RRR_IXMIN
:
6613 GEN_HELPER_RRR(ixmin
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6614 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6616 case OPC2_32_RRR_IXMIN_U
:
6619 GEN_HELPER_RRR(ixmin_u
, cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6620 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6622 case OPC2_32_RRR_PACK
:
6624 gen_helper_pack(cpu_gpr_d
[r4
], cpu_PSW_C
, cpu_gpr_d
[r3
],
6625 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
]);
6627 case OPC2_32_RRR_ADD_F
:
6628 gen_helper_fadd(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r3
]);
6630 case OPC2_32_RRR_SUB_F
:
6631 gen_helper_fsub(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
], cpu_gpr_d
[r3
]);
6633 case OPC2_32_RRR_MADD_F
:
6634 gen_helper_fmadd(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6635 cpu_gpr_d
[r2
], cpu_gpr_d
[r3
]);
6637 case OPC2_32_RRR_MSUB_F
:
6638 gen_helper_fmsub(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6639 cpu_gpr_d
[r2
], cpu_gpr_d
[r3
]);
6642 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6647 static void decode_rrr2_madd(DisasContext
*ctx
)
6650 uint32_t r1
, r2
, r3
, r4
;
6652 op2
= MASK_OP_RRR2_OP2(ctx
->opcode
);
6653 r1
= MASK_OP_RRR2_S1(ctx
->opcode
);
6654 r2
= MASK_OP_RRR2_S2(ctx
->opcode
);
6655 r3
= MASK_OP_RRR2_S3(ctx
->opcode
);
6656 r4
= MASK_OP_RRR2_D(ctx
->opcode
);
6658 case OPC2_32_RRR2_MADD_32
:
6659 gen_madd32_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
],
6662 case OPC2_32_RRR2_MADD_64
:
6665 gen_madd64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6666 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6668 case OPC2_32_RRR2_MADDS_32
:
6669 gen_helper_madd32_ssov(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6670 cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
6672 case OPC2_32_RRR2_MADDS_64
:
6675 gen_madds_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6676 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6678 case OPC2_32_RRR2_MADD_U_64
:
6681 gen_maddu64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6682 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6684 case OPC2_32_RRR2_MADDS_U_32
:
6685 gen_helper_madd32_suov(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6686 cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
6688 case OPC2_32_RRR2_MADDS_U_64
:
6691 gen_maddsu_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6692 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6695 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6699 static void decode_rrr2_msub(DisasContext
*ctx
)
6702 uint32_t r1
, r2
, r3
, r4
;
6704 op2
= MASK_OP_RRR2_OP2(ctx
->opcode
);
6705 r1
= MASK_OP_RRR2_S1(ctx
->opcode
);
6706 r2
= MASK_OP_RRR2_S2(ctx
->opcode
);
6707 r3
= MASK_OP_RRR2_S3(ctx
->opcode
);
6708 r4
= MASK_OP_RRR2_D(ctx
->opcode
);
6711 case OPC2_32_RRR2_MSUB_32
:
6712 gen_msub32_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r3
],
6715 case OPC2_32_RRR2_MSUB_64
:
6718 gen_msub64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6719 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6721 case OPC2_32_RRR2_MSUBS_32
:
6722 gen_helper_msub32_ssov(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6723 cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
6725 case OPC2_32_RRR2_MSUBS_64
:
6728 gen_msubs_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6729 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6731 case OPC2_32_RRR2_MSUB_U_64
:
6732 gen_msubu64_d(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6733 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6735 case OPC2_32_RRR2_MSUBS_U_32
:
6736 gen_helper_msub32_suov(cpu_gpr_d
[r4
], cpu_env
, cpu_gpr_d
[r1
],
6737 cpu_gpr_d
[r3
], cpu_gpr_d
[r2
]);
6739 case OPC2_32_RRR2_MSUBS_U_64
:
6742 gen_msubsu_64(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r1
],
6743 cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1], cpu_gpr_d
[r2
]);
6746 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6751 static void decode_rrr1_madd(DisasContext
*ctx
)
6754 uint32_t r1
, r2
, r3
, r4
, n
;
6756 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
6757 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
6758 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
6759 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
6760 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
6761 n
= MASK_OP_RRR1_N(ctx
->opcode
);
6764 case OPC2_32_RRR1_MADD_H_LL
:
6767 gen_madd_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6768 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
6770 case OPC2_32_RRR1_MADD_H_LU
:
6773 gen_madd_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6774 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
6776 case OPC2_32_RRR1_MADD_H_UL
:
6779 gen_madd_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6780 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
6782 case OPC2_32_RRR1_MADD_H_UU
:
6785 gen_madd_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6786 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
6788 case OPC2_32_RRR1_MADDS_H_LL
:
6791 gen_madds_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6792 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
6794 case OPC2_32_RRR1_MADDS_H_LU
:
6797 gen_madds_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6798 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
6800 case OPC2_32_RRR1_MADDS_H_UL
:
6803 gen_madds_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6804 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
6806 case OPC2_32_RRR1_MADDS_H_UU
:
6809 gen_madds_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6810 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
6812 case OPC2_32_RRR1_MADDM_H_LL
:
6815 gen_maddm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6816 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
6818 case OPC2_32_RRR1_MADDM_H_LU
:
6821 gen_maddm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6822 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
6824 case OPC2_32_RRR1_MADDM_H_UL
:
6827 gen_maddm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6828 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
6830 case OPC2_32_RRR1_MADDM_H_UU
:
6833 gen_maddm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6834 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
6836 case OPC2_32_RRR1_MADDMS_H_LL
:
6839 gen_maddms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6840 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
6842 case OPC2_32_RRR1_MADDMS_H_LU
:
6845 gen_maddms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6846 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
6848 case OPC2_32_RRR1_MADDMS_H_UL
:
6851 gen_maddms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6852 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
6854 case OPC2_32_RRR1_MADDMS_H_UU
:
6857 gen_maddms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6858 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
6860 case OPC2_32_RRR1_MADDR_H_LL
:
6861 gen_maddr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6862 cpu_gpr_d
[r2
], n
, MODE_LL
);
6864 case OPC2_32_RRR1_MADDR_H_LU
:
6865 gen_maddr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6866 cpu_gpr_d
[r2
], n
, MODE_LU
);
6868 case OPC2_32_RRR1_MADDR_H_UL
:
6869 gen_maddr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6870 cpu_gpr_d
[r2
], n
, MODE_UL
);
6872 case OPC2_32_RRR1_MADDR_H_UU
:
6873 gen_maddr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6874 cpu_gpr_d
[r2
], n
, MODE_UU
);
6876 case OPC2_32_RRR1_MADDRS_H_LL
:
6877 gen_maddr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6878 cpu_gpr_d
[r2
], n
, MODE_LL
);
6880 case OPC2_32_RRR1_MADDRS_H_LU
:
6881 gen_maddr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6882 cpu_gpr_d
[r2
], n
, MODE_LU
);
6884 case OPC2_32_RRR1_MADDRS_H_UL
:
6885 gen_maddr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6886 cpu_gpr_d
[r2
], n
, MODE_UL
);
6888 case OPC2_32_RRR1_MADDRS_H_UU
:
6889 gen_maddr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6890 cpu_gpr_d
[r2
], n
, MODE_UU
);
6893 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
6897 static void decode_rrr1_maddq_h(DisasContext
*ctx
)
6900 uint32_t r1
, r2
, r3
, r4
, n
;
6903 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
6904 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
6905 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
6906 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
6907 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
6908 n
= MASK_OP_RRR1_N(ctx
->opcode
);
6910 temp
= tcg_temp_new();
6911 temp2
= tcg_temp_new();
6914 case OPC2_32_RRR1_MADD_Q_32
:
6915 gen_madd32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6916 cpu_gpr_d
[r2
], n
, 32);
6918 case OPC2_32_RRR1_MADD_Q_64
:
6921 gen_madd64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6922 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
6925 case OPC2_32_RRR1_MADD_Q_32_L
:
6926 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6927 gen_madd32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6930 case OPC2_32_RRR1_MADD_Q_64_L
:
6933 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6934 gen_madd64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6935 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
6938 case OPC2_32_RRR1_MADD_Q_32_U
:
6939 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
6940 gen_madd32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6943 case OPC2_32_RRR1_MADD_Q_64_U
:
6946 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
6947 gen_madd64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6948 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
6951 case OPC2_32_RRR1_MADD_Q_32_LL
:
6952 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
6953 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
6954 gen_m16add32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
6956 case OPC2_32_RRR1_MADD_Q_64_LL
:
6959 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
6960 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
6961 gen_m16add64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6962 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
6964 case OPC2_32_RRR1_MADD_Q_32_UU
:
6965 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
6966 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
6967 gen_m16add32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
6969 case OPC2_32_RRR1_MADD_Q_64_UU
:
6972 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
6973 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
6974 gen_m16add64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6975 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
6977 case OPC2_32_RRR1_MADDS_Q_32
:
6978 gen_madds32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6979 cpu_gpr_d
[r2
], n
, 32);
6981 case OPC2_32_RRR1_MADDS_Q_64
:
6984 gen_madds64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6985 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
6988 case OPC2_32_RRR1_MADDS_Q_32_L
:
6989 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6990 gen_madds32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
6993 case OPC2_32_RRR1_MADDS_Q_64_L
:
6996 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
6997 gen_madds64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
6998 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7001 case OPC2_32_RRR1_MADDS_Q_32_U
:
7002 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7003 gen_madds32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7006 case OPC2_32_RRR1_MADDS_Q_64_U
:
7009 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7010 gen_madds64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7011 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7014 case OPC2_32_RRR1_MADDS_Q_32_LL
:
7015 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7016 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7017 gen_m16adds32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7019 case OPC2_32_RRR1_MADDS_Q_64_LL
:
7022 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7023 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7024 gen_m16adds64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7025 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7027 case OPC2_32_RRR1_MADDS_Q_32_UU
:
7028 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7029 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7030 gen_m16adds32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7032 case OPC2_32_RRR1_MADDS_Q_64_UU
:
7035 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7036 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7037 gen_m16adds64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7038 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7040 case OPC2_32_RRR1_MADDR_H_64_UL
:
7042 gen_maddr64_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1],
7043 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, 2);
7045 case OPC2_32_RRR1_MADDRS_H_64_UL
:
7047 gen_maddr64s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1],
7048 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, 2);
7050 case OPC2_32_RRR1_MADDR_Q_32_LL
:
7051 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7052 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7053 gen_maddr_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7055 case OPC2_32_RRR1_MADDR_Q_32_UU
:
7056 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7057 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7058 gen_maddr_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7060 case OPC2_32_RRR1_MADDRS_Q_32_LL
:
7061 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7062 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7063 gen_maddrs_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7065 case OPC2_32_RRR1_MADDRS_Q_32_UU
:
7066 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7067 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7068 gen_maddrs_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7071 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7075 static void decode_rrr1_maddsu_h(DisasContext
*ctx
)
7078 uint32_t r1
, r2
, r3
, r4
, n
;
7080 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
7081 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
7082 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
7083 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
7084 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
7085 n
= MASK_OP_RRR1_N(ctx
->opcode
);
7088 case OPC2_32_RRR1_MADDSU_H_32_LL
:
7091 gen_maddsu_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7092 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7094 case OPC2_32_RRR1_MADDSU_H_32_LU
:
7097 gen_maddsu_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7098 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7100 case OPC2_32_RRR1_MADDSU_H_32_UL
:
7103 gen_maddsu_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7104 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7106 case OPC2_32_RRR1_MADDSU_H_32_UU
:
7109 gen_maddsu_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7110 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7112 case OPC2_32_RRR1_MADDSUS_H_32_LL
:
7115 gen_maddsus_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7116 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7119 case OPC2_32_RRR1_MADDSUS_H_32_LU
:
7122 gen_maddsus_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7123 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7126 case OPC2_32_RRR1_MADDSUS_H_32_UL
:
7129 gen_maddsus_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7130 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7133 case OPC2_32_RRR1_MADDSUS_H_32_UU
:
7136 gen_maddsus_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7137 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7140 case OPC2_32_RRR1_MADDSUM_H_64_LL
:
7143 gen_maddsum_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7144 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7147 case OPC2_32_RRR1_MADDSUM_H_64_LU
:
7150 gen_maddsum_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7151 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7154 case OPC2_32_RRR1_MADDSUM_H_64_UL
:
7157 gen_maddsum_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7158 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7161 case OPC2_32_RRR1_MADDSUM_H_64_UU
:
7164 gen_maddsum_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7165 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7168 case OPC2_32_RRR1_MADDSUMS_H_64_LL
:
7171 gen_maddsums_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7172 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7175 case OPC2_32_RRR1_MADDSUMS_H_64_LU
:
7178 gen_maddsums_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7179 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7182 case OPC2_32_RRR1_MADDSUMS_H_64_UL
:
7185 gen_maddsums_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7186 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7189 case OPC2_32_RRR1_MADDSUMS_H_64_UU
:
7192 gen_maddsums_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7193 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7196 case OPC2_32_RRR1_MADDSUR_H_16_LL
:
7197 gen_maddsur32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7198 cpu_gpr_d
[r2
], n
, MODE_LL
);
7200 case OPC2_32_RRR1_MADDSUR_H_16_LU
:
7201 gen_maddsur32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7202 cpu_gpr_d
[r2
], n
, MODE_LU
);
7204 case OPC2_32_RRR1_MADDSUR_H_16_UL
:
7205 gen_maddsur32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7206 cpu_gpr_d
[r2
], n
, MODE_UL
);
7208 case OPC2_32_RRR1_MADDSUR_H_16_UU
:
7209 gen_maddsur32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7210 cpu_gpr_d
[r2
], n
, MODE_UU
);
7212 case OPC2_32_RRR1_MADDSURS_H_16_LL
:
7213 gen_maddsur32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7214 cpu_gpr_d
[r2
], n
, MODE_LL
);
7216 case OPC2_32_RRR1_MADDSURS_H_16_LU
:
7217 gen_maddsur32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7218 cpu_gpr_d
[r2
], n
, MODE_LU
);
7220 case OPC2_32_RRR1_MADDSURS_H_16_UL
:
7221 gen_maddsur32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7222 cpu_gpr_d
[r2
], n
, MODE_UL
);
7224 case OPC2_32_RRR1_MADDSURS_H_16_UU
:
7225 gen_maddsur32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7226 cpu_gpr_d
[r2
], n
, MODE_UU
);
7229 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7233 static void decode_rrr1_msub(DisasContext
*ctx
)
7236 uint32_t r1
, r2
, r3
, r4
, n
;
7238 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
7239 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
7240 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
7241 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
7242 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
7243 n
= MASK_OP_RRR1_N(ctx
->opcode
);
7246 case OPC2_32_RRR1_MSUB_H_LL
:
7249 gen_msub_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7250 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7252 case OPC2_32_RRR1_MSUB_H_LU
:
7255 gen_msub_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7256 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7258 case OPC2_32_RRR1_MSUB_H_UL
:
7261 gen_msub_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7262 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7264 case OPC2_32_RRR1_MSUB_H_UU
:
7267 gen_msub_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7268 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7270 case OPC2_32_RRR1_MSUBS_H_LL
:
7273 gen_msubs_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7274 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7276 case OPC2_32_RRR1_MSUBS_H_LU
:
7279 gen_msubs_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7280 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7282 case OPC2_32_RRR1_MSUBS_H_UL
:
7285 gen_msubs_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7286 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7288 case OPC2_32_RRR1_MSUBS_H_UU
:
7291 gen_msubs_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7292 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7294 case OPC2_32_RRR1_MSUBM_H_LL
:
7297 gen_msubm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7298 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7300 case OPC2_32_RRR1_MSUBM_H_LU
:
7303 gen_msubm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7304 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7306 case OPC2_32_RRR1_MSUBM_H_UL
:
7309 gen_msubm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7310 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7312 case OPC2_32_RRR1_MSUBM_H_UU
:
7315 gen_msubm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7316 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7318 case OPC2_32_RRR1_MSUBMS_H_LL
:
7321 gen_msubms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7322 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7324 case OPC2_32_RRR1_MSUBMS_H_LU
:
7327 gen_msubms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7328 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7330 case OPC2_32_RRR1_MSUBMS_H_UL
:
7333 gen_msubms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7334 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7336 case OPC2_32_RRR1_MSUBMS_H_UU
:
7339 gen_msubms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7340 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7342 case OPC2_32_RRR1_MSUBR_H_LL
:
7343 gen_msubr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7344 cpu_gpr_d
[r2
], n
, MODE_LL
);
7346 case OPC2_32_RRR1_MSUBR_H_LU
:
7347 gen_msubr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7348 cpu_gpr_d
[r2
], n
, MODE_LU
);
7350 case OPC2_32_RRR1_MSUBR_H_UL
:
7351 gen_msubr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7352 cpu_gpr_d
[r2
], n
, MODE_UL
);
7354 case OPC2_32_RRR1_MSUBR_H_UU
:
7355 gen_msubr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7356 cpu_gpr_d
[r2
], n
, MODE_UU
);
7358 case OPC2_32_RRR1_MSUBRS_H_LL
:
7359 gen_msubr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7360 cpu_gpr_d
[r2
], n
, MODE_LL
);
7362 case OPC2_32_RRR1_MSUBRS_H_LU
:
7363 gen_msubr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7364 cpu_gpr_d
[r2
], n
, MODE_LU
);
7366 case OPC2_32_RRR1_MSUBRS_H_UL
:
7367 gen_msubr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7368 cpu_gpr_d
[r2
], n
, MODE_UL
);
7370 case OPC2_32_RRR1_MSUBRS_H_UU
:
7371 gen_msubr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7372 cpu_gpr_d
[r2
], n
, MODE_UU
);
7375 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7379 static void decode_rrr1_msubq_h(DisasContext
*ctx
)
7382 uint32_t r1
, r2
, r3
, r4
, n
;
7385 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
7386 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
7387 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
7388 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
7389 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
7390 n
= MASK_OP_RRR1_N(ctx
->opcode
);
7392 temp
= tcg_temp_new();
7393 temp2
= tcg_temp_new();
7396 case OPC2_32_RRR1_MSUB_Q_32
:
7397 gen_msub32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7398 cpu_gpr_d
[r2
], n
, 32);
7400 case OPC2_32_RRR1_MSUB_Q_64
:
7403 gen_msub64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7404 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7407 case OPC2_32_RRR1_MSUB_Q_32_L
:
7408 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
7409 gen_msub32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7412 case OPC2_32_RRR1_MSUB_Q_64_L
:
7415 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
7416 gen_msub64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7417 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7420 case OPC2_32_RRR1_MSUB_Q_32_U
:
7421 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7422 gen_msub32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7425 case OPC2_32_RRR1_MSUB_Q_64_U
:
7428 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7429 gen_msub64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7430 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7433 case OPC2_32_RRR1_MSUB_Q_32_LL
:
7434 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7435 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7436 gen_m16sub32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7438 case OPC2_32_RRR1_MSUB_Q_64_LL
:
7441 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7442 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7443 gen_m16sub64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7444 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7446 case OPC2_32_RRR1_MSUB_Q_32_UU
:
7447 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7448 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7449 gen_m16sub32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7451 case OPC2_32_RRR1_MSUB_Q_64_UU
:
7454 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7455 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7456 gen_m16sub64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7457 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7459 case OPC2_32_RRR1_MSUBS_Q_32
:
7460 gen_msubs32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7461 cpu_gpr_d
[r2
], n
, 32);
7463 case OPC2_32_RRR1_MSUBS_Q_64
:
7466 gen_msubs64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7467 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7470 case OPC2_32_RRR1_MSUBS_Q_32_L
:
7471 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
7472 gen_msubs32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7475 case OPC2_32_RRR1_MSUBS_Q_64_L
:
7478 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r2
]);
7479 gen_msubs64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7480 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7483 case OPC2_32_RRR1_MSUBS_Q_32_U
:
7484 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7485 gen_msubs32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7488 case OPC2_32_RRR1_MSUBS_Q_64_U
:
7491 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r2
], 16);
7492 gen_msubs64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7493 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], temp
,
7496 case OPC2_32_RRR1_MSUBS_Q_32_LL
:
7497 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7498 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7499 gen_m16subs32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7501 case OPC2_32_RRR1_MSUBS_Q_64_LL
:
7504 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7505 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7506 gen_m16subs64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7507 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7509 case OPC2_32_RRR1_MSUBS_Q_32_UU
:
7510 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7511 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7512 gen_m16subs32_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7514 case OPC2_32_RRR1_MSUBS_Q_64_UU
:
7517 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7518 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7519 gen_m16subs64_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7520 cpu_gpr_d
[r3
+1], temp
, temp2
, n
);
7522 case OPC2_32_RRR1_MSUBR_H_64_UL
:
7524 gen_msubr64_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1],
7525 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, 2);
7527 case OPC2_32_RRR1_MSUBRS_H_64_UL
:
7529 gen_msubr64s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r3
+1],
7530 cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, 2);
7532 case OPC2_32_RRR1_MSUBR_Q_32_LL
:
7533 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7534 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7535 gen_msubr_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7537 case OPC2_32_RRR1_MSUBR_Q_32_UU
:
7538 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7539 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7540 gen_msubr_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7542 case OPC2_32_RRR1_MSUBRS_Q_32_LL
:
7543 tcg_gen_ext16s_tl(temp
, cpu_gpr_d
[r1
]);
7544 tcg_gen_ext16s_tl(temp2
, cpu_gpr_d
[r2
]);
7545 gen_msubrs_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7547 case OPC2_32_RRR1_MSUBRS_Q_32_UU
:
7548 tcg_gen_sari_tl(temp
, cpu_gpr_d
[r1
], 16);
7549 tcg_gen_sari_tl(temp2
, cpu_gpr_d
[r2
], 16);
7550 gen_msubrs_q(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], temp
, temp2
, n
);
7553 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7557 static void decode_rrr1_msubad_h(DisasContext
*ctx
)
7560 uint32_t r1
, r2
, r3
, r4
, n
;
7562 op2
= MASK_OP_RRR1_OP2(ctx
->opcode
);
7563 r1
= MASK_OP_RRR1_S1(ctx
->opcode
);
7564 r2
= MASK_OP_RRR1_S2(ctx
->opcode
);
7565 r3
= MASK_OP_RRR1_S3(ctx
->opcode
);
7566 r4
= MASK_OP_RRR1_D(ctx
->opcode
);
7567 n
= MASK_OP_RRR1_N(ctx
->opcode
);
7570 case OPC2_32_RRR1_MSUBAD_H_32_LL
:
7573 gen_msubad_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7574 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LL
);
7576 case OPC2_32_RRR1_MSUBAD_H_32_LU
:
7579 gen_msubad_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7580 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_LU
);
7582 case OPC2_32_RRR1_MSUBAD_H_32_UL
:
7585 gen_msubad_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7586 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UL
);
7588 case OPC2_32_RRR1_MSUBAD_H_32_UU
:
7591 gen_msubad_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7592 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], n
, MODE_UU
);
7594 case OPC2_32_RRR1_MSUBADS_H_32_LL
:
7597 gen_msubads_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7598 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7601 case OPC2_32_RRR1_MSUBADS_H_32_LU
:
7604 gen_msubads_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7605 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7608 case OPC2_32_RRR1_MSUBADS_H_32_UL
:
7611 gen_msubads_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7612 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7615 case OPC2_32_RRR1_MSUBADS_H_32_UU
:
7618 gen_msubads_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7619 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7622 case OPC2_32_RRR1_MSUBADM_H_64_LL
:
7625 gen_msubadm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7626 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7629 case OPC2_32_RRR1_MSUBADM_H_64_LU
:
7632 gen_msubadm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7633 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7636 case OPC2_32_RRR1_MSUBADM_H_64_UL
:
7639 gen_msubadm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7640 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7643 case OPC2_32_RRR1_MSUBADM_H_64_UU
:
7646 gen_msubadm_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7647 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7650 case OPC2_32_RRR1_MSUBADMS_H_64_LL
:
7653 gen_msubadms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7654 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7657 case OPC2_32_RRR1_MSUBADMS_H_64_LU
:
7660 gen_msubadms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7661 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7664 case OPC2_32_RRR1_MSUBADMS_H_64_UL
:
7667 gen_msubadms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7668 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7671 case OPC2_32_RRR1_MSUBADMS_H_64_UU
:
7674 gen_msubadms_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
+1], cpu_gpr_d
[r3
],
7675 cpu_gpr_d
[r3
+1], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
],
7678 case OPC2_32_RRR1_MSUBADR_H_16_LL
:
7679 gen_msubadr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7680 cpu_gpr_d
[r2
], n
, MODE_LL
);
7682 case OPC2_32_RRR1_MSUBADR_H_16_LU
:
7683 gen_msubadr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7684 cpu_gpr_d
[r2
], n
, MODE_LU
);
7686 case OPC2_32_RRR1_MSUBADR_H_16_UL
:
7687 gen_msubadr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7688 cpu_gpr_d
[r2
], n
, MODE_UL
);
7690 case OPC2_32_RRR1_MSUBADR_H_16_UU
:
7691 gen_msubadr32_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7692 cpu_gpr_d
[r2
], n
, MODE_UU
);
7694 case OPC2_32_RRR1_MSUBADRS_H_16_LL
:
7695 gen_msubadr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7696 cpu_gpr_d
[r2
], n
, MODE_LL
);
7698 case OPC2_32_RRR1_MSUBADRS_H_16_LU
:
7699 gen_msubadr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7700 cpu_gpr_d
[r2
], n
, MODE_LU
);
7702 case OPC2_32_RRR1_MSUBADRS_H_16_UL
:
7703 gen_msubadr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7704 cpu_gpr_d
[r2
], n
, MODE_UL
);
7706 case OPC2_32_RRR1_MSUBADRS_H_16_UU
:
7707 gen_msubadr32s_h(cpu_gpr_d
[r4
], cpu_gpr_d
[r3
], cpu_gpr_d
[r1
],
7708 cpu_gpr_d
[r2
], n
, MODE_UU
);
7711 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7716 static void decode_rrrr_extract_insert(DisasContext
*ctx
)
7720 TCGv tmp_width
, tmp_pos
;
7722 r1
= MASK_OP_RRRR_S1(ctx
->opcode
);
7723 r2
= MASK_OP_RRRR_S2(ctx
->opcode
);
7724 r3
= MASK_OP_RRRR_S3(ctx
->opcode
);
7725 r4
= MASK_OP_RRRR_D(ctx
->opcode
);
7726 op2
= MASK_OP_RRRR_OP2(ctx
->opcode
);
7728 tmp_pos
= tcg_temp_new();
7729 tmp_width
= tcg_temp_new();
7732 case OPC2_32_RRRR_DEXTR
:
7733 tcg_gen_andi_tl(tmp_pos
, cpu_gpr_d
[r3
], 0x1f);
7735 tcg_gen_rotl_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], tmp_pos
);
7737 TCGv msw
= tcg_temp_new();
7738 TCGv zero
= tcg_constant_tl(0);
7739 tcg_gen_shl_tl(tmp_width
, cpu_gpr_d
[r1
], tmp_pos
);
7740 tcg_gen_subfi_tl(msw
, 32, tmp_pos
);
7741 tcg_gen_shr_tl(msw
, cpu_gpr_d
[r2
], msw
);
7743 * if pos == 0, then we do cpu_gpr_d[r2] << 32, which is undefined
7744 * behaviour. So check that case here and set the low bits to zero
7745 * which effectivly returns cpu_gpr_d[r1]
7747 tcg_gen_movcond_tl(TCG_COND_EQ
, msw
, tmp_pos
, zero
, zero
, msw
);
7748 tcg_gen_or_tl(cpu_gpr_d
[r4
], tmp_width
, msw
);
7751 case OPC2_32_RRRR_EXTR
:
7752 case OPC2_32_RRRR_EXTR_U
:
7754 tcg_gen_andi_tl(tmp_width
, cpu_gpr_d
[r3
+1], 0x1f);
7755 tcg_gen_andi_tl(tmp_pos
, cpu_gpr_d
[r3
], 0x1f);
7756 tcg_gen_add_tl(tmp_pos
, tmp_pos
, tmp_width
);
7757 tcg_gen_subfi_tl(tmp_pos
, 32, tmp_pos
);
7758 tcg_gen_shl_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], tmp_pos
);
7759 tcg_gen_subfi_tl(tmp_width
, 32, tmp_width
);
7760 if (op2
== OPC2_32_RRRR_EXTR
) {
7761 tcg_gen_sar_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
], tmp_width
);
7763 tcg_gen_shr_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
], tmp_width
);
7766 case OPC2_32_RRRR_INSERT
:
7768 tcg_gen_andi_tl(tmp_width
, cpu_gpr_d
[r3
+1], 0x1f);
7769 tcg_gen_andi_tl(tmp_pos
, cpu_gpr_d
[r3
], 0x1f);
7770 gen_insert(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], tmp_width
,
7774 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7779 static void decode_rrrw_extract_insert(DisasContext
*ctx
)
7787 op2
= MASK_OP_RRRW_OP2(ctx
->opcode
);
7788 r1
= MASK_OP_RRRW_S1(ctx
->opcode
);
7789 r2
= MASK_OP_RRRW_S2(ctx
->opcode
);
7790 r3
= MASK_OP_RRRW_S3(ctx
->opcode
);
7791 r4
= MASK_OP_RRRW_D(ctx
->opcode
);
7792 width
= MASK_OP_RRRW_WIDTH(ctx
->opcode
);
7794 temp
= tcg_temp_new();
7797 case OPC2_32_RRRW_EXTR
:
7798 tcg_gen_andi_tl(temp
, cpu_gpr_d
[r3
], 0x1f);
7799 tcg_gen_addi_tl(temp
, temp
, width
);
7800 tcg_gen_subfi_tl(temp
, 32, temp
);
7801 tcg_gen_shl_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], temp
);
7802 tcg_gen_sari_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
], 32 - width
);
7804 case OPC2_32_RRRW_EXTR_U
:
7806 tcg_gen_movi_tl(cpu_gpr_d
[r4
], 0);
7808 tcg_gen_andi_tl(temp
, cpu_gpr_d
[r3
], 0x1f);
7809 tcg_gen_shr_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], temp
);
7810 tcg_gen_andi_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r4
], ~0u >> (32-width
));
7813 case OPC2_32_RRRW_IMASK
:
7814 temp2
= tcg_temp_new();
7816 tcg_gen_andi_tl(temp
, cpu_gpr_d
[r3
], 0x1f);
7817 tcg_gen_movi_tl(temp2
, (1 << width
) - 1);
7818 tcg_gen_shl_tl(temp2
, temp2
, temp
);
7819 tcg_gen_shl_tl(cpu_gpr_d
[r4
], cpu_gpr_d
[r2
], temp
);
7820 tcg_gen_mov_tl(cpu_gpr_d
[r4
+1], temp2
);
7822 case OPC2_32_RRRW_INSERT
:
7823 temp2
= tcg_temp_new();
7825 tcg_gen_movi_tl(temp
, width
);
7826 tcg_gen_andi_tl(temp2
, cpu_gpr_d
[r3
], 0x1f);
7827 gen_insert(cpu_gpr_d
[r4
], cpu_gpr_d
[r1
], cpu_gpr_d
[r2
], temp
, temp2
);
7830 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7835 static void decode_sys_interrupts(DisasContext
*ctx
)
7842 op2
= MASK_OP_SYS_OP2(ctx
->opcode
);
7843 r1
= MASK_OP_SYS_S1D(ctx
->opcode
);
7846 case OPC2_32_SYS_DEBUG
:
7847 /* raise EXCP_DEBUG */
7849 case OPC2_32_SYS_DISABLE
:
7850 tcg_gen_andi_tl(cpu_ICR
, cpu_ICR
, ~MASK_ICR_IE_1_3
);
7852 case OPC2_32_SYS_DSYNC
:
7854 case OPC2_32_SYS_ENABLE
:
7855 tcg_gen_ori_tl(cpu_ICR
, cpu_ICR
, MASK_ICR_IE_1_3
);
7857 case OPC2_32_SYS_ISYNC
:
7859 case OPC2_32_SYS_NOP
:
7861 case OPC2_32_SYS_RET
:
7862 gen_compute_branch(ctx
, op2
, 0, 0, 0, 0);
7864 case OPC2_32_SYS_FRET
:
7867 case OPC2_32_SYS_RFE
:
7868 gen_helper_rfe(cpu_env
);
7869 tcg_gen_exit_tb(NULL
, 0);
7870 ctx
->base
.is_jmp
= DISAS_NORETURN
;
7872 case OPC2_32_SYS_RFM
:
7873 if ((ctx
->hflags
& TRICORE_HFLAG_KUU
) == TRICORE_HFLAG_SM
) {
7874 tmp
= tcg_temp_new();
7875 l1
= gen_new_label();
7877 tcg_gen_ld32u_tl(tmp
, cpu_env
, offsetof(CPUTriCoreState
, DBGSR
));
7878 tcg_gen_andi_tl(tmp
, tmp
, MASK_DBGSR_DE
);
7879 tcg_gen_brcondi_tl(TCG_COND_NE
, tmp
, 1, l1
);
7880 gen_helper_rfm(cpu_env
);
7882 tcg_gen_exit_tb(NULL
, 0);
7883 ctx
->base
.is_jmp
= DISAS_NORETURN
;
7885 /* generate privilege trap */
7888 case OPC2_32_SYS_RSLCX
:
7889 gen_helper_rslcx(cpu_env
);
7891 case OPC2_32_SYS_SVLCX
:
7892 gen_helper_svlcx(cpu_env
);
7894 case OPC2_32_SYS_RESTORE
:
7895 if (has_feature(ctx
, TRICORE_FEATURE_16
)) {
7896 if ((ctx
->hflags
& TRICORE_HFLAG_KUU
) == TRICORE_HFLAG_SM
||
7897 (ctx
->hflags
& TRICORE_HFLAG_KUU
) == TRICORE_HFLAG_UM1
) {
7898 tcg_gen_deposit_tl(cpu_ICR
, cpu_ICR
, cpu_gpr_d
[r1
], 8, 1);
7899 } /* else raise privilege trap */
7901 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7904 case OPC2_32_SYS_TRAPSV
:
7905 l1
= gen_new_label();
7906 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_PSW_SV
, 0, l1
);
7907 generate_trap(ctx
, TRAPC_ASSERT
, TIN5_SOVF
);
7910 case OPC2_32_SYS_TRAPV
:
7911 l1
= gen_new_label();
7912 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_PSW_V
, 0, l1
);
7913 generate_trap(ctx
, TRAPC_ASSERT
, TIN5_OVF
);
7917 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
7921 static void decode_32Bit_opc(DisasContext
*ctx
)
7925 int32_t address
, const16
;
7928 TCGv temp
, temp2
, temp3
;
7930 op1
= MASK_OP_MAJOR(ctx
->opcode
);
7932 /* handle JNZ.T opcode only being 7 bit long */
7933 if (unlikely((op1
& 0x7f) == OPCM_32_BRN_JTT
)) {
7934 op1
= OPCM_32_BRN_JTT
;
7939 case OPCM_32_ABS_LDW
:
7940 decode_abs_ldw(ctx
);
7942 case OPCM_32_ABS_LDB
:
7943 decode_abs_ldb(ctx
);
7945 case OPCM_32_ABS_LDMST_SWAP
:
7946 decode_abs_ldst_swap(ctx
);
7948 case OPCM_32_ABS_LDST_CONTEXT
:
7949 decode_abs_ldst_context(ctx
);
7951 case OPCM_32_ABS_STORE
:
7952 decode_abs_store(ctx
);
7954 case OPCM_32_ABS_STOREB_H
:
7955 decode_abs_storeb_h(ctx
);
7957 case OPC1_32_ABS_STOREQ
:
7958 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
7959 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
7960 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
7961 temp2
= tcg_temp_new();
7963 tcg_gen_shri_tl(temp2
, cpu_gpr_d
[r1
], 16);
7964 tcg_gen_qemu_st_tl(temp2
, temp
, ctx
->mem_idx
, MO_LEUW
);
7966 case OPC1_32_ABS_LD_Q
:
7967 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
7968 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
7969 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
7971 tcg_gen_qemu_ld_tl(cpu_gpr_d
[r1
], temp
, ctx
->mem_idx
, MO_LEUW
);
7972 tcg_gen_shli_tl(cpu_gpr_d
[r1
], cpu_gpr_d
[r1
], 16);
7974 case OPC1_32_ABS_LEA
:
7975 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
7976 r1
= MASK_OP_ABS_S1D(ctx
->opcode
);
7977 tcg_gen_movi_tl(cpu_gpr_a
[r1
], EA_ABS_FORMAT(address
));
7980 case OPC1_32_ABSB_ST_T
:
7981 address
= MASK_OP_ABS_OFF18(ctx
->opcode
);
7982 b
= MASK_OP_ABSB_B(ctx
->opcode
);
7983 bpos
= MASK_OP_ABSB_BPOS(ctx
->opcode
);
7985 temp
= tcg_constant_i32(EA_ABS_FORMAT(address
));
7986 temp2
= tcg_temp_new();
7988 tcg_gen_qemu_ld_tl(temp2
, temp
, ctx
->mem_idx
, MO_UB
);
7989 tcg_gen_andi_tl(temp2
, temp2
, ~(0x1u
<< bpos
));
7990 tcg_gen_ori_tl(temp2
, temp2
, (b
<< bpos
));
7991 tcg_gen_qemu_st_tl(temp2
, temp
, ctx
->mem_idx
, MO_UB
);
7994 case OPC1_32_B_CALL
:
7995 case OPC1_32_B_CALLA
:
7996 case OPC1_32_B_FCALL
:
7997 case OPC1_32_B_FCALLA
:
8002 address
= MASK_OP_B_DISP24_SEXT(ctx
->opcode
);
8003 gen_compute_branch(ctx
, op1
, 0, 0, 0, address
);
8006 case OPCM_32_BIT_ANDACC
:
8007 decode_bit_andacc(ctx
);
8009 case OPCM_32_BIT_LOGICAL_T1
:
8010 decode_bit_logical_t(ctx
);
8012 case OPCM_32_BIT_INSERT
:
8013 decode_bit_insert(ctx
);
8015 case OPCM_32_BIT_LOGICAL_T2
:
8016 decode_bit_logical_t2(ctx
);
8018 case OPCM_32_BIT_ORAND
:
8019 decode_bit_orand(ctx
);
8021 case OPCM_32_BIT_SH_LOGIC1
:
8022 decode_bit_sh_logic1(ctx
);
8024 case OPCM_32_BIT_SH_LOGIC2
:
8025 decode_bit_sh_logic2(ctx
);
8028 case OPCM_32_BO_ADDRMODE_POST_PRE_BASE
:
8029 decode_bo_addrmode_post_pre_base(ctx
);
8031 case OPCM_32_BO_ADDRMODE_BITREVERSE_CIRCULAR
:
8032 decode_bo_addrmode_bitreverse_circular(ctx
);
8034 case OPCM_32_BO_ADDRMODE_LD_POST_PRE_BASE
:
8035 decode_bo_addrmode_ld_post_pre_base(ctx
);
8037 case OPCM_32_BO_ADDRMODE_LD_BITREVERSE_CIRCULAR
:
8038 decode_bo_addrmode_ld_bitreverse_circular(ctx
);
8040 case OPCM_32_BO_ADDRMODE_STCTX_POST_PRE_BASE
:
8041 decode_bo_addrmode_stctx_post_pre_base(ctx
);
8043 case OPCM_32_BO_ADDRMODE_LDMST_BITREVERSE_CIRCULAR
:
8044 decode_bo_addrmode_ldmst_bitreverse_circular(ctx
);
8047 case OPC1_32_BOL_LD_A_LONGOFF
:
8048 case OPC1_32_BOL_LD_W_LONGOFF
:
8049 case OPC1_32_BOL_LEA_LONGOFF
:
8050 case OPC1_32_BOL_ST_W_LONGOFF
:
8051 case OPC1_32_BOL_ST_A_LONGOFF
:
8052 case OPC1_32_BOL_LD_B_LONGOFF
:
8053 case OPC1_32_BOL_LD_BU_LONGOFF
:
8054 case OPC1_32_BOL_LD_H_LONGOFF
:
8055 case OPC1_32_BOL_LD_HU_LONGOFF
:
8056 case OPC1_32_BOL_ST_B_LONGOFF
:
8057 case OPC1_32_BOL_ST_H_LONGOFF
:
8058 decode_bol_opc(ctx
, op1
);
8061 case OPCM_32_BRC_EQ_NEQ
:
8062 case OPCM_32_BRC_GE
:
8063 case OPCM_32_BRC_JLT
:
8064 case OPCM_32_BRC_JNE
:
8065 const4
= MASK_OP_BRC_CONST4_SEXT(ctx
->opcode
);
8066 address
= MASK_OP_BRC_DISP15_SEXT(ctx
->opcode
);
8067 r1
= MASK_OP_BRC_S1(ctx
->opcode
);
8068 gen_compute_branch(ctx
, op1
, r1
, 0, const4
, address
);
8071 case OPCM_32_BRN_JTT
:
8072 address
= MASK_OP_BRN_DISP15_SEXT(ctx
->opcode
);
8073 r1
= MASK_OP_BRN_S1(ctx
->opcode
);
8074 gen_compute_branch(ctx
, op1
, r1
, 0, 0, address
);
8077 case OPCM_32_BRR_EQ_NEQ
:
8078 case OPCM_32_BRR_ADDR_EQ_NEQ
:
8079 case OPCM_32_BRR_GE
:
8080 case OPCM_32_BRR_JLT
:
8081 case OPCM_32_BRR_JNE
:
8082 case OPCM_32_BRR_JNZ
:
8083 case OPCM_32_BRR_LOOP
:
8084 address
= MASK_OP_BRR_DISP15_SEXT(ctx
->opcode
);
8085 r2
= MASK_OP_BRR_S2(ctx
->opcode
);
8086 r1
= MASK_OP_BRR_S1(ctx
->opcode
);
8087 gen_compute_branch(ctx
, op1
, r1
, r2
, 0, address
);
8090 case OPCM_32_RC_LOGICAL_SHIFT
:
8091 decode_rc_logical_shift(ctx
);
8093 case OPCM_32_RC_ACCUMULATOR
:
8094 decode_rc_accumulator(ctx
);
8096 case OPCM_32_RC_SERVICEROUTINE
:
8097 decode_rc_serviceroutine(ctx
);
8099 case OPCM_32_RC_MUL
:
8103 case OPCM_32_RCPW_MASK_INSERT
:
8104 decode_rcpw_insert(ctx
);
8107 case OPC1_32_RCRR_INSERT
:
8108 r1
= MASK_OP_RCRR_S1(ctx
->opcode
);
8109 r2
= MASK_OP_RCRR_S3(ctx
->opcode
);
8110 r3
= MASK_OP_RCRR_D(ctx
->opcode
);
8111 const16
= MASK_OP_RCRR_CONST4(ctx
->opcode
);
8112 temp
= tcg_constant_i32(const16
);
8113 temp2
= tcg_temp_new(); /* width*/
8114 temp3
= tcg_temp_new(); /* pos */
8118 tcg_gen_andi_tl(temp2
, cpu_gpr_d
[r3
+1], 0x1f);
8119 tcg_gen_andi_tl(temp3
, cpu_gpr_d
[r3
], 0x1f);
8121 gen_insert(cpu_gpr_d
[r2
], cpu_gpr_d
[r1
], temp
, temp2
, temp3
);
8124 case OPCM_32_RCRW_MASK_INSERT
:
8125 decode_rcrw_insert(ctx
);
8128 case OPCM_32_RCR_COND_SELECT
:
8129 decode_rcr_cond_select(ctx
);
8131 case OPCM_32_RCR_MADD
:
8132 decode_rcr_madd(ctx
);
8134 case OPCM_32_RCR_MSUB
:
8135 decode_rcr_msub(ctx
);
8138 case OPC1_32_RLC_ADDI
:
8139 case OPC1_32_RLC_ADDIH
:
8140 case OPC1_32_RLC_ADDIH_A
:
8141 case OPC1_32_RLC_MFCR
:
8142 case OPC1_32_RLC_MOV
:
8143 case OPC1_32_RLC_MOV_64
:
8144 case OPC1_32_RLC_MOV_U
:
8145 case OPC1_32_RLC_MOV_H
:
8146 case OPC1_32_RLC_MOVH_A
:
8147 case OPC1_32_RLC_MTCR
:
8148 decode_rlc_opc(ctx
, op1
);
8151 case OPCM_32_RR_ACCUMULATOR
:
8152 decode_rr_accumulator(ctx
);
8154 case OPCM_32_RR_LOGICAL_SHIFT
:
8155 decode_rr_logical_shift(ctx
);
8157 case OPCM_32_RR_ADDRESS
:
8158 decode_rr_address(ctx
);
8160 case OPCM_32_RR_IDIRECT
:
8161 decode_rr_idirect(ctx
);
8163 case OPCM_32_RR_DIVIDE
:
8164 decode_rr_divide(ctx
);
8167 case OPCM_32_RR1_MUL
:
8168 decode_rr1_mul(ctx
);
8170 case OPCM_32_RR1_MULQ
:
8171 decode_rr1_mulq(ctx
);
8174 case OPCM_32_RR2_MUL
:
8175 decode_rr2_mul(ctx
);
8178 case OPCM_32_RRPW_EXTRACT_INSERT
:
8179 decode_rrpw_extract_insert(ctx
);
8181 case OPC1_32_RRPW_DEXTR
:
8182 r1
= MASK_OP_RRPW_S1(ctx
->opcode
);
8183 r2
= MASK_OP_RRPW_S2(ctx
->opcode
);
8184 r3
= MASK_OP_RRPW_D(ctx
->opcode
);
8185 const16
= MASK_OP_RRPW_POS(ctx
->opcode
);
8187 tcg_gen_extract2_tl(cpu_gpr_d
[r3
], cpu_gpr_d
[r2
], cpu_gpr_d
[r1
],
8191 case OPCM_32_RRR_COND_SELECT
:
8192 decode_rrr_cond_select(ctx
);
8194 case OPCM_32_RRR_DIVIDE
:
8195 decode_rrr_divide(ctx
);
8198 case OPCM_32_RRR2_MADD
:
8199 decode_rrr2_madd(ctx
);
8201 case OPCM_32_RRR2_MSUB
:
8202 decode_rrr2_msub(ctx
);
8205 case OPCM_32_RRR1_MADD
:
8206 decode_rrr1_madd(ctx
);
8208 case OPCM_32_RRR1_MADDQ_H
:
8209 decode_rrr1_maddq_h(ctx
);
8211 case OPCM_32_RRR1_MADDSU_H
:
8212 decode_rrr1_maddsu_h(ctx
);
8214 case OPCM_32_RRR1_MSUB_H
:
8215 decode_rrr1_msub(ctx
);
8217 case OPCM_32_RRR1_MSUB_Q
:
8218 decode_rrr1_msubq_h(ctx
);
8220 case OPCM_32_RRR1_MSUBAD_H
:
8221 decode_rrr1_msubad_h(ctx
);
8224 case OPCM_32_RRRR_EXTRACT_INSERT
:
8225 decode_rrrr_extract_insert(ctx
);
8228 case OPCM_32_RRRW_EXTRACT_INSERT
:
8229 decode_rrrw_extract_insert(ctx
);
8232 case OPCM_32_SYS_INTERRUPTS
:
8233 decode_sys_interrupts(ctx
);
8235 case OPC1_32_SYS_RSTV
:
8236 tcg_gen_movi_tl(cpu_PSW_V
, 0);
8237 tcg_gen_mov_tl(cpu_PSW_SV
, cpu_PSW_V
);
8238 tcg_gen_mov_tl(cpu_PSW_AV
, cpu_PSW_V
);
8239 tcg_gen_mov_tl(cpu_PSW_SAV
, cpu_PSW_V
);
8242 generate_trap(ctx
, TRAPC_INSN_ERR
, TIN2_IOPC
);
8246 static bool tricore_insn_is_16bit(uint32_t insn
)
8248 return (insn
& 0x1) == 0;
8251 static void tricore_tr_init_disas_context(DisasContextBase
*dcbase
,
8254 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
8255 CPUTriCoreState
*env
= cs
->env_ptr
;
8256 ctx
->mem_idx
= cpu_mmu_index(env
, false);
8257 ctx
->hflags
= (uint32_t)ctx
->base
.tb
->flags
;
8258 ctx
->features
= env
->features
;
8261 static void tricore_tr_tb_start(DisasContextBase
*db
, CPUState
*cpu
)
8265 static void tricore_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cpu
)
8267 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
8269 tcg_gen_insn_start(ctx
->base
.pc_next
);
8272 static bool insn_crosses_page(CPUTriCoreState
*env
, DisasContext
*ctx
)
8275 * Return true if the insn at ctx->base.pc_next might cross a page boundary.
8276 * (False positives are OK, false negatives are not.)
8277 * Our caller ensures we are only called if dc->base.pc_next is less than
8278 * 4 bytes from the page boundary, so we cross the page if the first
8279 * 16 bits indicate that this is a 32 bit insn.
8281 uint16_t insn
= cpu_lduw_code(env
, ctx
->base
.pc_next
);
8283 return !tricore_insn_is_16bit(insn
);
8287 static void tricore_tr_translate_insn(DisasContextBase
*dcbase
, CPUState
*cpu
)
8289 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
8290 CPUTriCoreState
*env
= cpu
->env_ptr
;
8294 insn_lo
= cpu_lduw_code(env
, ctx
->base
.pc_next
);
8295 is_16bit
= tricore_insn_is_16bit(insn_lo
);
8297 ctx
->opcode
= insn_lo
;
8298 ctx
->pc_succ_insn
= ctx
->base
.pc_next
+ 2;
8299 decode_16Bit_opc(ctx
);
8301 uint32_t insn_hi
= cpu_lduw_code(env
, ctx
->base
.pc_next
+ 2);
8302 ctx
->opcode
= insn_hi
<< 16 | insn_lo
;
8303 ctx
->pc_succ_insn
= ctx
->base
.pc_next
+ 4;
8304 decode_32Bit_opc(ctx
);
8306 ctx
->base
.pc_next
= ctx
->pc_succ_insn
;
8308 if (ctx
->base
.is_jmp
== DISAS_NEXT
) {
8309 target_ulong page_start
;
8311 page_start
= ctx
->base
.pc_first
& TARGET_PAGE_MASK
;
8312 if (ctx
->base
.pc_next
- page_start
>= TARGET_PAGE_SIZE
8313 || (ctx
->base
.pc_next
- page_start
>= TARGET_PAGE_SIZE
- 3
8314 && insn_crosses_page(env
, ctx
))) {
8315 ctx
->base
.is_jmp
= DISAS_TOO_MANY
;
8320 static void tricore_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cpu
)
8322 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
8324 switch (ctx
->base
.is_jmp
) {
8325 case DISAS_TOO_MANY
:
8326 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
);
8328 case DISAS_NORETURN
:
8331 g_assert_not_reached();
8335 static void tricore_tr_disas_log(const DisasContextBase
*dcbase
,
8336 CPUState
*cpu
, FILE *logfile
)
8338 fprintf(logfile
, "IN: %s\n", lookup_symbol(dcbase
->pc_first
));
8339 target_disas(logfile
, cpu
, dcbase
->pc_first
, dcbase
->tb
->size
);
8342 static const TranslatorOps tricore_tr_ops
= {
8343 .init_disas_context
= tricore_tr_init_disas_context
,
8344 .tb_start
= tricore_tr_tb_start
,
8345 .insn_start
= tricore_tr_insn_start
,
8346 .translate_insn
= tricore_tr_translate_insn
,
8347 .tb_stop
= tricore_tr_tb_stop
,
8348 .disas_log
= tricore_tr_disas_log
,
8352 void gen_intermediate_code(CPUState
*cs
, TranslationBlock
*tb
, int *max_insns
,
8353 target_ulong pc
, void *host_pc
)
8356 translator_loop(cs
, tb
, max_insns
, pc
, host_pc
,
8357 &tricore_tr_ops
, &ctx
.base
);
8366 void cpu_state_reset(CPUTriCoreState
*env
)
8368 /* Reset Regs to Default Value */
8373 static void tricore_tcg_init_csfr(void)
8375 cpu_PCXI
= tcg_global_mem_new(cpu_env
,
8376 offsetof(CPUTriCoreState
, PCXI
), "PCXI");
8377 cpu_PSW
= tcg_global_mem_new(cpu_env
,
8378 offsetof(CPUTriCoreState
, PSW
), "PSW");
8379 cpu_PC
= tcg_global_mem_new(cpu_env
,
8380 offsetof(CPUTriCoreState
, PC
), "PC");
8381 cpu_ICR
= tcg_global_mem_new(cpu_env
,
8382 offsetof(CPUTriCoreState
, ICR
), "ICR");
8385 void tricore_tcg_init(void)
8390 for (i
= 0 ; i
< 16 ; i
++) {
8391 cpu_gpr_a
[i
] = tcg_global_mem_new(cpu_env
,
8392 offsetof(CPUTriCoreState
, gpr_a
[i
]),
8395 for (i
= 0 ; i
< 16 ; i
++) {
8396 cpu_gpr_d
[i
] = tcg_global_mem_new(cpu_env
,
8397 offsetof(CPUTriCoreState
, gpr_d
[i
]),
8400 tricore_tcg_init_csfr();
8401 /* init PSW flag cache */
8402 cpu_PSW_C
= tcg_global_mem_new(cpu_env
,
8403 offsetof(CPUTriCoreState
, PSW_USB_C
),
8405 cpu_PSW_V
= tcg_global_mem_new(cpu_env
,
8406 offsetof(CPUTriCoreState
, PSW_USB_V
),
8408 cpu_PSW_SV
= tcg_global_mem_new(cpu_env
,
8409 offsetof(CPUTriCoreState
, PSW_USB_SV
),
8411 cpu_PSW_AV
= tcg_global_mem_new(cpu_env
,
8412 offsetof(CPUTriCoreState
, PSW_USB_AV
),
8414 cpu_PSW_SAV
= tcg_global_mem_new(cpu_env
,
8415 offsetof(CPUTriCoreState
, PSW_USB_SAV
),