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/>.
22 #include "disas/disas.h"
24 #include "qemu/host-utils.h"
30 #define CPU_SINGLE_STEP 0x1
31 #define CPU_BRANCH_STEP 0x2
32 #define GDBSTUB_SINGLE_STEP 0x4
34 /* Include definitions for instructions classes and implementations flags */
35 //#define PPC_DEBUG_DISAS
36 //#define DO_PPC_STATISTICS
38 #ifdef PPC_DEBUG_DISAS
39 # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
41 # define LOG_DISAS(...) do { } while (0)
43 /*****************************************************************************/
44 /* Code translation helpers */
46 /* global register indexes */
47 static TCGv_ptr cpu_env
;
48 static char cpu_reg_names
[10*3 + 22*4 /* GPR */
49 #if !defined(TARGET_PPC64)
50 + 10*4 + 22*5 /* SPE GPRh */
52 + 10*4 + 22*5 /* FPR */
53 + 2*(10*6 + 22*7) /* AVRh, AVRl */
55 static TCGv cpu_gpr
[32];
56 #if !defined(TARGET_PPC64)
57 static TCGv cpu_gprh
[32];
59 static TCGv_i64 cpu_fpr
[32];
60 static TCGv_i64 cpu_avrh
[32], cpu_avrl
[32];
61 static TCGv_i32 cpu_crf
[8];
66 #if defined(TARGET_PPC64)
70 static TCGv cpu_reserve
;
71 static TCGv cpu_fpscr
;
72 static TCGv_i32 cpu_access_type
;
74 #include "exec/gen-icount.h"
76 void ppc_translate_init(void)
80 size_t cpu_reg_names_size
;
81 static int done_init
= 0;
86 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
89 cpu_reg_names_size
= sizeof(cpu_reg_names
);
91 for (i
= 0; i
< 8; i
++) {
92 snprintf(p
, cpu_reg_names_size
, "crf%d", i
);
93 cpu_crf
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
94 offsetof(CPUPPCState
, crf
[i
]), p
);
96 cpu_reg_names_size
-= 5;
99 for (i
= 0; i
< 32; i
++) {
100 snprintf(p
, cpu_reg_names_size
, "r%d", i
);
101 cpu_gpr
[i
] = tcg_global_mem_new(TCG_AREG0
,
102 offsetof(CPUPPCState
, gpr
[i
]), p
);
103 p
+= (i
< 10) ? 3 : 4;
104 cpu_reg_names_size
-= (i
< 10) ? 3 : 4;
105 #if !defined(TARGET_PPC64)
106 snprintf(p
, cpu_reg_names_size
, "r%dH", i
);
107 cpu_gprh
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
108 offsetof(CPUPPCState
, gprh
[i
]), p
);
109 p
+= (i
< 10) ? 4 : 5;
110 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
113 snprintf(p
, cpu_reg_names_size
, "fp%d", i
);
114 cpu_fpr
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
115 offsetof(CPUPPCState
, fpr
[i
]), p
);
116 p
+= (i
< 10) ? 4 : 5;
117 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
119 snprintf(p
, cpu_reg_names_size
, "avr%dH", i
);
120 #ifdef HOST_WORDS_BIGENDIAN
121 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
122 offsetof(CPUPPCState
, avr
[i
].u64
[0]), p
);
124 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
125 offsetof(CPUPPCState
, avr
[i
].u64
[1]), p
);
127 p
+= (i
< 10) ? 6 : 7;
128 cpu_reg_names_size
-= (i
< 10) ? 6 : 7;
130 snprintf(p
, cpu_reg_names_size
, "avr%dL", i
);
131 #ifdef HOST_WORDS_BIGENDIAN
132 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
133 offsetof(CPUPPCState
, avr
[i
].u64
[1]), p
);
135 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
136 offsetof(CPUPPCState
, avr
[i
].u64
[0]), p
);
138 p
+= (i
< 10) ? 6 : 7;
139 cpu_reg_names_size
-= (i
< 10) ? 6 : 7;
142 cpu_nip
= tcg_global_mem_new(TCG_AREG0
,
143 offsetof(CPUPPCState
, nip
), "nip");
145 cpu_msr
= tcg_global_mem_new(TCG_AREG0
,
146 offsetof(CPUPPCState
, msr
), "msr");
148 cpu_ctr
= tcg_global_mem_new(TCG_AREG0
,
149 offsetof(CPUPPCState
, ctr
), "ctr");
151 cpu_lr
= tcg_global_mem_new(TCG_AREG0
,
152 offsetof(CPUPPCState
, lr
), "lr");
154 #if defined(TARGET_PPC64)
155 cpu_cfar
= tcg_global_mem_new(TCG_AREG0
,
156 offsetof(CPUPPCState
, cfar
), "cfar");
159 cpu_xer
= tcg_global_mem_new(TCG_AREG0
,
160 offsetof(CPUPPCState
, xer
), "xer");
162 cpu_reserve
= tcg_global_mem_new(TCG_AREG0
,
163 offsetof(CPUPPCState
, reserve_addr
),
166 cpu_fpscr
= tcg_global_mem_new(TCG_AREG0
,
167 offsetof(CPUPPCState
, fpscr
), "fpscr");
169 cpu_access_type
= tcg_global_mem_new_i32(TCG_AREG0
,
170 offsetof(CPUPPCState
, access_type
), "access_type");
172 /* register helpers */
179 /* internal defines */
180 typedef struct DisasContext
{
181 struct TranslationBlock
*tb
;
185 /* Routine used to access memory */
188 /* Translation flags */
190 #if defined(TARGET_PPC64)
197 ppc_spr_t
*spr_cb
; /* Needed to check rights for mfspr/mtspr */
198 int singlestep_enabled
;
201 struct opc_handler_t
{
202 /* invalid bits for instruction 1 (Rc(opcode) == 0) */
204 /* invalid bits for instruction 2 (Rc(opcode) == 1) */
206 /* instruction type */
208 /* extended instruction type */
211 void (*handler
)(DisasContext
*ctx
);
212 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
215 #if defined(DO_PPC_STATISTICS)
220 static inline void gen_reset_fpstatus(void)
222 gen_helper_reset_fpstatus(cpu_env
);
225 static inline void gen_compute_fprf(TCGv_i64 arg
, int set_fprf
, int set_rc
)
227 TCGv_i32 t0
= tcg_temp_new_i32();
230 /* This case might be optimized later */
231 tcg_gen_movi_i32(t0
, 1);
232 gen_helper_compute_fprf(t0
, cpu_env
, arg
, t0
);
233 if (unlikely(set_rc
)) {
234 tcg_gen_mov_i32(cpu_crf
[1], t0
);
236 gen_helper_float_check_status(cpu_env
);
237 } else if (unlikely(set_rc
)) {
238 /* We always need to compute fpcc */
239 tcg_gen_movi_i32(t0
, 0);
240 gen_helper_compute_fprf(t0
, cpu_env
, arg
, t0
);
241 tcg_gen_mov_i32(cpu_crf
[1], t0
);
244 tcg_temp_free_i32(t0
);
247 static inline void gen_set_access_type(DisasContext
*ctx
, int access_type
)
249 if (ctx
->access_type
!= access_type
) {
250 tcg_gen_movi_i32(cpu_access_type
, access_type
);
251 ctx
->access_type
= access_type
;
255 static inline void gen_update_nip(DisasContext
*ctx
, target_ulong nip
)
257 #if defined(TARGET_PPC64)
259 tcg_gen_movi_tl(cpu_nip
, nip
);
262 tcg_gen_movi_tl(cpu_nip
, (uint32_t)nip
);
265 static inline void gen_exception_err(DisasContext
*ctx
, uint32_t excp
, uint32_t error
)
268 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
269 gen_update_nip(ctx
, ctx
->nip
);
271 t0
= tcg_const_i32(excp
);
272 t1
= tcg_const_i32(error
);
273 gen_helper_raise_exception_err(cpu_env
, t0
, t1
);
274 tcg_temp_free_i32(t0
);
275 tcg_temp_free_i32(t1
);
276 ctx
->exception
= (excp
);
279 static inline void gen_exception(DisasContext
*ctx
, uint32_t excp
)
282 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
283 gen_update_nip(ctx
, 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
);
291 static inline void gen_debug_exception(DisasContext
*ctx
)
295 if ((ctx
->exception
!= POWERPC_EXCP_BRANCH
) &&
296 (ctx
->exception
!= POWERPC_EXCP_SYNC
)) {
297 gen_update_nip(ctx
, ctx
->nip
);
299 t0
= tcg_const_i32(EXCP_DEBUG
);
300 gen_helper_raise_exception(cpu_env
, t0
);
301 tcg_temp_free_i32(t0
);
304 static inline void gen_inval_exception(DisasContext
*ctx
, uint32_t error
)
306 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_INVAL
| error
);
309 /* Stop translation */
310 static inline void gen_stop_exception(DisasContext
*ctx
)
312 gen_update_nip(ctx
, ctx
->nip
);
313 ctx
->exception
= POWERPC_EXCP_STOP
;
316 /* No need to update nip here, as execution flow will change */
317 static inline void gen_sync_exception(DisasContext
*ctx
)
319 ctx
->exception
= POWERPC_EXCP_SYNC
;
322 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
323 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
325 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \
326 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
328 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
329 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
331 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \
332 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
334 typedef struct opcode_t
{
335 unsigned char opc1
, opc2
, opc3
;
336 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
337 unsigned char pad
[5];
339 unsigned char pad
[1];
341 opc_handler_t handler
;
345 /*****************************************************************************/
346 /*** Instruction decoding ***/
347 #define EXTRACT_HELPER(name, shift, nb) \
348 static inline uint32_t name(uint32_t opcode) \
350 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
353 #define EXTRACT_SHELPER(name, shift, nb) \
354 static inline int32_t name(uint32_t opcode) \
356 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
360 EXTRACT_HELPER(opc1
, 26, 6);
362 EXTRACT_HELPER(opc2
, 1, 5);
364 EXTRACT_HELPER(opc3
, 6, 5);
365 /* Update Cr0 flags */
366 EXTRACT_HELPER(Rc
, 0, 1);
368 EXTRACT_HELPER(rD
, 21, 5);
370 EXTRACT_HELPER(rS
, 21, 5);
372 EXTRACT_HELPER(rA
, 16, 5);
374 EXTRACT_HELPER(rB
, 11, 5);
376 EXTRACT_HELPER(rC
, 6, 5);
378 EXTRACT_HELPER(crfD
, 23, 3);
379 EXTRACT_HELPER(crfS
, 18, 3);
380 EXTRACT_HELPER(crbD
, 21, 5);
381 EXTRACT_HELPER(crbA
, 16, 5);
382 EXTRACT_HELPER(crbB
, 11, 5);
384 EXTRACT_HELPER(_SPR
, 11, 10);
385 static inline uint32_t SPR(uint32_t opcode
)
387 uint32_t sprn
= _SPR(opcode
);
389 return ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
391 /*** Get constants ***/
392 EXTRACT_HELPER(IMM
, 12, 8);
393 /* 16 bits signed immediate value */
394 EXTRACT_SHELPER(SIMM
, 0, 16);
395 /* 16 bits unsigned immediate value */
396 EXTRACT_HELPER(UIMM
, 0, 16);
397 /* 5 bits signed immediate value */
398 EXTRACT_HELPER(SIMM5
, 16, 5);
399 /* 5 bits signed immediate value */
400 EXTRACT_HELPER(UIMM5
, 16, 5);
402 EXTRACT_HELPER(NB
, 11, 5);
404 EXTRACT_HELPER(SH
, 11, 5);
405 /* Vector shift count */
406 EXTRACT_HELPER(VSH
, 6, 4);
408 EXTRACT_HELPER(MB
, 6, 5);
410 EXTRACT_HELPER(ME
, 1, 5);
412 EXTRACT_HELPER(TO
, 21, 5);
414 EXTRACT_HELPER(CRM
, 12, 8);
415 EXTRACT_HELPER(FM
, 17, 8);
416 EXTRACT_HELPER(SR
, 16, 4);
417 EXTRACT_HELPER(FPIMM
, 12, 4);
419 /*** Jump target decoding ***/
421 EXTRACT_SHELPER(d
, 0, 16);
422 /* Immediate address */
423 static inline target_ulong
LI(uint32_t opcode
)
425 return (opcode
>> 0) & 0x03FFFFFC;
428 static inline uint32_t BD(uint32_t opcode
)
430 return (opcode
>> 0) & 0xFFFC;
433 EXTRACT_HELPER(BO
, 21, 5);
434 EXTRACT_HELPER(BI
, 16, 5);
435 /* Absolute/relative address */
436 EXTRACT_HELPER(AA
, 1, 1);
438 EXTRACT_HELPER(LK
, 0, 1);
440 /* Create a mask between <start> and <end> bits */
441 static inline target_ulong
MASK(uint32_t start
, uint32_t end
)
445 #if defined(TARGET_PPC64)
446 if (likely(start
== 0)) {
447 ret
= UINT64_MAX
<< (63 - end
);
448 } else if (likely(end
== 63)) {
449 ret
= UINT64_MAX
>> start
;
452 if (likely(start
== 0)) {
453 ret
= UINT32_MAX
<< (31 - end
);
454 } else if (likely(end
== 31)) {
455 ret
= UINT32_MAX
>> start
;
459 ret
= (((target_ulong
)(-1ULL)) >> (start
)) ^
460 (((target_ulong
)(-1ULL) >> (end
)) >> 1);
461 if (unlikely(start
> end
))
468 /*****************************************************************************/
469 /* PowerPC instructions table */
471 #if defined(DO_PPC_STATISTICS)
472 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
482 .handler = &gen_##name, \
483 .oname = stringify(name), \
485 .oname = stringify(name), \
487 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
498 .handler = &gen_##name, \
499 .oname = stringify(name), \
501 .oname = stringify(name), \
503 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
513 .handler = &gen_##name, \
519 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
529 .handler = &gen_##name, \
531 .oname = stringify(name), \
533 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
544 .handler = &gen_##name, \
546 .oname = stringify(name), \
548 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
558 .handler = &gen_##name, \
564 /* SPR load/store helpers */
565 static inline void gen_load_spr(TCGv t
, int reg
)
567 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
570 static inline void gen_store_spr(int reg
, TCGv t
)
572 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
575 /* Invalid instruction */
576 static void gen_invalid(DisasContext
*ctx
)
578 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
581 static opc_handler_t invalid_handler
= {
582 .inval1
= 0xFFFFFFFF,
583 .inval2
= 0xFFFFFFFF,
586 .handler
= gen_invalid
,
589 /*** Integer comparison ***/
591 static inline void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
595 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_xer
);
596 tcg_gen_shri_i32(cpu_crf
[crf
], cpu_crf
[crf
], XER_SO
);
597 tcg_gen_andi_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1);
599 l1
= gen_new_label();
600 l2
= gen_new_label();
601 l3
= gen_new_label();
603 tcg_gen_brcond_tl(TCG_COND_LT
, arg0
, arg1
, l1
);
604 tcg_gen_brcond_tl(TCG_COND_GT
, arg0
, arg1
, l2
);
606 tcg_gen_brcond_tl(TCG_COND_LTU
, arg0
, arg1
, l1
);
607 tcg_gen_brcond_tl(TCG_COND_GTU
, arg0
, arg1
, l2
);
609 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_EQ
);
612 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_LT
);
615 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_GT
);
619 static inline void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
621 TCGv t0
= tcg_const_local_tl(arg1
);
622 gen_op_cmp(arg0
, t0
, s
, crf
);
626 #if defined(TARGET_PPC64)
627 static inline void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
630 t0
= tcg_temp_local_new();
631 t1
= tcg_temp_local_new();
633 tcg_gen_ext32s_tl(t0
, arg0
);
634 tcg_gen_ext32s_tl(t1
, arg1
);
636 tcg_gen_ext32u_tl(t0
, arg0
);
637 tcg_gen_ext32u_tl(t1
, arg1
);
639 gen_op_cmp(t0
, t1
, s
, crf
);
644 static inline void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
646 TCGv t0
= tcg_const_local_tl(arg1
);
647 gen_op_cmp32(arg0
, t0
, s
, crf
);
652 static inline void gen_set_Rc0(DisasContext
*ctx
, TCGv reg
)
654 #if defined(TARGET_PPC64)
656 gen_op_cmpi32(reg
, 0, 1, 0);
659 gen_op_cmpi(reg
, 0, 1, 0);
663 static void gen_cmp(DisasContext
*ctx
)
665 #if defined(TARGET_PPC64)
666 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
667 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
668 1, crfD(ctx
->opcode
));
671 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
672 1, crfD(ctx
->opcode
));
676 static void gen_cmpi(DisasContext
*ctx
)
678 #if defined(TARGET_PPC64)
679 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
680 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
681 1, crfD(ctx
->opcode
));
684 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
685 1, crfD(ctx
->opcode
));
689 static void gen_cmpl(DisasContext
*ctx
)
691 #if defined(TARGET_PPC64)
692 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
693 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
694 0, crfD(ctx
->opcode
));
697 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
698 0, crfD(ctx
->opcode
));
702 static void gen_cmpli(DisasContext
*ctx
)
704 #if defined(TARGET_PPC64)
705 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
706 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
707 0, crfD(ctx
->opcode
));
710 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
711 0, crfD(ctx
->opcode
));
714 /* isel (PowerPC 2.03 specification) */
715 static void gen_isel(DisasContext
*ctx
)
718 uint32_t bi
= rC(ctx
->opcode
);
722 l1
= gen_new_label();
723 l2
= gen_new_label();
725 mask
= 1 << (3 - (bi
& 0x03));
726 t0
= tcg_temp_new_i32();
727 tcg_gen_andi_i32(t0
, cpu_crf
[bi
>> 2], mask
);
728 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
729 if (rA(ctx
->opcode
) == 0)
730 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
732 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
735 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
737 tcg_temp_free_i32(t0
);
740 /*** Integer arithmetic ***/
742 static inline void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
,
743 TCGv arg1
, TCGv arg2
, int sub
)
748 l1
= gen_new_label();
749 /* Start with XER OV disabled, the most likely case */
750 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
751 t0
= tcg_temp_local_new();
752 tcg_gen_xor_tl(t0
, arg0
, arg1
);
753 #if defined(TARGET_PPC64)
755 tcg_gen_ext32s_tl(t0
, t0
);
758 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
760 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
761 tcg_gen_xor_tl(t0
, arg1
, arg2
);
762 #if defined(TARGET_PPC64)
764 tcg_gen_ext32s_tl(t0
, t0
);
767 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
769 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
770 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
775 static inline void gen_op_arith_compute_ca(DisasContext
*ctx
, TCGv arg1
,
778 int l1
= gen_new_label();
780 #if defined(TARGET_PPC64)
781 if (!(ctx
->sf_mode
)) {
786 tcg_gen_ext32u_tl(t0
, arg1
);
787 tcg_gen_ext32u_tl(t1
, arg2
);
789 tcg_gen_brcond_tl(TCG_COND_GTU
, t0
, t1
, l1
);
791 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
793 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
801 tcg_gen_brcond_tl(TCG_COND_GTU
, arg1
, arg2
, l1
);
803 tcg_gen_brcond_tl(TCG_COND_GEU
, arg1
, arg2
, l1
);
805 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
810 /* Common add function */
811 static inline void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
812 TCGv arg2
, int add_ca
, int compute_ca
,
817 if ((!compute_ca
&& !compute_ov
) ||
818 (!TCGV_EQUAL(ret
,arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
821 t0
= tcg_temp_local_new();
825 t1
= tcg_temp_local_new();
826 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
827 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
832 if (compute_ca
&& compute_ov
) {
833 /* Start with XER CA and OV disabled, the most likely case */
834 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
835 } else if (compute_ca
) {
836 /* Start with XER CA disabled, the most likely case */
837 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
838 } else if (compute_ov
) {
839 /* Start with XER OV disabled, the most likely case */
840 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
843 tcg_gen_add_tl(t0
, arg1
, arg2
);
846 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
849 tcg_gen_add_tl(t0
, t0
, t1
);
850 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
854 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
857 if (unlikely(Rc(ctx
->opcode
) != 0))
858 gen_set_Rc0(ctx
, t0
);
860 if (!TCGV_EQUAL(t0
, ret
)) {
861 tcg_gen_mov_tl(ret
, t0
);
865 /* Add functions with two operands */
866 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
867 static void glue(gen_, name)(DisasContext *ctx) \
869 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
870 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
871 add_ca, compute_ca, compute_ov); \
873 /* Add functions with one operand and one immediate */
874 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
875 add_ca, compute_ca, compute_ov) \
876 static void glue(gen_, name)(DisasContext *ctx) \
878 TCGv t0 = tcg_const_local_tl(const_val); \
879 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
880 cpu_gpr[rA(ctx->opcode)], t0, \
881 add_ca, compute_ca, compute_ov); \
885 /* add add. addo addo. */
886 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
887 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
888 /* addc addc. addco addco. */
889 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
890 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
891 /* adde adde. addeo addeo. */
892 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
893 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
894 /* addme addme. addmeo addmeo. */
895 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
896 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
897 /* addze addze. addzeo addzeo.*/
898 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
899 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
901 static void gen_addi(DisasContext
*ctx
)
903 target_long simm
= SIMM(ctx
->opcode
);
905 if (rA(ctx
->opcode
) == 0) {
907 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
);
909 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
);
913 static inline void gen_op_addic(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
916 target_long simm
= SIMM(ctx
->opcode
);
918 /* Start with XER CA and OV disabled, the most likely case */
919 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
921 if (likely(simm
!= 0)) {
922 TCGv t0
= tcg_temp_local_new();
923 tcg_gen_addi_tl(t0
, arg1
, simm
);
924 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
925 tcg_gen_mov_tl(ret
, t0
);
928 tcg_gen_mov_tl(ret
, arg1
);
931 gen_set_Rc0(ctx
, ret
);
935 static void gen_addic(DisasContext
*ctx
)
937 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
940 static void gen_addic_(DisasContext
*ctx
)
942 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
946 static void gen_addis(DisasContext
*ctx
)
948 target_long simm
= SIMM(ctx
->opcode
);
950 if (rA(ctx
->opcode
) == 0) {
952 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
<< 16);
954 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
<< 16);
958 static inline void gen_op_arith_divw(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
959 TCGv arg2
, int sign
, int compute_ov
)
961 int l1
= gen_new_label();
962 int l2
= gen_new_label();
963 TCGv_i32 t0
= tcg_temp_local_new_i32();
964 TCGv_i32 t1
= tcg_temp_local_new_i32();
966 tcg_gen_trunc_tl_i32(t0
, arg1
);
967 tcg_gen_trunc_tl_i32(t1
, arg2
);
968 tcg_gen_brcondi_i32(TCG_COND_EQ
, t1
, 0, l1
);
970 int l3
= gen_new_label();
971 tcg_gen_brcondi_i32(TCG_COND_NE
, t1
, -1, l3
);
972 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
974 tcg_gen_div_i32(t0
, t0
, t1
);
976 tcg_gen_divu_i32(t0
, t0
, t1
);
979 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
984 tcg_gen_sari_i32(t0
, t0
, 31);
986 tcg_gen_movi_i32(t0
, 0);
989 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
992 tcg_gen_extu_i32_tl(ret
, t0
);
993 tcg_temp_free_i32(t0
);
994 tcg_temp_free_i32(t1
);
995 if (unlikely(Rc(ctx
->opcode
) != 0))
996 gen_set_Rc0(ctx
, ret
);
999 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1000 static void glue(gen_, name)(DisasContext *ctx) \
1002 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1003 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1004 sign, compute_ov); \
1006 /* divwu divwu. divwuo divwuo. */
1007 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
1008 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
1009 /* divw divw. divwo divwo. */
1010 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
1011 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
1012 #if defined(TARGET_PPC64)
1013 static inline void gen_op_arith_divd(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1014 TCGv arg2
, int sign
, int compute_ov
)
1016 int l1
= gen_new_label();
1017 int l2
= gen_new_label();
1019 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg2
, 0, l1
);
1021 int l3
= gen_new_label();
1022 tcg_gen_brcondi_i64(TCG_COND_NE
, arg2
, -1, l3
);
1023 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg1
, INT64_MIN
, l1
);
1025 tcg_gen_div_i64(ret
, arg1
, arg2
);
1027 tcg_gen_divu_i64(ret
, arg1
, arg2
);
1030 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1035 tcg_gen_sari_i64(ret
, arg1
, 63);
1037 tcg_gen_movi_i64(ret
, 0);
1040 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1043 if (unlikely(Rc(ctx
->opcode
) != 0))
1044 gen_set_Rc0(ctx
, ret
);
1046 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1047 static void glue(gen_, name)(DisasContext *ctx) \
1049 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1050 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1051 sign, compute_ov); \
1053 /* divwu divwu. divwuo divwuo. */
1054 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1055 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1056 /* divw divw. divwo divwo. */
1057 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1058 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1062 static void gen_mulhw(DisasContext
*ctx
)
1066 t0
= tcg_temp_new_i64();
1067 t1
= tcg_temp_new_i64();
1068 #if defined(TARGET_PPC64)
1069 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1070 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1071 tcg_gen_mul_i64(t0
, t0
, t1
);
1072 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1074 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1075 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1076 tcg_gen_mul_i64(t0
, t0
, t1
);
1077 tcg_gen_shri_i64(t0
, t0
, 32);
1078 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1080 tcg_temp_free_i64(t0
);
1081 tcg_temp_free_i64(t1
);
1082 if (unlikely(Rc(ctx
->opcode
) != 0))
1083 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1086 /* mulhwu mulhwu. */
1087 static void gen_mulhwu(DisasContext
*ctx
)
1091 t0
= tcg_temp_new_i64();
1092 t1
= tcg_temp_new_i64();
1093 #if defined(TARGET_PPC64)
1094 tcg_gen_ext32u_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1095 tcg_gen_ext32u_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1096 tcg_gen_mul_i64(t0
, t0
, t1
);
1097 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1099 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1100 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1101 tcg_gen_mul_i64(t0
, t0
, t1
);
1102 tcg_gen_shri_i64(t0
, t0
, 32);
1103 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1105 tcg_temp_free_i64(t0
);
1106 tcg_temp_free_i64(t1
);
1107 if (unlikely(Rc(ctx
->opcode
) != 0))
1108 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1112 static void gen_mullw(DisasContext
*ctx
)
1114 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1115 cpu_gpr
[rB(ctx
->opcode
)]);
1116 tcg_gen_ext32s_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)]);
1117 if (unlikely(Rc(ctx
->opcode
) != 0))
1118 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1121 /* mullwo mullwo. */
1122 static void gen_mullwo(DisasContext
*ctx
)
1127 t0
= tcg_temp_new_i64();
1128 t1
= tcg_temp_new_i64();
1129 l1
= gen_new_label();
1130 /* Start with XER OV disabled, the most likely case */
1131 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1132 #if defined(TARGET_PPC64)
1133 tcg_gen_ext32s_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1134 tcg_gen_ext32s_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1136 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1137 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1139 tcg_gen_mul_i64(t0
, t0
, t1
);
1140 #if defined(TARGET_PPC64)
1141 tcg_gen_ext32s_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1142 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, cpu_gpr
[rD(ctx
->opcode
)], l1
);
1144 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1145 tcg_gen_ext32s_i64(t1
, t0
);
1146 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
1148 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1150 tcg_temp_free_i64(t0
);
1151 tcg_temp_free_i64(t1
);
1152 if (unlikely(Rc(ctx
->opcode
) != 0))
1153 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1157 static void gen_mulli(DisasContext
*ctx
)
1159 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1162 #if defined(TARGET_PPC64)
1163 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1164 static void glue(gen_, name)(DisasContext *ctx) \
1166 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1167 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1168 if (unlikely(Rc(ctx->opcode) != 0)) \
1169 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1172 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00);
1173 /* mulhdu mulhdu. */
1174 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02);
1177 static void gen_mulld(DisasContext
*ctx
)
1179 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1180 cpu_gpr
[rB(ctx
->opcode
)]);
1181 if (unlikely(Rc(ctx
->opcode
) != 0))
1182 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1185 /* mulldo mulldo. */
1186 static void gen_mulldo(DisasContext
*ctx
)
1188 gen_helper_mulldo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
1189 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1190 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1191 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1196 /* neg neg. nego nego. */
1197 static inline void gen_op_arith_neg(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1200 int l1
= gen_new_label();
1201 int l2
= gen_new_label();
1202 TCGv t0
= tcg_temp_local_new();
1203 #if defined(TARGET_PPC64)
1205 tcg_gen_mov_tl(t0
, arg1
);
1206 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT64_MIN
, l1
);
1210 tcg_gen_ext32s_tl(t0
, arg1
);
1211 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1213 tcg_gen_neg_tl(ret
, arg1
);
1215 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1219 tcg_gen_mov_tl(ret
, t0
);
1221 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1225 if (unlikely(Rc(ctx
->opcode
) != 0))
1226 gen_set_Rc0(ctx
, ret
);
1229 static void gen_neg(DisasContext
*ctx
)
1231 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1234 static void gen_nego(DisasContext
*ctx
)
1236 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1239 /* Common subf function */
1240 static inline void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1241 TCGv arg2
, int add_ca
, int compute_ca
,
1246 if ((!compute_ca
&& !compute_ov
) ||
1247 (!TCGV_EQUAL(ret
, arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
1250 t0
= tcg_temp_local_new();
1254 t1
= tcg_temp_local_new();
1255 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
1256 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
1261 if (compute_ca
&& compute_ov
) {
1262 /* Start with XER CA and OV disabled, the most likely case */
1263 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
1264 } else if (compute_ca
) {
1265 /* Start with XER CA disabled, the most likely case */
1266 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1267 } else if (compute_ov
) {
1268 /* Start with XER OV disabled, the most likely case */
1269 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1273 tcg_gen_not_tl(t0
, arg1
);
1274 tcg_gen_add_tl(t0
, t0
, arg2
);
1275 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 0);
1276 tcg_gen_add_tl(t0
, t0
, t1
);
1277 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
1280 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1282 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 1);
1286 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
1289 if (unlikely(Rc(ctx
->opcode
) != 0))
1290 gen_set_Rc0(ctx
, t0
);
1292 if (!TCGV_EQUAL(t0
, ret
)) {
1293 tcg_gen_mov_tl(ret
, t0
);
1297 /* Sub functions with Two operands functions */
1298 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1299 static void glue(gen_, name)(DisasContext *ctx) \
1301 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1302 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1303 add_ca, compute_ca, compute_ov); \
1305 /* Sub functions with one operand and one immediate */
1306 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1307 add_ca, compute_ca, compute_ov) \
1308 static void glue(gen_, name)(DisasContext *ctx) \
1310 TCGv t0 = tcg_const_local_tl(const_val); \
1311 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1312 cpu_gpr[rA(ctx->opcode)], t0, \
1313 add_ca, compute_ca, compute_ov); \
1314 tcg_temp_free(t0); \
1316 /* subf subf. subfo subfo. */
1317 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
1318 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
1319 /* subfc subfc. subfco subfco. */
1320 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
1321 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
1322 /* subfe subfe. subfeo subfo. */
1323 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
1324 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
1325 /* subfme subfme. subfmeo subfmeo. */
1326 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
1327 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
1328 /* subfze subfze. subfzeo subfzeo.*/
1329 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
1330 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
1333 static void gen_subfic(DisasContext
*ctx
)
1335 /* Start with XER CA and OV disabled, the most likely case */
1336 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1337 TCGv t0
= tcg_temp_local_new();
1338 TCGv t1
= tcg_const_local_tl(SIMM(ctx
->opcode
));
1339 tcg_gen_sub_tl(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)]);
1340 gen_op_arith_compute_ca(ctx
, t0
, t1
, 1);
1342 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1346 /*** Integer logical ***/
1347 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1348 static void glue(gen_, name)(DisasContext *ctx) \
1350 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1351 cpu_gpr[rB(ctx->opcode)]); \
1352 if (unlikely(Rc(ctx->opcode) != 0)) \
1353 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1356 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1357 static void glue(gen_, name)(DisasContext *ctx) \
1359 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1360 if (unlikely(Rc(ctx->opcode) != 0)) \
1361 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1365 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
1367 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
1370 static void gen_andi_(DisasContext
*ctx
)
1372 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
));
1373 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1377 static void gen_andis_(DisasContext
*ctx
)
1379 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
) << 16);
1380 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1384 static void gen_cntlzw(DisasContext
*ctx
)
1386 gen_helper_cntlzw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1387 if (unlikely(Rc(ctx
->opcode
) != 0))
1388 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1391 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
1392 /* extsb & extsb. */
1393 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
1394 /* extsh & extsh. */
1395 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
1397 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
1399 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
1402 static void gen_or(DisasContext
*ctx
)
1406 rs
= rS(ctx
->opcode
);
1407 ra
= rA(ctx
->opcode
);
1408 rb
= rB(ctx
->opcode
);
1409 /* Optimisation for mr. ri case */
1410 if (rs
!= ra
|| rs
!= rb
) {
1412 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
1414 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
1415 if (unlikely(Rc(ctx
->opcode
) != 0))
1416 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
1417 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
1418 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
1419 #if defined(TARGET_PPC64)
1425 /* Set process priority to low */
1429 /* Set process priority to medium-low */
1433 /* Set process priority to normal */
1436 #if !defined(CONFIG_USER_ONLY)
1438 if (ctx
->mem_idx
> 0) {
1439 /* Set process priority to very low */
1444 if (ctx
->mem_idx
> 0) {
1445 /* Set process priority to medium-hight */
1450 if (ctx
->mem_idx
> 0) {
1451 /* Set process priority to high */
1456 if (ctx
->mem_idx
> 1) {
1457 /* Set process priority to very high */
1467 TCGv t0
= tcg_temp_new();
1468 gen_load_spr(t0
, SPR_PPR
);
1469 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
1470 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
1471 gen_store_spr(SPR_PPR
, t0
);
1478 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
1481 static void gen_xor(DisasContext
*ctx
)
1483 /* Optimisation for "set to zero" case */
1484 if (rS(ctx
->opcode
) != rB(ctx
->opcode
))
1485 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1487 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1488 if (unlikely(Rc(ctx
->opcode
) != 0))
1489 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1493 static void gen_ori(DisasContext
*ctx
)
1495 target_ulong uimm
= UIMM(ctx
->opcode
);
1497 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1499 /* XXX: should handle special NOPs for POWER series */
1502 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1506 static void gen_oris(DisasContext
*ctx
)
1508 target_ulong uimm
= UIMM(ctx
->opcode
);
1510 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1514 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1518 static void gen_xori(DisasContext
*ctx
)
1520 target_ulong uimm
= UIMM(ctx
->opcode
);
1522 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1526 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1530 static void gen_xoris(DisasContext
*ctx
)
1532 target_ulong uimm
= UIMM(ctx
->opcode
);
1534 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1538 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1541 /* popcntb : PowerPC 2.03 specification */
1542 static void gen_popcntb(DisasContext
*ctx
)
1544 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1547 static void gen_popcntw(DisasContext
*ctx
)
1549 gen_helper_popcntw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1552 #if defined(TARGET_PPC64)
1553 /* popcntd: PowerPC 2.06 specification */
1554 static void gen_popcntd(DisasContext
*ctx
)
1556 gen_helper_popcntd(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1560 #if defined(TARGET_PPC64)
1561 /* extsw & extsw. */
1562 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
1565 static void gen_cntlzd(DisasContext
*ctx
)
1567 gen_helper_cntlzd(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1568 if (unlikely(Rc(ctx
->opcode
) != 0))
1569 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1573 /*** Integer rotate ***/
1575 /* rlwimi & rlwimi. */
1576 static void gen_rlwimi(DisasContext
*ctx
)
1578 uint32_t mb
, me
, sh
;
1580 mb
= MB(ctx
->opcode
);
1581 me
= ME(ctx
->opcode
);
1582 sh
= SH(ctx
->opcode
);
1583 if (likely(sh
== 0 && mb
== 0 && me
== 31)) {
1584 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1588 TCGv t0
= tcg_temp_new();
1589 #if defined(TARGET_PPC64)
1590 TCGv_i32 t2
= tcg_temp_new_i32();
1591 tcg_gen_trunc_i64_i32(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
1592 tcg_gen_rotli_i32(t2
, t2
, sh
);
1593 tcg_gen_extu_i32_i64(t0
, t2
);
1594 tcg_temp_free_i32(t2
);
1596 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1598 #if defined(TARGET_PPC64)
1602 mask
= MASK(mb
, me
);
1603 t1
= tcg_temp_new();
1604 tcg_gen_andi_tl(t0
, t0
, mask
);
1605 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1606 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1610 if (unlikely(Rc(ctx
->opcode
) != 0))
1611 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1614 /* rlwinm & rlwinm. */
1615 static void gen_rlwinm(DisasContext
*ctx
)
1617 uint32_t mb
, me
, sh
;
1619 sh
= SH(ctx
->opcode
);
1620 mb
= MB(ctx
->opcode
);
1621 me
= ME(ctx
->opcode
);
1623 if (likely(mb
== 0 && me
== (31 - sh
))) {
1624 if (likely(sh
== 0)) {
1625 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1627 TCGv t0
= tcg_temp_new();
1628 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1629 tcg_gen_shli_tl(t0
, t0
, sh
);
1630 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1633 } else if (likely(sh
!= 0 && me
== 31 && sh
== (32 - mb
))) {
1634 TCGv t0
= tcg_temp_new();
1635 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1636 tcg_gen_shri_tl(t0
, t0
, mb
);
1637 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1640 TCGv t0
= tcg_temp_new();
1641 #if defined(TARGET_PPC64)
1642 TCGv_i32 t1
= tcg_temp_new_i32();
1643 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1644 tcg_gen_rotli_i32(t1
, t1
, sh
);
1645 tcg_gen_extu_i32_i64(t0
, t1
);
1646 tcg_temp_free_i32(t1
);
1648 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1650 #if defined(TARGET_PPC64)
1654 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1657 if (unlikely(Rc(ctx
->opcode
) != 0))
1658 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1661 /* rlwnm & rlwnm. */
1662 static void gen_rlwnm(DisasContext
*ctx
)
1666 #if defined(TARGET_PPC64)
1670 mb
= MB(ctx
->opcode
);
1671 me
= ME(ctx
->opcode
);
1672 t0
= tcg_temp_new();
1673 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1674 #if defined(TARGET_PPC64)
1675 t1
= tcg_temp_new_i32();
1676 t2
= tcg_temp_new_i32();
1677 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1678 tcg_gen_trunc_i64_i32(t2
, t0
);
1679 tcg_gen_rotl_i32(t1
, t1
, t2
);
1680 tcg_gen_extu_i32_i64(t0
, t1
);
1681 tcg_temp_free_i32(t1
);
1682 tcg_temp_free_i32(t2
);
1684 tcg_gen_rotl_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1686 if (unlikely(mb
!= 0 || me
!= 31)) {
1687 #if defined(TARGET_PPC64)
1691 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1693 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1696 if (unlikely(Rc(ctx
->opcode
) != 0))
1697 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1700 #if defined(TARGET_PPC64)
1701 #define GEN_PPC64_R2(name, opc1, opc2) \
1702 static void glue(gen_, name##0)(DisasContext *ctx) \
1704 gen_##name(ctx, 0); \
1707 static void glue(gen_, name##1)(DisasContext *ctx) \
1709 gen_##name(ctx, 1); \
1711 #define GEN_PPC64_R4(name, opc1, opc2) \
1712 static void glue(gen_, name##0)(DisasContext *ctx) \
1714 gen_##name(ctx, 0, 0); \
1717 static void glue(gen_, name##1)(DisasContext *ctx) \
1719 gen_##name(ctx, 0, 1); \
1722 static void glue(gen_, name##2)(DisasContext *ctx) \
1724 gen_##name(ctx, 1, 0); \
1727 static void glue(gen_, name##3)(DisasContext *ctx) \
1729 gen_##name(ctx, 1, 1); \
1732 static inline void gen_rldinm(DisasContext
*ctx
, uint32_t mb
, uint32_t me
,
1735 if (likely(sh
!= 0 && mb
== 0 && me
== (63 - sh
))) {
1736 tcg_gen_shli_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1737 } else if (likely(sh
!= 0 && me
== 63 && sh
== (64 - mb
))) {
1738 tcg_gen_shri_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], mb
);
1740 TCGv t0
= tcg_temp_new();
1741 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1742 if (likely(mb
== 0 && me
== 63)) {
1743 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1745 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1749 if (unlikely(Rc(ctx
->opcode
) != 0))
1750 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1752 /* rldicl - rldicl. */
1753 static inline void gen_rldicl(DisasContext
*ctx
, int mbn
, int shn
)
1757 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1758 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1759 gen_rldinm(ctx
, mb
, 63, sh
);
1761 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
1762 /* rldicr - rldicr. */
1763 static inline void gen_rldicr(DisasContext
*ctx
, int men
, int shn
)
1767 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1768 me
= MB(ctx
->opcode
) | (men
<< 5);
1769 gen_rldinm(ctx
, 0, me
, sh
);
1771 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
1772 /* rldic - rldic. */
1773 static inline void gen_rldic(DisasContext
*ctx
, int mbn
, int shn
)
1777 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1778 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1779 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
1781 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
1783 static inline void gen_rldnm(DisasContext
*ctx
, uint32_t mb
, uint32_t me
)
1787 mb
= MB(ctx
->opcode
);
1788 me
= ME(ctx
->opcode
);
1789 t0
= tcg_temp_new();
1790 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1791 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1792 if (unlikely(mb
!= 0 || me
!= 63)) {
1793 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1795 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1798 if (unlikely(Rc(ctx
->opcode
) != 0))
1799 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1802 /* rldcl - rldcl. */
1803 static inline void gen_rldcl(DisasContext
*ctx
, int mbn
)
1807 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1808 gen_rldnm(ctx
, mb
, 63);
1810 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
1811 /* rldcr - rldcr. */
1812 static inline void gen_rldcr(DisasContext
*ctx
, int men
)
1816 me
= MB(ctx
->opcode
) | (men
<< 5);
1817 gen_rldnm(ctx
, 0, me
);
1819 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
1820 /* rldimi - rldimi. */
1821 static inline void gen_rldimi(DisasContext
*ctx
, int mbn
, int shn
)
1823 uint32_t sh
, mb
, me
;
1825 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1826 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1828 if (unlikely(sh
== 0 && mb
== 0)) {
1829 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1834 t0
= tcg_temp_new();
1835 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1836 t1
= tcg_temp_new();
1837 mask
= MASK(mb
, me
);
1838 tcg_gen_andi_tl(t0
, t0
, mask
);
1839 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1840 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1844 if (unlikely(Rc(ctx
->opcode
) != 0))
1845 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1847 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
1850 /*** Integer shift ***/
1853 static void gen_slw(DisasContext
*ctx
)
1857 t0
= tcg_temp_new();
1858 /* AND rS with a mask that is 0 when rB >= 0x20 */
1859 #if defined(TARGET_PPC64)
1860 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
1861 tcg_gen_sari_tl(t0
, t0
, 0x3f);
1863 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
1864 tcg_gen_sari_tl(t0
, t0
, 0x1f);
1866 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1867 t1
= tcg_temp_new();
1868 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1869 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1872 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
1873 if (unlikely(Rc(ctx
->opcode
) != 0))
1874 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1878 static void gen_sraw(DisasContext
*ctx
)
1880 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
1881 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1882 if (unlikely(Rc(ctx
->opcode
) != 0))
1883 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1886 /* srawi & srawi. */
1887 static void gen_srawi(DisasContext
*ctx
)
1889 int sh
= SH(ctx
->opcode
);
1893 l1
= gen_new_label();
1894 l2
= gen_new_label();
1895 t0
= tcg_temp_local_new();
1896 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1897 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
1898 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1899 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1900 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1903 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1905 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1906 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, sh
);
1909 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1910 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1912 if (unlikely(Rc(ctx
->opcode
) != 0))
1913 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1917 static void gen_srw(DisasContext
*ctx
)
1921 t0
= tcg_temp_new();
1922 /* AND rS with a mask that is 0 when rB >= 0x20 */
1923 #if defined(TARGET_PPC64)
1924 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
1925 tcg_gen_sari_tl(t0
, t0
, 0x3f);
1927 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
1928 tcg_gen_sari_tl(t0
, t0
, 0x1f);
1930 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1931 tcg_gen_ext32u_tl(t0
, t0
);
1932 t1
= tcg_temp_new();
1933 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1934 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1937 if (unlikely(Rc(ctx
->opcode
) != 0))
1938 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1941 #if defined(TARGET_PPC64)
1943 static void gen_sld(DisasContext
*ctx
)
1947 t0
= tcg_temp_new();
1948 /* AND rS with a mask that is 0 when rB >= 0x40 */
1949 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
1950 tcg_gen_sari_tl(t0
, t0
, 0x3f);
1951 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1952 t1
= tcg_temp_new();
1953 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1954 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1957 if (unlikely(Rc(ctx
->opcode
) != 0))
1958 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1962 static void gen_srad(DisasContext
*ctx
)
1964 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
1965 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1966 if (unlikely(Rc(ctx
->opcode
) != 0))
1967 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1969 /* sradi & sradi. */
1970 static inline void gen_sradi(DisasContext
*ctx
, int n
)
1972 int sh
= SH(ctx
->opcode
) + (n
<< 5);
1976 l1
= gen_new_label();
1977 l2
= gen_new_label();
1978 t0
= tcg_temp_local_new();
1979 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
1980 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1981 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1982 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1985 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1988 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1990 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1991 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1993 if (unlikely(Rc(ctx
->opcode
) != 0))
1994 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1997 static void gen_sradi0(DisasContext
*ctx
)
2002 static void gen_sradi1(DisasContext
*ctx
)
2008 static void gen_srd(DisasContext
*ctx
)
2012 t0
= tcg_temp_new();
2013 /* AND rS with a mask that is 0 when rB >= 0x40 */
2014 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
2015 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2016 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2017 t1
= tcg_temp_new();
2018 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
2019 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2022 if (unlikely(Rc(ctx
->opcode
) != 0))
2023 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2027 /*** Floating-Point arithmetic ***/
2028 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
2029 static void gen_f##name(DisasContext *ctx) \
2031 if (unlikely(!ctx->fpu_enabled)) { \
2032 gen_exception(ctx, POWERPC_EXCP_FPU); \
2035 /* NIP cannot be restored if the memory exception comes from an helper */ \
2036 gen_update_nip(ctx, ctx->nip - 4); \
2037 gen_reset_fpstatus(); \
2038 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2039 cpu_fpr[rA(ctx->opcode)], \
2040 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2042 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2043 cpu_fpr[rD(ctx->opcode)]); \
2045 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
2046 Rc(ctx->opcode) != 0); \
2049 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
2050 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
2051 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2053 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2054 static void gen_f##name(DisasContext *ctx) \
2056 if (unlikely(!ctx->fpu_enabled)) { \
2057 gen_exception(ctx, POWERPC_EXCP_FPU); \
2060 /* NIP cannot be restored if the memory exception comes from an helper */ \
2061 gen_update_nip(ctx, ctx->nip - 4); \
2062 gen_reset_fpstatus(); \
2063 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2064 cpu_fpr[rA(ctx->opcode)], \
2065 cpu_fpr[rB(ctx->opcode)]); \
2067 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2068 cpu_fpr[rD(ctx->opcode)]); \
2070 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2071 set_fprf, Rc(ctx->opcode) != 0); \
2073 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2074 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2075 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2077 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2078 static void gen_f##name(DisasContext *ctx) \
2080 if (unlikely(!ctx->fpu_enabled)) { \
2081 gen_exception(ctx, POWERPC_EXCP_FPU); \
2084 /* NIP cannot be restored if the memory exception comes from an helper */ \
2085 gen_update_nip(ctx, ctx->nip - 4); \
2086 gen_reset_fpstatus(); \
2087 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2088 cpu_fpr[rA(ctx->opcode)], \
2089 cpu_fpr[rC(ctx->opcode)]); \
2091 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2092 cpu_fpr[rD(ctx->opcode)]); \
2094 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2095 set_fprf, Rc(ctx->opcode) != 0); \
2097 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
2098 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2099 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2101 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2102 static void gen_f##name(DisasContext *ctx) \
2104 if (unlikely(!ctx->fpu_enabled)) { \
2105 gen_exception(ctx, POWERPC_EXCP_FPU); \
2108 /* NIP cannot be restored if the memory exception comes from an helper */ \
2109 gen_update_nip(ctx, ctx->nip - 4); \
2110 gen_reset_fpstatus(); \
2111 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2112 cpu_fpr[rB(ctx->opcode)]); \
2113 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2114 set_fprf, Rc(ctx->opcode) != 0); \
2117 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2118 static void gen_f##name(DisasContext *ctx) \
2120 if (unlikely(!ctx->fpu_enabled)) { \
2121 gen_exception(ctx, POWERPC_EXCP_FPU); \
2124 /* NIP cannot be restored if the memory exception comes from an helper */ \
2125 gen_update_nip(ctx, ctx->nip - 4); \
2126 gen_reset_fpstatus(); \
2127 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2128 cpu_fpr[rB(ctx->opcode)]); \
2129 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2130 set_fprf, Rc(ctx->opcode) != 0); \
2134 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
);
2136 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
);
2138 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
);
2141 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
);
2144 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
);
2147 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
);
2150 static void gen_frsqrtes(DisasContext
*ctx
)
2152 if (unlikely(!ctx
->fpu_enabled
)) {
2153 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2156 /* NIP cannot be restored if the memory exception comes from an helper */
2157 gen_update_nip(ctx
, ctx
->nip
- 4);
2158 gen_reset_fpstatus();
2159 gen_helper_frsqrte(cpu_fpr
[rD(ctx
->opcode
)], cpu_env
,
2160 cpu_fpr
[rB(ctx
->opcode
)]);
2161 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_env
,
2162 cpu_fpr
[rD(ctx
->opcode
)]);
2163 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2167 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
);
2169 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
);
2173 static void gen_fsqrt(DisasContext
*ctx
)
2175 if (unlikely(!ctx
->fpu_enabled
)) {
2176 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2179 /* NIP cannot be restored if the memory exception comes from an helper */
2180 gen_update_nip(ctx
, ctx
->nip
- 4);
2181 gen_reset_fpstatus();
2182 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_env
,
2183 cpu_fpr
[rB(ctx
->opcode
)]);
2184 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2187 static void gen_fsqrts(DisasContext
*ctx
)
2189 if (unlikely(!ctx
->fpu_enabled
)) {
2190 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2193 /* NIP cannot be restored if the memory exception comes from an helper */
2194 gen_update_nip(ctx
, ctx
->nip
- 4);
2195 gen_reset_fpstatus();
2196 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_env
,
2197 cpu_fpr
[rB(ctx
->opcode
)]);
2198 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_env
,
2199 cpu_fpr
[rD(ctx
->opcode
)]);
2200 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2203 /*** Floating-Point multiply-and-add ***/
2204 /* fmadd - fmadds */
2205 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
);
2206 /* fmsub - fmsubs */
2207 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
);
2208 /* fnmadd - fnmadds */
2209 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
);
2210 /* fnmsub - fnmsubs */
2211 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
);
2213 /*** Floating-Point round & convert ***/
2215 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
);
2217 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
);
2219 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
);
2220 #if defined(TARGET_PPC64)
2222 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
);
2224 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
);
2226 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
);
2230 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
);
2232 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
);
2234 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
);
2236 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
);
2238 /*** Floating-Point compare ***/
2241 static void gen_fcmpo(DisasContext
*ctx
)
2244 if (unlikely(!ctx
->fpu_enabled
)) {
2245 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2248 /* NIP cannot be restored if the memory exception comes from an helper */
2249 gen_update_nip(ctx
, ctx
->nip
- 4);
2250 gen_reset_fpstatus();
2251 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2252 gen_helper_fcmpo(cpu_env
, cpu_fpr
[rA(ctx
->opcode
)],
2253 cpu_fpr
[rB(ctx
->opcode
)], crf
);
2254 tcg_temp_free_i32(crf
);
2255 gen_helper_float_check_status(cpu_env
);
2259 static void gen_fcmpu(DisasContext
*ctx
)
2262 if (unlikely(!ctx
->fpu_enabled
)) {
2263 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2266 /* NIP cannot be restored if the memory exception comes from an helper */
2267 gen_update_nip(ctx
, ctx
->nip
- 4);
2268 gen_reset_fpstatus();
2269 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2270 gen_helper_fcmpu(cpu_env
, cpu_fpr
[rA(ctx
->opcode
)],
2271 cpu_fpr
[rB(ctx
->opcode
)], crf
);
2272 tcg_temp_free_i32(crf
);
2273 gen_helper_float_check_status(cpu_env
);
2276 /*** Floating-point move ***/
2278 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2279 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
);
2282 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2283 static void gen_fmr(DisasContext
*ctx
)
2285 if (unlikely(!ctx
->fpu_enabled
)) {
2286 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2289 tcg_gen_mov_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2290 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2294 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2295 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
);
2297 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2298 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
);
2300 /*** Floating-Point status & ctrl register ***/
2303 static void gen_mcrfs(DisasContext
*ctx
)
2305 TCGv tmp
= tcg_temp_new();
2308 if (unlikely(!ctx
->fpu_enabled
)) {
2309 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2312 bfa
= 4 * (7 - crfS(ctx
->opcode
));
2313 tcg_gen_shri_tl(tmp
, cpu_fpscr
, bfa
);
2314 tcg_gen_trunc_tl_i32(cpu_crf
[crfD(ctx
->opcode
)], tmp
);
2316 tcg_gen_andi_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], 0xf);
2317 tcg_gen_andi_tl(cpu_fpscr
, cpu_fpscr
, ~(0xF << bfa
));
2321 static void gen_mffs(DisasContext
*ctx
)
2323 if (unlikely(!ctx
->fpu_enabled
)) {
2324 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2327 gen_reset_fpstatus();
2328 tcg_gen_extu_tl_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpscr
);
2329 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2333 static void gen_mtfsb0(DisasContext
*ctx
)
2337 if (unlikely(!ctx
->fpu_enabled
)) {
2338 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2341 crb
= 31 - crbD(ctx
->opcode
);
2342 gen_reset_fpstatus();
2343 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
)) {
2345 /* NIP cannot be restored if the memory exception comes from an helper */
2346 gen_update_nip(ctx
, ctx
->nip
- 4);
2347 t0
= tcg_const_i32(crb
);
2348 gen_helper_fpscr_clrbit(cpu_env
, t0
);
2349 tcg_temp_free_i32(t0
);
2351 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2352 tcg_gen_trunc_tl_i32(cpu_crf
[1], cpu_fpscr
);
2353 tcg_gen_shri_i32(cpu_crf
[1], cpu_crf
[1], FPSCR_OX
);
2358 static void gen_mtfsb1(DisasContext
*ctx
)
2362 if (unlikely(!ctx
->fpu_enabled
)) {
2363 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2366 crb
= 31 - crbD(ctx
->opcode
);
2367 gen_reset_fpstatus();
2368 /* XXX: we pretend we can only do IEEE floating-point computations */
2369 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
&& crb
!= FPSCR_NI
)) {
2371 /* NIP cannot be restored if the memory exception comes from an helper */
2372 gen_update_nip(ctx
, ctx
->nip
- 4);
2373 t0
= tcg_const_i32(crb
);
2374 gen_helper_fpscr_setbit(cpu_env
, t0
);
2375 tcg_temp_free_i32(t0
);
2377 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2378 tcg_gen_trunc_tl_i32(cpu_crf
[1], cpu_fpscr
);
2379 tcg_gen_shri_i32(cpu_crf
[1], cpu_crf
[1], FPSCR_OX
);
2381 /* We can raise a differed exception */
2382 gen_helper_float_check_status(cpu_env
);
2386 static void gen_mtfsf(DisasContext
*ctx
)
2389 int L
= ctx
->opcode
& 0x02000000;
2391 if (unlikely(!ctx
->fpu_enabled
)) {
2392 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2395 /* NIP cannot be restored if the memory exception comes from an helper */
2396 gen_update_nip(ctx
, ctx
->nip
- 4);
2397 gen_reset_fpstatus();
2399 t0
= tcg_const_i32(0xff);
2401 t0
= tcg_const_i32(FM(ctx
->opcode
));
2402 gen_helper_store_fpscr(cpu_env
, cpu_fpr
[rB(ctx
->opcode
)], t0
);
2403 tcg_temp_free_i32(t0
);
2404 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2405 tcg_gen_trunc_tl_i32(cpu_crf
[1], cpu_fpscr
);
2406 tcg_gen_shri_i32(cpu_crf
[1], cpu_crf
[1], FPSCR_OX
);
2408 /* We can raise a differed exception */
2409 gen_helper_float_check_status(cpu_env
);
2413 static void gen_mtfsfi(DisasContext
*ctx
)
2419 if (unlikely(!ctx
->fpu_enabled
)) {
2420 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2423 bf
= crbD(ctx
->opcode
) >> 2;
2425 /* NIP cannot be restored if the memory exception comes from an helper */
2426 gen_update_nip(ctx
, ctx
->nip
- 4);
2427 gen_reset_fpstatus();
2428 t0
= tcg_const_i64(FPIMM(ctx
->opcode
) << (4 * sh
));
2429 t1
= tcg_const_i32(1 << sh
);
2430 gen_helper_store_fpscr(cpu_env
, t0
, t1
);
2431 tcg_temp_free_i64(t0
);
2432 tcg_temp_free_i32(t1
);
2433 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2434 tcg_gen_trunc_tl_i32(cpu_crf
[1], cpu_fpscr
);
2435 tcg_gen_shri_i32(cpu_crf
[1], cpu_crf
[1], FPSCR_OX
);
2437 /* We can raise a differed exception */
2438 gen_helper_float_check_status(cpu_env
);
2441 /*** Addressing modes ***/
2442 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2443 static inline void gen_addr_imm_index(DisasContext
*ctx
, TCGv EA
,
2446 target_long simm
= SIMM(ctx
->opcode
);
2449 if (rA(ctx
->opcode
) == 0) {
2450 #if defined(TARGET_PPC64)
2451 if (!ctx
->sf_mode
) {
2452 tcg_gen_movi_tl(EA
, (uint32_t)simm
);
2455 tcg_gen_movi_tl(EA
, simm
);
2456 } else if (likely(simm
!= 0)) {
2457 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
2458 #if defined(TARGET_PPC64)
2459 if (!ctx
->sf_mode
) {
2460 tcg_gen_ext32u_tl(EA
, EA
);
2464 #if defined(TARGET_PPC64)
2465 if (!ctx
->sf_mode
) {
2466 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2469 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2473 static inline void gen_addr_reg_index(DisasContext
*ctx
, TCGv EA
)
2475 if (rA(ctx
->opcode
) == 0) {
2476 #if defined(TARGET_PPC64)
2477 if (!ctx
->sf_mode
) {
2478 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2481 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2483 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2484 #if defined(TARGET_PPC64)
2485 if (!ctx
->sf_mode
) {
2486 tcg_gen_ext32u_tl(EA
, EA
);
2492 static inline void gen_addr_register(DisasContext
*ctx
, TCGv EA
)
2494 if (rA(ctx
->opcode
) == 0) {
2495 tcg_gen_movi_tl(EA
, 0);
2497 #if defined(TARGET_PPC64)
2498 if (!ctx
->sf_mode
) {
2499 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2502 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2506 static inline void gen_addr_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
2509 tcg_gen_addi_tl(ret
, arg1
, val
);
2510 #if defined(TARGET_PPC64)
2511 if (!ctx
->sf_mode
) {
2512 tcg_gen_ext32u_tl(ret
, ret
);
2517 static inline void gen_check_align(DisasContext
*ctx
, TCGv EA
, int mask
)
2519 int l1
= gen_new_label();
2520 TCGv t0
= tcg_temp_new();
2522 /* NIP cannot be restored if the memory exception comes from an helper */
2523 gen_update_nip(ctx
, ctx
->nip
- 4);
2524 tcg_gen_andi_tl(t0
, EA
, mask
);
2525 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2526 t1
= tcg_const_i32(POWERPC_EXCP_ALIGN
);
2527 t2
= tcg_const_i32(0);
2528 gen_helper_raise_exception_err(cpu_env
, t1
, t2
);
2529 tcg_temp_free_i32(t1
);
2530 tcg_temp_free_i32(t2
);
2535 /*** Integer load ***/
2536 static inline void gen_qemu_ld8u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2538 tcg_gen_qemu_ld8u(arg1
, arg2
, ctx
->mem_idx
);
2541 static inline void gen_qemu_ld8s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2543 tcg_gen_qemu_ld8s(arg1
, arg2
, ctx
->mem_idx
);
2546 static inline void gen_qemu_ld16u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2548 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2549 if (unlikely(ctx
->le_mode
)) {
2550 tcg_gen_bswap16_tl(arg1
, arg1
);
2554 static inline void gen_qemu_ld16s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2556 if (unlikely(ctx
->le_mode
)) {
2557 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2558 tcg_gen_bswap16_tl(arg1
, arg1
);
2559 tcg_gen_ext16s_tl(arg1
, arg1
);
2561 tcg_gen_qemu_ld16s(arg1
, arg2
, ctx
->mem_idx
);
2565 static inline void gen_qemu_ld32u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2567 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2568 if (unlikely(ctx
->le_mode
)) {
2569 tcg_gen_bswap32_tl(arg1
, arg1
);
2573 #if defined(TARGET_PPC64)
2574 static inline void gen_qemu_ld32s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2576 if (unlikely(ctx
->le_mode
)) {
2577 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2578 tcg_gen_bswap32_tl(arg1
, arg1
);
2579 tcg_gen_ext32s_tl(arg1
, arg1
);
2581 tcg_gen_qemu_ld32s(arg1
, arg2
, ctx
->mem_idx
);
2585 static inline void gen_qemu_ld64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2587 tcg_gen_qemu_ld64(arg1
, arg2
, ctx
->mem_idx
);
2588 if (unlikely(ctx
->le_mode
)) {
2589 tcg_gen_bswap64_i64(arg1
, arg1
);
2593 static inline void gen_qemu_st8(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2595 tcg_gen_qemu_st8(arg1
, arg2
, ctx
->mem_idx
);
2598 static inline void gen_qemu_st16(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2600 if (unlikely(ctx
->le_mode
)) {
2601 TCGv t0
= tcg_temp_new();
2602 tcg_gen_ext16u_tl(t0
, arg1
);
2603 tcg_gen_bswap16_tl(t0
, t0
);
2604 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2607 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2611 static inline void gen_qemu_st32(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2613 if (unlikely(ctx
->le_mode
)) {
2614 TCGv t0
= tcg_temp_new();
2615 tcg_gen_ext32u_tl(t0
, arg1
);
2616 tcg_gen_bswap32_tl(t0
, t0
);
2617 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2620 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2624 static inline void gen_qemu_st64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2626 if (unlikely(ctx
->le_mode
)) {
2627 TCGv_i64 t0
= tcg_temp_new_i64();
2628 tcg_gen_bswap64_i64(t0
, arg1
);
2629 tcg_gen_qemu_st64(t0
, arg2
, ctx
->mem_idx
);
2630 tcg_temp_free_i64(t0
);
2632 tcg_gen_qemu_st64(arg1
, arg2
, ctx
->mem_idx
);
2635 #define GEN_LD(name, ldop, opc, type) \
2636 static void glue(gen_, name)(DisasContext *ctx) \
2639 gen_set_access_type(ctx, ACCESS_INT); \
2640 EA = tcg_temp_new(); \
2641 gen_addr_imm_index(ctx, EA, 0); \
2642 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2643 tcg_temp_free(EA); \
2646 #define GEN_LDU(name, ldop, opc, type) \
2647 static void glue(gen_, name##u)(DisasContext *ctx) \
2650 if (unlikely(rA(ctx->opcode) == 0 || \
2651 rA(ctx->opcode) == rD(ctx->opcode))) { \
2652 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2655 gen_set_access_type(ctx, ACCESS_INT); \
2656 EA = tcg_temp_new(); \
2657 if (type == PPC_64B) \
2658 gen_addr_imm_index(ctx, EA, 0x03); \
2660 gen_addr_imm_index(ctx, EA, 0); \
2661 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2662 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2663 tcg_temp_free(EA); \
2666 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2667 static void glue(gen_, name##ux)(DisasContext *ctx) \
2670 if (unlikely(rA(ctx->opcode) == 0 || \
2671 rA(ctx->opcode) == rD(ctx->opcode))) { \
2672 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2675 gen_set_access_type(ctx, ACCESS_INT); \
2676 EA = tcg_temp_new(); \
2677 gen_addr_reg_index(ctx, EA); \
2678 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2679 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2680 tcg_temp_free(EA); \
2683 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2) \
2684 static void glue(gen_, name##x)(DisasContext *ctx) \
2687 gen_set_access_type(ctx, ACCESS_INT); \
2688 EA = tcg_temp_new(); \
2689 gen_addr_reg_index(ctx, EA); \
2690 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2691 tcg_temp_free(EA); \
2693 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2694 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE)
2696 #define GEN_LDS(name, ldop, op, type) \
2697 GEN_LD(name, ldop, op | 0x20, type); \
2698 GEN_LDU(name, ldop, op | 0x21, type); \
2699 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2700 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2702 /* lbz lbzu lbzux lbzx */
2703 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
);
2704 /* lha lhau lhaux lhax */
2705 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
);
2706 /* lhz lhzu lhzux lhzx */
2707 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
);
2708 /* lwz lwzu lwzux lwzx */
2709 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
);
2710 #if defined(TARGET_PPC64)
2712 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
);
2714 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
);
2716 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
);
2718 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
);
2720 static void gen_ld(DisasContext
*ctx
)
2723 if (Rc(ctx
->opcode
)) {
2724 if (unlikely(rA(ctx
->opcode
) == 0 ||
2725 rA(ctx
->opcode
) == rD(ctx
->opcode
))) {
2726 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2730 gen_set_access_type(ctx
, ACCESS_INT
);
2731 EA
= tcg_temp_new();
2732 gen_addr_imm_index(ctx
, EA
, 0x03);
2733 if (ctx
->opcode
& 0x02) {
2734 /* lwa (lwau is undefined) */
2735 gen_qemu_ld32s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2738 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2740 if (Rc(ctx
->opcode
))
2741 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2746 static void gen_lq(DisasContext
*ctx
)
2748 #if defined(CONFIG_USER_ONLY)
2749 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2754 /* Restore CPU state */
2755 if (unlikely(ctx
->mem_idx
== 0)) {
2756 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2759 ra
= rA(ctx
->opcode
);
2760 rd
= rD(ctx
->opcode
);
2761 if (unlikely((rd
& 1) || rd
== ra
)) {
2762 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2765 if (unlikely(ctx
->le_mode
)) {
2766 /* Little-endian mode is not handled */
2767 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2770 gen_set_access_type(ctx
, ACCESS_INT
);
2771 EA
= tcg_temp_new();
2772 gen_addr_imm_index(ctx
, EA
, 0x0F);
2773 gen_qemu_ld64(ctx
, cpu_gpr
[rd
], EA
);
2774 gen_addr_add(ctx
, EA
, EA
, 8);
2775 gen_qemu_ld64(ctx
, cpu_gpr
[rd
+1], EA
);
2781 /*** Integer store ***/
2782 #define GEN_ST(name, stop, opc, type) \
2783 static void glue(gen_, name)(DisasContext *ctx) \
2786 gen_set_access_type(ctx, ACCESS_INT); \
2787 EA = tcg_temp_new(); \
2788 gen_addr_imm_index(ctx, EA, 0); \
2789 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2790 tcg_temp_free(EA); \
2793 #define GEN_STU(name, stop, opc, type) \
2794 static void glue(gen_, stop##u)(DisasContext *ctx) \
2797 if (unlikely(rA(ctx->opcode) == 0)) { \
2798 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2801 gen_set_access_type(ctx, ACCESS_INT); \
2802 EA = tcg_temp_new(); \
2803 if (type == PPC_64B) \
2804 gen_addr_imm_index(ctx, EA, 0x03); \
2806 gen_addr_imm_index(ctx, EA, 0); \
2807 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2808 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2809 tcg_temp_free(EA); \
2812 #define GEN_STUX(name, stop, opc2, opc3, type) \
2813 static void glue(gen_, name##ux)(DisasContext *ctx) \
2816 if (unlikely(rA(ctx->opcode) == 0)) { \
2817 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2820 gen_set_access_type(ctx, ACCESS_INT); \
2821 EA = tcg_temp_new(); \
2822 gen_addr_reg_index(ctx, EA); \
2823 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2824 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2825 tcg_temp_free(EA); \
2828 #define GEN_STX_E(name, stop, opc2, opc3, type, type2) \
2829 static void glue(gen_, name##x)(DisasContext *ctx) \
2832 gen_set_access_type(ctx, ACCESS_INT); \
2833 EA = tcg_temp_new(); \
2834 gen_addr_reg_index(ctx, EA); \
2835 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2836 tcg_temp_free(EA); \
2838 #define GEN_STX(name, stop, opc2, opc3, type) \
2839 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE)
2841 #define GEN_STS(name, stop, op, type) \
2842 GEN_ST(name, stop, op | 0x20, type); \
2843 GEN_STU(name, stop, op | 0x21, type); \
2844 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2845 GEN_STX(name, stop, 0x17, op | 0x00, type)
2847 /* stb stbu stbux stbx */
2848 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
);
2849 /* sth sthu sthux sthx */
2850 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
);
2851 /* stw stwu stwux stwx */
2852 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
);
2853 #if defined(TARGET_PPC64)
2854 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
);
2855 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
);
2857 static void gen_std(DisasContext
*ctx
)
2862 rs
= rS(ctx
->opcode
);
2863 if ((ctx
->opcode
& 0x3) == 0x2) {
2864 #if defined(CONFIG_USER_ONLY)
2865 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2868 if (unlikely(ctx
->mem_idx
== 0)) {
2869 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2872 if (unlikely(rs
& 1)) {
2873 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2876 if (unlikely(ctx
->le_mode
)) {
2877 /* Little-endian mode is not handled */
2878 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2881 gen_set_access_type(ctx
, ACCESS_INT
);
2882 EA
= tcg_temp_new();
2883 gen_addr_imm_index(ctx
, EA
, 0x03);
2884 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2885 gen_addr_add(ctx
, EA
, EA
, 8);
2886 gen_qemu_st64(ctx
, cpu_gpr
[rs
+1], EA
);
2891 if (Rc(ctx
->opcode
)) {
2892 if (unlikely(rA(ctx
->opcode
) == 0)) {
2893 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2897 gen_set_access_type(ctx
, ACCESS_INT
);
2898 EA
= tcg_temp_new();
2899 gen_addr_imm_index(ctx
, EA
, 0x03);
2900 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2901 if (Rc(ctx
->opcode
))
2902 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2907 /*** Integer load and store with byte reverse ***/
2909 static inline void gen_qemu_ld16ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2911 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2912 if (likely(!ctx
->le_mode
)) {
2913 tcg_gen_bswap16_tl(arg1
, arg1
);
2916 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
2919 static inline void gen_qemu_ld32ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2921 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2922 if (likely(!ctx
->le_mode
)) {
2923 tcg_gen_bswap32_tl(arg1
, arg1
);
2926 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
2928 #if defined(TARGET_PPC64)
2930 static inline void gen_qemu_ld64ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2932 tcg_gen_qemu_ld64(arg1
, arg2
, ctx
->mem_idx
);
2933 if (likely(!ctx
->le_mode
)) {
2934 tcg_gen_bswap64_tl(arg1
, arg1
);
2937 GEN_LDX_E(ldbr
, ld64ur
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
);
2938 #endif /* TARGET_PPC64 */
2941 static inline void gen_qemu_st16r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2943 if (likely(!ctx
->le_mode
)) {
2944 TCGv t0
= tcg_temp_new();
2945 tcg_gen_ext16u_tl(t0
, arg1
);
2946 tcg_gen_bswap16_tl(t0
, t0
);
2947 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2950 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2953 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
2956 static inline void gen_qemu_st32r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2958 if (likely(!ctx
->le_mode
)) {
2959 TCGv t0
= tcg_temp_new();
2960 tcg_gen_ext32u_tl(t0
, arg1
);
2961 tcg_gen_bswap32_tl(t0
, t0
);
2962 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2965 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2968 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
2970 #if defined(TARGET_PPC64)
2972 static inline void gen_qemu_st64r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2974 if (likely(!ctx
->le_mode
)) {
2975 TCGv t0
= tcg_temp_new();
2976 tcg_gen_bswap64_tl(t0
, arg1
);
2977 tcg_gen_qemu_st64(t0
, arg2
, ctx
->mem_idx
);
2980 tcg_gen_qemu_st64(arg1
, arg2
, ctx
->mem_idx
);
2983 GEN_STX_E(stdbr
, st64r
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
);
2984 #endif /* TARGET_PPC64 */
2986 /*** Integer load and store multiple ***/
2989 static void gen_lmw(DisasContext
*ctx
)
2993 gen_set_access_type(ctx
, ACCESS_INT
);
2994 /* NIP cannot be restored if the memory exception comes from an helper */
2995 gen_update_nip(ctx
, ctx
->nip
- 4);
2996 t0
= tcg_temp_new();
2997 t1
= tcg_const_i32(rD(ctx
->opcode
));
2998 gen_addr_imm_index(ctx
, t0
, 0);
2999 gen_helper_lmw(cpu_env
, t0
, t1
);
3001 tcg_temp_free_i32(t1
);
3005 static void gen_stmw(DisasContext
*ctx
)
3009 gen_set_access_type(ctx
, ACCESS_INT
);
3010 /* NIP cannot be restored if the memory exception comes from an helper */
3011 gen_update_nip(ctx
, ctx
->nip
- 4);
3012 t0
= tcg_temp_new();
3013 t1
= tcg_const_i32(rS(ctx
->opcode
));
3014 gen_addr_imm_index(ctx
, t0
, 0);
3015 gen_helper_stmw(cpu_env
, t0
, t1
);
3017 tcg_temp_free_i32(t1
);
3020 /*** Integer load and store strings ***/
3023 /* PowerPC32 specification says we must generate an exception if
3024 * rA is in the range of registers to be loaded.
3025 * In an other hand, IBM says this is valid, but rA won't be loaded.
3026 * For now, I'll follow the spec...
3028 static void gen_lswi(DisasContext
*ctx
)
3032 int nb
= NB(ctx
->opcode
);
3033 int start
= rD(ctx
->opcode
);
3034 int ra
= rA(ctx
->opcode
);
3040 if (unlikely(((start
+ nr
) > 32 &&
3041 start
<= ra
&& (start
+ nr
- 32) > ra
) ||
3042 ((start
+ nr
) <= 32 && start
<= ra
&& (start
+ nr
) > ra
))) {
3043 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3046 gen_set_access_type(ctx
, ACCESS_INT
);
3047 /* NIP cannot be restored if the memory exception comes from an helper */
3048 gen_update_nip(ctx
, ctx
->nip
- 4);
3049 t0
= tcg_temp_new();
3050 gen_addr_register(ctx
, t0
);
3051 t1
= tcg_const_i32(nb
);
3052 t2
= tcg_const_i32(start
);
3053 gen_helper_lsw(cpu_env
, t0
, t1
, t2
);
3055 tcg_temp_free_i32(t1
);
3056 tcg_temp_free_i32(t2
);
3060 static void gen_lswx(DisasContext
*ctx
)
3063 TCGv_i32 t1
, t2
, t3
;
3064 gen_set_access_type(ctx
, ACCESS_INT
);
3065 /* NIP cannot be restored if the memory exception comes from an helper */
3066 gen_update_nip(ctx
, ctx
->nip
- 4);
3067 t0
= tcg_temp_new();
3068 gen_addr_reg_index(ctx
, t0
);
3069 t1
= tcg_const_i32(rD(ctx
->opcode
));
3070 t2
= tcg_const_i32(rA(ctx
->opcode
));
3071 t3
= tcg_const_i32(rB(ctx
->opcode
));
3072 gen_helper_lswx(cpu_env
, t0
, t1
, t2
, t3
);
3074 tcg_temp_free_i32(t1
);
3075 tcg_temp_free_i32(t2
);
3076 tcg_temp_free_i32(t3
);
3080 static void gen_stswi(DisasContext
*ctx
)
3084 int nb
= NB(ctx
->opcode
);
3085 gen_set_access_type(ctx
, ACCESS_INT
);
3086 /* NIP cannot be restored if the memory exception comes from an helper */
3087 gen_update_nip(ctx
, ctx
->nip
- 4);
3088 t0
= tcg_temp_new();
3089 gen_addr_register(ctx
, t0
);
3092 t1
= tcg_const_i32(nb
);
3093 t2
= tcg_const_i32(rS(ctx
->opcode
));
3094 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
3096 tcg_temp_free_i32(t1
);
3097 tcg_temp_free_i32(t2
);
3101 static void gen_stswx(DisasContext
*ctx
)
3105 gen_set_access_type(ctx
, ACCESS_INT
);
3106 /* NIP cannot be restored if the memory exception comes from an helper */
3107 gen_update_nip(ctx
, ctx
->nip
- 4);
3108 t0
= tcg_temp_new();
3109 gen_addr_reg_index(ctx
, t0
);
3110 t1
= tcg_temp_new_i32();
3111 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
3112 tcg_gen_andi_i32(t1
, t1
, 0x7F);
3113 t2
= tcg_const_i32(rS(ctx
->opcode
));
3114 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
3116 tcg_temp_free_i32(t1
);
3117 tcg_temp_free_i32(t2
);
3120 /*** Memory synchronisation ***/
3122 static void gen_eieio(DisasContext
*ctx
)
3127 static void gen_isync(DisasContext
*ctx
)
3129 gen_stop_exception(ctx
);
3133 static void gen_lwarx(DisasContext
*ctx
)
3136 TCGv gpr
= cpu_gpr
[rD(ctx
->opcode
)];
3137 gen_set_access_type(ctx
, ACCESS_RES
);
3138 t0
= tcg_temp_local_new();
3139 gen_addr_reg_index(ctx
, t0
);
3140 gen_check_align(ctx
, t0
, 0x03);
3141 gen_qemu_ld32u(ctx
, gpr
, t0
);
3142 tcg_gen_mov_tl(cpu_reserve
, t0
);
3143 tcg_gen_st_tl(gpr
, cpu_env
, offsetof(CPUPPCState
, reserve_val
));
3147 #if defined(CONFIG_USER_ONLY)
3148 static void gen_conditional_store (DisasContext
*ctx
, TCGv EA
,
3151 TCGv t0
= tcg_temp_new();
3152 uint32_t save_exception
= ctx
->exception
;
3154 tcg_gen_st_tl(EA
, cpu_env
, offsetof(CPUPPCState
, reserve_ea
));
3155 tcg_gen_movi_tl(t0
, (size
<< 5) | reg
);
3156 tcg_gen_st_tl(t0
, cpu_env
, offsetof(CPUPPCState
, reserve_info
));
3158 gen_update_nip(ctx
, ctx
->nip
-4);
3159 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3160 gen_exception(ctx
, POWERPC_EXCP_STCX
);
3161 ctx
->exception
= save_exception
;
3166 static void gen_stwcx_(DisasContext
*ctx
)
3169 gen_set_access_type(ctx
, ACCESS_RES
);
3170 t0
= tcg_temp_local_new();
3171 gen_addr_reg_index(ctx
, t0
);
3172 gen_check_align(ctx
, t0
, 0x03);
3173 #if defined(CONFIG_USER_ONLY)
3174 gen_conditional_store(ctx
, t0
, rS(ctx
->opcode
), 4);
3179 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3180 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3181 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3182 l1
= gen_new_label();
3183 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3184 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3185 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3187 tcg_gen_movi_tl(cpu_reserve
, -1);
3193 #if defined(TARGET_PPC64)
3195 static void gen_ldarx(DisasContext
*ctx
)
3198 TCGv gpr
= cpu_gpr
[rD(ctx
->opcode
)];
3199 gen_set_access_type(ctx
, ACCESS_RES
);
3200 t0
= tcg_temp_local_new();
3201 gen_addr_reg_index(ctx
, t0
);
3202 gen_check_align(ctx
, t0
, 0x07);
3203 gen_qemu_ld64(ctx
, gpr
, t0
);
3204 tcg_gen_mov_tl(cpu_reserve
, t0
);
3205 tcg_gen_st_tl(gpr
, cpu_env
, offsetof(CPUPPCState
, reserve_val
));
3210 static void gen_stdcx_(DisasContext
*ctx
)
3213 gen_set_access_type(ctx
, ACCESS_RES
);
3214 t0
= tcg_temp_local_new();
3215 gen_addr_reg_index(ctx
, t0
);
3216 gen_check_align(ctx
, t0
, 0x07);
3217 #if defined(CONFIG_USER_ONLY)
3218 gen_conditional_store(ctx
, t0
, rS(ctx
->opcode
), 8);
3222 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3223 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3224 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3225 l1
= gen_new_label();
3226 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3227 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3228 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3230 tcg_gen_movi_tl(cpu_reserve
, -1);
3235 #endif /* defined(TARGET_PPC64) */
3238 static void gen_sync(DisasContext
*ctx
)
3243 static void gen_wait(DisasContext
*ctx
)
3245 TCGv_i32 t0
= tcg_temp_new_i32();
3246 tcg_gen_st_i32(t0
, cpu_env
, offsetof(CPUPPCState
, halted
));
3247 tcg_temp_free_i32(t0
);
3248 /* Stop translation, as the CPU is supposed to sleep from now */
3249 gen_exception_err(ctx
, EXCP_HLT
, 1);
3252 /*** Floating-point load ***/
3253 #define GEN_LDF(name, ldop, opc, type) \
3254 static void glue(gen_, name)(DisasContext *ctx) \
3257 if (unlikely(!ctx->fpu_enabled)) { \
3258 gen_exception(ctx, POWERPC_EXCP_FPU); \
3261 gen_set_access_type(ctx, ACCESS_FLOAT); \
3262 EA = tcg_temp_new(); \
3263 gen_addr_imm_index(ctx, EA, 0); \
3264 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3265 tcg_temp_free(EA); \
3268 #define GEN_LDUF(name, ldop, opc, type) \
3269 static void glue(gen_, name##u)(DisasContext *ctx) \
3272 if (unlikely(!ctx->fpu_enabled)) { \
3273 gen_exception(ctx, POWERPC_EXCP_FPU); \
3276 if (unlikely(rA(ctx->opcode) == 0)) { \
3277 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3280 gen_set_access_type(ctx, ACCESS_FLOAT); \
3281 EA = tcg_temp_new(); \
3282 gen_addr_imm_index(ctx, EA, 0); \
3283 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3284 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3285 tcg_temp_free(EA); \
3288 #define GEN_LDUXF(name, ldop, opc, type) \
3289 static void glue(gen_, name##ux)(DisasContext *ctx) \
3292 if (unlikely(!ctx->fpu_enabled)) { \
3293 gen_exception(ctx, POWERPC_EXCP_FPU); \
3296 if (unlikely(rA(ctx->opcode) == 0)) { \
3297 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3300 gen_set_access_type(ctx, ACCESS_FLOAT); \
3301 EA = tcg_temp_new(); \
3302 gen_addr_reg_index(ctx, EA); \
3303 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3304 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3305 tcg_temp_free(EA); \
3308 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3309 static void glue(gen_, name##x)(DisasContext *ctx) \
3312 if (unlikely(!ctx->fpu_enabled)) { \
3313 gen_exception(ctx, POWERPC_EXCP_FPU); \
3316 gen_set_access_type(ctx, ACCESS_FLOAT); \
3317 EA = tcg_temp_new(); \
3318 gen_addr_reg_index(ctx, EA); \
3319 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3320 tcg_temp_free(EA); \
3323 #define GEN_LDFS(name, ldop, op, type) \
3324 GEN_LDF(name, ldop, op | 0x20, type); \
3325 GEN_LDUF(name, ldop, op | 0x21, type); \
3326 GEN_LDUXF(name, ldop, op | 0x01, type); \
3327 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3329 static inline void gen_qemu_ld32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3331 TCGv t0
= tcg_temp_new();
3332 TCGv_i32 t1
= tcg_temp_new_i32();
3333 gen_qemu_ld32u(ctx
, t0
, arg2
);
3334 tcg_gen_trunc_tl_i32(t1
, t0
);
3336 gen_helper_float32_to_float64(arg1
, cpu_env
, t1
);
3337 tcg_temp_free_i32(t1
);
3340 /* lfd lfdu lfdux lfdx */
3341 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
);
3342 /* lfs lfsu lfsux lfsx */
3343 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
);
3345 /*** Floating-point store ***/
3346 #define GEN_STF(name, stop, opc, type) \
3347 static void glue(gen_, name)(DisasContext *ctx) \
3350 if (unlikely(!ctx->fpu_enabled)) { \
3351 gen_exception(ctx, POWERPC_EXCP_FPU); \
3354 gen_set_access_type(ctx, ACCESS_FLOAT); \
3355 EA = tcg_temp_new(); \
3356 gen_addr_imm_index(ctx, EA, 0); \
3357 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3358 tcg_temp_free(EA); \
3361 #define GEN_STUF(name, stop, opc, type) \
3362 static void glue(gen_, name##u)(DisasContext *ctx) \
3365 if (unlikely(!ctx->fpu_enabled)) { \
3366 gen_exception(ctx, POWERPC_EXCP_FPU); \
3369 if (unlikely(rA(ctx->opcode) == 0)) { \
3370 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3373 gen_set_access_type(ctx, ACCESS_FLOAT); \
3374 EA = tcg_temp_new(); \
3375 gen_addr_imm_index(ctx, EA, 0); \
3376 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3377 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3378 tcg_temp_free(EA); \
3381 #define GEN_STUXF(name, stop, opc, type) \
3382 static void glue(gen_, name##ux)(DisasContext *ctx) \
3385 if (unlikely(!ctx->fpu_enabled)) { \
3386 gen_exception(ctx, POWERPC_EXCP_FPU); \
3389 if (unlikely(rA(ctx->opcode) == 0)) { \
3390 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3393 gen_set_access_type(ctx, ACCESS_FLOAT); \
3394 EA = tcg_temp_new(); \
3395 gen_addr_reg_index(ctx, EA); \
3396 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3397 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3398 tcg_temp_free(EA); \
3401 #define GEN_STXF(name, stop, opc2, opc3, type) \
3402 static void glue(gen_, name##x)(DisasContext *ctx) \
3405 if (unlikely(!ctx->fpu_enabled)) { \
3406 gen_exception(ctx, POWERPC_EXCP_FPU); \
3409 gen_set_access_type(ctx, ACCESS_FLOAT); \
3410 EA = tcg_temp_new(); \
3411 gen_addr_reg_index(ctx, EA); \
3412 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3413 tcg_temp_free(EA); \
3416 #define GEN_STFS(name, stop, op, type) \
3417 GEN_STF(name, stop, op | 0x20, type); \
3418 GEN_STUF(name, stop, op | 0x21, type); \
3419 GEN_STUXF(name, stop, op | 0x01, type); \
3420 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3422 static inline void gen_qemu_st32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3424 TCGv_i32 t0
= tcg_temp_new_i32();
3425 TCGv t1
= tcg_temp_new();
3426 gen_helper_float64_to_float32(t0
, cpu_env
, arg1
);
3427 tcg_gen_extu_i32_tl(t1
, t0
);
3428 tcg_temp_free_i32(t0
);
3429 gen_qemu_st32(ctx
, t1
, arg2
);
3433 /* stfd stfdu stfdux stfdx */
3434 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
);
3435 /* stfs stfsu stfsux stfsx */
3436 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
);
3439 static inline void gen_qemu_st32fiw(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3441 TCGv t0
= tcg_temp_new();
3442 tcg_gen_trunc_i64_tl(t0
, arg1
),
3443 gen_qemu_st32(ctx
, t0
, arg2
);
3447 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
);
3449 static inline void gen_update_cfar(DisasContext
*ctx
, target_ulong nip
)
3451 #if defined(TARGET_PPC64)
3453 tcg_gen_movi_tl(cpu_cfar
, nip
);
3458 static inline void gen_goto_tb(DisasContext
*ctx
, int n
, target_ulong dest
)
3460 TranslationBlock
*tb
;
3462 #if defined(TARGET_PPC64)
3464 dest
= (uint32_t) dest
;
3466 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) &&
3467 likely(!ctx
->singlestep_enabled
)) {
3469 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3470 tcg_gen_exit_tb((tcg_target_long
)tb
+ n
);
3472 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3473 if (unlikely(ctx
->singlestep_enabled
)) {
3474 if ((ctx
->singlestep_enabled
&
3475 (CPU_BRANCH_STEP
| CPU_SINGLE_STEP
)) &&
3476 (ctx
->exception
== POWERPC_EXCP_BRANCH
||
3477 ctx
->exception
== POWERPC_EXCP_TRACE
)) {
3478 target_ulong tmp
= ctx
->nip
;
3480 gen_exception(ctx
, POWERPC_EXCP_TRACE
);
3483 if (ctx
->singlestep_enabled
& GDBSTUB_SINGLE_STEP
) {
3484 gen_debug_exception(ctx
);
3491 static inline void gen_setlr(DisasContext
*ctx
, target_ulong nip
)
3493 #if defined(TARGET_PPC64)
3494 if (ctx
->sf_mode
== 0)
3495 tcg_gen_movi_tl(cpu_lr
, (uint32_t)nip
);
3498 tcg_gen_movi_tl(cpu_lr
, nip
);
3502 static void gen_b(DisasContext
*ctx
)
3504 target_ulong li
, target
;
3506 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3507 /* sign extend LI */
3508 #if defined(TARGET_PPC64)
3510 li
= ((int64_t)LI(ctx
->opcode
) << 38) >> 38;
3513 li
= ((int32_t)LI(ctx
->opcode
) << 6) >> 6;
3514 if (likely(AA(ctx
->opcode
) == 0))
3515 target
= ctx
->nip
+ li
- 4;
3518 if (LK(ctx
->opcode
))
3519 gen_setlr(ctx
, ctx
->nip
);
3520 gen_update_cfar(ctx
, ctx
->nip
);
3521 gen_goto_tb(ctx
, 0, target
);
3528 static inline void gen_bcond(DisasContext
*ctx
, int type
)
3530 uint32_t bo
= BO(ctx
->opcode
);
3534 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3535 if (type
== BCOND_LR
|| type
== BCOND_CTR
) {
3536 target
= tcg_temp_local_new();
3537 if (type
== BCOND_CTR
)
3538 tcg_gen_mov_tl(target
, cpu_ctr
);
3540 tcg_gen_mov_tl(target
, cpu_lr
);
3542 TCGV_UNUSED(target
);
3544 if (LK(ctx
->opcode
))
3545 gen_setlr(ctx
, ctx
->nip
);
3546 l1
= gen_new_label();
3547 if ((bo
& 0x4) == 0) {
3548 /* Decrement and test CTR */
3549 TCGv temp
= tcg_temp_new();
3550 if (unlikely(type
== BCOND_CTR
)) {
3551 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3554 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3555 #if defined(TARGET_PPC64)
3557 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3560 tcg_gen_mov_tl(temp
, cpu_ctr
);
3562 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3564 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3566 tcg_temp_free(temp
);
3568 if ((bo
& 0x10) == 0) {
3570 uint32_t bi
= BI(ctx
->opcode
);
3571 uint32_t mask
= 1 << (3 - (bi
& 0x03));
3572 TCGv_i32 temp
= tcg_temp_new_i32();
3575 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3576 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
3578 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3579 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
3581 tcg_temp_free_i32(temp
);
3583 gen_update_cfar(ctx
, ctx
->nip
);
3584 if (type
== BCOND_IM
) {
3585 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
3586 if (likely(AA(ctx
->opcode
) == 0)) {
3587 gen_goto_tb(ctx
, 0, ctx
->nip
+ li
- 4);
3589 gen_goto_tb(ctx
, 0, li
);
3592 gen_goto_tb(ctx
, 1, ctx
->nip
);
3594 #if defined(TARGET_PPC64)
3595 if (!(ctx
->sf_mode
))
3596 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
3599 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
3602 #if defined(TARGET_PPC64)
3603 if (!(ctx
->sf_mode
))
3604 tcg_gen_movi_tl(cpu_nip
, (uint32_t)ctx
->nip
);
3607 tcg_gen_movi_tl(cpu_nip
, ctx
->nip
);
3612 static void gen_bc(DisasContext
*ctx
)
3614 gen_bcond(ctx
, BCOND_IM
);
3617 static void gen_bcctr(DisasContext
*ctx
)
3619 gen_bcond(ctx
, BCOND_CTR
);
3622 static void gen_bclr(DisasContext
*ctx
)
3624 gen_bcond(ctx
, BCOND_LR
);
3627 /*** Condition register logical ***/
3628 #define GEN_CRLOGIC(name, tcg_op, opc) \
3629 static void glue(gen_, name)(DisasContext *ctx) \
3634 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3635 t0 = tcg_temp_new_i32(); \
3637 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3639 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3641 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3642 t1 = tcg_temp_new_i32(); \
3643 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3645 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3647 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3649 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3650 tcg_op(t0, t0, t1); \
3651 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3652 tcg_gen_andi_i32(t0, t0, bitmask); \
3653 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3654 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3655 tcg_temp_free_i32(t0); \
3656 tcg_temp_free_i32(t1); \
3660 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
3662 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
3664 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
3666 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
3668 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
3670 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
3672 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
3674 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
3677 static void gen_mcrf(DisasContext
*ctx
)
3679 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
3682 /*** System linkage ***/
3684 /* rfi (mem_idx only) */
3685 static void gen_rfi(DisasContext
*ctx
)
3687 #if defined(CONFIG_USER_ONLY)
3688 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3690 /* Restore CPU state */
3691 if (unlikely(!ctx
->mem_idx
)) {
3692 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3695 gen_update_cfar(ctx
, ctx
->nip
);
3696 gen_helper_rfi(cpu_env
);
3697 gen_sync_exception(ctx
);
3701 #if defined(TARGET_PPC64)
3702 static void gen_rfid(DisasContext
*ctx
)
3704 #if defined(CONFIG_USER_ONLY)
3705 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3707 /* Restore CPU state */
3708 if (unlikely(!ctx
->mem_idx
)) {
3709 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3712 gen_update_cfar(ctx
, ctx
->nip
);
3713 gen_helper_rfid(cpu_env
);
3714 gen_sync_exception(ctx
);
3718 static void gen_hrfid(DisasContext
*ctx
)
3720 #if defined(CONFIG_USER_ONLY)
3721 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3723 /* Restore CPU state */
3724 if (unlikely(ctx
->mem_idx
<= 1)) {
3725 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3728 gen_helper_hrfid(cpu_env
);
3729 gen_sync_exception(ctx
);
3735 #if defined(CONFIG_USER_ONLY)
3736 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3738 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3740 static void gen_sc(DisasContext
*ctx
)
3744 lev
= (ctx
->opcode
>> 5) & 0x7F;
3745 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
3751 static void gen_tw(DisasContext
*ctx
)
3753 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3754 /* Update the nip since this might generate a trap exception */
3755 gen_update_nip(ctx
, ctx
->nip
);
3756 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
3758 tcg_temp_free_i32(t0
);
3762 static void gen_twi(DisasContext
*ctx
)
3764 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3765 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3766 /* Update the nip since this might generate a trap exception */
3767 gen_update_nip(ctx
, ctx
->nip
);
3768 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3770 tcg_temp_free_i32(t1
);
3773 #if defined(TARGET_PPC64)
3775 static void gen_td(DisasContext
*ctx
)
3777 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3778 /* Update the nip since this might generate a trap exception */
3779 gen_update_nip(ctx
, ctx
->nip
);
3780 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
3782 tcg_temp_free_i32(t0
);
3786 static void gen_tdi(DisasContext
*ctx
)
3788 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3789 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3790 /* Update the nip since this might generate a trap exception */
3791 gen_update_nip(ctx
, ctx
->nip
);
3792 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3794 tcg_temp_free_i32(t1
);
3798 /*** Processor control ***/
3801 static void gen_mcrxr(DisasContext
*ctx
)
3803 tcg_gen_trunc_tl_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_xer
);
3804 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], XER_CA
);
3805 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_SO
| 1 << XER_OV
| 1 << XER_CA
));
3809 static void gen_mfcr(DisasContext
*ctx
)
3813 if (likely(ctx
->opcode
& 0x00100000)) {
3814 crm
= CRM(ctx
->opcode
);
3815 if (likely(crm
&& ((crm
& (crm
- 1)) == 0))) {
3817 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
3818 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)],
3819 cpu_gpr
[rD(ctx
->opcode
)], crn
* 4);
3822 TCGv_i32 t0
= tcg_temp_new_i32();
3823 tcg_gen_mov_i32(t0
, cpu_crf
[0]);
3824 tcg_gen_shli_i32(t0
, t0
, 4);
3825 tcg_gen_or_i32(t0
, t0
, cpu_crf
[1]);
3826 tcg_gen_shli_i32(t0
, t0
, 4);
3827 tcg_gen_or_i32(t0
, t0
, cpu_crf
[2]);
3828 tcg_gen_shli_i32(t0
, t0
, 4);
3829 tcg_gen_or_i32(t0
, t0
, cpu_crf
[3]);
3830 tcg_gen_shli_i32(t0
, t0
, 4);
3831 tcg_gen_or_i32(t0
, t0
, cpu_crf
[4]);
3832 tcg_gen_shli_i32(t0
, t0
, 4);
3833 tcg_gen_or_i32(t0
, t0
, cpu_crf
[5]);
3834 tcg_gen_shli_i32(t0
, t0
, 4);
3835 tcg_gen_or_i32(t0
, t0
, cpu_crf
[6]);
3836 tcg_gen_shli_i32(t0
, t0
, 4);
3837 tcg_gen_or_i32(t0
, t0
, cpu_crf
[7]);
3838 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
3839 tcg_temp_free_i32(t0
);
3844 static void gen_mfmsr(DisasContext
*ctx
)
3846 #if defined(CONFIG_USER_ONLY)
3847 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3849 if (unlikely(!ctx
->mem_idx
)) {
3850 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3853 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
3857 static void spr_noaccess(void *opaque
, int gprn
, int sprn
)
3860 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
3861 printf("ERROR: try to access SPR %d !\n", sprn
);
3864 #define SPR_NOACCESS (&spr_noaccess)
3867 static inline void gen_op_mfspr(DisasContext
*ctx
)
3869 void (*read_cb
)(void *opaque
, int gprn
, int sprn
);
3870 uint32_t sprn
= SPR(ctx
->opcode
);
3872 #if !defined(CONFIG_USER_ONLY)
3873 if (ctx
->mem_idx
== 2)
3874 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
3875 else if (ctx
->mem_idx
)
3876 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
3879 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
3880 if (likely(read_cb
!= NULL
)) {
3881 if (likely(read_cb
!= SPR_NOACCESS
)) {
3882 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
3884 /* Privilege exception */
3885 /* This is a hack to avoid warnings when running Linux:
3886 * this OS breaks the PowerPC virtualisation model,
3887 * allowing userland application to read the PVR
3889 if (sprn
!= SPR_PVR
) {
3890 qemu_log("Trying to read privileged spr %d %03x at "
3891 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->nip
);
3892 printf("Trying to read privileged spr %d %03x at "
3893 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->nip
);
3895 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3899 qemu_log("Trying to read invalid spr %d %03x at "
3900 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->nip
);
3901 printf("Trying to read invalid spr %d %03x at " TARGET_FMT_lx
"\n",
3902 sprn
, sprn
, ctx
->nip
);
3903 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
3907 static void gen_mfspr(DisasContext
*ctx
)
3913 static void gen_mftb(DisasContext
*ctx
)
3919 static void gen_mtcrf(DisasContext
*ctx
)
3923 crm
= CRM(ctx
->opcode
);
3924 if (likely((ctx
->opcode
& 0x00100000))) {
3925 if (crm
&& ((crm
& (crm
- 1)) == 0)) {
3926 TCGv_i32 temp
= tcg_temp_new_i32();
3928 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3929 tcg_gen_shri_i32(temp
, temp
, crn
* 4);
3930 tcg_gen_andi_i32(cpu_crf
[7 - crn
], temp
, 0xf);
3931 tcg_temp_free_i32(temp
);
3934 TCGv_i32 temp
= tcg_temp_new_i32();
3935 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3936 for (crn
= 0 ; crn
< 8 ; crn
++) {
3937 if (crm
& (1 << crn
)) {
3938 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
3939 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
3942 tcg_temp_free_i32(temp
);
3947 #if defined(TARGET_PPC64)
3948 static void gen_mtmsrd(DisasContext
*ctx
)
3950 #if defined(CONFIG_USER_ONLY)
3951 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3953 if (unlikely(!ctx
->mem_idx
)) {
3954 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3957 if (ctx
->opcode
& 0x00010000) {
3958 /* Special form that does not need any synchronisation */
3959 TCGv t0
= tcg_temp_new();
3960 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3961 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3962 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3965 /* XXX: we need to update nip before the store
3966 * if we enter power saving mode, we will exit the loop
3967 * directly from ppc_store_msr
3969 gen_update_nip(ctx
, ctx
->nip
);
3970 gen_helper_store_msr(cpu_env
, cpu_gpr
[rS(ctx
->opcode
)]);
3971 /* Must stop the translation as machine state (may have) changed */
3972 /* Note that mtmsr is not always defined as context-synchronizing */
3973 gen_stop_exception(ctx
);
3979 static void gen_mtmsr(DisasContext
*ctx
)
3981 #if defined(CONFIG_USER_ONLY)
3982 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3984 if (unlikely(!ctx
->mem_idx
)) {
3985 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3988 if (ctx
->opcode
& 0x00010000) {
3989 /* Special form that does not need any synchronisation */
3990 TCGv t0
= tcg_temp_new();
3991 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3992 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3993 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3996 TCGv msr
= tcg_temp_new();
3998 /* XXX: we need to update nip before the store
3999 * if we enter power saving mode, we will exit the loop
4000 * directly from ppc_store_msr
4002 gen_update_nip(ctx
, ctx
->nip
);
4003 #if defined(TARGET_PPC64)
4004 tcg_gen_deposit_tl(msr
, cpu_msr
, cpu_gpr
[rS(ctx
->opcode
)], 0, 32);
4006 tcg_gen_mov_tl(msr
, cpu_gpr
[rS(ctx
->opcode
)]);
4008 gen_helper_store_msr(cpu_env
, msr
);
4009 /* Must stop the translation as machine state (may have) changed */
4010 /* Note that mtmsr is not always defined as context-synchronizing */
4011 gen_stop_exception(ctx
);
4017 static void gen_mtspr(DisasContext
*ctx
)
4019 void (*write_cb
)(void *opaque
, int sprn
, int gprn
);
4020 uint32_t sprn
= SPR(ctx
->opcode
);
4022 #if !defined(CONFIG_USER_ONLY)
4023 if (ctx
->mem_idx
== 2)
4024 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
4025 else if (ctx
->mem_idx
)
4026 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
4029 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
4030 if (likely(write_cb
!= NULL
)) {
4031 if (likely(write_cb
!= SPR_NOACCESS
)) {
4032 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
4034 /* Privilege exception */
4035 qemu_log("Trying to write privileged spr %d %03x at "
4036 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->nip
);
4037 printf("Trying to write privileged spr %d %03x at " TARGET_FMT_lx
4038 "\n", sprn
, sprn
, ctx
->nip
);
4039 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4043 qemu_log("Trying to write invalid spr %d %03x at "
4044 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->nip
);
4045 printf("Trying to write invalid spr %d %03x at " TARGET_FMT_lx
"\n",
4046 sprn
, sprn
, ctx
->nip
);
4047 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4051 /*** Cache management ***/
4054 static void gen_dcbf(DisasContext
*ctx
)
4056 /* XXX: specification says this is treated as a load by the MMU */
4058 gen_set_access_type(ctx
, ACCESS_CACHE
);
4059 t0
= tcg_temp_new();
4060 gen_addr_reg_index(ctx
, t0
);
4061 gen_qemu_ld8u(ctx
, t0
, t0
);
4065 /* dcbi (Supervisor only) */
4066 static void gen_dcbi(DisasContext
*ctx
)
4068 #if defined(CONFIG_USER_ONLY)
4069 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4072 if (unlikely(!ctx
->mem_idx
)) {
4073 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4076 EA
= tcg_temp_new();
4077 gen_set_access_type(ctx
, ACCESS_CACHE
);
4078 gen_addr_reg_index(ctx
, EA
);
4079 val
= tcg_temp_new();
4080 /* XXX: specification says this should be treated as a store by the MMU */
4081 gen_qemu_ld8u(ctx
, val
, EA
);
4082 gen_qemu_st8(ctx
, val
, EA
);
4089 static void gen_dcbst(DisasContext
*ctx
)
4091 /* XXX: specification say this is treated as a load by the MMU */
4093 gen_set_access_type(ctx
, ACCESS_CACHE
);
4094 t0
= tcg_temp_new();
4095 gen_addr_reg_index(ctx
, t0
);
4096 gen_qemu_ld8u(ctx
, t0
, t0
);
4101 static void gen_dcbt(DisasContext
*ctx
)
4103 /* interpreted as no-op */
4104 /* XXX: specification say this is treated as a load by the MMU
4105 * but does not generate any exception
4110 static void gen_dcbtst(DisasContext
*ctx
)
4112 /* interpreted as no-op */
4113 /* XXX: specification say this is treated as a load by the MMU
4114 * but does not generate any exception
4119 static void gen_dcbz(DisasContext
*ctx
)
4122 TCGv_i32 tcgv_is_dcbzl
;
4123 int is_dcbzl
= ctx
->opcode
& 0x00200000 ? 1 : 0;
4125 gen_set_access_type(ctx
, ACCESS_CACHE
);
4126 /* NIP cannot be restored if the memory exception comes from an helper */
4127 gen_update_nip(ctx
, ctx
->nip
- 4);
4128 tcgv_addr
= tcg_temp_new();
4129 tcgv_is_dcbzl
= tcg_const_i32(is_dcbzl
);
4131 gen_addr_reg_index(ctx
, tcgv_addr
);
4132 gen_helper_dcbz(cpu_env
, tcgv_addr
, tcgv_is_dcbzl
);
4134 tcg_temp_free(tcgv_addr
);
4135 tcg_temp_free_i32(tcgv_is_dcbzl
);
4139 static void gen_dst(DisasContext
*ctx
)
4141 if (rA(ctx
->opcode
) == 0) {
4142 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4144 /* interpreted as no-op */
4149 static void gen_dstst(DisasContext
*ctx
)
4151 if (rA(ctx
->opcode
) == 0) {
4152 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4154 /* interpreted as no-op */
4160 static void gen_dss(DisasContext
*ctx
)
4162 /* interpreted as no-op */
4166 static void gen_icbi(DisasContext
*ctx
)
4169 gen_set_access_type(ctx
, ACCESS_CACHE
);
4170 /* NIP cannot be restored if the memory exception comes from an helper */
4171 gen_update_nip(ctx
, ctx
->nip
- 4);
4172 t0
= tcg_temp_new();
4173 gen_addr_reg_index(ctx
, t0
);
4174 gen_helper_icbi(cpu_env
, t0
);
4180 static void gen_dcba(DisasContext
*ctx
)
4182 /* interpreted as no-op */
4183 /* XXX: specification say this is treated as a store by the MMU
4184 * but does not generate any exception
4188 /*** Segment register manipulation ***/
4189 /* Supervisor only: */
4192 static void gen_mfsr(DisasContext
*ctx
)
4194 #if defined(CONFIG_USER_ONLY)
4195 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4198 if (unlikely(!ctx
->mem_idx
)) {
4199 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4202 t0
= tcg_const_tl(SR(ctx
->opcode
));
4203 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4209 static void gen_mfsrin(DisasContext
*ctx
)
4211 #if defined(CONFIG_USER_ONLY)
4212 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4215 if (unlikely(!ctx
->mem_idx
)) {
4216 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4219 t0
= tcg_temp_new();
4220 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4221 tcg_gen_andi_tl(t0
, t0
, 0xF);
4222 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4228 static void gen_mtsr(DisasContext
*ctx
)
4230 #if defined(CONFIG_USER_ONLY)
4231 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4234 if (unlikely(!ctx
->mem_idx
)) {
4235 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4238 t0
= tcg_const_tl(SR(ctx
->opcode
));
4239 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4245 static void gen_mtsrin(DisasContext
*ctx
)
4247 #if defined(CONFIG_USER_ONLY)
4248 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4251 if (unlikely(!ctx
->mem_idx
)) {
4252 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4255 t0
= tcg_temp_new();
4256 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4257 tcg_gen_andi_tl(t0
, t0
, 0xF);
4258 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rD(ctx
->opcode
)]);
4263 #if defined(TARGET_PPC64)
4264 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4267 static void gen_mfsr_64b(DisasContext
*ctx
)
4269 #if defined(CONFIG_USER_ONLY)
4270 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4273 if (unlikely(!ctx
->mem_idx
)) {
4274 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4277 t0
= tcg_const_tl(SR(ctx
->opcode
));
4278 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4284 static void gen_mfsrin_64b(DisasContext
*ctx
)
4286 #if defined(CONFIG_USER_ONLY)
4287 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4290 if (unlikely(!ctx
->mem_idx
)) {
4291 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4294 t0
= tcg_temp_new();
4295 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4296 tcg_gen_andi_tl(t0
, t0
, 0xF);
4297 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4303 static void gen_mtsr_64b(DisasContext
*ctx
)
4305 #if defined(CONFIG_USER_ONLY)
4306 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4309 if (unlikely(!ctx
->mem_idx
)) {
4310 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4313 t0
= tcg_const_tl(SR(ctx
->opcode
));
4314 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4320 static void gen_mtsrin_64b(DisasContext
*ctx
)
4322 #if defined(CONFIG_USER_ONLY)
4323 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4326 if (unlikely(!ctx
->mem_idx
)) {
4327 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4330 t0
= tcg_temp_new();
4331 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4332 tcg_gen_andi_tl(t0
, t0
, 0xF);
4333 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4339 static void gen_slbmte(DisasContext
*ctx
)
4341 #if defined(CONFIG_USER_ONLY)
4342 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4344 if (unlikely(!ctx
->mem_idx
)) {
4345 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4348 gen_helper_store_slb(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)],
4349 cpu_gpr
[rS(ctx
->opcode
)]);
4353 static void gen_slbmfee(DisasContext
*ctx
)
4355 #if defined(CONFIG_USER_ONLY)
4356 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4358 if (unlikely(!ctx
->mem_idx
)) {
4359 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4362 gen_helper_load_slb_esid(cpu_gpr
[rS(ctx
->opcode
)], cpu_env
,
4363 cpu_gpr
[rB(ctx
->opcode
)]);
4367 static void gen_slbmfev(DisasContext
*ctx
)
4369 #if defined(CONFIG_USER_ONLY)
4370 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4372 if (unlikely(!ctx
->mem_idx
)) {
4373 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4376 gen_helper_load_slb_vsid(cpu_gpr
[rS(ctx
->opcode
)], cpu_env
,
4377 cpu_gpr
[rB(ctx
->opcode
)]);
4380 #endif /* defined(TARGET_PPC64) */
4382 /*** Lookaside buffer management ***/
4383 /* Optional & mem_idx only: */
4386 static void gen_tlbia(DisasContext
*ctx
)
4388 #if defined(CONFIG_USER_ONLY)
4389 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4391 if (unlikely(!ctx
->mem_idx
)) {
4392 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4395 gen_helper_tlbia(cpu_env
);
4400 static void gen_tlbiel(DisasContext
*ctx
)
4402 #if defined(CONFIG_USER_ONLY)
4403 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4405 if (unlikely(!ctx
->mem_idx
)) {
4406 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4409 gen_helper_tlbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4414 static void gen_tlbie(DisasContext
*ctx
)
4416 #if defined(CONFIG_USER_ONLY)
4417 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4419 if (unlikely(!ctx
->mem_idx
)) {
4420 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4423 #if defined(TARGET_PPC64)
4424 if (!ctx
->sf_mode
) {
4425 TCGv t0
= tcg_temp_new();
4426 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
4427 gen_helper_tlbie(cpu_env
, t0
);
4431 gen_helper_tlbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4436 static void gen_tlbsync(DisasContext
*ctx
)
4438 #if defined(CONFIG_USER_ONLY)
4439 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4441 if (unlikely(!ctx
->mem_idx
)) {
4442 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4445 /* This has no effect: it should ensure that all previous
4446 * tlbie have completed
4448 gen_stop_exception(ctx
);
4452 #if defined(TARGET_PPC64)
4454 static void gen_slbia(DisasContext
*ctx
)
4456 #if defined(CONFIG_USER_ONLY)
4457 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4459 if (unlikely(!ctx
->mem_idx
)) {
4460 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4463 gen_helper_slbia(cpu_env
);
4468 static void gen_slbie(DisasContext
*ctx
)
4470 #if defined(CONFIG_USER_ONLY)
4471 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4473 if (unlikely(!ctx
->mem_idx
)) {
4474 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4477 gen_helper_slbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
4482 /*** External control ***/
4486 static void gen_eciwx(DisasContext
*ctx
)
4489 /* Should check EAR[E] ! */
4490 gen_set_access_type(ctx
, ACCESS_EXT
);
4491 t0
= tcg_temp_new();
4492 gen_addr_reg_index(ctx
, t0
);
4493 gen_check_align(ctx
, t0
, 0x03);
4494 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4499 static void gen_ecowx(DisasContext
*ctx
)
4502 /* Should check EAR[E] ! */
4503 gen_set_access_type(ctx
, ACCESS_EXT
);
4504 t0
= tcg_temp_new();
4505 gen_addr_reg_index(ctx
, t0
);
4506 gen_check_align(ctx
, t0
, 0x03);
4507 gen_qemu_st32(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4511 /* PowerPC 601 specific instructions */
4514 static void gen_abs(DisasContext
*ctx
)
4516 int l1
= gen_new_label();
4517 int l2
= gen_new_label();
4518 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4519 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4522 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4524 if (unlikely(Rc(ctx
->opcode
) != 0))
4525 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4529 static void gen_abso(DisasContext
*ctx
)
4531 int l1
= gen_new_label();
4532 int l2
= gen_new_label();
4533 int l3
= gen_new_label();
4534 /* Start with XER OV disabled, the most likely case */
4535 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4536 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l2
);
4537 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[rA(ctx
->opcode
)], 0x80000000, l1
);
4538 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4541 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4544 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4546 if (unlikely(Rc(ctx
->opcode
) != 0))
4547 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4551 static void gen_clcs(DisasContext
*ctx
)
4553 TCGv_i32 t0
= tcg_const_i32(rA(ctx
->opcode
));
4554 gen_helper_clcs(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
4555 tcg_temp_free_i32(t0
);
4556 /* Rc=1 sets CR0 to an undefined state */
4560 static void gen_div(DisasContext
*ctx
)
4562 gen_helper_div(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
4563 cpu_gpr
[rB(ctx
->opcode
)]);
4564 if (unlikely(Rc(ctx
->opcode
) != 0))
4565 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4569 static void gen_divo(DisasContext
*ctx
)
4571 gen_helper_divo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
4572 cpu_gpr
[rB(ctx
->opcode
)]);
4573 if (unlikely(Rc(ctx
->opcode
) != 0))
4574 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4578 static void gen_divs(DisasContext
*ctx
)
4580 gen_helper_divs(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
4581 cpu_gpr
[rB(ctx
->opcode
)]);
4582 if (unlikely(Rc(ctx
->opcode
) != 0))
4583 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4586 /* divso - divso. */
4587 static void gen_divso(DisasContext
*ctx
)
4589 gen_helper_divso(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
4590 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4591 if (unlikely(Rc(ctx
->opcode
) != 0))
4592 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4596 static void gen_doz(DisasContext
*ctx
)
4598 int l1
= gen_new_label();
4599 int l2
= gen_new_label();
4600 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4601 tcg_gen_sub_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4604 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4606 if (unlikely(Rc(ctx
->opcode
) != 0))
4607 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4611 static void gen_dozo(DisasContext
*ctx
)
4613 int l1
= gen_new_label();
4614 int l2
= gen_new_label();
4615 TCGv t0
= tcg_temp_new();
4616 TCGv t1
= tcg_temp_new();
4617 TCGv t2
= tcg_temp_new();
4618 /* Start with XER OV disabled, the most likely case */
4619 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4620 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4621 tcg_gen_sub_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4622 tcg_gen_xor_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4623 tcg_gen_xor_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], t0
);
4624 tcg_gen_andc_tl(t1
, t1
, t2
);
4625 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4626 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4627 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4630 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4635 if (unlikely(Rc(ctx
->opcode
) != 0))
4636 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4640 static void gen_dozi(DisasContext
*ctx
)
4642 target_long simm
= SIMM(ctx
->opcode
);
4643 int l1
= gen_new_label();
4644 int l2
= gen_new_label();
4645 tcg_gen_brcondi_tl(TCG_COND_LT
, cpu_gpr
[rA(ctx
->opcode
)], simm
, l1
);
4646 tcg_gen_subfi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
, cpu_gpr
[rA(ctx
->opcode
)]);
4649 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4651 if (unlikely(Rc(ctx
->opcode
) != 0))
4652 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4655 /* lscbx - lscbx. */
4656 static void gen_lscbx(DisasContext
*ctx
)
4658 TCGv t0
= tcg_temp_new();
4659 TCGv_i32 t1
= tcg_const_i32(rD(ctx
->opcode
));
4660 TCGv_i32 t2
= tcg_const_i32(rA(ctx
->opcode
));
4661 TCGv_i32 t3
= tcg_const_i32(rB(ctx
->opcode
));
4663 gen_addr_reg_index(ctx
, t0
);
4664 /* NIP cannot be restored if the memory exception comes from an helper */
4665 gen_update_nip(ctx
, ctx
->nip
- 4);
4666 gen_helper_lscbx(t0
, cpu_env
, t0
, t1
, t2
, t3
);
4667 tcg_temp_free_i32(t1
);
4668 tcg_temp_free_i32(t2
);
4669 tcg_temp_free_i32(t3
);
4670 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~0x7F);
4671 tcg_gen_or_tl(cpu_xer
, cpu_xer
, t0
);
4672 if (unlikely(Rc(ctx
->opcode
) != 0))
4673 gen_set_Rc0(ctx
, t0
);
4677 /* maskg - maskg. */
4678 static void gen_maskg(DisasContext
*ctx
)
4680 int l1
= gen_new_label();
4681 TCGv t0
= tcg_temp_new();
4682 TCGv t1
= tcg_temp_new();
4683 TCGv t2
= tcg_temp_new();
4684 TCGv t3
= tcg_temp_new();
4685 tcg_gen_movi_tl(t3
, 0xFFFFFFFF);
4686 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4687 tcg_gen_andi_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 0x1F);
4688 tcg_gen_addi_tl(t2
, t0
, 1);
4689 tcg_gen_shr_tl(t2
, t3
, t2
);
4690 tcg_gen_shr_tl(t3
, t3
, t1
);
4691 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], t2
, t3
);
4692 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
4693 tcg_gen_neg_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4699 if (unlikely(Rc(ctx
->opcode
) != 0))
4700 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4703 /* maskir - maskir. */
4704 static void gen_maskir(DisasContext
*ctx
)
4706 TCGv t0
= tcg_temp_new();
4707 TCGv t1
= tcg_temp_new();
4708 tcg_gen_and_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4709 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4710 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4713 if (unlikely(Rc(ctx
->opcode
) != 0))
4714 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4718 static void gen_mul(DisasContext
*ctx
)
4720 TCGv_i64 t0
= tcg_temp_new_i64();
4721 TCGv_i64 t1
= tcg_temp_new_i64();
4722 TCGv t2
= tcg_temp_new();
4723 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4724 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4725 tcg_gen_mul_i64(t0
, t0
, t1
);
4726 tcg_gen_trunc_i64_tl(t2
, t0
);
4727 gen_store_spr(SPR_MQ
, t2
);
4728 tcg_gen_shri_i64(t1
, t0
, 32);
4729 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4730 tcg_temp_free_i64(t0
);
4731 tcg_temp_free_i64(t1
);
4733 if (unlikely(Rc(ctx
->opcode
) != 0))
4734 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4738 static void gen_mulo(DisasContext
*ctx
)
4740 int l1
= gen_new_label();
4741 TCGv_i64 t0
= tcg_temp_new_i64();
4742 TCGv_i64 t1
= tcg_temp_new_i64();
4743 TCGv t2
= tcg_temp_new();
4744 /* Start with XER OV disabled, the most likely case */
4745 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4746 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4747 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4748 tcg_gen_mul_i64(t0
, t0
, t1
);
4749 tcg_gen_trunc_i64_tl(t2
, t0
);
4750 gen_store_spr(SPR_MQ
, t2
);
4751 tcg_gen_shri_i64(t1
, t0
, 32);
4752 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4753 tcg_gen_ext32s_i64(t1
, t0
);
4754 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
4755 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4757 tcg_temp_free_i64(t0
);
4758 tcg_temp_free_i64(t1
);
4760 if (unlikely(Rc(ctx
->opcode
) != 0))
4761 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4765 static void gen_nabs(DisasContext
*ctx
)
4767 int l1
= gen_new_label();
4768 int l2
= gen_new_label();
4769 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4770 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4773 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4775 if (unlikely(Rc(ctx
->opcode
) != 0))
4776 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4779 /* nabso - nabso. */
4780 static void gen_nabso(DisasContext
*ctx
)
4782 int l1
= gen_new_label();
4783 int l2
= gen_new_label();
4784 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4785 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4788 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4790 /* nabs never overflows */
4791 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4792 if (unlikely(Rc(ctx
->opcode
) != 0))
4793 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4797 static void gen_rlmi(DisasContext
*ctx
)
4799 uint32_t mb
= MB(ctx
->opcode
);
4800 uint32_t me
= ME(ctx
->opcode
);
4801 TCGv t0
= tcg_temp_new();
4802 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4803 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4804 tcg_gen_andi_tl(t0
, t0
, MASK(mb
, me
));
4805 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~MASK(mb
, me
));
4806 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], t0
);
4808 if (unlikely(Rc(ctx
->opcode
) != 0))
4809 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4813 static void gen_rrib(DisasContext
*ctx
)
4815 TCGv t0
= tcg_temp_new();
4816 TCGv t1
= tcg_temp_new();
4817 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4818 tcg_gen_movi_tl(t1
, 0x80000000);
4819 tcg_gen_shr_tl(t1
, t1
, t0
);
4820 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4821 tcg_gen_and_tl(t0
, t0
, t1
);
4822 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], t1
);
4823 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4826 if (unlikely(Rc(ctx
->opcode
) != 0))
4827 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4831 static void gen_sle(DisasContext
*ctx
)
4833 TCGv t0
= tcg_temp_new();
4834 TCGv t1
= tcg_temp_new();
4835 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4836 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4837 tcg_gen_subfi_tl(t1
, 32, t1
);
4838 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4839 tcg_gen_or_tl(t1
, t0
, t1
);
4840 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4841 gen_store_spr(SPR_MQ
, t1
);
4844 if (unlikely(Rc(ctx
->opcode
) != 0))
4845 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4849 static void gen_sleq(DisasContext
*ctx
)
4851 TCGv t0
= tcg_temp_new();
4852 TCGv t1
= tcg_temp_new();
4853 TCGv t2
= tcg_temp_new();
4854 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4855 tcg_gen_movi_tl(t2
, 0xFFFFFFFF);
4856 tcg_gen_shl_tl(t2
, t2
, t0
);
4857 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4858 gen_load_spr(t1
, SPR_MQ
);
4859 gen_store_spr(SPR_MQ
, t0
);
4860 tcg_gen_and_tl(t0
, t0
, t2
);
4861 tcg_gen_andc_tl(t1
, t1
, t2
);
4862 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4866 if (unlikely(Rc(ctx
->opcode
) != 0))
4867 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4871 static void gen_sliq(DisasContext
*ctx
)
4873 int sh
= SH(ctx
->opcode
);
4874 TCGv t0
= tcg_temp_new();
4875 TCGv t1
= tcg_temp_new();
4876 tcg_gen_shli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4877 tcg_gen_shri_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4878 tcg_gen_or_tl(t1
, t0
, t1
);
4879 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4880 gen_store_spr(SPR_MQ
, t1
);
4883 if (unlikely(Rc(ctx
->opcode
) != 0))
4884 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4887 /* slliq - slliq. */
4888 static void gen_slliq(DisasContext
*ctx
)
4890 int sh
= SH(ctx
->opcode
);
4891 TCGv t0
= tcg_temp_new();
4892 TCGv t1
= tcg_temp_new();
4893 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4894 gen_load_spr(t1
, SPR_MQ
);
4895 gen_store_spr(SPR_MQ
, t0
);
4896 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
<< sh
));
4897 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
<< sh
));
4898 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4901 if (unlikely(Rc(ctx
->opcode
) != 0))
4902 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4906 static void gen_sllq(DisasContext
*ctx
)
4908 int l1
= gen_new_label();
4909 int l2
= gen_new_label();
4910 TCGv t0
= tcg_temp_local_new();
4911 TCGv t1
= tcg_temp_local_new();
4912 TCGv t2
= tcg_temp_local_new();
4913 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4914 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4915 tcg_gen_shl_tl(t1
, t1
, t2
);
4916 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4917 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4918 gen_load_spr(t0
, SPR_MQ
);
4919 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4922 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4923 gen_load_spr(t2
, SPR_MQ
);
4924 tcg_gen_andc_tl(t1
, t2
, t1
);
4925 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4930 if (unlikely(Rc(ctx
->opcode
) != 0))
4931 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4935 static void gen_slq(DisasContext
*ctx
)
4937 int l1
= gen_new_label();
4938 TCGv t0
= tcg_temp_new();
4939 TCGv t1
= tcg_temp_new();
4940 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4941 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4942 tcg_gen_subfi_tl(t1
, 32, t1
);
4943 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4944 tcg_gen_or_tl(t1
, t0
, t1
);
4945 gen_store_spr(SPR_MQ
, t1
);
4946 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4947 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4948 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4949 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
4953 if (unlikely(Rc(ctx
->opcode
) != 0))
4954 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4957 /* sraiq - sraiq. */
4958 static void gen_sraiq(DisasContext
*ctx
)
4960 int sh
= SH(ctx
->opcode
);
4961 int l1
= gen_new_label();
4962 TCGv t0
= tcg_temp_new();
4963 TCGv t1
= tcg_temp_new();
4964 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4965 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4966 tcg_gen_or_tl(t0
, t0
, t1
);
4967 gen_store_spr(SPR_MQ
, t0
);
4968 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4969 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4970 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
4971 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4973 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
4976 if (unlikely(Rc(ctx
->opcode
) != 0))
4977 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4981 static void gen_sraq(DisasContext
*ctx
)
4983 int l1
= gen_new_label();
4984 int l2
= gen_new_label();
4985 TCGv t0
= tcg_temp_new();
4986 TCGv t1
= tcg_temp_local_new();
4987 TCGv t2
= tcg_temp_local_new();
4988 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4989 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4990 tcg_gen_sar_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4991 tcg_gen_subfi_tl(t2
, 32, t2
);
4992 tcg_gen_shl_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4993 tcg_gen_or_tl(t0
, t0
, t2
);
4994 gen_store_spr(SPR_MQ
, t0
);
4995 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4996 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l1
);
4997 tcg_gen_mov_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
4998 tcg_gen_sari_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 31);
5001 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
);
5002 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
5003 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
5004 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l2
);
5005 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
5009 if (unlikely(Rc(ctx
->opcode
) != 0))
5010 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5014 static void gen_sre(DisasContext
*ctx
)
5016 TCGv t0
= tcg_temp_new();
5017 TCGv t1
= tcg_temp_new();
5018 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5019 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5020 tcg_gen_subfi_tl(t1
, 32, t1
);
5021 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5022 tcg_gen_or_tl(t1
, t0
, t1
);
5023 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5024 gen_store_spr(SPR_MQ
, t1
);
5027 if (unlikely(Rc(ctx
->opcode
) != 0))
5028 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5032 static void gen_srea(DisasContext
*ctx
)
5034 TCGv t0
= tcg_temp_new();
5035 TCGv t1
= tcg_temp_new();
5036 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5037 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5038 gen_store_spr(SPR_MQ
, t0
);
5039 tcg_gen_sar_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t1
);
5042 if (unlikely(Rc(ctx
->opcode
) != 0))
5043 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5047 static void gen_sreq(DisasContext
*ctx
)
5049 TCGv t0
= tcg_temp_new();
5050 TCGv t1
= tcg_temp_new();
5051 TCGv t2
= tcg_temp_new();
5052 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5053 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5054 tcg_gen_shr_tl(t1
, t1
, t0
);
5055 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5056 gen_load_spr(t2
, SPR_MQ
);
5057 gen_store_spr(SPR_MQ
, t0
);
5058 tcg_gen_and_tl(t0
, t0
, t1
);
5059 tcg_gen_andc_tl(t2
, t2
, t1
);
5060 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5064 if (unlikely(Rc(ctx
->opcode
) != 0))
5065 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5069 static void gen_sriq(DisasContext
*ctx
)
5071 int sh
= SH(ctx
->opcode
);
5072 TCGv t0
= tcg_temp_new();
5073 TCGv t1
= tcg_temp_new();
5074 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5075 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5076 tcg_gen_or_tl(t1
, t0
, t1
);
5077 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5078 gen_store_spr(SPR_MQ
, t1
);
5081 if (unlikely(Rc(ctx
->opcode
) != 0))
5082 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5086 static void gen_srliq(DisasContext
*ctx
)
5088 int sh
= SH(ctx
->opcode
);
5089 TCGv t0
= tcg_temp_new();
5090 TCGv t1
= tcg_temp_new();
5091 tcg_gen_rotri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5092 gen_load_spr(t1
, SPR_MQ
);
5093 gen_store_spr(SPR_MQ
, t0
);
5094 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
>> sh
));
5095 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
>> sh
));
5096 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5099 if (unlikely(Rc(ctx
->opcode
) != 0))
5100 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5104 static void gen_srlq(DisasContext
*ctx
)
5106 int l1
= gen_new_label();
5107 int l2
= gen_new_label();
5108 TCGv t0
= tcg_temp_local_new();
5109 TCGv t1
= tcg_temp_local_new();
5110 TCGv t2
= tcg_temp_local_new();
5111 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5112 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5113 tcg_gen_shr_tl(t2
, t1
, t2
);
5114 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5115 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5116 gen_load_spr(t0
, SPR_MQ
);
5117 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5120 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5121 tcg_gen_and_tl(t0
, t0
, t2
);
5122 gen_load_spr(t1
, SPR_MQ
);
5123 tcg_gen_andc_tl(t1
, t1
, t2
);
5124 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5129 if (unlikely(Rc(ctx
->opcode
) != 0))
5130 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5134 static void gen_srq(DisasContext
*ctx
)
5136 int l1
= gen_new_label();
5137 TCGv t0
= tcg_temp_new();
5138 TCGv t1
= tcg_temp_new();
5139 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5140 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5141 tcg_gen_subfi_tl(t1
, 32, t1
);
5142 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5143 tcg_gen_or_tl(t1
, t0
, t1
);
5144 gen_store_spr(SPR_MQ
, t1
);
5145 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5146 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5147 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5148 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
5152 if (unlikely(Rc(ctx
->opcode
) != 0))
5153 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5156 /* PowerPC 602 specific instructions */
5159 static void gen_dsa(DisasContext
*ctx
)
5162 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5166 static void gen_esa(DisasContext
*ctx
)
5169 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5173 static void gen_mfrom(DisasContext
*ctx
)
5175 #if defined(CONFIG_USER_ONLY)
5176 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5178 if (unlikely(!ctx
->mem_idx
)) {
5179 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5182 gen_helper_602_mfrom(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5186 /* 602 - 603 - G2 TLB management */
5189 static void gen_tlbld_6xx(DisasContext
*ctx
)
5191 #if defined(CONFIG_USER_ONLY)
5192 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5194 if (unlikely(!ctx
->mem_idx
)) {
5195 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5198 gen_helper_6xx_tlbd(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5203 static void gen_tlbli_6xx(DisasContext
*ctx
)
5205 #if defined(CONFIG_USER_ONLY)
5206 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5208 if (unlikely(!ctx
->mem_idx
)) {
5209 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5212 gen_helper_6xx_tlbi(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5216 /* 74xx TLB management */
5219 static void gen_tlbld_74xx(DisasContext
*ctx
)
5221 #if defined(CONFIG_USER_ONLY)
5222 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5224 if (unlikely(!ctx
->mem_idx
)) {
5225 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5228 gen_helper_74xx_tlbd(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5233 static void gen_tlbli_74xx(DisasContext
*ctx
)
5235 #if defined(CONFIG_USER_ONLY)
5236 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5238 if (unlikely(!ctx
->mem_idx
)) {
5239 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5242 gen_helper_74xx_tlbi(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5246 /* POWER instructions not in PowerPC 601 */
5249 static void gen_clf(DisasContext
*ctx
)
5251 /* Cache line flush: implemented as no-op */
5255 static void gen_cli(DisasContext
*ctx
)
5257 /* Cache line invalidate: privileged and treated as no-op */
5258 #if defined(CONFIG_USER_ONLY)
5259 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5261 if (unlikely(!ctx
->mem_idx
)) {
5262 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5269 static void gen_dclst(DisasContext
*ctx
)
5271 /* Data cache line store: treated as no-op */
5274 static void gen_mfsri(DisasContext
*ctx
)
5276 #if defined(CONFIG_USER_ONLY)
5277 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5279 int ra
= rA(ctx
->opcode
);
5280 int rd
= rD(ctx
->opcode
);
5282 if (unlikely(!ctx
->mem_idx
)) {
5283 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5286 t0
= tcg_temp_new();
5287 gen_addr_reg_index(ctx
, t0
);
5288 tcg_gen_shri_tl(t0
, t0
, 28);
5289 tcg_gen_andi_tl(t0
, t0
, 0xF);
5290 gen_helper_load_sr(cpu_gpr
[rd
], cpu_env
, t0
);
5292 if (ra
!= 0 && ra
!= rd
)
5293 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rd
]);
5297 static void gen_rac(DisasContext
*ctx
)
5299 #if defined(CONFIG_USER_ONLY)
5300 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5303 if (unlikely(!ctx
->mem_idx
)) {
5304 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5307 t0
= tcg_temp_new();
5308 gen_addr_reg_index(ctx
, t0
);
5309 gen_helper_rac(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5314 static void gen_rfsvc(DisasContext
*ctx
)
5316 #if defined(CONFIG_USER_ONLY)
5317 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5319 if (unlikely(!ctx
->mem_idx
)) {
5320 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5323 gen_helper_rfsvc(cpu_env
);
5324 gen_sync_exception(ctx
);
5328 /* svc is not implemented for now */
5330 /* POWER2 specific instructions */
5331 /* Quad manipulation (load/store two floats at a time) */
5334 static void gen_lfq(DisasContext
*ctx
)
5336 int rd
= rD(ctx
->opcode
);
5338 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5339 t0
= tcg_temp_new();
5340 gen_addr_imm_index(ctx
, t0
, 0);
5341 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5342 gen_addr_add(ctx
, t0
, t0
, 8);
5343 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5348 static void gen_lfqu(DisasContext
*ctx
)
5350 int ra
= rA(ctx
->opcode
);
5351 int rd
= rD(ctx
->opcode
);
5353 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5354 t0
= tcg_temp_new();
5355 t1
= tcg_temp_new();
5356 gen_addr_imm_index(ctx
, t0
, 0);
5357 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5358 gen_addr_add(ctx
, t1
, t0
, 8);
5359 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5361 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5367 static void gen_lfqux(DisasContext
*ctx
)
5369 int ra
= rA(ctx
->opcode
);
5370 int rd
= rD(ctx
->opcode
);
5371 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5373 t0
= tcg_temp_new();
5374 gen_addr_reg_index(ctx
, t0
);
5375 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5376 t1
= tcg_temp_new();
5377 gen_addr_add(ctx
, t1
, t0
, 8);
5378 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5381 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5386 static void gen_lfqx(DisasContext
*ctx
)
5388 int rd
= rD(ctx
->opcode
);
5390 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5391 t0
= tcg_temp_new();
5392 gen_addr_reg_index(ctx
, t0
);
5393 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5394 gen_addr_add(ctx
, t0
, t0
, 8);
5395 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5400 static void gen_stfq(DisasContext
*ctx
)
5402 int rd
= rD(ctx
->opcode
);
5404 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5405 t0
= tcg_temp_new();
5406 gen_addr_imm_index(ctx
, t0
, 0);
5407 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5408 gen_addr_add(ctx
, t0
, t0
, 8);
5409 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5414 static void gen_stfqu(DisasContext
*ctx
)
5416 int ra
= rA(ctx
->opcode
);
5417 int rd
= rD(ctx
->opcode
);
5419 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5420 t0
= tcg_temp_new();
5421 gen_addr_imm_index(ctx
, t0
, 0);
5422 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5423 t1
= tcg_temp_new();
5424 gen_addr_add(ctx
, t1
, t0
, 8);
5425 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5428 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5433 static void gen_stfqux(DisasContext
*ctx
)
5435 int ra
= rA(ctx
->opcode
);
5436 int rd
= rD(ctx
->opcode
);
5438 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5439 t0
= tcg_temp_new();
5440 gen_addr_reg_index(ctx
, t0
);
5441 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5442 t1
= tcg_temp_new();
5443 gen_addr_add(ctx
, t1
, t0
, 8);
5444 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5447 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5452 static void gen_stfqx(DisasContext
*ctx
)
5454 int rd
= rD(ctx
->opcode
);
5456 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5457 t0
= tcg_temp_new();
5458 gen_addr_reg_index(ctx
, t0
);
5459 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5460 gen_addr_add(ctx
, t0
, t0
, 8);
5461 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5465 /* BookE specific instructions */
5467 /* XXX: not implemented on 440 ? */
5468 static void gen_mfapidi(DisasContext
*ctx
)
5471 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5474 /* XXX: not implemented on 440 ? */
5475 static void gen_tlbiva(DisasContext
*ctx
)
5477 #if defined(CONFIG_USER_ONLY)
5478 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5481 if (unlikely(!ctx
->mem_idx
)) {
5482 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5485 t0
= tcg_temp_new();
5486 gen_addr_reg_index(ctx
, t0
);
5487 gen_helper_tlbie(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5492 /* All 405 MAC instructions are translated here */
5493 static inline void gen_405_mulladd_insn(DisasContext
*ctx
, int opc2
, int opc3
,
5494 int ra
, int rb
, int rt
, int Rc
)
5498 t0
= tcg_temp_local_new();
5499 t1
= tcg_temp_local_new();
5501 switch (opc3
& 0x0D) {
5503 /* macchw - macchw. - macchwo - macchwo. */
5504 /* macchws - macchws. - macchwso - macchwso. */
5505 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5506 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5507 /* mulchw - mulchw. */
5508 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5509 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5510 tcg_gen_ext16s_tl(t1
, t1
);
5513 /* macchwu - macchwu. - macchwuo - macchwuo. */
5514 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5515 /* mulchwu - mulchwu. */
5516 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5517 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5518 tcg_gen_ext16u_tl(t1
, t1
);
5521 /* machhw - machhw. - machhwo - machhwo. */
5522 /* machhws - machhws. - machhwso - machhwso. */
5523 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5524 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5525 /* mulhhw - mulhhw. */
5526 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5527 tcg_gen_ext16s_tl(t0
, t0
);
5528 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5529 tcg_gen_ext16s_tl(t1
, t1
);
5532 /* machhwu - machhwu. - machhwuo - machhwuo. */
5533 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5534 /* mulhhwu - mulhhwu. */
5535 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5536 tcg_gen_ext16u_tl(t0
, t0
);
5537 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5538 tcg_gen_ext16u_tl(t1
, t1
);
5541 /* maclhw - maclhw. - maclhwo - maclhwo. */
5542 /* maclhws - maclhws. - maclhwso - maclhwso. */
5543 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5544 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5545 /* mullhw - mullhw. */
5546 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5547 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5550 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5551 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5552 /* mullhwu - mullhwu. */
5553 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5554 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5558 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5559 tcg_gen_mul_tl(t1
, t0
, t1
);
5561 /* nmultiply-and-accumulate (0x0E) */
5562 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5564 /* multiply-and-accumulate (0x0C) */
5565 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5569 /* Check overflow and/or saturate */
5570 int l1
= gen_new_label();
5573 /* Start with XER OV disabled, the most likely case */
5574 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
5578 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5579 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5580 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5581 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5584 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5585 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5589 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5592 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5596 /* Check overflow */
5597 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
5600 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5603 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5607 if (unlikely(Rc
) != 0) {
5609 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5613 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5614 static void glue(gen_, name)(DisasContext *ctx) \
5616 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5617 rD(ctx->opcode), Rc(ctx->opcode)); \
5620 /* macchw - macchw. */
5621 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5622 /* macchwo - macchwo. */
5623 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5624 /* macchws - macchws. */
5625 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5626 /* macchwso - macchwso. */
5627 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5628 /* macchwsu - macchwsu. */
5629 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5630 /* macchwsuo - macchwsuo. */
5631 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5632 /* macchwu - macchwu. */
5633 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5634 /* macchwuo - macchwuo. */
5635 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5636 /* machhw - machhw. */
5637 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5638 /* machhwo - machhwo. */
5639 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5640 /* machhws - machhws. */
5641 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5642 /* machhwso - machhwso. */
5643 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5644 /* machhwsu - machhwsu. */
5645 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5646 /* machhwsuo - machhwsuo. */
5647 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5648 /* machhwu - machhwu. */
5649 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5650 /* machhwuo - machhwuo. */
5651 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5652 /* maclhw - maclhw. */
5653 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5654 /* maclhwo - maclhwo. */
5655 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5656 /* maclhws - maclhws. */
5657 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5658 /* maclhwso - maclhwso. */
5659 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
5660 /* maclhwu - maclhwu. */
5661 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
5662 /* maclhwuo - maclhwuo. */
5663 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
5664 /* maclhwsu - maclhwsu. */
5665 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
5666 /* maclhwsuo - maclhwsuo. */
5667 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
5668 /* nmacchw - nmacchw. */
5669 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
5670 /* nmacchwo - nmacchwo. */
5671 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
5672 /* nmacchws - nmacchws. */
5673 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
5674 /* nmacchwso - nmacchwso. */
5675 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
5676 /* nmachhw - nmachhw. */
5677 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
5678 /* nmachhwo - nmachhwo. */
5679 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
5680 /* nmachhws - nmachhws. */
5681 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
5682 /* nmachhwso - nmachhwso. */
5683 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
5684 /* nmaclhw - nmaclhw. */
5685 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
5686 /* nmaclhwo - nmaclhwo. */
5687 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
5688 /* nmaclhws - nmaclhws. */
5689 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
5690 /* nmaclhwso - nmaclhwso. */
5691 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
5693 /* mulchw - mulchw. */
5694 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
5695 /* mulchwu - mulchwu. */
5696 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
5697 /* mulhhw - mulhhw. */
5698 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
5699 /* mulhhwu - mulhhwu. */
5700 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
5701 /* mullhw - mullhw. */
5702 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
5703 /* mullhwu - mullhwu. */
5704 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
5707 static void gen_mfdcr(DisasContext
*ctx
)
5709 #if defined(CONFIG_USER_ONLY)
5710 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5713 if (unlikely(!ctx
->mem_idx
)) {
5714 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5717 /* NIP cannot be restored if the memory exception comes from an helper */
5718 gen_update_nip(ctx
, ctx
->nip
- 4);
5719 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5720 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, dcrn
);
5721 tcg_temp_free(dcrn
);
5726 static void gen_mtdcr(DisasContext
*ctx
)
5728 #if defined(CONFIG_USER_ONLY)
5729 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5732 if (unlikely(!ctx
->mem_idx
)) {
5733 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5736 /* NIP cannot be restored if the memory exception comes from an helper */
5737 gen_update_nip(ctx
, ctx
->nip
- 4);
5738 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5739 gen_helper_store_dcr(cpu_env
, dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
5740 tcg_temp_free(dcrn
);
5745 /* XXX: not implemented on 440 ? */
5746 static void gen_mfdcrx(DisasContext
*ctx
)
5748 #if defined(CONFIG_USER_ONLY)
5749 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5751 if (unlikely(!ctx
->mem_idx
)) {
5752 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5755 /* NIP cannot be restored if the memory exception comes from an helper */
5756 gen_update_nip(ctx
, ctx
->nip
- 4);
5757 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5758 cpu_gpr
[rA(ctx
->opcode
)]);
5759 /* Note: Rc update flag set leads to undefined state of Rc0 */
5764 /* XXX: not implemented on 440 ? */
5765 static void gen_mtdcrx(DisasContext
*ctx
)
5767 #if defined(CONFIG_USER_ONLY)
5768 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5770 if (unlikely(!ctx
->mem_idx
)) {
5771 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5774 /* NIP cannot be restored if the memory exception comes from an helper */
5775 gen_update_nip(ctx
, ctx
->nip
- 4);
5776 gen_helper_store_dcr(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5777 cpu_gpr
[rS(ctx
->opcode
)]);
5778 /* Note: Rc update flag set leads to undefined state of Rc0 */
5782 /* mfdcrux (PPC 460) : user-mode access to DCR */
5783 static void gen_mfdcrux(DisasContext
*ctx
)
5785 /* NIP cannot be restored if the memory exception comes from an helper */
5786 gen_update_nip(ctx
, ctx
->nip
- 4);
5787 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5788 cpu_gpr
[rA(ctx
->opcode
)]);
5789 /* Note: Rc update flag set leads to undefined state of Rc0 */
5792 /* mtdcrux (PPC 460) : user-mode access to DCR */
5793 static void gen_mtdcrux(DisasContext
*ctx
)
5795 /* NIP cannot be restored if the memory exception comes from an helper */
5796 gen_update_nip(ctx
, ctx
->nip
- 4);
5797 gen_helper_store_dcr(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5798 cpu_gpr
[rS(ctx
->opcode
)]);
5799 /* Note: Rc update flag set leads to undefined state of Rc0 */
5803 static void gen_dccci(DisasContext
*ctx
)
5805 #if defined(CONFIG_USER_ONLY)
5806 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5808 if (unlikely(!ctx
->mem_idx
)) {
5809 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5812 /* interpreted as no-op */
5817 static void gen_dcread(DisasContext
*ctx
)
5819 #if defined(CONFIG_USER_ONLY)
5820 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5823 if (unlikely(!ctx
->mem_idx
)) {
5824 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5827 gen_set_access_type(ctx
, ACCESS_CACHE
);
5828 EA
= tcg_temp_new();
5829 gen_addr_reg_index(ctx
, EA
);
5830 val
= tcg_temp_new();
5831 gen_qemu_ld32u(ctx
, val
, EA
);
5833 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
5839 static void gen_icbt_40x(DisasContext
*ctx
)
5841 /* interpreted as no-op */
5842 /* XXX: specification say this is treated as a load by the MMU
5843 * but does not generate any exception
5848 static void gen_iccci(DisasContext
*ctx
)
5850 #if defined(CONFIG_USER_ONLY)
5851 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5853 if (unlikely(!ctx
->mem_idx
)) {
5854 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5857 /* interpreted as no-op */
5862 static void gen_icread(DisasContext
*ctx
)
5864 #if defined(CONFIG_USER_ONLY)
5865 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5867 if (unlikely(!ctx
->mem_idx
)) {
5868 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5871 /* interpreted as no-op */
5875 /* rfci (mem_idx only) */
5876 static void gen_rfci_40x(DisasContext
*ctx
)
5878 #if defined(CONFIG_USER_ONLY)
5879 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5881 if (unlikely(!ctx
->mem_idx
)) {
5882 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5885 /* Restore CPU state */
5886 gen_helper_40x_rfci(cpu_env
);
5887 gen_sync_exception(ctx
);
5891 static void gen_rfci(DisasContext
*ctx
)
5893 #if defined(CONFIG_USER_ONLY)
5894 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5896 if (unlikely(!ctx
->mem_idx
)) {
5897 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5900 /* Restore CPU state */
5901 gen_helper_rfci(cpu_env
);
5902 gen_sync_exception(ctx
);
5906 /* BookE specific */
5908 /* XXX: not implemented on 440 ? */
5909 static void gen_rfdi(DisasContext
*ctx
)
5911 #if defined(CONFIG_USER_ONLY)
5912 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5914 if (unlikely(!ctx
->mem_idx
)) {
5915 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5918 /* Restore CPU state */
5919 gen_helper_rfdi(cpu_env
);
5920 gen_sync_exception(ctx
);
5924 /* XXX: not implemented on 440 ? */
5925 static void gen_rfmci(DisasContext
*ctx
)
5927 #if defined(CONFIG_USER_ONLY)
5928 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5930 if (unlikely(!ctx
->mem_idx
)) {
5931 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5934 /* Restore CPU state */
5935 gen_helper_rfmci(cpu_env
);
5936 gen_sync_exception(ctx
);
5940 /* TLB management - PowerPC 405 implementation */
5943 static void gen_tlbre_40x(DisasContext
*ctx
)
5945 #if defined(CONFIG_USER_ONLY)
5946 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5948 if (unlikely(!ctx
->mem_idx
)) {
5949 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5952 switch (rB(ctx
->opcode
)) {
5954 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5955 cpu_gpr
[rA(ctx
->opcode
)]);
5958 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5959 cpu_gpr
[rA(ctx
->opcode
)]);
5962 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5968 /* tlbsx - tlbsx. */
5969 static void gen_tlbsx_40x(DisasContext
*ctx
)
5971 #if defined(CONFIG_USER_ONLY)
5972 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5975 if (unlikely(!ctx
->mem_idx
)) {
5976 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5979 t0
= tcg_temp_new();
5980 gen_addr_reg_index(ctx
, t0
);
5981 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5983 if (Rc(ctx
->opcode
)) {
5984 int l1
= gen_new_label();
5985 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5986 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5987 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5988 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5989 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5996 static void gen_tlbwe_40x(DisasContext
*ctx
)
5998 #if defined(CONFIG_USER_ONLY)
5999 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6001 if (unlikely(!ctx
->mem_idx
)) {
6002 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6005 switch (rB(ctx
->opcode
)) {
6007 gen_helper_4xx_tlbwe_hi(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6008 cpu_gpr
[rS(ctx
->opcode
)]);
6011 gen_helper_4xx_tlbwe_lo(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6012 cpu_gpr
[rS(ctx
->opcode
)]);
6015 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6021 /* TLB management - PowerPC 440 implementation */
6024 static void gen_tlbre_440(DisasContext
*ctx
)
6026 #if defined(CONFIG_USER_ONLY)
6027 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6029 if (unlikely(!ctx
->mem_idx
)) {
6030 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6033 switch (rB(ctx
->opcode
)) {
6038 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6039 gen_helper_440_tlbre(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6040 t0
, cpu_gpr
[rA(ctx
->opcode
)]);
6041 tcg_temp_free_i32(t0
);
6045 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6051 /* tlbsx - tlbsx. */
6052 static void gen_tlbsx_440(DisasContext
*ctx
)
6054 #if defined(CONFIG_USER_ONLY)
6055 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6058 if (unlikely(!ctx
->mem_idx
)) {
6059 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6062 t0
= tcg_temp_new();
6063 gen_addr_reg_index(ctx
, t0
);
6064 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
6066 if (Rc(ctx
->opcode
)) {
6067 int l1
= gen_new_label();
6068 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
6069 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
6070 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
6071 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6072 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6079 static void gen_tlbwe_440(DisasContext
*ctx
)
6081 #if defined(CONFIG_USER_ONLY)
6082 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6084 if (unlikely(!ctx
->mem_idx
)) {
6085 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6088 switch (rB(ctx
->opcode
)) {
6093 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6094 gen_helper_440_tlbwe(cpu_env
, t0
, cpu_gpr
[rA(ctx
->opcode
)],
6095 cpu_gpr
[rS(ctx
->opcode
)]);
6096 tcg_temp_free_i32(t0
);
6100 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6106 /* TLB management - PowerPC BookE 2.06 implementation */
6109 static void gen_tlbre_booke206(DisasContext
*ctx
)
6111 #if defined(CONFIG_USER_ONLY)
6112 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6114 if (unlikely(!ctx
->mem_idx
)) {
6115 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6119 gen_helper_booke206_tlbre(cpu_env
);
6123 /* tlbsx - tlbsx. */
6124 static void gen_tlbsx_booke206(DisasContext
*ctx
)
6126 #if defined(CONFIG_USER_ONLY)
6127 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6130 if (unlikely(!ctx
->mem_idx
)) {
6131 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6135 if (rA(ctx
->opcode
)) {
6136 t0
= tcg_temp_new();
6137 tcg_gen_mov_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
6139 t0
= tcg_const_tl(0);
6142 tcg_gen_add_tl(t0
, t0
, cpu_gpr
[rB(ctx
->opcode
)]);
6143 gen_helper_booke206_tlbsx(cpu_env
, t0
);
6148 static void gen_tlbwe_booke206(DisasContext
*ctx
)
6150 #if defined(CONFIG_USER_ONLY)
6151 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6153 if (unlikely(!ctx
->mem_idx
)) {
6154 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6157 gen_update_nip(ctx
, ctx
->nip
- 4);
6158 gen_helper_booke206_tlbwe(cpu_env
);
6162 static void gen_tlbivax_booke206(DisasContext
*ctx
)
6164 #if defined(CONFIG_USER_ONLY)
6165 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6168 if (unlikely(!ctx
->mem_idx
)) {
6169 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6173 t0
= tcg_temp_new();
6174 gen_addr_reg_index(ctx
, t0
);
6176 gen_helper_booke206_tlbivax(cpu_env
, t0
);
6180 static void gen_tlbilx_booke206(DisasContext
*ctx
)
6182 #if defined(CONFIG_USER_ONLY)
6183 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6186 if (unlikely(!ctx
->mem_idx
)) {
6187 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6191 t0
= tcg_temp_new();
6192 gen_addr_reg_index(ctx
, t0
);
6194 switch((ctx
->opcode
>> 21) & 0x3) {
6196 gen_helper_booke206_tlbilx0(cpu_env
, t0
);
6199 gen_helper_booke206_tlbilx1(cpu_env
, t0
);
6202 gen_helper_booke206_tlbilx3(cpu_env
, t0
);
6205 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6215 static void gen_wrtee(DisasContext
*ctx
)
6217 #if defined(CONFIG_USER_ONLY)
6218 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6221 if (unlikely(!ctx
->mem_idx
)) {
6222 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6225 t0
= tcg_temp_new();
6226 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
6227 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6228 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
6230 /* Stop translation to have a chance to raise an exception
6231 * if we just set msr_ee to 1
6233 gen_stop_exception(ctx
);
6238 static void gen_wrteei(DisasContext
*ctx
)
6240 #if defined(CONFIG_USER_ONLY)
6241 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6243 if (unlikely(!ctx
->mem_idx
)) {
6244 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6247 if (ctx
->opcode
& 0x00008000) {
6248 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
6249 /* Stop translation to have a chance to raise an exception */
6250 gen_stop_exception(ctx
);
6252 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6257 /* PowerPC 440 specific instructions */
6260 static void gen_dlmzb(DisasContext
*ctx
)
6262 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
6263 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
6264 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
6265 tcg_temp_free_i32(t0
);
6268 /* mbar replaces eieio on 440 */
6269 static void gen_mbar(DisasContext
*ctx
)
6271 /* interpreted as no-op */
6274 /* msync replaces sync on 440 */
6275 static void gen_msync_4xx(DisasContext
*ctx
)
6277 /* interpreted as no-op */
6281 static void gen_icbt_440(DisasContext
*ctx
)
6283 /* interpreted as no-op */
6284 /* XXX: specification say this is treated as a load by the MMU
6285 * but does not generate any exception
6289 /* Embedded.Processor Control */
6291 static void gen_msgclr(DisasContext
*ctx
)
6293 #if defined(CONFIG_USER_ONLY)
6294 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6296 if (unlikely(ctx
->mem_idx
== 0)) {
6297 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6301 gen_helper_msgclr(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
6305 static void gen_msgsnd(DisasContext
*ctx
)
6307 #if defined(CONFIG_USER_ONLY)
6308 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6310 if (unlikely(ctx
->mem_idx
== 0)) {
6311 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6315 gen_helper_msgsnd(cpu_gpr
[rB(ctx
->opcode
)]);
6319 /*** Altivec vector extension ***/
6320 /* Altivec registers moves */
6322 static inline TCGv_ptr
gen_avr_ptr(int reg
)
6324 TCGv_ptr r
= tcg_temp_new_ptr();
6325 tcg_gen_addi_ptr(r
, cpu_env
, offsetof(CPUPPCState
, avr
[reg
]));
6329 #define GEN_VR_LDX(name, opc2, opc3) \
6330 static void glue(gen_, name)(DisasContext *ctx) \
6333 if (unlikely(!ctx->altivec_enabled)) { \
6334 gen_exception(ctx, POWERPC_EXCP_VPU); \
6337 gen_set_access_type(ctx, ACCESS_INT); \
6338 EA = tcg_temp_new(); \
6339 gen_addr_reg_index(ctx, EA); \
6340 tcg_gen_andi_tl(EA, EA, ~0xf); \
6341 if (ctx->le_mode) { \
6342 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6343 tcg_gen_addi_tl(EA, EA, 8); \
6344 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6346 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6347 tcg_gen_addi_tl(EA, EA, 8); \
6348 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6350 tcg_temp_free(EA); \
6353 #define GEN_VR_STX(name, opc2, opc3) \
6354 static void gen_st##name(DisasContext *ctx) \
6357 if (unlikely(!ctx->altivec_enabled)) { \
6358 gen_exception(ctx, POWERPC_EXCP_VPU); \
6361 gen_set_access_type(ctx, ACCESS_INT); \
6362 EA = tcg_temp_new(); \
6363 gen_addr_reg_index(ctx, EA); \
6364 tcg_gen_andi_tl(EA, EA, ~0xf); \
6365 if (ctx->le_mode) { \
6366 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6367 tcg_gen_addi_tl(EA, EA, 8); \
6368 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6370 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6371 tcg_gen_addi_tl(EA, EA, 8); \
6372 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6374 tcg_temp_free(EA); \
6377 #define GEN_VR_LVE(name, opc2, opc3) \
6378 static void gen_lve##name(DisasContext *ctx) \
6382 if (unlikely(!ctx->altivec_enabled)) { \
6383 gen_exception(ctx, POWERPC_EXCP_VPU); \
6386 gen_set_access_type(ctx, ACCESS_INT); \
6387 EA = tcg_temp_new(); \
6388 gen_addr_reg_index(ctx, EA); \
6389 rs = gen_avr_ptr(rS(ctx->opcode)); \
6390 gen_helper_lve##name(cpu_env, rs, EA); \
6391 tcg_temp_free(EA); \
6392 tcg_temp_free_ptr(rs); \
6395 #define GEN_VR_STVE(name, opc2, opc3) \
6396 static void gen_stve##name(DisasContext *ctx) \
6400 if (unlikely(!ctx->altivec_enabled)) { \
6401 gen_exception(ctx, POWERPC_EXCP_VPU); \
6404 gen_set_access_type(ctx, ACCESS_INT); \
6405 EA = tcg_temp_new(); \
6406 gen_addr_reg_index(ctx, EA); \
6407 rs = gen_avr_ptr(rS(ctx->opcode)); \
6408 gen_helper_stve##name(cpu_env, rs, EA); \
6409 tcg_temp_free(EA); \
6410 tcg_temp_free_ptr(rs); \
6413 GEN_VR_LDX(lvx
, 0x07, 0x03);
6414 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6415 GEN_VR_LDX(lvxl
, 0x07, 0x0B);
6417 GEN_VR_LVE(bx
, 0x07, 0x00);
6418 GEN_VR_LVE(hx
, 0x07, 0x01);
6419 GEN_VR_LVE(wx
, 0x07, 0x02);
6421 GEN_VR_STX(svx
, 0x07, 0x07);
6422 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6423 GEN_VR_STX(svxl
, 0x07, 0x0F);
6425 GEN_VR_STVE(bx
, 0x07, 0x04);
6426 GEN_VR_STVE(hx
, 0x07, 0x05);
6427 GEN_VR_STVE(wx
, 0x07, 0x06);
6429 static void gen_lvsl(DisasContext
*ctx
)
6433 if (unlikely(!ctx
->altivec_enabled
)) {
6434 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6437 EA
= tcg_temp_new();
6438 gen_addr_reg_index(ctx
, EA
);
6439 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6440 gen_helper_lvsl(rd
, EA
);
6442 tcg_temp_free_ptr(rd
);
6445 static void gen_lvsr(DisasContext
*ctx
)
6449 if (unlikely(!ctx
->altivec_enabled
)) {
6450 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6453 EA
= tcg_temp_new();
6454 gen_addr_reg_index(ctx
, EA
);
6455 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6456 gen_helper_lvsr(rd
, EA
);
6458 tcg_temp_free_ptr(rd
);
6461 static void gen_mfvscr(DisasContext
*ctx
)
6464 if (unlikely(!ctx
->altivec_enabled
)) {
6465 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6468 tcg_gen_movi_i64(cpu_avrh
[rD(ctx
->opcode
)], 0);
6469 t
= tcg_temp_new_i32();
6470 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUPPCState
, vscr
));
6471 tcg_gen_extu_i32_i64(cpu_avrl
[rD(ctx
->opcode
)], t
);
6472 tcg_temp_free_i32(t
);
6475 static void gen_mtvscr(DisasContext
*ctx
)
6478 if (unlikely(!ctx
->altivec_enabled
)) {
6479 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6482 p
= gen_avr_ptr(rD(ctx
->opcode
));
6483 gen_helper_mtvscr(cpu_env
, p
);
6484 tcg_temp_free_ptr(p
);
6487 /* Logical operations */
6488 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
6489 static void glue(gen_, name)(DisasContext *ctx) \
6491 if (unlikely(!ctx->altivec_enabled)) { \
6492 gen_exception(ctx, POWERPC_EXCP_VPU); \
6495 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6496 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6499 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16);
6500 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17);
6501 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18);
6502 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19);
6503 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20);
6505 #define GEN_VXFORM(name, opc2, opc3) \
6506 static void glue(gen_, name)(DisasContext *ctx) \
6508 TCGv_ptr ra, rb, rd; \
6509 if (unlikely(!ctx->altivec_enabled)) { \
6510 gen_exception(ctx, POWERPC_EXCP_VPU); \
6513 ra = gen_avr_ptr(rA(ctx->opcode)); \
6514 rb = gen_avr_ptr(rB(ctx->opcode)); \
6515 rd = gen_avr_ptr(rD(ctx->opcode)); \
6516 gen_helper_##name (rd, ra, rb); \
6517 tcg_temp_free_ptr(ra); \
6518 tcg_temp_free_ptr(rb); \
6519 tcg_temp_free_ptr(rd); \
6522 #define GEN_VXFORM_ENV(name, opc2, opc3) \
6523 static void glue(gen_, name)(DisasContext *ctx) \
6525 TCGv_ptr ra, rb, rd; \
6526 if (unlikely(!ctx->altivec_enabled)) { \
6527 gen_exception(ctx, POWERPC_EXCP_VPU); \
6530 ra = gen_avr_ptr(rA(ctx->opcode)); \
6531 rb = gen_avr_ptr(rB(ctx->opcode)); \
6532 rd = gen_avr_ptr(rD(ctx->opcode)); \
6533 gen_helper_##name(cpu_env, rd, ra, rb); \
6534 tcg_temp_free_ptr(ra); \
6535 tcg_temp_free_ptr(rb); \
6536 tcg_temp_free_ptr(rd); \
6539 GEN_VXFORM(vaddubm
, 0, 0);
6540 GEN_VXFORM(vadduhm
, 0, 1);
6541 GEN_VXFORM(vadduwm
, 0, 2);
6542 GEN_VXFORM(vsububm
, 0, 16);
6543 GEN_VXFORM(vsubuhm
, 0, 17);
6544 GEN_VXFORM(vsubuwm
, 0, 18);
6545 GEN_VXFORM(vmaxub
, 1, 0);
6546 GEN_VXFORM(vmaxuh
, 1, 1);
6547 GEN_VXFORM(vmaxuw
, 1, 2);
6548 GEN_VXFORM(vmaxsb
, 1, 4);
6549 GEN_VXFORM(vmaxsh
, 1, 5);
6550 GEN_VXFORM(vmaxsw
, 1, 6);
6551 GEN_VXFORM(vminub
, 1, 8);
6552 GEN_VXFORM(vminuh
, 1, 9);
6553 GEN_VXFORM(vminuw
, 1, 10);
6554 GEN_VXFORM(vminsb
, 1, 12);
6555 GEN_VXFORM(vminsh
, 1, 13);
6556 GEN_VXFORM(vminsw
, 1, 14);
6557 GEN_VXFORM(vavgub
, 1, 16);
6558 GEN_VXFORM(vavguh
, 1, 17);
6559 GEN_VXFORM(vavguw
, 1, 18);
6560 GEN_VXFORM(vavgsb
, 1, 20);
6561 GEN_VXFORM(vavgsh
, 1, 21);
6562 GEN_VXFORM(vavgsw
, 1, 22);
6563 GEN_VXFORM(vmrghb
, 6, 0);
6564 GEN_VXFORM(vmrghh
, 6, 1);
6565 GEN_VXFORM(vmrghw
, 6, 2);
6566 GEN_VXFORM(vmrglb
, 6, 4);
6567 GEN_VXFORM(vmrglh
, 6, 5);
6568 GEN_VXFORM(vmrglw
, 6, 6);
6569 GEN_VXFORM(vmuloub
, 4, 0);
6570 GEN_VXFORM(vmulouh
, 4, 1);
6571 GEN_VXFORM(vmulosb
, 4, 4);
6572 GEN_VXFORM(vmulosh
, 4, 5);
6573 GEN_VXFORM(vmuleub
, 4, 8);
6574 GEN_VXFORM(vmuleuh
, 4, 9);
6575 GEN_VXFORM(vmulesb
, 4, 12);
6576 GEN_VXFORM(vmulesh
, 4, 13);
6577 GEN_VXFORM(vslb
, 2, 4);
6578 GEN_VXFORM(vslh
, 2, 5);
6579 GEN_VXFORM(vslw
, 2, 6);
6580 GEN_VXFORM(vsrb
, 2, 8);
6581 GEN_VXFORM(vsrh
, 2, 9);
6582 GEN_VXFORM(vsrw
, 2, 10);
6583 GEN_VXFORM(vsrab
, 2, 12);
6584 GEN_VXFORM(vsrah
, 2, 13);
6585 GEN_VXFORM(vsraw
, 2, 14);
6586 GEN_VXFORM(vslo
, 6, 16);
6587 GEN_VXFORM(vsro
, 6, 17);
6588 GEN_VXFORM(vaddcuw
, 0, 6);
6589 GEN_VXFORM(vsubcuw
, 0, 22);
6590 GEN_VXFORM_ENV(vaddubs
, 0, 8);
6591 GEN_VXFORM_ENV(vadduhs
, 0, 9);
6592 GEN_VXFORM_ENV(vadduws
, 0, 10);
6593 GEN_VXFORM_ENV(vaddsbs
, 0, 12);
6594 GEN_VXFORM_ENV(vaddshs
, 0, 13);
6595 GEN_VXFORM_ENV(vaddsws
, 0, 14);
6596 GEN_VXFORM_ENV(vsububs
, 0, 24);
6597 GEN_VXFORM_ENV(vsubuhs
, 0, 25);
6598 GEN_VXFORM_ENV(vsubuws
, 0, 26);
6599 GEN_VXFORM_ENV(vsubsbs
, 0, 28);
6600 GEN_VXFORM_ENV(vsubshs
, 0, 29);
6601 GEN_VXFORM_ENV(vsubsws
, 0, 30);
6602 GEN_VXFORM(vrlb
, 2, 0);
6603 GEN_VXFORM(vrlh
, 2, 1);
6604 GEN_VXFORM(vrlw
, 2, 2);
6605 GEN_VXFORM(vsl
, 2, 7);
6606 GEN_VXFORM(vsr
, 2, 11);
6607 GEN_VXFORM_ENV(vpkuhum
, 7, 0);
6608 GEN_VXFORM_ENV(vpkuwum
, 7, 1);
6609 GEN_VXFORM_ENV(vpkuhus
, 7, 2);
6610 GEN_VXFORM_ENV(vpkuwus
, 7, 3);
6611 GEN_VXFORM_ENV(vpkshus
, 7, 4);
6612 GEN_VXFORM_ENV(vpkswus
, 7, 5);
6613 GEN_VXFORM_ENV(vpkshss
, 7, 6);
6614 GEN_VXFORM_ENV(vpkswss
, 7, 7);
6615 GEN_VXFORM(vpkpx
, 7, 12);
6616 GEN_VXFORM_ENV(vsum4ubs
, 4, 24);
6617 GEN_VXFORM_ENV(vsum4sbs
, 4, 28);
6618 GEN_VXFORM_ENV(vsum4shs
, 4, 25);
6619 GEN_VXFORM_ENV(vsum2sws
, 4, 26);
6620 GEN_VXFORM_ENV(vsumsws
, 4, 30);
6621 GEN_VXFORM_ENV(vaddfp
, 5, 0);
6622 GEN_VXFORM_ENV(vsubfp
, 5, 1);
6623 GEN_VXFORM_ENV(vmaxfp
, 5, 16);
6624 GEN_VXFORM_ENV(vminfp
, 5, 17);
6626 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
6627 static void glue(gen_, name)(DisasContext *ctx) \
6629 TCGv_ptr ra, rb, rd; \
6630 if (unlikely(!ctx->altivec_enabled)) { \
6631 gen_exception(ctx, POWERPC_EXCP_VPU); \
6634 ra = gen_avr_ptr(rA(ctx->opcode)); \
6635 rb = gen_avr_ptr(rB(ctx->opcode)); \
6636 rd = gen_avr_ptr(rD(ctx->opcode)); \
6637 gen_helper_##opname(cpu_env, rd, ra, rb); \
6638 tcg_temp_free_ptr(ra); \
6639 tcg_temp_free_ptr(rb); \
6640 tcg_temp_free_ptr(rd); \
6643 #define GEN_VXRFORM(name, opc2, opc3) \
6644 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
6645 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6647 GEN_VXRFORM(vcmpequb
, 3, 0)
6648 GEN_VXRFORM(vcmpequh
, 3, 1)
6649 GEN_VXRFORM(vcmpequw
, 3, 2)
6650 GEN_VXRFORM(vcmpgtsb
, 3, 12)
6651 GEN_VXRFORM(vcmpgtsh
, 3, 13)
6652 GEN_VXRFORM(vcmpgtsw
, 3, 14)
6653 GEN_VXRFORM(vcmpgtub
, 3, 8)
6654 GEN_VXRFORM(vcmpgtuh
, 3, 9)
6655 GEN_VXRFORM(vcmpgtuw
, 3, 10)
6656 GEN_VXRFORM(vcmpeqfp
, 3, 3)
6657 GEN_VXRFORM(vcmpgefp
, 3, 7)
6658 GEN_VXRFORM(vcmpgtfp
, 3, 11)
6659 GEN_VXRFORM(vcmpbfp
, 3, 15)
6661 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6662 static void glue(gen_, name)(DisasContext *ctx) \
6666 if (unlikely(!ctx->altivec_enabled)) { \
6667 gen_exception(ctx, POWERPC_EXCP_VPU); \
6670 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6671 rd = gen_avr_ptr(rD(ctx->opcode)); \
6672 gen_helper_##name (rd, simm); \
6673 tcg_temp_free_i32(simm); \
6674 tcg_temp_free_ptr(rd); \
6677 GEN_VXFORM_SIMM(vspltisb
, 6, 12);
6678 GEN_VXFORM_SIMM(vspltish
, 6, 13);
6679 GEN_VXFORM_SIMM(vspltisw
, 6, 14);
6681 #define GEN_VXFORM_NOA(name, opc2, opc3) \
6682 static void glue(gen_, name)(DisasContext *ctx) \
6685 if (unlikely(!ctx->altivec_enabled)) { \
6686 gen_exception(ctx, POWERPC_EXCP_VPU); \
6689 rb = gen_avr_ptr(rB(ctx->opcode)); \
6690 rd = gen_avr_ptr(rD(ctx->opcode)); \
6691 gen_helper_##name (rd, rb); \
6692 tcg_temp_free_ptr(rb); \
6693 tcg_temp_free_ptr(rd); \
6696 #define GEN_VXFORM_NOA_ENV(name, opc2, opc3) \
6697 static void glue(gen_, name)(DisasContext *ctx) \
6701 if (unlikely(!ctx->altivec_enabled)) { \
6702 gen_exception(ctx, POWERPC_EXCP_VPU); \
6705 rb = gen_avr_ptr(rB(ctx->opcode)); \
6706 rd = gen_avr_ptr(rD(ctx->opcode)); \
6707 gen_helper_##name(cpu_env, rd, rb); \
6708 tcg_temp_free_ptr(rb); \
6709 tcg_temp_free_ptr(rd); \
6712 GEN_VXFORM_NOA(vupkhsb
, 7, 8);
6713 GEN_VXFORM_NOA(vupkhsh
, 7, 9);
6714 GEN_VXFORM_NOA(vupklsb
, 7, 10);
6715 GEN_VXFORM_NOA(vupklsh
, 7, 11);
6716 GEN_VXFORM_NOA(vupkhpx
, 7, 13);
6717 GEN_VXFORM_NOA(vupklpx
, 7, 15);
6718 GEN_VXFORM_NOA_ENV(vrefp
, 5, 4);
6719 GEN_VXFORM_NOA_ENV(vrsqrtefp
, 5, 5);
6720 GEN_VXFORM_NOA_ENV(vexptefp
, 5, 6);
6721 GEN_VXFORM_NOA_ENV(vlogefp
, 5, 7);
6722 GEN_VXFORM_NOA_ENV(vrfim
, 5, 8);
6723 GEN_VXFORM_NOA_ENV(vrfin
, 5, 9);
6724 GEN_VXFORM_NOA_ENV(vrfip
, 5, 10);
6725 GEN_VXFORM_NOA_ENV(vrfiz
, 5, 11);
6727 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6728 static void glue(gen_, name)(DisasContext *ctx) \
6732 if (unlikely(!ctx->altivec_enabled)) { \
6733 gen_exception(ctx, POWERPC_EXCP_VPU); \
6736 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6737 rd = gen_avr_ptr(rD(ctx->opcode)); \
6738 gen_helper_##name (rd, simm); \
6739 tcg_temp_free_i32(simm); \
6740 tcg_temp_free_ptr(rd); \
6743 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
6744 static void glue(gen_, name)(DisasContext *ctx) \
6748 if (unlikely(!ctx->altivec_enabled)) { \
6749 gen_exception(ctx, POWERPC_EXCP_VPU); \
6752 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6753 rb = gen_avr_ptr(rB(ctx->opcode)); \
6754 rd = gen_avr_ptr(rD(ctx->opcode)); \
6755 gen_helper_##name (rd, rb, uimm); \
6756 tcg_temp_free_i32(uimm); \
6757 tcg_temp_free_ptr(rb); \
6758 tcg_temp_free_ptr(rd); \
6761 #define GEN_VXFORM_UIMM_ENV(name, opc2, opc3) \
6762 static void glue(gen_, name)(DisasContext *ctx) \
6767 if (unlikely(!ctx->altivec_enabled)) { \
6768 gen_exception(ctx, POWERPC_EXCP_VPU); \
6771 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6772 rb = gen_avr_ptr(rB(ctx->opcode)); \
6773 rd = gen_avr_ptr(rD(ctx->opcode)); \
6774 gen_helper_##name(cpu_env, rd, rb, uimm); \
6775 tcg_temp_free_i32(uimm); \
6776 tcg_temp_free_ptr(rb); \
6777 tcg_temp_free_ptr(rd); \
6780 GEN_VXFORM_UIMM(vspltb
, 6, 8);
6781 GEN_VXFORM_UIMM(vsplth
, 6, 9);
6782 GEN_VXFORM_UIMM(vspltw
, 6, 10);
6783 GEN_VXFORM_UIMM_ENV(vcfux
, 5, 12);
6784 GEN_VXFORM_UIMM_ENV(vcfsx
, 5, 13);
6785 GEN_VXFORM_UIMM_ENV(vctuxs
, 5, 14);
6786 GEN_VXFORM_UIMM_ENV(vctsxs
, 5, 15);
6788 static void gen_vsldoi(DisasContext
*ctx
)
6790 TCGv_ptr ra
, rb
, rd
;
6792 if (unlikely(!ctx
->altivec_enabled
)) {
6793 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6796 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6797 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6798 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6799 sh
= tcg_const_i32(VSH(ctx
->opcode
));
6800 gen_helper_vsldoi (rd
, ra
, rb
, sh
);
6801 tcg_temp_free_ptr(ra
);
6802 tcg_temp_free_ptr(rb
);
6803 tcg_temp_free_ptr(rd
);
6804 tcg_temp_free_i32(sh
);
6807 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
6808 static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
6810 TCGv_ptr ra, rb, rc, rd; \
6811 if (unlikely(!ctx->altivec_enabled)) { \
6812 gen_exception(ctx, POWERPC_EXCP_VPU); \
6815 ra = gen_avr_ptr(rA(ctx->opcode)); \
6816 rb = gen_avr_ptr(rB(ctx->opcode)); \
6817 rc = gen_avr_ptr(rC(ctx->opcode)); \
6818 rd = gen_avr_ptr(rD(ctx->opcode)); \
6819 if (Rc(ctx->opcode)) { \
6820 gen_helper_##name1(cpu_env, rd, ra, rb, rc); \
6822 gen_helper_##name0(cpu_env, rd, ra, rb, rc); \
6824 tcg_temp_free_ptr(ra); \
6825 tcg_temp_free_ptr(rb); \
6826 tcg_temp_free_ptr(rc); \
6827 tcg_temp_free_ptr(rd); \
6830 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16)
6832 static void gen_vmladduhm(DisasContext
*ctx
)
6834 TCGv_ptr ra
, rb
, rc
, rd
;
6835 if (unlikely(!ctx
->altivec_enabled
)) {
6836 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6839 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6840 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6841 rc
= gen_avr_ptr(rC(ctx
->opcode
));
6842 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6843 gen_helper_vmladduhm(rd
, ra
, rb
, rc
);
6844 tcg_temp_free_ptr(ra
);
6845 tcg_temp_free_ptr(rb
);
6846 tcg_temp_free_ptr(rc
);
6847 tcg_temp_free_ptr(rd
);
6850 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18)
6851 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19)
6852 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20)
6853 GEN_VAFORM_PAIRED(vsel
, vperm
, 21)
6854 GEN_VAFORM_PAIRED(vmaddfp
, vnmsubfp
, 23)
6856 /*** SPE extension ***/
6857 /* Register moves */
6860 static inline void gen_evmra(DisasContext
*ctx
)
6863 if (unlikely(!ctx
->spe_enabled
)) {
6864 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
6868 #if defined(TARGET_PPC64)
6870 tcg_gen_mov_i64(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
6873 tcg_gen_st_i64(cpu_gpr
[rA(ctx
->opcode
)],
6875 offsetof(CPUPPCState
, spe_acc
));
6877 TCGv_i64 tmp
= tcg_temp_new_i64();
6879 /* tmp := rA_lo + rA_hi << 32 */
6880 tcg_gen_concat_i32_i64(tmp
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6882 /* spe_acc := tmp */
6883 tcg_gen_st_i64(tmp
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
6884 tcg_temp_free_i64(tmp
);
6887 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
6888 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6892 static inline void gen_load_gpr64(TCGv_i64 t
, int reg
)
6894 #if defined(TARGET_PPC64)
6895 tcg_gen_mov_i64(t
, cpu_gpr
[reg
]);
6897 tcg_gen_concat_i32_i64(t
, cpu_gpr
[reg
], cpu_gprh
[reg
]);
6901 static inline void gen_store_gpr64(int reg
, TCGv_i64 t
)
6903 #if defined(TARGET_PPC64)
6904 tcg_gen_mov_i64(cpu_gpr
[reg
], t
);
6906 TCGv_i64 tmp
= tcg_temp_new_i64();
6907 tcg_gen_trunc_i64_i32(cpu_gpr
[reg
], t
);
6908 tcg_gen_shri_i64(tmp
, t
, 32);
6909 tcg_gen_trunc_i64_i32(cpu_gprh
[reg
], tmp
);
6910 tcg_temp_free_i64(tmp
);
6914 #define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type) \
6915 static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
6917 if (Rc(ctx->opcode)) \
6923 /* Handler for undefined SPE opcodes */
6924 static inline void gen_speundef(DisasContext
*ctx
)
6926 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6930 #if defined(TARGET_PPC64)
6931 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6932 static inline void gen_##name(DisasContext *ctx) \
6934 if (unlikely(!ctx->spe_enabled)) { \
6935 gen_exception(ctx, POWERPC_EXCP_SPEU); \
6938 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6939 cpu_gpr[rB(ctx->opcode)]); \
6942 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6943 static inline void gen_##name(DisasContext *ctx) \
6945 if (unlikely(!ctx->spe_enabled)) { \
6946 gen_exception(ctx, POWERPC_EXCP_SPEU); \
6949 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6950 cpu_gpr[rB(ctx->opcode)]); \
6951 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6952 cpu_gprh[rB(ctx->opcode)]); \
6956 GEN_SPEOP_LOGIC2(evand
, tcg_gen_and_tl
);
6957 GEN_SPEOP_LOGIC2(evandc
, tcg_gen_andc_tl
);
6958 GEN_SPEOP_LOGIC2(evxor
, tcg_gen_xor_tl
);
6959 GEN_SPEOP_LOGIC2(evor
, tcg_gen_or_tl
);
6960 GEN_SPEOP_LOGIC2(evnor
, tcg_gen_nor_tl
);
6961 GEN_SPEOP_LOGIC2(eveqv
, tcg_gen_eqv_tl
);
6962 GEN_SPEOP_LOGIC2(evorc
, tcg_gen_orc_tl
);
6963 GEN_SPEOP_LOGIC2(evnand
, tcg_gen_nand_tl
);
6965 /* SPE logic immediate */
6966 #if defined(TARGET_PPC64)
6967 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6968 static inline void gen_##name(DisasContext *ctx) \
6970 if (unlikely(!ctx->spe_enabled)) { \
6971 gen_exception(ctx, POWERPC_EXCP_SPEU); \
6974 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6975 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6976 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6977 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6978 tcg_opi(t0, t0, rB(ctx->opcode)); \
6979 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6980 tcg_gen_trunc_i64_i32(t1, t2); \
6981 tcg_temp_free_i64(t2); \
6982 tcg_opi(t1, t1, rB(ctx->opcode)); \
6983 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6984 tcg_temp_free_i32(t0); \
6985 tcg_temp_free_i32(t1); \
6988 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6989 static inline void gen_##name(DisasContext *ctx) \
6991 if (unlikely(!ctx->spe_enabled)) { \
6992 gen_exception(ctx, POWERPC_EXCP_SPEU); \
6995 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6997 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
7001 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi
, tcg_gen_shli_i32
);
7002 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu
, tcg_gen_shri_i32
);
7003 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis
, tcg_gen_sari_i32
);
7004 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi
, tcg_gen_rotli_i32
);
7006 /* SPE arithmetic */
7007 #if defined(TARGET_PPC64)
7008 #define GEN_SPEOP_ARITH1(name, tcg_op) \
7009 static inline void gen_##name(DisasContext *ctx) \
7011 if (unlikely(!ctx->spe_enabled)) { \
7012 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7015 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7016 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7017 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
7018 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7020 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
7021 tcg_gen_trunc_i64_i32(t1, t2); \
7022 tcg_temp_free_i64(t2); \
7024 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
7025 tcg_temp_free_i32(t0); \
7026 tcg_temp_free_i32(t1); \
7029 #define GEN_SPEOP_ARITH1(name, tcg_op) \
7030 static inline void gen_##name(DisasContext *ctx) \
7032 if (unlikely(!ctx->spe_enabled)) { \
7033 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7036 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
7037 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
7041 static inline void gen_op_evabs(TCGv_i32 ret
, TCGv_i32 arg1
)
7043 int l1
= gen_new_label();
7044 int l2
= gen_new_label();
7046 tcg_gen_brcondi_i32(TCG_COND_GE
, arg1
, 0, l1
);
7047 tcg_gen_neg_i32(ret
, arg1
);
7050 tcg_gen_mov_i32(ret
, arg1
);
7053 GEN_SPEOP_ARITH1(evabs
, gen_op_evabs
);
7054 GEN_SPEOP_ARITH1(evneg
, tcg_gen_neg_i32
);
7055 GEN_SPEOP_ARITH1(evextsb
, tcg_gen_ext8s_i32
);
7056 GEN_SPEOP_ARITH1(evextsh
, tcg_gen_ext16s_i32
);
7057 static inline void gen_op_evrndw(TCGv_i32 ret
, TCGv_i32 arg1
)
7059 tcg_gen_addi_i32(ret
, arg1
, 0x8000);
7060 tcg_gen_ext16u_i32(ret
, ret
);
7062 GEN_SPEOP_ARITH1(evrndw
, gen_op_evrndw
);
7063 GEN_SPEOP_ARITH1(evcntlsw
, gen_helper_cntlsw32
);
7064 GEN_SPEOP_ARITH1(evcntlzw
, gen_helper_cntlzw32
);
7066 #if defined(TARGET_PPC64)
7067 #define GEN_SPEOP_ARITH2(name, tcg_op) \
7068 static inline void gen_##name(DisasContext *ctx) \
7070 if (unlikely(!ctx->spe_enabled)) { \
7071 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7074 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7075 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7076 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
7077 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
7078 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7079 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
7080 tcg_op(t0, t0, t2); \
7081 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
7082 tcg_gen_trunc_i64_i32(t1, t3); \
7083 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
7084 tcg_gen_trunc_i64_i32(t2, t3); \
7085 tcg_temp_free_i64(t3); \
7086 tcg_op(t1, t1, t2); \
7087 tcg_temp_free_i32(t2); \
7088 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
7089 tcg_temp_free_i32(t0); \
7090 tcg_temp_free_i32(t1); \
7093 #define GEN_SPEOP_ARITH2(name, tcg_op) \
7094 static inline void gen_##name(DisasContext *ctx) \
7096 if (unlikely(!ctx->spe_enabled)) { \
7097 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7100 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7101 cpu_gpr[rB(ctx->opcode)]); \
7102 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
7103 cpu_gprh[rB(ctx->opcode)]); \
7107 static inline void gen_op_evsrwu(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
7112 l1
= gen_new_label();
7113 l2
= gen_new_label();
7114 t0
= tcg_temp_local_new_i32();
7115 /* No error here: 6 bits are used */
7116 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
7117 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
7118 tcg_gen_shr_i32(ret
, arg1
, t0
);
7121 tcg_gen_movi_i32(ret
, 0);
7123 tcg_temp_free_i32(t0
);
7125 GEN_SPEOP_ARITH2(evsrwu
, gen_op_evsrwu
);
7126 static inline void gen_op_evsrws(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
7131 l1
= gen_new_label();
7132 l2
= gen_new_label();
7133 t0
= tcg_temp_local_new_i32();
7134 /* No error here: 6 bits are used */
7135 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
7136 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
7137 tcg_gen_sar_i32(ret
, arg1
, t0
);
7140 tcg_gen_movi_i32(ret
, 0);
7142 tcg_temp_free_i32(t0
);
7144 GEN_SPEOP_ARITH2(evsrws
, gen_op_evsrws
);
7145 static inline void gen_op_evslw(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
7150 l1
= gen_new_label();
7151 l2
= gen_new_label();
7152 t0
= tcg_temp_local_new_i32();
7153 /* No error here: 6 bits are used */
7154 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
7155 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
7156 tcg_gen_shl_i32(ret
, arg1
, t0
);
7159 tcg_gen_movi_i32(ret
, 0);
7161 tcg_temp_free_i32(t0
);
7163 GEN_SPEOP_ARITH2(evslw
, gen_op_evslw
);
7164 static inline void gen_op_evrlw(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
7166 TCGv_i32 t0
= tcg_temp_new_i32();
7167 tcg_gen_andi_i32(t0
, arg2
, 0x1F);
7168 tcg_gen_rotl_i32(ret
, arg1
, t0
);
7169 tcg_temp_free_i32(t0
);
7171 GEN_SPEOP_ARITH2(evrlw
, gen_op_evrlw
);
7172 static inline void gen_evmergehi(DisasContext
*ctx
)
7174 if (unlikely(!ctx
->spe_enabled
)) {
7175 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7178 #if defined(TARGET_PPC64)
7179 TCGv t0
= tcg_temp_new();
7180 TCGv t1
= tcg_temp_new();
7181 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
7182 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
7183 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7187 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7188 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7191 GEN_SPEOP_ARITH2(evaddw
, tcg_gen_add_i32
);
7192 static inline void gen_op_evsubf(TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
7194 tcg_gen_sub_i32(ret
, arg2
, arg1
);
7196 GEN_SPEOP_ARITH2(evsubfw
, gen_op_evsubf
);
7198 /* SPE arithmetic immediate */
7199 #if defined(TARGET_PPC64)
7200 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
7201 static inline void gen_##name(DisasContext *ctx) \
7203 if (unlikely(!ctx->spe_enabled)) { \
7204 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7207 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7208 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7209 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
7210 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7211 tcg_op(t0, t0, rA(ctx->opcode)); \
7212 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
7213 tcg_gen_trunc_i64_i32(t1, t2); \
7214 tcg_temp_free_i64(t2); \
7215 tcg_op(t1, t1, rA(ctx->opcode)); \
7216 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
7217 tcg_temp_free_i32(t0); \
7218 tcg_temp_free_i32(t1); \
7221 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
7222 static inline void gen_##name(DisasContext *ctx) \
7224 if (unlikely(!ctx->spe_enabled)) { \
7225 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7228 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
7230 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
7234 GEN_SPEOP_ARITH_IMM2(evaddiw
, tcg_gen_addi_i32
);
7235 GEN_SPEOP_ARITH_IMM2(evsubifw
, tcg_gen_subi_i32
);
7237 /* SPE comparison */
7238 #if defined(TARGET_PPC64)
7239 #define GEN_SPEOP_COMP(name, tcg_cond) \
7240 static inline void gen_##name(DisasContext *ctx) \
7242 if (unlikely(!ctx->spe_enabled)) { \
7243 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7246 int l1 = gen_new_label(); \
7247 int l2 = gen_new_label(); \
7248 int l3 = gen_new_label(); \
7249 int l4 = gen_new_label(); \
7250 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7251 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7252 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
7253 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7254 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7255 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
7256 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
7258 gen_set_label(l1); \
7259 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
7260 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
7261 gen_set_label(l2); \
7262 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
7263 tcg_gen_trunc_i64_i32(t0, t2); \
7264 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
7265 tcg_gen_trunc_i64_i32(t1, t2); \
7266 tcg_temp_free_i64(t2); \
7267 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
7268 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7269 ~(CRF_CH | CRF_CH_AND_CL)); \
7271 gen_set_label(l3); \
7272 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7273 CRF_CH | CRF_CH_OR_CL); \
7274 gen_set_label(l4); \
7275 tcg_temp_free_i32(t0); \
7276 tcg_temp_free_i32(t1); \
7279 #define GEN_SPEOP_COMP(name, tcg_cond) \
7280 static inline void gen_##name(DisasContext *ctx) \
7282 if (unlikely(!ctx->spe_enabled)) { \
7283 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7286 int l1 = gen_new_label(); \
7287 int l2 = gen_new_label(); \
7288 int l3 = gen_new_label(); \
7289 int l4 = gen_new_label(); \
7291 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
7292 cpu_gpr[rB(ctx->opcode)], l1); \
7293 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
7295 gen_set_label(l1); \
7296 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
7297 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
7298 gen_set_label(l2); \
7299 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
7300 cpu_gprh[rB(ctx->opcode)], l3); \
7301 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7302 ~(CRF_CH | CRF_CH_AND_CL)); \
7304 gen_set_label(l3); \
7305 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7306 CRF_CH | CRF_CH_OR_CL); \
7307 gen_set_label(l4); \
7310 GEN_SPEOP_COMP(evcmpgtu
, TCG_COND_GTU
);
7311 GEN_SPEOP_COMP(evcmpgts
, TCG_COND_GT
);
7312 GEN_SPEOP_COMP(evcmpltu
, TCG_COND_LTU
);
7313 GEN_SPEOP_COMP(evcmplts
, TCG_COND_LT
);
7314 GEN_SPEOP_COMP(evcmpeq
, TCG_COND_EQ
);
7317 static inline void gen_brinc(DisasContext
*ctx
)
7319 /* Note: brinc is usable even if SPE is disabled */
7320 gen_helper_brinc(cpu_gpr
[rD(ctx
->opcode
)],
7321 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7323 static inline void gen_evmergelo(DisasContext
*ctx
)
7325 if (unlikely(!ctx
->spe_enabled
)) {
7326 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7329 #if defined(TARGET_PPC64)
7330 TCGv t0
= tcg_temp_new();
7331 TCGv t1
= tcg_temp_new();
7332 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
7333 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7334 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7338 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7339 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7342 static inline void gen_evmergehilo(DisasContext
*ctx
)
7344 if (unlikely(!ctx
->spe_enabled
)) {
7345 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7348 #if defined(TARGET_PPC64)
7349 TCGv t0
= tcg_temp_new();
7350 TCGv t1
= tcg_temp_new();
7351 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
7352 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
7353 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7357 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7358 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7361 static inline void gen_evmergelohi(DisasContext
*ctx
)
7363 if (unlikely(!ctx
->spe_enabled
)) {
7364 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7367 #if defined(TARGET_PPC64)
7368 TCGv t0
= tcg_temp_new();
7369 TCGv t1
= tcg_temp_new();
7370 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
7371 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7372 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7376 if (rD(ctx
->opcode
) == rA(ctx
->opcode
)) {
7377 TCGv_i32 tmp
= tcg_temp_new_i32();
7378 tcg_gen_mov_i32(tmp
, cpu_gpr
[rA(ctx
->opcode
)]);
7379 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7380 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], tmp
);
7381 tcg_temp_free_i32(tmp
);
7383 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7384 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7388 static inline void gen_evsplati(DisasContext
*ctx
)
7390 uint64_t imm
= ((int32_t)(rA(ctx
->opcode
) << 27)) >> 27;
7392 #if defined(TARGET_PPC64)
7393 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7395 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7396 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7399 static inline void gen_evsplatfi(DisasContext
*ctx
)
7401 uint64_t imm
= rA(ctx
->opcode
) << 27;
7403 #if defined(TARGET_PPC64)
7404 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7406 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7407 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7411 static inline void gen_evsel(DisasContext
*ctx
)
7413 int l1
= gen_new_label();
7414 int l2
= gen_new_label();
7415 int l3
= gen_new_label();
7416 int l4
= gen_new_label();
7417 TCGv_i32 t0
= tcg_temp_local_new_i32();
7418 #if defined(TARGET_PPC64)
7419 TCGv t1
= tcg_temp_local_new();
7420 TCGv t2
= tcg_temp_local_new();
7422 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 3);
7423 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
7424 #if defined(TARGET_PPC64)
7425 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7427 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7431 #if defined(TARGET_PPC64)
7432 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7434 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7437 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 2);
7438 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l3
);
7439 #if defined(TARGET_PPC64)
7440 tcg_gen_ext32u_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)]);
7442 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7446 #if defined(TARGET_PPC64)
7447 tcg_gen_ext32u_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)]);
7449 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7452 tcg_temp_free_i32(t0
);
7453 #if defined(TARGET_PPC64)
7454 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
, t2
);
7460 static void gen_evsel0(DisasContext
*ctx
)
7465 static void gen_evsel1(DisasContext
*ctx
)
7470 static void gen_evsel2(DisasContext
*ctx
)
7475 static void gen_evsel3(DisasContext
*ctx
)
7482 static inline void gen_evmwumi(DisasContext
*ctx
)
7486 if (unlikely(!ctx
->spe_enabled
)) {
7487 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7491 t0
= tcg_temp_new_i64();
7492 t1
= tcg_temp_new_i64();
7494 /* t0 := rA; t1 := rB */
7495 #if defined(TARGET_PPC64)
7496 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
7497 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
7499 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
7500 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
7503 tcg_gen_mul_i64(t0
, t0
, t1
); /* t0 := rA * rB */
7505 gen_store_gpr64(rD(ctx
->opcode
), t0
); /* rD := t0 */
7507 tcg_temp_free_i64(t0
);
7508 tcg_temp_free_i64(t1
);
7511 static inline void gen_evmwumia(DisasContext
*ctx
)
7515 if (unlikely(!ctx
->spe_enabled
)) {
7516 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7520 gen_evmwumi(ctx
); /* rD := rA * rB */
7522 tmp
= tcg_temp_new_i64();
7525 gen_load_gpr64(tmp
, rD(ctx
->opcode
));
7526 tcg_gen_st_i64(tmp
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7527 tcg_temp_free_i64(tmp
);
7530 static inline void gen_evmwumiaa(DisasContext
*ctx
)
7535 if (unlikely(!ctx
->spe_enabled
)) {
7536 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7540 gen_evmwumi(ctx
); /* rD := rA * rB */
7542 acc
= tcg_temp_new_i64();
7543 tmp
= tcg_temp_new_i64();
7546 gen_load_gpr64(tmp
, rD(ctx
->opcode
));
7549 tcg_gen_ld_i64(acc
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7551 /* acc := tmp + acc */
7552 tcg_gen_add_i64(acc
, acc
, tmp
);
7555 tcg_gen_st_i64(acc
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7558 gen_store_gpr64(rD(ctx
->opcode
), acc
);
7560 tcg_temp_free_i64(acc
);
7561 tcg_temp_free_i64(tmp
);
7564 static inline void gen_evmwsmi(DisasContext
*ctx
)
7568 if (unlikely(!ctx
->spe_enabled
)) {
7569 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
7573 t0
= tcg_temp_new_i64();
7574 t1
= tcg_temp_new_i64();
7576 /* t0 := rA; t1 := rB */
7577 #if defined(TARGET_PPC64)
7578 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
7579 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
7581 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
7582 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
7585 tcg_gen_mul_i64(t0
, t0
, t1
); /* t0 := rA * rB */
7587 gen_store_gpr64(rD(ctx
->opcode
), t0
); /* rD := t0 */
7589 tcg_temp_free_i64(t0
);
7590 tcg_temp_free_i64(t1
);
7593 static inline void gen_evmwsmia(DisasContext
*ctx
)
7597 gen_evmwsmi(ctx
); /* rD := rA * rB */
7599 tmp
= tcg_temp_new_i64();
7602 gen_load_gpr64(tmp
, rD(ctx
->opcode
));
7603 tcg_gen_st_i64(tmp
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7605 tcg_temp_free_i64(tmp
);
7608 static inline void gen_evmwsmiaa(DisasContext
*ctx
)
7610 TCGv_i64 acc
= tcg_temp_new_i64();
7611 TCGv_i64 tmp
= tcg_temp_new_i64();
7613 gen_evmwsmi(ctx
); /* rD := rA * rB */
7615 acc
= tcg_temp_new_i64();
7616 tmp
= tcg_temp_new_i64();
7619 gen_load_gpr64(tmp
, rD(ctx
->opcode
));
7622 tcg_gen_ld_i64(acc
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7624 /* acc := tmp + acc */
7625 tcg_gen_add_i64(acc
, acc
, tmp
);
7628 tcg_gen_st_i64(acc
, cpu_env
, offsetof(CPUPPCState
, spe_acc
));
7631 gen_store_gpr64(rD(ctx
->opcode
), acc
);
7633 tcg_temp_free_i64(acc
);
7634 tcg_temp_free_i64(tmp
);
7637 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
); ////
7638 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
);
7639 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
); ////
7640 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
);
7641 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
); ////
7642 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
); ////
7643 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
); ////
7644 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE
); //
7645 GEN_SPE(evmra
, speundef
, 0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE
);
7646 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE
); ////
7647 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
); ////
7648 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE
); ////
7649 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE
); ////
7650 GEN_SPE(evmwumi
, evmwsmi
, 0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE
);
7651 GEN_SPE(evmwumia
, evmwsmia
, 0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE
);
7652 GEN_SPE(evmwumiaa
, evmwsmiaa
, 0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE
);
7653 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE
); ////
7654 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
); ////
7655 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE
); ////
7656 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE
);
7657 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
); ////
7658 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
);
7659 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE
); //
7660 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE
);
7661 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE
); ////
7662 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE
); ////
7663 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE
); ////
7664 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE
); ////
7665 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE
); ////
7667 /* SPE load and stores */
7668 static inline void gen_addr_spe_imm_index(DisasContext
*ctx
, TCGv EA
, int sh
)
7670 target_ulong uimm
= rB(ctx
->opcode
);
7672 if (rA(ctx
->opcode
) == 0) {
7673 tcg_gen_movi_tl(EA
, uimm
<< sh
);
7675 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], uimm
<< sh
);
7676 #if defined(TARGET_PPC64)
7677 if (!ctx
->sf_mode
) {
7678 tcg_gen_ext32u_tl(EA
, EA
);
7684 static inline void gen_op_evldd(DisasContext
*ctx
, TCGv addr
)
7686 #if defined(TARGET_PPC64)
7687 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7689 TCGv_i64 t0
= tcg_temp_new_i64();
7690 gen_qemu_ld64(ctx
, t0
, addr
);
7691 tcg_gen_trunc_i64_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7692 tcg_gen_shri_i64(t0
, t0
, 32);
7693 tcg_gen_trunc_i64_i32(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7694 tcg_temp_free_i64(t0
);
7698 static inline void gen_op_evldw(DisasContext
*ctx
, TCGv addr
)
7700 #if defined(TARGET_PPC64)
7701 TCGv t0
= tcg_temp_new();
7702 gen_qemu_ld32u(ctx
, t0
, addr
);
7703 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7704 gen_addr_add(ctx
, addr
, addr
, 4);
7705 gen_qemu_ld32u(ctx
, t0
, addr
);
7706 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7709 gen_qemu_ld32u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7710 gen_addr_add(ctx
, addr
, addr
, 4);
7711 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7715 static inline void gen_op_evldh(DisasContext
*ctx
, TCGv addr
)
7717 TCGv t0
= tcg_temp_new();
7718 #if defined(TARGET_PPC64)
7719 gen_qemu_ld16u(ctx
, t0
, addr
);
7720 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7721 gen_addr_add(ctx
, addr
, addr
, 2);
7722 gen_qemu_ld16u(ctx
, t0
, addr
);
7723 tcg_gen_shli_tl(t0
, t0
, 32);
7724 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7725 gen_addr_add(ctx
, addr
, addr
, 2);
7726 gen_qemu_ld16u(ctx
, t0
, addr
);
7727 tcg_gen_shli_tl(t0
, t0
, 16);
7728 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7729 gen_addr_add(ctx
, addr
, addr
, 2);
7730 gen_qemu_ld16u(ctx
, t0
, addr
);
7731 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7733 gen_qemu_ld16u(ctx
, t0
, addr
);
7734 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7735 gen_addr_add(ctx
, addr
, addr
, 2);
7736 gen_qemu_ld16u(ctx
, t0
, addr
);
7737 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7738 gen_addr_add(ctx
, addr
, addr
, 2);
7739 gen_qemu_ld16u(ctx
, t0
, addr
);
7740 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7741 gen_addr_add(ctx
, addr
, addr
, 2);
7742 gen_qemu_ld16u(ctx
, t0
, addr
);
7743 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7748 static inline void gen_op_evlhhesplat(DisasContext
*ctx
, TCGv addr
)
7750 TCGv t0
= tcg_temp_new();
7751 gen_qemu_ld16u(ctx
, t0
, addr
);
7752 #if defined(TARGET_PPC64)
7753 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7754 tcg_gen_shli_tl(t0
, t0
, 16);
7755 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7757 tcg_gen_shli_tl(t0
, t0
, 16);
7758 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7759 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7764 static inline void gen_op_evlhhousplat(DisasContext
*ctx
, TCGv addr
)
7766 TCGv t0
= tcg_temp_new();
7767 gen_qemu_ld16u(ctx
, t0
, addr
);
7768 #if defined(TARGET_PPC64)
7769 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7770 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7772 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7773 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7778 static inline void gen_op_evlhhossplat(DisasContext
*ctx
, TCGv addr
)
7780 TCGv t0
= tcg_temp_new();
7781 gen_qemu_ld16s(ctx
, t0
, addr
);
7782 #if defined(TARGET_PPC64)
7783 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7784 tcg_gen_ext32u_tl(t0
, t0
);
7785 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7787 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7788 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7793 static inline void gen_op_evlwhe(DisasContext
*ctx
, TCGv addr
)
7795 TCGv t0
= tcg_temp_new();
7796 #if defined(TARGET_PPC64)
7797 gen_qemu_ld16u(ctx
, t0
, addr
);
7798 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7799 gen_addr_add(ctx
, addr
, addr
, 2);
7800 gen_qemu_ld16u(ctx
, t0
, addr
);
7801 tcg_gen_shli_tl(t0
, t0
, 16);
7802 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7804 gen_qemu_ld16u(ctx
, t0
, addr
);
7805 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7806 gen_addr_add(ctx
, addr
, addr
, 2);
7807 gen_qemu_ld16u(ctx
, t0
, addr
);
7808 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7813 static inline void gen_op_evlwhou(DisasContext
*ctx
, TCGv addr
)
7815 #if defined(TARGET_PPC64)
7816 TCGv t0
= tcg_temp_new();
7817 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7818 gen_addr_add(ctx
, addr
, addr
, 2);
7819 gen_qemu_ld16u(ctx
, t0
, addr
);
7820 tcg_gen_shli_tl(t0
, t0
, 32);
7821 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7824 gen_qemu_ld16u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7825 gen_addr_add(ctx
, addr
, addr
, 2);
7826 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7830 static inline void gen_op_evlwhos(DisasContext
*ctx
, TCGv addr
)
7832 #if defined(TARGET_PPC64)
7833 TCGv t0
= tcg_temp_new();
7834 gen_qemu_ld16s(ctx
, t0
, addr
);
7835 tcg_gen_ext32u_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7836 gen_addr_add(ctx
, addr
, addr
, 2);
7837 gen_qemu_ld16s(ctx
, t0
, addr
);
7838 tcg_gen_shli_tl(t0
, t0
, 32);
7839 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7842 gen_qemu_ld16s(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7843 gen_addr_add(ctx
, addr
, addr
, 2);
7844 gen_qemu_ld16s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7848 static inline void gen_op_evlwwsplat(DisasContext
*ctx
, TCGv addr
)
7850 TCGv t0
= tcg_temp_new();
7851 gen_qemu_ld32u(ctx
, t0
, addr
);
7852 #if defined(TARGET_PPC64)
7853 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7854 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7856 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7857 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7862 static inline void gen_op_evlwhsplat(DisasContext
*ctx
, TCGv addr
)
7864 TCGv t0
= tcg_temp_new();
7865 #if defined(TARGET_PPC64)
7866 gen_qemu_ld16u(ctx
, t0
, addr
);
7867 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7868 tcg_gen_shli_tl(t0
, t0
, 32);
7869 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7870 gen_addr_add(ctx
, addr
, addr
, 2);
7871 gen_qemu_ld16u(ctx
, t0
, addr
);
7872 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7873 tcg_gen_shli_tl(t0
, t0
, 16);
7874 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7876 gen_qemu_ld16u(ctx
, t0
, addr
);
7877 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7878 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7879 gen_addr_add(ctx
, addr
, addr
, 2);
7880 gen_qemu_ld16u(ctx
, t0
, addr
);
7881 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7882 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7887 static inline void gen_op_evstdd(DisasContext
*ctx
, TCGv addr
)
7889 #if defined(TARGET_PPC64)
7890 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7892 TCGv_i64 t0
= tcg_temp_new_i64();
7893 tcg_gen_concat_i32_i64(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gprh
[rS(ctx
->opcode
)]);
7894 gen_qemu_st64(ctx
, t0
, addr
);
7895 tcg_temp_free_i64(t0
);
7899 static inline void gen_op_evstdw(DisasContext
*ctx
, TCGv addr
)
7901 #if defined(TARGET_PPC64)
7902 TCGv t0
= tcg_temp_new();
7903 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7904 gen_qemu_st32(ctx
, t0
, addr
);
7907 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7909 gen_addr_add(ctx
, addr
, addr
, 4);
7910 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7913 static inline void gen_op_evstdh(DisasContext
*ctx
, TCGv addr
)
7915 TCGv t0
= tcg_temp_new();
7916 #if defined(TARGET_PPC64)
7917 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7919 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7921 gen_qemu_st16(ctx
, t0
, addr
);
7922 gen_addr_add(ctx
, addr
, addr
, 2);
7923 #if defined(TARGET_PPC64)
7924 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7925 gen_qemu_st16(ctx
, t0
, addr
);
7927 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7929 gen_addr_add(ctx
, addr
, addr
, 2);
7930 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7931 gen_qemu_st16(ctx
, t0
, addr
);
7933 gen_addr_add(ctx
, addr
, addr
, 2);
7934 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7937 static inline void gen_op_evstwhe(DisasContext
*ctx
, TCGv addr
)
7939 TCGv t0
= tcg_temp_new();
7940 #if defined(TARGET_PPC64)
7941 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7943 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7945 gen_qemu_st16(ctx
, t0
, addr
);
7946 gen_addr_add(ctx
, addr
, addr
, 2);
7947 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7948 gen_qemu_st16(ctx
, t0
, addr
);
7952 static inline void gen_op_evstwho(DisasContext
*ctx
, TCGv addr
)
7954 #if defined(TARGET_PPC64)
7955 TCGv t0
= tcg_temp_new();
7956 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7957 gen_qemu_st16(ctx
, t0
, addr
);
7960 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7962 gen_addr_add(ctx
, addr
, addr
, 2);
7963 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7966 static inline void gen_op_evstwwe(DisasContext
*ctx
, TCGv addr
)
7968 #if defined(TARGET_PPC64)
7969 TCGv t0
= tcg_temp_new();
7970 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7971 gen_qemu_st32(ctx
, t0
, addr
);
7974 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7978 static inline void gen_op_evstwwo(DisasContext
*ctx
, TCGv addr
)
7980 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7983 #define GEN_SPEOP_LDST(name, opc2, sh) \
7984 static void glue(gen_, name)(DisasContext *ctx) \
7987 if (unlikely(!ctx->spe_enabled)) { \
7988 gen_exception(ctx, POWERPC_EXCP_SPEU); \
7991 gen_set_access_type(ctx, ACCESS_INT); \
7992 t0 = tcg_temp_new(); \
7993 if (Rc(ctx->opcode)) { \
7994 gen_addr_spe_imm_index(ctx, t0, sh); \
7996 gen_addr_reg_index(ctx, t0); \
7998 gen_op_##name(ctx, t0); \
7999 tcg_temp_free(t0); \
8002 GEN_SPEOP_LDST(evldd
, 0x00, 3);
8003 GEN_SPEOP_LDST(evldw
, 0x01, 3);
8004 GEN_SPEOP_LDST(evldh
, 0x02, 3);
8005 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1);
8006 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1);
8007 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1);
8008 GEN_SPEOP_LDST(evlwhe
, 0x08, 2);
8009 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2);
8010 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2);
8011 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2);
8012 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2);
8014 GEN_SPEOP_LDST(evstdd
, 0x10, 3);
8015 GEN_SPEOP_LDST(evstdw
, 0x11, 3);
8016 GEN_SPEOP_LDST(evstdh
, 0x12, 3);
8017 GEN_SPEOP_LDST(evstwhe
, 0x18, 2);
8018 GEN_SPEOP_LDST(evstwho
, 0x1A, 2);
8019 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2);
8020 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2);
8022 /* Multiply and add - TODO */
8024 GEN_SPE(speundef
, evmhessf
, 0x01, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);//
8025 GEN_SPE(speundef
, evmhossf
, 0x03, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8026 GEN_SPE(evmheumi
, evmhesmi
, 0x04, 0x10, 0x00000000, 0x00000000, PPC_SPE
);
8027 GEN_SPE(speundef
, evmhesmf
, 0x05, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8028 GEN_SPE(evmhoumi
, evmhosmi
, 0x06, 0x10, 0x00000000, 0x00000000, PPC_SPE
);
8029 GEN_SPE(speundef
, evmhosmf
, 0x07, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8030 GEN_SPE(speundef
, evmhessfa
, 0x11, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8031 GEN_SPE(speundef
, evmhossfa
, 0x13, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8032 GEN_SPE(evmheumia
, evmhesmia
, 0x14, 0x10, 0x00000000, 0x00000000, PPC_SPE
);
8033 GEN_SPE(speundef
, evmhesmfa
, 0x15, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8034 GEN_SPE(evmhoumia
, evmhosmia
, 0x16, 0x10, 0x00000000, 0x00000000, PPC_SPE
);
8035 GEN_SPE(speundef
, evmhosmfa
, 0x17, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8037 GEN_SPE(speundef
, evmwhssf
, 0x03, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8038 GEN_SPE(evmwlumi
, speundef
, 0x04, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE
);
8039 GEN_SPE(evmwhumi
, evmwhsmi
, 0x06, 0x11, 0x00000000, 0x00000000, PPC_SPE
);
8040 GEN_SPE(speundef
, evmwhsmf
, 0x07, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8041 GEN_SPE(speundef
, evmwssf
, 0x09, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8042 GEN_SPE(speundef
, evmwsmf
, 0x0D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8043 GEN_SPE(speundef
, evmwhssfa
, 0x13, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8044 GEN_SPE(evmwlumia
, speundef
, 0x14, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE
);
8045 GEN_SPE(evmwhumia
, evmwhsmia
, 0x16, 0x11, 0x00000000, 0x00000000, PPC_SPE
);
8046 GEN_SPE(speundef
, evmwhsmfa
, 0x17, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8047 GEN_SPE(speundef
, evmwssfa
, 0x19, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8048 GEN_SPE(speundef
, evmwsmfa
, 0x1D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8050 GEN_SPE(evadduiaaw
, evaddsiaaw
, 0x00, 0x13, 0x0000F800, 0x0000F800, PPC_SPE
);
8051 GEN_SPE(evsubfusiaaw
, evsubfssiaaw
, 0x01, 0x13, 0x0000F800, 0x0000F800, PPC_SPE
);
8052 GEN_SPE(evaddumiaaw
, evaddsmiaaw
, 0x04, 0x13, 0x0000F800, 0x0000F800, PPC_SPE
);
8053 GEN_SPE(evsubfumiaaw
, evsubfsmiaaw
, 0x05, 0x13, 0x0000F800, 0x0000F800, PPC_SPE
);
8054 GEN_SPE(evdivws
, evdivwu
, 0x06, 0x13, 0x00000000, 0x00000000, PPC_SPE
);
8056 GEN_SPE(evmheusiaaw
, evmhessiaaw
, 0x00, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8057 GEN_SPE(speundef
, evmhessfaaw
, 0x01, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8058 GEN_SPE(evmhousiaaw
, evmhossiaaw
, 0x02, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8059 GEN_SPE(speundef
, evmhossfaaw
, 0x03, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8060 GEN_SPE(evmheumiaaw
, evmhesmiaaw
, 0x04, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8061 GEN_SPE(speundef
, evmhesmfaaw
, 0x05, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8062 GEN_SPE(evmhoumiaaw
, evmhosmiaaw
, 0x06, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8063 GEN_SPE(speundef
, evmhosmfaaw
, 0x07, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8064 GEN_SPE(evmhegumiaa
, evmhegsmiaa
, 0x14, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8065 GEN_SPE(speundef
, evmhegsmfaa
, 0x15, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8066 GEN_SPE(evmhogumiaa
, evmhogsmiaa
, 0x16, 0x14, 0x00000000, 0x00000000, PPC_SPE
);
8067 GEN_SPE(speundef
, evmhogsmfaa
, 0x17, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8069 GEN_SPE(evmwlusiaaw
, evmwlssiaaw
, 0x00, 0x15, 0x00000000, 0x00000000, PPC_SPE
);
8070 GEN_SPE(evmwlumiaaw
, evmwlsmiaaw
, 0x04, 0x15, 0x00000000, 0x00000000, PPC_SPE
);
8071 GEN_SPE(speundef
, evmwssfaa
, 0x09, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8072 GEN_SPE(speundef
, evmwsmfaa
, 0x0D, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8074 GEN_SPE(evmheusianw
, evmhessianw
, 0x00, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8075 GEN_SPE(speundef
, evmhessfanw
, 0x01, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8076 GEN_SPE(evmhousianw
, evmhossianw
, 0x02, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8077 GEN_SPE(speundef
, evmhossfanw
, 0x03, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8078 GEN_SPE(evmheumianw
, evmhesmianw
, 0x04, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8079 GEN_SPE(speundef
, evmhesmfanw
, 0x05, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8080 GEN_SPE(evmhoumianw
, evmhosmianw
, 0x06, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8081 GEN_SPE(speundef
, evmhosmfanw
, 0x07, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8082 GEN_SPE(evmhegumian
, evmhegsmian
, 0x14, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8083 GEN_SPE(speundef
, evmhegsmfan
, 0x15, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8084 GEN_SPE(evmhigumian
, evmhigsmian
, 0x16, 0x16, 0x00000000, 0x00000000, PPC_SPE
);
8085 GEN_SPE(speundef
, evmhogsmfan
, 0x17, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8087 GEN_SPE(evmwlusianw
, evmwlssianw
, 0x00, 0x17, 0x00000000, 0x00000000, PPC_SPE
);
8088 GEN_SPE(evmwlumianw
, evmwlsmianw
, 0x04, 0x17, 0x00000000, 0x00000000, PPC_SPE
);
8089 GEN_SPE(speundef
, evmwssfan
, 0x09, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8090 GEN_SPE(evmwumian
, evmwsmian
, 0x0C, 0x17, 0x00000000, 0x00000000, PPC_SPE
);
8091 GEN_SPE(speundef
, evmwsmfan
, 0x0D, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE
);
8094 /*** SPE floating-point extension ***/
8095 #if defined(TARGET_PPC64)
8096 #define GEN_SPEFPUOP_CONV_32_32(name) \
8097 static inline void gen_##name(DisasContext *ctx) \
8101 t0 = tcg_temp_new_i32(); \
8102 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
8103 gen_helper_##name(t0, cpu_env, t0); \
8104 t1 = tcg_temp_new(); \
8105 tcg_gen_extu_i32_tl(t1, t0); \
8106 tcg_temp_free_i32(t0); \
8107 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8108 0xFFFFFFFF00000000ULL); \
8109 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
8110 tcg_temp_free(t1); \
8112 #define GEN_SPEFPUOP_CONV_32_64(name) \
8113 static inline void gen_##name(DisasContext *ctx) \
8117 t0 = tcg_temp_new_i32(); \
8118 gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]); \
8119 t1 = tcg_temp_new(); \
8120 tcg_gen_extu_i32_tl(t1, t0); \
8121 tcg_temp_free_i32(t0); \
8122 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8123 0xFFFFFFFF00000000ULL); \
8124 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
8125 tcg_temp_free(t1); \
8127 #define GEN_SPEFPUOP_CONV_64_32(name) \
8128 static inline void gen_##name(DisasContext *ctx) \
8130 TCGv_i32 t0 = tcg_temp_new_i32(); \
8131 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
8132 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0); \
8133 tcg_temp_free_i32(t0); \
8135 #define GEN_SPEFPUOP_CONV_64_64(name) \
8136 static inline void gen_##name(DisasContext *ctx) \
8138 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8139 cpu_gpr[rB(ctx->opcode)]); \
8141 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
8142 static inline void gen_##name(DisasContext *ctx) \
8146 if (unlikely(!ctx->spe_enabled)) { \
8147 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8150 t0 = tcg_temp_new_i32(); \
8151 t1 = tcg_temp_new_i32(); \
8152 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
8153 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
8154 gen_helper_##name(t0, cpu_env, t0, t1); \
8155 tcg_temp_free_i32(t1); \
8156 t2 = tcg_temp_new(); \
8157 tcg_gen_extu_i32_tl(t2, t0); \
8158 tcg_temp_free_i32(t0); \
8159 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8160 0xFFFFFFFF00000000ULL); \
8161 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
8162 tcg_temp_free(t2); \
8164 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
8165 static inline void gen_##name(DisasContext *ctx) \
8167 if (unlikely(!ctx->spe_enabled)) { \
8168 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8171 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8172 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8174 #define GEN_SPEFPUOP_COMP_32(name) \
8175 static inline void gen_##name(DisasContext *ctx) \
8178 if (unlikely(!ctx->spe_enabled)) { \
8179 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8182 t0 = tcg_temp_new_i32(); \
8183 t1 = tcg_temp_new_i32(); \
8184 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
8185 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
8186 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1); \
8187 tcg_temp_free_i32(t0); \
8188 tcg_temp_free_i32(t1); \
8190 #define GEN_SPEFPUOP_COMP_64(name) \
8191 static inline void gen_##name(DisasContext *ctx) \
8193 if (unlikely(!ctx->spe_enabled)) { \
8194 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8197 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, \
8198 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8201 #define GEN_SPEFPUOP_CONV_32_32(name) \
8202 static inline void gen_##name(DisasContext *ctx) \
8204 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8205 cpu_gpr[rB(ctx->opcode)]); \
8207 #define GEN_SPEFPUOP_CONV_32_64(name) \
8208 static inline void gen_##name(DisasContext *ctx) \
8210 TCGv_i64 t0 = tcg_temp_new_i64(); \
8211 gen_load_gpr64(t0, rB(ctx->opcode)); \
8212 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0); \
8213 tcg_temp_free_i64(t0); \
8215 #define GEN_SPEFPUOP_CONV_64_32(name) \
8216 static inline void gen_##name(DisasContext *ctx) \
8218 TCGv_i64 t0 = tcg_temp_new_i64(); \
8219 gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]); \
8220 gen_store_gpr64(rD(ctx->opcode), t0); \
8221 tcg_temp_free_i64(t0); \
8223 #define GEN_SPEFPUOP_CONV_64_64(name) \
8224 static inline void gen_##name(DisasContext *ctx) \
8226 TCGv_i64 t0 = tcg_temp_new_i64(); \
8227 gen_load_gpr64(t0, rB(ctx->opcode)); \
8228 gen_helper_##name(t0, cpu_env, t0); \
8229 gen_store_gpr64(rD(ctx->opcode), t0); \
8230 tcg_temp_free_i64(t0); \
8232 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
8233 static inline void gen_##name(DisasContext *ctx) \
8235 if (unlikely(!ctx->spe_enabled)) { \
8236 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8239 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8240 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8242 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
8243 static inline void gen_##name(DisasContext *ctx) \
8246 if (unlikely(!ctx->spe_enabled)) { \
8247 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8250 t0 = tcg_temp_new_i64(); \
8251 t1 = tcg_temp_new_i64(); \
8252 gen_load_gpr64(t0, rA(ctx->opcode)); \
8253 gen_load_gpr64(t1, rB(ctx->opcode)); \
8254 gen_helper_##name(t0, cpu_env, t0, t1); \
8255 gen_store_gpr64(rD(ctx->opcode), t0); \
8256 tcg_temp_free_i64(t0); \
8257 tcg_temp_free_i64(t1); \
8259 #define GEN_SPEFPUOP_COMP_32(name) \
8260 static inline void gen_##name(DisasContext *ctx) \
8262 if (unlikely(!ctx->spe_enabled)) { \
8263 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8266 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, \
8267 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8269 #define GEN_SPEFPUOP_COMP_64(name) \
8270 static inline void gen_##name(DisasContext *ctx) \
8273 if (unlikely(!ctx->spe_enabled)) { \
8274 gen_exception(ctx, POWERPC_EXCP_SPEU); \
8277 t0 = tcg_temp_new_i64(); \
8278 t1 = tcg_temp_new_i64(); \
8279 gen_load_gpr64(t0, rA(ctx->opcode)); \
8280 gen_load_gpr64(t1, rB(ctx->opcode)); \
8281 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1); \
8282 tcg_temp_free_i64(t0); \
8283 tcg_temp_free_i64(t1); \
8287 /* Single precision floating-point vectors operations */
8289 GEN_SPEFPUOP_ARITH2_64_64(evfsadd
);
8290 GEN_SPEFPUOP_ARITH2_64_64(evfssub
);
8291 GEN_SPEFPUOP_ARITH2_64_64(evfsmul
);
8292 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv
);
8293 static inline void gen_evfsabs(DisasContext
*ctx
)
8295 if (unlikely(!ctx
->spe_enabled
)) {
8296 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8299 #if defined(TARGET_PPC64)
8300 tcg_gen_andi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000080000000LL
);
8302 tcg_gen_andi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x80000000);
8303 tcg_gen_andi_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
8306 static inline void gen_evfsnabs(DisasContext
*ctx
)
8308 if (unlikely(!ctx
->spe_enabled
)) {
8309 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8312 #if defined(TARGET_PPC64)
8313 tcg_gen_ori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
8315 tcg_gen_ori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
8316 tcg_gen_ori_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
8319 static inline void gen_evfsneg(DisasContext
*ctx
)
8321 if (unlikely(!ctx
->spe_enabled
)) {
8322 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8325 #if defined(TARGET_PPC64)
8326 tcg_gen_xori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
8328 tcg_gen_xori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
8329 tcg_gen_xori_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
8334 GEN_SPEFPUOP_CONV_64_64(evfscfui
);
8335 GEN_SPEFPUOP_CONV_64_64(evfscfsi
);
8336 GEN_SPEFPUOP_CONV_64_64(evfscfuf
);
8337 GEN_SPEFPUOP_CONV_64_64(evfscfsf
);
8338 GEN_SPEFPUOP_CONV_64_64(evfsctui
);
8339 GEN_SPEFPUOP_CONV_64_64(evfsctsi
);
8340 GEN_SPEFPUOP_CONV_64_64(evfsctuf
);
8341 GEN_SPEFPUOP_CONV_64_64(evfsctsf
);
8342 GEN_SPEFPUOP_CONV_64_64(evfsctuiz
);
8343 GEN_SPEFPUOP_CONV_64_64(evfsctsiz
);
8346 GEN_SPEFPUOP_COMP_64(evfscmpgt
);
8347 GEN_SPEFPUOP_COMP_64(evfscmplt
);
8348 GEN_SPEFPUOP_COMP_64(evfscmpeq
);
8349 GEN_SPEFPUOP_COMP_64(evfststgt
);
8350 GEN_SPEFPUOP_COMP_64(evfststlt
);
8351 GEN_SPEFPUOP_COMP_64(evfststeq
);
8353 /* Opcodes definitions */
8354 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE
); //
8355 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE
); //
8356 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8357 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE
); //
8358 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE
); //
8359 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8360 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8361 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8362 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8363 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8364 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8365 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8366 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE
); //
8367 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8369 /* Single precision floating-point operations */
8371 GEN_SPEFPUOP_ARITH2_32_32(efsadd
);
8372 GEN_SPEFPUOP_ARITH2_32_32(efssub
);
8373 GEN_SPEFPUOP_ARITH2_32_32(efsmul
);
8374 GEN_SPEFPUOP_ARITH2_32_32(efsdiv
);
8375 static inline void gen_efsabs(DisasContext
*ctx
)
8377 if (unlikely(!ctx
->spe_enabled
)) {
8378 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8381 tcg_gen_andi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], (target_long
)~0x80000000LL
);
8383 static inline void gen_efsnabs(DisasContext
*ctx
)
8385 if (unlikely(!ctx
->spe_enabled
)) {
8386 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8389 tcg_gen_ori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
8391 static inline void gen_efsneg(DisasContext
*ctx
)
8393 if (unlikely(!ctx
->spe_enabled
)) {
8394 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8397 tcg_gen_xori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
8401 GEN_SPEFPUOP_CONV_32_32(efscfui
);
8402 GEN_SPEFPUOP_CONV_32_32(efscfsi
);
8403 GEN_SPEFPUOP_CONV_32_32(efscfuf
);
8404 GEN_SPEFPUOP_CONV_32_32(efscfsf
);
8405 GEN_SPEFPUOP_CONV_32_32(efsctui
);
8406 GEN_SPEFPUOP_CONV_32_32(efsctsi
);
8407 GEN_SPEFPUOP_CONV_32_32(efsctuf
);
8408 GEN_SPEFPUOP_CONV_32_32(efsctsf
);
8409 GEN_SPEFPUOP_CONV_32_32(efsctuiz
);
8410 GEN_SPEFPUOP_CONV_32_32(efsctsiz
);
8411 GEN_SPEFPUOP_CONV_32_64(efscfd
);
8414 GEN_SPEFPUOP_COMP_32(efscmpgt
);
8415 GEN_SPEFPUOP_COMP_32(efscmplt
);
8416 GEN_SPEFPUOP_COMP_32(efscmpeq
);
8417 GEN_SPEFPUOP_COMP_32(efststgt
);
8418 GEN_SPEFPUOP_COMP_32(efststlt
);
8419 GEN_SPEFPUOP_COMP_32(efststeq
);
8421 /* Opcodes definitions */
8422 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE
); //
8423 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE
); //
8424 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8425 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE
); //
8426 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE
); //
8427 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE
); //
8428 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8429 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8430 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8431 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
); //
8432 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8433 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8434 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE
); //
8435 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
); //
8437 /* Double precision floating-point operations */
8439 GEN_SPEFPUOP_ARITH2_64_64(efdadd
);
8440 GEN_SPEFPUOP_ARITH2_64_64(efdsub
);
8441 GEN_SPEFPUOP_ARITH2_64_64(efdmul
);
8442 GEN_SPEFPUOP_ARITH2_64_64(efddiv
);
8443 static inline void gen_efdabs(DisasContext
*ctx
)
8445 if (unlikely(!ctx
->spe_enabled
)) {
8446 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8449 #if defined(TARGET_PPC64)
8450 tcg_gen_andi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000000000000LL
);
8452 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
8453 tcg_gen_andi_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
8456 static inline void gen_efdnabs(DisasContext
*ctx
)
8458 if (unlikely(!ctx
->spe_enabled
)) {
8459 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8462 #if defined(TARGET_PPC64)
8463 tcg_gen_ori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
8465 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
8466 tcg_gen_ori_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
8469 static inline void gen_efdneg(DisasContext
*ctx
)
8471 if (unlikely(!ctx
->spe_enabled
)) {
8472 gen_exception(ctx
, POWERPC_EXCP_SPEU
);
8475 #if defined(TARGET_PPC64)
8476 tcg_gen_xori_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
8478 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
8479 tcg_gen_xori_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
8484 GEN_SPEFPUOP_CONV_64_32(efdcfui
);
8485 GEN_SPEFPUOP_CONV_64_32(efdcfsi
);
8486 GEN_SPEFPUOP_CONV_64_32(efdcfuf
);
8487 GEN_SPEFPUOP_CONV_64_32(efdcfsf
);
8488 GEN_SPEFPUOP_CONV_32_64(efdctui
);
8489 GEN_SPEFPUOP_CONV_32_64(efdctsi
);
8490 GEN_SPEFPUOP_CONV_32_64(efdctuf
);
8491 GEN_SPEFPUOP_CONV_32_64(efdctsf
);
8492 GEN_SPEFPUOP_CONV_32_64(efdctuiz
);
8493 GEN_SPEFPUOP_CONV_32_64(efdctsiz
);
8494 GEN_SPEFPUOP_CONV_64_32(efdcfs
);
8495 GEN_SPEFPUOP_CONV_64_64(efdcfuid
);
8496 GEN_SPEFPUOP_CONV_64_64(efdcfsid
);
8497 GEN_SPEFPUOP_CONV_64_64(efdctuidz
);
8498 GEN_SPEFPUOP_CONV_64_64(efdctsidz
);
8501 GEN_SPEFPUOP_COMP_64(efdcmpgt
);
8502 GEN_SPEFPUOP_COMP_64(efdcmplt
);
8503 GEN_SPEFPUOP_COMP_64(efdcmpeq
);
8504 GEN_SPEFPUOP_COMP_64(efdtstgt
);
8505 GEN_SPEFPUOP_COMP_64(efdtstlt
);
8506 GEN_SPEFPUOP_COMP_64(efdtsteq
);
8508 /* Opcodes definitions */
8509 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE
); //
8510 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8511 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE
); //
8512 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE
); //
8513 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE
); //
8514 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8515 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE
); //
8516 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE
); //
8517 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8518 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8519 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8520 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
); //
8521 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE
); //
8522 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE
); //
8523 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE
); //
8524 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE
); //
8526 static opcode_t opcodes
[] = {
8527 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
),
8528 GEN_HANDLER(cmp
, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER
),
8529 GEN_HANDLER(cmpi
, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
8530 GEN_HANDLER(cmpl
, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER
),
8531 GEN_HANDLER(cmpli
, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
8532 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
),
8533 GEN_HANDLER(addi
, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8534 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8535 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8536 GEN_HANDLER(addis
, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8537 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
),
8538 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
),
8539 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
),
8540 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
),
8541 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8542 #if defined(TARGET_PPC64)
8543 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
),
8545 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
),
8546 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
),
8547 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8548 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8549 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8550 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
),
8551 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
),
8552 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
),
8553 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8554 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8555 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8556 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8557 GEN_HANDLER(popcntb
, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB
),
8558 GEN_HANDLER(popcntw
, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD
),
8559 #if defined(TARGET_PPC64)
8560 GEN_HANDLER(popcntd
, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD
),
8561 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
),
8563 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8564 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8565 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8566 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
),
8567 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
),
8568 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
),
8569 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
),
8570 #if defined(TARGET_PPC64)
8571 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
),
8572 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
),
8573 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
),
8574 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
),
8575 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
),
8577 GEN_HANDLER(frsqrtes
, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES
),
8578 GEN_HANDLER(fsqrt
, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
),
8579 GEN_HANDLER(fsqrts
, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
),
8580 GEN_HANDLER(fcmpo
, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT
),
8581 GEN_HANDLER(fcmpu
, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT
),
8582 GEN_HANDLER(fmr
, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT
),
8583 GEN_HANDLER(mcrfs
, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT
),
8584 GEN_HANDLER(mffs
, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT
),
8585 GEN_HANDLER(mtfsb0
, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT
),
8586 GEN_HANDLER(mtfsb1
, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT
),
8587 GEN_HANDLER(mtfsf
, 0x3F, 0x07, 0x16, 0x00010000, PPC_FLOAT
),
8588 GEN_HANDLER(mtfsfi
, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT
),
8589 #if defined(TARGET_PPC64)
8590 GEN_HANDLER(ld
, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B
),
8591 GEN_HANDLER(lq
, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX
),
8592 GEN_HANDLER(std
, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B
),
8594 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8595 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
8596 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
),
8597 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
),
8598 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
),
8599 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
),
8600 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO
),
8601 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
),
8602 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES
),
8603 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
),
8604 #if defined(TARGET_PPC64)
8605 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B
),
8606 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
),
8608 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
),
8609 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT
),
8610 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8611 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8612 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
),
8613 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
),
8614 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
),
8615 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
),
8616 #if defined(TARGET_PPC64)
8617 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
),
8618 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
),
8620 GEN_HANDLER(sc
, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW
),
8621 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
),
8622 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8623 #if defined(TARGET_PPC64)
8624 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
),
8625 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
),
8627 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
),
8628 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
),
8629 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
),
8630 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
),
8631 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
),
8632 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
),
8633 #if defined(TARGET_PPC64)
8634 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
),
8636 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC
),
8637 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC
),
8638 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
),
8639 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
),
8640 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
),
8641 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE
),
8642 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE
),
8643 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ
),
8644 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
),
8645 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC
),
8646 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
),
8647 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
),
8648 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
),
8649 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
),
8650 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
),
8651 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
),
8652 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
),
8653 #if defined(TARGET_PPC64)
8654 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
),
8655 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
8657 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
),
8658 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
8660 GEN_HANDLER2(slbmte
, "slbmte", 0x1F, 0x12, 0x0C, 0x001F0001, PPC_SEGMENT_64B
),
8661 GEN_HANDLER2(slbmfee
, "slbmfee", 0x1F, 0x13, 0x1C, 0x001F0001, PPC_SEGMENT_64B
),
8662 GEN_HANDLER2(slbmfev
, "slbmfev", 0x1F, 0x13, 0x1A, 0x001F0001, PPC_SEGMENT_64B
),
8664 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
),
8665 GEN_HANDLER(tlbiel
, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE
),
8666 GEN_HANDLER(tlbie
, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE
),
8667 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
),
8668 #if defined(TARGET_PPC64)
8669 GEN_HANDLER(slbia
, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI
),
8670 GEN_HANDLER(slbie
, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI
),
8672 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
),
8673 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
),
8674 GEN_HANDLER(abs
, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR
),
8675 GEN_HANDLER(abso
, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR
),
8676 GEN_HANDLER(clcs
, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR
),
8677 GEN_HANDLER(div
, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR
),
8678 GEN_HANDLER(divo
, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR
),
8679 GEN_HANDLER(divs
, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR
),
8680 GEN_HANDLER(divso
, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR
),
8681 GEN_HANDLER(doz
, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR
),
8682 GEN_HANDLER(dozo
, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR
),
8683 GEN_HANDLER(dozi
, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
8684 GEN_HANDLER(lscbx
, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR
),
8685 GEN_HANDLER(maskg
, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR
),
8686 GEN_HANDLER(maskir
, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR
),
8687 GEN_HANDLER(mul
, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR
),
8688 GEN_HANDLER(mulo
, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR
),
8689 GEN_HANDLER(nabs
, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR
),
8690 GEN_HANDLER(nabso
, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR
),
8691 GEN_HANDLER(rlmi
, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
8692 GEN_HANDLER(rrib
, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR
),
8693 GEN_HANDLER(sle
, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR
),
8694 GEN_HANDLER(sleq
, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR
),
8695 GEN_HANDLER(sliq
, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR
),
8696 GEN_HANDLER(slliq
, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR
),
8697 GEN_HANDLER(sllq
, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR
),
8698 GEN_HANDLER(slq
, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR
),
8699 GEN_HANDLER(sraiq
, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR
),
8700 GEN_HANDLER(sraq
, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR
),
8701 GEN_HANDLER(sre
, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR
),
8702 GEN_HANDLER(srea
, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR
),
8703 GEN_HANDLER(sreq
, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR
),
8704 GEN_HANDLER(sriq
, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR
),
8705 GEN_HANDLER(srliq
, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR
),
8706 GEN_HANDLER(srlq
, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR
),
8707 GEN_HANDLER(srq
, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR
),
8708 GEN_HANDLER(dsa
, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC
),
8709 GEN_HANDLER(esa
, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC
),
8710 GEN_HANDLER(mfrom
, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC
),
8711 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
),
8712 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
),
8713 GEN_HANDLER2(tlbld_74xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB
),
8714 GEN_HANDLER2(tlbli_74xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB
),
8715 GEN_HANDLER(clf
, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER
),
8716 GEN_HANDLER(cli
, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER
),
8717 GEN_HANDLER(dclst
, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER
),
8718 GEN_HANDLER(mfsri
, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER
),
8719 GEN_HANDLER(rac
, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER
),
8720 GEN_HANDLER(rfsvc
, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER
),
8721 GEN_HANDLER(lfq
, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8722 GEN_HANDLER(lfqu
, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8723 GEN_HANDLER(lfqux
, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2
),
8724 GEN_HANDLER(lfqx
, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2
),
8725 GEN_HANDLER(stfq
, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8726 GEN_HANDLER(stfqu
, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8727 GEN_HANDLER(stfqux
, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2
),
8728 GEN_HANDLER(stfqx
, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2
),
8729 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
),
8730 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
),
8731 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
),
8732 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
),
8733 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
),
8734 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
),
8735 GEN_HANDLER(mfdcrux
, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX
),
8736 GEN_HANDLER(mtdcrux
, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX
),
8737 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
),
8738 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
),
8739 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
),
8740 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
),
8741 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
),
8742 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
),
8743 GEN_HANDLER_E(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
, PPC2_BOOKE206
),
8744 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
),
8745 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
),
8746 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
),
8747 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
),
8748 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
),
8749 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
),
8750 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
),
8751 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
),
8752 GEN_HANDLER2_E(tlbre_booke206
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
8753 PPC_NONE
, PPC2_BOOKE206
),
8754 GEN_HANDLER2_E(tlbsx_booke206
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
8755 PPC_NONE
, PPC2_BOOKE206
),
8756 GEN_HANDLER2_E(tlbwe_booke206
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
8757 PPC_NONE
, PPC2_BOOKE206
),
8758 GEN_HANDLER2_E(tlbivax_booke206
, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
8759 PPC_NONE
, PPC2_BOOKE206
),
8760 GEN_HANDLER2_E(tlbilx_booke206
, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
8761 PPC_NONE
, PPC2_BOOKE206
),
8762 GEN_HANDLER2_E(msgsnd
, "msgsnd", 0x1F, 0x0E, 0x06, 0x03ff0001,
8763 PPC_NONE
, PPC2_PRCNTL
),
8764 GEN_HANDLER2_E(msgclr
, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001,
8765 PPC_NONE
, PPC2_PRCNTL
),
8766 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
),
8767 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE
),
8768 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
),
8769 GEN_HANDLER_E(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801,
8770 PPC_BOOKE
, PPC2_BOOKE206
),
8771 GEN_HANDLER(msync_4xx
, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE
),
8772 GEN_HANDLER2_E(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
8773 PPC_BOOKE
, PPC2_BOOKE206
),
8774 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
),
8775 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
),
8776 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
),
8777 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
),
8778 GEN_HANDLER(vsldoi
, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC
),
8779 GEN_HANDLER(vmladduhm
, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC
),
8780 GEN_HANDLER2(evsel0
, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE
),
8781 GEN_HANDLER2(evsel1
, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE
),
8782 GEN_HANDLER2(evsel2
, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE
),
8783 GEN_HANDLER2(evsel3
, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE
),
8785 #undef GEN_INT_ARITH_ADD
8786 #undef GEN_INT_ARITH_ADD_CONST
8787 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
8788 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
8789 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
8790 add_ca, compute_ca, compute_ov) \
8791 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
8792 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
8793 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
8794 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
8795 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
8796 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
8797 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
8798 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
8799 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
8800 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
8801 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
8803 #undef GEN_INT_ARITH_DIVW
8804 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
8805 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
8806 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0),
8807 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1),
8808 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0),
8809 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1),
8811 #if defined(TARGET_PPC64)
8812 #undef GEN_INT_ARITH_DIVD
8813 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
8814 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8815 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0),
8816 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1),
8817 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0),
8818 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1),
8820 #undef GEN_INT_ARITH_MUL_HELPER
8821 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
8822 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8823 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00),
8824 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02),
8825 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17),
8828 #undef GEN_INT_ARITH_SUBF
8829 #undef GEN_INT_ARITH_SUBF_CONST
8830 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
8831 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
8832 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
8833 add_ca, compute_ca, compute_ov) \
8834 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
8835 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
8836 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
8837 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
8838 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
8839 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
8840 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
8841 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
8842 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
8843 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
8844 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
8848 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
8849 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
8850 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
8851 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
8852 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
),
8853 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
),
8854 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
),
8855 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
),
8856 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
),
8857 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
),
8858 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
),
8859 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
),
8860 #if defined(TARGET_PPC64)
8861 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
),
8864 #if defined(TARGET_PPC64)
8867 #define GEN_PPC64_R2(name, opc1, opc2) \
8868 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8869 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8871 #define GEN_PPC64_R4(name, opc1, opc2) \
8872 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8873 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
8875 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8877 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
8879 GEN_PPC64_R4(rldicl
, 0x1E, 0x00),
8880 GEN_PPC64_R4(rldicr
, 0x1E, 0x02),
8881 GEN_PPC64_R4(rldic
, 0x1E, 0x04),
8882 GEN_PPC64_R2(rldcl
, 0x1E, 0x08),
8883 GEN_PPC64_R2(rldcr
, 0x1E, 0x09),
8884 GEN_PPC64_R4(rldimi
, 0x1E, 0x06),
8887 #undef _GEN_FLOAT_ACB
8888 #undef GEN_FLOAT_ACB
8889 #undef _GEN_FLOAT_AB
8891 #undef _GEN_FLOAT_AC
8895 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
8896 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type)
8897 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
8898 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type), \
8899 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type)
8900 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8901 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8902 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
8903 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8904 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8905 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8906 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8907 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
8908 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8909 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8910 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
8911 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type)
8912 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
8913 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type)
8915 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
),
8916 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
),
8917 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
),
8918 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
),
8919 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
),
8920 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
),
8921 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
),
8922 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
),
8923 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
),
8924 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
),
8925 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
),
8926 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
),
8927 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
),
8928 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
),
8929 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
),
8930 #if defined(TARGET_PPC64)
8931 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
),
8932 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
),
8933 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
),
8935 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
),
8936 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
),
8937 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
),
8938 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
),
8939 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
),
8940 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
),
8941 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
),
8948 #define GEN_LD(name, ldop, opc, type) \
8949 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8950 #define GEN_LDU(name, ldop, opc, type) \
8951 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8952 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
8953 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
8954 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2) \
8955 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
8956 #define GEN_LDS(name, ldop, op, type) \
8957 GEN_LD(name, ldop, op | 0x20, type) \
8958 GEN_LDU(name, ldop, op | 0x21, type) \
8959 GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \
8960 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
8962 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
)
8963 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
)
8964 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
)
8965 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
)
8966 #if defined(TARGET_PPC64)
8967 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
)
8968 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
)
8969 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
)
8970 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
)
8971 GEN_LDX_E(ldbr
, ld64ur
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
)
8973 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
)
8974 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
)
8981 #define GEN_ST(name, stop, opc, type) \
8982 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8983 #define GEN_STU(name, stop, opc, type) \
8984 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
8985 #define GEN_STUX(name, stop, opc2, opc3, type) \
8986 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
8987 #define GEN_STX_E(name, stop, opc2, opc3, type, type2) \
8988 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
8989 #define GEN_STS(name, stop, op, type) \
8990 GEN_ST(name, stop, op | 0x20, type) \
8991 GEN_STU(name, stop, op | 0x21, type) \
8992 GEN_STUX(name, stop, 0x17, op | 0x01, type) \
8993 GEN_STX(name, stop, 0x17, op | 0x00, type)
8995 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
)
8996 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
)
8997 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
)
8998 #if defined(TARGET_PPC64)
8999 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
)
9000 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
)
9001 GEN_STX_E(stdbr
, st64r
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
)
9003 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
)
9004 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
)
9011 #define GEN_LDF(name, ldop, opc, type) \
9012 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9013 #define GEN_LDUF(name, ldop, opc, type) \
9014 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
9015 #define GEN_LDUXF(name, ldop, opc, type) \
9016 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
9017 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
9018 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
9019 #define GEN_LDFS(name, ldop, op, type) \
9020 GEN_LDF(name, ldop, op | 0x20, type) \
9021 GEN_LDUF(name, ldop, op | 0x21, type) \
9022 GEN_LDUXF(name, ldop, op | 0x01, type) \
9023 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
9025 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
)
9026 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
)
9033 #define GEN_STF(name, stop, opc, type) \
9034 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9035 #define GEN_STUF(name, stop, opc, type) \
9036 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
9037 #define GEN_STUXF(name, stop, opc, type) \
9038 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
9039 #define GEN_STXF(name, stop, opc2, opc3, type) \
9040 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
9041 #define GEN_STFS(name, stop, op, type) \
9042 GEN_STF(name, stop, op | 0x20, type) \
9043 GEN_STUF(name, stop, op | 0x21, type) \
9044 GEN_STUXF(name, stop, op | 0x01, type) \
9045 GEN_STXF(name, stop, 0x17, op | 0x00, type)
9047 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
)
9048 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
)
9049 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
)
9052 #define GEN_CRLOGIC(name, tcg_op, opc) \
9053 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
9054 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08),
9055 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04),
9056 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09),
9057 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07),
9058 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01),
9059 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E),
9060 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D),
9061 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06),
9063 #undef GEN_MAC_HANDLER
9064 #define GEN_MAC_HANDLER(name, opc2, opc3) \
9065 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
9066 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05),
9067 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15),
9068 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07),
9069 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17),
9070 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06),
9071 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16),
9072 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04),
9073 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14),
9074 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01),
9075 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11),
9076 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03),
9077 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13),
9078 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02),
9079 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12),
9080 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00),
9081 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10),
9082 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D),
9083 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D),
9084 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F),
9085 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F),
9086 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C),
9087 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C),
9088 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E),
9089 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E),
9090 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05),
9091 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15),
9092 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07),
9093 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17),
9094 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01),
9095 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11),
9096 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03),
9097 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13),
9098 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D),
9099 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D),
9100 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F),
9101 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F),
9102 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05),
9103 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04),
9104 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01),
9105 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00),
9106 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D),
9107 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C),
9113 #define GEN_VR_LDX(name, opc2, opc3) \
9114 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9115 #define GEN_VR_STX(name, opc2, opc3) \
9116 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9117 #define GEN_VR_LVE(name, opc2, opc3) \
9118 GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9119 #define GEN_VR_STVE(name, opc2, opc3) \
9120 GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9121 GEN_VR_LDX(lvx
, 0x07, 0x03),
9122 GEN_VR_LDX(lvxl
, 0x07, 0x0B),
9123 GEN_VR_LVE(bx
, 0x07, 0x00),
9124 GEN_VR_LVE(hx
, 0x07, 0x01),
9125 GEN_VR_LVE(wx
, 0x07, 0x02),
9126 GEN_VR_STX(svx
, 0x07, 0x07),
9127 GEN_VR_STX(svxl
, 0x07, 0x0F),
9128 GEN_VR_STVE(bx
, 0x07, 0x04),
9129 GEN_VR_STVE(hx
, 0x07, 0x05),
9130 GEN_VR_STVE(wx
, 0x07, 0x06),
9132 #undef GEN_VX_LOGICAL
9133 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
9134 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9135 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16),
9136 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17),
9137 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18),
9138 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19),
9139 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20),
9142 #define GEN_VXFORM(name, opc2, opc3) \
9143 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9144 GEN_VXFORM(vaddubm
, 0, 0),
9145 GEN_VXFORM(vadduhm
, 0, 1),
9146 GEN_VXFORM(vadduwm
, 0, 2),
9147 GEN_VXFORM(vsububm
, 0, 16),
9148 GEN_VXFORM(vsubuhm
, 0, 17),
9149 GEN_VXFORM(vsubuwm
, 0, 18),
9150 GEN_VXFORM(vmaxub
, 1, 0),
9151 GEN_VXFORM(vmaxuh
, 1, 1),
9152 GEN_VXFORM(vmaxuw
, 1, 2),
9153 GEN_VXFORM(vmaxsb
, 1, 4),
9154 GEN_VXFORM(vmaxsh
, 1, 5),
9155 GEN_VXFORM(vmaxsw
, 1, 6),
9156 GEN_VXFORM(vminub
, 1, 8),
9157 GEN_VXFORM(vminuh
, 1, 9),
9158 GEN_VXFORM(vminuw
, 1, 10),
9159 GEN_VXFORM(vminsb
, 1, 12),
9160 GEN_VXFORM(vminsh
, 1, 13),
9161 GEN_VXFORM(vminsw
, 1, 14),
9162 GEN_VXFORM(vavgub
, 1, 16),
9163 GEN_VXFORM(vavguh
, 1, 17),
9164 GEN_VXFORM(vavguw
, 1, 18),
9165 GEN_VXFORM(vavgsb
, 1, 20),
9166 GEN_VXFORM(vavgsh
, 1, 21),
9167 GEN_VXFORM(vavgsw
, 1, 22),
9168 GEN_VXFORM(vmrghb
, 6, 0),
9169 GEN_VXFORM(vmrghh
, 6, 1),
9170 GEN_VXFORM(vmrghw
, 6, 2),
9171 GEN_VXFORM(vmrglb
, 6, 4),
9172 GEN_VXFORM(vmrglh
, 6, 5),
9173 GEN_VXFORM(vmrglw
, 6, 6),
9174 GEN_VXFORM(vmuloub
, 4, 0),
9175 GEN_VXFORM(vmulouh
, 4, 1),
9176 GEN_VXFORM(vmulosb
, 4, 4),
9177 GEN_VXFORM(vmulosh
, 4, 5),
9178 GEN_VXFORM(vmuleub
, 4, 8),
9179 GEN_VXFORM(vmuleuh
, 4, 9),
9180 GEN_VXFORM(vmulesb
, 4, 12),
9181 GEN_VXFORM(vmulesh
, 4, 13),
9182 GEN_VXFORM(vslb
, 2, 4),
9183 GEN_VXFORM(vslh
, 2, 5),
9184 GEN_VXFORM(vslw
, 2, 6),
9185 GEN_VXFORM(vsrb
, 2, 8),
9186 GEN_VXFORM(vsrh
, 2, 9),
9187 GEN_VXFORM(vsrw
, 2, 10),
9188 GEN_VXFORM(vsrab
, 2, 12),
9189 GEN_VXFORM(vsrah
, 2, 13),
9190 GEN_VXFORM(vsraw
, 2, 14),
9191 GEN_VXFORM(vslo
, 6, 16),
9192 GEN_VXFORM(vsro
, 6, 17),
9193 GEN_VXFORM(vaddcuw
, 0, 6),
9194 GEN_VXFORM(vsubcuw
, 0, 22),
9195 GEN_VXFORM(vaddubs
, 0, 8),
9196 GEN_VXFORM(vadduhs
, 0, 9),
9197 GEN_VXFORM(vadduws
, 0, 10),
9198 GEN_VXFORM(vaddsbs
, 0, 12),
9199 GEN_VXFORM(vaddshs
, 0, 13),
9200 GEN_VXFORM(vaddsws
, 0, 14),
9201 GEN_VXFORM(vsububs
, 0, 24),
9202 GEN_VXFORM(vsubuhs
, 0, 25),
9203 GEN_VXFORM(vsubuws
, 0, 26),
9204 GEN_VXFORM(vsubsbs
, 0, 28),
9205 GEN_VXFORM(vsubshs
, 0, 29),
9206 GEN_VXFORM(vsubsws
, 0, 30),
9207 GEN_VXFORM(vrlb
, 2, 0),
9208 GEN_VXFORM(vrlh
, 2, 1),
9209 GEN_VXFORM(vrlw
, 2, 2),
9210 GEN_VXFORM(vsl
, 2, 7),
9211 GEN_VXFORM(vsr
, 2, 11),
9212 GEN_VXFORM(vpkuhum
, 7, 0),
9213 GEN_VXFORM(vpkuwum
, 7, 1),
9214 GEN_VXFORM(vpkuhus
, 7, 2),
9215 GEN_VXFORM(vpkuwus
, 7, 3),
9216 GEN_VXFORM(vpkshus
, 7, 4),
9217 GEN_VXFORM(vpkswus
, 7, 5),
9218 GEN_VXFORM(vpkshss
, 7, 6),
9219 GEN_VXFORM(vpkswss
, 7, 7),
9220 GEN_VXFORM(vpkpx
, 7, 12),
9221 GEN_VXFORM(vsum4ubs
, 4, 24),
9222 GEN_VXFORM(vsum4sbs
, 4, 28),
9223 GEN_VXFORM(vsum4shs
, 4, 25),
9224 GEN_VXFORM(vsum2sws
, 4, 26),
9225 GEN_VXFORM(vsumsws
, 4, 30),
9226 GEN_VXFORM(vaddfp
, 5, 0),
9227 GEN_VXFORM(vsubfp
, 5, 1),
9228 GEN_VXFORM(vmaxfp
, 5, 16),
9229 GEN_VXFORM(vminfp
, 5, 17),
9233 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
9234 GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC),
9235 #define GEN_VXRFORM(name, opc2, opc3) \
9236 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
9237 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
9238 GEN_VXRFORM(vcmpequb
, 3, 0)
9239 GEN_VXRFORM(vcmpequh
, 3, 1)
9240 GEN_VXRFORM(vcmpequw
, 3, 2)
9241 GEN_VXRFORM(vcmpgtsb
, 3, 12)
9242 GEN_VXRFORM(vcmpgtsh
, 3, 13)
9243 GEN_VXRFORM(vcmpgtsw
, 3, 14)
9244 GEN_VXRFORM(vcmpgtub
, 3, 8)
9245 GEN_VXRFORM(vcmpgtuh
, 3, 9)
9246 GEN_VXRFORM(vcmpgtuw
, 3, 10)
9247 GEN_VXRFORM(vcmpeqfp
, 3, 3)
9248 GEN_VXRFORM(vcmpgefp
, 3, 7)
9249 GEN_VXRFORM(vcmpgtfp
, 3, 11)
9250 GEN_VXRFORM(vcmpbfp
, 3, 15)
9252 #undef GEN_VXFORM_SIMM
9253 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
9254 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9255 GEN_VXFORM_SIMM(vspltisb
, 6, 12),
9256 GEN_VXFORM_SIMM(vspltish
, 6, 13),
9257 GEN_VXFORM_SIMM(vspltisw
, 6, 14),
9259 #undef GEN_VXFORM_NOA
9260 #define GEN_VXFORM_NOA(name, opc2, opc3) \
9261 GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC)
9262 GEN_VXFORM_NOA(vupkhsb
, 7, 8),
9263 GEN_VXFORM_NOA(vupkhsh
, 7, 9),
9264 GEN_VXFORM_NOA(vupklsb
, 7, 10),
9265 GEN_VXFORM_NOA(vupklsh
, 7, 11),
9266 GEN_VXFORM_NOA(vupkhpx
, 7, 13),
9267 GEN_VXFORM_NOA(vupklpx
, 7, 15),
9268 GEN_VXFORM_NOA(vrefp
, 5, 4),
9269 GEN_VXFORM_NOA(vrsqrtefp
, 5, 5),
9270 GEN_VXFORM_NOA(vexptefp
, 5, 6),
9271 GEN_VXFORM_NOA(vlogefp
, 5, 7),
9272 GEN_VXFORM_NOA(vrfim
, 5, 8),
9273 GEN_VXFORM_NOA(vrfin
, 5, 9),
9274 GEN_VXFORM_NOA(vrfip
, 5, 10),
9275 GEN_VXFORM_NOA(vrfiz
, 5, 11),
9277 #undef GEN_VXFORM_UIMM
9278 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
9279 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9280 GEN_VXFORM_UIMM(vspltb
, 6, 8),
9281 GEN_VXFORM_UIMM(vsplth
, 6, 9),
9282 GEN_VXFORM_UIMM(vspltw
, 6, 10),
9283 GEN_VXFORM_UIMM(vcfux
, 5, 12),
9284 GEN_VXFORM_UIMM(vcfsx
, 5, 13),
9285 GEN_VXFORM_UIMM(vctuxs
, 5, 14),
9286 GEN_VXFORM_UIMM(vctsxs
, 5, 15),
9288 #undef GEN_VAFORM_PAIRED
9289 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
9290 GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC)
9291 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16),
9292 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18),
9293 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19),
9294 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20),
9295 GEN_VAFORM_PAIRED(vsel
, vperm
, 21),
9296 GEN_VAFORM_PAIRED(vmaddfp
, vnmsubfp
, 23),
9299 #define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type) \
9300 GEN_OPCODE_DUAL(name0##_##name1, 0x04, opc2, opc3, inval0, inval1, type, PPC_NONE)
9301 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9302 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9303 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9304 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9305 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
),
9306 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
),
9307 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE
),
9308 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE
),
9309 GEN_SPE(evmra
, speundef
, 0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE
),
9310 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE
),
9311 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9312 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9313 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9314 GEN_SPE(evmwumi
, evmwsmi
, 0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE
),
9315 GEN_SPE(evmwumia
, evmwsmia
, 0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE
),
9316 GEN_SPE(evmwumiaa
, evmwsmiaa
, 0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE
),
9317 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE
),
9318 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9319 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9320 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9321 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9322 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE
),
9323 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE
),
9324 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE
),
9325 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9326 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE
),
9327 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE
),
9328 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE
),
9329 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE
),
9331 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE
),
9332 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE
),
9333 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9334 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE
),
9335 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE
),
9336 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9337 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9338 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9339 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9340 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9341 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9342 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9343 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE
),
9344 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9346 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE
),
9347 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE
),
9348 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9349 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE
),
9350 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE
),
9351 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE
),
9352 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9353 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9354 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9355 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE
),
9356 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9357 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9358 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE
),
9359 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE
),
9361 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE
),
9362 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9363 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE
),
9364 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE
),
9365 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE
),
9366 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9367 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE
),
9368 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE
),
9369 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9370 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9371 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9372 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE
),
9373 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE
),
9374 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE
),
9375 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE
),
9376 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE
),
9378 #undef GEN_SPEOP_LDST
9379 #define GEN_SPEOP_LDST(name, opc2, sh) \
9380 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE)
9381 GEN_SPEOP_LDST(evldd
, 0x00, 3),
9382 GEN_SPEOP_LDST(evldw
, 0x01, 3),
9383 GEN_SPEOP_LDST(evldh
, 0x02, 3),
9384 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1),
9385 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1),
9386 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1),
9387 GEN_SPEOP_LDST(evlwhe
, 0x08, 2),
9388 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2),
9389 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2),
9390 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2),
9391 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2),
9393 GEN_SPEOP_LDST(evstdd
, 0x10, 3),
9394 GEN_SPEOP_LDST(evstdw
, 0x11, 3),
9395 GEN_SPEOP_LDST(evstdh
, 0x12, 3),
9396 GEN_SPEOP_LDST(evstwhe
, 0x18, 2),
9397 GEN_SPEOP_LDST(evstwho
, 0x1A, 2),
9398 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2),
9399 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2),
9402 #include "helper_regs.h"
9403 #include "translate_init.c"
9405 /*****************************************************************************/
9406 /* Misc PowerPC helpers */
9407 void cpu_dump_state (CPUPPCState
*env
, FILE *f
, fprintf_function cpu_fprintf
,
9415 cpu_synchronize_state(env
);
9417 cpu_fprintf(f
, "NIP " TARGET_FMT_lx
" LR " TARGET_FMT_lx
" CTR "
9418 TARGET_FMT_lx
" XER " TARGET_FMT_lx
"\n",
9419 env
->nip
, env
->lr
, env
->ctr
, env
->xer
);
9420 cpu_fprintf(f
, "MSR " TARGET_FMT_lx
" HID0 " TARGET_FMT_lx
" HF "
9421 TARGET_FMT_lx
" idx %d\n", env
->msr
, env
->spr
[SPR_HID0
],
9422 env
->hflags
, env
->mmu_idx
);
9423 #if !defined(NO_TIMER_DUMP)
9424 cpu_fprintf(f
, "TB %08" PRIu32
" %08" PRIu64
9425 #if !defined(CONFIG_USER_ONLY)
9429 cpu_ppc_load_tbu(env
), cpu_ppc_load_tbl(env
)
9430 #if !defined(CONFIG_USER_ONLY)
9431 , cpu_ppc_load_decr(env
)
9435 for (i
= 0; i
< 32; i
++) {
9436 if ((i
& (RGPL
- 1)) == 0)
9437 cpu_fprintf(f
, "GPR%02d", i
);
9438 cpu_fprintf(f
, " %016" PRIx64
, ppc_dump_gpr(env
, i
));
9439 if ((i
& (RGPL
- 1)) == (RGPL
- 1))
9440 cpu_fprintf(f
, "\n");
9442 cpu_fprintf(f
, "CR ");
9443 for (i
= 0; i
< 8; i
++)
9444 cpu_fprintf(f
, "%01x", env
->crf
[i
]);
9445 cpu_fprintf(f
, " [");
9446 for (i
= 0; i
< 8; i
++) {
9448 if (env
->crf
[i
] & 0x08)
9450 else if (env
->crf
[i
] & 0x04)
9452 else if (env
->crf
[i
] & 0x02)
9454 cpu_fprintf(f
, " %c%c", a
, env
->crf
[i
] & 0x01 ? 'O' : ' ');
9456 cpu_fprintf(f
, " ] RES " TARGET_FMT_lx
"\n",
9458 for (i
= 0; i
< 32; i
++) {
9459 if ((i
& (RFPL
- 1)) == 0)
9460 cpu_fprintf(f
, "FPR%02d", i
);
9461 cpu_fprintf(f
, " %016" PRIx64
, *((uint64_t *)&env
->fpr
[i
]));
9462 if ((i
& (RFPL
- 1)) == (RFPL
- 1))
9463 cpu_fprintf(f
, "\n");
9465 cpu_fprintf(f
, "FPSCR " TARGET_FMT_lx
"\n", env
->fpscr
);
9466 #if !defined(CONFIG_USER_ONLY)
9467 cpu_fprintf(f
, " SRR0 " TARGET_FMT_lx
" SRR1 " TARGET_FMT_lx
9468 " PVR " TARGET_FMT_lx
" VRSAVE " TARGET_FMT_lx
"\n",
9469 env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
],
9470 env
->spr
[SPR_PVR
], env
->spr
[SPR_VRSAVE
]);
9472 cpu_fprintf(f
, "SPRG0 " TARGET_FMT_lx
" SPRG1 " TARGET_FMT_lx
9473 " SPRG2 " TARGET_FMT_lx
" SPRG3 " TARGET_FMT_lx
"\n",
9474 env
->spr
[SPR_SPRG0
], env
->spr
[SPR_SPRG1
],
9475 env
->spr
[SPR_SPRG2
], env
->spr
[SPR_SPRG3
]);
9477 cpu_fprintf(f
, "SPRG4 " TARGET_FMT_lx
" SPRG5 " TARGET_FMT_lx
9478 " SPRG6 " TARGET_FMT_lx
" SPRG7 " TARGET_FMT_lx
"\n",
9479 env
->spr
[SPR_SPRG4
], env
->spr
[SPR_SPRG5
],
9480 env
->spr
[SPR_SPRG6
], env
->spr
[SPR_SPRG7
]);
9482 if (env
->excp_model
== POWERPC_EXCP_BOOKE
) {
9483 cpu_fprintf(f
, "CSRR0 " TARGET_FMT_lx
" CSRR1 " TARGET_FMT_lx
9484 " MCSRR0 " TARGET_FMT_lx
" MCSRR1 " TARGET_FMT_lx
"\n",
9485 env
->spr
[SPR_BOOKE_CSRR0
], env
->spr
[SPR_BOOKE_CSRR1
],
9486 env
->spr
[SPR_BOOKE_MCSRR0
], env
->spr
[SPR_BOOKE_MCSRR1
]);
9488 cpu_fprintf(f
, " TCR " TARGET_FMT_lx
" TSR " TARGET_FMT_lx
9489 " ESR " TARGET_FMT_lx
" DEAR " TARGET_FMT_lx
"\n",
9490 env
->spr
[SPR_BOOKE_TCR
], env
->spr
[SPR_BOOKE_TSR
],
9491 env
->spr
[SPR_BOOKE_ESR
], env
->spr
[SPR_BOOKE_DEAR
]);
9493 cpu_fprintf(f
, " PIR " TARGET_FMT_lx
" DECAR " TARGET_FMT_lx
9494 " IVPR " TARGET_FMT_lx
" EPCR " TARGET_FMT_lx
"\n",
9495 env
->spr
[SPR_BOOKE_PIR
], env
->spr
[SPR_BOOKE_DECAR
],
9496 env
->spr
[SPR_BOOKE_IVPR
], env
->spr
[SPR_BOOKE_EPCR
]);
9498 cpu_fprintf(f
, " MCSR " TARGET_FMT_lx
" SPRG8 " TARGET_FMT_lx
9499 " EPR " TARGET_FMT_lx
"\n",
9500 env
->spr
[SPR_BOOKE_MCSR
], env
->spr
[SPR_BOOKE_SPRG8
],
9501 env
->spr
[SPR_BOOKE_EPR
]);
9504 cpu_fprintf(f
, " MCAR " TARGET_FMT_lx
" PID1 " TARGET_FMT_lx
9505 " PID2 " TARGET_FMT_lx
" SVR " TARGET_FMT_lx
"\n",
9506 env
->spr
[SPR_Exxx_MCAR
], env
->spr
[SPR_BOOKE_PID1
],
9507 env
->spr
[SPR_BOOKE_PID2
], env
->spr
[SPR_E500_SVR
]);
9510 * IVORs are left out as they are large and do not change often --
9511 * they can be read with "p $ivor0", "p $ivor1", etc.
9515 #if defined(TARGET_PPC64)
9516 if (env
->flags
& POWERPC_FLAG_CFAR
) {
9517 cpu_fprintf(f
, " CFAR " TARGET_FMT_lx
"\n", env
->cfar
);
9521 switch (env
->mmu_model
) {
9522 case POWERPC_MMU_32B
:
9523 case POWERPC_MMU_601
:
9524 case POWERPC_MMU_SOFT_6xx
:
9525 case POWERPC_MMU_SOFT_74xx
:
9526 #if defined(TARGET_PPC64)
9527 case POWERPC_MMU_620
:
9528 case POWERPC_MMU_64B
:
9530 cpu_fprintf(f
, " SDR1 " TARGET_FMT_lx
"\n", env
->spr
[SPR_SDR1
]);
9532 case POWERPC_MMU_BOOKE206
:
9533 cpu_fprintf(f
, " MAS0 " TARGET_FMT_lx
" MAS1 " TARGET_FMT_lx
9534 " MAS2 " TARGET_FMT_lx
" MAS3 " TARGET_FMT_lx
"\n",
9535 env
->spr
[SPR_BOOKE_MAS0
], env
->spr
[SPR_BOOKE_MAS1
],
9536 env
->spr
[SPR_BOOKE_MAS2
], env
->spr
[SPR_BOOKE_MAS3
]);
9538 cpu_fprintf(f
, " MAS4 " TARGET_FMT_lx
" MAS6 " TARGET_FMT_lx
9539 " MAS7 " TARGET_FMT_lx
" PID " TARGET_FMT_lx
"\n",
9540 env
->spr
[SPR_BOOKE_MAS4
], env
->spr
[SPR_BOOKE_MAS6
],
9541 env
->spr
[SPR_BOOKE_MAS7
], env
->spr
[SPR_BOOKE_PID
]);
9543 cpu_fprintf(f
, "MMUCFG " TARGET_FMT_lx
" TLB0CFG " TARGET_FMT_lx
9544 " TLB1CFG " TARGET_FMT_lx
"\n",
9545 env
->spr
[SPR_MMUCFG
], env
->spr
[SPR_BOOKE_TLB0CFG
],
9546 env
->spr
[SPR_BOOKE_TLB1CFG
]);
9557 void cpu_dump_statistics (CPUPPCState
*env
, FILE*f
, fprintf_function cpu_fprintf
,
9560 #if defined(DO_PPC_STATISTICS)
9561 opc_handler_t
**t1
, **t2
, **t3
, *handler
;
9565 for (op1
= 0; op1
< 64; op1
++) {
9567 if (is_indirect_opcode(handler
)) {
9568 t2
= ind_table(handler
);
9569 for (op2
= 0; op2
< 32; op2
++) {
9571 if (is_indirect_opcode(handler
)) {
9572 t3
= ind_table(handler
);
9573 for (op3
= 0; op3
< 32; op3
++) {
9575 if (handler
->count
== 0)
9577 cpu_fprintf(f
, "%02x %02x %02x (%02x %04d) %16s: "
9578 "%016" PRIx64
" %" PRId64
"\n",
9579 op1
, op2
, op3
, op1
, (op3
<< 5) | op2
,
9581 handler
->count
, handler
->count
);
9584 if (handler
->count
== 0)
9586 cpu_fprintf(f
, "%02x %02x (%02x %04d) %16s: "
9587 "%016" PRIx64
" %" PRId64
"\n",
9588 op1
, op2
, op1
, op2
, handler
->oname
,
9589 handler
->count
, handler
->count
);
9593 if (handler
->count
== 0)
9595 cpu_fprintf(f
, "%02x (%02x ) %16s: %016" PRIx64
9597 op1
, op1
, handler
->oname
,
9598 handler
->count
, handler
->count
);
9604 /*****************************************************************************/
9605 static inline void gen_intermediate_code_internal(CPUPPCState
*env
,
9606 TranslationBlock
*tb
,
9609 DisasContext ctx
, *ctxp
= &ctx
;
9610 opc_handler_t
**table
, *handler
;
9611 target_ulong pc_start
;
9612 uint16_t *gen_opc_end
;
9619 gen_opc_end
= tcg_ctx
.gen_opc_buf
+ OPC_MAX_SIZE
;
9622 ctx
.exception
= POWERPC_EXCP_NONE
;
9623 ctx
.spr_cb
= env
->spr_cb
;
9624 ctx
.mem_idx
= env
->mmu_idx
;
9625 ctx
.access_type
= -1;
9626 ctx
.le_mode
= env
->hflags
& (1 << MSR_LE
) ? 1 : 0;
9627 #if defined(TARGET_PPC64)
9628 ctx
.sf_mode
= msr_is_64bit(env
, env
->msr
);
9629 ctx
.has_cfar
= !!(env
->flags
& POWERPC_FLAG_CFAR
);
9631 ctx
.fpu_enabled
= msr_fp
;
9632 if ((env
->flags
& POWERPC_FLAG_SPE
) && msr_spe
)
9633 ctx
.spe_enabled
= msr_spe
;
9635 ctx
.spe_enabled
= 0;
9636 if ((env
->flags
& POWERPC_FLAG_VRE
) && msr_vr
)
9637 ctx
.altivec_enabled
= msr_vr
;
9639 ctx
.altivec_enabled
= 0;
9640 if ((env
->flags
& POWERPC_FLAG_SE
) && msr_se
)
9641 ctx
.singlestep_enabled
= CPU_SINGLE_STEP
;
9643 ctx
.singlestep_enabled
= 0;
9644 if ((env
->flags
& POWERPC_FLAG_BE
) && msr_be
)
9645 ctx
.singlestep_enabled
|= CPU_BRANCH_STEP
;
9646 if (unlikely(env
->singlestep_enabled
))
9647 ctx
.singlestep_enabled
|= GDBSTUB_SINGLE_STEP
;
9648 #if defined (DO_SINGLE_STEP) && 0
9649 /* Single step trace mode */
9653 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
9655 max_insns
= CF_COUNT_MASK
;
9658 /* Set env in case of segfault during code fetch */
9659 while (ctx
.exception
== POWERPC_EXCP_NONE
9660 && tcg_ctx
.gen_opc_ptr
< gen_opc_end
) {
9661 if (unlikely(!QTAILQ_EMPTY(&env
->breakpoints
))) {
9662 QTAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
9663 if (bp
->pc
== ctx
.nip
) {
9664 gen_debug_exception(ctxp
);
9669 if (unlikely(search_pc
)) {
9670 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
9674 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
9676 tcg_ctx
.gen_opc_pc
[lj
] = ctx
.nip
;
9677 tcg_ctx
.gen_opc_instr_start
[lj
] = 1;
9678 tcg_ctx
.gen_opc_icount
[lj
] = num_insns
;
9680 LOG_DISAS("----------------\n");
9681 LOG_DISAS("nip=" TARGET_FMT_lx
" super=%d ir=%d\n",
9682 ctx
.nip
, ctx
.mem_idx
, (int)msr_ir
);
9683 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
9685 if (unlikely(ctx
.le_mode
)) {
9686 ctx
.opcode
= bswap32(cpu_ldl_code(env
, ctx
.nip
));
9688 ctx
.opcode
= cpu_ldl_code(env
, ctx
.nip
);
9690 LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
9691 ctx
.opcode
, opc1(ctx
.opcode
), opc2(ctx
.opcode
),
9692 opc3(ctx
.opcode
), ctx
.le_mode
? "little" : "big");
9693 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
| CPU_LOG_TB_OP_OPT
))) {
9694 tcg_gen_debug_insn_start(ctx
.nip
);
9697 table
= env
->opcodes
;
9699 handler
= table
[opc1(ctx
.opcode
)];
9700 if (is_indirect_opcode(handler
)) {
9701 table
= ind_table(handler
);
9702 handler
= table
[opc2(ctx
.opcode
)];
9703 if (is_indirect_opcode(handler
)) {
9704 table
= ind_table(handler
);
9705 handler
= table
[opc3(ctx
.opcode
)];
9708 /* Is opcode *REALLY* valid ? */
9709 if (unlikely(handler
->handler
== &gen_invalid
)) {
9710 if (qemu_log_enabled()) {
9711 qemu_log("invalid/unsupported opcode: "
9712 "%02x - %02x - %02x (%08x) " TARGET_FMT_lx
" %d\n",
9713 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
9714 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
9719 if (unlikely(handler
->type
& (PPC_SPE
| PPC_SPE_SINGLE
| PPC_SPE_DOUBLE
) && Rc(ctx
.opcode
))) {
9720 inval
= handler
->inval2
;
9722 inval
= handler
->inval1
;
9725 if (unlikely((ctx
.opcode
& inval
) != 0)) {
9726 if (qemu_log_enabled()) {
9727 qemu_log("invalid bits: %08x for opcode: "
9728 "%02x - %02x - %02x (%08x) " TARGET_FMT_lx
"\n",
9729 ctx
.opcode
& inval
, opc1(ctx
.opcode
),
9730 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
9731 ctx
.opcode
, ctx
.nip
- 4);
9733 gen_inval_exception(ctxp
, POWERPC_EXCP_INVAL_INVAL
);
9737 (*(handler
->handler
))(&ctx
);
9738 #if defined(DO_PPC_STATISTICS)
9741 /* Check trace mode exceptions */
9742 if (unlikely(ctx
.singlestep_enabled
& CPU_SINGLE_STEP
&&
9743 (ctx
.nip
<= 0x100 || ctx
.nip
> 0xF00) &&
9744 ctx
.exception
!= POWERPC_SYSCALL
&&
9745 ctx
.exception
!= POWERPC_EXCP_TRAP
&&
9746 ctx
.exception
!= POWERPC_EXCP_BRANCH
)) {
9747 gen_exception(ctxp
, POWERPC_EXCP_TRACE
);
9748 } else if (unlikely(((ctx
.nip
& (TARGET_PAGE_SIZE
- 1)) == 0) ||
9749 (env
->singlestep_enabled
) ||
9751 num_insns
>= max_insns
)) {
9752 /* if we reach a page boundary or are single stepping, stop
9758 if (tb
->cflags
& CF_LAST_IO
)
9760 if (ctx
.exception
== POWERPC_EXCP_NONE
) {
9761 gen_goto_tb(&ctx
, 0, ctx
.nip
);
9762 } else if (ctx
.exception
!= POWERPC_EXCP_BRANCH
) {
9763 if (unlikely(env
->singlestep_enabled
)) {
9764 gen_debug_exception(ctxp
);
9766 /* Generate the return instruction */
9769 gen_icount_end(tb
, num_insns
);
9770 *tcg_ctx
.gen_opc_ptr
= INDEX_op_end
;
9771 if (unlikely(search_pc
)) {
9772 j
= tcg_ctx
.gen_opc_ptr
- tcg_ctx
.gen_opc_buf
;
9775 tcg_ctx
.gen_opc_instr_start
[lj
++] = 0;
9777 tb
->size
= ctx
.nip
- pc_start
;
9778 tb
->icount
= num_insns
;
9780 #if defined(DEBUG_DISAS)
9781 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
9783 flags
= env
->bfd_mach
;
9784 flags
|= ctx
.le_mode
<< 16;
9785 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
9786 log_target_disas(env
, pc_start
, ctx
.nip
- pc_start
, flags
);
9792 void gen_intermediate_code (CPUPPCState
*env
, struct TranslationBlock
*tb
)
9794 gen_intermediate_code_internal(env
, tb
, 0);
9797 void gen_intermediate_code_pc (CPUPPCState
*env
, struct TranslationBlock
*tb
)
9799 gen_intermediate_code_internal(env
, tb
, 1);
9802 void restore_state_to_opc(CPUPPCState
*env
, TranslationBlock
*tb
, int pc_pos
)
9804 env
->nip
= tcg_ctx
.gen_opc_pc
[pc_pos
];