2 * PowerPC emulation for qemu: main translation routines.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
5 * Copyright (C) 2011 Freescale Semiconductor, Inc.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
24 #include "disas/disas.h"
25 #include "exec/exec-all.h"
27 #include "tcg-op-gvec.h"
28 #include "qemu/host-utils.h"
29 #include "exec/cpu_ldst.h"
31 #include "exec/helper-proto.h"
32 #include "exec/helper-gen.h"
34 #include "trace-tcg.h"
35 #include "exec/translator.h"
37 #include "qemu/atomic128.h"
40 #define CPU_SINGLE_STEP 0x1
41 #define CPU_BRANCH_STEP 0x2
42 #define GDBSTUB_SINGLE_STEP 0x4
44 /* Include definitions for instructions classes and implementations flags */
45 //#define PPC_DEBUG_DISAS
46 //#define DO_PPC_STATISTICS
48 #ifdef PPC_DEBUG_DISAS
49 # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
51 # define LOG_DISAS(...) do { } while (0)
53 /*****************************************************************************/
54 /* Code translation helpers */
56 /* global register indexes */
57 static char cpu_reg_names
[10*3 + 22*4 /* GPR */
58 + 10*4 + 22*5 /* SPE GPRh */
60 static TCGv cpu_gpr
[32];
61 static TCGv cpu_gprh
[32];
62 static TCGv_i32 cpu_crf
[8];
67 #if defined(TARGET_PPC64)
70 static TCGv cpu_xer
, cpu_so
, cpu_ov
, cpu_ca
, cpu_ov32
, cpu_ca32
;
71 static TCGv cpu_reserve
;
72 static TCGv cpu_reserve_val
;
73 static TCGv cpu_fpscr
;
74 static TCGv_i32 cpu_access_type
;
76 #include "exec/gen-icount.h"
78 void ppc_translate_init(void)
82 size_t cpu_reg_names_size
;
85 cpu_reg_names_size
= sizeof(cpu_reg_names
);
87 for (i
= 0; i
< 8; i
++) {
88 snprintf(p
, cpu_reg_names_size
, "crf%d", i
);
89 cpu_crf
[i
] = tcg_global_mem_new_i32(cpu_env
,
90 offsetof(CPUPPCState
, crf
[i
]), p
);
92 cpu_reg_names_size
-= 5;
95 for (i
= 0; i
< 32; i
++) {
96 snprintf(p
, cpu_reg_names_size
, "r%d", i
);
97 cpu_gpr
[i
] = tcg_global_mem_new(cpu_env
,
98 offsetof(CPUPPCState
, gpr
[i
]), p
);
99 p
+= (i
< 10) ? 3 : 4;
100 cpu_reg_names_size
-= (i
< 10) ? 3 : 4;
101 snprintf(p
, cpu_reg_names_size
, "r%dH", i
);
102 cpu_gprh
[i
] = tcg_global_mem_new(cpu_env
,
103 offsetof(CPUPPCState
, gprh
[i
]), p
);
104 p
+= (i
< 10) ? 4 : 5;
105 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
108 cpu_nip
= tcg_global_mem_new(cpu_env
,
109 offsetof(CPUPPCState
, nip
), "nip");
111 cpu_msr
= tcg_global_mem_new(cpu_env
,
112 offsetof(CPUPPCState
, msr
), "msr");
114 cpu_ctr
= tcg_global_mem_new(cpu_env
,
115 offsetof(CPUPPCState
, ctr
), "ctr");
117 cpu_lr
= tcg_global_mem_new(cpu_env
,
118 offsetof(CPUPPCState
, lr
), "lr");
120 #if defined(TARGET_PPC64)
121 cpu_cfar
= tcg_global_mem_new(cpu_env
,
122 offsetof(CPUPPCState
, cfar
), "cfar");
125 cpu_xer
= tcg_global_mem_new(cpu_env
,
126 offsetof(CPUPPCState
, xer
), "xer");
127 cpu_so
= tcg_global_mem_new(cpu_env
,
128 offsetof(CPUPPCState
, so
), "SO");
129 cpu_ov
= tcg_global_mem_new(cpu_env
,
130 offsetof(CPUPPCState
, ov
), "OV");
131 cpu_ca
= tcg_global_mem_new(cpu_env
,
132 offsetof(CPUPPCState
, ca
), "CA");
133 cpu_ov32
= tcg_global_mem_new(cpu_env
,
134 offsetof(CPUPPCState
, ov32
), "OV32");
135 cpu_ca32
= tcg_global_mem_new(cpu_env
,
136 offsetof(CPUPPCState
, ca32
), "CA32");
138 cpu_reserve
= tcg_global_mem_new(cpu_env
,
139 offsetof(CPUPPCState
, reserve_addr
),
141 cpu_reserve_val
= tcg_global_mem_new(cpu_env
,
142 offsetof(CPUPPCState
, reserve_val
),
145 cpu_fpscr
= tcg_global_mem_new(cpu_env
,
146 offsetof(CPUPPCState
, fpscr
), "fpscr");
148 cpu_access_type
= tcg_global_mem_new_i32(cpu_env
,
149 offsetof(CPUPPCState
, access_type
), "access_type");
152 /* internal defines */
153 struct DisasContext
{
154 DisasContextBase base
;
157 /* Routine used to access memory */
158 bool pr
, hv
, dr
, le_mode
;
160 bool need_access_type
;
163 /* Translation flags */
164 TCGMemOp default_tcg_memop_mask
;
165 #if defined(TARGET_PPC64)
170 bool altivec_enabled
;
175 ppc_spr_t
*spr_cb
; /* Needed to check rights for mfspr/mtspr */
176 int singlestep_enabled
;
178 uint64_t insns_flags
;
179 uint64_t insns_flags2
;
182 /* Return true iff byteswap is needed in a scalar memop */
183 static inline bool need_byteswap(const DisasContext
*ctx
)
185 #if defined(TARGET_WORDS_BIGENDIAN)
188 return !ctx
->le_mode
;
192 /* True when active word size < size of target_long. */
194 # define NARROW_MODE(C) (!(C)->sf_mode)
196 # define NARROW_MODE(C) 0
199 struct opc_handler_t
{
200 /* invalid bits for instruction 1 (Rc(opcode) == 0) */
202 /* invalid bits for instruction 2 (Rc(opcode) == 1) */
204 /* instruction type */
206 /* extended instruction type */
209 void (*handler
)(DisasContext
*ctx
);
210 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
213 #if defined(DO_PPC_STATISTICS)
218 /* SPR load/store helpers */
219 static inline void gen_load_spr(TCGv t
, int reg
)
221 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
224 static inline void gen_store_spr(int reg
, TCGv t
)
226 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
229 static inline void gen_set_access_type(DisasContext
*ctx
, int access_type
)
231 if (ctx
->need_access_type
&& ctx
->access_type
!= access_type
) {
232 tcg_gen_movi_i32(cpu_access_type
, access_type
);
233 ctx
->access_type
= access_type
;
237 static inline void gen_update_nip(DisasContext
*ctx
, target_ulong nip
)
239 if (NARROW_MODE(ctx
)) {
242 tcg_gen_movi_tl(cpu_nip
, nip
);
245 static void gen_exception_err(DisasContext
*ctx
, uint32_t excp
, uint32_t error
)
249 /* These are all synchronous exceptions, we set the PC back to
250 * the faulting instruction
252 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
253 gen_update_nip(ctx
, ctx
->base
.pc_next
- 4);
255 t0
= tcg_const_i32(excp
);
256 t1
= tcg_const_i32(error
);
257 gen_helper_raise_exception_err(cpu_env
, t0
, t1
);
258 tcg_temp_free_i32(t0
);
259 tcg_temp_free_i32(t1
);
260 ctx
->exception
= (excp
);
263 static void gen_exception(DisasContext
*ctx
, uint32_t excp
)
267 /* These are all synchronous exceptions, we set the PC back to
268 * the faulting instruction
270 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
271 gen_update_nip(ctx
, ctx
->base
.pc_next
- 4);
273 t0
= tcg_const_i32(excp
);
274 gen_helper_raise_exception(cpu_env
, t0
);
275 tcg_temp_free_i32(t0
);
276 ctx
->exception
= (excp
);
279 static void gen_exception_nip(DisasContext
*ctx
, uint32_t excp
,
284 gen_update_nip(ctx
, nip
);
285 t0
= tcg_const_i32(excp
);
286 gen_helper_raise_exception(cpu_env
, t0
);
287 tcg_temp_free_i32(t0
);
288 ctx
->exception
= (excp
);
292 * Tells the caller what is the appropriate exception to generate and prepares
293 * SPR registers for this exception.
295 * The exception can be either POWERPC_EXCP_TRACE (on most PowerPCs) or
296 * POWERPC_EXCP_DEBUG (on BookE).
298 static uint32_t gen_prep_dbgex(DisasContext
*ctx
)
300 if (ctx
->flags
& POWERPC_FLAG_DE
) {
301 target_ulong dbsr
= 0;
302 if (ctx
->singlestep_enabled
& CPU_SINGLE_STEP
) {
305 /* Must have been branch */
308 TCGv t0
= tcg_temp_new();
309 gen_load_spr(t0
, SPR_BOOKE_DBSR
);
310 tcg_gen_ori_tl(t0
, t0
, dbsr
);
311 gen_store_spr(SPR_BOOKE_DBSR
, t0
);
313 return POWERPC_EXCP_DEBUG
;
315 return POWERPC_EXCP_TRACE
;
319 static void gen_debug_exception(DisasContext
*ctx
)
323 /* These are all synchronous exceptions, we set the PC back to
324 * the faulting instruction
326 if ((ctx
->exception
!= POWERPC_EXCP_BRANCH
) &&
327 (ctx
->exception
!= POWERPC_EXCP_SYNC
)) {
328 gen_update_nip(ctx
, ctx
->base
.pc_next
);
330 t0
= tcg_const_i32(EXCP_DEBUG
);
331 gen_helper_raise_exception(cpu_env
, t0
);
332 tcg_temp_free_i32(t0
);
335 static inline void gen_inval_exception(DisasContext
*ctx
, uint32_t error
)
337 /* Will be converted to program check if needed */
338 gen_exception_err(ctx
, POWERPC_EXCP_HV_EMU
, POWERPC_EXCP_INVAL
| error
);
341 static inline void gen_priv_exception(DisasContext
*ctx
, uint32_t error
)
343 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_PRIV
| error
);
346 static inline void gen_hvpriv_exception(DisasContext
*ctx
, uint32_t error
)
348 /* Will be converted to program check if needed */
349 gen_exception_err(ctx
, POWERPC_EXCP_HV_EMU
, POWERPC_EXCP_PRIV
| error
);
352 /* Stop translation */
353 static inline void gen_stop_exception(DisasContext
*ctx
)
355 gen_update_nip(ctx
, ctx
->base
.pc_next
);
356 ctx
->exception
= POWERPC_EXCP_STOP
;
359 #ifndef CONFIG_USER_ONLY
360 /* No need to update nip here, as execution flow will change */
361 static inline void gen_sync_exception(DisasContext
*ctx
)
363 ctx
->exception
= POWERPC_EXCP_SYNC
;
367 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
368 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
370 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \
371 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
373 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
374 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
376 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \
377 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
379 #define GEN_HANDLER_E_2(name, opc1, opc2, opc3, opc4, inval, type, type2) \
380 GEN_OPCODE3(name, opc1, opc2, opc3, opc4, inval, type, type2)
382 #define GEN_HANDLER2_E_2(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2) \
383 GEN_OPCODE4(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2)
385 typedef struct opcode_t
{
386 unsigned char opc1
, opc2
, opc3
, opc4
;
387 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
388 unsigned char pad
[4];
390 opc_handler_t handler
;
394 /* Helpers for priv. check */
397 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; \
400 #if defined(CONFIG_USER_ONLY)
401 #define CHK_HV GEN_PRIV
402 #define CHK_SV GEN_PRIV
403 #define CHK_HVRM GEN_PRIV
407 if (unlikely(ctx->pr || !ctx->hv)) { \
413 if (unlikely(ctx->pr)) { \
419 if (unlikely(ctx->pr || !ctx->hv || ctx->dr)) { \
427 /*****************************************************************************/
428 /* PowerPC instructions table */
430 #if defined(DO_PPC_STATISTICS)
431 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
441 .handler = &gen_##name, \
442 .oname = stringify(name), \
444 .oname = stringify(name), \
446 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
457 .handler = &gen_##name, \
458 .oname = stringify(name), \
460 .oname = stringify(name), \
462 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
472 .handler = &gen_##name, \
477 #define GEN_OPCODE3(name, op1, op2, op3, op4, invl, _typ, _typ2) \
487 .handler = &gen_##name, \
488 .oname = stringify(name), \
490 .oname = stringify(name), \
492 #define GEN_OPCODE4(name, onam, op1, op2, op3, op4, invl, _typ, _typ2) \
502 .handler = &gen_##name, \
508 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
518 .handler = &gen_##name, \
520 .oname = stringify(name), \
522 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
533 .handler = &gen_##name, \
535 .oname = stringify(name), \
537 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
547 .handler = &gen_##name, \
551 #define GEN_OPCODE3(name, op1, op2, op3, op4, invl, _typ, _typ2) \
561 .handler = &gen_##name, \
563 .oname = stringify(name), \
565 #define GEN_OPCODE4(name, onam, op1, op2, op3, op4, invl, _typ, _typ2) \
575 .handler = &gen_##name, \
581 /* Invalid instruction */
582 static void gen_invalid(DisasContext
*ctx
)
584 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
587 static opc_handler_t invalid_handler
= {
588 .inval1
= 0xFFFFFFFF,
589 .inval2
= 0xFFFFFFFF,
592 .handler
= gen_invalid
,
595 /*** Integer comparison ***/
597 static inline void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
599 TCGv t0
= tcg_temp_new();
600 TCGv t1
= tcg_temp_new();
601 TCGv_i32 t
= tcg_temp_new_i32();
603 tcg_gen_movi_tl(t0
, CRF_EQ
);
604 tcg_gen_movi_tl(t1
, CRF_LT
);
605 tcg_gen_movcond_tl((s
? TCG_COND_LT
: TCG_COND_LTU
), t0
, arg0
, arg1
, t1
, t0
);
606 tcg_gen_movi_tl(t1
, CRF_GT
);
607 tcg_gen_movcond_tl((s
? TCG_COND_GT
: TCG_COND_GTU
), t0
, arg0
, arg1
, t1
, t0
);
609 tcg_gen_trunc_tl_i32(t
, t0
);
610 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_so
);
611 tcg_gen_or_i32(cpu_crf
[crf
], cpu_crf
[crf
], t
);
615 tcg_temp_free_i32(t
);
618 static inline void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
620 TCGv t0
= tcg_const_tl(arg1
);
621 gen_op_cmp(arg0
, t0
, s
, crf
);
625 static inline void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
631 tcg_gen_ext32s_tl(t0
, arg0
);
632 tcg_gen_ext32s_tl(t1
, arg1
);
634 tcg_gen_ext32u_tl(t0
, arg0
);
635 tcg_gen_ext32u_tl(t1
, arg1
);
637 gen_op_cmp(t0
, t1
, s
, crf
);
642 static inline void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
644 TCGv t0
= tcg_const_tl(arg1
);
645 gen_op_cmp32(arg0
, t0
, s
, crf
);
649 static inline void gen_set_Rc0(DisasContext
*ctx
, TCGv reg
)
651 if (NARROW_MODE(ctx
)) {
652 gen_op_cmpi32(reg
, 0, 1, 0);
654 gen_op_cmpi(reg
, 0, 1, 0);
659 static void gen_cmp(DisasContext
*ctx
)
661 if ((ctx
->opcode
& 0x00200000) && (ctx
->insns_flags
& PPC_64B
)) {
662 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
663 1, crfD(ctx
->opcode
));
665 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
666 1, crfD(ctx
->opcode
));
671 static void gen_cmpi(DisasContext
*ctx
)
673 if ((ctx
->opcode
& 0x00200000) && (ctx
->insns_flags
& PPC_64B
)) {
674 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
675 1, crfD(ctx
->opcode
));
677 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
678 1, crfD(ctx
->opcode
));
683 static void gen_cmpl(DisasContext
*ctx
)
685 if ((ctx
->opcode
& 0x00200000) && (ctx
->insns_flags
& PPC_64B
)) {
686 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
687 0, crfD(ctx
->opcode
));
689 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
690 0, crfD(ctx
->opcode
));
695 static void gen_cmpli(DisasContext
*ctx
)
697 if ((ctx
->opcode
& 0x00200000) && (ctx
->insns_flags
& PPC_64B
)) {
698 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
699 0, crfD(ctx
->opcode
));
701 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
702 0, crfD(ctx
->opcode
));
706 /* cmprb - range comparison: isupper, isaplha, islower*/
707 static void gen_cmprb(DisasContext
*ctx
)
709 TCGv_i32 src1
= tcg_temp_new_i32();
710 TCGv_i32 src2
= tcg_temp_new_i32();
711 TCGv_i32 src2lo
= tcg_temp_new_i32();
712 TCGv_i32 src2hi
= tcg_temp_new_i32();
713 TCGv_i32 crf
= cpu_crf
[crfD(ctx
->opcode
)];
715 tcg_gen_trunc_tl_i32(src1
, cpu_gpr
[rA(ctx
->opcode
)]);
716 tcg_gen_trunc_tl_i32(src2
, cpu_gpr
[rB(ctx
->opcode
)]);
718 tcg_gen_andi_i32(src1
, src1
, 0xFF);
719 tcg_gen_ext8u_i32(src2lo
, src2
);
720 tcg_gen_shri_i32(src2
, src2
, 8);
721 tcg_gen_ext8u_i32(src2hi
, src2
);
723 tcg_gen_setcond_i32(TCG_COND_LEU
, src2lo
, src2lo
, src1
);
724 tcg_gen_setcond_i32(TCG_COND_LEU
, src2hi
, src1
, src2hi
);
725 tcg_gen_and_i32(crf
, src2lo
, src2hi
);
727 if (ctx
->opcode
& 0x00200000) {
728 tcg_gen_shri_i32(src2
, src2
, 8);
729 tcg_gen_ext8u_i32(src2lo
, src2
);
730 tcg_gen_shri_i32(src2
, src2
, 8);
731 tcg_gen_ext8u_i32(src2hi
, src2
);
732 tcg_gen_setcond_i32(TCG_COND_LEU
, src2lo
, src2lo
, src1
);
733 tcg_gen_setcond_i32(TCG_COND_LEU
, src2hi
, src1
, src2hi
);
734 tcg_gen_and_i32(src2lo
, src2lo
, src2hi
);
735 tcg_gen_or_i32(crf
, crf
, src2lo
);
737 tcg_gen_shli_i32(crf
, crf
, CRF_GT_BIT
);
738 tcg_temp_free_i32(src1
);
739 tcg_temp_free_i32(src2
);
740 tcg_temp_free_i32(src2lo
);
741 tcg_temp_free_i32(src2hi
);
744 #if defined(TARGET_PPC64)
746 static void gen_cmpeqb(DisasContext
*ctx
)
748 gen_helper_cmpeqb(cpu_crf
[crfD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
749 cpu_gpr
[rB(ctx
->opcode
)]);
753 /* isel (PowerPC 2.03 specification) */
754 static void gen_isel(DisasContext
*ctx
)
756 uint32_t bi
= rC(ctx
->opcode
);
757 uint32_t mask
= 0x08 >> (bi
& 0x03);
758 TCGv t0
= tcg_temp_new();
761 tcg_gen_extu_i32_tl(t0
, cpu_crf
[bi
>> 2]);
762 tcg_gen_andi_tl(t0
, t0
, mask
);
764 zr
= tcg_const_tl(0);
765 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr
[rD(ctx
->opcode
)], t0
, zr
,
766 rA(ctx
->opcode
) ? cpu_gpr
[rA(ctx
->opcode
)] : zr
,
767 cpu_gpr
[rB(ctx
->opcode
)]);
772 /* cmpb: PowerPC 2.05 specification */
773 static void gen_cmpb(DisasContext
*ctx
)
775 gen_helper_cmpb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
776 cpu_gpr
[rB(ctx
->opcode
)]);
779 /*** Integer arithmetic ***/
781 static inline void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
,
782 TCGv arg1
, TCGv arg2
, int sub
)
784 TCGv t0
= tcg_temp_new();
786 tcg_gen_xor_tl(cpu_ov
, arg0
, arg2
);
787 tcg_gen_xor_tl(t0
, arg1
, arg2
);
789 tcg_gen_and_tl(cpu_ov
, cpu_ov
, t0
);
791 tcg_gen_andc_tl(cpu_ov
, cpu_ov
, t0
);
794 if (NARROW_MODE(ctx
)) {
795 tcg_gen_extract_tl(cpu_ov
, cpu_ov
, 31, 1);
796 if (is_isa300(ctx
)) {
797 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
800 if (is_isa300(ctx
)) {
801 tcg_gen_extract_tl(cpu_ov32
, cpu_ov
, 31, 1);
803 tcg_gen_extract_tl(cpu_ov
, cpu_ov
, TARGET_LONG_BITS
- 1, 1);
805 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
808 static inline void gen_op_arith_compute_ca32(DisasContext
*ctx
,
809 TCGv res
, TCGv arg0
, TCGv arg1
,
814 if (!is_isa300(ctx
)) {
820 tcg_gen_eqv_tl(t0
, arg0
, arg1
);
822 tcg_gen_xor_tl(t0
, arg0
, arg1
);
824 tcg_gen_xor_tl(t0
, t0
, res
);
825 tcg_gen_extract_tl(ca32
, t0
, 32, 1);
829 /* Common add function */
830 static inline void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
831 TCGv arg2
, TCGv ca
, TCGv ca32
,
832 bool add_ca
, bool compute_ca
,
833 bool compute_ov
, bool compute_rc0
)
837 if (compute_ca
|| compute_ov
) {
842 if (NARROW_MODE(ctx
)) {
843 /* Caution: a non-obvious corner case of the spec is that we
844 must produce the *entire* 64-bit addition, but produce the
845 carry into bit 32. */
846 TCGv t1
= tcg_temp_new();
847 tcg_gen_xor_tl(t1
, arg1
, arg2
); /* add without carry */
848 tcg_gen_add_tl(t0
, arg1
, arg2
);
850 tcg_gen_add_tl(t0
, t0
, ca
);
852 tcg_gen_xor_tl(ca
, t0
, t1
); /* bits changed w/ carry */
854 tcg_gen_extract_tl(ca
, ca
, 32, 1);
855 if (is_isa300(ctx
)) {
856 tcg_gen_mov_tl(ca32
, ca
);
859 TCGv zero
= tcg_const_tl(0);
861 tcg_gen_add2_tl(t0
, ca
, arg1
, zero
, ca
, zero
);
862 tcg_gen_add2_tl(t0
, ca
, t0
, ca
, arg2
, zero
);
864 tcg_gen_add2_tl(t0
, ca
, arg1
, zero
, arg2
, zero
);
866 gen_op_arith_compute_ca32(ctx
, t0
, arg1
, arg2
, ca32
, 0);
870 tcg_gen_add_tl(t0
, arg1
, arg2
);
872 tcg_gen_add_tl(t0
, t0
, ca
);
877 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
879 if (unlikely(compute_rc0
)) {
880 gen_set_Rc0(ctx
, t0
);
884 tcg_gen_mov_tl(ret
, t0
);
888 /* Add functions with two operands */
889 #define GEN_INT_ARITH_ADD(name, opc3, ca, add_ca, compute_ca, compute_ov) \
890 static void glue(gen_, name)(DisasContext *ctx) \
892 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
893 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
895 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
897 /* Add functions with one operand and one immediate */
898 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, ca, \
899 add_ca, compute_ca, compute_ov) \
900 static void glue(gen_, name)(DisasContext *ctx) \
902 TCGv t0 = tcg_const_tl(const_val); \
903 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
904 cpu_gpr[rA(ctx->opcode)], t0, \
906 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
910 /* add add. addo addo. */
911 GEN_INT_ARITH_ADD(add
, 0x08, cpu_ca
, 0, 0, 0)
912 GEN_INT_ARITH_ADD(addo
, 0x18, cpu_ca
, 0, 0, 1)
913 /* addc addc. addco addco. */
914 GEN_INT_ARITH_ADD(addc
, 0x00, cpu_ca
, 0, 1, 0)
915 GEN_INT_ARITH_ADD(addco
, 0x10, cpu_ca
, 0, 1, 1)
916 /* adde adde. addeo addeo. */
917 GEN_INT_ARITH_ADD(adde
, 0x04, cpu_ca
, 1, 1, 0)
918 GEN_INT_ARITH_ADD(addeo
, 0x14, cpu_ca
, 1, 1, 1)
919 /* addme addme. addmeo addmeo. */
920 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, cpu_ca
, 1, 1, 0)
921 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, cpu_ca
, 1, 1, 1)
923 GEN_INT_ARITH_ADD(addex
, 0x05, cpu_ov
, 1, 1, 0);
924 /* addze addze. addzeo addzeo.*/
925 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, cpu_ca
, 1, 1, 0)
926 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, cpu_ca
, 1, 1, 1)
928 static void gen_addi(DisasContext
*ctx
)
930 target_long simm
= SIMM(ctx
->opcode
);
932 if (rA(ctx
->opcode
) == 0) {
934 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
);
936 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)],
937 cpu_gpr
[rA(ctx
->opcode
)], simm
);
941 static inline void gen_op_addic(DisasContext
*ctx
, bool compute_rc0
)
943 TCGv c
= tcg_const_tl(SIMM(ctx
->opcode
));
944 gen_op_arith_add(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
945 c
, cpu_ca
, cpu_ca32
, 0, 1, 0, compute_rc0
);
949 static void gen_addic(DisasContext
*ctx
)
951 gen_op_addic(ctx
, 0);
954 static void gen_addic_(DisasContext
*ctx
)
956 gen_op_addic(ctx
, 1);
960 static void gen_addis(DisasContext
*ctx
)
962 target_long simm
= SIMM(ctx
->opcode
);
964 if (rA(ctx
->opcode
) == 0) {
966 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
<< 16);
968 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)],
969 cpu_gpr
[rA(ctx
->opcode
)], simm
<< 16);
974 static void gen_addpcis(DisasContext
*ctx
)
976 target_long d
= DX(ctx
->opcode
);
978 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], ctx
->base
.pc_next
+ (d
<< 16));
981 static inline void gen_op_arith_divw(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
982 TCGv arg2
, int sign
, int compute_ov
)
984 TCGv_i32 t0
= tcg_temp_new_i32();
985 TCGv_i32 t1
= tcg_temp_new_i32();
986 TCGv_i32 t2
= tcg_temp_new_i32();
987 TCGv_i32 t3
= tcg_temp_new_i32();
989 tcg_gen_trunc_tl_i32(t0
, arg1
);
990 tcg_gen_trunc_tl_i32(t1
, arg2
);
992 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
993 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, -1);
994 tcg_gen_and_i32(t2
, t2
, t3
);
995 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, 0);
996 tcg_gen_or_i32(t2
, t2
, t3
);
997 tcg_gen_movi_i32(t3
, 0);
998 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
999 tcg_gen_div_i32(t3
, t0
, t1
);
1000 tcg_gen_extu_i32_tl(ret
, t3
);
1002 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t1
, 0);
1003 tcg_gen_movi_i32(t3
, 0);
1004 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1005 tcg_gen_divu_i32(t3
, t0
, t1
);
1006 tcg_gen_extu_i32_tl(ret
, t3
);
1009 tcg_gen_extu_i32_tl(cpu_ov
, t2
);
1010 if (is_isa300(ctx
)) {
1011 tcg_gen_extu_i32_tl(cpu_ov32
, t2
);
1013 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1015 tcg_temp_free_i32(t0
);
1016 tcg_temp_free_i32(t1
);
1017 tcg_temp_free_i32(t2
);
1018 tcg_temp_free_i32(t3
);
1020 if (unlikely(Rc(ctx
->opcode
) != 0))
1021 gen_set_Rc0(ctx
, ret
);
1024 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1025 static void glue(gen_, name)(DisasContext *ctx) \
1027 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1028 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1029 sign, compute_ov); \
1031 /* divwu divwu. divwuo divwuo. */
1032 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
1033 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
1034 /* divw divw. divwo divwo. */
1035 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
1036 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
1038 /* div[wd]eu[o][.] */
1039 #define GEN_DIVE(name, hlpr, compute_ov) \
1040 static void gen_##name(DisasContext *ctx) \
1042 TCGv_i32 t0 = tcg_const_i32(compute_ov); \
1043 gen_helper_##hlpr(cpu_gpr[rD(ctx->opcode)], cpu_env, \
1044 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0); \
1045 tcg_temp_free_i32(t0); \
1046 if (unlikely(Rc(ctx->opcode) != 0)) { \
1047 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1051 GEN_DIVE(divweu
, divweu
, 0);
1052 GEN_DIVE(divweuo
, divweu
, 1);
1053 GEN_DIVE(divwe
, divwe
, 0);
1054 GEN_DIVE(divweo
, divwe
, 1);
1056 #if defined(TARGET_PPC64)
1057 static inline void gen_op_arith_divd(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1058 TCGv arg2
, int sign
, int compute_ov
)
1060 TCGv_i64 t0
= tcg_temp_new_i64();
1061 TCGv_i64 t1
= tcg_temp_new_i64();
1062 TCGv_i64 t2
= tcg_temp_new_i64();
1063 TCGv_i64 t3
= tcg_temp_new_i64();
1065 tcg_gen_mov_i64(t0
, arg1
);
1066 tcg_gen_mov_i64(t1
, arg2
);
1068 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t0
, INT64_MIN
);
1069 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, -1);
1070 tcg_gen_and_i64(t2
, t2
, t3
);
1071 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, 0);
1072 tcg_gen_or_i64(t2
, t2
, t3
);
1073 tcg_gen_movi_i64(t3
, 0);
1074 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1075 tcg_gen_div_i64(ret
, t0
, t1
);
1077 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t1
, 0);
1078 tcg_gen_movi_i64(t3
, 0);
1079 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1080 tcg_gen_divu_i64(ret
, t0
, t1
);
1083 tcg_gen_mov_tl(cpu_ov
, t2
);
1084 if (is_isa300(ctx
)) {
1085 tcg_gen_mov_tl(cpu_ov32
, t2
);
1087 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1089 tcg_temp_free_i64(t0
);
1090 tcg_temp_free_i64(t1
);
1091 tcg_temp_free_i64(t2
);
1092 tcg_temp_free_i64(t3
);
1094 if (unlikely(Rc(ctx
->opcode
) != 0))
1095 gen_set_Rc0(ctx
, ret
);
1098 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1099 static void glue(gen_, name)(DisasContext *ctx) \
1101 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1102 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1103 sign, compute_ov); \
1105 /* divdu divdu. divduo divduo. */
1106 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1107 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1108 /* divd divd. divdo divdo. */
1109 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1110 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1112 GEN_DIVE(divdeu
, divdeu
, 0);
1113 GEN_DIVE(divdeuo
, divdeu
, 1);
1114 GEN_DIVE(divde
, divde
, 0);
1115 GEN_DIVE(divdeo
, divde
, 1);
1118 static inline void gen_op_arith_modw(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1119 TCGv arg2
, int sign
)
1121 TCGv_i32 t0
= tcg_temp_new_i32();
1122 TCGv_i32 t1
= tcg_temp_new_i32();
1124 tcg_gen_trunc_tl_i32(t0
, arg1
);
1125 tcg_gen_trunc_tl_i32(t1
, arg2
);
1127 TCGv_i32 t2
= tcg_temp_new_i32();
1128 TCGv_i32 t3
= tcg_temp_new_i32();
1129 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
1130 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, -1);
1131 tcg_gen_and_i32(t2
, t2
, t3
);
1132 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, 0);
1133 tcg_gen_or_i32(t2
, t2
, t3
);
1134 tcg_gen_movi_i32(t3
, 0);
1135 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1136 tcg_gen_rem_i32(t3
, t0
, t1
);
1137 tcg_gen_ext_i32_tl(ret
, t3
);
1138 tcg_temp_free_i32(t2
);
1139 tcg_temp_free_i32(t3
);
1141 TCGv_i32 t2
= tcg_const_i32(1);
1142 TCGv_i32 t3
= tcg_const_i32(0);
1143 tcg_gen_movcond_i32(TCG_COND_EQ
, t1
, t1
, t3
, t2
, t1
);
1144 tcg_gen_remu_i32(t3
, t0
, t1
);
1145 tcg_gen_extu_i32_tl(ret
, t3
);
1146 tcg_temp_free_i32(t2
);
1147 tcg_temp_free_i32(t3
);
1149 tcg_temp_free_i32(t0
);
1150 tcg_temp_free_i32(t1
);
1153 #define GEN_INT_ARITH_MODW(name, opc3, sign) \
1154 static void glue(gen_, name)(DisasContext *ctx) \
1156 gen_op_arith_modw(ctx, cpu_gpr[rD(ctx->opcode)], \
1157 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1161 GEN_INT_ARITH_MODW(moduw
, 0x08, 0);
1162 GEN_INT_ARITH_MODW(modsw
, 0x18, 1);
1164 #if defined(TARGET_PPC64)
1165 static inline void gen_op_arith_modd(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1166 TCGv arg2
, int sign
)
1168 TCGv_i64 t0
= tcg_temp_new_i64();
1169 TCGv_i64 t1
= tcg_temp_new_i64();
1171 tcg_gen_mov_i64(t0
, arg1
);
1172 tcg_gen_mov_i64(t1
, arg2
);
1174 TCGv_i64 t2
= tcg_temp_new_i64();
1175 TCGv_i64 t3
= tcg_temp_new_i64();
1176 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t0
, INT64_MIN
);
1177 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, -1);
1178 tcg_gen_and_i64(t2
, t2
, t3
);
1179 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, 0);
1180 tcg_gen_or_i64(t2
, t2
, t3
);
1181 tcg_gen_movi_i64(t3
, 0);
1182 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1183 tcg_gen_rem_i64(ret
, t0
, t1
);
1184 tcg_temp_free_i64(t2
);
1185 tcg_temp_free_i64(t3
);
1187 TCGv_i64 t2
= tcg_const_i64(1);
1188 TCGv_i64 t3
= tcg_const_i64(0);
1189 tcg_gen_movcond_i64(TCG_COND_EQ
, t1
, t1
, t3
, t2
, t1
);
1190 tcg_gen_remu_i64(ret
, t0
, t1
);
1191 tcg_temp_free_i64(t2
);
1192 tcg_temp_free_i64(t3
);
1194 tcg_temp_free_i64(t0
);
1195 tcg_temp_free_i64(t1
);
1198 #define GEN_INT_ARITH_MODD(name, opc3, sign) \
1199 static void glue(gen_, name)(DisasContext *ctx) \
1201 gen_op_arith_modd(ctx, cpu_gpr[rD(ctx->opcode)], \
1202 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1206 GEN_INT_ARITH_MODD(modud
, 0x08, 0);
1207 GEN_INT_ARITH_MODD(modsd
, 0x18, 1);
1211 static void gen_mulhw(DisasContext
*ctx
)
1213 TCGv_i32 t0
= tcg_temp_new_i32();
1214 TCGv_i32 t1
= tcg_temp_new_i32();
1216 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1217 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1218 tcg_gen_muls2_i32(t0
, t1
, t0
, t1
);
1219 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
1220 tcg_temp_free_i32(t0
);
1221 tcg_temp_free_i32(t1
);
1222 if (unlikely(Rc(ctx
->opcode
) != 0))
1223 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1226 /* mulhwu mulhwu. */
1227 static void gen_mulhwu(DisasContext
*ctx
)
1229 TCGv_i32 t0
= tcg_temp_new_i32();
1230 TCGv_i32 t1
= tcg_temp_new_i32();
1232 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1233 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1234 tcg_gen_mulu2_i32(t0
, t1
, t0
, t1
);
1235 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
1236 tcg_temp_free_i32(t0
);
1237 tcg_temp_free_i32(t1
);
1238 if (unlikely(Rc(ctx
->opcode
) != 0))
1239 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1243 static void gen_mullw(DisasContext
*ctx
)
1245 #if defined(TARGET_PPC64)
1247 t0
= tcg_temp_new_i64();
1248 t1
= tcg_temp_new_i64();
1249 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1250 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1251 tcg_gen_mul_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
1255 tcg_gen_mul_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1256 cpu_gpr
[rB(ctx
->opcode
)]);
1258 if (unlikely(Rc(ctx
->opcode
) != 0))
1259 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1262 /* mullwo mullwo. */
1263 static void gen_mullwo(DisasContext
*ctx
)
1265 TCGv_i32 t0
= tcg_temp_new_i32();
1266 TCGv_i32 t1
= tcg_temp_new_i32();
1268 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1269 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1270 tcg_gen_muls2_i32(t0
, t1
, t0
, t1
);
1271 #if defined(TARGET_PPC64)
1272 tcg_gen_concat_i32_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
1274 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1277 tcg_gen_sari_i32(t0
, t0
, 31);
1278 tcg_gen_setcond_i32(TCG_COND_NE
, t0
, t0
, t1
);
1279 tcg_gen_extu_i32_tl(cpu_ov
, t0
);
1280 if (is_isa300(ctx
)) {
1281 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
1283 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1285 tcg_temp_free_i32(t0
);
1286 tcg_temp_free_i32(t1
);
1287 if (unlikely(Rc(ctx
->opcode
) != 0))
1288 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1292 static void gen_mulli(DisasContext
*ctx
)
1294 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1298 #if defined(TARGET_PPC64)
1300 static void gen_mulhd(DisasContext
*ctx
)
1302 TCGv lo
= tcg_temp_new();
1303 tcg_gen_muls2_tl(lo
, cpu_gpr
[rD(ctx
->opcode
)],
1304 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1306 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1307 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1311 /* mulhdu mulhdu. */
1312 static void gen_mulhdu(DisasContext
*ctx
)
1314 TCGv lo
= tcg_temp_new();
1315 tcg_gen_mulu2_tl(lo
, cpu_gpr
[rD(ctx
->opcode
)],
1316 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1318 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1319 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1324 static void gen_mulld(DisasContext
*ctx
)
1326 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1327 cpu_gpr
[rB(ctx
->opcode
)]);
1328 if (unlikely(Rc(ctx
->opcode
) != 0))
1329 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1332 /* mulldo mulldo. */
1333 static void gen_mulldo(DisasContext
*ctx
)
1335 TCGv_i64 t0
= tcg_temp_new_i64();
1336 TCGv_i64 t1
= tcg_temp_new_i64();
1338 tcg_gen_muls2_i64(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)],
1339 cpu_gpr
[rB(ctx
->opcode
)]);
1340 tcg_gen_mov_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1342 tcg_gen_sari_i64(t0
, t0
, 63);
1343 tcg_gen_setcond_i64(TCG_COND_NE
, cpu_ov
, t0
, t1
);
1344 if (is_isa300(ctx
)) {
1345 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
1347 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1349 tcg_temp_free_i64(t0
);
1350 tcg_temp_free_i64(t1
);
1352 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1353 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1358 /* Common subf function */
1359 static inline void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1360 TCGv arg2
, bool add_ca
, bool compute_ca
,
1361 bool compute_ov
, bool compute_rc0
)
1365 if (compute_ca
|| compute_ov
) {
1366 t0
= tcg_temp_new();
1370 /* dest = ~arg1 + arg2 [+ ca]. */
1371 if (NARROW_MODE(ctx
)) {
1372 /* Caution: a non-obvious corner case of the spec is that we
1373 must produce the *entire* 64-bit addition, but produce the
1374 carry into bit 32. */
1375 TCGv inv1
= tcg_temp_new();
1376 TCGv t1
= tcg_temp_new();
1377 tcg_gen_not_tl(inv1
, arg1
);
1379 tcg_gen_add_tl(t0
, arg2
, cpu_ca
);
1381 tcg_gen_addi_tl(t0
, arg2
, 1);
1383 tcg_gen_xor_tl(t1
, arg2
, inv1
); /* add without carry */
1384 tcg_gen_add_tl(t0
, t0
, inv1
);
1385 tcg_temp_free(inv1
);
1386 tcg_gen_xor_tl(cpu_ca
, t0
, t1
); /* bits changes w/ carry */
1388 tcg_gen_extract_tl(cpu_ca
, cpu_ca
, 32, 1);
1389 if (is_isa300(ctx
)) {
1390 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
1392 } else if (add_ca
) {
1393 TCGv zero
, inv1
= tcg_temp_new();
1394 tcg_gen_not_tl(inv1
, arg1
);
1395 zero
= tcg_const_tl(0);
1396 tcg_gen_add2_tl(t0
, cpu_ca
, arg2
, zero
, cpu_ca
, zero
);
1397 tcg_gen_add2_tl(t0
, cpu_ca
, t0
, cpu_ca
, inv1
, zero
);
1398 gen_op_arith_compute_ca32(ctx
, t0
, inv1
, arg2
, cpu_ca32
, 0);
1399 tcg_temp_free(zero
);
1400 tcg_temp_free(inv1
);
1402 tcg_gen_setcond_tl(TCG_COND_GEU
, cpu_ca
, arg2
, arg1
);
1403 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1404 gen_op_arith_compute_ca32(ctx
, t0
, arg1
, arg2
, cpu_ca32
, 1);
1406 } else if (add_ca
) {
1407 /* Since we're ignoring carry-out, we can simplify the
1408 standard ~arg1 + arg2 + ca to arg2 - arg1 + ca - 1. */
1409 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1410 tcg_gen_add_tl(t0
, t0
, cpu_ca
);
1411 tcg_gen_subi_tl(t0
, t0
, 1);
1413 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1417 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
1419 if (unlikely(compute_rc0
)) {
1420 gen_set_Rc0(ctx
, t0
);
1424 tcg_gen_mov_tl(ret
, t0
);
1428 /* Sub functions with Two operands functions */
1429 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1430 static void glue(gen_, name)(DisasContext *ctx) \
1432 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1433 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1434 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
1436 /* Sub functions with one operand and one immediate */
1437 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1438 add_ca, compute_ca, compute_ov) \
1439 static void glue(gen_, name)(DisasContext *ctx) \
1441 TCGv t0 = tcg_const_tl(const_val); \
1442 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1443 cpu_gpr[rA(ctx->opcode)], t0, \
1444 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
1445 tcg_temp_free(t0); \
1447 /* subf subf. subfo subfo. */
1448 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
1449 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
1450 /* subfc subfc. subfco subfco. */
1451 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
1452 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
1453 /* subfe subfe. subfeo subfo. */
1454 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
1455 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
1456 /* subfme subfme. subfmeo subfmeo. */
1457 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
1458 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
1459 /* subfze subfze. subfzeo subfzeo.*/
1460 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
1461 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
1464 static void gen_subfic(DisasContext
*ctx
)
1466 TCGv c
= tcg_const_tl(SIMM(ctx
->opcode
));
1467 gen_op_arith_subf(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1472 /* neg neg. nego nego. */
1473 static inline void gen_op_arith_neg(DisasContext
*ctx
, bool compute_ov
)
1475 TCGv zero
= tcg_const_tl(0);
1476 gen_op_arith_subf(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1477 zero
, 0, 0, compute_ov
, Rc(ctx
->opcode
));
1478 tcg_temp_free(zero
);
1481 static void gen_neg(DisasContext
*ctx
)
1483 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
1484 if (unlikely(Rc(ctx
->opcode
))) {
1485 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1489 static void gen_nego(DisasContext
*ctx
)
1491 gen_op_arith_neg(ctx
, 1);
1494 /*** Integer logical ***/
1495 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1496 static void glue(gen_, name)(DisasContext *ctx) \
1498 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1499 cpu_gpr[rB(ctx->opcode)]); \
1500 if (unlikely(Rc(ctx->opcode) != 0)) \
1501 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1504 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1505 static void glue(gen_, name)(DisasContext *ctx) \
1507 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1508 if (unlikely(Rc(ctx->opcode) != 0)) \
1509 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1513 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
1515 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
1518 static void gen_andi_(DisasContext
*ctx
)
1520 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
));
1521 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1525 static void gen_andis_(DisasContext
*ctx
)
1527 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
) << 16);
1528 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1532 static void gen_cntlzw(DisasContext
*ctx
)
1534 TCGv_i32 t
= tcg_temp_new_i32();
1536 tcg_gen_trunc_tl_i32(t
, cpu_gpr
[rS(ctx
->opcode
)]);
1537 tcg_gen_clzi_i32(t
, t
, 32);
1538 tcg_gen_extu_i32_tl(cpu_gpr
[rA(ctx
->opcode
)], t
);
1539 tcg_temp_free_i32(t
);
1541 if (unlikely(Rc(ctx
->opcode
) != 0))
1542 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1546 static void gen_cnttzw(DisasContext
*ctx
)
1548 TCGv_i32 t
= tcg_temp_new_i32();
1550 tcg_gen_trunc_tl_i32(t
, cpu_gpr
[rS(ctx
->opcode
)]);
1551 tcg_gen_ctzi_i32(t
, t
, 32);
1552 tcg_gen_extu_i32_tl(cpu_gpr
[rA(ctx
->opcode
)], t
);
1553 tcg_temp_free_i32(t
);
1555 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1556 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1561 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
1562 /* extsb & extsb. */
1563 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
1564 /* extsh & extsh. */
1565 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
1567 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
1569 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
1571 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
1572 static void gen_pause(DisasContext
*ctx
)
1574 TCGv_i32 t0
= tcg_const_i32(0);
1575 tcg_gen_st_i32(t0
, cpu_env
,
1576 -offsetof(PowerPCCPU
, env
) + offsetof(CPUState
, halted
));
1577 tcg_temp_free_i32(t0
);
1579 /* Stop translation, this gives other CPUs a chance to run */
1580 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
1582 #endif /* defined(TARGET_PPC64) */
1585 static void gen_or(DisasContext
*ctx
)
1589 rs
= rS(ctx
->opcode
);
1590 ra
= rA(ctx
->opcode
);
1591 rb
= rB(ctx
->opcode
);
1592 /* Optimisation for mr. ri case */
1593 if (rs
!= ra
|| rs
!= rb
) {
1595 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
1597 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
1598 if (unlikely(Rc(ctx
->opcode
) != 0))
1599 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
1600 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
1601 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
1602 #if defined(TARGET_PPC64)
1603 } else if (rs
!= 0) { /* 0 is nop */
1608 /* Set process priority to low */
1612 /* Set process priority to medium-low */
1616 /* Set process priority to normal */
1619 #if !defined(CONFIG_USER_ONLY)
1622 /* Set process priority to very low */
1628 /* Set process priority to medium-hight */
1634 /* Set process priority to high */
1639 if (ctx
->hv
&& !ctx
->pr
) {
1640 /* Set process priority to very high */
1649 TCGv t0
= tcg_temp_new();
1650 gen_load_spr(t0
, SPR_PPR
);
1651 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
1652 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
1653 gen_store_spr(SPR_PPR
, t0
);
1656 #if !defined(CONFIG_USER_ONLY)
1657 /* Pause out of TCG otherwise spin loops with smt_low eat too much
1658 * CPU and the kernel hangs. This applies to all encodings other
1659 * than no-op, e.g., miso(rs=26), yield(27), mdoio(29), mdoom(30),
1660 * and all currently undefined.
1668 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
1671 static void gen_xor(DisasContext
*ctx
)
1673 /* Optimisation for "set to zero" case */
1674 if (rS(ctx
->opcode
) != rB(ctx
->opcode
))
1675 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1677 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1678 if (unlikely(Rc(ctx
->opcode
) != 0))
1679 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1683 static void gen_ori(DisasContext
*ctx
)
1685 target_ulong uimm
= UIMM(ctx
->opcode
);
1687 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1690 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1694 static void gen_oris(DisasContext
*ctx
)
1696 target_ulong uimm
= UIMM(ctx
->opcode
);
1698 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1702 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1706 static void gen_xori(DisasContext
*ctx
)
1708 target_ulong uimm
= UIMM(ctx
->opcode
);
1710 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1714 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1718 static void gen_xoris(DisasContext
*ctx
)
1720 target_ulong uimm
= UIMM(ctx
->opcode
);
1722 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1726 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1729 /* popcntb : PowerPC 2.03 specification */
1730 static void gen_popcntb(DisasContext
*ctx
)
1732 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1735 static void gen_popcntw(DisasContext
*ctx
)
1737 #if defined(TARGET_PPC64)
1738 gen_helper_popcntw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1740 tcg_gen_ctpop_i32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1744 #if defined(TARGET_PPC64)
1745 /* popcntd: PowerPC 2.06 specification */
1746 static void gen_popcntd(DisasContext
*ctx
)
1748 tcg_gen_ctpop_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1752 /* prtyw: PowerPC 2.05 specification */
1753 static void gen_prtyw(DisasContext
*ctx
)
1755 TCGv ra
= cpu_gpr
[rA(ctx
->opcode
)];
1756 TCGv rs
= cpu_gpr
[rS(ctx
->opcode
)];
1757 TCGv t0
= tcg_temp_new();
1758 tcg_gen_shri_tl(t0
, rs
, 16);
1759 tcg_gen_xor_tl(ra
, rs
, t0
);
1760 tcg_gen_shri_tl(t0
, ra
, 8);
1761 tcg_gen_xor_tl(ra
, ra
, t0
);
1762 tcg_gen_andi_tl(ra
, ra
, (target_ulong
)0x100000001ULL
);
1766 #if defined(TARGET_PPC64)
1767 /* prtyd: PowerPC 2.05 specification */
1768 static void gen_prtyd(DisasContext
*ctx
)
1770 TCGv ra
= cpu_gpr
[rA(ctx
->opcode
)];
1771 TCGv rs
= cpu_gpr
[rS(ctx
->opcode
)];
1772 TCGv t0
= tcg_temp_new();
1773 tcg_gen_shri_tl(t0
, rs
, 32);
1774 tcg_gen_xor_tl(ra
, rs
, t0
);
1775 tcg_gen_shri_tl(t0
, ra
, 16);
1776 tcg_gen_xor_tl(ra
, ra
, t0
);
1777 tcg_gen_shri_tl(t0
, ra
, 8);
1778 tcg_gen_xor_tl(ra
, ra
, t0
);
1779 tcg_gen_andi_tl(ra
, ra
, 1);
1784 #if defined(TARGET_PPC64)
1786 static void gen_bpermd(DisasContext
*ctx
)
1788 gen_helper_bpermd(cpu_gpr
[rA(ctx
->opcode
)],
1789 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1793 #if defined(TARGET_PPC64)
1794 /* extsw & extsw. */
1795 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
1798 static void gen_cntlzd(DisasContext
*ctx
)
1800 tcg_gen_clzi_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], 64);
1801 if (unlikely(Rc(ctx
->opcode
) != 0))
1802 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1806 static void gen_cnttzd(DisasContext
*ctx
)
1808 tcg_gen_ctzi_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], 64);
1809 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1810 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1815 static void gen_darn(DisasContext
*ctx
)
1817 int l
= L(ctx
->opcode
);
1820 gen_helper_darn32(cpu_gpr
[rD(ctx
->opcode
)]);
1821 } else if (l
<= 2) {
1822 /* Return 64-bit random for both CRN and RRN */
1823 gen_helper_darn64(cpu_gpr
[rD(ctx
->opcode
)]);
1825 tcg_gen_movi_i64(cpu_gpr
[rD(ctx
->opcode
)], -1);
1830 /*** Integer rotate ***/
1832 /* rlwimi & rlwimi. */
1833 static void gen_rlwimi(DisasContext
*ctx
)
1835 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
1836 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
1837 uint32_t sh
= SH(ctx
->opcode
);
1838 uint32_t mb
= MB(ctx
->opcode
);
1839 uint32_t me
= ME(ctx
->opcode
);
1841 if (sh
== (31-me
) && mb
<= me
) {
1842 tcg_gen_deposit_tl(t_ra
, t_ra
, t_rs
, sh
, me
- mb
+ 1);
1847 #if defined(TARGET_PPC64)
1851 mask
= MASK(mb
, me
);
1853 t1
= tcg_temp_new();
1854 if (mask
<= 0xffffffffu
) {
1855 TCGv_i32 t0
= tcg_temp_new_i32();
1856 tcg_gen_trunc_tl_i32(t0
, t_rs
);
1857 tcg_gen_rotli_i32(t0
, t0
, sh
);
1858 tcg_gen_extu_i32_tl(t1
, t0
);
1859 tcg_temp_free_i32(t0
);
1861 #if defined(TARGET_PPC64)
1862 tcg_gen_deposit_i64(t1
, t_rs
, t_rs
, 32, 32);
1863 tcg_gen_rotli_i64(t1
, t1
, sh
);
1865 g_assert_not_reached();
1869 tcg_gen_andi_tl(t1
, t1
, mask
);
1870 tcg_gen_andi_tl(t_ra
, t_ra
, ~mask
);
1871 tcg_gen_or_tl(t_ra
, t_ra
, t1
);
1874 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1875 gen_set_Rc0(ctx
, t_ra
);
1879 /* rlwinm & rlwinm. */
1880 static void gen_rlwinm(DisasContext
*ctx
)
1882 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
1883 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
1884 int sh
= SH(ctx
->opcode
);
1885 int mb
= MB(ctx
->opcode
);
1886 int me
= ME(ctx
->opcode
);
1887 int len
= me
- mb
+ 1;
1888 int rsh
= (32 - sh
) & 31;
1890 if (sh
!= 0 && len
> 0 && me
== (31 - sh
)) {
1891 tcg_gen_deposit_z_tl(t_ra
, t_rs
, sh
, len
);
1892 } else if (me
== 31 && rsh
+ len
<= 32) {
1893 tcg_gen_extract_tl(t_ra
, t_rs
, rsh
, len
);
1896 #if defined(TARGET_PPC64)
1900 mask
= MASK(mb
, me
);
1902 tcg_gen_andi_tl(t_ra
, t_rs
, mask
);
1903 } else if (mask
<= 0xffffffffu
) {
1904 TCGv_i32 t0
= tcg_temp_new_i32();
1905 tcg_gen_trunc_tl_i32(t0
, t_rs
);
1906 tcg_gen_rotli_i32(t0
, t0
, sh
);
1907 tcg_gen_andi_i32(t0
, t0
, mask
);
1908 tcg_gen_extu_i32_tl(t_ra
, t0
);
1909 tcg_temp_free_i32(t0
);
1911 #if defined(TARGET_PPC64)
1912 tcg_gen_deposit_i64(t_ra
, t_rs
, t_rs
, 32, 32);
1913 tcg_gen_rotli_i64(t_ra
, t_ra
, sh
);
1914 tcg_gen_andi_i64(t_ra
, t_ra
, mask
);
1916 g_assert_not_reached();
1920 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1921 gen_set_Rc0(ctx
, t_ra
);
1925 /* rlwnm & rlwnm. */
1926 static void gen_rlwnm(DisasContext
*ctx
)
1928 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
1929 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
1930 TCGv t_rb
= cpu_gpr
[rB(ctx
->opcode
)];
1931 uint32_t mb
= MB(ctx
->opcode
);
1932 uint32_t me
= ME(ctx
->opcode
);
1935 #if defined(TARGET_PPC64)
1939 mask
= MASK(mb
, me
);
1941 if (mask
<= 0xffffffffu
) {
1942 TCGv_i32 t0
= tcg_temp_new_i32();
1943 TCGv_i32 t1
= tcg_temp_new_i32();
1944 tcg_gen_trunc_tl_i32(t0
, t_rb
);
1945 tcg_gen_trunc_tl_i32(t1
, t_rs
);
1946 tcg_gen_andi_i32(t0
, t0
, 0x1f);
1947 tcg_gen_rotl_i32(t1
, t1
, t0
);
1948 tcg_gen_extu_i32_tl(t_ra
, t1
);
1949 tcg_temp_free_i32(t0
);
1950 tcg_temp_free_i32(t1
);
1952 #if defined(TARGET_PPC64)
1953 TCGv_i64 t0
= tcg_temp_new_i64();
1954 tcg_gen_andi_i64(t0
, t_rb
, 0x1f);
1955 tcg_gen_deposit_i64(t_ra
, t_rs
, t_rs
, 32, 32);
1956 tcg_gen_rotl_i64(t_ra
, t_ra
, t0
);
1957 tcg_temp_free_i64(t0
);
1959 g_assert_not_reached();
1963 tcg_gen_andi_tl(t_ra
, t_ra
, mask
);
1965 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1966 gen_set_Rc0(ctx
, t_ra
);
1970 #if defined(TARGET_PPC64)
1971 #define GEN_PPC64_R2(name, opc1, opc2) \
1972 static void glue(gen_, name##0)(DisasContext *ctx) \
1974 gen_##name(ctx, 0); \
1977 static void glue(gen_, name##1)(DisasContext *ctx) \
1979 gen_##name(ctx, 1); \
1981 #define GEN_PPC64_R4(name, opc1, opc2) \
1982 static void glue(gen_, name##0)(DisasContext *ctx) \
1984 gen_##name(ctx, 0, 0); \
1987 static void glue(gen_, name##1)(DisasContext *ctx) \
1989 gen_##name(ctx, 0, 1); \
1992 static void glue(gen_, name##2)(DisasContext *ctx) \
1994 gen_##name(ctx, 1, 0); \
1997 static void glue(gen_, name##3)(DisasContext *ctx) \
1999 gen_##name(ctx, 1, 1); \
2002 static void gen_rldinm(DisasContext
*ctx
, int mb
, int me
, int sh
)
2004 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2005 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2006 int len
= me
- mb
+ 1;
2007 int rsh
= (64 - sh
) & 63;
2009 if (sh
!= 0 && len
> 0 && me
== (63 - sh
)) {
2010 tcg_gen_deposit_z_tl(t_ra
, t_rs
, sh
, len
);
2011 } else if (me
== 63 && rsh
+ len
<= 64) {
2012 tcg_gen_extract_tl(t_ra
, t_rs
, rsh
, len
);
2014 tcg_gen_rotli_tl(t_ra
, t_rs
, sh
);
2015 tcg_gen_andi_tl(t_ra
, t_ra
, MASK(mb
, me
));
2017 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2018 gen_set_Rc0(ctx
, t_ra
);
2022 /* rldicl - rldicl. */
2023 static inline void gen_rldicl(DisasContext
*ctx
, int mbn
, int shn
)
2027 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2028 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2029 gen_rldinm(ctx
, mb
, 63, sh
);
2031 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
2033 /* rldicr - rldicr. */
2034 static inline void gen_rldicr(DisasContext
*ctx
, int men
, int shn
)
2038 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2039 me
= MB(ctx
->opcode
) | (men
<< 5);
2040 gen_rldinm(ctx
, 0, me
, sh
);
2042 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
2044 /* rldic - rldic. */
2045 static inline void gen_rldic(DisasContext
*ctx
, int mbn
, int shn
)
2049 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2050 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2051 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
2053 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
2055 static void gen_rldnm(DisasContext
*ctx
, int mb
, int me
)
2057 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2058 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2059 TCGv t_rb
= cpu_gpr
[rB(ctx
->opcode
)];
2062 t0
= tcg_temp_new();
2063 tcg_gen_andi_tl(t0
, t_rb
, 0x3f);
2064 tcg_gen_rotl_tl(t_ra
, t_rs
, t0
);
2067 tcg_gen_andi_tl(t_ra
, t_ra
, MASK(mb
, me
));
2068 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2069 gen_set_Rc0(ctx
, t_ra
);
2073 /* rldcl - rldcl. */
2074 static inline void gen_rldcl(DisasContext
*ctx
, int mbn
)
2078 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2079 gen_rldnm(ctx
, mb
, 63);
2081 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
2083 /* rldcr - rldcr. */
2084 static inline void gen_rldcr(DisasContext
*ctx
, int men
)
2088 me
= MB(ctx
->opcode
) | (men
<< 5);
2089 gen_rldnm(ctx
, 0, me
);
2091 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
2093 /* rldimi - rldimi. */
2094 static void gen_rldimi(DisasContext
*ctx
, int mbn
, int shn
)
2096 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2097 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2098 uint32_t sh
= SH(ctx
->opcode
) | (shn
<< 5);
2099 uint32_t mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2100 uint32_t me
= 63 - sh
;
2103 tcg_gen_deposit_tl(t_ra
, t_ra
, t_rs
, sh
, me
- mb
+ 1);
2105 target_ulong mask
= MASK(mb
, me
);
2106 TCGv t1
= tcg_temp_new();
2108 tcg_gen_rotli_tl(t1
, t_rs
, sh
);
2109 tcg_gen_andi_tl(t1
, t1
, mask
);
2110 tcg_gen_andi_tl(t_ra
, t_ra
, ~mask
);
2111 tcg_gen_or_tl(t_ra
, t_ra
, t1
);
2114 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2115 gen_set_Rc0(ctx
, t_ra
);
2118 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
2121 /*** Integer shift ***/
2124 static void gen_slw(DisasContext
*ctx
)
2128 t0
= tcg_temp_new();
2129 /* AND rS with a mask that is 0 when rB >= 0x20 */
2130 #if defined(TARGET_PPC64)
2131 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
2132 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2134 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
2135 tcg_gen_sari_tl(t0
, t0
, 0x1f);
2137 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2138 t1
= tcg_temp_new();
2139 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
2140 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2143 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
2144 if (unlikely(Rc(ctx
->opcode
) != 0))
2145 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2149 static void gen_sraw(DisasContext
*ctx
)
2151 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
2152 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2153 if (unlikely(Rc(ctx
->opcode
) != 0))
2154 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2157 /* srawi & srawi. */
2158 static void gen_srawi(DisasContext
*ctx
)
2160 int sh
= SH(ctx
->opcode
);
2161 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
2162 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
2164 tcg_gen_ext32s_tl(dst
, src
);
2165 tcg_gen_movi_tl(cpu_ca
, 0);
2166 if (is_isa300(ctx
)) {
2167 tcg_gen_movi_tl(cpu_ca32
, 0);
2171 tcg_gen_ext32s_tl(dst
, src
);
2172 tcg_gen_andi_tl(cpu_ca
, dst
, (1ULL << sh
) - 1);
2173 t0
= tcg_temp_new();
2174 tcg_gen_sari_tl(t0
, dst
, TARGET_LONG_BITS
- 1);
2175 tcg_gen_and_tl(cpu_ca
, cpu_ca
, t0
);
2177 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_ca
, cpu_ca
, 0);
2178 if (is_isa300(ctx
)) {
2179 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
2181 tcg_gen_sari_tl(dst
, dst
, sh
);
2183 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2184 gen_set_Rc0(ctx
, dst
);
2189 static void gen_srw(DisasContext
*ctx
)
2193 t0
= tcg_temp_new();
2194 /* AND rS with a mask that is 0 when rB >= 0x20 */
2195 #if defined(TARGET_PPC64)
2196 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
2197 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2199 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
2200 tcg_gen_sari_tl(t0
, t0
, 0x1f);
2202 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2203 tcg_gen_ext32u_tl(t0
, t0
);
2204 t1
= tcg_temp_new();
2205 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
2206 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2209 if (unlikely(Rc(ctx
->opcode
) != 0))
2210 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2213 #if defined(TARGET_PPC64)
2215 static void gen_sld(DisasContext
*ctx
)
2219 t0
= tcg_temp_new();
2220 /* AND rS with a mask that is 0 when rB >= 0x40 */
2221 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
2222 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2223 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2224 t1
= tcg_temp_new();
2225 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
2226 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2229 if (unlikely(Rc(ctx
->opcode
) != 0))
2230 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2234 static void gen_srad(DisasContext
*ctx
)
2236 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
2237 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2238 if (unlikely(Rc(ctx
->opcode
) != 0))
2239 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2241 /* sradi & sradi. */
2242 static inline void gen_sradi(DisasContext
*ctx
, int n
)
2244 int sh
= SH(ctx
->opcode
) + (n
<< 5);
2245 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
2246 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
2248 tcg_gen_mov_tl(dst
, src
);
2249 tcg_gen_movi_tl(cpu_ca
, 0);
2250 if (is_isa300(ctx
)) {
2251 tcg_gen_movi_tl(cpu_ca32
, 0);
2255 tcg_gen_andi_tl(cpu_ca
, src
, (1ULL << sh
) - 1);
2256 t0
= tcg_temp_new();
2257 tcg_gen_sari_tl(t0
, src
, TARGET_LONG_BITS
- 1);
2258 tcg_gen_and_tl(cpu_ca
, cpu_ca
, t0
);
2260 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_ca
, cpu_ca
, 0);
2261 if (is_isa300(ctx
)) {
2262 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
2264 tcg_gen_sari_tl(dst
, src
, sh
);
2266 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2267 gen_set_Rc0(ctx
, dst
);
2271 static void gen_sradi0(DisasContext
*ctx
)
2276 static void gen_sradi1(DisasContext
*ctx
)
2281 /* extswsli & extswsli. */
2282 static inline void gen_extswsli(DisasContext
*ctx
, int n
)
2284 int sh
= SH(ctx
->opcode
) + (n
<< 5);
2285 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
2286 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
2288 tcg_gen_ext32s_tl(dst
, src
);
2289 tcg_gen_shli_tl(dst
, dst
, sh
);
2290 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2291 gen_set_Rc0(ctx
, dst
);
2295 static void gen_extswsli0(DisasContext
*ctx
)
2297 gen_extswsli(ctx
, 0);
2300 static void gen_extswsli1(DisasContext
*ctx
)
2302 gen_extswsli(ctx
, 1);
2306 static void gen_srd(DisasContext
*ctx
)
2310 t0
= tcg_temp_new();
2311 /* AND rS with a mask that is 0 when rB >= 0x40 */
2312 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
2313 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2314 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2315 t1
= tcg_temp_new();
2316 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
2317 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2320 if (unlikely(Rc(ctx
->opcode
) != 0))
2321 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2325 /*** Addressing modes ***/
2326 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2327 static inline void gen_addr_imm_index(DisasContext
*ctx
, TCGv EA
,
2330 target_long simm
= SIMM(ctx
->opcode
);
2333 if (rA(ctx
->opcode
) == 0) {
2334 if (NARROW_MODE(ctx
)) {
2335 simm
= (uint32_t)simm
;
2337 tcg_gen_movi_tl(EA
, simm
);
2338 } else if (likely(simm
!= 0)) {
2339 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
2340 if (NARROW_MODE(ctx
)) {
2341 tcg_gen_ext32u_tl(EA
, EA
);
2344 if (NARROW_MODE(ctx
)) {
2345 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2347 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2352 static inline void gen_addr_reg_index(DisasContext
*ctx
, TCGv EA
)
2354 if (rA(ctx
->opcode
) == 0) {
2355 if (NARROW_MODE(ctx
)) {
2356 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2358 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2361 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2362 if (NARROW_MODE(ctx
)) {
2363 tcg_gen_ext32u_tl(EA
, EA
);
2368 static inline void gen_addr_register(DisasContext
*ctx
, TCGv EA
)
2370 if (rA(ctx
->opcode
) == 0) {
2371 tcg_gen_movi_tl(EA
, 0);
2372 } else if (NARROW_MODE(ctx
)) {
2373 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2375 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2379 static inline void gen_addr_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
2382 tcg_gen_addi_tl(ret
, arg1
, val
);
2383 if (NARROW_MODE(ctx
)) {
2384 tcg_gen_ext32u_tl(ret
, ret
);
2388 static inline void gen_align_no_le(DisasContext
*ctx
)
2390 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
,
2391 (ctx
->opcode
& 0x03FF0000) | POWERPC_EXCP_ALIGN_LE
);
2394 /*** Integer load ***/
2395 #define DEF_MEMOP(op) ((op) | ctx->default_tcg_memop_mask)
2396 #define BSWAP_MEMOP(op) ((op) | (ctx->default_tcg_memop_mask ^ MO_BSWAP))
2398 #define GEN_QEMU_LOAD_TL(ldop, op) \
2399 static void glue(gen_qemu_, ldop)(DisasContext *ctx, \
2403 tcg_gen_qemu_ld_tl(val, addr, ctx->mem_idx, op); \
2406 GEN_QEMU_LOAD_TL(ld8u
, DEF_MEMOP(MO_UB
))
2407 GEN_QEMU_LOAD_TL(ld16u
, DEF_MEMOP(MO_UW
))
2408 GEN_QEMU_LOAD_TL(ld16s
, DEF_MEMOP(MO_SW
))
2409 GEN_QEMU_LOAD_TL(ld32u
, DEF_MEMOP(MO_UL
))
2410 GEN_QEMU_LOAD_TL(ld32s
, DEF_MEMOP(MO_SL
))
2412 GEN_QEMU_LOAD_TL(ld16ur
, BSWAP_MEMOP(MO_UW
))
2413 GEN_QEMU_LOAD_TL(ld32ur
, BSWAP_MEMOP(MO_UL
))
2415 #define GEN_QEMU_LOAD_64(ldop, op) \
2416 static void glue(gen_qemu_, glue(ldop, _i64))(DisasContext *ctx, \
2420 tcg_gen_qemu_ld_i64(val, addr, ctx->mem_idx, op); \
2423 GEN_QEMU_LOAD_64(ld8u
, DEF_MEMOP(MO_UB
))
2424 GEN_QEMU_LOAD_64(ld16u
, DEF_MEMOP(MO_UW
))
2425 GEN_QEMU_LOAD_64(ld32u
, DEF_MEMOP(MO_UL
))
2426 GEN_QEMU_LOAD_64(ld32s
, DEF_MEMOP(MO_SL
))
2427 GEN_QEMU_LOAD_64(ld64
, DEF_MEMOP(MO_Q
))
2429 #if defined(TARGET_PPC64)
2430 GEN_QEMU_LOAD_64(ld64ur
, BSWAP_MEMOP(MO_Q
))
2433 #define GEN_QEMU_STORE_TL(stop, op) \
2434 static void glue(gen_qemu_, stop)(DisasContext *ctx, \
2438 tcg_gen_qemu_st_tl(val, addr, ctx->mem_idx, op); \
2441 GEN_QEMU_STORE_TL(st8
, DEF_MEMOP(MO_UB
))
2442 GEN_QEMU_STORE_TL(st16
, DEF_MEMOP(MO_UW
))
2443 GEN_QEMU_STORE_TL(st32
, DEF_MEMOP(MO_UL
))
2445 GEN_QEMU_STORE_TL(st16r
, BSWAP_MEMOP(MO_UW
))
2446 GEN_QEMU_STORE_TL(st32r
, BSWAP_MEMOP(MO_UL
))
2448 #define GEN_QEMU_STORE_64(stop, op) \
2449 static void glue(gen_qemu_, glue(stop, _i64))(DisasContext *ctx, \
2453 tcg_gen_qemu_st_i64(val, addr, ctx->mem_idx, op); \
2456 GEN_QEMU_STORE_64(st8
, DEF_MEMOP(MO_UB
))
2457 GEN_QEMU_STORE_64(st16
, DEF_MEMOP(MO_UW
))
2458 GEN_QEMU_STORE_64(st32
, DEF_MEMOP(MO_UL
))
2459 GEN_QEMU_STORE_64(st64
, DEF_MEMOP(MO_Q
))
2461 #if defined(TARGET_PPC64)
2462 GEN_QEMU_STORE_64(st64r
, BSWAP_MEMOP(MO_Q
))
2465 #define GEN_LD(name, ldop, opc, type) \
2466 static void glue(gen_, name)(DisasContext *ctx) \
2469 gen_set_access_type(ctx, ACCESS_INT); \
2470 EA = tcg_temp_new(); \
2471 gen_addr_imm_index(ctx, EA, 0); \
2472 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2473 tcg_temp_free(EA); \
2476 #define GEN_LDU(name, ldop, opc, type) \
2477 static void glue(gen_, name##u)(DisasContext *ctx) \
2480 if (unlikely(rA(ctx->opcode) == 0 || \
2481 rA(ctx->opcode) == rD(ctx->opcode))) { \
2482 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2485 gen_set_access_type(ctx, ACCESS_INT); \
2486 EA = tcg_temp_new(); \
2487 if (type == PPC_64B) \
2488 gen_addr_imm_index(ctx, EA, 0x03); \
2490 gen_addr_imm_index(ctx, EA, 0); \
2491 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2492 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2493 tcg_temp_free(EA); \
2496 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2497 static void glue(gen_, name##ux)(DisasContext *ctx) \
2500 if (unlikely(rA(ctx->opcode) == 0 || \
2501 rA(ctx->opcode) == rD(ctx->opcode))) { \
2502 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2505 gen_set_access_type(ctx, ACCESS_INT); \
2506 EA = tcg_temp_new(); \
2507 gen_addr_reg_index(ctx, EA); \
2508 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2509 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2510 tcg_temp_free(EA); \
2513 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
2514 static void glue(gen_, name##x)(DisasContext *ctx) \
2518 gen_set_access_type(ctx, ACCESS_INT); \
2519 EA = tcg_temp_new(); \
2520 gen_addr_reg_index(ctx, EA); \
2521 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2522 tcg_temp_free(EA); \
2525 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2526 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2528 #define GEN_LDX_HVRM(name, ldop, opc2, opc3, type) \
2529 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
2531 #define GEN_LDS(name, ldop, op, type) \
2532 GEN_LD(name, ldop, op | 0x20, type); \
2533 GEN_LDU(name, ldop, op | 0x21, type); \
2534 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2535 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2537 /* lbz lbzu lbzux lbzx */
2538 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
);
2539 /* lha lhau lhaux lhax */
2540 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
);
2541 /* lhz lhzu lhzux lhzx */
2542 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
);
2543 /* lwz lwzu lwzux lwzx */
2544 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
);
2546 #define GEN_LDEPX(name, ldop, opc2, opc3) \
2547 static void glue(gen_, name##epx)(DisasContext *ctx) \
2551 gen_set_access_type(ctx, ACCESS_INT); \
2552 EA = tcg_temp_new(); \
2553 gen_addr_reg_index(ctx, EA); \
2554 tcg_gen_qemu_ld_tl(cpu_gpr[rD(ctx->opcode)], EA, PPC_TLB_EPID_LOAD, ldop);\
2555 tcg_temp_free(EA); \
2558 GEN_LDEPX(lb
, DEF_MEMOP(MO_UB
), 0x1F, 0x02)
2559 GEN_LDEPX(lh
, DEF_MEMOP(MO_UW
), 0x1F, 0x08)
2560 GEN_LDEPX(lw
, DEF_MEMOP(MO_UL
), 0x1F, 0x00)
2561 #if defined(TARGET_PPC64)
2562 GEN_LDEPX(ld
, DEF_MEMOP(MO_Q
), 0x1D, 0x00)
2565 #if defined(TARGET_PPC64)
2567 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
);
2569 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
);
2571 GEN_LDUX(ld
, ld64_i64
, 0x15, 0x01, PPC_64B
);
2573 GEN_LDX(ld
, ld64_i64
, 0x15, 0x00, PPC_64B
);
2575 /* CI load/store variants */
2576 GEN_LDX_HVRM(ldcix
, ld64_i64
, 0x15, 0x1b, PPC_CILDST
)
2577 GEN_LDX_HVRM(lwzcix
, ld32u
, 0x15, 0x15, PPC_CILDST
)
2578 GEN_LDX_HVRM(lhzcix
, ld16u
, 0x15, 0x19, PPC_CILDST
)
2579 GEN_LDX_HVRM(lbzcix
, ld8u
, 0x15, 0x1a, PPC_CILDST
)
2581 static void gen_ld(DisasContext
*ctx
)
2584 if (Rc(ctx
->opcode
)) {
2585 if (unlikely(rA(ctx
->opcode
) == 0 ||
2586 rA(ctx
->opcode
) == rD(ctx
->opcode
))) {
2587 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2591 gen_set_access_type(ctx
, ACCESS_INT
);
2592 EA
= tcg_temp_new();
2593 gen_addr_imm_index(ctx
, EA
, 0x03);
2594 if (ctx
->opcode
& 0x02) {
2595 /* lwa (lwau is undefined) */
2596 gen_qemu_ld32s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2599 gen_qemu_ld64_i64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2601 if (Rc(ctx
->opcode
))
2602 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2607 static void gen_lq(DisasContext
*ctx
)
2612 /* lq is a legal user mode instruction starting in ISA 2.07 */
2613 bool legal_in_user_mode
= (ctx
->insns_flags2
& PPC2_LSQ_ISA207
) != 0;
2614 bool le_is_supported
= (ctx
->insns_flags2
& PPC2_LSQ_ISA207
) != 0;
2616 if (!legal_in_user_mode
&& ctx
->pr
) {
2617 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2621 if (!le_is_supported
&& ctx
->le_mode
) {
2622 gen_align_no_le(ctx
);
2625 ra
= rA(ctx
->opcode
);
2626 rd
= rD(ctx
->opcode
);
2627 if (unlikely((rd
& 1) || rd
== ra
)) {
2628 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2632 gen_set_access_type(ctx
, ACCESS_INT
);
2633 EA
= tcg_temp_new();
2634 gen_addr_imm_index(ctx
, EA
, 0x0F);
2636 /* Note that the low part is always in RD+1, even in LE mode. */
2637 lo
= cpu_gpr
[rd
+ 1];
2640 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
2641 if (HAVE_ATOMIC128
) {
2642 TCGv_i32 oi
= tcg_temp_new_i32();
2644 tcg_gen_movi_i32(oi
, make_memop_idx(MO_LEQ
, ctx
->mem_idx
));
2645 gen_helper_lq_le_parallel(lo
, cpu_env
, EA
, oi
);
2647 tcg_gen_movi_i32(oi
, make_memop_idx(MO_BEQ
, ctx
->mem_idx
));
2648 gen_helper_lq_be_parallel(lo
, cpu_env
, EA
, oi
);
2650 tcg_temp_free_i32(oi
);
2651 tcg_gen_ld_i64(hi
, cpu_env
, offsetof(CPUPPCState
, retxh
));
2653 /* Restart with exclusive lock. */
2654 gen_helper_exit_atomic(cpu_env
);
2655 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2657 } else if (ctx
->le_mode
) {
2658 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_LEQ
);
2659 gen_addr_add(ctx
, EA
, EA
, 8);
2660 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_LEQ
);
2662 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_BEQ
);
2663 gen_addr_add(ctx
, EA
, EA
, 8);
2664 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_BEQ
);
2670 /*** Integer store ***/
2671 #define GEN_ST(name, stop, opc, type) \
2672 static void glue(gen_, name)(DisasContext *ctx) \
2675 gen_set_access_type(ctx, ACCESS_INT); \
2676 EA = tcg_temp_new(); \
2677 gen_addr_imm_index(ctx, EA, 0); \
2678 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2679 tcg_temp_free(EA); \
2682 #define GEN_STU(name, stop, opc, type) \
2683 static void glue(gen_, stop##u)(DisasContext *ctx) \
2686 if (unlikely(rA(ctx->opcode) == 0)) { \
2687 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2690 gen_set_access_type(ctx, ACCESS_INT); \
2691 EA = tcg_temp_new(); \
2692 if (type == PPC_64B) \
2693 gen_addr_imm_index(ctx, EA, 0x03); \
2695 gen_addr_imm_index(ctx, EA, 0); \
2696 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2697 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2698 tcg_temp_free(EA); \
2701 #define GEN_STUX(name, stop, opc2, opc3, type) \
2702 static void glue(gen_, name##ux)(DisasContext *ctx) \
2705 if (unlikely(rA(ctx->opcode) == 0)) { \
2706 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2709 gen_set_access_type(ctx, ACCESS_INT); \
2710 EA = tcg_temp_new(); \
2711 gen_addr_reg_index(ctx, EA); \
2712 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2713 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2714 tcg_temp_free(EA); \
2717 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
2718 static void glue(gen_, name##x)(DisasContext *ctx) \
2722 gen_set_access_type(ctx, ACCESS_INT); \
2723 EA = tcg_temp_new(); \
2724 gen_addr_reg_index(ctx, EA); \
2725 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2726 tcg_temp_free(EA); \
2728 #define GEN_STX(name, stop, opc2, opc3, type) \
2729 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2731 #define GEN_STX_HVRM(name, stop, opc2, opc3, type) \
2732 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
2734 #define GEN_STS(name, stop, op, type) \
2735 GEN_ST(name, stop, op | 0x20, type); \
2736 GEN_STU(name, stop, op | 0x21, type); \
2737 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2738 GEN_STX(name, stop, 0x17, op | 0x00, type)
2740 /* stb stbu stbux stbx */
2741 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
);
2742 /* sth sthu sthux sthx */
2743 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
);
2744 /* stw stwu stwux stwx */
2745 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
);
2747 #define GEN_STEPX(name, stop, opc2, opc3) \
2748 static void glue(gen_, name##epx)(DisasContext *ctx) \
2752 gen_set_access_type(ctx, ACCESS_INT); \
2753 EA = tcg_temp_new(); \
2754 gen_addr_reg_index(ctx, EA); \
2755 tcg_gen_qemu_st_tl( \
2756 cpu_gpr[rD(ctx->opcode)], EA, PPC_TLB_EPID_STORE, stop); \
2757 tcg_temp_free(EA); \
2760 GEN_STEPX(stb
, DEF_MEMOP(MO_UB
), 0x1F, 0x06)
2761 GEN_STEPX(sth
, DEF_MEMOP(MO_UW
), 0x1F, 0x0C)
2762 GEN_STEPX(stw
, DEF_MEMOP(MO_UL
), 0x1F, 0x04)
2763 #if defined(TARGET_PPC64)
2764 GEN_STEPX(std
, DEF_MEMOP(MO_Q
), 0x1d, 0x04)
2767 #if defined(TARGET_PPC64)
2768 GEN_STUX(std
, st64_i64
, 0x15, 0x05, PPC_64B
);
2769 GEN_STX(std
, st64_i64
, 0x15, 0x04, PPC_64B
);
2770 GEN_STX_HVRM(stdcix
, st64_i64
, 0x15, 0x1f, PPC_CILDST
)
2771 GEN_STX_HVRM(stwcix
, st32
, 0x15, 0x1c, PPC_CILDST
)
2772 GEN_STX_HVRM(sthcix
, st16
, 0x15, 0x1d, PPC_CILDST
)
2773 GEN_STX_HVRM(stbcix
, st8
, 0x15, 0x1e, PPC_CILDST
)
2775 static void gen_std(DisasContext
*ctx
)
2780 rs
= rS(ctx
->opcode
);
2781 if ((ctx
->opcode
& 0x3) == 0x2) { /* stq */
2782 bool legal_in_user_mode
= (ctx
->insns_flags2
& PPC2_LSQ_ISA207
) != 0;
2783 bool le_is_supported
= (ctx
->insns_flags2
& PPC2_LSQ_ISA207
) != 0;
2786 if (!(ctx
->insns_flags
& PPC_64BX
)) {
2787 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2790 if (!legal_in_user_mode
&& ctx
->pr
) {
2791 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2795 if (!le_is_supported
&& ctx
->le_mode
) {
2796 gen_align_no_le(ctx
);
2800 if (unlikely(rs
& 1)) {
2801 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2804 gen_set_access_type(ctx
, ACCESS_INT
);
2805 EA
= tcg_temp_new();
2806 gen_addr_imm_index(ctx
, EA
, 0x03);
2808 /* Note that the low part is always in RS+1, even in LE mode. */
2809 lo
= cpu_gpr
[rs
+ 1];
2812 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
2813 if (HAVE_ATOMIC128
) {
2814 TCGv_i32 oi
= tcg_temp_new_i32();
2816 tcg_gen_movi_i32(oi
, make_memop_idx(MO_LEQ
, ctx
->mem_idx
));
2817 gen_helper_stq_le_parallel(cpu_env
, EA
, lo
, hi
, oi
);
2819 tcg_gen_movi_i32(oi
, make_memop_idx(MO_BEQ
, ctx
->mem_idx
));
2820 gen_helper_stq_be_parallel(cpu_env
, EA
, lo
, hi
, oi
);
2822 tcg_temp_free_i32(oi
);
2824 /* Restart with exclusive lock. */
2825 gen_helper_exit_atomic(cpu_env
);
2826 ctx
->base
.is_jmp
= DISAS_NORETURN
;
2828 } else if (ctx
->le_mode
) {
2829 tcg_gen_qemu_st_i64(lo
, EA
, ctx
->mem_idx
, MO_LEQ
);
2830 gen_addr_add(ctx
, EA
, EA
, 8);
2831 tcg_gen_qemu_st_i64(hi
, EA
, ctx
->mem_idx
, MO_LEQ
);
2833 tcg_gen_qemu_st_i64(hi
, EA
, ctx
->mem_idx
, MO_BEQ
);
2834 gen_addr_add(ctx
, EA
, EA
, 8);
2835 tcg_gen_qemu_st_i64(lo
, EA
, ctx
->mem_idx
, MO_BEQ
);
2840 if (Rc(ctx
->opcode
)) {
2841 if (unlikely(rA(ctx
->opcode
) == 0)) {
2842 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2846 gen_set_access_type(ctx
, ACCESS_INT
);
2847 EA
= tcg_temp_new();
2848 gen_addr_imm_index(ctx
, EA
, 0x03);
2849 gen_qemu_st64_i64(ctx
, cpu_gpr
[rs
], EA
);
2850 if (Rc(ctx
->opcode
))
2851 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2856 /*** Integer load and store with byte reverse ***/
2859 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
2862 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
2864 #if defined(TARGET_PPC64)
2866 GEN_LDX_E(ldbr
, ld64ur_i64
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
, CHK_NONE
);
2868 GEN_STX_E(stdbr
, st64r_i64
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
, CHK_NONE
);
2869 #endif /* TARGET_PPC64 */
2872 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
2874 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
2876 /*** Integer load and store multiple ***/
2879 static void gen_lmw(DisasContext
*ctx
)
2885 gen_align_no_le(ctx
);
2888 gen_set_access_type(ctx
, ACCESS_INT
);
2889 t0
= tcg_temp_new();
2890 t1
= tcg_const_i32(rD(ctx
->opcode
));
2891 gen_addr_imm_index(ctx
, t0
, 0);
2892 gen_helper_lmw(cpu_env
, t0
, t1
);
2894 tcg_temp_free_i32(t1
);
2898 static void gen_stmw(DisasContext
*ctx
)
2904 gen_align_no_le(ctx
);
2907 gen_set_access_type(ctx
, ACCESS_INT
);
2908 t0
= tcg_temp_new();
2909 t1
= tcg_const_i32(rS(ctx
->opcode
));
2910 gen_addr_imm_index(ctx
, t0
, 0);
2911 gen_helper_stmw(cpu_env
, t0
, t1
);
2913 tcg_temp_free_i32(t1
);
2916 /*** Integer load and store strings ***/
2919 /* PowerPC32 specification says we must generate an exception if
2920 * rA is in the range of registers to be loaded.
2921 * In an other hand, IBM says this is valid, but rA won't be loaded.
2922 * For now, I'll follow the spec...
2924 static void gen_lswi(DisasContext
*ctx
)
2928 int nb
= NB(ctx
->opcode
);
2929 int start
= rD(ctx
->opcode
);
2930 int ra
= rA(ctx
->opcode
);
2934 gen_align_no_le(ctx
);
2939 nr
= DIV_ROUND_UP(nb
, 4);
2940 if (unlikely(lsw_reg_in_range(start
, nr
, ra
))) {
2941 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
2944 gen_set_access_type(ctx
, ACCESS_INT
);
2945 t0
= tcg_temp_new();
2946 gen_addr_register(ctx
, t0
);
2947 t1
= tcg_const_i32(nb
);
2948 t2
= tcg_const_i32(start
);
2949 gen_helper_lsw(cpu_env
, t0
, t1
, t2
);
2951 tcg_temp_free_i32(t1
);
2952 tcg_temp_free_i32(t2
);
2956 static void gen_lswx(DisasContext
*ctx
)
2959 TCGv_i32 t1
, t2
, t3
;
2962 gen_align_no_le(ctx
);
2965 gen_set_access_type(ctx
, ACCESS_INT
);
2966 t0
= tcg_temp_new();
2967 gen_addr_reg_index(ctx
, t0
);
2968 t1
= tcg_const_i32(rD(ctx
->opcode
));
2969 t2
= tcg_const_i32(rA(ctx
->opcode
));
2970 t3
= tcg_const_i32(rB(ctx
->opcode
));
2971 gen_helper_lswx(cpu_env
, t0
, t1
, t2
, t3
);
2973 tcg_temp_free_i32(t1
);
2974 tcg_temp_free_i32(t2
);
2975 tcg_temp_free_i32(t3
);
2979 static void gen_stswi(DisasContext
*ctx
)
2983 int nb
= NB(ctx
->opcode
);
2986 gen_align_no_le(ctx
);
2989 gen_set_access_type(ctx
, ACCESS_INT
);
2990 t0
= tcg_temp_new();
2991 gen_addr_register(ctx
, t0
);
2994 t1
= tcg_const_i32(nb
);
2995 t2
= tcg_const_i32(rS(ctx
->opcode
));
2996 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
2998 tcg_temp_free_i32(t1
);
2999 tcg_temp_free_i32(t2
);
3003 static void gen_stswx(DisasContext
*ctx
)
3009 gen_align_no_le(ctx
);
3012 gen_set_access_type(ctx
, ACCESS_INT
);
3013 t0
= tcg_temp_new();
3014 gen_addr_reg_index(ctx
, t0
);
3015 t1
= tcg_temp_new_i32();
3016 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
3017 tcg_gen_andi_i32(t1
, t1
, 0x7F);
3018 t2
= tcg_const_i32(rS(ctx
->opcode
));
3019 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
3021 tcg_temp_free_i32(t1
);
3022 tcg_temp_free_i32(t2
);
3025 /*** Memory synchronisation ***/
3027 static void gen_eieio(DisasContext
*ctx
)
3029 TCGBar bar
= TCG_MO_LD_ST
;
3032 * POWER9 has a eieio instruction variant using bit 6 as a hint to
3033 * tell the CPU it is a store-forwarding barrier.
3035 if (ctx
->opcode
& 0x2000000) {
3037 * ISA says that "Reserved fields in instructions are ignored
3038 * by the processor". So ignore the bit 6 on non-POWER9 CPU but
3039 * as this is not an instruction software should be using,
3040 * complain to the user.
3042 if (!(ctx
->insns_flags2
& PPC2_ISA300
)) {
3043 qemu_log_mask(LOG_GUEST_ERROR
, "invalid eieio using bit 6 at @"
3044 TARGET_FMT_lx
"\n", ctx
->base
.pc_next
- 4);
3050 tcg_gen_mb(bar
| TCG_BAR_SC
);
3053 #if !defined(CONFIG_USER_ONLY)
3054 static inline void gen_check_tlb_flush(DisasContext
*ctx
, bool global
)
3059 if (!ctx
->lazy_tlb_flush
) {
3062 l
= gen_new_label();
3063 t
= tcg_temp_new_i32();
3064 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUPPCState
, tlb_need_flush
));
3065 tcg_gen_brcondi_i32(TCG_COND_EQ
, t
, 0, l
);
3067 gen_helper_check_tlb_flush_global(cpu_env
);
3069 gen_helper_check_tlb_flush_local(cpu_env
);
3072 tcg_temp_free_i32(t
);
3075 static inline void gen_check_tlb_flush(DisasContext
*ctx
, bool global
) { }
3079 static void gen_isync(DisasContext
*ctx
)
3082 * We need to check for a pending TLB flush. This can only happen in
3083 * kernel mode however so check MSR_PR
3086 gen_check_tlb_flush(ctx
, false);
3088 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_SC
);
3089 gen_stop_exception(ctx
);
3092 #define MEMOP_GET_SIZE(x) (1 << ((x) & MO_SIZE))
3094 static void gen_load_locked(DisasContext
*ctx
, TCGMemOp memop
)
3096 TCGv gpr
= cpu_gpr
[rD(ctx
->opcode
)];
3097 TCGv t0
= tcg_temp_new();
3099 gen_set_access_type(ctx
, ACCESS_RES
);
3100 gen_addr_reg_index(ctx
, t0
);
3101 tcg_gen_qemu_ld_tl(gpr
, t0
, ctx
->mem_idx
, memop
| MO_ALIGN
);
3102 tcg_gen_mov_tl(cpu_reserve
, t0
);
3103 tcg_gen_mov_tl(cpu_reserve_val
, gpr
);
3104 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_LDAQ
);
3108 #define LARX(name, memop) \
3109 static void gen_##name(DisasContext *ctx) \
3111 gen_load_locked(ctx, memop); \
3115 LARX(lbarx
, DEF_MEMOP(MO_UB
))
3116 LARX(lharx
, DEF_MEMOP(MO_UW
))
3117 LARX(lwarx
, DEF_MEMOP(MO_UL
))
3119 static void gen_fetch_inc_conditional(DisasContext
*ctx
, TCGMemOp memop
,
3120 TCGv EA
, TCGCond cond
, int addend
)
3122 TCGv t
= tcg_temp_new();
3123 TCGv t2
= tcg_temp_new();
3124 TCGv u
= tcg_temp_new();
3126 tcg_gen_qemu_ld_tl(t
, EA
, ctx
->mem_idx
, memop
);
3127 tcg_gen_addi_tl(t2
, EA
, MEMOP_GET_SIZE(memop
));
3128 tcg_gen_qemu_ld_tl(t2
, t2
, ctx
->mem_idx
, memop
);
3129 tcg_gen_addi_tl(u
, t
, addend
);
3131 /* E.g. for fetch and increment bounded... */
3132 /* mem(EA,s) = (t != t2 ? u = t + 1 : t) */
3133 tcg_gen_movcond_tl(cond
, u
, t
, t2
, u
, t
);
3134 tcg_gen_qemu_st_tl(u
, EA
, ctx
->mem_idx
, memop
);
3136 /* RT = (t != t2 ? t : u = 1<<(s*8-1)) */
3137 tcg_gen_movi_tl(u
, 1 << (MEMOP_GET_SIZE(memop
) * 8 - 1));
3138 tcg_gen_movcond_tl(cond
, cpu_gpr
[rD(ctx
->opcode
)], t
, t2
, t
, u
);
3145 static void gen_ld_atomic(DisasContext
*ctx
, TCGMemOp memop
)
3147 uint32_t gpr_FC
= FC(ctx
->opcode
);
3148 TCGv EA
= tcg_temp_new();
3149 int rt
= rD(ctx
->opcode
);
3153 gen_addr_register(ctx
, EA
);
3155 src
= cpu_gpr
[(rt
+ 1) & 31];
3157 need_serial
= false;
3160 case 0: /* Fetch and add */
3161 tcg_gen_atomic_fetch_add_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3163 case 1: /* Fetch and xor */
3164 tcg_gen_atomic_fetch_xor_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3166 case 2: /* Fetch and or */
3167 tcg_gen_atomic_fetch_or_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3169 case 3: /* Fetch and 'and' */
3170 tcg_gen_atomic_fetch_and_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3172 case 4: /* Fetch and max unsigned */
3173 tcg_gen_atomic_fetch_umax_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3175 case 5: /* Fetch and max signed */
3176 tcg_gen_atomic_fetch_smax_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3178 case 6: /* Fetch and min unsigned */
3179 tcg_gen_atomic_fetch_umin_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3181 case 7: /* Fetch and min signed */
3182 tcg_gen_atomic_fetch_smin_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3185 tcg_gen_atomic_xchg_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3188 case 16: /* Compare and swap not equal */
3189 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3192 TCGv t0
= tcg_temp_new();
3193 TCGv t1
= tcg_temp_new();
3195 tcg_gen_qemu_ld_tl(t0
, EA
, ctx
->mem_idx
, memop
);
3196 if ((memop
& MO_SIZE
) == MO_64
|| TARGET_LONG_BITS
== 32) {
3197 tcg_gen_mov_tl(t1
, src
);
3199 tcg_gen_ext32u_tl(t1
, src
);
3201 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t0
, t1
,
3202 cpu_gpr
[(rt
+ 2) & 31], t0
);
3203 tcg_gen_qemu_st_tl(t1
, EA
, ctx
->mem_idx
, memop
);
3204 tcg_gen_mov_tl(dst
, t0
);
3211 case 24: /* Fetch and increment bounded */
3212 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3215 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_NE
, 1);
3218 case 25: /* Fetch and increment equal */
3219 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3222 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_EQ
, 1);
3225 case 28: /* Fetch and decrement bounded */
3226 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3229 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_NE
, -1);
3234 /* invoke data storage error handler */
3235 gen_exception_err(ctx
, POWERPC_EXCP_DSI
, POWERPC_EXCP_INVAL
);
3240 /* Restart with exclusive lock. */
3241 gen_helper_exit_atomic(cpu_env
);
3242 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3246 static void gen_lwat(DisasContext
*ctx
)
3248 gen_ld_atomic(ctx
, DEF_MEMOP(MO_UL
));
3252 static void gen_ldat(DisasContext
*ctx
)
3254 gen_ld_atomic(ctx
, DEF_MEMOP(MO_Q
));
3258 static void gen_st_atomic(DisasContext
*ctx
, TCGMemOp memop
)
3260 uint32_t gpr_FC
= FC(ctx
->opcode
);
3261 TCGv EA
= tcg_temp_new();
3264 gen_addr_register(ctx
, EA
);
3265 src
= cpu_gpr
[rD(ctx
->opcode
)];
3266 discard
= tcg_temp_new();
3270 case 0: /* add and Store */
3271 tcg_gen_atomic_add_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3273 case 1: /* xor and Store */
3274 tcg_gen_atomic_xor_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3276 case 2: /* Or and Store */
3277 tcg_gen_atomic_or_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3279 case 3: /* 'and' and Store */
3280 tcg_gen_atomic_and_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3282 case 4: /* Store max unsigned */
3283 tcg_gen_atomic_umax_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3285 case 5: /* Store max signed */
3286 tcg_gen_atomic_smax_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3288 case 6: /* Store min unsigned */
3289 tcg_gen_atomic_umin_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3291 case 7: /* Store min signed */
3292 tcg_gen_atomic_smin_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3294 case 24: /* Store twin */
3295 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3296 /* Restart with exclusive lock. */
3297 gen_helper_exit_atomic(cpu_env
);
3298 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3300 TCGv t
= tcg_temp_new();
3301 TCGv t2
= tcg_temp_new();
3302 TCGv s
= tcg_temp_new();
3303 TCGv s2
= tcg_temp_new();
3304 TCGv ea_plus_s
= tcg_temp_new();
3306 tcg_gen_qemu_ld_tl(t
, EA
, ctx
->mem_idx
, memop
);
3307 tcg_gen_addi_tl(ea_plus_s
, EA
, MEMOP_GET_SIZE(memop
));
3308 tcg_gen_qemu_ld_tl(t2
, ea_plus_s
, ctx
->mem_idx
, memop
);
3309 tcg_gen_movcond_tl(TCG_COND_EQ
, s
, t
, t2
, src
, t
);
3310 tcg_gen_movcond_tl(TCG_COND_EQ
, s2
, t
, t2
, src
, t2
);
3311 tcg_gen_qemu_st_tl(s
, EA
, ctx
->mem_idx
, memop
);
3312 tcg_gen_qemu_st_tl(s2
, ea_plus_s
, ctx
->mem_idx
, memop
);
3314 tcg_temp_free(ea_plus_s
);
3322 /* invoke data storage error handler */
3323 gen_exception_err(ctx
, POWERPC_EXCP_DSI
, POWERPC_EXCP_INVAL
);
3325 tcg_temp_free(discard
);
3329 static void gen_stwat(DisasContext
*ctx
)
3331 gen_st_atomic(ctx
, DEF_MEMOP(MO_UL
));
3335 static void gen_stdat(DisasContext
*ctx
)
3337 gen_st_atomic(ctx
, DEF_MEMOP(MO_Q
));
3341 static void gen_conditional_store(DisasContext
*ctx
, TCGMemOp memop
)
3343 TCGLabel
*l1
= gen_new_label();
3344 TCGLabel
*l2
= gen_new_label();
3345 TCGv t0
= tcg_temp_new();
3346 int reg
= rS(ctx
->opcode
);
3348 gen_set_access_type(ctx
, ACCESS_RES
);
3349 gen_addr_reg_index(ctx
, t0
);
3350 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3353 t0
= tcg_temp_new();
3354 tcg_gen_atomic_cmpxchg_tl(t0
, cpu_reserve
, cpu_reserve_val
,
3355 cpu_gpr
[reg
], ctx
->mem_idx
,
3356 DEF_MEMOP(memop
) | MO_ALIGN
);
3357 tcg_gen_setcond_tl(TCG_COND_EQ
, t0
, t0
, cpu_reserve_val
);
3358 tcg_gen_shli_tl(t0
, t0
, CRF_EQ_BIT
);
3359 tcg_gen_or_tl(t0
, t0
, cpu_so
);
3360 tcg_gen_trunc_tl_i32(cpu_crf
[0], t0
);
3366 /* Address mismatch implies failure. But we still need to provide the
3367 memory barrier semantics of the instruction. */
3368 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_STRL
);
3369 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
3372 tcg_gen_movi_tl(cpu_reserve
, -1);
3375 #define STCX(name, memop) \
3376 static void gen_##name(DisasContext *ctx) \
3378 gen_conditional_store(ctx, memop); \
3381 STCX(stbcx_
, DEF_MEMOP(MO_UB
))
3382 STCX(sthcx_
, DEF_MEMOP(MO_UW
))
3383 STCX(stwcx_
, DEF_MEMOP(MO_UL
))
3385 #if defined(TARGET_PPC64)
3387 LARX(ldarx
, DEF_MEMOP(MO_Q
))
3389 STCX(stdcx_
, DEF_MEMOP(MO_Q
))
3392 static void gen_lqarx(DisasContext
*ctx
)
3394 int rd
= rD(ctx
->opcode
);
3397 if (unlikely((rd
& 1) || (rd
== rA(ctx
->opcode
)) ||
3398 (rd
== rB(ctx
->opcode
)))) {
3399 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3403 gen_set_access_type(ctx
, ACCESS_RES
);
3404 EA
= tcg_temp_new();
3405 gen_addr_reg_index(ctx
, EA
);
3407 /* Note that the low part is always in RD+1, even in LE mode. */
3408 lo
= cpu_gpr
[rd
+ 1];
3411 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3412 if (HAVE_ATOMIC128
) {
3413 TCGv_i32 oi
= tcg_temp_new_i32();
3415 tcg_gen_movi_i32(oi
, make_memop_idx(MO_LEQ
| MO_ALIGN_16
,
3417 gen_helper_lq_le_parallel(lo
, cpu_env
, EA
, oi
);
3419 tcg_gen_movi_i32(oi
, make_memop_idx(MO_BEQ
| MO_ALIGN_16
,
3421 gen_helper_lq_be_parallel(lo
, cpu_env
, EA
, oi
);
3423 tcg_temp_free_i32(oi
);
3424 tcg_gen_ld_i64(hi
, cpu_env
, offsetof(CPUPPCState
, retxh
));
3426 /* Restart with exclusive lock. */
3427 gen_helper_exit_atomic(cpu_env
);
3428 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3432 } else if (ctx
->le_mode
) {
3433 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_LEQ
| MO_ALIGN_16
);
3434 tcg_gen_mov_tl(cpu_reserve
, EA
);
3435 gen_addr_add(ctx
, EA
, EA
, 8);
3436 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_LEQ
);
3438 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_BEQ
| MO_ALIGN_16
);
3439 tcg_gen_mov_tl(cpu_reserve
, EA
);
3440 gen_addr_add(ctx
, EA
, EA
, 8);
3441 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_BEQ
);
3445 tcg_gen_st_tl(hi
, cpu_env
, offsetof(CPUPPCState
, reserve_val
));
3446 tcg_gen_st_tl(lo
, cpu_env
, offsetof(CPUPPCState
, reserve_val2
));
3450 static void gen_stqcx_(DisasContext
*ctx
)
3452 int rs
= rS(ctx
->opcode
);
3455 if (unlikely(rs
& 1)) {
3456 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3460 gen_set_access_type(ctx
, ACCESS_RES
);
3461 EA
= tcg_temp_new();
3462 gen_addr_reg_index(ctx
, EA
);
3464 /* Note that the low part is always in RS+1, even in LE mode. */
3465 lo
= cpu_gpr
[rs
+ 1];
3468 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3469 if (HAVE_CMPXCHG128
) {
3470 TCGv_i32 oi
= tcg_const_i32(DEF_MEMOP(MO_Q
) | MO_ALIGN_16
);
3472 gen_helper_stqcx_le_parallel(cpu_crf
[0], cpu_env
,
3475 gen_helper_stqcx_be_parallel(cpu_crf
[0], cpu_env
,
3478 tcg_temp_free_i32(oi
);
3480 /* Restart with exclusive lock. */
3481 gen_helper_exit_atomic(cpu_env
);
3482 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3486 TCGLabel
*lab_fail
= gen_new_label();
3487 TCGLabel
*lab_over
= gen_new_label();
3488 TCGv_i64 t0
= tcg_temp_new_i64();
3489 TCGv_i64 t1
= tcg_temp_new_i64();
3491 tcg_gen_brcond_tl(TCG_COND_NE
, EA
, cpu_reserve
, lab_fail
);
3494 gen_qemu_ld64_i64(ctx
, t0
, cpu_reserve
);
3495 tcg_gen_ld_i64(t1
, cpu_env
, (ctx
->le_mode
3496 ? offsetof(CPUPPCState
, reserve_val2
)
3497 : offsetof(CPUPPCState
, reserve_val
)));
3498 tcg_gen_brcond_i64(TCG_COND_NE
, t0
, t1
, lab_fail
);
3500 tcg_gen_addi_i64(t0
, cpu_reserve
, 8);
3501 gen_qemu_ld64_i64(ctx
, t0
, t0
);
3502 tcg_gen_ld_i64(t1
, cpu_env
, (ctx
->le_mode
3503 ? offsetof(CPUPPCState
, reserve_val
)
3504 : offsetof(CPUPPCState
, reserve_val2
)));
3505 tcg_gen_brcond_i64(TCG_COND_NE
, t0
, t1
, lab_fail
);
3508 gen_qemu_st64_i64(ctx
, ctx
->le_mode
? lo
: hi
, cpu_reserve
);
3509 tcg_gen_addi_i64(t0
, cpu_reserve
, 8);
3510 gen_qemu_st64_i64(ctx
, ctx
->le_mode
? hi
: lo
, t0
);
3512 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
3513 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], CRF_EQ
);
3514 tcg_gen_br(lab_over
);
3516 gen_set_label(lab_fail
);
3517 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
3519 gen_set_label(lab_over
);
3520 tcg_gen_movi_tl(cpu_reserve
, -1);
3521 tcg_temp_free_i64(t0
);
3522 tcg_temp_free_i64(t1
);
3525 #endif /* defined(TARGET_PPC64) */
3528 static void gen_sync(DisasContext
*ctx
)
3530 uint32_t l
= (ctx
->opcode
>> 21) & 3;
3533 * We may need to check for a pending TLB flush.
3535 * We do this on ptesync (l == 2) on ppc64 and any sync pn ppc32.
3537 * Additionally, this can only happen in kernel mode however so
3538 * check MSR_PR as well.
3540 if (((l
== 2) || !(ctx
->insns_flags
& PPC_64B
)) && !ctx
->pr
) {
3541 gen_check_tlb_flush(ctx
, true);
3543 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_SC
);
3547 static void gen_wait(DisasContext
*ctx
)
3549 TCGv_i32 t0
= tcg_const_i32(1);
3550 tcg_gen_st_i32(t0
, cpu_env
,
3551 -offsetof(PowerPCCPU
, env
) + offsetof(CPUState
, halted
));
3552 tcg_temp_free_i32(t0
);
3553 /* Stop translation, as the CPU is supposed to sleep from now */
3554 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3557 #if defined(TARGET_PPC64)
3558 static void gen_doze(DisasContext
*ctx
)
3560 #if defined(CONFIG_USER_ONLY)
3566 t
= tcg_const_i32(PPC_PM_DOZE
);
3567 gen_helper_pminsn(cpu_env
, t
);
3568 tcg_temp_free_i32(t
);
3569 /* Stop translation, as the CPU is supposed to sleep from now */
3570 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3571 #endif /* defined(CONFIG_USER_ONLY) */
3574 static void gen_nap(DisasContext
*ctx
)
3576 #if defined(CONFIG_USER_ONLY)
3582 t
= tcg_const_i32(PPC_PM_NAP
);
3583 gen_helper_pminsn(cpu_env
, t
);
3584 tcg_temp_free_i32(t
);
3585 /* Stop translation, as the CPU is supposed to sleep from now */
3586 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3587 #endif /* defined(CONFIG_USER_ONLY) */
3590 static void gen_stop(DisasContext
*ctx
)
3592 #if defined(CONFIG_USER_ONLY)
3598 t
= tcg_const_i32(PPC_PM_STOP
);
3599 gen_helper_pminsn(cpu_env
, t
);
3600 tcg_temp_free_i32(t
);
3601 /* Stop translation, as the CPU is supposed to sleep from now */
3602 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3603 #endif /* defined(CONFIG_USER_ONLY) */
3606 static void gen_sleep(DisasContext
*ctx
)
3608 #if defined(CONFIG_USER_ONLY)
3614 t
= tcg_const_i32(PPC_PM_SLEEP
);
3615 gen_helper_pminsn(cpu_env
, t
);
3616 tcg_temp_free_i32(t
);
3617 /* Stop translation, as the CPU is supposed to sleep from now */
3618 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3619 #endif /* defined(CONFIG_USER_ONLY) */
3622 static void gen_rvwinkle(DisasContext
*ctx
)
3624 #if defined(CONFIG_USER_ONLY)
3630 t
= tcg_const_i32(PPC_PM_RVWINKLE
);
3631 gen_helper_pminsn(cpu_env
, t
);
3632 tcg_temp_free_i32(t
);
3633 /* Stop translation, as the CPU is supposed to sleep from now */
3634 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
3635 #endif /* defined(CONFIG_USER_ONLY) */
3637 #endif /* #if defined(TARGET_PPC64) */
3639 static inline void gen_update_cfar(DisasContext
*ctx
, target_ulong nip
)
3641 #if defined(TARGET_PPC64)
3643 tcg_gen_movi_tl(cpu_cfar
, nip
);
3647 static inline bool use_goto_tb(DisasContext
*ctx
, target_ulong dest
)
3649 if (unlikely(ctx
->singlestep_enabled
)) {
3653 #ifndef CONFIG_USER_ONLY
3654 return (ctx
->base
.tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
);
3660 static void gen_lookup_and_goto_ptr(DisasContext
*ctx
)
3662 int sse
= ctx
->singlestep_enabled
;
3663 if (unlikely(sse
)) {
3664 if (sse
& GDBSTUB_SINGLE_STEP
) {
3665 gen_debug_exception(ctx
);
3666 } else if (sse
& (CPU_SINGLE_STEP
| CPU_BRANCH_STEP
)) {
3667 uint32_t excp
= gen_prep_dbgex(ctx
);
3668 gen_exception(ctx
, excp
);
3670 tcg_gen_exit_tb(NULL
, 0);
3672 tcg_gen_lookup_and_goto_ptr();
3677 static void gen_goto_tb(DisasContext
*ctx
, int n
, target_ulong dest
)
3679 if (NARROW_MODE(ctx
)) {
3680 dest
= (uint32_t) dest
;
3682 if (use_goto_tb(ctx
, dest
)) {
3684 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3685 tcg_gen_exit_tb(ctx
->base
.tb
, n
);
3687 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3688 gen_lookup_and_goto_ptr(ctx
);
3692 static inline void gen_setlr(DisasContext
*ctx
, target_ulong nip
)
3694 if (NARROW_MODE(ctx
)) {
3695 nip
= (uint32_t)nip
;
3697 tcg_gen_movi_tl(cpu_lr
, nip
);
3701 static void gen_b(DisasContext
*ctx
)
3703 target_ulong li
, target
;
3705 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3706 /* sign extend LI */
3707 li
= LI(ctx
->opcode
);
3708 li
= (li
^ 0x02000000) - 0x02000000;
3709 if (likely(AA(ctx
->opcode
) == 0)) {
3710 target
= ctx
->base
.pc_next
+ li
- 4;
3714 if (LK(ctx
->opcode
)) {
3715 gen_setlr(ctx
, ctx
->base
.pc_next
);
3717 gen_update_cfar(ctx
, ctx
->base
.pc_next
- 4);
3718 gen_goto_tb(ctx
, 0, target
);
3726 static void gen_bcond(DisasContext
*ctx
, int type
)
3728 uint32_t bo
= BO(ctx
->opcode
);
3731 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3733 if (type
== BCOND_LR
|| type
== BCOND_CTR
|| type
== BCOND_TAR
) {
3734 target
= tcg_temp_local_new();
3735 if (type
== BCOND_CTR
)
3736 tcg_gen_mov_tl(target
, cpu_ctr
);
3737 else if (type
== BCOND_TAR
)
3738 gen_load_spr(target
, SPR_TAR
);
3740 tcg_gen_mov_tl(target
, cpu_lr
);
3744 if (LK(ctx
->opcode
))
3745 gen_setlr(ctx
, ctx
->base
.pc_next
);
3746 l1
= gen_new_label();
3747 if ((bo
& 0x4) == 0) {
3748 /* Decrement and test CTR */
3749 TCGv temp
= tcg_temp_new();
3751 if (type
== BCOND_CTR
) {
3753 * All ISAs up to v3 describe this form of bcctr as invalid but
3754 * some processors, ie. 64-bit server processors compliant with
3755 * arch 2.x, do implement a "test and decrement" logic instead,
3756 * as described in their respective UMs. This logic involves CTR
3757 * to act as both the branch target and a counter, which makes
3758 * it basically useless and thus never used in real code.
3760 * This form was hence chosen to trigger extra micro-architectural
3761 * side-effect on real HW needed for the Spectre v2 workaround.
3762 * It is up to guests that implement such workaround, ie. linux, to
3763 * use this form in a way it just triggers the side-effect without
3764 * doing anything else harmful.
3766 if (unlikely(!is_book3s_arch2x(ctx
))) {
3767 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3768 tcg_temp_free(temp
);
3769 tcg_temp_free(target
);
3773 if (NARROW_MODE(ctx
)) {
3774 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3776 tcg_gen_mov_tl(temp
, cpu_ctr
);
3779 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3781 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3783 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3785 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3786 if (NARROW_MODE(ctx
)) {
3787 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3789 tcg_gen_mov_tl(temp
, cpu_ctr
);
3792 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3794 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3797 tcg_temp_free(temp
);
3799 if ((bo
& 0x10) == 0) {
3801 uint32_t bi
= BI(ctx
->opcode
);
3802 uint32_t mask
= 0x08 >> (bi
& 0x03);
3803 TCGv_i32 temp
= tcg_temp_new_i32();
3806 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3807 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
3809 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3810 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
3812 tcg_temp_free_i32(temp
);
3814 gen_update_cfar(ctx
, ctx
->base
.pc_next
- 4);
3815 if (type
== BCOND_IM
) {
3816 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
3817 if (likely(AA(ctx
->opcode
) == 0)) {
3818 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
+ li
- 4);
3820 gen_goto_tb(ctx
, 0, li
);
3823 if (NARROW_MODE(ctx
)) {
3824 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
3826 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
3828 gen_lookup_and_goto_ptr(ctx
);
3829 tcg_temp_free(target
);
3831 if ((bo
& 0x14) != 0x14) {
3832 /* fallthrough case */
3834 gen_goto_tb(ctx
, 1, ctx
->base
.pc_next
);
3838 static void gen_bc(DisasContext
*ctx
)
3840 gen_bcond(ctx
, BCOND_IM
);
3843 static void gen_bcctr(DisasContext
*ctx
)
3845 gen_bcond(ctx
, BCOND_CTR
);
3848 static void gen_bclr(DisasContext
*ctx
)
3850 gen_bcond(ctx
, BCOND_LR
);
3853 static void gen_bctar(DisasContext
*ctx
)
3855 gen_bcond(ctx
, BCOND_TAR
);
3858 /*** Condition register logical ***/
3859 #define GEN_CRLOGIC(name, tcg_op, opc) \
3860 static void glue(gen_, name)(DisasContext *ctx) \
3865 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3866 t0 = tcg_temp_new_i32(); \
3868 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3870 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3872 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3873 t1 = tcg_temp_new_i32(); \
3874 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3876 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3878 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3880 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3881 tcg_op(t0, t0, t1); \
3882 bitmask = 0x08 >> (crbD(ctx->opcode) & 0x03); \
3883 tcg_gen_andi_i32(t0, t0, bitmask); \
3884 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3885 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3886 tcg_temp_free_i32(t0); \
3887 tcg_temp_free_i32(t1); \
3891 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
3893 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
3895 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
3897 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
3899 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
3901 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
3903 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
3905 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
3908 static void gen_mcrf(DisasContext
*ctx
)
3910 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
3913 /*** System linkage ***/
3915 /* rfi (supervisor only) */
3916 static void gen_rfi(DisasContext
*ctx
)
3918 #if defined(CONFIG_USER_ONLY)
3921 /* This instruction doesn't exist anymore on 64-bit server
3922 * processors compliant with arch 2.x
3924 if (is_book3s_arch2x(ctx
)) {
3925 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3928 /* Restore CPU state */
3930 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
3933 gen_update_cfar(ctx
, ctx
->base
.pc_next
- 4);
3934 gen_helper_rfi(cpu_env
);
3935 gen_sync_exception(ctx
);
3936 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
3942 #if defined(TARGET_PPC64)
3943 static void gen_rfid(DisasContext
*ctx
)
3945 #if defined(CONFIG_USER_ONLY)
3948 /* Restore CPU state */
3950 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
3953 gen_update_cfar(ctx
, ctx
->base
.pc_next
- 4);
3954 gen_helper_rfid(cpu_env
);
3955 gen_sync_exception(ctx
);
3956 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
3962 static void gen_hrfid(DisasContext
*ctx
)
3964 #if defined(CONFIG_USER_ONLY)
3967 /* Restore CPU state */
3969 gen_helper_hrfid(cpu_env
);
3970 gen_sync_exception(ctx
);
3976 #if defined(CONFIG_USER_ONLY)
3977 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3979 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3981 static void gen_sc(DisasContext
*ctx
)
3985 lev
= (ctx
->opcode
>> 5) & 0x7F;
3986 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
3991 /* Check for unconditional traps (always or never) */
3992 static bool check_unconditional_trap(DisasContext
*ctx
)
3995 if (TO(ctx
->opcode
) == 0) {
3999 if (TO(ctx
->opcode
) == 31) {
4000 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_TRAP
);
4007 static void gen_tw(DisasContext
*ctx
)
4011 if (check_unconditional_trap(ctx
)) {
4014 t0
= tcg_const_i32(TO(ctx
->opcode
));
4015 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
4017 tcg_temp_free_i32(t0
);
4021 static void gen_twi(DisasContext
*ctx
)
4026 if (check_unconditional_trap(ctx
)) {
4029 t0
= tcg_const_tl(SIMM(ctx
->opcode
));
4030 t1
= tcg_const_i32(TO(ctx
->opcode
));
4031 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4033 tcg_temp_free_i32(t1
);
4036 #if defined(TARGET_PPC64)
4038 static void gen_td(DisasContext
*ctx
)
4042 if (check_unconditional_trap(ctx
)) {
4045 t0
= tcg_const_i32(TO(ctx
->opcode
));
4046 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
4048 tcg_temp_free_i32(t0
);
4052 static void gen_tdi(DisasContext
*ctx
)
4057 if (check_unconditional_trap(ctx
)) {
4060 t0
= tcg_const_tl(SIMM(ctx
->opcode
));
4061 t1
= tcg_const_i32(TO(ctx
->opcode
));
4062 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4064 tcg_temp_free_i32(t1
);
4068 /*** Processor control ***/
4070 static void gen_read_xer(DisasContext
*ctx
, TCGv dst
)
4072 TCGv t0
= tcg_temp_new();
4073 TCGv t1
= tcg_temp_new();
4074 TCGv t2
= tcg_temp_new();
4075 tcg_gen_mov_tl(dst
, cpu_xer
);
4076 tcg_gen_shli_tl(t0
, cpu_so
, XER_SO
);
4077 tcg_gen_shli_tl(t1
, cpu_ov
, XER_OV
);
4078 tcg_gen_shli_tl(t2
, cpu_ca
, XER_CA
);
4079 tcg_gen_or_tl(t0
, t0
, t1
);
4080 tcg_gen_or_tl(dst
, dst
, t2
);
4081 tcg_gen_or_tl(dst
, dst
, t0
);
4082 if (is_isa300(ctx
)) {
4083 tcg_gen_shli_tl(t0
, cpu_ov32
, XER_OV32
);
4084 tcg_gen_or_tl(dst
, dst
, t0
);
4085 tcg_gen_shli_tl(t0
, cpu_ca32
, XER_CA32
);
4086 tcg_gen_or_tl(dst
, dst
, t0
);
4093 static void gen_write_xer(TCGv src
)
4095 /* Write all flags, while reading back check for isa300 */
4096 tcg_gen_andi_tl(cpu_xer
, src
,
4098 (1u << XER_OV
) | (1u << XER_OV32
) |
4099 (1u << XER_CA
) | (1u << XER_CA32
)));
4100 tcg_gen_extract_tl(cpu_ov32
, src
, XER_OV32
, 1);
4101 tcg_gen_extract_tl(cpu_ca32
, src
, XER_CA32
, 1);
4102 tcg_gen_extract_tl(cpu_so
, src
, XER_SO
, 1);
4103 tcg_gen_extract_tl(cpu_ov
, src
, XER_OV
, 1);
4104 tcg_gen_extract_tl(cpu_ca
, src
, XER_CA
, 1);
4108 static void gen_mcrxr(DisasContext
*ctx
)
4110 TCGv_i32 t0
= tcg_temp_new_i32();
4111 TCGv_i32 t1
= tcg_temp_new_i32();
4112 TCGv_i32 dst
= cpu_crf
[crfD(ctx
->opcode
)];
4114 tcg_gen_trunc_tl_i32(t0
, cpu_so
);
4115 tcg_gen_trunc_tl_i32(t1
, cpu_ov
);
4116 tcg_gen_trunc_tl_i32(dst
, cpu_ca
);
4117 tcg_gen_shli_i32(t0
, t0
, 3);
4118 tcg_gen_shli_i32(t1
, t1
, 2);
4119 tcg_gen_shli_i32(dst
, dst
, 1);
4120 tcg_gen_or_i32(dst
, dst
, t0
);
4121 tcg_gen_or_i32(dst
, dst
, t1
);
4122 tcg_temp_free_i32(t0
);
4123 tcg_temp_free_i32(t1
);
4125 tcg_gen_movi_tl(cpu_so
, 0);
4126 tcg_gen_movi_tl(cpu_ov
, 0);
4127 tcg_gen_movi_tl(cpu_ca
, 0);
4132 static void gen_mcrxrx(DisasContext
*ctx
)
4134 TCGv t0
= tcg_temp_new();
4135 TCGv t1
= tcg_temp_new();
4136 TCGv_i32 dst
= cpu_crf
[crfD(ctx
->opcode
)];
4138 /* copy OV and OV32 */
4139 tcg_gen_shli_tl(t0
, cpu_ov
, 1);
4140 tcg_gen_or_tl(t0
, t0
, cpu_ov32
);
4141 tcg_gen_shli_tl(t0
, t0
, 2);
4142 /* copy CA and CA32 */
4143 tcg_gen_shli_tl(t1
, cpu_ca
, 1);
4144 tcg_gen_or_tl(t1
, t1
, cpu_ca32
);
4145 tcg_gen_or_tl(t0
, t0
, t1
);
4146 tcg_gen_trunc_tl_i32(dst
, t0
);
4153 static void gen_mfcr(DisasContext
*ctx
)
4157 if (likely(ctx
->opcode
& 0x00100000)) {
4158 crm
= CRM(ctx
->opcode
);
4159 if (likely(crm
&& ((crm
& (crm
- 1)) == 0))) {
4161 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
4162 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)],
4163 cpu_gpr
[rD(ctx
->opcode
)], crn
* 4);
4166 TCGv_i32 t0
= tcg_temp_new_i32();
4167 tcg_gen_mov_i32(t0
, cpu_crf
[0]);
4168 tcg_gen_shli_i32(t0
, t0
, 4);
4169 tcg_gen_or_i32(t0
, t0
, cpu_crf
[1]);
4170 tcg_gen_shli_i32(t0
, t0
, 4);
4171 tcg_gen_or_i32(t0
, t0
, cpu_crf
[2]);
4172 tcg_gen_shli_i32(t0
, t0
, 4);
4173 tcg_gen_or_i32(t0
, t0
, cpu_crf
[3]);
4174 tcg_gen_shli_i32(t0
, t0
, 4);
4175 tcg_gen_or_i32(t0
, t0
, cpu_crf
[4]);
4176 tcg_gen_shli_i32(t0
, t0
, 4);
4177 tcg_gen_or_i32(t0
, t0
, cpu_crf
[5]);
4178 tcg_gen_shli_i32(t0
, t0
, 4);
4179 tcg_gen_or_i32(t0
, t0
, cpu_crf
[6]);
4180 tcg_gen_shli_i32(t0
, t0
, 4);
4181 tcg_gen_or_i32(t0
, t0
, cpu_crf
[7]);
4182 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4183 tcg_temp_free_i32(t0
);
4188 static void gen_mfmsr(DisasContext
*ctx
)
4191 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
4194 static void spr_noaccess(DisasContext
*ctx
, int gprn
, int sprn
)
4197 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
4198 printf("ERROR: try to access SPR %d !\n", sprn
);
4201 #define SPR_NOACCESS (&spr_noaccess)
4204 static inline void gen_op_mfspr(DisasContext
*ctx
)
4206 void (*read_cb
)(DisasContext
*ctx
, int gprn
, int sprn
);
4207 uint32_t sprn
= SPR(ctx
->opcode
);
4209 #if defined(CONFIG_USER_ONLY)
4210 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
4213 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
4214 } else if (ctx
->hv
) {
4215 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
4217 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
4220 if (likely(read_cb
!= NULL
)) {
4221 if (likely(read_cb
!= SPR_NOACCESS
)) {
4222 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
4224 /* Privilege exception */
4225 /* This is a hack to avoid warnings when running Linux:
4226 * this OS breaks the PowerPC virtualisation model,
4227 * allowing userland application to read the PVR
4229 if (sprn
!= SPR_PVR
) {
4230 qemu_log_mask(LOG_GUEST_ERROR
, "Trying to read privileged spr "
4231 "%d (0x%03x) at " TARGET_FMT_lx
"\n", sprn
, sprn
,
4232 ctx
->base
.pc_next
- 4);
4234 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4237 /* ISA 2.07 defines these as no-ops */
4238 if ((ctx
->insns_flags2
& PPC2_ISA207S
) &&
4239 (sprn
>= 808 && sprn
<= 811)) {
4244 qemu_log_mask(LOG_GUEST_ERROR
,
4245 "Trying to read invalid spr %d (0x%03x) at "
4246 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->base
.pc_next
- 4);
4248 /* The behaviour depends on MSR:PR and SPR# bit 0x10,
4249 * it can generate a priv, a hv emu or a no-op
4253 gen_priv_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4256 if (ctx
->pr
|| sprn
== 0 || sprn
== 4 || sprn
== 5 || sprn
== 6) {
4257 gen_hvpriv_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4263 static void gen_mfspr(DisasContext
*ctx
)
4269 static void gen_mftb(DisasContext
*ctx
)
4275 static void gen_mtcrf(DisasContext
*ctx
)
4279 crm
= CRM(ctx
->opcode
);
4280 if (likely((ctx
->opcode
& 0x00100000))) {
4281 if (crm
&& ((crm
& (crm
- 1)) == 0)) {
4282 TCGv_i32 temp
= tcg_temp_new_i32();
4284 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
4285 tcg_gen_shri_i32(temp
, temp
, crn
* 4);
4286 tcg_gen_andi_i32(cpu_crf
[7 - crn
], temp
, 0xf);
4287 tcg_temp_free_i32(temp
);
4290 TCGv_i32 temp
= tcg_temp_new_i32();
4291 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
4292 for (crn
= 0 ; crn
< 8 ; crn
++) {
4293 if (crm
& (1 << crn
)) {
4294 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
4295 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
4298 tcg_temp_free_i32(temp
);
4303 #if defined(TARGET_PPC64)
4304 static void gen_mtmsrd(DisasContext
*ctx
)
4308 #if !defined(CONFIG_USER_ONLY)
4309 if (ctx
->opcode
& 0x00010000) {
4310 /* Special form that does not need any synchronisation */
4311 TCGv t0
= tcg_temp_new();
4312 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
4313 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(target_ulong
)((1 << MSR_RI
) | (1 << MSR_EE
)));
4314 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
4317 /* XXX: we need to update nip before the store
4318 * if we enter power saving mode, we will exit the loop
4319 * directly from ppc_store_msr
4321 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
4324 gen_update_nip(ctx
, ctx
->base
.pc_next
);
4325 gen_helper_store_msr(cpu_env
, cpu_gpr
[rS(ctx
->opcode
)]);
4326 /* Must stop the translation as machine state (may have) changed */
4327 /* Note that mtmsr is not always defined as context-synchronizing */
4328 gen_stop_exception(ctx
);
4329 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
4333 #endif /* !defined(CONFIG_USER_ONLY) */
4335 #endif /* defined(TARGET_PPC64) */
4337 static void gen_mtmsr(DisasContext
*ctx
)
4341 #if !defined(CONFIG_USER_ONLY)
4342 if (ctx
->opcode
& 0x00010000) {
4343 /* Special form that does not need any synchronisation */
4344 TCGv t0
= tcg_temp_new();
4345 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
4346 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(target_ulong
)((1 << MSR_RI
) | (1 << MSR_EE
)));
4347 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
4350 TCGv msr
= tcg_temp_new();
4352 /* XXX: we need to update nip before the store
4353 * if we enter power saving mode, we will exit the loop
4354 * directly from ppc_store_msr
4356 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
4359 gen_update_nip(ctx
, ctx
->base
.pc_next
);
4360 #if defined(TARGET_PPC64)
4361 tcg_gen_deposit_tl(msr
, cpu_msr
, cpu_gpr
[rS(ctx
->opcode
)], 0, 32);
4363 tcg_gen_mov_tl(msr
, cpu_gpr
[rS(ctx
->opcode
)]);
4365 gen_helper_store_msr(cpu_env
, msr
);
4366 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
4370 /* Must stop the translation as machine state (may have) changed */
4371 /* Note that mtmsr is not always defined as context-synchronizing */
4372 gen_stop_exception(ctx
);
4378 static void gen_mtspr(DisasContext
*ctx
)
4380 void (*write_cb
)(DisasContext
*ctx
, int sprn
, int gprn
);
4381 uint32_t sprn
= SPR(ctx
->opcode
);
4383 #if defined(CONFIG_USER_ONLY)
4384 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
4387 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
4388 } else if (ctx
->hv
) {
4389 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
4391 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
4394 if (likely(write_cb
!= NULL
)) {
4395 if (likely(write_cb
!= SPR_NOACCESS
)) {
4396 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
4398 /* Privilege exception */
4399 qemu_log_mask(LOG_GUEST_ERROR
, "Trying to write privileged spr "
4400 "%d (0x%03x) at " TARGET_FMT_lx
"\n", sprn
, sprn
,
4401 ctx
->base
.pc_next
- 4);
4402 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4405 /* ISA 2.07 defines these as no-ops */
4406 if ((ctx
->insns_flags2
& PPC2_ISA207S
) &&
4407 (sprn
>= 808 && sprn
<= 811)) {
4413 qemu_log_mask(LOG_GUEST_ERROR
,
4414 "Trying to write invalid spr %d (0x%03x) at "
4415 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->base
.pc_next
- 4);
4418 /* The behaviour depends on MSR:PR and SPR# bit 0x10,
4419 * it can generate a priv, a hv emu or a no-op
4423 gen_priv_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4426 if (ctx
->pr
|| sprn
== 0) {
4427 gen_hvpriv_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4433 #if defined(TARGET_PPC64)
4435 static void gen_setb(DisasContext
*ctx
)
4437 TCGv_i32 t0
= tcg_temp_new_i32();
4438 TCGv_i32 t8
= tcg_temp_new_i32();
4439 TCGv_i32 tm1
= tcg_temp_new_i32();
4440 int crf
= crfS(ctx
->opcode
);
4442 tcg_gen_setcondi_i32(TCG_COND_GEU
, t0
, cpu_crf
[crf
], 4);
4443 tcg_gen_movi_i32(t8
, 8);
4444 tcg_gen_movi_i32(tm1
, -1);
4445 tcg_gen_movcond_i32(TCG_COND_GEU
, t0
, cpu_crf
[crf
], t8
, tm1
, t0
);
4446 tcg_gen_ext_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4448 tcg_temp_free_i32(t0
);
4449 tcg_temp_free_i32(t8
);
4450 tcg_temp_free_i32(tm1
);
4454 /*** Cache management ***/
4457 static void gen_dcbf(DisasContext
*ctx
)
4459 /* XXX: specification says this is treated as a load by the MMU */
4461 gen_set_access_type(ctx
, ACCESS_CACHE
);
4462 t0
= tcg_temp_new();
4463 gen_addr_reg_index(ctx
, t0
);
4464 gen_qemu_ld8u(ctx
, t0
, t0
);
4468 /* dcbfep (external PID dcbf) */
4469 static void gen_dcbfep(DisasContext
*ctx
)
4471 /* XXX: specification says this is treated as a load by the MMU */
4474 gen_set_access_type(ctx
, ACCESS_CACHE
);
4475 t0
= tcg_temp_new();
4476 gen_addr_reg_index(ctx
, t0
);
4477 tcg_gen_qemu_ld_tl(t0
, t0
, PPC_TLB_EPID_LOAD
, DEF_MEMOP(MO_UB
));
4481 /* dcbi (Supervisor only) */
4482 static void gen_dcbi(DisasContext
*ctx
)
4484 #if defined(CONFIG_USER_ONLY)
4490 EA
= tcg_temp_new();
4491 gen_set_access_type(ctx
, ACCESS_CACHE
);
4492 gen_addr_reg_index(ctx
, EA
);
4493 val
= tcg_temp_new();
4494 /* XXX: specification says this should be treated as a store by the MMU */
4495 gen_qemu_ld8u(ctx
, val
, EA
);
4496 gen_qemu_st8(ctx
, val
, EA
);
4499 #endif /* defined(CONFIG_USER_ONLY) */
4503 static void gen_dcbst(DisasContext
*ctx
)
4505 /* XXX: specification say this is treated as a load by the MMU */
4507 gen_set_access_type(ctx
, ACCESS_CACHE
);
4508 t0
= tcg_temp_new();
4509 gen_addr_reg_index(ctx
, t0
);
4510 gen_qemu_ld8u(ctx
, t0
, t0
);
4514 /* dcbstep (dcbstep External PID version) */
4515 static void gen_dcbstep(DisasContext
*ctx
)
4517 /* XXX: specification say this is treated as a load by the MMU */
4519 gen_set_access_type(ctx
, ACCESS_CACHE
);
4520 t0
= tcg_temp_new();
4521 gen_addr_reg_index(ctx
, t0
);
4522 tcg_gen_qemu_ld_tl(t0
, t0
, PPC_TLB_EPID_LOAD
, DEF_MEMOP(MO_UB
));
4527 static void gen_dcbt(DisasContext
*ctx
)
4529 /* interpreted as no-op */
4530 /* XXX: specification say this is treated as a load by the MMU
4531 * but does not generate any exception
4536 static void gen_dcbtep(DisasContext
*ctx
)
4538 /* interpreted as no-op */
4539 /* XXX: specification say this is treated as a load by the MMU
4540 * but does not generate any exception
4545 static void gen_dcbtst(DisasContext
*ctx
)
4547 /* interpreted as no-op */
4548 /* XXX: specification say this is treated as a load by the MMU
4549 * but does not generate any exception
4554 static void gen_dcbtstep(DisasContext
*ctx
)
4556 /* interpreted as no-op */
4557 /* XXX: specification say this is treated as a load by the MMU
4558 * but does not generate any exception
4563 static void gen_dcbtls(DisasContext
*ctx
)
4565 /* Always fails locking the cache */
4566 TCGv t0
= tcg_temp_new();
4567 gen_load_spr(t0
, SPR_Exxx_L1CSR0
);
4568 tcg_gen_ori_tl(t0
, t0
, L1CSR0_CUL
);
4569 gen_store_spr(SPR_Exxx_L1CSR0
, t0
);
4574 static void gen_dcbz(DisasContext
*ctx
)
4579 gen_set_access_type(ctx
, ACCESS_CACHE
);
4580 tcgv_addr
= tcg_temp_new();
4581 tcgv_op
= tcg_const_i32(ctx
->opcode
& 0x03FF000);
4582 gen_addr_reg_index(ctx
, tcgv_addr
);
4583 gen_helper_dcbz(cpu_env
, tcgv_addr
, tcgv_op
);
4584 tcg_temp_free(tcgv_addr
);
4585 tcg_temp_free_i32(tcgv_op
);
4589 static void gen_dcbzep(DisasContext
*ctx
)
4594 gen_set_access_type(ctx
, ACCESS_CACHE
);
4595 tcgv_addr
= tcg_temp_new();
4596 tcgv_op
= tcg_const_i32(ctx
->opcode
& 0x03FF000);
4597 gen_addr_reg_index(ctx
, tcgv_addr
);
4598 gen_helper_dcbzep(cpu_env
, tcgv_addr
, tcgv_op
);
4599 tcg_temp_free(tcgv_addr
);
4600 tcg_temp_free_i32(tcgv_op
);
4604 static void gen_dst(DisasContext
*ctx
)
4606 if (rA(ctx
->opcode
) == 0) {
4607 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4609 /* interpreted as no-op */
4614 static void gen_dstst(DisasContext
*ctx
)
4616 if (rA(ctx
->opcode
) == 0) {
4617 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4619 /* interpreted as no-op */
4625 static void gen_dss(DisasContext
*ctx
)
4627 /* interpreted as no-op */
4631 static void gen_icbi(DisasContext
*ctx
)
4634 gen_set_access_type(ctx
, ACCESS_CACHE
);
4635 t0
= tcg_temp_new();
4636 gen_addr_reg_index(ctx
, t0
);
4637 gen_helper_icbi(cpu_env
, t0
);
4642 static void gen_icbiep(DisasContext
*ctx
)
4645 gen_set_access_type(ctx
, ACCESS_CACHE
);
4646 t0
= tcg_temp_new();
4647 gen_addr_reg_index(ctx
, t0
);
4648 gen_helper_icbiep(cpu_env
, t0
);
4654 static void gen_dcba(DisasContext
*ctx
)
4656 /* interpreted as no-op */
4657 /* XXX: specification say this is treated as a store by the MMU
4658 * but does not generate any exception
4662 /*** Segment register manipulation ***/
4663 /* Supervisor only: */
4666 static void gen_mfsr(DisasContext
*ctx
)
4668 #if defined(CONFIG_USER_ONLY)
4674 t0
= tcg_const_tl(SR(ctx
->opcode
));
4675 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4677 #endif /* defined(CONFIG_USER_ONLY) */
4681 static void gen_mfsrin(DisasContext
*ctx
)
4683 #if defined(CONFIG_USER_ONLY)
4689 t0
= tcg_temp_new();
4690 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
4691 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4693 #endif /* defined(CONFIG_USER_ONLY) */
4697 static void gen_mtsr(DisasContext
*ctx
)
4699 #if defined(CONFIG_USER_ONLY)
4705 t0
= tcg_const_tl(SR(ctx
->opcode
));
4706 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4708 #endif /* defined(CONFIG_USER_ONLY) */
4712 static void gen_mtsrin(DisasContext
*ctx
)
4714 #if defined(CONFIG_USER_ONLY)
4720 t0
= tcg_temp_new();
4721 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
4722 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rD(ctx
->opcode
)]);
4724 #endif /* defined(CONFIG_USER_ONLY) */
4727 #if defined(TARGET_PPC64)
4728 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4731 static void gen_mfsr_64b(DisasContext
*ctx
)
4733 #if defined(CONFIG_USER_ONLY)
4739 t0
= tcg_const_tl(SR(ctx
->opcode
));
4740 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4742 #endif /* defined(CONFIG_USER_ONLY) */
4746 static void gen_mfsrin_64b(DisasContext
*ctx
)
4748 #if defined(CONFIG_USER_ONLY)
4754 t0
= tcg_temp_new();
4755 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
4756 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4758 #endif /* defined(CONFIG_USER_ONLY) */
4762 static void gen_mtsr_64b(DisasContext
*ctx
)
4764 #if defined(CONFIG_USER_ONLY)
4770 t0
= tcg_const_tl(SR(ctx
->opcode
));
4771 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4773 #endif /* defined(CONFIG_USER_ONLY) */
4777 static void gen_mtsrin_64b(DisasContext
*ctx
)
4779 #if defined(CONFIG_USER_ONLY)
4785 t0
= tcg_temp_new();
4786 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
4787 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4789 #endif /* defined(CONFIG_USER_ONLY) */
4793 static void gen_slbmte(DisasContext
*ctx
)
4795 #if defined(CONFIG_USER_ONLY)
4800 gen_helper_store_slb(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)],
4801 cpu_gpr
[rS(ctx
->opcode
)]);
4802 #endif /* defined(CONFIG_USER_ONLY) */
4805 static void gen_slbmfee(DisasContext
*ctx
)
4807 #if defined(CONFIG_USER_ONLY)
4812 gen_helper_load_slb_esid(cpu_gpr
[rS(ctx
->opcode
)], cpu_env
,
4813 cpu_gpr
[rB(ctx
->opcode
)]);
4814 #endif /* defined(CONFIG_USER_ONLY) */
4817 static void gen_slbmfev(DisasContext
*ctx
)
4819 #if defined(CONFIG_USER_ONLY)
4824 gen_helper_load_slb_vsid(cpu_gpr
[rS(ctx
->opcode
)], cpu_env
,
4825 cpu_gpr
[rB(ctx
->opcode
)]);
4826 #endif /* defined(CONFIG_USER_ONLY) */
4829 static void gen_slbfee_(DisasContext
*ctx
)
4831 #if defined(CONFIG_USER_ONLY)
4832 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4836 if (unlikely(ctx
->pr
)) {
4837 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4840 gen_helper_find_slb_vsid(cpu_gpr
[rS(ctx
->opcode
)], cpu_env
,
4841 cpu_gpr
[rB(ctx
->opcode
)]);
4842 l1
= gen_new_label();
4843 l2
= gen_new_label();
4844 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
4845 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rS(ctx
->opcode
)], -1, l1
);
4846 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], CRF_EQ
);
4849 tcg_gen_movi_tl(cpu_gpr
[rS(ctx
->opcode
)], 0);
4853 #endif /* defined(TARGET_PPC64) */
4855 /*** Lookaside buffer management ***/
4856 /* Optional & supervisor only: */
4859 static void gen_tlbia(DisasContext
*ctx
)
4861 #if defined(CONFIG_USER_ONLY)
4866 gen_helper_tlbia(cpu_env
);
4867 #endif /* defined(CONFIG_USER_ONLY) */
4871 static void gen_tlbiel(DisasContext
*ctx
)
4873 #if defined(CONFIG_USER_ONLY)
4878 gen_helper_tlbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4879 #endif /* defined(CONFIG_USER_ONLY) */
4883 static void gen_tlbie(DisasContext
*ctx
)
4885 #if defined(CONFIG_USER_ONLY)
4891 CHK_SV
; /* If gtse is set then tlbie is supervisor privileged */
4893 CHK_HV
; /* Else hypervisor privileged */
4896 if (NARROW_MODE(ctx
)) {
4897 TCGv t0
= tcg_temp_new();
4898 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
4899 gen_helper_tlbie(cpu_env
, t0
);
4902 gen_helper_tlbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4904 t1
= tcg_temp_new_i32();
4905 tcg_gen_ld_i32(t1
, cpu_env
, offsetof(CPUPPCState
, tlb_need_flush
));
4906 tcg_gen_ori_i32(t1
, t1
, TLB_NEED_GLOBAL_FLUSH
);
4907 tcg_gen_st_i32(t1
, cpu_env
, offsetof(CPUPPCState
, tlb_need_flush
));
4908 tcg_temp_free_i32(t1
);
4909 #endif /* defined(CONFIG_USER_ONLY) */
4913 static void gen_tlbsync(DisasContext
*ctx
)
4915 #if defined(CONFIG_USER_ONLY)
4920 CHK_SV
; /* If gtse is set then tlbsync is supervisor privileged */
4922 CHK_HV
; /* Else hypervisor privileged */
4925 /* BookS does both ptesync and tlbsync make tlbsync a nop for server */
4926 if (ctx
->insns_flags
& PPC_BOOKE
) {
4927 gen_check_tlb_flush(ctx
, true);
4929 #endif /* defined(CONFIG_USER_ONLY) */
4932 #if defined(TARGET_PPC64)
4934 static void gen_slbia(DisasContext
*ctx
)
4936 #if defined(CONFIG_USER_ONLY)
4941 gen_helper_slbia(cpu_env
);
4942 #endif /* defined(CONFIG_USER_ONLY) */
4946 static void gen_slbie(DisasContext
*ctx
)
4948 #if defined(CONFIG_USER_ONLY)
4953 gen_helper_slbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4954 #endif /* defined(CONFIG_USER_ONLY) */
4958 static void gen_slbieg(DisasContext
*ctx
)
4960 #if defined(CONFIG_USER_ONLY)
4965 gen_helper_slbieg(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4966 #endif /* defined(CONFIG_USER_ONLY) */
4970 static void gen_slbsync(DisasContext
*ctx
)
4972 #if defined(CONFIG_USER_ONLY)
4976 gen_check_tlb_flush(ctx
, true);
4977 #endif /* defined(CONFIG_USER_ONLY) */
4980 #endif /* defined(TARGET_PPC64) */
4982 /*** External control ***/
4986 static void gen_eciwx(DisasContext
*ctx
)
4989 /* Should check EAR[E] ! */
4990 gen_set_access_type(ctx
, ACCESS_EXT
);
4991 t0
= tcg_temp_new();
4992 gen_addr_reg_index(ctx
, t0
);
4993 tcg_gen_qemu_ld_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, ctx
->mem_idx
,
4994 DEF_MEMOP(MO_UL
| MO_ALIGN
));
4999 static void gen_ecowx(DisasContext
*ctx
)
5002 /* Should check EAR[E] ! */
5003 gen_set_access_type(ctx
, ACCESS_EXT
);
5004 t0
= tcg_temp_new();
5005 gen_addr_reg_index(ctx
, t0
);
5006 tcg_gen_qemu_st_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, ctx
->mem_idx
,
5007 DEF_MEMOP(MO_UL
| MO_ALIGN
));
5011 /* PowerPC 601 specific instructions */
5014 static void gen_abs(DisasContext
*ctx
)
5016 TCGLabel
*l1
= gen_new_label();
5017 TCGLabel
*l2
= gen_new_label();
5018 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
5019 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5022 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5024 if (unlikely(Rc(ctx
->opcode
) != 0))
5025 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5029 static void gen_abso(DisasContext
*ctx
)
5031 TCGLabel
*l1
= gen_new_label();
5032 TCGLabel
*l2
= gen_new_label();
5033 TCGLabel
*l3
= gen_new_label();
5034 /* Start with XER OV disabled, the most likely case */
5035 tcg_gen_movi_tl(cpu_ov
, 0);
5036 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l2
);
5037 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[rA(ctx
->opcode
)], 0x80000000, l1
);
5038 tcg_gen_movi_tl(cpu_ov
, 1);
5039 tcg_gen_movi_tl(cpu_so
, 1);
5042 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5045 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5047 if (unlikely(Rc(ctx
->opcode
) != 0))
5048 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5052 static void gen_clcs(DisasContext
*ctx
)
5054 TCGv_i32 t0
= tcg_const_i32(rA(ctx
->opcode
));
5055 gen_helper_clcs(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5056 tcg_temp_free_i32(t0
);
5057 /* Rc=1 sets CR0 to an undefined state */
5061 static void gen_div(DisasContext
*ctx
)
5063 gen_helper_div(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5064 cpu_gpr
[rB(ctx
->opcode
)]);
5065 if (unlikely(Rc(ctx
->opcode
) != 0))
5066 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5070 static void gen_divo(DisasContext
*ctx
)
5072 gen_helper_divo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5073 cpu_gpr
[rB(ctx
->opcode
)]);
5074 if (unlikely(Rc(ctx
->opcode
) != 0))
5075 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5079 static void gen_divs(DisasContext
*ctx
)
5081 gen_helper_divs(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5082 cpu_gpr
[rB(ctx
->opcode
)]);
5083 if (unlikely(Rc(ctx
->opcode
) != 0))
5084 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5087 /* divso - divso. */
5088 static void gen_divso(DisasContext
*ctx
)
5090 gen_helper_divso(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5091 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
5092 if (unlikely(Rc(ctx
->opcode
) != 0))
5093 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5097 static void gen_doz(DisasContext
*ctx
)
5099 TCGLabel
*l1
= gen_new_label();
5100 TCGLabel
*l2
= gen_new_label();
5101 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
5102 tcg_gen_sub_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5105 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
5107 if (unlikely(Rc(ctx
->opcode
) != 0))
5108 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5112 static void gen_dozo(DisasContext
*ctx
)
5114 TCGLabel
*l1
= gen_new_label();
5115 TCGLabel
*l2
= gen_new_label();
5116 TCGv t0
= tcg_temp_new();
5117 TCGv t1
= tcg_temp_new();
5118 TCGv t2
= tcg_temp_new();
5119 /* Start with XER OV disabled, the most likely case */
5120 tcg_gen_movi_tl(cpu_ov
, 0);
5121 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
5122 tcg_gen_sub_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5123 tcg_gen_xor_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5124 tcg_gen_xor_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], t0
);
5125 tcg_gen_andc_tl(t1
, t1
, t2
);
5126 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5127 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
5128 tcg_gen_movi_tl(cpu_ov
, 1);
5129 tcg_gen_movi_tl(cpu_so
, 1);
5132 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
5137 if (unlikely(Rc(ctx
->opcode
) != 0))
5138 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5142 static void gen_dozi(DisasContext
*ctx
)
5144 target_long simm
= SIMM(ctx
->opcode
);
5145 TCGLabel
*l1
= gen_new_label();
5146 TCGLabel
*l2
= gen_new_label();
5147 tcg_gen_brcondi_tl(TCG_COND_LT
, cpu_gpr
[rA(ctx
->opcode
)], simm
, l1
);
5148 tcg_gen_subfi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
, cpu_gpr
[rA(ctx
->opcode
)]);
5151 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
5153 if (unlikely(Rc(ctx
->opcode
) != 0))
5154 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5157 /* lscbx - lscbx. */
5158 static void gen_lscbx(DisasContext
*ctx
)
5160 TCGv t0
= tcg_temp_new();
5161 TCGv_i32 t1
= tcg_const_i32(rD(ctx
->opcode
));
5162 TCGv_i32 t2
= tcg_const_i32(rA(ctx
->opcode
));
5163 TCGv_i32 t3
= tcg_const_i32(rB(ctx
->opcode
));
5165 gen_addr_reg_index(ctx
, t0
);
5166 gen_helper_lscbx(t0
, cpu_env
, t0
, t1
, t2
, t3
);
5167 tcg_temp_free_i32(t1
);
5168 tcg_temp_free_i32(t2
);
5169 tcg_temp_free_i32(t3
);
5170 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~0x7F);
5171 tcg_gen_or_tl(cpu_xer
, cpu_xer
, t0
);
5172 if (unlikely(Rc(ctx
->opcode
) != 0))
5173 gen_set_Rc0(ctx
, t0
);
5177 /* maskg - maskg. */
5178 static void gen_maskg(DisasContext
*ctx
)
5180 TCGLabel
*l1
= gen_new_label();
5181 TCGv t0
= tcg_temp_new();
5182 TCGv t1
= tcg_temp_new();
5183 TCGv t2
= tcg_temp_new();
5184 TCGv t3
= tcg_temp_new();
5185 tcg_gen_movi_tl(t3
, 0xFFFFFFFF);
5186 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5187 tcg_gen_andi_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 0x1F);
5188 tcg_gen_addi_tl(t2
, t0
, 1);
5189 tcg_gen_shr_tl(t2
, t3
, t2
);
5190 tcg_gen_shr_tl(t3
, t3
, t1
);
5191 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], t2
, t3
);
5192 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
5193 tcg_gen_neg_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5199 if (unlikely(Rc(ctx
->opcode
) != 0))
5200 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5203 /* maskir - maskir. */
5204 static void gen_maskir(DisasContext
*ctx
)
5206 TCGv t0
= tcg_temp_new();
5207 TCGv t1
= tcg_temp_new();
5208 tcg_gen_and_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
5209 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
5210 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5213 if (unlikely(Rc(ctx
->opcode
) != 0))
5214 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5218 static void gen_mul(DisasContext
*ctx
)
5220 TCGv_i64 t0
= tcg_temp_new_i64();
5221 TCGv_i64 t1
= tcg_temp_new_i64();
5222 TCGv t2
= tcg_temp_new();
5223 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
5224 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
5225 tcg_gen_mul_i64(t0
, t0
, t1
);
5226 tcg_gen_trunc_i64_tl(t2
, t0
);
5227 gen_store_spr(SPR_MQ
, t2
);
5228 tcg_gen_shri_i64(t1
, t0
, 32);
5229 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
5230 tcg_temp_free_i64(t0
);
5231 tcg_temp_free_i64(t1
);
5233 if (unlikely(Rc(ctx
->opcode
) != 0))
5234 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5238 static void gen_mulo(DisasContext
*ctx
)
5240 TCGLabel
*l1
= gen_new_label();
5241 TCGv_i64 t0
= tcg_temp_new_i64();
5242 TCGv_i64 t1
= tcg_temp_new_i64();
5243 TCGv t2
= tcg_temp_new();
5244 /* Start with XER OV disabled, the most likely case */
5245 tcg_gen_movi_tl(cpu_ov
, 0);
5246 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
5247 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
5248 tcg_gen_mul_i64(t0
, t0
, t1
);
5249 tcg_gen_trunc_i64_tl(t2
, t0
);
5250 gen_store_spr(SPR_MQ
, t2
);
5251 tcg_gen_shri_i64(t1
, t0
, 32);
5252 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
5253 tcg_gen_ext32s_i64(t1
, t0
);
5254 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
5255 tcg_gen_movi_tl(cpu_ov
, 1);
5256 tcg_gen_movi_tl(cpu_so
, 1);
5258 tcg_temp_free_i64(t0
);
5259 tcg_temp_free_i64(t1
);
5261 if (unlikely(Rc(ctx
->opcode
) != 0))
5262 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5266 static void gen_nabs(DisasContext
*ctx
)
5268 TCGLabel
*l1
= gen_new_label();
5269 TCGLabel
*l2
= gen_new_label();
5270 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
5271 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5274 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5276 if (unlikely(Rc(ctx
->opcode
) != 0))
5277 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5280 /* nabso - nabso. */
5281 static void gen_nabso(DisasContext
*ctx
)
5283 TCGLabel
*l1
= gen_new_label();
5284 TCGLabel
*l2
= gen_new_label();
5285 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
5286 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5289 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5291 /* nabs never overflows */
5292 tcg_gen_movi_tl(cpu_ov
, 0);
5293 if (unlikely(Rc(ctx
->opcode
) != 0))
5294 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
5298 static void gen_rlmi(DisasContext
*ctx
)
5300 uint32_t mb
= MB(ctx
->opcode
);
5301 uint32_t me
= ME(ctx
->opcode
);
5302 TCGv t0
= tcg_temp_new();
5303 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5304 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5305 tcg_gen_andi_tl(t0
, t0
, MASK(mb
, me
));
5306 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~MASK(mb
, me
));
5307 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], t0
);
5309 if (unlikely(Rc(ctx
->opcode
) != 0))
5310 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5314 static void gen_rrib(DisasContext
*ctx
)
5316 TCGv t0
= tcg_temp_new();
5317 TCGv t1
= tcg_temp_new();
5318 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5319 tcg_gen_movi_tl(t1
, 0x80000000);
5320 tcg_gen_shr_tl(t1
, t1
, t0
);
5321 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5322 tcg_gen_and_tl(t0
, t0
, t1
);
5323 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], t1
);
5324 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5327 if (unlikely(Rc(ctx
->opcode
) != 0))
5328 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5332 static void gen_sle(DisasContext
*ctx
)
5334 TCGv t0
= tcg_temp_new();
5335 TCGv t1
= tcg_temp_new();
5336 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5337 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5338 tcg_gen_subfi_tl(t1
, 32, t1
);
5339 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5340 tcg_gen_or_tl(t1
, t0
, t1
);
5341 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5342 gen_store_spr(SPR_MQ
, t1
);
5345 if (unlikely(Rc(ctx
->opcode
) != 0))
5346 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5350 static void gen_sleq(DisasContext
*ctx
)
5352 TCGv t0
= tcg_temp_new();
5353 TCGv t1
= tcg_temp_new();
5354 TCGv t2
= tcg_temp_new();
5355 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5356 tcg_gen_movi_tl(t2
, 0xFFFFFFFF);
5357 tcg_gen_shl_tl(t2
, t2
, t0
);
5358 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5359 gen_load_spr(t1
, SPR_MQ
);
5360 gen_store_spr(SPR_MQ
, t0
);
5361 tcg_gen_and_tl(t0
, t0
, t2
);
5362 tcg_gen_andc_tl(t1
, t1
, t2
);
5363 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5367 if (unlikely(Rc(ctx
->opcode
) != 0))
5368 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5372 static void gen_sliq(DisasContext
*ctx
)
5374 int sh
= SH(ctx
->opcode
);
5375 TCGv t0
= tcg_temp_new();
5376 TCGv t1
= tcg_temp_new();
5377 tcg_gen_shli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5378 tcg_gen_shri_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5379 tcg_gen_or_tl(t1
, t0
, t1
);
5380 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5381 gen_store_spr(SPR_MQ
, t1
);
5384 if (unlikely(Rc(ctx
->opcode
) != 0))
5385 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5388 /* slliq - slliq. */
5389 static void gen_slliq(DisasContext
*ctx
)
5391 int sh
= SH(ctx
->opcode
);
5392 TCGv t0
= tcg_temp_new();
5393 TCGv t1
= tcg_temp_new();
5394 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5395 gen_load_spr(t1
, SPR_MQ
);
5396 gen_store_spr(SPR_MQ
, t0
);
5397 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
<< sh
));
5398 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
<< sh
));
5399 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5402 if (unlikely(Rc(ctx
->opcode
) != 0))
5403 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5407 static void gen_sllq(DisasContext
*ctx
)
5409 TCGLabel
*l1
= gen_new_label();
5410 TCGLabel
*l2
= gen_new_label();
5411 TCGv t0
= tcg_temp_local_new();
5412 TCGv t1
= tcg_temp_local_new();
5413 TCGv t2
= tcg_temp_local_new();
5414 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5415 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5416 tcg_gen_shl_tl(t1
, t1
, t2
);
5417 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5418 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5419 gen_load_spr(t0
, SPR_MQ
);
5420 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5423 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5424 gen_load_spr(t2
, SPR_MQ
);
5425 tcg_gen_andc_tl(t1
, t2
, t1
);
5426 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5431 if (unlikely(Rc(ctx
->opcode
) != 0))
5432 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5436 static void gen_slq(DisasContext
*ctx
)
5438 TCGLabel
*l1
= gen_new_label();
5439 TCGv t0
= tcg_temp_new();
5440 TCGv t1
= tcg_temp_new();
5441 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5442 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5443 tcg_gen_subfi_tl(t1
, 32, t1
);
5444 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5445 tcg_gen_or_tl(t1
, t0
, t1
);
5446 gen_store_spr(SPR_MQ
, t1
);
5447 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5448 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5449 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
5450 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
5454 if (unlikely(Rc(ctx
->opcode
) != 0))
5455 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5458 /* sraiq - sraiq. */
5459 static void gen_sraiq(DisasContext
*ctx
)
5461 int sh
= SH(ctx
->opcode
);
5462 TCGLabel
*l1
= gen_new_label();
5463 TCGv t0
= tcg_temp_new();
5464 TCGv t1
= tcg_temp_new();
5465 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5466 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5467 tcg_gen_or_tl(t0
, t0
, t1
);
5468 gen_store_spr(SPR_MQ
, t0
);
5469 tcg_gen_movi_tl(cpu_ca
, 0);
5470 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
5471 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
5472 tcg_gen_movi_tl(cpu_ca
, 1);
5474 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
5477 if (unlikely(Rc(ctx
->opcode
) != 0))
5478 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5482 static void gen_sraq(DisasContext
*ctx
)
5484 TCGLabel
*l1
= gen_new_label();
5485 TCGLabel
*l2
= gen_new_label();
5486 TCGv t0
= tcg_temp_new();
5487 TCGv t1
= tcg_temp_local_new();
5488 TCGv t2
= tcg_temp_local_new();
5489 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5490 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5491 tcg_gen_sar_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5492 tcg_gen_subfi_tl(t2
, 32, t2
);
5493 tcg_gen_shl_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5494 tcg_gen_or_tl(t0
, t0
, t2
);
5495 gen_store_spr(SPR_MQ
, t0
);
5496 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5497 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l1
);
5498 tcg_gen_mov_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
5499 tcg_gen_sari_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 31);
5502 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
);
5503 tcg_gen_movi_tl(cpu_ca
, 0);
5504 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
5505 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l2
);
5506 tcg_gen_movi_tl(cpu_ca
, 1);
5510 if (unlikely(Rc(ctx
->opcode
) != 0))
5511 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5515 static void gen_sre(DisasContext
*ctx
)
5517 TCGv t0
= tcg_temp_new();
5518 TCGv t1
= tcg_temp_new();
5519 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5520 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5521 tcg_gen_subfi_tl(t1
, 32, t1
);
5522 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5523 tcg_gen_or_tl(t1
, t0
, t1
);
5524 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5525 gen_store_spr(SPR_MQ
, t1
);
5528 if (unlikely(Rc(ctx
->opcode
) != 0))
5529 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5533 static void gen_srea(DisasContext
*ctx
)
5535 TCGv t0
= tcg_temp_new();
5536 TCGv t1
= tcg_temp_new();
5537 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5538 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5539 gen_store_spr(SPR_MQ
, t0
);
5540 tcg_gen_sar_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t1
);
5543 if (unlikely(Rc(ctx
->opcode
) != 0))
5544 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5548 static void gen_sreq(DisasContext
*ctx
)
5550 TCGv t0
= tcg_temp_new();
5551 TCGv t1
= tcg_temp_new();
5552 TCGv t2
= tcg_temp_new();
5553 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5554 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5555 tcg_gen_shr_tl(t1
, t1
, t0
);
5556 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5557 gen_load_spr(t2
, SPR_MQ
);
5558 gen_store_spr(SPR_MQ
, t0
);
5559 tcg_gen_and_tl(t0
, t0
, t1
);
5560 tcg_gen_andc_tl(t2
, t2
, t1
);
5561 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5565 if (unlikely(Rc(ctx
->opcode
) != 0))
5566 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5570 static void gen_sriq(DisasContext
*ctx
)
5572 int sh
= SH(ctx
->opcode
);
5573 TCGv t0
= tcg_temp_new();
5574 TCGv t1
= tcg_temp_new();
5575 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5576 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5577 tcg_gen_or_tl(t1
, t0
, t1
);
5578 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5579 gen_store_spr(SPR_MQ
, t1
);
5582 if (unlikely(Rc(ctx
->opcode
) != 0))
5583 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5587 static void gen_srliq(DisasContext
*ctx
)
5589 int sh
= SH(ctx
->opcode
);
5590 TCGv t0
= tcg_temp_new();
5591 TCGv t1
= tcg_temp_new();
5592 tcg_gen_rotri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5593 gen_load_spr(t1
, SPR_MQ
);
5594 gen_store_spr(SPR_MQ
, t0
);
5595 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
>> sh
));
5596 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
>> sh
));
5597 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5600 if (unlikely(Rc(ctx
->opcode
) != 0))
5601 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5605 static void gen_srlq(DisasContext
*ctx
)
5607 TCGLabel
*l1
= gen_new_label();
5608 TCGLabel
*l2
= gen_new_label();
5609 TCGv t0
= tcg_temp_local_new();
5610 TCGv t1
= tcg_temp_local_new();
5611 TCGv t2
= tcg_temp_local_new();
5612 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5613 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5614 tcg_gen_shr_tl(t2
, t1
, t2
);
5615 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5616 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5617 gen_load_spr(t0
, SPR_MQ
);
5618 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5621 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5622 tcg_gen_and_tl(t0
, t0
, t2
);
5623 gen_load_spr(t1
, SPR_MQ
);
5624 tcg_gen_andc_tl(t1
, t1
, t2
);
5625 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5630 if (unlikely(Rc(ctx
->opcode
) != 0))
5631 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5635 static void gen_srq(DisasContext
*ctx
)
5637 TCGLabel
*l1
= gen_new_label();
5638 TCGv t0
= tcg_temp_new();
5639 TCGv t1
= tcg_temp_new();
5640 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5641 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5642 tcg_gen_subfi_tl(t1
, 32, t1
);
5643 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5644 tcg_gen_or_tl(t1
, t0
, t1
);
5645 gen_store_spr(SPR_MQ
, t1
);
5646 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5647 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5648 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5649 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
5653 if (unlikely(Rc(ctx
->opcode
) != 0))
5654 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5657 /* PowerPC 602 specific instructions */
5660 static void gen_dsa(DisasContext
*ctx
)
5663 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5667 static void gen_esa(DisasContext
*ctx
)
5670 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5674 static void gen_mfrom(DisasContext
*ctx
)
5676 #if defined(CONFIG_USER_ONLY)
5680 gen_helper_602_mfrom(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5681 #endif /* defined(CONFIG_USER_ONLY) */
5684 /* 602 - 603 - G2 TLB management */
5687 static void gen_tlbld_6xx(DisasContext
*ctx
)
5689 #if defined(CONFIG_USER_ONLY)
5693 gen_helper_6xx_tlbd(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5694 #endif /* defined(CONFIG_USER_ONLY) */
5698 static void gen_tlbli_6xx(DisasContext
*ctx
)
5700 #if defined(CONFIG_USER_ONLY)
5704 gen_helper_6xx_tlbi(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5705 #endif /* defined(CONFIG_USER_ONLY) */
5708 /* 74xx TLB management */
5711 static void gen_tlbld_74xx(DisasContext
*ctx
)
5713 #if defined(CONFIG_USER_ONLY)
5717 gen_helper_74xx_tlbd(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5718 #endif /* defined(CONFIG_USER_ONLY) */
5722 static void gen_tlbli_74xx(DisasContext
*ctx
)
5724 #if defined(CONFIG_USER_ONLY)
5728 gen_helper_74xx_tlbi(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5729 #endif /* defined(CONFIG_USER_ONLY) */
5732 /* POWER instructions not in PowerPC 601 */
5735 static void gen_clf(DisasContext
*ctx
)
5737 /* Cache line flush: implemented as no-op */
5741 static void gen_cli(DisasContext
*ctx
)
5743 #if defined(CONFIG_USER_ONLY)
5746 /* Cache line invalidate: privileged and treated as no-op */
5748 #endif /* defined(CONFIG_USER_ONLY) */
5752 static void gen_dclst(DisasContext
*ctx
)
5754 /* Data cache line store: treated as no-op */
5757 static void gen_mfsri(DisasContext
*ctx
)
5759 #if defined(CONFIG_USER_ONLY)
5762 int ra
= rA(ctx
->opcode
);
5763 int rd
= rD(ctx
->opcode
);
5767 t0
= tcg_temp_new();
5768 gen_addr_reg_index(ctx
, t0
);
5769 tcg_gen_extract_tl(t0
, t0
, 28, 4);
5770 gen_helper_load_sr(cpu_gpr
[rd
], cpu_env
, t0
);
5772 if (ra
!= 0 && ra
!= rd
)
5773 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rd
]);
5774 #endif /* defined(CONFIG_USER_ONLY) */
5777 static void gen_rac(DisasContext
*ctx
)
5779 #if defined(CONFIG_USER_ONLY)
5785 t0
= tcg_temp_new();
5786 gen_addr_reg_index(ctx
, t0
);
5787 gen_helper_rac(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5789 #endif /* defined(CONFIG_USER_ONLY) */
5792 static void gen_rfsvc(DisasContext
*ctx
)
5794 #if defined(CONFIG_USER_ONLY)
5799 gen_helper_rfsvc(cpu_env
);
5800 gen_sync_exception(ctx
);
5801 #endif /* defined(CONFIG_USER_ONLY) */
5804 /* svc is not implemented for now */
5806 /* BookE specific instructions */
5808 /* XXX: not implemented on 440 ? */
5809 static void gen_mfapidi(DisasContext
*ctx
)
5812 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5815 /* XXX: not implemented on 440 ? */
5816 static void gen_tlbiva(DisasContext
*ctx
)
5818 #if defined(CONFIG_USER_ONLY)
5824 t0
= tcg_temp_new();
5825 gen_addr_reg_index(ctx
, t0
);
5826 gen_helper_tlbiva(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5828 #endif /* defined(CONFIG_USER_ONLY) */
5831 /* All 405 MAC instructions are translated here */
5832 static inline void gen_405_mulladd_insn(DisasContext
*ctx
, int opc2
, int opc3
,
5833 int ra
, int rb
, int rt
, int Rc
)
5837 t0
= tcg_temp_local_new();
5838 t1
= tcg_temp_local_new();
5840 switch (opc3
& 0x0D) {
5842 /* macchw - macchw. - macchwo - macchwo. */
5843 /* macchws - macchws. - macchwso - macchwso. */
5844 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5845 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5846 /* mulchw - mulchw. */
5847 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5848 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5849 tcg_gen_ext16s_tl(t1
, t1
);
5852 /* macchwu - macchwu. - macchwuo - macchwuo. */
5853 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5854 /* mulchwu - mulchwu. */
5855 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5856 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5857 tcg_gen_ext16u_tl(t1
, t1
);
5860 /* machhw - machhw. - machhwo - machhwo. */
5861 /* machhws - machhws. - machhwso - machhwso. */
5862 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5863 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5864 /* mulhhw - mulhhw. */
5865 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5866 tcg_gen_ext16s_tl(t0
, t0
);
5867 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5868 tcg_gen_ext16s_tl(t1
, t1
);
5871 /* machhwu - machhwu. - machhwuo - machhwuo. */
5872 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5873 /* mulhhwu - mulhhwu. */
5874 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5875 tcg_gen_ext16u_tl(t0
, t0
);
5876 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5877 tcg_gen_ext16u_tl(t1
, t1
);
5880 /* maclhw - maclhw. - maclhwo - maclhwo. */
5881 /* maclhws - maclhws. - maclhwso - maclhwso. */
5882 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5883 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5884 /* mullhw - mullhw. */
5885 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5886 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5889 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5890 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5891 /* mullhwu - mullhwu. */
5892 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5893 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5897 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5898 tcg_gen_mul_tl(t1
, t0
, t1
);
5900 /* nmultiply-and-accumulate (0x0E) */
5901 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5903 /* multiply-and-accumulate (0x0C) */
5904 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5908 /* Check overflow and/or saturate */
5909 TCGLabel
*l1
= gen_new_label();
5912 /* Start with XER OV disabled, the most likely case */
5913 tcg_gen_movi_tl(cpu_ov
, 0);
5917 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5918 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5919 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5920 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5923 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5924 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5928 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5931 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5935 /* Check overflow */
5936 tcg_gen_movi_tl(cpu_ov
, 1);
5937 tcg_gen_movi_tl(cpu_so
, 1);
5940 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5943 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5947 if (unlikely(Rc
) != 0) {
5949 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5953 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5954 static void glue(gen_, name)(DisasContext *ctx) \
5956 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5957 rD(ctx->opcode), Rc(ctx->opcode)); \
5960 /* macchw - macchw. */
5961 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5962 /* macchwo - macchwo. */
5963 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5964 /* macchws - macchws. */
5965 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5966 /* macchwso - macchwso. */
5967 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5968 /* macchwsu - macchwsu. */
5969 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5970 /* macchwsuo - macchwsuo. */
5971 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5972 /* macchwu - macchwu. */
5973 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5974 /* macchwuo - macchwuo. */
5975 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5976 /* machhw - machhw. */
5977 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5978 /* machhwo - machhwo. */
5979 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5980 /* machhws - machhws. */
5981 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5982 /* machhwso - machhwso. */
5983 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5984 /* machhwsu - machhwsu. */
5985 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5986 /* machhwsuo - machhwsuo. */
5987 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5988 /* machhwu - machhwu. */
5989 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5990 /* machhwuo - machhwuo. */
5991 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5992 /* maclhw - maclhw. */
5993 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5994 /* maclhwo - maclhwo. */
5995 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5996 /* maclhws - maclhws. */
5997 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5998 /* maclhwso - maclhwso. */
5999 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
6000 /* maclhwu - maclhwu. */
6001 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
6002 /* maclhwuo - maclhwuo. */
6003 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
6004 /* maclhwsu - maclhwsu. */
6005 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
6006 /* maclhwsuo - maclhwsuo. */
6007 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
6008 /* nmacchw - nmacchw. */
6009 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
6010 /* nmacchwo - nmacchwo. */
6011 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
6012 /* nmacchws - nmacchws. */
6013 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
6014 /* nmacchwso - nmacchwso. */
6015 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
6016 /* nmachhw - nmachhw. */
6017 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
6018 /* nmachhwo - nmachhwo. */
6019 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
6020 /* nmachhws - nmachhws. */
6021 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
6022 /* nmachhwso - nmachhwso. */
6023 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
6024 /* nmaclhw - nmaclhw. */
6025 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
6026 /* nmaclhwo - nmaclhwo. */
6027 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
6028 /* nmaclhws - nmaclhws. */
6029 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
6030 /* nmaclhwso - nmaclhwso. */
6031 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
6033 /* mulchw - mulchw. */
6034 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
6035 /* mulchwu - mulchwu. */
6036 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
6037 /* mulhhw - mulhhw. */
6038 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
6039 /* mulhhwu - mulhhwu. */
6040 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
6041 /* mullhw - mullhw. */
6042 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
6043 /* mullhwu - mullhwu. */
6044 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
6047 static void gen_mfdcr(DisasContext
*ctx
)
6049 #if defined(CONFIG_USER_ONLY)
6055 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
6056 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, dcrn
);
6057 tcg_temp_free(dcrn
);
6058 #endif /* defined(CONFIG_USER_ONLY) */
6062 static void gen_mtdcr(DisasContext
*ctx
)
6064 #if defined(CONFIG_USER_ONLY)
6070 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
6071 gen_helper_store_dcr(cpu_env
, dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
6072 tcg_temp_free(dcrn
);
6073 #endif /* defined(CONFIG_USER_ONLY) */
6077 /* XXX: not implemented on 440 ? */
6078 static void gen_mfdcrx(DisasContext
*ctx
)
6080 #if defined(CONFIG_USER_ONLY)
6084 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6085 cpu_gpr
[rA(ctx
->opcode
)]);
6086 /* Note: Rc update flag set leads to undefined state of Rc0 */
6087 #endif /* defined(CONFIG_USER_ONLY) */
6091 /* XXX: not implemented on 440 ? */
6092 static void gen_mtdcrx(DisasContext
*ctx
)
6094 #if defined(CONFIG_USER_ONLY)
6098 gen_helper_store_dcr(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6099 cpu_gpr
[rS(ctx
->opcode
)]);
6100 /* Note: Rc update flag set leads to undefined state of Rc0 */
6101 #endif /* defined(CONFIG_USER_ONLY) */
6104 /* mfdcrux (PPC 460) : user-mode access to DCR */
6105 static void gen_mfdcrux(DisasContext
*ctx
)
6107 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6108 cpu_gpr
[rA(ctx
->opcode
)]);
6109 /* Note: Rc update flag set leads to undefined state of Rc0 */
6112 /* mtdcrux (PPC 460) : user-mode access to DCR */
6113 static void gen_mtdcrux(DisasContext
*ctx
)
6115 gen_helper_store_dcr(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6116 cpu_gpr
[rS(ctx
->opcode
)]);
6117 /* Note: Rc update flag set leads to undefined state of Rc0 */
6121 static void gen_dccci(DisasContext
*ctx
)
6124 /* interpreted as no-op */
6128 static void gen_dcread(DisasContext
*ctx
)
6130 #if defined(CONFIG_USER_ONLY)
6136 gen_set_access_type(ctx
, ACCESS_CACHE
);
6137 EA
= tcg_temp_new();
6138 gen_addr_reg_index(ctx
, EA
);
6139 val
= tcg_temp_new();
6140 gen_qemu_ld32u(ctx
, val
, EA
);
6142 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
6144 #endif /* defined(CONFIG_USER_ONLY) */
6148 static void gen_icbt_40x(DisasContext
*ctx
)
6150 /* interpreted as no-op */
6151 /* XXX: specification say this is treated as a load by the MMU
6152 * but does not generate any exception
6157 static void gen_iccci(DisasContext
*ctx
)
6160 /* interpreted as no-op */
6164 static void gen_icread(DisasContext
*ctx
)
6167 /* interpreted as no-op */
6170 /* rfci (supervisor only) */
6171 static void gen_rfci_40x(DisasContext
*ctx
)
6173 #if defined(CONFIG_USER_ONLY)
6177 /* Restore CPU state */
6178 gen_helper_40x_rfci(cpu_env
);
6179 gen_sync_exception(ctx
);
6180 #endif /* defined(CONFIG_USER_ONLY) */
6183 static void gen_rfci(DisasContext
*ctx
)
6185 #if defined(CONFIG_USER_ONLY)
6189 /* Restore CPU state */
6190 gen_helper_rfci(cpu_env
);
6191 gen_sync_exception(ctx
);
6192 #endif /* defined(CONFIG_USER_ONLY) */
6195 /* BookE specific */
6197 /* XXX: not implemented on 440 ? */
6198 static void gen_rfdi(DisasContext
*ctx
)
6200 #if defined(CONFIG_USER_ONLY)
6204 /* Restore CPU state */
6205 gen_helper_rfdi(cpu_env
);
6206 gen_sync_exception(ctx
);
6207 #endif /* defined(CONFIG_USER_ONLY) */
6210 /* XXX: not implemented on 440 ? */
6211 static void gen_rfmci(DisasContext
*ctx
)
6213 #if defined(CONFIG_USER_ONLY)
6217 /* Restore CPU state */
6218 gen_helper_rfmci(cpu_env
);
6219 gen_sync_exception(ctx
);
6220 #endif /* defined(CONFIG_USER_ONLY) */
6223 /* TLB management - PowerPC 405 implementation */
6226 static void gen_tlbre_40x(DisasContext
*ctx
)
6228 #if defined(CONFIG_USER_ONLY)
6232 switch (rB(ctx
->opcode
)) {
6234 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6235 cpu_gpr
[rA(ctx
->opcode
)]);
6238 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6239 cpu_gpr
[rA(ctx
->opcode
)]);
6242 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6245 #endif /* defined(CONFIG_USER_ONLY) */
6248 /* tlbsx - tlbsx. */
6249 static void gen_tlbsx_40x(DisasContext
*ctx
)
6251 #if defined(CONFIG_USER_ONLY)
6257 t0
= tcg_temp_new();
6258 gen_addr_reg_index(ctx
, t0
);
6259 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
6261 if (Rc(ctx
->opcode
)) {
6262 TCGLabel
*l1
= gen_new_label();
6263 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
6264 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6265 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6268 #endif /* defined(CONFIG_USER_ONLY) */
6272 static void gen_tlbwe_40x(DisasContext
*ctx
)
6274 #if defined(CONFIG_USER_ONLY)
6279 switch (rB(ctx
->opcode
)) {
6281 gen_helper_4xx_tlbwe_hi(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6282 cpu_gpr
[rS(ctx
->opcode
)]);
6285 gen_helper_4xx_tlbwe_lo(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6286 cpu_gpr
[rS(ctx
->opcode
)]);
6289 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6292 #endif /* defined(CONFIG_USER_ONLY) */
6295 /* TLB management - PowerPC 440 implementation */
6298 static void gen_tlbre_440(DisasContext
*ctx
)
6300 #if defined(CONFIG_USER_ONLY)
6305 switch (rB(ctx
->opcode
)) {
6310 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6311 gen_helper_440_tlbre(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6312 t0
, cpu_gpr
[rA(ctx
->opcode
)]);
6313 tcg_temp_free_i32(t0
);
6317 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6320 #endif /* defined(CONFIG_USER_ONLY) */
6323 /* tlbsx - tlbsx. */
6324 static void gen_tlbsx_440(DisasContext
*ctx
)
6326 #if defined(CONFIG_USER_ONLY)
6332 t0
= tcg_temp_new();
6333 gen_addr_reg_index(ctx
, t0
);
6334 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
6336 if (Rc(ctx
->opcode
)) {
6337 TCGLabel
*l1
= gen_new_label();
6338 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
6339 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6340 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6343 #endif /* defined(CONFIG_USER_ONLY) */
6347 static void gen_tlbwe_440(DisasContext
*ctx
)
6349 #if defined(CONFIG_USER_ONLY)
6353 switch (rB(ctx
->opcode
)) {
6358 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6359 gen_helper_440_tlbwe(cpu_env
, t0
, cpu_gpr
[rA(ctx
->opcode
)],
6360 cpu_gpr
[rS(ctx
->opcode
)]);
6361 tcg_temp_free_i32(t0
);
6365 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6368 #endif /* defined(CONFIG_USER_ONLY) */
6371 /* TLB management - PowerPC BookE 2.06 implementation */
6374 static void gen_tlbre_booke206(DisasContext
*ctx
)
6376 #if defined(CONFIG_USER_ONLY)
6380 gen_helper_booke206_tlbre(cpu_env
);
6381 #endif /* defined(CONFIG_USER_ONLY) */
6384 /* tlbsx - tlbsx. */
6385 static void gen_tlbsx_booke206(DisasContext
*ctx
)
6387 #if defined(CONFIG_USER_ONLY)
6393 if (rA(ctx
->opcode
)) {
6394 t0
= tcg_temp_new();
6395 tcg_gen_mov_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
6397 t0
= tcg_const_tl(0);
6400 tcg_gen_add_tl(t0
, t0
, cpu_gpr
[rB(ctx
->opcode
)]);
6401 gen_helper_booke206_tlbsx(cpu_env
, t0
);
6403 #endif /* defined(CONFIG_USER_ONLY) */
6407 static void gen_tlbwe_booke206(DisasContext
*ctx
)
6409 #if defined(CONFIG_USER_ONLY)
6413 gen_helper_booke206_tlbwe(cpu_env
);
6414 #endif /* defined(CONFIG_USER_ONLY) */
6417 static void gen_tlbivax_booke206(DisasContext
*ctx
)
6419 #if defined(CONFIG_USER_ONLY)
6425 t0
= tcg_temp_new();
6426 gen_addr_reg_index(ctx
, t0
);
6427 gen_helper_booke206_tlbivax(cpu_env
, t0
);
6429 #endif /* defined(CONFIG_USER_ONLY) */
6432 static void gen_tlbilx_booke206(DisasContext
*ctx
)
6434 #if defined(CONFIG_USER_ONLY)
6440 t0
= tcg_temp_new();
6441 gen_addr_reg_index(ctx
, t0
);
6443 switch((ctx
->opcode
>> 21) & 0x3) {
6445 gen_helper_booke206_tlbilx0(cpu_env
, t0
);
6448 gen_helper_booke206_tlbilx1(cpu_env
, t0
);
6451 gen_helper_booke206_tlbilx3(cpu_env
, t0
);
6454 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6459 #endif /* defined(CONFIG_USER_ONLY) */
6464 static void gen_wrtee(DisasContext
*ctx
)
6466 #if defined(CONFIG_USER_ONLY)
6472 t0
= tcg_temp_new();
6473 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
6474 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6475 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
6477 /* Stop translation to have a chance to raise an exception
6478 * if we just set msr_ee to 1
6480 gen_stop_exception(ctx
);
6481 #endif /* defined(CONFIG_USER_ONLY) */
6485 static void gen_wrteei(DisasContext
*ctx
)
6487 #if defined(CONFIG_USER_ONLY)
6491 if (ctx
->opcode
& 0x00008000) {
6492 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
6493 /* Stop translation to have a chance to raise an exception */
6494 gen_stop_exception(ctx
);
6496 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6498 #endif /* defined(CONFIG_USER_ONLY) */
6501 /* PowerPC 440 specific instructions */
6504 static void gen_dlmzb(DisasContext
*ctx
)
6506 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
6507 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
6508 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
6509 tcg_temp_free_i32(t0
);
6512 /* mbar replaces eieio on 440 */
6513 static void gen_mbar(DisasContext
*ctx
)
6515 /* interpreted as no-op */
6518 /* msync replaces sync on 440 */
6519 static void gen_msync_4xx(DisasContext
*ctx
)
6521 /* Only e500 seems to treat reserved bits as invalid */
6522 if ((ctx
->insns_flags2
& PPC2_BOOKE206
) &&
6523 (ctx
->opcode
& 0x03FFF801)) {
6524 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6526 /* otherwise interpreted as no-op */
6530 static void gen_icbt_440(DisasContext
*ctx
)
6532 /* interpreted as no-op */
6533 /* XXX: specification say this is treated as a load by the MMU
6534 * but does not generate any exception
6538 /* Embedded.Processor Control */
6540 static void gen_msgclr(DisasContext
*ctx
)
6542 #if defined(CONFIG_USER_ONLY)
6546 if (is_book3s_arch2x(ctx
)) {
6547 gen_helper_book3s_msgclr(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
6549 gen_helper_msgclr(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
6551 #endif /* defined(CONFIG_USER_ONLY) */
6554 static void gen_msgsnd(DisasContext
*ctx
)
6556 #if defined(CONFIG_USER_ONLY)
6560 if (is_book3s_arch2x(ctx
)) {
6561 gen_helper_book3s_msgsnd(cpu_gpr
[rB(ctx
->opcode
)]);
6563 gen_helper_msgsnd(cpu_gpr
[rB(ctx
->opcode
)]);
6565 #endif /* defined(CONFIG_USER_ONLY) */
6568 static void gen_msgsync(DisasContext
*ctx
)
6570 #if defined(CONFIG_USER_ONLY)
6574 #endif /* defined(CONFIG_USER_ONLY) */
6575 /* interpreted as no-op */
6578 #if defined(TARGET_PPC64)
6579 static void gen_maddld(DisasContext
*ctx
)
6581 TCGv_i64 t1
= tcg_temp_new_i64();
6583 tcg_gen_mul_i64(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
6584 tcg_gen_add_i64(cpu_gpr
[rD(ctx
->opcode
)], t1
, cpu_gpr
[rC(ctx
->opcode
)]);
6585 tcg_temp_free_i64(t1
);
6588 /* maddhd maddhdu */
6589 static void gen_maddhd_maddhdu(DisasContext
*ctx
)
6591 TCGv_i64 lo
= tcg_temp_new_i64();
6592 TCGv_i64 hi
= tcg_temp_new_i64();
6593 TCGv_i64 t1
= tcg_temp_new_i64();
6595 if (Rc(ctx
->opcode
)) {
6596 tcg_gen_mulu2_i64(lo
, hi
, cpu_gpr
[rA(ctx
->opcode
)],
6597 cpu_gpr
[rB(ctx
->opcode
)]);
6598 tcg_gen_movi_i64(t1
, 0);
6600 tcg_gen_muls2_i64(lo
, hi
, cpu_gpr
[rA(ctx
->opcode
)],
6601 cpu_gpr
[rB(ctx
->opcode
)]);
6602 tcg_gen_sari_i64(t1
, cpu_gpr
[rC(ctx
->opcode
)], 63);
6604 tcg_gen_add2_i64(t1
, cpu_gpr
[rD(ctx
->opcode
)], lo
, hi
,
6605 cpu_gpr
[rC(ctx
->opcode
)], t1
);
6606 tcg_temp_free_i64(lo
);
6607 tcg_temp_free_i64(hi
);
6608 tcg_temp_free_i64(t1
);
6610 #endif /* defined(TARGET_PPC64) */
6612 static void gen_tbegin(DisasContext
*ctx
)
6614 if (unlikely(!ctx
->tm_enabled
)) {
6615 gen_exception_err(ctx
, POWERPC_EXCP_FU
, FSCR_IC_TM
);
6618 gen_helper_tbegin(cpu_env
);
6621 #define GEN_TM_NOOP(name) \
6622 static inline void gen_##name(DisasContext *ctx) \
6624 if (unlikely(!ctx->tm_enabled)) { \
6625 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6628 /* Because tbegin always fails in QEMU, these user \
6629 * space instructions all have a simple implementation: \
6631 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6632 * = 0b0 || 0b00 || 0b0 \
6634 tcg_gen_movi_i32(cpu_crf[0], 0); \
6638 GEN_TM_NOOP(tabort
);
6639 GEN_TM_NOOP(tabortwc
);
6640 GEN_TM_NOOP(tabortwci
);
6641 GEN_TM_NOOP(tabortdc
);
6642 GEN_TM_NOOP(tabortdci
);
6644 static inline void gen_cp_abort(DisasContext
*ctx
)
6649 #define GEN_CP_PASTE_NOOP(name) \
6650 static inline void gen_##name(DisasContext *ctx) \
6652 /* Generate invalid exception until \
6653 * we have an implementation of the copy \
6659 GEN_CP_PASTE_NOOP(copy
)
6660 GEN_CP_PASTE_NOOP(paste
)
6662 static void gen_tcheck(DisasContext
*ctx
)
6664 if (unlikely(!ctx
->tm_enabled
)) {
6665 gen_exception_err(ctx
, POWERPC_EXCP_FU
, FSCR_IC_TM
);
6668 /* Because tbegin always fails, the tcheck implementation
6671 * CR[CRF] = TDOOMED || MSR[TS] || 0b0
6672 * = 0b1 || 0b00 || 0b0
6674 tcg_gen_movi_i32(cpu_crf
[crfD(ctx
->opcode
)], 0x8);
6677 #if defined(CONFIG_USER_ONLY)
6678 #define GEN_TM_PRIV_NOOP(name) \
6679 static inline void gen_##name(DisasContext *ctx) \
6681 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC); \
6686 #define GEN_TM_PRIV_NOOP(name) \
6687 static inline void gen_##name(DisasContext *ctx) \
6690 if (unlikely(!ctx->tm_enabled)) { \
6691 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6694 /* Because tbegin always fails, the implementation is \
6697 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6698 * = 0b0 || 0b00 | 0b0 \
6700 tcg_gen_movi_i32(cpu_crf[0], 0); \
6705 GEN_TM_PRIV_NOOP(treclaim
);
6706 GEN_TM_PRIV_NOOP(trechkpt
);
6708 static inline void get_fpr(TCGv_i64 dst
, int regno
)
6710 tcg_gen_ld_i64(dst
, cpu_env
, fpr_offset(regno
));
6713 static inline void set_fpr(int regno
, TCGv_i64 src
)
6715 tcg_gen_st_i64(src
, cpu_env
, fpr_offset(regno
));
6718 static inline void get_avr64(TCGv_i64 dst
, int regno
, bool high
)
6720 tcg_gen_ld_i64(dst
, cpu_env
, avr64_offset(regno
, high
));
6723 static inline void set_avr64(int regno
, TCGv_i64 src
, bool high
)
6725 tcg_gen_st_i64(src
, cpu_env
, avr64_offset(regno
, high
));
6728 #include "translate/fp-impl.inc.c"
6730 #include "translate/vmx-impl.inc.c"
6732 #include "translate/vsx-impl.inc.c"
6734 #include "translate/dfp-impl.inc.c"
6736 #include "translate/spe-impl.inc.c"
6738 /* Handles lfdp, lxsd, lxssp */
6739 static void gen_dform39(DisasContext
*ctx
)
6741 switch (ctx
->opcode
& 0x3) {
6743 if (ctx
->insns_flags2
& PPC2_ISA205
) {
6744 return gen_lfdp(ctx
);
6748 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6749 return gen_lxsd(ctx
);
6753 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6754 return gen_lxssp(ctx
);
6758 return gen_invalid(ctx
);
6761 /* handles stfdp, lxv, stxsd, stxssp lxvx */
6762 static void gen_dform3D(DisasContext
*ctx
)
6764 if ((ctx
->opcode
& 3) == 1) { /* DQ-FORM */
6765 switch (ctx
->opcode
& 0x7) {
6767 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6768 return gen_lxv(ctx
);
6772 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6773 return gen_stxv(ctx
);
6777 } else { /* DS-FORM */
6778 switch (ctx
->opcode
& 0x3) {
6780 if (ctx
->insns_flags2
& PPC2_ISA205
) {
6781 return gen_stfdp(ctx
);
6785 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6786 return gen_stxsd(ctx
);
6789 case 3: /* stxssp */
6790 if (ctx
->insns_flags2
& PPC2_ISA300
) {
6791 return gen_stxssp(ctx
);
6796 return gen_invalid(ctx
);
6799 static opcode_t opcodes
[] = {
6800 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
),
6801 GEN_HANDLER(cmp
, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER
),
6802 GEN_HANDLER(cmpi
, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
6803 GEN_HANDLER(cmpl
, 0x1F, 0x00, 0x01, 0x00400001, PPC_INTEGER
),
6804 GEN_HANDLER(cmpli
, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
6805 #if defined(TARGET_PPC64)
6806 GEN_HANDLER_E(cmpeqb
, 0x1F, 0x00, 0x07, 0x00600000, PPC_NONE
, PPC2_ISA300
),
6808 GEN_HANDLER_E(cmpb
, 0x1F, 0x1C, 0x0F, 0x00000001, PPC_NONE
, PPC2_ISA205
),
6809 GEN_HANDLER_E(cmprb
, 0x1F, 0x00, 0x06, 0x00400001, PPC_NONE
, PPC2_ISA300
),
6810 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
),
6811 GEN_HANDLER(addi
, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6812 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6813 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6814 GEN_HANDLER(addis
, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6815 GEN_HANDLER_E(addpcis
, 0x13, 0x2, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6816 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
),
6817 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
),
6818 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
),
6819 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
),
6820 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6821 #if defined(TARGET_PPC64)
6822 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
),
6824 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
),
6825 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
),
6826 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6827 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6828 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6829 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
),
6830 GEN_HANDLER_E(cnttzw
, 0x1F, 0x1A, 0x10, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6831 GEN_HANDLER_E(copy
, 0x1F, 0x06, 0x18, 0x03C00001, PPC_NONE
, PPC2_ISA300
),
6832 GEN_HANDLER_E(cp_abort
, 0x1F, 0x06, 0x1A, 0x03FFF801, PPC_NONE
, PPC2_ISA300
),
6833 GEN_HANDLER_E(paste
, 0x1F, 0x06, 0x1C, 0x03C00000, PPC_NONE
, PPC2_ISA300
),
6834 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
),
6835 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
),
6836 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6837 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6838 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6839 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6840 GEN_HANDLER(popcntb
, 0x1F, 0x1A, 0x03, 0x0000F801, PPC_POPCNTB
),
6841 GEN_HANDLER(popcntw
, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD
),
6842 GEN_HANDLER_E(prtyw
, 0x1F, 0x1A, 0x04, 0x0000F801, PPC_NONE
, PPC2_ISA205
),
6843 #if defined(TARGET_PPC64)
6844 GEN_HANDLER(popcntd
, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD
),
6845 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
),
6846 GEN_HANDLER_E(cnttzd
, 0x1F, 0x1A, 0x11, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6847 GEN_HANDLER_E(darn
, 0x1F, 0x13, 0x17, 0x001CF801, PPC_NONE
, PPC2_ISA300
),
6848 GEN_HANDLER_E(prtyd
, 0x1F, 0x1A, 0x05, 0x0000F801, PPC_NONE
, PPC2_ISA205
),
6849 GEN_HANDLER_E(bpermd
, 0x1F, 0x1C, 0x07, 0x00000001, PPC_NONE
, PPC2_PERM_ISA206
),
6851 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6852 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6853 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6854 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
),
6855 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
),
6856 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
),
6857 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
),
6858 #if defined(TARGET_PPC64)
6859 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
),
6860 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
),
6861 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
),
6862 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
),
6863 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
),
6864 GEN_HANDLER2_E(extswsli0
, "extswsli", 0x1F, 0x1A, 0x1B, 0x00000000,
6865 PPC_NONE
, PPC2_ISA300
),
6866 GEN_HANDLER2_E(extswsli1
, "extswsli", 0x1F, 0x1B, 0x1B, 0x00000000,
6867 PPC_NONE
, PPC2_ISA300
),
6869 #if defined(TARGET_PPC64)
6870 GEN_HANDLER(ld
, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B
),
6871 GEN_HANDLER(lq
, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX
),
6872 GEN_HANDLER(std
, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B
),
6874 /* handles lfdp, lxsd, lxssp */
6875 GEN_HANDLER_E(dform39
, 0x39, 0xFF, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA205
),
6876 /* handles stfdp, lxv, stxsd, stxssp, stxv */
6877 GEN_HANDLER_E(dform3D
, 0x3D, 0xFF, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA205
),
6878 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6879 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6880 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
),
6881 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
),
6882 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
),
6883 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
),
6884 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x01FFF801, PPC_MEM_EIEIO
),
6885 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
),
6886 GEN_HANDLER_E(lbarx
, 0x1F, 0x14, 0x01, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6887 GEN_HANDLER_E(lharx
, 0x1F, 0x14, 0x03, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6888 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES
),
6889 GEN_HANDLER_E(lwat
, 0x1F, 0x06, 0x12, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6890 GEN_HANDLER_E(stwat
, 0x1F, 0x06, 0x16, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6891 GEN_HANDLER_E(stbcx_
, 0x1F, 0x16, 0x15, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6892 GEN_HANDLER_E(sthcx_
, 0x1F, 0x16, 0x16, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6893 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
),
6894 #if defined(TARGET_PPC64)
6895 GEN_HANDLER_E(ldat
, 0x1F, 0x06, 0x13, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6896 GEN_HANDLER_E(stdat
, 0x1F, 0x06, 0x17, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6897 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B
),
6898 GEN_HANDLER_E(lqarx
, 0x1F, 0x14, 0x08, 0, PPC_NONE
, PPC2_LSQ_ISA207
),
6899 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
),
6900 GEN_HANDLER_E(stqcx_
, 0x1F, 0x16, 0x05, 0, PPC_NONE
, PPC2_LSQ_ISA207
),
6902 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
),
6903 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT
),
6904 GEN_HANDLER_E(wait
, 0x1F, 0x1E, 0x00, 0x039FF801, PPC_NONE
, PPC2_ISA300
),
6905 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6906 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6907 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
),
6908 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
),
6909 GEN_HANDLER_E(bctar
, 0x13, 0x10, 0x11, 0x0000E000, PPC_NONE
, PPC2_BCTAR_ISA207
),
6910 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
),
6911 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
),
6912 #if defined(TARGET_PPC64)
6913 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
),
6914 GEN_HANDLER_E(stop
, 0x13, 0x12, 0x0b, 0x03FFF801, PPC_NONE
, PPC2_ISA300
),
6915 GEN_HANDLER_E(doze
, 0x13, 0x12, 0x0c, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6916 GEN_HANDLER_E(nap
, 0x13, 0x12, 0x0d, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6917 GEN_HANDLER_E(sleep
, 0x13, 0x12, 0x0e, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6918 GEN_HANDLER_E(rvwinkle
, 0x13, 0x12, 0x0f, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6919 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
),
6921 GEN_HANDLER(sc
, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW
),
6922 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
),
6923 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6924 #if defined(TARGET_PPC64)
6925 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
),
6926 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
),
6928 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
),
6929 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
),
6930 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
),
6931 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
),
6932 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
),
6933 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
),
6934 #if defined(TARGET_PPC64)
6935 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
),
6936 GEN_HANDLER_E(setb
, 0x1F, 0x00, 0x04, 0x0003F801, PPC_NONE
, PPC2_ISA300
),
6937 GEN_HANDLER_E(mcrxrx
, 0x1F, 0x00, 0x12, 0x007FF801, PPC_NONE
, PPC2_ISA300
),
6939 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001EF801, PPC_MISC
),
6940 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000000, PPC_MISC
),
6941 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
),
6942 GEN_HANDLER_E(dcbfep
, 0x1F, 0x1F, 0x03, 0x03C00001, PPC_NONE
, PPC2_BOOKE206
),
6943 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
),
6944 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
),
6945 GEN_HANDLER_E(dcbstep
, 0x1F, 0x1F, 0x01, 0x03E00001, PPC_NONE
, PPC2_BOOKE206
),
6946 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x00000001, PPC_CACHE
),
6947 GEN_HANDLER_E(dcbtep
, 0x1F, 0x1F, 0x09, 0x00000001, PPC_NONE
, PPC2_BOOKE206
),
6948 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x00000001, PPC_CACHE
),
6949 GEN_HANDLER_E(dcbtstep
, 0x1F, 0x1F, 0x07, 0x00000001, PPC_NONE
, PPC2_BOOKE206
),
6950 GEN_HANDLER_E(dcbtls
, 0x1F, 0x06, 0x05, 0x02000001, PPC_BOOKE
, PPC2_BOOKE206
),
6951 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ
),
6952 GEN_HANDLER_E(dcbzep
, 0x1F, 0x1F, 0x1F, 0x03C00001, PPC_NONE
, PPC2_BOOKE206
),
6953 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
),
6954 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x01800001, PPC_ALTIVEC
),
6955 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
),
6956 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
),
6957 GEN_HANDLER_E(icbiep
, 0x1F, 0x1F, 0x1E, 0x03E00001, PPC_NONE
, PPC2_BOOKE206
),
6958 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
),
6959 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
),
6960 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
),
6961 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
),
6962 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
),
6963 #if defined(TARGET_PPC64)
6964 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
),
6965 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
6967 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
),
6968 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
6970 GEN_HANDLER2(slbmte
, "slbmte", 0x1F, 0x12, 0x0C, 0x001F0001, PPC_SEGMENT_64B
),
6971 GEN_HANDLER2(slbmfee
, "slbmfee", 0x1F, 0x13, 0x1C, 0x001F0001, PPC_SEGMENT_64B
),
6972 GEN_HANDLER2(slbmfev
, "slbmfev", 0x1F, 0x13, 0x1A, 0x001F0001, PPC_SEGMENT_64B
),
6973 GEN_HANDLER2(slbfee_
, "slbfee.", 0x1F, 0x13, 0x1E, 0x001F0000, PPC_SEGMENT_64B
),
6975 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
),
6976 /* XXX Those instructions will need to be handled differently for
6977 * different ISA versions */
6978 GEN_HANDLER(tlbiel
, 0x1F, 0x12, 0x08, 0x001F0001, PPC_MEM_TLBIE
),
6979 GEN_HANDLER(tlbie
, 0x1F, 0x12, 0x09, 0x001F0001, PPC_MEM_TLBIE
),
6980 GEN_HANDLER_E(tlbiel
, 0x1F, 0x12, 0x08, 0x00100001, PPC_NONE
, PPC2_ISA300
),
6981 GEN_HANDLER_E(tlbie
, 0x1F, 0x12, 0x09, 0x00100001, PPC_NONE
, PPC2_ISA300
),
6982 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
),
6983 #if defined(TARGET_PPC64)
6984 GEN_HANDLER(slbia
, 0x1F, 0x12, 0x0F, 0x031FFC01, PPC_SLBI
),
6985 GEN_HANDLER(slbie
, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI
),
6986 GEN_HANDLER_E(slbieg
, 0x1F, 0x12, 0x0E, 0x001F0001, PPC_NONE
, PPC2_ISA300
),
6987 GEN_HANDLER_E(slbsync
, 0x1F, 0x12, 0x0A, 0x03FFF801, PPC_NONE
, PPC2_ISA300
),
6989 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
),
6990 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
),
6991 GEN_HANDLER(abs
, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR
),
6992 GEN_HANDLER(abso
, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR
),
6993 GEN_HANDLER(clcs
, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR
),
6994 GEN_HANDLER(div
, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR
),
6995 GEN_HANDLER(divo
, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR
),
6996 GEN_HANDLER(divs
, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR
),
6997 GEN_HANDLER(divso
, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR
),
6998 GEN_HANDLER(doz
, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR
),
6999 GEN_HANDLER(dozo
, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR
),
7000 GEN_HANDLER(dozi
, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
7001 GEN_HANDLER(lscbx
, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR
),
7002 GEN_HANDLER(maskg
, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR
),
7003 GEN_HANDLER(maskir
, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR
),
7004 GEN_HANDLER(mul
, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR
),
7005 GEN_HANDLER(mulo
, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR
),
7006 GEN_HANDLER(nabs
, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR
),
7007 GEN_HANDLER(nabso
, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR
),
7008 GEN_HANDLER(rlmi
, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
7009 GEN_HANDLER(rrib
, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR
),
7010 GEN_HANDLER(sle
, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR
),
7011 GEN_HANDLER(sleq
, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR
),
7012 GEN_HANDLER(sliq
, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR
),
7013 GEN_HANDLER(slliq
, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR
),
7014 GEN_HANDLER(sllq
, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR
),
7015 GEN_HANDLER(slq
, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR
),
7016 GEN_HANDLER(sraiq
, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR
),
7017 GEN_HANDLER(sraq
, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR
),
7018 GEN_HANDLER(sre
, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR
),
7019 GEN_HANDLER(srea
, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR
),
7020 GEN_HANDLER(sreq
, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR
),
7021 GEN_HANDLER(sriq
, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR
),
7022 GEN_HANDLER(srliq
, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR
),
7023 GEN_HANDLER(srlq
, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR
),
7024 GEN_HANDLER(srq
, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR
),
7025 GEN_HANDLER(dsa
, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC
),
7026 GEN_HANDLER(esa
, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC
),
7027 GEN_HANDLER(mfrom
, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC
),
7028 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
),
7029 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
),
7030 GEN_HANDLER2(tlbld_74xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB
),
7031 GEN_HANDLER2(tlbli_74xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB
),
7032 GEN_HANDLER(clf
, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER
),
7033 GEN_HANDLER(cli
, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER
),
7034 GEN_HANDLER(dclst
, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER
),
7035 GEN_HANDLER(mfsri
, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER
),
7036 GEN_HANDLER(rac
, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER
),
7037 GEN_HANDLER(rfsvc
, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER
),
7038 GEN_HANDLER(lfq
, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
7039 GEN_HANDLER(lfqu
, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
7040 GEN_HANDLER(lfqux
, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2
),
7041 GEN_HANDLER(lfqx
, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2
),
7042 GEN_HANDLER(stfq
, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
7043 GEN_HANDLER(stfqu
, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
7044 GEN_HANDLER(stfqux
, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2
),
7045 GEN_HANDLER(stfqx
, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2
),
7046 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
),
7047 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
),
7048 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
),
7049 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
),
7050 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
),
7051 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
),
7052 GEN_HANDLER(mfdcrux
, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX
),
7053 GEN_HANDLER(mtdcrux
, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX
),
7054 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
),
7055 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
),
7056 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
),
7057 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
),
7058 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
),
7059 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
),
7060 GEN_HANDLER_E(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
, PPC2_BOOKE206
),
7061 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
),
7062 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
),
7063 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
),
7064 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
),
7065 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
),
7066 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
),
7067 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
),
7068 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
),
7069 GEN_HANDLER2_E(tlbre_booke206
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
7070 PPC_NONE
, PPC2_BOOKE206
),
7071 GEN_HANDLER2_E(tlbsx_booke206
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
7072 PPC_NONE
, PPC2_BOOKE206
),
7073 GEN_HANDLER2_E(tlbwe_booke206
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
7074 PPC_NONE
, PPC2_BOOKE206
),
7075 GEN_HANDLER2_E(tlbivax_booke206
, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
7076 PPC_NONE
, PPC2_BOOKE206
),
7077 GEN_HANDLER2_E(tlbilx_booke206
, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
7078 PPC_NONE
, PPC2_BOOKE206
),
7079 GEN_HANDLER2_E(msgsnd
, "msgsnd", 0x1F, 0x0E, 0x06, 0x03ff0001,
7080 PPC_NONE
, PPC2_PRCNTL
),
7081 GEN_HANDLER2_E(msgclr
, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001,
7082 PPC_NONE
, PPC2_PRCNTL
),
7083 GEN_HANDLER2_E(msgsync
, "msgsync", 0x1F, 0x16, 0x1B, 0x00000000,
7084 PPC_NONE
, PPC2_PRCNTL
),
7085 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
),
7086 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE
),
7087 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
),
7088 GEN_HANDLER_E(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801,
7089 PPC_BOOKE
, PPC2_BOOKE206
),
7090 GEN_HANDLER(msync_4xx
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_BOOKE
),
7091 GEN_HANDLER2_E(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
7092 PPC_BOOKE
, PPC2_BOOKE206
),
7093 GEN_HANDLER2(icbt_440
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001,
7095 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
),
7096 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
),
7097 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
),
7098 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
),
7099 GEN_HANDLER(vmladduhm
, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC
),
7100 #if defined(TARGET_PPC64)
7101 GEN_HANDLER_E(maddhd_maddhdu
, 0x04, 0x18, 0xFF, 0x00000000, PPC_NONE
,
7103 GEN_HANDLER_E(maddld
, 0x04, 0x19, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA300
),
7106 #undef GEN_INT_ARITH_ADD
7107 #undef GEN_INT_ARITH_ADD_CONST
7108 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
7109 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
7110 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
7111 add_ca, compute_ca, compute_ov) \
7112 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
7113 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
7114 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
7115 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
7116 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
7117 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
7118 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
7119 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
7120 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
7121 GEN_HANDLER_E(addex
, 0x1F, 0x0A, 0x05, 0x00000000, PPC_NONE
, PPC2_ISA300
),
7122 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
7123 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
7125 #undef GEN_INT_ARITH_DIVW
7126 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
7127 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
7128 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0),
7129 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1),
7130 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0),
7131 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1),
7132 GEN_HANDLER_E(divwe
, 0x1F, 0x0B, 0x0D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7133 GEN_HANDLER_E(divweo
, 0x1F, 0x0B, 0x1D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7134 GEN_HANDLER_E(divweu
, 0x1F, 0x0B, 0x0C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7135 GEN_HANDLER_E(divweuo
, 0x1F, 0x0B, 0x1C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7136 GEN_HANDLER_E(modsw
, 0x1F, 0x0B, 0x18, 0x00000001, PPC_NONE
, PPC2_ISA300
),
7137 GEN_HANDLER_E(moduw
, 0x1F, 0x0B, 0x08, 0x00000001, PPC_NONE
, PPC2_ISA300
),
7139 #if defined(TARGET_PPC64)
7140 #undef GEN_INT_ARITH_DIVD
7141 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
7142 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
7143 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0),
7144 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1),
7145 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0),
7146 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1),
7148 GEN_HANDLER_E(divdeu
, 0x1F, 0x09, 0x0C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7149 GEN_HANDLER_E(divdeuo
, 0x1F, 0x09, 0x1C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7150 GEN_HANDLER_E(divde
, 0x1F, 0x09, 0x0D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7151 GEN_HANDLER_E(divdeo
, 0x1F, 0x09, 0x1D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
7152 GEN_HANDLER_E(modsd
, 0x1F, 0x09, 0x18, 0x00000001, PPC_NONE
, PPC2_ISA300
),
7153 GEN_HANDLER_E(modud
, 0x1F, 0x09, 0x08, 0x00000001, PPC_NONE
, PPC2_ISA300
),
7155 #undef GEN_INT_ARITH_MUL_HELPER
7156 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
7157 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
7158 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00),
7159 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02),
7160 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17),
7163 #undef GEN_INT_ARITH_SUBF
7164 #undef GEN_INT_ARITH_SUBF_CONST
7165 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
7166 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
7167 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
7168 add_ca, compute_ca, compute_ov) \
7169 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
7170 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
7171 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
7172 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
7173 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
7174 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
7175 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
7176 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
7177 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
7178 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
7179 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
7183 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
7184 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
7185 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
7186 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
7187 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
),
7188 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
),
7189 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
),
7190 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
),
7191 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
),
7192 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
),
7193 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
),
7194 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
),
7195 #if defined(TARGET_PPC64)
7196 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
),
7199 #if defined(TARGET_PPC64)
7202 #define GEN_PPC64_R2(name, opc1, opc2) \
7203 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
7204 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
7206 #define GEN_PPC64_R4(name, opc1, opc2) \
7207 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
7208 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
7210 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
7212 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
7214 GEN_PPC64_R4(rldicl
, 0x1E, 0x00),
7215 GEN_PPC64_R4(rldicr
, 0x1E, 0x02),
7216 GEN_PPC64_R4(rldic
, 0x1E, 0x04),
7217 GEN_PPC64_R2(rldcl
, 0x1E, 0x08),
7218 GEN_PPC64_R2(rldcr
, 0x1E, 0x09),
7219 GEN_PPC64_R4(rldimi
, 0x1E, 0x06),
7227 #define GEN_LD(name, ldop, opc, type) \
7228 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
7229 #define GEN_LDU(name, ldop, opc, type) \
7230 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
7231 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
7232 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
7233 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
7234 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
7235 #define GEN_LDS(name, ldop, op, type) \
7236 GEN_LD(name, ldop, op | 0x20, type) \
7237 GEN_LDU(name, ldop, op | 0x21, type) \
7238 GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \
7239 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
7241 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
)
7242 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
)
7243 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
)
7244 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
)
7245 #if defined(TARGET_PPC64)
7246 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
)
7247 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
)
7248 GEN_LDUX(ld
, ld64_i64
, 0x15, 0x01, PPC_64B
)
7249 GEN_LDX(ld
, ld64_i64
, 0x15, 0x00, PPC_64B
)
7250 GEN_LDX_E(ldbr
, ld64ur_i64
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
, CHK_NONE
)
7252 /* HV/P7 and later only */
7253 GEN_LDX_HVRM(ldcix
, ld64_i64
, 0x15, 0x1b, PPC_CILDST
)
7254 GEN_LDX_HVRM(lwzcix
, ld32u
, 0x15, 0x18, PPC_CILDST
)
7255 GEN_LDX_HVRM(lhzcix
, ld16u
, 0x15, 0x19, PPC_CILDST
)
7256 GEN_LDX_HVRM(lbzcix
, ld8u
, 0x15, 0x1a, PPC_CILDST
)
7258 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
)
7259 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
)
7261 /* External PID based load */
7263 #define GEN_LDEPX(name, ldop, opc2, opc3) \
7264 GEN_HANDLER_E(name##epx, 0x1F, opc2, opc3, \
7265 0x00000001, PPC_NONE, PPC2_BOOKE206),
7267 GEN_LDEPX(lb
, DEF_MEMOP(MO_UB
), 0x1F, 0x02)
7268 GEN_LDEPX(lh
, DEF_MEMOP(MO_UW
), 0x1F, 0x08)
7269 GEN_LDEPX(lw
, DEF_MEMOP(MO_UL
), 0x1F, 0x00)
7270 #if defined(TARGET_PPC64)
7271 GEN_LDEPX(ld
, DEF_MEMOP(MO_Q
), 0x1D, 0x00)
7279 #define GEN_ST(name, stop, opc, type) \
7280 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
7281 #define GEN_STU(name, stop, opc, type) \
7282 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
7283 #define GEN_STUX(name, stop, opc2, opc3, type) \
7284 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
7285 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
7286 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000000, type, type2),
7287 #define GEN_STS(name, stop, op, type) \
7288 GEN_ST(name, stop, op | 0x20, type) \
7289 GEN_STU(name, stop, op | 0x21, type) \
7290 GEN_STUX(name, stop, 0x17, op | 0x01, type) \
7291 GEN_STX(name, stop, 0x17, op | 0x00, type)
7293 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
)
7294 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
)
7295 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
)
7296 #if defined(TARGET_PPC64)
7297 GEN_STUX(std
, st64_i64
, 0x15, 0x05, PPC_64B
)
7298 GEN_STX(std
, st64_i64
, 0x15, 0x04, PPC_64B
)
7299 GEN_STX_E(stdbr
, st64r_i64
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
, CHK_NONE
)
7300 GEN_STX_HVRM(stdcix
, st64_i64
, 0x15, 0x1f, PPC_CILDST
)
7301 GEN_STX_HVRM(stwcix
, st32
, 0x15, 0x1c, PPC_CILDST
)
7302 GEN_STX_HVRM(sthcix
, st16
, 0x15, 0x1d, PPC_CILDST
)
7303 GEN_STX_HVRM(stbcix
, st8
, 0x15, 0x1e, PPC_CILDST
)
7305 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
)
7306 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
)
7309 #define GEN_STEPX(name, ldop, opc2, opc3) \
7310 GEN_HANDLER_E(name##epx, 0x1F, opc2, opc3, \
7311 0x00000001, PPC_NONE, PPC2_BOOKE206),
7313 GEN_STEPX(stb
, DEF_MEMOP(MO_UB
), 0x1F, 0x06)
7314 GEN_STEPX(sth
, DEF_MEMOP(MO_UW
), 0x1F, 0x0C)
7315 GEN_STEPX(stw
, DEF_MEMOP(MO_UL
), 0x1F, 0x04)
7316 #if defined(TARGET_PPC64)
7317 GEN_STEPX(std
, DEF_MEMOP(MO_Q
), 0x1D, 0x04)
7321 #define GEN_CRLOGIC(name, tcg_op, opc) \
7322 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
7323 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08),
7324 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04),
7325 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09),
7326 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07),
7327 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01),
7328 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E),
7329 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D),
7330 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06),
7332 #undef GEN_MAC_HANDLER
7333 #define GEN_MAC_HANDLER(name, opc2, opc3) \
7334 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
7335 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05),
7336 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15),
7337 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07),
7338 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17),
7339 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06),
7340 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16),
7341 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04),
7342 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14),
7343 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01),
7344 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11),
7345 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03),
7346 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13),
7347 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02),
7348 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12),
7349 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00),
7350 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10),
7351 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D),
7352 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D),
7353 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F),
7354 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F),
7355 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C),
7356 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C),
7357 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E),
7358 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E),
7359 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05),
7360 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15),
7361 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07),
7362 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17),
7363 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01),
7364 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11),
7365 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03),
7366 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13),
7367 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D),
7368 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D),
7369 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F),
7370 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F),
7371 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05),
7372 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04),
7373 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01),
7374 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00),
7375 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D),
7376 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C),
7378 GEN_HANDLER2_E(tbegin
, "tbegin", 0x1F, 0x0E, 0x14, 0x01DFF800, \
7380 GEN_HANDLER2_E(tend
, "tend", 0x1F, 0x0E, 0x15, 0x01FFF800, \
7382 GEN_HANDLER2_E(tabort
, "tabort", 0x1F, 0x0E, 0x1C, 0x03E0F800, \
7384 GEN_HANDLER2_E(tabortwc
, "tabortwc", 0x1F, 0x0E, 0x18, 0x00000000, \
7386 GEN_HANDLER2_E(tabortwci
, "tabortwci", 0x1F, 0x0E, 0x1A, 0x00000000, \
7388 GEN_HANDLER2_E(tabortdc
, "tabortdc", 0x1F, 0x0E, 0x19, 0x00000000, \
7390 GEN_HANDLER2_E(tabortdci
, "tabortdci", 0x1F, 0x0E, 0x1B, 0x00000000, \
7392 GEN_HANDLER2_E(tsr
, "tsr", 0x1F, 0x0E, 0x17, 0x03DFF800, \
7394 GEN_HANDLER2_E(tcheck
, "tcheck", 0x1F, 0x0E, 0x16, 0x007FF800, \
7396 GEN_HANDLER2_E(treclaim
, "treclaim", 0x1F, 0x0E, 0x1D, 0x03E0F800, \
7398 GEN_HANDLER2_E(trechkpt
, "trechkpt", 0x1F, 0x0E, 0x1F, 0x03FFF800, \
7401 #include "translate/fp-ops.inc.c"
7403 #include "translate/vmx-ops.inc.c"
7405 #include "translate/vsx-ops.inc.c"
7407 #include "translate/dfp-ops.inc.c"
7409 #include "translate/spe-ops.inc.c"
7412 #include "helper_regs.h"
7413 #include "translate_init.inc.c"
7415 /*****************************************************************************/
7416 /* Misc PowerPC helpers */
7417 void ppc_cpu_dump_state(CPUState
*cs
, FILE *f
, fprintf_function cpu_fprintf
,
7423 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
7424 CPUPPCState
*env
= &cpu
->env
;
7427 cpu_fprintf(f
, "NIP " TARGET_FMT_lx
" LR " TARGET_FMT_lx
" CTR "
7428 TARGET_FMT_lx
" XER " TARGET_FMT_lx
" CPU#%d\n",
7429 env
->nip
, env
->lr
, env
->ctr
, cpu_read_xer(env
),
7431 cpu_fprintf(f
, "MSR " TARGET_FMT_lx
" HID0 " TARGET_FMT_lx
" HF "
7432 TARGET_FMT_lx
" iidx %d didx %d\n",
7433 env
->msr
, env
->spr
[SPR_HID0
],
7434 env
->hflags
, env
->immu_idx
, env
->dmmu_idx
);
7435 #if !defined(NO_TIMER_DUMP)
7436 cpu_fprintf(f
, "TB %08" PRIu32
" %08" PRIu64
7437 #if !defined(CONFIG_USER_ONLY)
7438 " DECR " TARGET_FMT_lu
7441 cpu_ppc_load_tbu(env
), cpu_ppc_load_tbl(env
)
7442 #if !defined(CONFIG_USER_ONLY)
7443 , cpu_ppc_load_decr(env
)
7447 for (i
= 0; i
< 32; i
++) {
7448 if ((i
& (RGPL
- 1)) == 0)
7449 cpu_fprintf(f
, "GPR%02d", i
);
7450 cpu_fprintf(f
, " %016" PRIx64
, ppc_dump_gpr(env
, i
));
7451 if ((i
& (RGPL
- 1)) == (RGPL
- 1))
7452 cpu_fprintf(f
, "\n");
7454 cpu_fprintf(f
, "CR ");
7455 for (i
= 0; i
< 8; i
++)
7456 cpu_fprintf(f
, "%01x", env
->crf
[i
]);
7457 cpu_fprintf(f
, " [");
7458 for (i
= 0; i
< 8; i
++) {
7460 if (env
->crf
[i
] & 0x08)
7462 else if (env
->crf
[i
] & 0x04)
7464 else if (env
->crf
[i
] & 0x02)
7466 cpu_fprintf(f
, " %c%c", a
, env
->crf
[i
] & 0x01 ? 'O' : ' ');
7468 cpu_fprintf(f
, " ] RES " TARGET_FMT_lx
"\n",
7471 if (flags
& CPU_DUMP_FPU
) {
7472 for (i
= 0; i
< 32; i
++) {
7473 if ((i
& (RFPL
- 1)) == 0) {
7474 cpu_fprintf(f
, "FPR%02d", i
);
7476 cpu_fprintf(f
, " %016" PRIx64
, *cpu_fpr_ptr(env
, i
));
7477 if ((i
& (RFPL
- 1)) == (RFPL
- 1)) {
7478 cpu_fprintf(f
, "\n");
7481 cpu_fprintf(f
, "FPSCR " TARGET_FMT_lx
"\n", env
->fpscr
);
7484 #if !defined(CONFIG_USER_ONLY)
7485 cpu_fprintf(f
, " SRR0 " TARGET_FMT_lx
" SRR1 " TARGET_FMT_lx
7486 " PVR " TARGET_FMT_lx
" VRSAVE " TARGET_FMT_lx
"\n",
7487 env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
],
7488 env
->spr
[SPR_PVR
], env
->spr
[SPR_VRSAVE
]);
7490 cpu_fprintf(f
, "SPRG0 " TARGET_FMT_lx
" SPRG1 " TARGET_FMT_lx
7491 " SPRG2 " TARGET_FMT_lx
" SPRG3 " TARGET_FMT_lx
"\n",
7492 env
->spr
[SPR_SPRG0
], env
->spr
[SPR_SPRG1
],
7493 env
->spr
[SPR_SPRG2
], env
->spr
[SPR_SPRG3
]);
7495 cpu_fprintf(f
, "SPRG4 " TARGET_FMT_lx
" SPRG5 " TARGET_FMT_lx
7496 " SPRG6 " TARGET_FMT_lx
" SPRG7 " TARGET_FMT_lx
"\n",
7497 env
->spr
[SPR_SPRG4
], env
->spr
[SPR_SPRG5
],
7498 env
->spr
[SPR_SPRG6
], env
->spr
[SPR_SPRG7
]);
7500 #if defined(TARGET_PPC64)
7501 if (env
->excp_model
== POWERPC_EXCP_POWER7
||
7502 env
->excp_model
== POWERPC_EXCP_POWER8
||
7503 env
->excp_model
== POWERPC_EXCP_POWER9
) {
7504 cpu_fprintf(f
, "HSRR0 " TARGET_FMT_lx
" HSRR1 " TARGET_FMT_lx
"\n",
7505 env
->spr
[SPR_HSRR0
], env
->spr
[SPR_HSRR1
]);
7508 if (env
->excp_model
== POWERPC_EXCP_BOOKE
) {
7509 cpu_fprintf(f
, "CSRR0 " TARGET_FMT_lx
" CSRR1 " TARGET_FMT_lx
7510 " MCSRR0 " TARGET_FMT_lx
" MCSRR1 " TARGET_FMT_lx
"\n",
7511 env
->spr
[SPR_BOOKE_CSRR0
], env
->spr
[SPR_BOOKE_CSRR1
],
7512 env
->spr
[SPR_BOOKE_MCSRR0
], env
->spr
[SPR_BOOKE_MCSRR1
]);
7514 cpu_fprintf(f
, " TCR " TARGET_FMT_lx
" TSR " TARGET_FMT_lx
7515 " ESR " TARGET_FMT_lx
" DEAR " TARGET_FMT_lx
"\n",
7516 env
->spr
[SPR_BOOKE_TCR
], env
->spr
[SPR_BOOKE_TSR
],
7517 env
->spr
[SPR_BOOKE_ESR
], env
->spr
[SPR_BOOKE_DEAR
]);
7519 cpu_fprintf(f
, " PIR " TARGET_FMT_lx
" DECAR " TARGET_FMT_lx
7520 " IVPR " TARGET_FMT_lx
" EPCR " TARGET_FMT_lx
"\n",
7521 env
->spr
[SPR_BOOKE_PIR
], env
->spr
[SPR_BOOKE_DECAR
],
7522 env
->spr
[SPR_BOOKE_IVPR
], env
->spr
[SPR_BOOKE_EPCR
]);
7524 cpu_fprintf(f
, " MCSR " TARGET_FMT_lx
" SPRG8 " TARGET_FMT_lx
7525 " EPR " TARGET_FMT_lx
"\n",
7526 env
->spr
[SPR_BOOKE_MCSR
], env
->spr
[SPR_BOOKE_SPRG8
],
7527 env
->spr
[SPR_BOOKE_EPR
]);
7530 cpu_fprintf(f
, " MCAR " TARGET_FMT_lx
" PID1 " TARGET_FMT_lx
7531 " PID2 " TARGET_FMT_lx
" SVR " TARGET_FMT_lx
"\n",
7532 env
->spr
[SPR_Exxx_MCAR
], env
->spr
[SPR_BOOKE_PID1
],
7533 env
->spr
[SPR_BOOKE_PID2
], env
->spr
[SPR_E500_SVR
]);
7536 * IVORs are left out as they are large and do not change often --
7537 * they can be read with "p $ivor0", "p $ivor1", etc.
7541 #if defined(TARGET_PPC64)
7542 if (env
->flags
& POWERPC_FLAG_CFAR
) {
7543 cpu_fprintf(f
, " CFAR " TARGET_FMT_lx
"\n", env
->cfar
);
7547 if (env
->spr_cb
[SPR_LPCR
].name
)
7548 cpu_fprintf(f
, " LPCR " TARGET_FMT_lx
"\n", env
->spr
[SPR_LPCR
]);
7550 switch (env
->mmu_model
) {
7551 case POWERPC_MMU_32B
:
7552 case POWERPC_MMU_601
:
7553 case POWERPC_MMU_SOFT_6xx
:
7554 case POWERPC_MMU_SOFT_74xx
:
7555 #if defined(TARGET_PPC64)
7556 case POWERPC_MMU_64B
:
7557 case POWERPC_MMU_2_03
:
7558 case POWERPC_MMU_2_06
:
7559 case POWERPC_MMU_2_07
:
7560 case POWERPC_MMU_3_00
:
7562 if (env
->spr_cb
[SPR_SDR1
].name
) { /* SDR1 Exists */
7563 cpu_fprintf(f
, " SDR1 " TARGET_FMT_lx
" ", env
->spr
[SPR_SDR1
]);
7565 if (env
->spr_cb
[SPR_PTCR
].name
) { /* PTCR Exists */
7566 cpu_fprintf(f
, " PTCR " TARGET_FMT_lx
" ", env
->spr
[SPR_PTCR
]);
7568 cpu_fprintf(f
, " DAR " TARGET_FMT_lx
" DSISR " TARGET_FMT_lx
"\n",
7569 env
->spr
[SPR_DAR
], env
->spr
[SPR_DSISR
]);
7571 case POWERPC_MMU_BOOKE206
:
7572 cpu_fprintf(f
, " MAS0 " TARGET_FMT_lx
" MAS1 " TARGET_FMT_lx
7573 " MAS2 " TARGET_FMT_lx
" MAS3 " TARGET_FMT_lx
"\n",
7574 env
->spr
[SPR_BOOKE_MAS0
], env
->spr
[SPR_BOOKE_MAS1
],
7575 env
->spr
[SPR_BOOKE_MAS2
], env
->spr
[SPR_BOOKE_MAS3
]);
7577 cpu_fprintf(f
, " MAS4 " TARGET_FMT_lx
" MAS6 " TARGET_FMT_lx
7578 " MAS7 " TARGET_FMT_lx
" PID " TARGET_FMT_lx
"\n",
7579 env
->spr
[SPR_BOOKE_MAS4
], env
->spr
[SPR_BOOKE_MAS6
],
7580 env
->spr
[SPR_BOOKE_MAS7
], env
->spr
[SPR_BOOKE_PID
]);
7582 cpu_fprintf(f
, "MMUCFG " TARGET_FMT_lx
" TLB0CFG " TARGET_FMT_lx
7583 " TLB1CFG " TARGET_FMT_lx
"\n",
7584 env
->spr
[SPR_MMUCFG
], env
->spr
[SPR_BOOKE_TLB0CFG
],
7585 env
->spr
[SPR_BOOKE_TLB1CFG
]);
7596 void ppc_cpu_dump_statistics(CPUState
*cs
, FILE*f
,
7597 fprintf_function cpu_fprintf
, int flags
)
7599 #if defined(DO_PPC_STATISTICS)
7600 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
7601 opc_handler_t
**t1
, **t2
, **t3
, *handler
;
7604 t1
= cpu
->env
.opcodes
;
7605 for (op1
= 0; op1
< 64; op1
++) {
7607 if (is_indirect_opcode(handler
)) {
7608 t2
= ind_table(handler
);
7609 for (op2
= 0; op2
< 32; op2
++) {
7611 if (is_indirect_opcode(handler
)) {
7612 t3
= ind_table(handler
);
7613 for (op3
= 0; op3
< 32; op3
++) {
7615 if (handler
->count
== 0)
7617 cpu_fprintf(f
, "%02x %02x %02x (%02x %04d) %16s: "
7618 "%016" PRIx64
" %" PRId64
"\n",
7619 op1
, op2
, op3
, op1
, (op3
<< 5) | op2
,
7621 handler
->count
, handler
->count
);
7624 if (handler
->count
== 0)
7626 cpu_fprintf(f
, "%02x %02x (%02x %04d) %16s: "
7627 "%016" PRIx64
" %" PRId64
"\n",
7628 op1
, op2
, op1
, op2
, handler
->oname
,
7629 handler
->count
, handler
->count
);
7633 if (handler
->count
== 0)
7635 cpu_fprintf(f
, "%02x (%02x ) %16s: %016" PRIx64
7637 op1
, op1
, handler
->oname
,
7638 handler
->count
, handler
->count
);
7644 static void ppc_tr_init_disas_context(DisasContextBase
*dcbase
, CPUState
*cs
)
7646 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7647 CPUPPCState
*env
= cs
->env_ptr
;
7650 ctx
->exception
= POWERPC_EXCP_NONE
;
7651 ctx
->spr_cb
= env
->spr_cb
;
7653 ctx
->mem_idx
= env
->dmmu_idx
;
7655 #if !defined(CONFIG_USER_ONLY)
7656 ctx
->hv
= msr_hv
|| !env
->has_hv_mode
;
7658 ctx
->insns_flags
= env
->insns_flags
;
7659 ctx
->insns_flags2
= env
->insns_flags2
;
7660 ctx
->access_type
= -1;
7661 ctx
->need_access_type
= !(env
->mmu_model
& POWERPC_MMU_64B
);
7662 ctx
->le_mode
= !!(env
->hflags
& (1 << MSR_LE
));
7663 ctx
->default_tcg_memop_mask
= ctx
->le_mode
? MO_LE
: MO_BE
;
7664 ctx
->flags
= env
->flags
;
7665 #if defined(TARGET_PPC64)
7666 ctx
->sf_mode
= msr_is_64bit(env
, env
->msr
);
7667 ctx
->has_cfar
= !!(env
->flags
& POWERPC_FLAG_CFAR
);
7669 ctx
->lazy_tlb_flush
= env
->mmu_model
== POWERPC_MMU_32B
7670 || env
->mmu_model
== POWERPC_MMU_601
7671 || (env
->mmu_model
& POWERPC_MMU_64B
);
7673 ctx
->fpu_enabled
= !!msr_fp
;
7674 if ((env
->flags
& POWERPC_FLAG_SPE
) && msr_spe
)
7675 ctx
->spe_enabled
= !!msr_spe
;
7677 ctx
->spe_enabled
= false;
7678 if ((env
->flags
& POWERPC_FLAG_VRE
) && msr_vr
)
7679 ctx
->altivec_enabled
= !!msr_vr
;
7681 ctx
->altivec_enabled
= false;
7682 if ((env
->flags
& POWERPC_FLAG_VSX
) && msr_vsx
) {
7683 ctx
->vsx_enabled
= !!msr_vsx
;
7685 ctx
->vsx_enabled
= false;
7687 #if defined(TARGET_PPC64)
7688 if ((env
->flags
& POWERPC_FLAG_TM
) && msr_tm
) {
7689 ctx
->tm_enabled
= !!msr_tm
;
7691 ctx
->tm_enabled
= false;
7694 ctx
->gtse
= !!(env
->spr
[SPR_LPCR
] & LPCR_GTSE
);
7695 if ((env
->flags
& POWERPC_FLAG_SE
) && msr_se
)
7696 ctx
->singlestep_enabled
= CPU_SINGLE_STEP
;
7698 ctx
->singlestep_enabled
= 0;
7699 if ((env
->flags
& POWERPC_FLAG_BE
) && msr_be
)
7700 ctx
->singlestep_enabled
|= CPU_BRANCH_STEP
;
7701 if ((env
->flags
& POWERPC_FLAG_DE
) && msr_de
) {
7702 ctx
->singlestep_enabled
= 0;
7703 target_ulong dbcr0
= env
->spr
[SPR_BOOKE_DBCR0
];
7704 if (dbcr0
& DBCR0_ICMP
) {
7705 ctx
->singlestep_enabled
|= CPU_SINGLE_STEP
;
7707 if (dbcr0
& DBCR0_BRT
) {
7708 ctx
->singlestep_enabled
|= CPU_BRANCH_STEP
;
7712 if (unlikely(ctx
->base
.singlestep_enabled
)) {
7713 ctx
->singlestep_enabled
|= GDBSTUB_SINGLE_STEP
;
7715 #if defined (DO_SINGLE_STEP) && 0
7716 /* Single step trace mode */
7720 bound
= -(ctx
->base
.pc_first
| TARGET_PAGE_MASK
) / 4;
7721 ctx
->base
.max_insns
= MIN(ctx
->base
.max_insns
, bound
);
7724 static void ppc_tr_tb_start(DisasContextBase
*db
, CPUState
*cs
)
7728 static void ppc_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cs
)
7730 tcg_gen_insn_start(dcbase
->pc_next
);
7733 static bool ppc_tr_breakpoint_check(DisasContextBase
*dcbase
, CPUState
*cs
,
7734 const CPUBreakpoint
*bp
)
7736 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7738 gen_debug_exception(ctx
);
7739 dcbase
->is_jmp
= DISAS_NORETURN
;
7740 /* The address covered by the breakpoint must be included in
7741 [tb->pc, tb->pc + tb->size) in order to for it to be
7742 properly cleared -- thus we increment the PC here so that
7743 the logic setting tb->size below does the right thing. */
7744 ctx
->base
.pc_next
+= 4;
7748 static void ppc_tr_translate_insn(DisasContextBase
*dcbase
, CPUState
*cs
)
7750 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7751 CPUPPCState
*env
= cs
->env_ptr
;
7752 opc_handler_t
**table
, *handler
;
7754 LOG_DISAS("----------------\n");
7755 LOG_DISAS("nip=" TARGET_FMT_lx
" super=%d ir=%d\n",
7756 ctx
->base
.pc_next
, ctx
->mem_idx
, (int)msr_ir
);
7758 if (unlikely(need_byteswap(ctx
))) {
7759 ctx
->opcode
= bswap32(cpu_ldl_code(env
, ctx
->base
.pc_next
));
7761 ctx
->opcode
= cpu_ldl_code(env
, ctx
->base
.pc_next
);
7763 LOG_DISAS("translate opcode %08x (%02x %02x %02x %02x) (%s)\n",
7764 ctx
->opcode
, opc1(ctx
->opcode
), opc2(ctx
->opcode
),
7765 opc3(ctx
->opcode
), opc4(ctx
->opcode
),
7766 ctx
->le_mode
? "little" : "big");
7767 ctx
->base
.pc_next
+= 4;
7768 table
= env
->opcodes
;
7769 handler
= table
[opc1(ctx
->opcode
)];
7770 if (is_indirect_opcode(handler
)) {
7771 table
= ind_table(handler
);
7772 handler
= table
[opc2(ctx
->opcode
)];
7773 if (is_indirect_opcode(handler
)) {
7774 table
= ind_table(handler
);
7775 handler
= table
[opc3(ctx
->opcode
)];
7776 if (is_indirect_opcode(handler
)) {
7777 table
= ind_table(handler
);
7778 handler
= table
[opc4(ctx
->opcode
)];
7782 /* Is opcode *REALLY* valid ? */
7783 if (unlikely(handler
->handler
== &gen_invalid
)) {
7784 qemu_log_mask(LOG_GUEST_ERROR
, "invalid/unsupported opcode: "
7785 "%02x - %02x - %02x - %02x (%08x) "
7786 TARGET_FMT_lx
" %d\n",
7787 opc1(ctx
->opcode
), opc2(ctx
->opcode
),
7788 opc3(ctx
->opcode
), opc4(ctx
->opcode
),
7789 ctx
->opcode
, ctx
->base
.pc_next
- 4, (int)msr_ir
);
7793 if (unlikely(handler
->type
& (PPC_SPE
| PPC_SPE_SINGLE
| PPC_SPE_DOUBLE
)
7794 && Rc(ctx
->opcode
))) {
7795 inval
= handler
->inval2
;
7797 inval
= handler
->inval1
;
7800 if (unlikely((ctx
->opcode
& inval
) != 0)) {
7801 qemu_log_mask(LOG_GUEST_ERROR
, "invalid bits: %08x for opcode: "
7802 "%02x - %02x - %02x - %02x (%08x) "
7803 TARGET_FMT_lx
"\n", ctx
->opcode
& inval
,
7804 opc1(ctx
->opcode
), opc2(ctx
->opcode
),
7805 opc3(ctx
->opcode
), opc4(ctx
->opcode
),
7806 ctx
->opcode
, ctx
->base
.pc_next
- 4);
7807 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
7808 ctx
->base
.is_jmp
= DISAS_NORETURN
;
7812 (*(handler
->handler
))(ctx
);
7813 #if defined(DO_PPC_STATISTICS)
7816 /* Check trace mode exceptions */
7817 if (unlikely(ctx
->singlestep_enabled
& CPU_SINGLE_STEP
&&
7818 (ctx
->base
.pc_next
<= 0x100 || ctx
->base
.pc_next
> 0xF00) &&
7819 ctx
->exception
!= POWERPC_SYSCALL
&&
7820 ctx
->exception
!= POWERPC_EXCP_TRAP
&&
7821 ctx
->exception
!= POWERPC_EXCP_BRANCH
)) {
7822 uint32_t excp
= gen_prep_dbgex(ctx
);
7823 gen_exception_nip(ctx
, excp
, ctx
->base
.pc_next
);
7826 if (tcg_check_temp_count()) {
7827 qemu_log("Opcode %02x %02x %02x %02x (%08x) leaked "
7828 "temporaries\n", opc1(ctx
->opcode
), opc2(ctx
->opcode
),
7829 opc3(ctx
->opcode
), opc4(ctx
->opcode
), ctx
->opcode
);
7832 ctx
->base
.is_jmp
= ctx
->exception
== POWERPC_EXCP_NONE
?
7833 DISAS_NEXT
: DISAS_NORETURN
;
7836 static void ppc_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cs
)
7838 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7840 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
7841 gen_goto_tb(ctx
, 0, ctx
->base
.pc_next
);
7842 } else if (ctx
->exception
!= POWERPC_EXCP_BRANCH
) {
7843 if (unlikely(ctx
->base
.singlestep_enabled
)) {
7844 gen_debug_exception(ctx
);
7846 /* Generate the return instruction */
7847 tcg_gen_exit_tb(NULL
, 0);
7851 static void ppc_tr_disas_log(const DisasContextBase
*dcbase
, CPUState
*cs
)
7853 qemu_log("IN: %s\n", lookup_symbol(dcbase
->pc_first
));
7854 log_target_disas(cs
, dcbase
->pc_first
, dcbase
->tb
->size
);
7857 static const TranslatorOps ppc_tr_ops
= {
7858 .init_disas_context
= ppc_tr_init_disas_context
,
7859 .tb_start
= ppc_tr_tb_start
,
7860 .insn_start
= ppc_tr_insn_start
,
7861 .breakpoint_check
= ppc_tr_breakpoint_check
,
7862 .translate_insn
= ppc_tr_translate_insn
,
7863 .tb_stop
= ppc_tr_tb_stop
,
7864 .disas_log
= ppc_tr_disas_log
,
7867 void gen_intermediate_code(CPUState
*cs
, struct TranslationBlock
*tb
)
7871 translator_loop(&ppc_tr_ops
, &ctx
.base
, cs
, tb
);
7874 void restore_state_to_opc(CPUPPCState
*env
, TranslationBlock
*tb
,