2 * PowerPC emulation for qemu: main translation routines.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
30 #include "qemu-common.h"
31 #include "host-utils.h"
37 #define CPU_SINGLE_STEP 0x1
38 #define CPU_BRANCH_STEP 0x2
39 #define GDBSTUB_SINGLE_STEP 0x4
41 /* Include definitions for instructions classes and implementations flags */
42 //#define PPC_DEBUG_DISAS
43 //#define DO_PPC_STATISTICS
45 #ifdef PPC_DEBUG_DISAS
46 # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
48 # define LOG_DISAS(...) do { } while (0)
50 /*****************************************************************************/
51 /* Code translation helpers */
53 /* global register indexes */
54 static TCGv_ptr cpu_env
;
55 static char cpu_reg_names
[10*3 + 22*4 /* GPR */
56 #if !defined(TARGET_PPC64)
57 + 10*4 + 22*5 /* SPE GPRh */
59 + 10*4 + 22*5 /* FPR */
60 + 2*(10*6 + 22*7) /* AVRh, AVRl */
62 static TCGv cpu_gpr
[32];
63 #if !defined(TARGET_PPC64)
64 static TCGv cpu_gprh
[32];
66 static TCGv_i64 cpu_fpr
[32];
67 static TCGv_i64 cpu_avrh
[32], cpu_avrl
[32];
68 static TCGv_i32 cpu_crf
[8];
74 static TCGv cpu_reserve
;
75 static TCGv_i32 cpu_fpscr
;
76 static TCGv_i32 cpu_access_type
;
78 #include "gen-icount.h"
80 void ppc_translate_init(void)
84 size_t cpu_reg_names_size
;
85 static int done_init
= 0;
90 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
93 cpu_reg_names_size
= sizeof(cpu_reg_names
);
95 for (i
= 0; i
< 8; i
++) {
96 snprintf(p
, cpu_reg_names_size
, "crf%d", i
);
97 cpu_crf
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
98 offsetof(CPUState
, crf
[i
]), p
);
100 cpu_reg_names_size
-= 5;
103 for (i
= 0; i
< 32; i
++) {
104 snprintf(p
, cpu_reg_names_size
, "r%d", i
);
105 cpu_gpr
[i
] = tcg_global_mem_new(TCG_AREG0
,
106 offsetof(CPUState
, gpr
[i
]), p
);
107 p
+= (i
< 10) ? 3 : 4;
108 cpu_reg_names_size
-= (i
< 10) ? 3 : 4;
109 #if !defined(TARGET_PPC64)
110 snprintf(p
, cpu_reg_names_size
, "r%dH", i
);
111 cpu_gprh
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
112 offsetof(CPUState
, gprh
[i
]), p
);
113 p
+= (i
< 10) ? 4 : 5;
114 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
117 snprintf(p
, cpu_reg_names_size
, "fp%d", i
);
118 cpu_fpr
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
119 offsetof(CPUState
, fpr
[i
]), p
);
120 p
+= (i
< 10) ? 4 : 5;
121 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
123 snprintf(p
, cpu_reg_names_size
, "avr%dH", i
);
124 #ifdef WORDS_BIGENDIAN
125 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
126 offsetof(CPUState
, avr
[i
].u64
[0]), p
);
128 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
129 offsetof(CPUState
, avr
[i
].u64
[1]), p
);
131 p
+= (i
< 10) ? 6 : 7;
132 cpu_reg_names_size
-= (i
< 10) ? 6 : 7;
134 snprintf(p
, cpu_reg_names_size
, "avr%dL", i
);
135 #ifdef WORDS_BIGENDIAN
136 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
137 offsetof(CPUState
, avr
[i
].u64
[1]), p
);
139 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
140 offsetof(CPUState
, avr
[i
].u64
[0]), p
);
142 p
+= (i
< 10) ? 6 : 7;
143 cpu_reg_names_size
-= (i
< 10) ? 6 : 7;
146 cpu_nip
= tcg_global_mem_new(TCG_AREG0
,
147 offsetof(CPUState
, nip
), "nip");
149 cpu_msr
= tcg_global_mem_new(TCG_AREG0
,
150 offsetof(CPUState
, msr
), "msr");
152 cpu_ctr
= tcg_global_mem_new(TCG_AREG0
,
153 offsetof(CPUState
, ctr
), "ctr");
155 cpu_lr
= tcg_global_mem_new(TCG_AREG0
,
156 offsetof(CPUState
, lr
), "lr");
158 cpu_xer
= tcg_global_mem_new(TCG_AREG0
,
159 offsetof(CPUState
, xer
), "xer");
161 cpu_reserve
= tcg_global_mem_new(TCG_AREG0
,
162 offsetof(CPUState
, reserve
), "reserve");
164 cpu_fpscr
= tcg_global_mem_new_i32(TCG_AREG0
,
165 offsetof(CPUState
, fpscr
), "fpscr");
167 cpu_access_type
= tcg_global_mem_new_i32(TCG_AREG0
,
168 offsetof(CPUState
, access_type
), "access_type");
170 /* register helpers */
177 /* internal defines */
178 typedef struct DisasContext
{
179 struct TranslationBlock
*tb
;
183 /* Routine used to access memory */
186 /* Translation flags */
188 #if defined(TARGET_PPC64)
194 ppc_spr_t
*spr_cb
; /* Needed to check rights for mfspr/mtspr */
195 int singlestep_enabled
;
198 struct opc_handler_t
{
201 /* instruction type */
204 void (*handler
)(DisasContext
*ctx
);
205 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
208 #if defined(DO_PPC_STATISTICS)
213 static always_inline
void gen_reset_fpstatus (void)
215 #ifdef CONFIG_SOFTFLOAT
216 gen_helper_reset_fpstatus();
220 static always_inline
void gen_compute_fprf (TCGv_i64 arg
, int set_fprf
, int set_rc
)
222 TCGv_i32 t0
= tcg_temp_new_i32();
225 /* This case might be optimized later */
226 tcg_gen_movi_i32(t0
, 1);
227 gen_helper_compute_fprf(t0
, arg
, t0
);
228 if (unlikely(set_rc
)) {
229 tcg_gen_mov_i32(cpu_crf
[1], t0
);
231 gen_helper_float_check_status();
232 } else if (unlikely(set_rc
)) {
233 /* We always need to compute fpcc */
234 tcg_gen_movi_i32(t0
, 0);
235 gen_helper_compute_fprf(t0
, arg
, t0
);
236 tcg_gen_mov_i32(cpu_crf
[1], t0
);
239 tcg_temp_free_i32(t0
);
242 static always_inline
void gen_set_access_type (DisasContext
*ctx
, int access_type
)
244 if (ctx
->access_type
!= access_type
) {
245 tcg_gen_movi_i32(cpu_access_type
, access_type
);
246 ctx
->access_type
= access_type
;
250 static always_inline
void gen_update_nip (DisasContext
*ctx
, target_ulong nip
)
252 #if defined(TARGET_PPC64)
254 tcg_gen_movi_tl(cpu_nip
, nip
);
257 tcg_gen_movi_tl(cpu_nip
, (uint32_t)nip
);
260 static always_inline
void gen_exception_err (DisasContext
*ctx
, uint32_t excp
, uint32_t error
)
263 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
264 gen_update_nip(ctx
, ctx
->nip
);
266 t0
= tcg_const_i32(excp
);
267 t1
= tcg_const_i32(error
);
268 gen_helper_raise_exception_err(t0
, t1
);
269 tcg_temp_free_i32(t0
);
270 tcg_temp_free_i32(t1
);
271 ctx
->exception
= (excp
);
274 static always_inline
void gen_exception (DisasContext
*ctx
, uint32_t excp
)
277 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
278 gen_update_nip(ctx
, ctx
->nip
);
280 t0
= tcg_const_i32(excp
);
281 gen_helper_raise_exception(t0
);
282 tcg_temp_free_i32(t0
);
283 ctx
->exception
= (excp
);
286 static always_inline
void gen_debug_exception (DisasContext
*ctx
)
290 if (ctx
->exception
!= POWERPC_EXCP_BRANCH
)
291 gen_update_nip(ctx
, ctx
->nip
);
292 t0
= tcg_const_i32(EXCP_DEBUG
);
293 gen_helper_raise_exception(t0
);
294 tcg_temp_free_i32(t0
);
297 static always_inline
void gen_inval_exception (DisasContext
*ctx
, uint32_t error
)
299 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_INVAL
| error
);
302 /* Stop translation */
303 static always_inline
void gen_stop_exception (DisasContext
*ctx
)
305 gen_update_nip(ctx
, ctx
->nip
);
306 ctx
->exception
= POWERPC_EXCP_STOP
;
309 /* No need to update nip here, as execution flow will change */
310 static always_inline
void gen_sync_exception (DisasContext
*ctx
)
312 ctx
->exception
= POWERPC_EXCP_SYNC
;
315 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
316 GEN_OPCODE(name, opc1, opc2, opc3, inval, type)
318 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
319 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type)
321 typedef struct opcode_t
{
322 unsigned char opc1
, opc2
, opc3
;
323 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
324 unsigned char pad
[5];
326 unsigned char pad
[1];
328 opc_handler_t handler
;
332 /*****************************************************************************/
333 /*** Instruction decoding ***/
334 #define EXTRACT_HELPER(name, shift, nb) \
335 static always_inline uint32_t name (uint32_t opcode) \
337 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
340 #define EXTRACT_SHELPER(name, shift, nb) \
341 static always_inline int32_t name (uint32_t opcode) \
343 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
347 EXTRACT_HELPER(opc1
, 26, 6);
349 EXTRACT_HELPER(opc2
, 1, 5);
351 EXTRACT_HELPER(opc3
, 6, 5);
352 /* Update Cr0 flags */
353 EXTRACT_HELPER(Rc
, 0, 1);
355 EXTRACT_HELPER(rD
, 21, 5);
357 EXTRACT_HELPER(rS
, 21, 5);
359 EXTRACT_HELPER(rA
, 16, 5);
361 EXTRACT_HELPER(rB
, 11, 5);
363 EXTRACT_HELPER(rC
, 6, 5);
365 EXTRACT_HELPER(crfD
, 23, 3);
366 EXTRACT_HELPER(crfS
, 18, 3);
367 EXTRACT_HELPER(crbD
, 21, 5);
368 EXTRACT_HELPER(crbA
, 16, 5);
369 EXTRACT_HELPER(crbB
, 11, 5);
371 EXTRACT_HELPER(_SPR
, 11, 10);
372 static always_inline
uint32_t SPR (uint32_t opcode
)
374 uint32_t sprn
= _SPR(opcode
);
376 return ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
378 /*** Get constants ***/
379 EXTRACT_HELPER(IMM
, 12, 8);
380 /* 16 bits signed immediate value */
381 EXTRACT_SHELPER(SIMM
, 0, 16);
382 /* 16 bits unsigned immediate value */
383 EXTRACT_HELPER(UIMM
, 0, 16);
384 /* 5 bits signed immediate value */
385 EXTRACT_HELPER(SIMM5
, 16, 5);
386 /* 5 bits signed immediate value */
387 EXTRACT_HELPER(UIMM5
, 16, 5);
389 EXTRACT_HELPER(NB
, 11, 5);
391 EXTRACT_HELPER(SH
, 11, 5);
392 /* Vector shift count */
393 EXTRACT_HELPER(VSH
, 6, 4);
395 EXTRACT_HELPER(MB
, 6, 5);
397 EXTRACT_HELPER(ME
, 1, 5);
399 EXTRACT_HELPER(TO
, 21, 5);
401 EXTRACT_HELPER(CRM
, 12, 8);
402 EXTRACT_HELPER(FM
, 17, 8);
403 EXTRACT_HELPER(SR
, 16, 4);
404 EXTRACT_HELPER(FPIMM
, 12, 4);
406 /*** Jump target decoding ***/
408 EXTRACT_SHELPER(d
, 0, 16);
409 /* Immediate address */
410 static always_inline target_ulong
LI (uint32_t opcode
)
412 return (opcode
>> 0) & 0x03FFFFFC;
415 static always_inline
uint32_t BD (uint32_t opcode
)
417 return (opcode
>> 0) & 0xFFFC;
420 EXTRACT_HELPER(BO
, 21, 5);
421 EXTRACT_HELPER(BI
, 16, 5);
422 /* Absolute/relative address */
423 EXTRACT_HELPER(AA
, 1, 1);
425 EXTRACT_HELPER(LK
, 0, 1);
427 /* Create a mask between <start> and <end> bits */
428 static always_inline target_ulong
MASK (uint32_t start
, uint32_t end
)
432 #if defined(TARGET_PPC64)
433 if (likely(start
== 0)) {
434 ret
= UINT64_MAX
<< (63 - end
);
435 } else if (likely(end
== 63)) {
436 ret
= UINT64_MAX
>> start
;
439 if (likely(start
== 0)) {
440 ret
= UINT32_MAX
<< (31 - end
);
441 } else if (likely(end
== 31)) {
442 ret
= UINT32_MAX
>> start
;
446 ret
= (((target_ulong
)(-1ULL)) >> (start
)) ^
447 (((target_ulong
)(-1ULL) >> (end
)) >> 1);
448 if (unlikely(start
> end
))
455 /*****************************************************************************/
456 /* PowerPC instructions table */
458 #if defined(DO_PPC_STATISTICS)
459 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
468 .handler = &gen_##name, \
469 .oname = stringify(name), \
471 .oname = stringify(name), \
473 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
482 .handler = &gen_##name, \
488 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
497 .handler = &gen_##name, \
499 .oname = stringify(name), \
501 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
510 .handler = &gen_##name, \
516 /* SPR load/store helpers */
517 static always_inline
void gen_load_spr(TCGv t
, int reg
)
519 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
522 static always_inline
void gen_store_spr(int reg
, TCGv t
)
524 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
527 /* Invalid instruction */
528 static void gen_invalid(DisasContext
*ctx
)
530 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
533 static opc_handler_t invalid_handler
= {
536 .handler
= gen_invalid
,
539 /*** Integer comparison ***/
541 static always_inline
void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
545 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_xer
);
546 tcg_gen_shri_i32(cpu_crf
[crf
], cpu_crf
[crf
], XER_SO
);
547 tcg_gen_andi_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1);
549 l1
= gen_new_label();
550 l2
= gen_new_label();
551 l3
= gen_new_label();
553 tcg_gen_brcond_tl(TCG_COND_LT
, arg0
, arg1
, l1
);
554 tcg_gen_brcond_tl(TCG_COND_GT
, arg0
, arg1
, l2
);
556 tcg_gen_brcond_tl(TCG_COND_LTU
, arg0
, arg1
, l1
);
557 tcg_gen_brcond_tl(TCG_COND_GTU
, arg0
, arg1
, l2
);
559 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_EQ
);
562 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_LT
);
565 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_GT
);
569 static always_inline
void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
571 TCGv t0
= tcg_const_local_tl(arg1
);
572 gen_op_cmp(arg0
, t0
, s
, crf
);
576 #if defined(TARGET_PPC64)
577 static always_inline
void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
580 t0
= tcg_temp_local_new();
581 t1
= tcg_temp_local_new();
583 tcg_gen_ext32s_tl(t0
, arg0
);
584 tcg_gen_ext32s_tl(t1
, arg1
);
586 tcg_gen_ext32u_tl(t0
, arg0
);
587 tcg_gen_ext32u_tl(t1
, arg1
);
589 gen_op_cmp(t0
, t1
, s
, crf
);
594 static always_inline
void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
596 TCGv t0
= tcg_const_local_tl(arg1
);
597 gen_op_cmp32(arg0
, t0
, s
, crf
);
602 static always_inline
void gen_set_Rc0 (DisasContext
*ctx
, TCGv reg
)
604 #if defined(TARGET_PPC64)
606 gen_op_cmpi32(reg
, 0, 1, 0);
609 gen_op_cmpi(reg
, 0, 1, 0);
613 static void gen_cmp(DisasContext
*ctx
)
615 #if defined(TARGET_PPC64)
616 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
617 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
618 1, crfD(ctx
->opcode
));
621 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
622 1, crfD(ctx
->opcode
));
626 static void gen_cmpi(DisasContext
*ctx
)
628 #if defined(TARGET_PPC64)
629 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
630 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
631 1, crfD(ctx
->opcode
));
634 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
635 1, crfD(ctx
->opcode
));
639 static void gen_cmpl(DisasContext
*ctx
)
641 #if defined(TARGET_PPC64)
642 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
643 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
644 0, crfD(ctx
->opcode
));
647 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
648 0, crfD(ctx
->opcode
));
652 static void gen_cmpli(DisasContext
*ctx
)
654 #if defined(TARGET_PPC64)
655 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
656 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
657 0, crfD(ctx
->opcode
));
660 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
661 0, crfD(ctx
->opcode
));
664 /* isel (PowerPC 2.03 specification) */
665 static void gen_isel(DisasContext
*ctx
)
668 uint32_t bi
= rC(ctx
->opcode
);
672 l1
= gen_new_label();
673 l2
= gen_new_label();
675 mask
= 1 << (3 - (bi
& 0x03));
676 t0
= tcg_temp_new_i32();
677 tcg_gen_andi_i32(t0
, cpu_crf
[bi
>> 2], mask
);
678 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
679 if (rA(ctx
->opcode
) == 0)
680 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
682 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
685 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
687 tcg_temp_free_i32(t0
);
690 /*** Integer arithmetic ***/
692 static always_inline
void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
, TCGv arg1
, TCGv arg2
, int sub
)
697 l1
= gen_new_label();
698 /* Start with XER OV disabled, the most likely case */
699 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
700 t0
= tcg_temp_local_new();
701 tcg_gen_xor_tl(t0
, arg0
, arg1
);
702 #if defined(TARGET_PPC64)
704 tcg_gen_ext32s_tl(t0
, t0
);
707 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
709 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
710 tcg_gen_xor_tl(t0
, arg1
, arg2
);
711 #if defined(TARGET_PPC64)
713 tcg_gen_ext32s_tl(t0
, t0
);
716 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
718 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
719 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
724 static always_inline
void gen_op_arith_compute_ca(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
, int sub
)
726 int l1
= gen_new_label();
728 #if defined(TARGET_PPC64)
729 if (!(ctx
->sf_mode
)) {
734 tcg_gen_ext32u_tl(t0
, arg1
);
735 tcg_gen_ext32u_tl(t1
, arg2
);
737 tcg_gen_brcond_tl(TCG_COND_GTU
, t0
, t1
, l1
);
739 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
741 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
749 tcg_gen_brcond_tl(TCG_COND_GTU
, arg1
, arg2
, l1
);
751 tcg_gen_brcond_tl(TCG_COND_GEU
, arg1
, arg2
, l1
);
753 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
758 /* Common add function */
759 static always_inline
void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
760 int add_ca
, int compute_ca
, int compute_ov
)
764 if ((!compute_ca
&& !compute_ov
) ||
765 (!TCGV_EQUAL(ret
,arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
768 t0
= tcg_temp_local_new();
772 t1
= tcg_temp_local_new();
773 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
774 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
779 if (compute_ca
&& compute_ov
) {
780 /* Start with XER CA and OV disabled, the most likely case */
781 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
782 } else if (compute_ca
) {
783 /* Start with XER CA disabled, the most likely case */
784 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
785 } else if (compute_ov
) {
786 /* Start with XER OV disabled, the most likely case */
787 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
790 tcg_gen_add_tl(t0
, arg1
, arg2
);
793 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
796 tcg_gen_add_tl(t0
, t0
, t1
);
797 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
801 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
804 if (unlikely(Rc(ctx
->opcode
) != 0))
805 gen_set_Rc0(ctx
, t0
);
807 if (!TCGV_EQUAL(t0
, ret
)) {
808 tcg_gen_mov_tl(ret
, t0
);
812 /* Add functions with two operands */
813 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
814 static void glue(gen_, name)(DisasContext *ctx) \
816 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
817 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
818 add_ca, compute_ca, compute_ov); \
820 /* Add functions with one operand and one immediate */
821 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
822 add_ca, compute_ca, compute_ov) \
823 static void glue(gen_, name)(DisasContext *ctx) \
825 TCGv t0 = tcg_const_local_tl(const_val); \
826 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
827 cpu_gpr[rA(ctx->opcode)], t0, \
828 add_ca, compute_ca, compute_ov); \
832 /* add add. addo addo. */
833 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
834 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
835 /* addc addc. addco addco. */
836 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
837 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
838 /* adde adde. addeo addeo. */
839 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
840 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
841 /* addme addme. addmeo addmeo. */
842 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
843 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
844 /* addze addze. addzeo addzeo.*/
845 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
846 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
848 static void gen_addi(DisasContext
*ctx
)
850 target_long simm
= SIMM(ctx
->opcode
);
852 if (rA(ctx
->opcode
) == 0) {
854 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
);
856 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
);
860 static always_inline
void gen_op_addic (DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
863 target_long simm
= SIMM(ctx
->opcode
);
865 /* Start with XER CA and OV disabled, the most likely case */
866 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
868 if (likely(simm
!= 0)) {
869 TCGv t0
= tcg_temp_local_new();
870 tcg_gen_addi_tl(t0
, arg1
, simm
);
871 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
872 tcg_gen_mov_tl(ret
, t0
);
875 tcg_gen_mov_tl(ret
, arg1
);
878 gen_set_Rc0(ctx
, ret
);
882 static void gen_addic(DisasContext
*ctx
)
884 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
887 static void gen_addic_(DisasContext
*ctx
)
889 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
893 static void gen_addis(DisasContext
*ctx
)
895 target_long simm
= SIMM(ctx
->opcode
);
897 if (rA(ctx
->opcode
) == 0) {
899 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
<< 16);
901 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
<< 16);
905 static always_inline
void gen_op_arith_divw (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
906 int sign
, int compute_ov
)
908 int l1
= gen_new_label();
909 int l2
= gen_new_label();
910 TCGv_i32 t0
= tcg_temp_local_new_i32();
911 TCGv_i32 t1
= tcg_temp_local_new_i32();
913 tcg_gen_trunc_tl_i32(t0
, arg1
);
914 tcg_gen_trunc_tl_i32(t1
, arg2
);
915 tcg_gen_brcondi_i32(TCG_COND_EQ
, t1
, 0, l1
);
917 int l3
= gen_new_label();
918 tcg_gen_brcondi_i32(TCG_COND_NE
, t1
, -1, l3
);
919 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
921 tcg_gen_div_i32(t0
, t0
, t1
);
923 tcg_gen_divu_i32(t0
, t0
, t1
);
926 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
931 tcg_gen_sari_i32(t0
, t0
, 31);
933 tcg_gen_movi_i32(t0
, 0);
936 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
939 tcg_gen_extu_i32_tl(ret
, t0
);
940 tcg_temp_free_i32(t0
);
941 tcg_temp_free_i32(t1
);
942 if (unlikely(Rc(ctx
->opcode
) != 0))
943 gen_set_Rc0(ctx
, ret
);
946 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
947 static void glue(gen_, name)(DisasContext *ctx) \
949 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
950 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
953 /* divwu divwu. divwuo divwuo. */
954 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
955 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
956 /* divw divw. divwo divwo. */
957 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
958 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
959 #if defined(TARGET_PPC64)
960 static always_inline
void gen_op_arith_divd (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
961 int sign
, int compute_ov
)
963 int l1
= gen_new_label();
964 int l2
= gen_new_label();
966 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg2
, 0, l1
);
968 int l3
= gen_new_label();
969 tcg_gen_brcondi_i64(TCG_COND_NE
, arg2
, -1, l3
);
970 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg1
, INT64_MIN
, l1
);
972 tcg_gen_div_i64(ret
, arg1
, arg2
);
974 tcg_gen_divu_i64(ret
, arg1
, arg2
);
977 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
982 tcg_gen_sari_i64(ret
, arg1
, 63);
984 tcg_gen_movi_i64(ret
, 0);
987 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
990 if (unlikely(Rc(ctx
->opcode
) != 0))
991 gen_set_Rc0(ctx
, ret
);
993 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
994 static void glue(gen_, name)(DisasContext *ctx) \
996 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
997 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1000 /* divwu divwu. divwuo divwuo. */
1001 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1002 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1003 /* divw divw. divwo divwo. */
1004 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1005 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1009 static void gen_mulhw(DisasContext
*ctx
)
1013 t0
= tcg_temp_new_i64();
1014 t1
= tcg_temp_new_i64();
1015 #if defined(TARGET_PPC64)
1016 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1017 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1018 tcg_gen_mul_i64(t0
, t0
, t1
);
1019 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1021 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1022 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1023 tcg_gen_mul_i64(t0
, t0
, t1
);
1024 tcg_gen_shri_i64(t0
, t0
, 32);
1025 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1027 tcg_temp_free_i64(t0
);
1028 tcg_temp_free_i64(t1
);
1029 if (unlikely(Rc(ctx
->opcode
) != 0))
1030 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1033 /* mulhwu mulhwu. */
1034 static void gen_mulhwu(DisasContext
*ctx
)
1038 t0
= tcg_temp_new_i64();
1039 t1
= tcg_temp_new_i64();
1040 #if defined(TARGET_PPC64)
1041 tcg_gen_ext32u_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1042 tcg_gen_ext32u_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1043 tcg_gen_mul_i64(t0
, t0
, t1
);
1044 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1046 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1047 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1048 tcg_gen_mul_i64(t0
, t0
, t1
);
1049 tcg_gen_shri_i64(t0
, t0
, 32);
1050 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1052 tcg_temp_free_i64(t0
);
1053 tcg_temp_free_i64(t1
);
1054 if (unlikely(Rc(ctx
->opcode
) != 0))
1055 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1059 static void gen_mullw(DisasContext
*ctx
)
1061 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1062 cpu_gpr
[rB(ctx
->opcode
)]);
1063 tcg_gen_ext32s_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)]);
1064 if (unlikely(Rc(ctx
->opcode
) != 0))
1065 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1068 /* mullwo mullwo. */
1069 static void gen_mullwo(DisasContext
*ctx
)
1074 t0
= tcg_temp_new_i64();
1075 t1
= tcg_temp_new_i64();
1076 l1
= gen_new_label();
1077 /* Start with XER OV disabled, the most likely case */
1078 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1079 #if defined(TARGET_PPC64)
1080 tcg_gen_ext32s_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1081 tcg_gen_ext32s_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1083 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1084 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1086 tcg_gen_mul_i64(t0
, t0
, t1
);
1087 #if defined(TARGET_PPC64)
1088 tcg_gen_ext32s_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1089 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, cpu_gpr
[rD(ctx
->opcode
)], l1
);
1091 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1092 tcg_gen_ext32s_i64(t1
, t0
);
1093 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
1095 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1097 tcg_temp_free_i64(t0
);
1098 tcg_temp_free_i64(t1
);
1099 if (unlikely(Rc(ctx
->opcode
) != 0))
1100 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1104 static void gen_mulli(DisasContext
*ctx
)
1106 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1109 #if defined(TARGET_PPC64)
1110 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1111 static void glue(gen_, name)(DisasContext *ctx) \
1113 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1114 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1115 if (unlikely(Rc(ctx->opcode) != 0)) \
1116 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1119 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00);
1120 /* mulhdu mulhdu. */
1121 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02);
1124 static void gen_mulld(DisasContext
*ctx
)
1126 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1127 cpu_gpr
[rB(ctx
->opcode
)]);
1128 if (unlikely(Rc(ctx
->opcode
) != 0))
1129 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1131 /* mulldo mulldo. */
1132 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17);
1135 /* neg neg. nego nego. */
1136 static always_inline
void gen_op_arith_neg (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, int ov_check
)
1138 int l1
= gen_new_label();
1139 int l2
= gen_new_label();
1140 TCGv t0
= tcg_temp_local_new();
1141 #if defined(TARGET_PPC64)
1143 tcg_gen_mov_tl(t0
, arg1
);
1144 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT64_MIN
, l1
);
1148 tcg_gen_ext32s_tl(t0
, arg1
);
1149 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1151 tcg_gen_neg_tl(ret
, arg1
);
1153 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1157 tcg_gen_mov_tl(ret
, t0
);
1159 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1163 if (unlikely(Rc(ctx
->opcode
) != 0))
1164 gen_set_Rc0(ctx
, ret
);
1167 static void gen_neg(DisasContext
*ctx
)
1169 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1172 static void gen_nego(DisasContext
*ctx
)
1174 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1177 /* Common subf function */
1178 static always_inline
void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1179 int add_ca
, int compute_ca
, int compute_ov
)
1183 if ((!compute_ca
&& !compute_ov
) ||
1184 (!TCGV_EQUAL(ret
, arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
1187 t0
= tcg_temp_local_new();
1191 t1
= tcg_temp_local_new();
1192 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
1193 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
1198 if (compute_ca
&& compute_ov
) {
1199 /* Start with XER CA and OV disabled, the most likely case */
1200 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
1201 } else if (compute_ca
) {
1202 /* Start with XER CA disabled, the most likely case */
1203 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1204 } else if (compute_ov
) {
1205 /* Start with XER OV disabled, the most likely case */
1206 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1210 tcg_gen_not_tl(t0
, arg1
);
1211 tcg_gen_add_tl(t0
, t0
, arg2
);
1212 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 0);
1213 tcg_gen_add_tl(t0
, t0
, t1
);
1214 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
1217 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1219 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 1);
1223 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
1226 if (unlikely(Rc(ctx
->opcode
) != 0))
1227 gen_set_Rc0(ctx
, t0
);
1229 if (!TCGV_EQUAL(t0
, ret
)) {
1230 tcg_gen_mov_tl(ret
, t0
);
1234 /* Sub functions with Two operands functions */
1235 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1236 static void glue(gen_, name)(DisasContext *ctx) \
1238 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1239 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1240 add_ca, compute_ca, compute_ov); \
1242 /* Sub functions with one operand and one immediate */
1243 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1244 add_ca, compute_ca, compute_ov) \
1245 static void glue(gen_, name)(DisasContext *ctx) \
1247 TCGv t0 = tcg_const_local_tl(const_val); \
1248 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1249 cpu_gpr[rA(ctx->opcode)], t0, \
1250 add_ca, compute_ca, compute_ov); \
1251 tcg_temp_free(t0); \
1253 /* subf subf. subfo subfo. */
1254 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
1255 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
1256 /* subfc subfc. subfco subfco. */
1257 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
1258 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
1259 /* subfe subfe. subfeo subfo. */
1260 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
1261 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
1262 /* subfme subfme. subfmeo subfmeo. */
1263 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
1264 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
1265 /* subfze subfze. subfzeo subfzeo.*/
1266 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
1267 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
1270 static void gen_subfic(DisasContext
*ctx
)
1272 /* Start with XER CA and OV disabled, the most likely case */
1273 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1274 TCGv t0
= tcg_temp_local_new();
1275 TCGv t1
= tcg_const_local_tl(SIMM(ctx
->opcode
));
1276 tcg_gen_sub_tl(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)]);
1277 gen_op_arith_compute_ca(ctx
, t0
, t1
, 1);
1279 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1283 /*** Integer logical ***/
1284 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1285 static void glue(gen_, name)(DisasContext *ctx) \
1287 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1288 cpu_gpr[rB(ctx->opcode)]); \
1289 if (unlikely(Rc(ctx->opcode) != 0)) \
1290 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1293 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1294 static void glue(gen_, name)(DisasContext *ctx) \
1296 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1297 if (unlikely(Rc(ctx->opcode) != 0)) \
1298 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1302 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
1304 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
1307 static void gen_andi_(DisasContext
*ctx
)
1309 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
));
1310 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1314 static void gen_andis_(DisasContext
*ctx
)
1316 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
) << 16);
1317 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1321 static void gen_cntlzw(DisasContext
*ctx
)
1323 gen_helper_cntlzw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1324 if (unlikely(Rc(ctx
->opcode
) != 0))
1325 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1328 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
1329 /* extsb & extsb. */
1330 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
1331 /* extsh & extsh. */
1332 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
1334 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
1336 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
1339 static void gen_or(DisasContext
*ctx
)
1343 rs
= rS(ctx
->opcode
);
1344 ra
= rA(ctx
->opcode
);
1345 rb
= rB(ctx
->opcode
);
1346 /* Optimisation for mr. ri case */
1347 if (rs
!= ra
|| rs
!= rb
) {
1349 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
1351 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
1352 if (unlikely(Rc(ctx
->opcode
) != 0))
1353 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
1354 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
1355 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
1356 #if defined(TARGET_PPC64)
1362 /* Set process priority to low */
1366 /* Set process priority to medium-low */
1370 /* Set process priority to normal */
1373 #if !defined(CONFIG_USER_ONLY)
1375 if (ctx
->mem_idx
> 0) {
1376 /* Set process priority to very low */
1381 if (ctx
->mem_idx
> 0) {
1382 /* Set process priority to medium-hight */
1387 if (ctx
->mem_idx
> 0) {
1388 /* Set process priority to high */
1393 if (ctx
->mem_idx
> 1) {
1394 /* Set process priority to very high */
1404 TCGv t0
= tcg_temp_new();
1405 gen_load_spr(t0
, SPR_PPR
);
1406 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
1407 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
1408 gen_store_spr(SPR_PPR
, t0
);
1415 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
1418 static void gen_xor(DisasContext
*ctx
)
1420 /* Optimisation for "set to zero" case */
1421 if (rS(ctx
->opcode
) != rB(ctx
->opcode
))
1422 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1424 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1425 if (unlikely(Rc(ctx
->opcode
) != 0))
1426 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1430 static void gen_ori(DisasContext
*ctx
)
1432 target_ulong uimm
= UIMM(ctx
->opcode
);
1434 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1436 /* XXX: should handle special NOPs for POWER series */
1439 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1443 static void gen_oris(DisasContext
*ctx
)
1445 target_ulong uimm
= UIMM(ctx
->opcode
);
1447 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1451 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1455 static void gen_xori(DisasContext
*ctx
)
1457 target_ulong uimm
= UIMM(ctx
->opcode
);
1459 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1463 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1467 static void gen_xoris(DisasContext
*ctx
)
1469 target_ulong uimm
= UIMM(ctx
->opcode
);
1471 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1475 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1478 /* popcntb : PowerPC 2.03 specification */
1479 static void gen_popcntb(DisasContext
*ctx
)
1481 #if defined(TARGET_PPC64)
1483 gen_helper_popcntb_64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1486 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1489 #if defined(TARGET_PPC64)
1490 /* extsw & extsw. */
1491 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
1494 static void gen_cntlzd(DisasContext
*ctx
)
1496 gen_helper_cntlzd(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1497 if (unlikely(Rc(ctx
->opcode
) != 0))
1498 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1502 /*** Integer rotate ***/
1504 /* rlwimi & rlwimi. */
1505 static void gen_rlwimi(DisasContext
*ctx
)
1507 uint32_t mb
, me
, sh
;
1509 mb
= MB(ctx
->opcode
);
1510 me
= ME(ctx
->opcode
);
1511 sh
= SH(ctx
->opcode
);
1512 if (likely(sh
== 0 && mb
== 0 && me
== 31)) {
1513 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1517 TCGv t0
= tcg_temp_new();
1518 #if defined(TARGET_PPC64)
1519 TCGv_i32 t2
= tcg_temp_new_i32();
1520 tcg_gen_trunc_i64_i32(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
1521 tcg_gen_rotli_i32(t2
, t2
, sh
);
1522 tcg_gen_extu_i32_i64(t0
, t2
);
1523 tcg_temp_free_i32(t2
);
1525 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1527 #if defined(TARGET_PPC64)
1531 mask
= MASK(mb
, me
);
1532 t1
= tcg_temp_new();
1533 tcg_gen_andi_tl(t0
, t0
, mask
);
1534 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1535 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1539 if (unlikely(Rc(ctx
->opcode
) != 0))
1540 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1543 /* rlwinm & rlwinm. */
1544 static void gen_rlwinm(DisasContext
*ctx
)
1546 uint32_t mb
, me
, sh
;
1548 sh
= SH(ctx
->opcode
);
1549 mb
= MB(ctx
->opcode
);
1550 me
= ME(ctx
->opcode
);
1552 if (likely(mb
== 0 && me
== (31 - sh
))) {
1553 if (likely(sh
== 0)) {
1554 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1556 TCGv t0
= tcg_temp_new();
1557 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1558 tcg_gen_shli_tl(t0
, t0
, sh
);
1559 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1562 } else if (likely(sh
!= 0 && me
== 31 && sh
== (32 - mb
))) {
1563 TCGv t0
= tcg_temp_new();
1564 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1565 tcg_gen_shri_tl(t0
, t0
, mb
);
1566 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1569 TCGv t0
= tcg_temp_new();
1570 #if defined(TARGET_PPC64)
1571 TCGv_i32 t1
= tcg_temp_new_i32();
1572 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1573 tcg_gen_rotli_i32(t1
, t1
, sh
);
1574 tcg_gen_extu_i32_i64(t0
, t1
);
1575 tcg_temp_free_i32(t1
);
1577 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1579 #if defined(TARGET_PPC64)
1583 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1586 if (unlikely(Rc(ctx
->opcode
) != 0))
1587 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1590 /* rlwnm & rlwnm. */
1591 static void gen_rlwnm(DisasContext
*ctx
)
1595 #if defined(TARGET_PPC64)
1599 mb
= MB(ctx
->opcode
);
1600 me
= ME(ctx
->opcode
);
1601 t0
= tcg_temp_new();
1602 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1603 #if defined(TARGET_PPC64)
1604 t1
= tcg_temp_new_i32();
1605 t2
= tcg_temp_new_i32();
1606 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1607 tcg_gen_trunc_i64_i32(t2
, t0
);
1608 tcg_gen_rotl_i32(t1
, t1
, t2
);
1609 tcg_gen_extu_i32_i64(t0
, t1
);
1610 tcg_temp_free_i32(t1
);
1611 tcg_temp_free_i32(t2
);
1613 tcg_gen_rotl_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1615 if (unlikely(mb
!= 0 || me
!= 31)) {
1616 #if defined(TARGET_PPC64)
1620 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1622 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1625 if (unlikely(Rc(ctx
->opcode
) != 0))
1626 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1629 #if defined(TARGET_PPC64)
1630 #define GEN_PPC64_R2(name, opc1, opc2) \
1631 static void glue(gen_, name##0)(DisasContext *ctx) \
1633 gen_##name(ctx, 0); \
1636 static void glue(gen_, name##1)(DisasContext *ctx) \
1638 gen_##name(ctx, 1); \
1640 #define GEN_PPC64_R4(name, opc1, opc2) \
1641 static void glue(gen_, name##0)(DisasContext *ctx) \
1643 gen_##name(ctx, 0, 0); \
1646 static void glue(gen_, name##1)(DisasContext *ctx) \
1648 gen_##name(ctx, 0, 1); \
1651 static void glue(gen_, name##2)(DisasContext *ctx) \
1653 gen_##name(ctx, 1, 0); \
1656 static void glue(gen_, name##3)(DisasContext *ctx) \
1658 gen_##name(ctx, 1, 1); \
1661 static always_inline
void gen_rldinm (DisasContext
*ctx
, uint32_t mb
,
1662 uint32_t me
, uint32_t sh
)
1664 if (likely(sh
!= 0 && mb
== 0 && me
== (63 - sh
))) {
1665 tcg_gen_shli_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1666 } else if (likely(sh
!= 0 && me
== 63 && sh
== (64 - mb
))) {
1667 tcg_gen_shri_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], mb
);
1669 TCGv t0
= tcg_temp_new();
1670 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1671 if (likely(mb
== 0 && me
== 63)) {
1672 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1674 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1678 if (unlikely(Rc(ctx
->opcode
) != 0))
1679 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1681 /* rldicl - rldicl. */
1682 static always_inline
void gen_rldicl (DisasContext
*ctx
, int mbn
, int shn
)
1686 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1687 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1688 gen_rldinm(ctx
, mb
, 63, sh
);
1690 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
1691 /* rldicr - rldicr. */
1692 static always_inline
void gen_rldicr (DisasContext
*ctx
, int men
, int shn
)
1696 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1697 me
= MB(ctx
->opcode
) | (men
<< 5);
1698 gen_rldinm(ctx
, 0, me
, sh
);
1700 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
1701 /* rldic - rldic. */
1702 static always_inline
void gen_rldic (DisasContext
*ctx
, int mbn
, int shn
)
1706 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1707 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1708 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
1710 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
1712 static always_inline
void gen_rldnm (DisasContext
*ctx
, uint32_t mb
,
1717 mb
= MB(ctx
->opcode
);
1718 me
= ME(ctx
->opcode
);
1719 t0
= tcg_temp_new();
1720 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1721 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1722 if (unlikely(mb
!= 0 || me
!= 63)) {
1723 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1725 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1728 if (unlikely(Rc(ctx
->opcode
) != 0))
1729 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1732 /* rldcl - rldcl. */
1733 static always_inline
void gen_rldcl (DisasContext
*ctx
, int mbn
)
1737 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1738 gen_rldnm(ctx
, mb
, 63);
1740 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
1741 /* rldcr - rldcr. */
1742 static always_inline
void gen_rldcr (DisasContext
*ctx
, int men
)
1746 me
= MB(ctx
->opcode
) | (men
<< 5);
1747 gen_rldnm(ctx
, 0, me
);
1749 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
1750 /* rldimi - rldimi. */
1751 static always_inline
void gen_rldimi (DisasContext
*ctx
, int mbn
, int shn
)
1753 uint32_t sh
, mb
, me
;
1755 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1756 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1758 if (unlikely(sh
== 0 && mb
== 0)) {
1759 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1764 t0
= tcg_temp_new();
1765 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1766 t1
= tcg_temp_new();
1767 mask
= MASK(mb
, me
);
1768 tcg_gen_andi_tl(t0
, t0
, mask
);
1769 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1770 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1774 if (unlikely(Rc(ctx
->opcode
) != 0))
1775 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1777 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
1780 /*** Integer shift ***/
1783 static void gen_slw(DisasContext
*ctx
)
1787 l1
= gen_new_label();
1788 l2
= gen_new_label();
1790 t0
= tcg_temp_local_new();
1791 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1792 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1793 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1796 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
1797 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
1800 if (unlikely(Rc(ctx
->opcode
) != 0))
1801 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1805 static void gen_sraw(DisasContext
*ctx
)
1807 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)],
1808 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1809 if (unlikely(Rc(ctx
->opcode
) != 0))
1810 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1813 /* srawi & srawi. */
1814 static void gen_srawi(DisasContext
*ctx
)
1816 int sh
= SH(ctx
->opcode
);
1820 l1
= gen_new_label();
1821 l2
= gen_new_label();
1822 t0
= tcg_temp_local_new();
1823 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1824 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
1825 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1826 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1827 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1830 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1832 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1833 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, sh
);
1836 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1837 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1839 if (unlikely(Rc(ctx
->opcode
) != 0))
1840 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1844 static void gen_srw(DisasContext
*ctx
)
1848 l1
= gen_new_label();
1849 l2
= gen_new_label();
1851 t0
= tcg_temp_local_new();
1852 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1853 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1854 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1857 t1
= tcg_temp_new();
1858 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1859 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
, t0
);
1863 if (unlikely(Rc(ctx
->opcode
) != 0))
1864 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1867 #if defined(TARGET_PPC64)
1869 static void gen_sld(DisasContext
*ctx
)
1873 l1
= gen_new_label();
1874 l2
= gen_new_label();
1876 t0
= tcg_temp_local_new();
1877 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
1878 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
1879 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1882 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
1885 if (unlikely(Rc(ctx
->opcode
) != 0))
1886 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1890 static void gen_srad(DisasContext
*ctx
)
1892 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)],
1893 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1894 if (unlikely(Rc(ctx
->opcode
) != 0))
1895 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1897 /* sradi & sradi. */
1898 static always_inline
void gen_sradi (DisasContext
*ctx
, int n
)
1900 int sh
= SH(ctx
->opcode
) + (n
<< 5);
1904 l1
= gen_new_label();
1905 l2
= gen_new_label();
1906 t0
= tcg_temp_local_new();
1907 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
1908 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1909 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1910 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1913 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1916 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1918 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1919 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1921 if (unlikely(Rc(ctx
->opcode
) != 0))
1922 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1925 static void gen_sradi0(DisasContext
*ctx
)
1930 static void gen_sradi1(DisasContext
*ctx
)
1936 static void gen_srd(DisasContext
*ctx
)
1940 l1
= gen_new_label();
1941 l2
= gen_new_label();
1943 t0
= tcg_temp_local_new();
1944 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
1945 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
1946 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1949 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
1952 if (unlikely(Rc(ctx
->opcode
) != 0))
1953 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1957 /*** Floating-Point arithmetic ***/
1958 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
1959 static void gen_f##name(DisasContext *ctx) \
1961 if (unlikely(!ctx->fpu_enabled)) { \
1962 gen_exception(ctx, POWERPC_EXCP_FPU); \
1965 /* NIP cannot be restored if the memory exception comes from an helper */ \
1966 gen_update_nip(ctx, ctx->nip - 4); \
1967 gen_reset_fpstatus(); \
1968 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
1969 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
1971 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
1973 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
1974 Rc(ctx->opcode) != 0); \
1977 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
1978 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
1979 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
1981 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
1982 static void gen_f##name(DisasContext *ctx) \
1984 if (unlikely(!ctx->fpu_enabled)) { \
1985 gen_exception(ctx, POWERPC_EXCP_FPU); \
1988 /* NIP cannot be restored if the memory exception comes from an helper */ \
1989 gen_update_nip(ctx, ctx->nip - 4); \
1990 gen_reset_fpstatus(); \
1991 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
1992 cpu_fpr[rB(ctx->opcode)]); \
1994 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
1996 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
1997 set_fprf, Rc(ctx->opcode) != 0); \
1999 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2000 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2001 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2003 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2004 static void gen_f##name(DisasContext *ctx) \
2006 if (unlikely(!ctx->fpu_enabled)) { \
2007 gen_exception(ctx, POWERPC_EXCP_FPU); \
2010 /* NIP cannot be restored if the memory exception comes from an helper */ \
2011 gen_update_nip(ctx, ctx->nip - 4); \
2012 gen_reset_fpstatus(); \
2013 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2014 cpu_fpr[rC(ctx->opcode)]); \
2016 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2018 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2019 set_fprf, Rc(ctx->opcode) != 0); \
2021 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
2022 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2023 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2025 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2026 static void gen_f##name(DisasContext *ctx) \
2028 if (unlikely(!ctx->fpu_enabled)) { \
2029 gen_exception(ctx, POWERPC_EXCP_FPU); \
2032 /* NIP cannot be restored if the memory exception comes from an helper */ \
2033 gen_update_nip(ctx, ctx->nip - 4); \
2034 gen_reset_fpstatus(); \
2035 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2036 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2037 set_fprf, Rc(ctx->opcode) != 0); \
2040 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2041 static void gen_f##name(DisasContext *ctx) \
2043 if (unlikely(!ctx->fpu_enabled)) { \
2044 gen_exception(ctx, POWERPC_EXCP_FPU); \
2047 /* NIP cannot be restored if the memory exception comes from an helper */ \
2048 gen_update_nip(ctx, ctx->nip - 4); \
2049 gen_reset_fpstatus(); \
2050 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2051 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2052 set_fprf, Rc(ctx->opcode) != 0); \
2056 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
);
2058 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
);
2060 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
);
2063 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
);
2066 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
);
2069 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
);
2072 static void gen_frsqrtes(DisasContext
*ctx
)
2074 if (unlikely(!ctx
->fpu_enabled
)) {
2075 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2078 /* NIP cannot be restored if the memory exception comes from an helper */
2079 gen_update_nip(ctx
, ctx
->nip
- 4);
2080 gen_reset_fpstatus();
2081 gen_helper_frsqrte(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2082 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2083 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2087 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
);
2089 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
);
2093 static void gen_fsqrt(DisasContext
*ctx
)
2095 if (unlikely(!ctx
->fpu_enabled
)) {
2096 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2099 /* NIP cannot be restored if the memory exception comes from an helper */
2100 gen_update_nip(ctx
, ctx
->nip
- 4);
2101 gen_reset_fpstatus();
2102 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2103 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2106 static void gen_fsqrts(DisasContext
*ctx
)
2108 if (unlikely(!ctx
->fpu_enabled
)) {
2109 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2112 /* NIP cannot be restored if the memory exception comes from an helper */
2113 gen_update_nip(ctx
, ctx
->nip
- 4);
2114 gen_reset_fpstatus();
2115 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2116 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2117 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2120 /*** Floating-Point multiply-and-add ***/
2121 /* fmadd - fmadds */
2122 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
);
2123 /* fmsub - fmsubs */
2124 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
);
2125 /* fnmadd - fnmadds */
2126 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
);
2127 /* fnmsub - fnmsubs */
2128 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
);
2130 /*** Floating-Point round & convert ***/
2132 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
);
2134 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
);
2136 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
);
2137 #if defined(TARGET_PPC64)
2139 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
);
2141 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
);
2143 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
);
2147 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
);
2149 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
);
2151 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
);
2153 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
);
2155 /*** Floating-Point compare ***/
2158 static void gen_fcmpo(DisasContext
*ctx
)
2161 if (unlikely(!ctx
->fpu_enabled
)) {
2162 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2165 /* NIP cannot be restored if the memory exception comes from an helper */
2166 gen_update_nip(ctx
, ctx
->nip
- 4);
2167 gen_reset_fpstatus();
2168 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2169 gen_helper_fcmpo(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2170 tcg_temp_free_i32(crf
);
2171 gen_helper_float_check_status();
2175 static void gen_fcmpu(DisasContext
*ctx
)
2178 if (unlikely(!ctx
->fpu_enabled
)) {
2179 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2182 /* NIP cannot be restored if the memory exception comes from an helper */
2183 gen_update_nip(ctx
, ctx
->nip
- 4);
2184 gen_reset_fpstatus();
2185 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2186 gen_helper_fcmpu(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2187 tcg_temp_free_i32(crf
);
2188 gen_helper_float_check_status();
2191 /*** Floating-point move ***/
2193 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2194 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
);
2197 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2198 static void gen_fmr(DisasContext
*ctx
)
2200 if (unlikely(!ctx
->fpu_enabled
)) {
2201 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2204 tcg_gen_mov_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2205 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2209 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2210 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
);
2212 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2213 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
);
2215 /*** Floating-Point status & ctrl register ***/
2218 static void gen_mcrfs(DisasContext
*ctx
)
2222 if (unlikely(!ctx
->fpu_enabled
)) {
2223 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2226 bfa
= 4 * (7 - crfS(ctx
->opcode
));
2227 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_fpscr
, bfa
);
2228 tcg_gen_andi_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], 0xf);
2229 tcg_gen_andi_i32(cpu_fpscr
, cpu_fpscr
, ~(0xF << bfa
));
2233 static void gen_mffs(DisasContext
*ctx
)
2235 if (unlikely(!ctx
->fpu_enabled
)) {
2236 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2239 gen_reset_fpstatus();
2240 tcg_gen_extu_i32_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpscr
);
2241 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2245 static void gen_mtfsb0(DisasContext
*ctx
)
2249 if (unlikely(!ctx
->fpu_enabled
)) {
2250 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2253 crb
= 31 - crbD(ctx
->opcode
);
2254 gen_reset_fpstatus();
2255 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
)) {
2257 /* NIP cannot be restored if the memory exception comes from an helper */
2258 gen_update_nip(ctx
, ctx
->nip
- 4);
2259 t0
= tcg_const_i32(crb
);
2260 gen_helper_fpscr_clrbit(t0
);
2261 tcg_temp_free_i32(t0
);
2263 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2264 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2269 static void gen_mtfsb1(DisasContext
*ctx
)
2273 if (unlikely(!ctx
->fpu_enabled
)) {
2274 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2277 crb
= 31 - crbD(ctx
->opcode
);
2278 gen_reset_fpstatus();
2279 /* XXX: we pretend we can only do IEEE floating-point computations */
2280 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
&& crb
!= FPSCR_NI
)) {
2282 /* NIP cannot be restored if the memory exception comes from an helper */
2283 gen_update_nip(ctx
, ctx
->nip
- 4);
2284 t0
= tcg_const_i32(crb
);
2285 gen_helper_fpscr_setbit(t0
);
2286 tcg_temp_free_i32(t0
);
2288 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2289 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2291 /* We can raise a differed exception */
2292 gen_helper_float_check_status();
2296 static void gen_mtfsf(DisasContext
*ctx
)
2299 int L
= ctx
->opcode
& 0x02000000;
2301 if (unlikely(!ctx
->fpu_enabled
)) {
2302 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2305 /* NIP cannot be restored if the memory exception comes from an helper */
2306 gen_update_nip(ctx
, ctx
->nip
- 4);
2307 gen_reset_fpstatus();
2309 t0
= tcg_const_i32(0xff);
2311 t0
= tcg_const_i32(FM(ctx
->opcode
));
2312 gen_helper_store_fpscr(cpu_fpr
[rB(ctx
->opcode
)], t0
);
2313 tcg_temp_free_i32(t0
);
2314 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2315 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2317 /* We can raise a differed exception */
2318 gen_helper_float_check_status();
2322 static void gen_mtfsfi(DisasContext
*ctx
)
2328 if (unlikely(!ctx
->fpu_enabled
)) {
2329 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2332 bf
= crbD(ctx
->opcode
) >> 2;
2334 /* NIP cannot be restored if the memory exception comes from an helper */
2335 gen_update_nip(ctx
, ctx
->nip
- 4);
2336 gen_reset_fpstatus();
2337 t0
= tcg_const_i64(FPIMM(ctx
->opcode
) << (4 * sh
));
2338 t1
= tcg_const_i32(1 << sh
);
2339 gen_helper_store_fpscr(t0
, t1
);
2340 tcg_temp_free_i64(t0
);
2341 tcg_temp_free_i32(t1
);
2342 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2343 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2345 /* We can raise a differed exception */
2346 gen_helper_float_check_status();
2349 /*** Addressing modes ***/
2350 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2351 static always_inline
void gen_addr_imm_index (DisasContext
*ctx
, TCGv EA
, target_long maskl
)
2353 target_long simm
= SIMM(ctx
->opcode
);
2356 if (rA(ctx
->opcode
) == 0) {
2357 #if defined(TARGET_PPC64)
2358 if (!ctx
->sf_mode
) {
2359 tcg_gen_movi_tl(EA
, (uint32_t)simm
);
2362 tcg_gen_movi_tl(EA
, simm
);
2363 } else if (likely(simm
!= 0)) {
2364 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
2365 #if defined(TARGET_PPC64)
2366 if (!ctx
->sf_mode
) {
2367 tcg_gen_ext32u_tl(EA
, EA
);
2371 #if defined(TARGET_PPC64)
2372 if (!ctx
->sf_mode
) {
2373 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2376 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2380 static always_inline
void gen_addr_reg_index (DisasContext
*ctx
, TCGv EA
)
2382 if (rA(ctx
->opcode
) == 0) {
2383 #if defined(TARGET_PPC64)
2384 if (!ctx
->sf_mode
) {
2385 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2388 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2390 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2391 #if defined(TARGET_PPC64)
2392 if (!ctx
->sf_mode
) {
2393 tcg_gen_ext32u_tl(EA
, EA
);
2399 static always_inline
void gen_addr_register (DisasContext
*ctx
, TCGv EA
)
2401 if (rA(ctx
->opcode
) == 0) {
2402 tcg_gen_movi_tl(EA
, 0);
2404 #if defined(TARGET_PPC64)
2405 if (!ctx
->sf_mode
) {
2406 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2409 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2413 static always_inline
void gen_addr_add (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, target_long val
)
2415 tcg_gen_addi_tl(ret
, arg1
, val
);
2416 #if defined(TARGET_PPC64)
2417 if (!ctx
->sf_mode
) {
2418 tcg_gen_ext32u_tl(ret
, ret
);
2423 static always_inline
void gen_check_align (DisasContext
*ctx
, TCGv EA
, int mask
)
2425 int l1
= gen_new_label();
2426 TCGv t0
= tcg_temp_new();
2428 /* NIP cannot be restored if the memory exception comes from an helper */
2429 gen_update_nip(ctx
, ctx
->nip
- 4);
2430 tcg_gen_andi_tl(t0
, EA
, mask
);
2431 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2432 t1
= tcg_const_i32(POWERPC_EXCP_ALIGN
);
2433 t2
= tcg_const_i32(0);
2434 gen_helper_raise_exception_err(t1
, t2
);
2435 tcg_temp_free_i32(t1
);
2436 tcg_temp_free_i32(t2
);
2441 /*** Integer load ***/
2442 static always_inline
void gen_qemu_ld8u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2444 tcg_gen_qemu_ld8u(arg1
, arg2
, ctx
->mem_idx
);
2447 static always_inline
void gen_qemu_ld8s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2449 tcg_gen_qemu_ld8s(arg1
, arg2
, ctx
->mem_idx
);
2452 static always_inline
void gen_qemu_ld16u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2454 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2455 if (unlikely(ctx
->le_mode
)) {
2456 tcg_gen_bswap16_tl(arg1
, arg1
);
2460 static always_inline
void gen_qemu_ld16s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2462 if (unlikely(ctx
->le_mode
)) {
2463 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2464 tcg_gen_bswap16_tl(arg1
, arg1
);
2465 tcg_gen_ext16s_tl(arg1
, arg1
);
2467 tcg_gen_qemu_ld16s(arg1
, arg2
, ctx
->mem_idx
);
2471 static always_inline
void gen_qemu_ld32u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2473 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2474 if (unlikely(ctx
->le_mode
)) {
2475 tcg_gen_bswap32_tl(arg1
, arg1
);
2479 #if defined(TARGET_PPC64)
2480 static always_inline
void gen_qemu_ld32s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2482 if (unlikely(ctx
->le_mode
)) {
2483 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2484 tcg_gen_bswap32_tl(arg1
, arg1
);
2485 tcg_gen_ext32s_tl(arg1
, arg1
);
2487 tcg_gen_qemu_ld32s(arg1
, arg2
, ctx
->mem_idx
);
2491 static always_inline
void gen_qemu_ld64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2493 tcg_gen_qemu_ld64(arg1
, arg2
, ctx
->mem_idx
);
2494 if (unlikely(ctx
->le_mode
)) {
2495 tcg_gen_bswap64_i64(arg1
, arg1
);
2499 static always_inline
void gen_qemu_st8(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2501 tcg_gen_qemu_st8(arg1
, arg2
, ctx
->mem_idx
);
2504 static always_inline
void gen_qemu_st16(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2506 if (unlikely(ctx
->le_mode
)) {
2507 TCGv t0
= tcg_temp_new();
2508 tcg_gen_ext16u_tl(t0
, arg1
);
2509 tcg_gen_bswap16_tl(t0
, t0
);
2510 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2513 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2517 static always_inline
void gen_qemu_st32(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2519 if (unlikely(ctx
->le_mode
)) {
2520 TCGv t0
= tcg_temp_new();
2521 tcg_gen_ext32u_tl(t0
, arg1
);
2522 tcg_gen_bswap32_tl(t0
, t0
);
2523 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2526 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2530 static always_inline
void gen_qemu_st64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2532 if (unlikely(ctx
->le_mode
)) {
2533 TCGv_i64 t0
= tcg_temp_new_i64();
2534 tcg_gen_bswap64_i64(t0
, arg1
);
2535 tcg_gen_qemu_st64(t0
, arg2
, ctx
->mem_idx
);
2536 tcg_temp_free_i64(t0
);
2538 tcg_gen_qemu_st64(arg1
, arg2
, ctx
->mem_idx
);
2541 #define GEN_LD(name, ldop, opc, type) \
2542 static void glue(gen_, name)(DisasContext *ctx) \
2545 gen_set_access_type(ctx, ACCESS_INT); \
2546 EA = tcg_temp_new(); \
2547 gen_addr_imm_index(ctx, EA, 0); \
2548 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2549 tcg_temp_free(EA); \
2552 #define GEN_LDU(name, ldop, opc, type) \
2553 static void glue(gen_, name##u)(DisasContext *ctx) \
2556 if (unlikely(rA(ctx->opcode) == 0 || \
2557 rA(ctx->opcode) == rD(ctx->opcode))) { \
2558 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2561 gen_set_access_type(ctx, ACCESS_INT); \
2562 EA = tcg_temp_new(); \
2563 if (type == PPC_64B) \
2564 gen_addr_imm_index(ctx, EA, 0x03); \
2566 gen_addr_imm_index(ctx, EA, 0); \
2567 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2568 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2569 tcg_temp_free(EA); \
2572 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2573 static void glue(gen_, name##ux)(DisasContext *ctx) \
2576 if (unlikely(rA(ctx->opcode) == 0 || \
2577 rA(ctx->opcode) == rD(ctx->opcode))) { \
2578 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2581 gen_set_access_type(ctx, ACCESS_INT); \
2582 EA = tcg_temp_new(); \
2583 gen_addr_reg_index(ctx, EA); \
2584 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2585 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2586 tcg_temp_free(EA); \
2589 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2590 static void glue(gen_, name##x)(DisasContext *ctx) \
2593 gen_set_access_type(ctx, ACCESS_INT); \
2594 EA = tcg_temp_new(); \
2595 gen_addr_reg_index(ctx, EA); \
2596 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2597 tcg_temp_free(EA); \
2600 #define GEN_LDS(name, ldop, op, type) \
2601 GEN_LD(name, ldop, op | 0x20, type); \
2602 GEN_LDU(name, ldop, op | 0x21, type); \
2603 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2604 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2606 /* lbz lbzu lbzux lbzx */
2607 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
);
2608 /* lha lhau lhaux lhax */
2609 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
);
2610 /* lhz lhzu lhzux lhzx */
2611 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
);
2612 /* lwz lwzu lwzux lwzx */
2613 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
);
2614 #if defined(TARGET_PPC64)
2616 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
);
2618 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
);
2620 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
);
2622 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
);
2624 static void gen_ld(DisasContext
*ctx
)
2627 if (Rc(ctx
->opcode
)) {
2628 if (unlikely(rA(ctx
->opcode
) == 0 ||
2629 rA(ctx
->opcode
) == rD(ctx
->opcode
))) {
2630 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2634 gen_set_access_type(ctx
, ACCESS_INT
);
2635 EA
= tcg_temp_new();
2636 gen_addr_imm_index(ctx
, EA
, 0x03);
2637 if (ctx
->opcode
& 0x02) {
2638 /* lwa (lwau is undefined) */
2639 gen_qemu_ld32s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2642 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2644 if (Rc(ctx
->opcode
))
2645 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2650 static void gen_lq(DisasContext
*ctx
)
2652 #if defined(CONFIG_USER_ONLY)
2653 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2658 /* Restore CPU state */
2659 if (unlikely(ctx
->mem_idx
== 0)) {
2660 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2663 ra
= rA(ctx
->opcode
);
2664 rd
= rD(ctx
->opcode
);
2665 if (unlikely((rd
& 1) || rd
== ra
)) {
2666 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2669 if (unlikely(ctx
->le_mode
)) {
2670 /* Little-endian mode is not handled */
2671 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2674 gen_set_access_type(ctx
, ACCESS_INT
);
2675 EA
= tcg_temp_new();
2676 gen_addr_imm_index(ctx
, EA
, 0x0F);
2677 gen_qemu_ld64(ctx
, cpu_gpr
[rd
], EA
);
2678 gen_addr_add(ctx
, EA
, EA
, 8);
2679 gen_qemu_ld64(ctx
, cpu_gpr
[rd
+1], EA
);
2685 /*** Integer store ***/
2686 #define GEN_ST(name, stop, opc, type) \
2687 static void glue(gen_, name)(DisasContext *ctx) \
2690 gen_set_access_type(ctx, ACCESS_INT); \
2691 EA = tcg_temp_new(); \
2692 gen_addr_imm_index(ctx, EA, 0); \
2693 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2694 tcg_temp_free(EA); \
2697 #define GEN_STU(name, stop, opc, type) \
2698 static void glue(gen_, stop##u)(DisasContext *ctx) \
2701 if (unlikely(rA(ctx->opcode) == 0)) { \
2702 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2705 gen_set_access_type(ctx, ACCESS_INT); \
2706 EA = tcg_temp_new(); \
2707 if (type == PPC_64B) \
2708 gen_addr_imm_index(ctx, EA, 0x03); \
2710 gen_addr_imm_index(ctx, EA, 0); \
2711 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2712 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2713 tcg_temp_free(EA); \
2716 #define GEN_STUX(name, stop, opc2, opc3, type) \
2717 static void glue(gen_, name##ux)(DisasContext *ctx) \
2720 if (unlikely(rA(ctx->opcode) == 0)) { \
2721 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2724 gen_set_access_type(ctx, ACCESS_INT); \
2725 EA = tcg_temp_new(); \
2726 gen_addr_reg_index(ctx, EA); \
2727 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2728 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2729 tcg_temp_free(EA); \
2732 #define GEN_STX(name, stop, opc2, opc3, type) \
2733 static void glue(gen_, name##x)(DisasContext *ctx) \
2736 gen_set_access_type(ctx, ACCESS_INT); \
2737 EA = tcg_temp_new(); \
2738 gen_addr_reg_index(ctx, EA); \
2739 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2740 tcg_temp_free(EA); \
2743 #define GEN_STS(name, stop, op, type) \
2744 GEN_ST(name, stop, op | 0x20, type); \
2745 GEN_STU(name, stop, op | 0x21, type); \
2746 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2747 GEN_STX(name, stop, 0x17, op | 0x00, type)
2749 /* stb stbu stbux stbx */
2750 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
);
2751 /* sth sthu sthux sthx */
2752 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
);
2753 /* stw stwu stwux stwx */
2754 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
);
2755 #if defined(TARGET_PPC64)
2756 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
);
2757 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
);
2759 static void gen_std(DisasContext
*ctx
)
2764 rs
= rS(ctx
->opcode
);
2765 if ((ctx
->opcode
& 0x3) == 0x2) {
2766 #if defined(CONFIG_USER_ONLY)
2767 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2770 if (unlikely(ctx
->mem_idx
== 0)) {
2771 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2774 if (unlikely(rs
& 1)) {
2775 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2778 if (unlikely(ctx
->le_mode
)) {
2779 /* Little-endian mode is not handled */
2780 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2783 gen_set_access_type(ctx
, ACCESS_INT
);
2784 EA
= tcg_temp_new();
2785 gen_addr_imm_index(ctx
, EA
, 0x03);
2786 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2787 gen_addr_add(ctx
, EA
, EA
, 8);
2788 gen_qemu_st64(ctx
, cpu_gpr
[rs
+1], EA
);
2793 if (Rc(ctx
->opcode
)) {
2794 if (unlikely(rA(ctx
->opcode
) == 0)) {
2795 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2799 gen_set_access_type(ctx
, ACCESS_INT
);
2800 EA
= tcg_temp_new();
2801 gen_addr_imm_index(ctx
, EA
, 0x03);
2802 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2803 if (Rc(ctx
->opcode
))
2804 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2809 /*** Integer load and store with byte reverse ***/
2811 static void always_inline
gen_qemu_ld16ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2813 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2814 if (likely(!ctx
->le_mode
)) {
2815 tcg_gen_bswap16_tl(arg1
, arg1
);
2818 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
2821 static void always_inline
gen_qemu_ld32ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2823 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2824 if (likely(!ctx
->le_mode
)) {
2825 tcg_gen_bswap32_tl(arg1
, arg1
);
2828 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
2831 static void always_inline
gen_qemu_st16r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2833 if (likely(!ctx
->le_mode
)) {
2834 TCGv t0
= tcg_temp_new();
2835 tcg_gen_ext16u_tl(t0
, arg1
);
2836 tcg_gen_bswap16_tl(t0
, t0
);
2837 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2840 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2843 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
2846 static void always_inline
gen_qemu_st32r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2848 if (likely(!ctx
->le_mode
)) {
2849 TCGv t0
= tcg_temp_new();
2850 tcg_gen_ext32u_tl(t0
, arg1
);
2851 tcg_gen_bswap32_tl(t0
, t0
);
2852 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2855 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2858 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
2860 /*** Integer load and store multiple ***/
2863 static void gen_lmw(DisasContext
*ctx
)
2867 gen_set_access_type(ctx
, ACCESS_INT
);
2868 /* NIP cannot be restored if the memory exception comes from an helper */
2869 gen_update_nip(ctx
, ctx
->nip
- 4);
2870 t0
= tcg_temp_new();
2871 t1
= tcg_const_i32(rD(ctx
->opcode
));
2872 gen_addr_imm_index(ctx
, t0
, 0);
2873 gen_helper_lmw(t0
, t1
);
2875 tcg_temp_free_i32(t1
);
2879 static void gen_stmw(DisasContext
*ctx
)
2883 gen_set_access_type(ctx
, ACCESS_INT
);
2884 /* NIP cannot be restored if the memory exception comes from an helper */
2885 gen_update_nip(ctx
, ctx
->nip
- 4);
2886 t0
= tcg_temp_new();
2887 t1
= tcg_const_i32(rS(ctx
->opcode
));
2888 gen_addr_imm_index(ctx
, t0
, 0);
2889 gen_helper_stmw(t0
, t1
);
2891 tcg_temp_free_i32(t1
);
2894 /*** Integer load and store strings ***/
2897 /* PowerPC32 specification says we must generate an exception if
2898 * rA is in the range of registers to be loaded.
2899 * In an other hand, IBM says this is valid, but rA won't be loaded.
2900 * For now, I'll follow the spec...
2902 static void gen_lswi(DisasContext
*ctx
)
2906 int nb
= NB(ctx
->opcode
);
2907 int start
= rD(ctx
->opcode
);
2908 int ra
= rA(ctx
->opcode
);
2914 if (unlikely(((start
+ nr
) > 32 &&
2915 start
<= ra
&& (start
+ nr
- 32) > ra
) ||
2916 ((start
+ nr
) <= 32 && start
<= ra
&& (start
+ nr
) > ra
))) {
2917 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
2920 gen_set_access_type(ctx
, ACCESS_INT
);
2921 /* NIP cannot be restored if the memory exception comes from an helper */
2922 gen_update_nip(ctx
, ctx
->nip
- 4);
2923 t0
= tcg_temp_new();
2924 gen_addr_register(ctx
, t0
);
2925 t1
= tcg_const_i32(nb
);
2926 t2
= tcg_const_i32(start
);
2927 gen_helper_lsw(t0
, t1
, t2
);
2929 tcg_temp_free_i32(t1
);
2930 tcg_temp_free_i32(t2
);
2934 static void gen_lswx(DisasContext
*ctx
)
2937 TCGv_i32 t1
, t2
, t3
;
2938 gen_set_access_type(ctx
, ACCESS_INT
);
2939 /* NIP cannot be restored if the memory exception comes from an helper */
2940 gen_update_nip(ctx
, ctx
->nip
- 4);
2941 t0
= tcg_temp_new();
2942 gen_addr_reg_index(ctx
, t0
);
2943 t1
= tcg_const_i32(rD(ctx
->opcode
));
2944 t2
= tcg_const_i32(rA(ctx
->opcode
));
2945 t3
= tcg_const_i32(rB(ctx
->opcode
));
2946 gen_helper_lswx(t0
, t1
, t2
, t3
);
2948 tcg_temp_free_i32(t1
);
2949 tcg_temp_free_i32(t2
);
2950 tcg_temp_free_i32(t3
);
2954 static void gen_stswi(DisasContext
*ctx
)
2958 int nb
= NB(ctx
->opcode
);
2959 gen_set_access_type(ctx
, ACCESS_INT
);
2960 /* NIP cannot be restored if the memory exception comes from an helper */
2961 gen_update_nip(ctx
, ctx
->nip
- 4);
2962 t0
= tcg_temp_new();
2963 gen_addr_register(ctx
, t0
);
2966 t1
= tcg_const_i32(nb
);
2967 t2
= tcg_const_i32(rS(ctx
->opcode
));
2968 gen_helper_stsw(t0
, t1
, t2
);
2970 tcg_temp_free_i32(t1
);
2971 tcg_temp_free_i32(t2
);
2975 static void gen_stswx(DisasContext
*ctx
)
2979 gen_set_access_type(ctx
, ACCESS_INT
);
2980 /* NIP cannot be restored if the memory exception comes from an helper */
2981 gen_update_nip(ctx
, ctx
->nip
- 4);
2982 t0
= tcg_temp_new();
2983 gen_addr_reg_index(ctx
, t0
);
2984 t1
= tcg_temp_new_i32();
2985 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
2986 tcg_gen_andi_i32(t1
, t1
, 0x7F);
2987 t2
= tcg_const_i32(rS(ctx
->opcode
));
2988 gen_helper_stsw(t0
, t1
, t2
);
2990 tcg_temp_free_i32(t1
);
2991 tcg_temp_free_i32(t2
);
2994 /*** Memory synchronisation ***/
2996 static void gen_eieio(DisasContext
*ctx
)
3001 static void gen_isync(DisasContext
*ctx
)
3003 gen_stop_exception(ctx
);
3007 static void gen_lwarx(DisasContext
*ctx
)
3010 gen_set_access_type(ctx
, ACCESS_RES
);
3011 t0
= tcg_temp_local_new();
3012 gen_addr_reg_index(ctx
, t0
);
3013 gen_check_align(ctx
, t0
, 0x03);
3014 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3015 tcg_gen_mov_tl(cpu_reserve
, t0
);
3020 static void gen_stwcx_(DisasContext
*ctx
)
3024 gen_set_access_type(ctx
, ACCESS_RES
);
3025 t0
= tcg_temp_local_new();
3026 gen_addr_reg_index(ctx
, t0
);
3027 gen_check_align(ctx
, t0
, 0x03);
3028 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3029 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3030 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3031 l1
= gen_new_label();
3032 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3033 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3034 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3036 tcg_gen_movi_tl(cpu_reserve
, -1);
3040 #if defined(TARGET_PPC64)
3042 static void gen_ldarx(DisasContext
*ctx
)
3045 gen_set_access_type(ctx
, ACCESS_RES
);
3046 t0
= tcg_temp_local_new();
3047 gen_addr_reg_index(ctx
, t0
);
3048 gen_check_align(ctx
, t0
, 0x07);
3049 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3050 tcg_gen_mov_tl(cpu_reserve
, t0
);
3055 static void gen_stdcx_(DisasContext
*ctx
)
3059 gen_set_access_type(ctx
, ACCESS_RES
);
3060 t0
= tcg_temp_local_new();
3061 gen_addr_reg_index(ctx
, t0
);
3062 gen_check_align(ctx
, t0
, 0x07);
3063 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3064 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3065 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3066 l1
= gen_new_label();
3067 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3068 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3069 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3071 tcg_gen_movi_tl(cpu_reserve
, -1);
3074 #endif /* defined(TARGET_PPC64) */
3077 static void gen_sync(DisasContext
*ctx
)
3082 static void gen_wait(DisasContext
*ctx
)
3084 TCGv_i32 t0
= tcg_temp_new_i32();
3085 tcg_gen_st_i32(t0
, cpu_env
, offsetof(CPUState
, halted
));
3086 tcg_temp_free_i32(t0
);
3087 /* Stop translation, as the CPU is supposed to sleep from now */
3088 gen_exception_err(ctx
, EXCP_HLT
, 1);
3091 /*** Floating-point load ***/
3092 #define GEN_LDF(name, ldop, opc, type) \
3093 static void glue(gen_, name)(DisasContext *ctx) \
3096 if (unlikely(!ctx->fpu_enabled)) { \
3097 gen_exception(ctx, POWERPC_EXCP_FPU); \
3100 gen_set_access_type(ctx, ACCESS_FLOAT); \
3101 EA = tcg_temp_new(); \
3102 gen_addr_imm_index(ctx, EA, 0); \
3103 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3104 tcg_temp_free(EA); \
3107 #define GEN_LDUF(name, ldop, opc, type) \
3108 static void glue(gen_, name##u)(DisasContext *ctx) \
3111 if (unlikely(!ctx->fpu_enabled)) { \
3112 gen_exception(ctx, POWERPC_EXCP_FPU); \
3115 if (unlikely(rA(ctx->opcode) == 0)) { \
3116 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3119 gen_set_access_type(ctx, ACCESS_FLOAT); \
3120 EA = tcg_temp_new(); \
3121 gen_addr_imm_index(ctx, EA, 0); \
3122 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3123 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3124 tcg_temp_free(EA); \
3127 #define GEN_LDUXF(name, ldop, opc, type) \
3128 static void glue(gen_, name##ux)(DisasContext *ctx) \
3131 if (unlikely(!ctx->fpu_enabled)) { \
3132 gen_exception(ctx, POWERPC_EXCP_FPU); \
3135 if (unlikely(rA(ctx->opcode) == 0)) { \
3136 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3139 gen_set_access_type(ctx, ACCESS_FLOAT); \
3140 EA = tcg_temp_new(); \
3141 gen_addr_reg_index(ctx, EA); \
3142 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3143 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3144 tcg_temp_free(EA); \
3147 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3148 static void glue(gen_, name##x)(DisasContext *ctx) \
3151 if (unlikely(!ctx->fpu_enabled)) { \
3152 gen_exception(ctx, POWERPC_EXCP_FPU); \
3155 gen_set_access_type(ctx, ACCESS_FLOAT); \
3156 EA = tcg_temp_new(); \
3157 gen_addr_reg_index(ctx, EA); \
3158 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3159 tcg_temp_free(EA); \
3162 #define GEN_LDFS(name, ldop, op, type) \
3163 GEN_LDF(name, ldop, op | 0x20, type); \
3164 GEN_LDUF(name, ldop, op | 0x21, type); \
3165 GEN_LDUXF(name, ldop, op | 0x01, type); \
3166 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3168 static always_inline
void gen_qemu_ld32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3170 TCGv t0
= tcg_temp_new();
3171 TCGv_i32 t1
= tcg_temp_new_i32();
3172 gen_qemu_ld32u(ctx
, t0
, arg2
);
3173 tcg_gen_trunc_tl_i32(t1
, t0
);
3175 gen_helper_float32_to_float64(arg1
, t1
);
3176 tcg_temp_free_i32(t1
);
3179 /* lfd lfdu lfdux lfdx */
3180 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
);
3181 /* lfs lfsu lfsux lfsx */
3182 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
);
3184 /*** Floating-point store ***/
3185 #define GEN_STF(name, stop, opc, type) \
3186 static void glue(gen_, name)(DisasContext *ctx) \
3189 if (unlikely(!ctx->fpu_enabled)) { \
3190 gen_exception(ctx, POWERPC_EXCP_FPU); \
3193 gen_set_access_type(ctx, ACCESS_FLOAT); \
3194 EA = tcg_temp_new(); \
3195 gen_addr_imm_index(ctx, EA, 0); \
3196 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3197 tcg_temp_free(EA); \
3200 #define GEN_STUF(name, stop, opc, type) \
3201 static void glue(gen_, name##u)(DisasContext *ctx) \
3204 if (unlikely(!ctx->fpu_enabled)) { \
3205 gen_exception(ctx, POWERPC_EXCP_FPU); \
3208 if (unlikely(rA(ctx->opcode) == 0)) { \
3209 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3212 gen_set_access_type(ctx, ACCESS_FLOAT); \
3213 EA = tcg_temp_new(); \
3214 gen_addr_imm_index(ctx, EA, 0); \
3215 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3216 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3217 tcg_temp_free(EA); \
3220 #define GEN_STUXF(name, stop, opc, type) \
3221 static void glue(gen_, name##ux)(DisasContext *ctx) \
3224 if (unlikely(!ctx->fpu_enabled)) { \
3225 gen_exception(ctx, POWERPC_EXCP_FPU); \
3228 if (unlikely(rA(ctx->opcode) == 0)) { \
3229 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3232 gen_set_access_type(ctx, ACCESS_FLOAT); \
3233 EA = tcg_temp_new(); \
3234 gen_addr_reg_index(ctx, EA); \
3235 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3236 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3237 tcg_temp_free(EA); \
3240 #define GEN_STXF(name, stop, opc2, opc3, type) \
3241 static void glue(gen_, name##x)(DisasContext *ctx) \
3244 if (unlikely(!ctx->fpu_enabled)) { \
3245 gen_exception(ctx, POWERPC_EXCP_FPU); \
3248 gen_set_access_type(ctx, ACCESS_FLOAT); \
3249 EA = tcg_temp_new(); \
3250 gen_addr_reg_index(ctx, EA); \
3251 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3252 tcg_temp_free(EA); \
3255 #define GEN_STFS(name, stop, op, type) \
3256 GEN_STF(name, stop, op | 0x20, type); \
3257 GEN_STUF(name, stop, op | 0x21, type); \
3258 GEN_STUXF(name, stop, op | 0x01, type); \
3259 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3261 static always_inline
void gen_qemu_st32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3263 TCGv_i32 t0
= tcg_temp_new_i32();
3264 TCGv t1
= tcg_temp_new();
3265 gen_helper_float64_to_float32(t0
, arg1
);
3266 tcg_gen_extu_i32_tl(t1
, t0
);
3267 tcg_temp_free_i32(t0
);
3268 gen_qemu_st32(ctx
, t1
, arg2
);
3272 /* stfd stfdu stfdux stfdx */
3273 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
);
3274 /* stfs stfsu stfsux stfsx */
3275 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
);
3278 static always_inline
void gen_qemu_st32fiw(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3280 TCGv t0
= tcg_temp_new();
3281 tcg_gen_trunc_i64_tl(t0
, arg1
),
3282 gen_qemu_st32(ctx
, t0
, arg2
);
3286 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
);
3289 static always_inline
void gen_goto_tb (DisasContext
*ctx
, int n
,
3292 TranslationBlock
*tb
;
3294 #if defined(TARGET_PPC64)
3296 dest
= (uint32_t) dest
;
3298 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) &&
3299 likely(!ctx
->singlestep_enabled
)) {
3301 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3302 tcg_gen_exit_tb((long)tb
+ n
);
3304 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3305 if (unlikely(ctx
->singlestep_enabled
)) {
3306 if ((ctx
->singlestep_enabled
&
3307 (CPU_BRANCH_STEP
| CPU_SINGLE_STEP
)) &&
3308 ctx
->exception
== POWERPC_EXCP_BRANCH
) {
3309 target_ulong tmp
= ctx
->nip
;
3311 gen_exception(ctx
, POWERPC_EXCP_TRACE
);
3314 if (ctx
->singlestep_enabled
& GDBSTUB_SINGLE_STEP
) {
3315 gen_debug_exception(ctx
);
3322 static always_inline
void gen_setlr (DisasContext
*ctx
, target_ulong nip
)
3324 #if defined(TARGET_PPC64)
3325 if (ctx
->sf_mode
== 0)
3326 tcg_gen_movi_tl(cpu_lr
, (uint32_t)nip
);
3329 tcg_gen_movi_tl(cpu_lr
, nip
);
3333 static void gen_b(DisasContext
*ctx
)
3335 target_ulong li
, target
;
3337 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3338 /* sign extend LI */
3339 #if defined(TARGET_PPC64)
3341 li
= ((int64_t)LI(ctx
->opcode
) << 38) >> 38;
3344 li
= ((int32_t)LI(ctx
->opcode
) << 6) >> 6;
3345 if (likely(AA(ctx
->opcode
) == 0))
3346 target
= ctx
->nip
+ li
- 4;
3349 if (LK(ctx
->opcode
))
3350 gen_setlr(ctx
, ctx
->nip
);
3351 gen_goto_tb(ctx
, 0, target
);
3358 static always_inline
void gen_bcond (DisasContext
*ctx
, int type
)
3360 uint32_t bo
= BO(ctx
->opcode
);
3361 int l1
= gen_new_label();
3364 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3365 if (type
== BCOND_LR
|| type
== BCOND_CTR
) {
3366 target
= tcg_temp_local_new();
3367 if (type
== BCOND_CTR
)
3368 tcg_gen_mov_tl(target
, cpu_ctr
);
3370 tcg_gen_mov_tl(target
, cpu_lr
);
3372 TCGV_UNUSED(target
);
3374 if (LK(ctx
->opcode
))
3375 gen_setlr(ctx
, ctx
->nip
);
3376 l1
= gen_new_label();
3377 if ((bo
& 0x4) == 0) {
3378 /* Decrement and test CTR */
3379 TCGv temp
= tcg_temp_new();
3380 if (unlikely(type
== BCOND_CTR
)) {
3381 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3384 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3385 #if defined(TARGET_PPC64)
3387 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3390 tcg_gen_mov_tl(temp
, cpu_ctr
);
3392 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3394 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3396 tcg_temp_free(temp
);
3398 if ((bo
& 0x10) == 0) {
3400 uint32_t bi
= BI(ctx
->opcode
);
3401 uint32_t mask
= 1 << (3 - (bi
& 0x03));
3402 TCGv_i32 temp
= tcg_temp_new_i32();
3405 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3406 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
3408 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3409 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
3411 tcg_temp_free_i32(temp
);
3413 if (type
== BCOND_IM
) {
3414 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
3415 if (likely(AA(ctx
->opcode
) == 0)) {
3416 gen_goto_tb(ctx
, 0, ctx
->nip
+ li
- 4);
3418 gen_goto_tb(ctx
, 0, li
);
3421 gen_goto_tb(ctx
, 1, ctx
->nip
);
3423 #if defined(TARGET_PPC64)
3424 if (!(ctx
->sf_mode
))
3425 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
3428 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
3431 #if defined(TARGET_PPC64)
3432 if (!(ctx
->sf_mode
))
3433 tcg_gen_movi_tl(cpu_nip
, (uint32_t)ctx
->nip
);
3436 tcg_gen_movi_tl(cpu_nip
, ctx
->nip
);
3441 static void gen_bc(DisasContext
*ctx
)
3443 gen_bcond(ctx
, BCOND_IM
);
3446 static void gen_bcctr(DisasContext
*ctx
)
3448 gen_bcond(ctx
, BCOND_CTR
);
3451 static void gen_bclr(DisasContext
*ctx
)
3453 gen_bcond(ctx
, BCOND_LR
);
3456 /*** Condition register logical ***/
3457 #define GEN_CRLOGIC(name, tcg_op, opc) \
3458 static void glue(gen_, name)(DisasContext *ctx) \
3463 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3464 t0 = tcg_temp_new_i32(); \
3466 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3468 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3470 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3471 t1 = tcg_temp_new_i32(); \
3472 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3474 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3476 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3478 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3479 tcg_op(t0, t0, t1); \
3480 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3481 tcg_gen_andi_i32(t0, t0, bitmask); \
3482 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3483 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3484 tcg_temp_free_i32(t0); \
3485 tcg_temp_free_i32(t1); \
3489 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
3491 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
3493 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
3495 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
3497 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
3499 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
3501 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
3503 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
3506 static void gen_mcrf(DisasContext
*ctx
)
3508 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
3511 /*** System linkage ***/
3513 /* rfi (mem_idx only) */
3514 static void gen_rfi(DisasContext
*ctx
)
3516 #if defined(CONFIG_USER_ONLY)
3517 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3519 /* Restore CPU state */
3520 if (unlikely(!ctx
->mem_idx
)) {
3521 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3525 gen_sync_exception(ctx
);
3529 #if defined(TARGET_PPC64)
3530 static void gen_rfid(DisasContext
*ctx
)
3532 #if defined(CONFIG_USER_ONLY)
3533 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3535 /* Restore CPU state */
3536 if (unlikely(!ctx
->mem_idx
)) {
3537 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3541 gen_sync_exception(ctx
);
3545 static void gen_hrfid(DisasContext
*ctx
)
3547 #if defined(CONFIG_USER_ONLY)
3548 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3550 /* Restore CPU state */
3551 if (unlikely(ctx
->mem_idx
<= 1)) {
3552 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3556 gen_sync_exception(ctx
);
3562 #if defined(CONFIG_USER_ONLY)
3563 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3565 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3567 static void gen_sc(DisasContext
*ctx
)
3571 lev
= (ctx
->opcode
>> 5) & 0x7F;
3572 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
3578 static void gen_tw(DisasContext
*ctx
)
3580 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3581 /* Update the nip since this might generate a trap exception */
3582 gen_update_nip(ctx
, ctx
->nip
);
3583 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3584 tcg_temp_free_i32(t0
);
3588 static void gen_twi(DisasContext
*ctx
)
3590 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3591 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3592 /* Update the nip since this might generate a trap exception */
3593 gen_update_nip(ctx
, ctx
->nip
);
3594 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3596 tcg_temp_free_i32(t1
);
3599 #if defined(TARGET_PPC64)
3601 static void gen_td(DisasContext
*ctx
)
3603 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3604 /* Update the nip since this might generate a trap exception */
3605 gen_update_nip(ctx
, ctx
->nip
);
3606 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3607 tcg_temp_free_i32(t0
);
3611 static void gen_tdi(DisasContext
*ctx
)
3613 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3614 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3615 /* Update the nip since this might generate a trap exception */
3616 gen_update_nip(ctx
, ctx
->nip
);
3617 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3619 tcg_temp_free_i32(t1
);
3623 /*** Processor control ***/
3626 static void gen_mcrxr(DisasContext
*ctx
)
3628 tcg_gen_trunc_tl_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_xer
);
3629 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], XER_CA
);
3630 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_SO
| 1 << XER_OV
| 1 << XER_CA
));
3634 static void gen_mfcr(DisasContext
*ctx
)
3638 if (likely(ctx
->opcode
& 0x00100000)) {
3639 crm
= CRM(ctx
->opcode
);
3640 if (likely(crm
&& ((crm
& (crm
- 1)) == 0))) {
3642 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
3643 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)],
3644 cpu_gpr
[rD(ctx
->opcode
)], crn
* 4);
3647 TCGv_i32 t0
= tcg_temp_new_i32();
3648 tcg_gen_mov_i32(t0
, cpu_crf
[0]);
3649 tcg_gen_shli_i32(t0
, t0
, 4);
3650 tcg_gen_or_i32(t0
, t0
, cpu_crf
[1]);
3651 tcg_gen_shli_i32(t0
, t0
, 4);
3652 tcg_gen_or_i32(t0
, t0
, cpu_crf
[2]);
3653 tcg_gen_shli_i32(t0
, t0
, 4);
3654 tcg_gen_or_i32(t0
, t0
, cpu_crf
[3]);
3655 tcg_gen_shli_i32(t0
, t0
, 4);
3656 tcg_gen_or_i32(t0
, t0
, cpu_crf
[4]);
3657 tcg_gen_shli_i32(t0
, t0
, 4);
3658 tcg_gen_or_i32(t0
, t0
, cpu_crf
[5]);
3659 tcg_gen_shli_i32(t0
, t0
, 4);
3660 tcg_gen_or_i32(t0
, t0
, cpu_crf
[6]);
3661 tcg_gen_shli_i32(t0
, t0
, 4);
3662 tcg_gen_or_i32(t0
, t0
, cpu_crf
[7]);
3663 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
3664 tcg_temp_free_i32(t0
);
3669 static void gen_mfmsr(DisasContext
*ctx
)
3671 #if defined(CONFIG_USER_ONLY)
3672 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3674 if (unlikely(!ctx
->mem_idx
)) {
3675 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3678 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
3683 #define SPR_NOACCESS ((void *)(-1UL))
3685 static void spr_noaccess (void *opaque
, int sprn
)
3687 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
3688 printf("ERROR: try to access SPR %d !\n", sprn
);
3690 #define SPR_NOACCESS (&spr_noaccess)
3694 static always_inline
void gen_op_mfspr (DisasContext
*ctx
)
3696 void (*read_cb
)(void *opaque
, int gprn
, int sprn
);
3697 uint32_t sprn
= SPR(ctx
->opcode
);
3699 #if !defined(CONFIG_USER_ONLY)
3700 if (ctx
->mem_idx
== 2)
3701 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
3702 else if (ctx
->mem_idx
)
3703 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
3706 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
3707 if (likely(read_cb
!= NULL
)) {
3708 if (likely(read_cb
!= SPR_NOACCESS
)) {
3709 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
3711 /* Privilege exception */
3712 /* This is a hack to avoid warnings when running Linux:
3713 * this OS breaks the PowerPC virtualisation model,
3714 * allowing userland application to read the PVR
3716 if (sprn
!= SPR_PVR
) {
3717 qemu_log("Trying to read privileged spr %d %03x at "
3718 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3719 printf("Trying to read privileged spr %d %03x at " ADDRX
"\n",
3720 sprn
, sprn
, ctx
->nip
);
3722 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3726 qemu_log("Trying to read invalid spr %d %03x at "
3727 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3728 printf("Trying to read invalid spr %d %03x at " ADDRX
"\n",
3729 sprn
, sprn
, ctx
->nip
);
3730 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
3734 static void gen_mfspr(DisasContext
*ctx
)
3740 static void gen_mftb(DisasContext
*ctx
)
3746 static void gen_mtcrf(DisasContext
*ctx
)
3750 crm
= CRM(ctx
->opcode
);
3751 if (likely((ctx
->opcode
& 0x00100000))) {
3752 if (crm
&& ((crm
& (crm
- 1)) == 0)) {
3753 TCGv_i32 temp
= tcg_temp_new_i32();
3755 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3756 tcg_gen_shri_i32(temp
, temp
, crn
* 4);
3757 tcg_gen_andi_i32(cpu_crf
[7 - crn
], temp
, 0xf);
3758 tcg_temp_free_i32(temp
);
3761 TCGv_i32 temp
= tcg_temp_new_i32();
3762 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3763 for (crn
= 0 ; crn
< 8 ; crn
++) {
3764 if (crm
& (1 << crn
)) {
3765 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
3766 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
3769 tcg_temp_free_i32(temp
);
3774 #if defined(TARGET_PPC64)
3775 static void gen_mtmsrd(DisasContext
*ctx
)
3777 #if defined(CONFIG_USER_ONLY)
3778 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3780 if (unlikely(!ctx
->mem_idx
)) {
3781 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3784 if (ctx
->opcode
& 0x00010000) {
3785 /* Special form that does not need any synchronisation */
3786 TCGv t0
= tcg_temp_new();
3787 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3788 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3789 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3792 /* XXX: we need to update nip before the store
3793 * if we enter power saving mode, we will exit the loop
3794 * directly from ppc_store_msr
3796 gen_update_nip(ctx
, ctx
->nip
);
3797 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
3798 /* Must stop the translation as machine state (may have) changed */
3799 /* Note that mtmsr is not always defined as context-synchronizing */
3800 gen_stop_exception(ctx
);
3806 static void gen_mtmsr(DisasContext
*ctx
)
3808 #if defined(CONFIG_USER_ONLY)
3809 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3811 if (unlikely(!ctx
->mem_idx
)) {
3812 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3815 if (ctx
->opcode
& 0x00010000) {
3816 /* Special form that does not need any synchronisation */
3817 TCGv t0
= tcg_temp_new();
3818 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3819 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3820 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3823 /* XXX: we need to update nip before the store
3824 * if we enter power saving mode, we will exit the loop
3825 * directly from ppc_store_msr
3827 gen_update_nip(ctx
, ctx
->nip
);
3828 #if defined(TARGET_PPC64)
3829 if (!ctx
->sf_mode
) {
3830 TCGv t0
= tcg_temp_new();
3831 TCGv t1
= tcg_temp_new();
3832 tcg_gen_andi_tl(t0
, cpu_msr
, 0xFFFFFFFF00000000ULL
);
3833 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
3834 tcg_gen_or_tl(t0
, t0
, t1
);
3836 gen_helper_store_msr(t0
);
3840 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
3841 /* Must stop the translation as machine state (may have) changed */
3842 /* Note that mtmsr is not always defined as context-synchronizing */
3843 gen_stop_exception(ctx
);
3849 static void gen_mtspr(DisasContext
*ctx
)
3851 void (*write_cb
)(void *opaque
, int sprn
, int gprn
);
3852 uint32_t sprn
= SPR(ctx
->opcode
);
3854 #if !defined(CONFIG_USER_ONLY)
3855 if (ctx
->mem_idx
== 2)
3856 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
3857 else if (ctx
->mem_idx
)
3858 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
3861 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
3862 if (likely(write_cb
!= NULL
)) {
3863 if (likely(write_cb
!= SPR_NOACCESS
)) {
3864 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
3866 /* Privilege exception */
3867 qemu_log("Trying to write privileged spr %d %03x at "
3868 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3869 printf("Trying to write privileged spr %d %03x at " ADDRX
"\n",
3870 sprn
, sprn
, ctx
->nip
);
3871 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3875 qemu_log("Trying to write invalid spr %d %03x at "
3876 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3877 printf("Trying to write invalid spr %d %03x at " ADDRX
"\n",
3878 sprn
, sprn
, ctx
->nip
);
3879 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
3883 /*** Cache management ***/
3886 static void gen_dcbf(DisasContext
*ctx
)
3888 /* XXX: specification says this is treated as a load by the MMU */
3890 gen_set_access_type(ctx
, ACCESS_CACHE
);
3891 t0
= tcg_temp_new();
3892 gen_addr_reg_index(ctx
, t0
);
3893 gen_qemu_ld8u(ctx
, t0
, t0
);
3897 /* dcbi (Supervisor only) */
3898 static void gen_dcbi(DisasContext
*ctx
)
3900 #if defined(CONFIG_USER_ONLY)
3901 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3904 if (unlikely(!ctx
->mem_idx
)) {
3905 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3908 EA
= tcg_temp_new();
3909 gen_set_access_type(ctx
, ACCESS_CACHE
);
3910 gen_addr_reg_index(ctx
, EA
);
3911 val
= tcg_temp_new();
3912 /* XXX: specification says this should be treated as a store by the MMU */
3913 gen_qemu_ld8u(ctx
, val
, EA
);
3914 gen_qemu_st8(ctx
, val
, EA
);
3921 static void gen_dcbst(DisasContext
*ctx
)
3923 /* XXX: specification say this is treated as a load by the MMU */
3925 gen_set_access_type(ctx
, ACCESS_CACHE
);
3926 t0
= tcg_temp_new();
3927 gen_addr_reg_index(ctx
, t0
);
3928 gen_qemu_ld8u(ctx
, t0
, t0
);
3933 static void gen_dcbt(DisasContext
*ctx
)
3935 /* interpreted as no-op */
3936 /* XXX: specification say this is treated as a load by the MMU
3937 * but does not generate any exception
3942 static void gen_dcbtst(DisasContext
*ctx
)
3944 /* interpreted as no-op */
3945 /* XXX: specification say this is treated as a load by the MMU
3946 * but does not generate any exception
3951 static void gen_dcbz(DisasContext
*ctx
)
3954 gen_set_access_type(ctx
, ACCESS_CACHE
);
3955 /* NIP cannot be restored if the memory exception comes from an helper */
3956 gen_update_nip(ctx
, ctx
->nip
- 4);
3957 t0
= tcg_temp_new();
3958 gen_addr_reg_index(ctx
, t0
);
3959 gen_helper_dcbz(t0
);
3963 static void gen_dcbz_970(DisasContext
*ctx
)
3966 gen_set_access_type(ctx
, ACCESS_CACHE
);
3967 /* NIP cannot be restored if the memory exception comes from an helper */
3968 gen_update_nip(ctx
, ctx
->nip
- 4);
3969 t0
= tcg_temp_new();
3970 gen_addr_reg_index(ctx
, t0
);
3971 if (ctx
->opcode
& 0x00200000)
3972 gen_helper_dcbz(t0
);
3974 gen_helper_dcbz_970(t0
);
3979 static void gen_dst(DisasContext
*ctx
)
3981 if (rA(ctx
->opcode
) == 0) {
3982 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3984 /* interpreted as no-op */
3989 static void gen_dstst(DisasContext
*ctx
)
3991 if (rA(ctx
->opcode
) == 0) {
3992 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3994 /* interpreted as no-op */
4000 static void gen_dss(DisasContext
*ctx
)
4002 /* interpreted as no-op */
4006 static void gen_icbi(DisasContext
*ctx
)
4009 gen_set_access_type(ctx
, ACCESS_CACHE
);
4010 /* NIP cannot be restored if the memory exception comes from an helper */
4011 gen_update_nip(ctx
, ctx
->nip
- 4);
4012 t0
= tcg_temp_new();
4013 gen_addr_reg_index(ctx
, t0
);
4014 gen_helper_icbi(t0
);
4020 static void gen_dcba(DisasContext
*ctx
)
4022 /* interpreted as no-op */
4023 /* XXX: specification say this is treated as a store by the MMU
4024 * but does not generate any exception
4028 /*** Segment register manipulation ***/
4029 /* Supervisor only: */
4032 static void gen_mfsr(DisasContext
*ctx
)
4034 #if defined(CONFIG_USER_ONLY)
4035 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4038 if (unlikely(!ctx
->mem_idx
)) {
4039 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4042 t0
= tcg_const_tl(SR(ctx
->opcode
));
4043 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4049 static void gen_mfsrin(DisasContext
*ctx
)
4051 #if defined(CONFIG_USER_ONLY)
4052 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4055 if (unlikely(!ctx
->mem_idx
)) {
4056 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4059 t0
= tcg_temp_new();
4060 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4061 tcg_gen_andi_tl(t0
, t0
, 0xF);
4062 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4068 static void gen_mtsr(DisasContext
*ctx
)
4070 #if defined(CONFIG_USER_ONLY)
4071 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4074 if (unlikely(!ctx
->mem_idx
)) {
4075 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4078 t0
= tcg_const_tl(SR(ctx
->opcode
));
4079 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4085 static void gen_mtsrin(DisasContext
*ctx
)
4087 #if defined(CONFIG_USER_ONLY)
4088 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4091 if (unlikely(!ctx
->mem_idx
)) {
4092 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4095 t0
= tcg_temp_new();
4096 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4097 tcg_gen_andi_tl(t0
, t0
, 0xF);
4098 gen_helper_store_sr(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
4103 #if defined(TARGET_PPC64)
4104 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4107 static void gen_mfsr_64b(DisasContext
*ctx
)
4109 #if defined(CONFIG_USER_ONLY)
4110 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4113 if (unlikely(!ctx
->mem_idx
)) {
4114 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4117 t0
= tcg_const_tl(SR(ctx
->opcode
));
4118 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4124 static void gen_mfsrin_64b(DisasContext
*ctx
)
4126 #if defined(CONFIG_USER_ONLY)
4127 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4130 if (unlikely(!ctx
->mem_idx
)) {
4131 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4134 t0
= tcg_temp_new();
4135 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4136 tcg_gen_andi_tl(t0
, t0
, 0xF);
4137 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4143 static void gen_mtsr_64b(DisasContext
*ctx
)
4145 #if defined(CONFIG_USER_ONLY)
4146 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4149 if (unlikely(!ctx
->mem_idx
)) {
4150 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4153 t0
= tcg_const_tl(SR(ctx
->opcode
));
4154 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4160 static void gen_mtsrin_64b(DisasContext
*ctx
)
4162 #if defined(CONFIG_USER_ONLY)
4163 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4166 if (unlikely(!ctx
->mem_idx
)) {
4167 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4170 t0
= tcg_temp_new();
4171 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4172 tcg_gen_andi_tl(t0
, t0
, 0xF);
4173 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4179 static void gen_slbmte(DisasContext
*ctx
)
4181 #if defined(CONFIG_USER_ONLY)
4182 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4184 if (unlikely(!ctx
->mem_idx
)) {
4185 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4188 gen_helper_store_slb(cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
4192 #endif /* defined(TARGET_PPC64) */
4194 /*** Lookaside buffer management ***/
4195 /* Optional & mem_idx only: */
4198 static void gen_tlbia(DisasContext
*ctx
)
4200 #if defined(CONFIG_USER_ONLY)
4201 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4203 if (unlikely(!ctx
->mem_idx
)) {
4204 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4212 static void gen_tlbiel(DisasContext
*ctx
)
4214 #if defined(CONFIG_USER_ONLY)
4215 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4217 if (unlikely(!ctx
->mem_idx
)) {
4218 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4221 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
4226 static void gen_tlbie(DisasContext
*ctx
)
4228 #if defined(CONFIG_USER_ONLY)
4229 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4231 if (unlikely(!ctx
->mem_idx
)) {
4232 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4235 #if defined(TARGET_PPC64)
4236 if (!ctx
->sf_mode
) {
4237 TCGv t0
= tcg_temp_new();
4238 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
4239 gen_helper_tlbie(t0
);
4243 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
4248 static void gen_tlbsync(DisasContext
*ctx
)
4250 #if defined(CONFIG_USER_ONLY)
4251 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4253 if (unlikely(!ctx
->mem_idx
)) {
4254 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4257 /* This has no effect: it should ensure that all previous
4258 * tlbie have completed
4260 gen_stop_exception(ctx
);
4264 #if defined(TARGET_PPC64)
4266 static void gen_slbia(DisasContext
*ctx
)
4268 #if defined(CONFIG_USER_ONLY)
4269 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4271 if (unlikely(!ctx
->mem_idx
)) {
4272 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4280 static void gen_slbie(DisasContext
*ctx
)
4282 #if defined(CONFIG_USER_ONLY)
4283 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4285 if (unlikely(!ctx
->mem_idx
)) {
4286 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4289 gen_helper_slbie(cpu_gpr
[rB(ctx
->opcode
)]);
4294 /*** External control ***/
4298 static void gen_eciwx(DisasContext
*ctx
)
4301 /* Should check EAR[E] ! */
4302 gen_set_access_type(ctx
, ACCESS_EXT
);
4303 t0
= tcg_temp_new();
4304 gen_addr_reg_index(ctx
, t0
);
4305 gen_check_align(ctx
, t0
, 0x03);
4306 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4311 static void gen_ecowx(DisasContext
*ctx
)
4314 /* Should check EAR[E] ! */
4315 gen_set_access_type(ctx
, ACCESS_EXT
);
4316 t0
= tcg_temp_new();
4317 gen_addr_reg_index(ctx
, t0
);
4318 gen_check_align(ctx
, t0
, 0x03);
4319 gen_qemu_st32(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4323 /* PowerPC 601 specific instructions */
4326 static void gen_abs(DisasContext
*ctx
)
4328 int l1
= gen_new_label();
4329 int l2
= gen_new_label();
4330 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4331 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4334 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4336 if (unlikely(Rc(ctx
->opcode
) != 0))
4337 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4341 static void gen_abso(DisasContext
*ctx
)
4343 int l1
= gen_new_label();
4344 int l2
= gen_new_label();
4345 int l3
= gen_new_label();
4346 /* Start with XER OV disabled, the most likely case */
4347 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4348 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l2
);
4349 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[rA(ctx
->opcode
)], 0x80000000, l1
);
4350 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4353 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4356 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4358 if (unlikely(Rc(ctx
->opcode
) != 0))
4359 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4363 static void gen_clcs(DisasContext
*ctx
)
4365 TCGv_i32 t0
= tcg_const_i32(rA(ctx
->opcode
));
4366 gen_helper_clcs(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4367 tcg_temp_free_i32(t0
);
4368 /* Rc=1 sets CR0 to an undefined state */
4372 static void gen_div(DisasContext
*ctx
)
4374 gen_helper_div(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4375 if (unlikely(Rc(ctx
->opcode
) != 0))
4376 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4380 static void gen_divo(DisasContext
*ctx
)
4382 gen_helper_divo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4383 if (unlikely(Rc(ctx
->opcode
) != 0))
4384 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4388 static void gen_divs(DisasContext
*ctx
)
4390 gen_helper_divs(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4391 if (unlikely(Rc(ctx
->opcode
) != 0))
4392 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4395 /* divso - divso. */
4396 static void gen_divso(DisasContext
*ctx
)
4398 gen_helper_divso(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4399 if (unlikely(Rc(ctx
->opcode
) != 0))
4400 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4404 static void gen_doz(DisasContext
*ctx
)
4406 int l1
= gen_new_label();
4407 int l2
= gen_new_label();
4408 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4409 tcg_gen_sub_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4412 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4414 if (unlikely(Rc(ctx
->opcode
) != 0))
4415 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4419 static void gen_dozo(DisasContext
*ctx
)
4421 int l1
= gen_new_label();
4422 int l2
= gen_new_label();
4423 TCGv t0
= tcg_temp_new();
4424 TCGv t1
= tcg_temp_new();
4425 TCGv t2
= tcg_temp_new();
4426 /* Start with XER OV disabled, the most likely case */
4427 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4428 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4429 tcg_gen_sub_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4430 tcg_gen_xor_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4431 tcg_gen_xor_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], t0
);
4432 tcg_gen_andc_tl(t1
, t1
, t2
);
4433 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4434 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4435 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4438 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4443 if (unlikely(Rc(ctx
->opcode
) != 0))
4444 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4448 static void gen_dozi(DisasContext
*ctx
)
4450 target_long simm
= SIMM(ctx
->opcode
);
4451 int l1
= gen_new_label();
4452 int l2
= gen_new_label();
4453 tcg_gen_brcondi_tl(TCG_COND_LT
, cpu_gpr
[rA(ctx
->opcode
)], simm
, l1
);
4454 tcg_gen_subfi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
, cpu_gpr
[rA(ctx
->opcode
)]);
4457 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4459 if (unlikely(Rc(ctx
->opcode
) != 0))
4460 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4463 /* lscbx - lscbx. */
4464 static void gen_lscbx(DisasContext
*ctx
)
4466 TCGv t0
= tcg_temp_new();
4467 TCGv_i32 t1
= tcg_const_i32(rD(ctx
->opcode
));
4468 TCGv_i32 t2
= tcg_const_i32(rA(ctx
->opcode
));
4469 TCGv_i32 t3
= tcg_const_i32(rB(ctx
->opcode
));
4471 gen_addr_reg_index(ctx
, t0
);
4472 /* NIP cannot be restored if the memory exception comes from an helper */
4473 gen_update_nip(ctx
, ctx
->nip
- 4);
4474 gen_helper_lscbx(t0
, t0
, t1
, t2
, t3
);
4475 tcg_temp_free_i32(t1
);
4476 tcg_temp_free_i32(t2
);
4477 tcg_temp_free_i32(t3
);
4478 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~0x7F);
4479 tcg_gen_or_tl(cpu_xer
, cpu_xer
, t0
);
4480 if (unlikely(Rc(ctx
->opcode
) != 0))
4481 gen_set_Rc0(ctx
, t0
);
4485 /* maskg - maskg. */
4486 static void gen_maskg(DisasContext
*ctx
)
4488 int l1
= gen_new_label();
4489 TCGv t0
= tcg_temp_new();
4490 TCGv t1
= tcg_temp_new();
4491 TCGv t2
= tcg_temp_new();
4492 TCGv t3
= tcg_temp_new();
4493 tcg_gen_movi_tl(t3
, 0xFFFFFFFF);
4494 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4495 tcg_gen_andi_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 0x1F);
4496 tcg_gen_addi_tl(t2
, t0
, 1);
4497 tcg_gen_shr_tl(t2
, t3
, t2
);
4498 tcg_gen_shr_tl(t3
, t3
, t1
);
4499 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], t2
, t3
);
4500 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
4501 tcg_gen_neg_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4507 if (unlikely(Rc(ctx
->opcode
) != 0))
4508 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4511 /* maskir - maskir. */
4512 static void gen_maskir(DisasContext
*ctx
)
4514 TCGv t0
= tcg_temp_new();
4515 TCGv t1
= tcg_temp_new();
4516 tcg_gen_and_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4517 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4518 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4521 if (unlikely(Rc(ctx
->opcode
) != 0))
4522 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4526 static void gen_mul(DisasContext
*ctx
)
4528 TCGv_i64 t0
= tcg_temp_new_i64();
4529 TCGv_i64 t1
= tcg_temp_new_i64();
4530 TCGv t2
= tcg_temp_new();
4531 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4532 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4533 tcg_gen_mul_i64(t0
, t0
, t1
);
4534 tcg_gen_trunc_i64_tl(t2
, t0
);
4535 gen_store_spr(SPR_MQ
, t2
);
4536 tcg_gen_shri_i64(t1
, t0
, 32);
4537 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4538 tcg_temp_free_i64(t0
);
4539 tcg_temp_free_i64(t1
);
4541 if (unlikely(Rc(ctx
->opcode
) != 0))
4542 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4546 static void gen_mulo(DisasContext
*ctx
)
4548 int l1
= gen_new_label();
4549 TCGv_i64 t0
= tcg_temp_new_i64();
4550 TCGv_i64 t1
= tcg_temp_new_i64();
4551 TCGv t2
= tcg_temp_new();
4552 /* Start with XER OV disabled, the most likely case */
4553 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4554 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4555 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4556 tcg_gen_mul_i64(t0
, t0
, t1
);
4557 tcg_gen_trunc_i64_tl(t2
, t0
);
4558 gen_store_spr(SPR_MQ
, t2
);
4559 tcg_gen_shri_i64(t1
, t0
, 32);
4560 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4561 tcg_gen_ext32s_i64(t1
, t0
);
4562 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
4563 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4565 tcg_temp_free_i64(t0
);
4566 tcg_temp_free_i64(t1
);
4568 if (unlikely(Rc(ctx
->opcode
) != 0))
4569 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4573 static void gen_nabs(DisasContext
*ctx
)
4575 int l1
= gen_new_label();
4576 int l2
= gen_new_label();
4577 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4578 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4581 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4583 if (unlikely(Rc(ctx
->opcode
) != 0))
4584 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4587 /* nabso - nabso. */
4588 static void gen_nabso(DisasContext
*ctx
)
4590 int l1
= gen_new_label();
4591 int l2
= gen_new_label();
4592 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4593 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4596 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4598 /* nabs never overflows */
4599 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4600 if (unlikely(Rc(ctx
->opcode
) != 0))
4601 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4605 static void gen_rlmi(DisasContext
*ctx
)
4607 uint32_t mb
= MB(ctx
->opcode
);
4608 uint32_t me
= ME(ctx
->opcode
);
4609 TCGv t0
= tcg_temp_new();
4610 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4611 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4612 tcg_gen_andi_tl(t0
, t0
, MASK(mb
, me
));
4613 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~MASK(mb
, me
));
4614 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], t0
);
4616 if (unlikely(Rc(ctx
->opcode
) != 0))
4617 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4621 static void gen_rrib(DisasContext
*ctx
)
4623 TCGv t0
= tcg_temp_new();
4624 TCGv t1
= tcg_temp_new();
4625 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4626 tcg_gen_movi_tl(t1
, 0x80000000);
4627 tcg_gen_shr_tl(t1
, t1
, t0
);
4628 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4629 tcg_gen_and_tl(t0
, t0
, t1
);
4630 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], t1
);
4631 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4634 if (unlikely(Rc(ctx
->opcode
) != 0))
4635 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4639 static void gen_sle(DisasContext
*ctx
)
4641 TCGv t0
= tcg_temp_new();
4642 TCGv t1
= tcg_temp_new();
4643 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4644 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4645 tcg_gen_subfi_tl(t1
, 32, t1
);
4646 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4647 tcg_gen_or_tl(t1
, t0
, t1
);
4648 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4649 gen_store_spr(SPR_MQ
, t1
);
4652 if (unlikely(Rc(ctx
->opcode
) != 0))
4653 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4657 static void gen_sleq(DisasContext
*ctx
)
4659 TCGv t0
= tcg_temp_new();
4660 TCGv t1
= tcg_temp_new();
4661 TCGv t2
= tcg_temp_new();
4662 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4663 tcg_gen_movi_tl(t2
, 0xFFFFFFFF);
4664 tcg_gen_shl_tl(t2
, t2
, t0
);
4665 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4666 gen_load_spr(t1
, SPR_MQ
);
4667 gen_store_spr(SPR_MQ
, t0
);
4668 tcg_gen_and_tl(t0
, t0
, t2
);
4669 tcg_gen_andc_tl(t1
, t1
, t2
);
4670 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4674 if (unlikely(Rc(ctx
->opcode
) != 0))
4675 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4679 static void gen_sliq(DisasContext
*ctx
)
4681 int sh
= SH(ctx
->opcode
);
4682 TCGv t0
= tcg_temp_new();
4683 TCGv t1
= tcg_temp_new();
4684 tcg_gen_shli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4685 tcg_gen_shri_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4686 tcg_gen_or_tl(t1
, t0
, t1
);
4687 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4688 gen_store_spr(SPR_MQ
, t1
);
4691 if (unlikely(Rc(ctx
->opcode
) != 0))
4692 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4695 /* slliq - slliq. */
4696 static void gen_slliq(DisasContext
*ctx
)
4698 int sh
= SH(ctx
->opcode
);
4699 TCGv t0
= tcg_temp_new();
4700 TCGv t1
= tcg_temp_new();
4701 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4702 gen_load_spr(t1
, SPR_MQ
);
4703 gen_store_spr(SPR_MQ
, t0
);
4704 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
<< sh
));
4705 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
<< sh
));
4706 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4709 if (unlikely(Rc(ctx
->opcode
) != 0))
4710 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4714 static void gen_sllq(DisasContext
*ctx
)
4716 int l1
= gen_new_label();
4717 int l2
= gen_new_label();
4718 TCGv t0
= tcg_temp_local_new();
4719 TCGv t1
= tcg_temp_local_new();
4720 TCGv t2
= tcg_temp_local_new();
4721 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4722 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4723 tcg_gen_shl_tl(t1
, t1
, t2
);
4724 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4725 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4726 gen_load_spr(t0
, SPR_MQ
);
4727 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4730 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4731 gen_load_spr(t2
, SPR_MQ
);
4732 tcg_gen_andc_tl(t1
, t2
, t1
);
4733 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4738 if (unlikely(Rc(ctx
->opcode
) != 0))
4739 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4743 static void gen_slq(DisasContext
*ctx
)
4745 int l1
= gen_new_label();
4746 TCGv t0
= tcg_temp_new();
4747 TCGv t1
= tcg_temp_new();
4748 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4749 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4750 tcg_gen_subfi_tl(t1
, 32, t1
);
4751 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4752 tcg_gen_or_tl(t1
, t0
, t1
);
4753 gen_store_spr(SPR_MQ
, t1
);
4754 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4755 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4756 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4757 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
4761 if (unlikely(Rc(ctx
->opcode
) != 0))
4762 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4765 /* sraiq - sraiq. */
4766 static void gen_sraiq(DisasContext
*ctx
)
4768 int sh
= SH(ctx
->opcode
);
4769 int l1
= gen_new_label();
4770 TCGv t0
= tcg_temp_new();
4771 TCGv t1
= tcg_temp_new();
4772 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4773 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4774 tcg_gen_or_tl(t0
, t0
, t1
);
4775 gen_store_spr(SPR_MQ
, t0
);
4776 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4777 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4778 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
4779 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4781 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
4784 if (unlikely(Rc(ctx
->opcode
) != 0))
4785 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4789 static void gen_sraq(DisasContext
*ctx
)
4791 int l1
= gen_new_label();
4792 int l2
= gen_new_label();
4793 TCGv t0
= tcg_temp_new();
4794 TCGv t1
= tcg_temp_local_new();
4795 TCGv t2
= tcg_temp_local_new();
4796 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4797 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4798 tcg_gen_sar_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4799 tcg_gen_subfi_tl(t2
, 32, t2
);
4800 tcg_gen_shl_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4801 tcg_gen_or_tl(t0
, t0
, t2
);
4802 gen_store_spr(SPR_MQ
, t0
);
4803 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4804 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l1
);
4805 tcg_gen_mov_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
4806 tcg_gen_sari_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 31);
4809 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
);
4810 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4811 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4812 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l2
);
4813 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4817 if (unlikely(Rc(ctx
->opcode
) != 0))
4818 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4822 static void gen_sre(DisasContext
*ctx
)
4824 TCGv t0
= tcg_temp_new();
4825 TCGv t1
= tcg_temp_new();
4826 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4827 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4828 tcg_gen_subfi_tl(t1
, 32, t1
);
4829 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4830 tcg_gen_or_tl(t1
, t0
, t1
);
4831 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4832 gen_store_spr(SPR_MQ
, t1
);
4835 if (unlikely(Rc(ctx
->opcode
) != 0))
4836 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4840 static void gen_srea(DisasContext
*ctx
)
4842 TCGv t0
= tcg_temp_new();
4843 TCGv t1
= tcg_temp_new();
4844 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4845 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4846 gen_store_spr(SPR_MQ
, t0
);
4847 tcg_gen_sar_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t1
);
4850 if (unlikely(Rc(ctx
->opcode
) != 0))
4851 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4855 static void gen_sreq(DisasContext
*ctx
)
4857 TCGv t0
= tcg_temp_new();
4858 TCGv t1
= tcg_temp_new();
4859 TCGv t2
= tcg_temp_new();
4860 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4861 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4862 tcg_gen_shr_tl(t1
, t1
, t0
);
4863 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4864 gen_load_spr(t2
, SPR_MQ
);
4865 gen_store_spr(SPR_MQ
, t0
);
4866 tcg_gen_and_tl(t0
, t0
, t1
);
4867 tcg_gen_andc_tl(t2
, t2
, t1
);
4868 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
4872 if (unlikely(Rc(ctx
->opcode
) != 0))
4873 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4877 static void gen_sriq(DisasContext
*ctx
)
4879 int sh
= SH(ctx
->opcode
);
4880 TCGv t0
= tcg_temp_new();
4881 TCGv t1
= tcg_temp_new();
4882 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4883 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4884 tcg_gen_or_tl(t1
, t0
, t1
);
4885 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4886 gen_store_spr(SPR_MQ
, t1
);
4889 if (unlikely(Rc(ctx
->opcode
) != 0))
4890 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4894 static void gen_srliq(DisasContext
*ctx
)
4896 int sh
= SH(ctx
->opcode
);
4897 TCGv t0
= tcg_temp_new();
4898 TCGv t1
= tcg_temp_new();
4899 tcg_gen_rotri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4900 gen_load_spr(t1
, SPR_MQ
);
4901 gen_store_spr(SPR_MQ
, t0
);
4902 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
>> sh
));
4903 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
>> sh
));
4904 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4907 if (unlikely(Rc(ctx
->opcode
) != 0))
4908 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4912 static void gen_srlq(DisasContext
*ctx
)
4914 int l1
= gen_new_label();
4915 int l2
= gen_new_label();
4916 TCGv t0
= tcg_temp_local_new();
4917 TCGv t1
= tcg_temp_local_new();
4918 TCGv t2
= tcg_temp_local_new();
4919 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4920 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4921 tcg_gen_shr_tl(t2
, t1
, t2
);
4922 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4923 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4924 gen_load_spr(t0
, SPR_MQ
);
4925 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
4928 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4929 tcg_gen_and_tl(t0
, t0
, t2
);
4930 gen_load_spr(t1
, SPR_MQ
);
4931 tcg_gen_andc_tl(t1
, t1
, t2
);
4932 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4937 if (unlikely(Rc(ctx
->opcode
) != 0))
4938 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4942 static void gen_srq(DisasContext
*ctx
)
4944 int l1
= gen_new_label();
4945 TCGv t0
= tcg_temp_new();
4946 TCGv t1
= tcg_temp_new();
4947 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4948 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4949 tcg_gen_subfi_tl(t1
, 32, t1
);
4950 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4951 tcg_gen_or_tl(t1
, t0
, t1
);
4952 gen_store_spr(SPR_MQ
, t1
);
4953 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4954 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4955 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4956 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
4960 if (unlikely(Rc(ctx
->opcode
) != 0))
4961 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4964 /* PowerPC 602 specific instructions */
4967 static void gen_dsa(DisasContext
*ctx
)
4970 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4974 static void gen_esa(DisasContext
*ctx
)
4977 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4981 static void gen_mfrom(DisasContext
*ctx
)
4983 #if defined(CONFIG_USER_ONLY)
4984 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4986 if (unlikely(!ctx
->mem_idx
)) {
4987 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4990 gen_helper_602_mfrom(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4994 /* 602 - 603 - G2 TLB management */
4997 static void gen_tlbld_6xx(DisasContext
*ctx
)
4999 #if defined(CONFIG_USER_ONLY)
5000 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5002 if (unlikely(!ctx
->mem_idx
)) {
5003 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5006 gen_helper_6xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5011 static void gen_tlbli_6xx(DisasContext
*ctx
)
5013 #if defined(CONFIG_USER_ONLY)
5014 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5016 if (unlikely(!ctx
->mem_idx
)) {
5017 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5020 gen_helper_6xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5024 /* 74xx TLB management */
5027 static void gen_tlbld_74xx(DisasContext
*ctx
)
5029 #if defined(CONFIG_USER_ONLY)
5030 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5032 if (unlikely(!ctx
->mem_idx
)) {
5033 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5036 gen_helper_74xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5041 static void gen_tlbli_74xx(DisasContext
*ctx
)
5043 #if defined(CONFIG_USER_ONLY)
5044 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5046 if (unlikely(!ctx
->mem_idx
)) {
5047 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5050 gen_helper_74xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5054 /* POWER instructions not in PowerPC 601 */
5057 static void gen_clf(DisasContext
*ctx
)
5059 /* Cache line flush: implemented as no-op */
5063 static void gen_cli(DisasContext
*ctx
)
5065 /* Cache line invalidate: privileged and treated as no-op */
5066 #if defined(CONFIG_USER_ONLY)
5067 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5069 if (unlikely(!ctx
->mem_idx
)) {
5070 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5077 static void gen_dclst(DisasContext
*ctx
)
5079 /* Data cache line store: treated as no-op */
5082 static void gen_mfsri(DisasContext
*ctx
)
5084 #if defined(CONFIG_USER_ONLY)
5085 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5087 int ra
= rA(ctx
->opcode
);
5088 int rd
= rD(ctx
->opcode
);
5090 if (unlikely(!ctx
->mem_idx
)) {
5091 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5094 t0
= tcg_temp_new();
5095 gen_addr_reg_index(ctx
, t0
);
5096 tcg_gen_shri_tl(t0
, t0
, 28);
5097 tcg_gen_andi_tl(t0
, t0
, 0xF);
5098 gen_helper_load_sr(cpu_gpr
[rd
], t0
);
5100 if (ra
!= 0 && ra
!= rd
)
5101 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rd
]);
5105 static void gen_rac(DisasContext
*ctx
)
5107 #if defined(CONFIG_USER_ONLY)
5108 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5111 if (unlikely(!ctx
->mem_idx
)) {
5112 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5115 t0
= tcg_temp_new();
5116 gen_addr_reg_index(ctx
, t0
);
5117 gen_helper_rac(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5122 static void gen_rfsvc(DisasContext
*ctx
)
5124 #if defined(CONFIG_USER_ONLY)
5125 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5127 if (unlikely(!ctx
->mem_idx
)) {
5128 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5132 gen_sync_exception(ctx
);
5136 /* svc is not implemented for now */
5138 /* POWER2 specific instructions */
5139 /* Quad manipulation (load/store two floats at a time) */
5142 static void gen_lfq(DisasContext
*ctx
)
5144 int rd
= rD(ctx
->opcode
);
5146 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5147 t0
= tcg_temp_new();
5148 gen_addr_imm_index(ctx
, t0
, 0);
5149 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5150 gen_addr_add(ctx
, t0
, t0
, 8);
5151 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5156 static void gen_lfqu(DisasContext
*ctx
)
5158 int ra
= rA(ctx
->opcode
);
5159 int rd
= rD(ctx
->opcode
);
5161 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5162 t0
= tcg_temp_new();
5163 t1
= tcg_temp_new();
5164 gen_addr_imm_index(ctx
, t0
, 0);
5165 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5166 gen_addr_add(ctx
, t1
, t0
, 8);
5167 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5169 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5175 static void gen_lfqux(DisasContext
*ctx
)
5177 int ra
= rA(ctx
->opcode
);
5178 int rd
= rD(ctx
->opcode
);
5179 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5181 t0
= tcg_temp_new();
5182 gen_addr_reg_index(ctx
, t0
);
5183 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5184 t1
= tcg_temp_new();
5185 gen_addr_add(ctx
, t1
, t0
, 8);
5186 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5189 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5194 static void gen_lfqx(DisasContext
*ctx
)
5196 int rd
= rD(ctx
->opcode
);
5198 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5199 t0
= tcg_temp_new();
5200 gen_addr_reg_index(ctx
, t0
);
5201 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5202 gen_addr_add(ctx
, t0
, t0
, 8);
5203 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5208 static void gen_stfq(DisasContext
*ctx
)
5210 int rd
= rD(ctx
->opcode
);
5212 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5213 t0
= tcg_temp_new();
5214 gen_addr_imm_index(ctx
, t0
, 0);
5215 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5216 gen_addr_add(ctx
, t0
, t0
, 8);
5217 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5222 static void gen_stfqu(DisasContext
*ctx
)
5224 int ra
= rA(ctx
->opcode
);
5225 int rd
= rD(ctx
->opcode
);
5227 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5228 t0
= tcg_temp_new();
5229 gen_addr_imm_index(ctx
, t0
, 0);
5230 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5231 t1
= tcg_temp_new();
5232 gen_addr_add(ctx
, t1
, t0
, 8);
5233 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5236 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5241 static void gen_stfqux(DisasContext
*ctx
)
5243 int ra
= rA(ctx
->opcode
);
5244 int rd
= rD(ctx
->opcode
);
5246 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5247 t0
= tcg_temp_new();
5248 gen_addr_reg_index(ctx
, t0
);
5249 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5250 t1
= tcg_temp_new();
5251 gen_addr_add(ctx
, t1
, t0
, 8);
5252 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5255 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5260 static void gen_stfqx(DisasContext
*ctx
)
5262 int rd
= rD(ctx
->opcode
);
5264 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5265 t0
= tcg_temp_new();
5266 gen_addr_reg_index(ctx
, t0
);
5267 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5268 gen_addr_add(ctx
, t0
, t0
, 8);
5269 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5273 /* BookE specific instructions */
5275 /* XXX: not implemented on 440 ? */
5276 static void gen_mfapidi(DisasContext
*ctx
)
5279 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5282 /* XXX: not implemented on 440 ? */
5283 static void gen_tlbiva(DisasContext
*ctx
)
5285 #if defined(CONFIG_USER_ONLY)
5286 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5289 if (unlikely(!ctx
->mem_idx
)) {
5290 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5293 t0
= tcg_temp_new();
5294 gen_addr_reg_index(ctx
, t0
);
5295 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
5300 /* All 405 MAC instructions are translated here */
5301 static always_inline
void gen_405_mulladd_insn (DisasContext
*ctx
,
5303 int ra
, int rb
, int rt
, int Rc
)
5307 t0
= tcg_temp_local_new();
5308 t1
= tcg_temp_local_new();
5310 switch (opc3
& 0x0D) {
5312 /* macchw - macchw. - macchwo - macchwo. */
5313 /* macchws - macchws. - macchwso - macchwso. */
5314 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5315 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5316 /* mulchw - mulchw. */
5317 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5318 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5319 tcg_gen_ext16s_tl(t1
, t1
);
5322 /* macchwu - macchwu. - macchwuo - macchwuo. */
5323 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5324 /* mulchwu - mulchwu. */
5325 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5326 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5327 tcg_gen_ext16u_tl(t1
, t1
);
5330 /* machhw - machhw. - machhwo - machhwo. */
5331 /* machhws - machhws. - machhwso - machhwso. */
5332 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5333 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5334 /* mulhhw - mulhhw. */
5335 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5336 tcg_gen_ext16s_tl(t0
, t0
);
5337 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5338 tcg_gen_ext16s_tl(t1
, t1
);
5341 /* machhwu - machhwu. - machhwuo - machhwuo. */
5342 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5343 /* mulhhwu - mulhhwu. */
5344 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5345 tcg_gen_ext16u_tl(t0
, t0
);
5346 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5347 tcg_gen_ext16u_tl(t1
, t1
);
5350 /* maclhw - maclhw. - maclhwo - maclhwo. */
5351 /* maclhws - maclhws. - maclhwso - maclhwso. */
5352 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5353 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5354 /* mullhw - mullhw. */
5355 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5356 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5359 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5360 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5361 /* mullhwu - mullhwu. */
5362 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5363 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5367 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5368 tcg_gen_mul_tl(t1
, t0
, t1
);
5370 /* nmultiply-and-accumulate (0x0E) */
5371 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5373 /* multiply-and-accumulate (0x0C) */
5374 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5378 /* Check overflow and/or saturate */
5379 int l1
= gen_new_label();
5382 /* Start with XER OV disabled, the most likely case */
5383 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
5387 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5388 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5389 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5390 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5393 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5394 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5398 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5401 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5405 /* Check overflow */
5406 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
5409 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5412 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5416 if (unlikely(Rc
) != 0) {
5418 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5422 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5423 static void glue(gen_, name)(DisasContext *ctx) \
5425 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5426 rD(ctx->opcode), Rc(ctx->opcode)); \
5429 /* macchw - macchw. */
5430 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5431 /* macchwo - macchwo. */
5432 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5433 /* macchws - macchws. */
5434 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5435 /* macchwso - macchwso. */
5436 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5437 /* macchwsu - macchwsu. */
5438 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5439 /* macchwsuo - macchwsuo. */
5440 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5441 /* macchwu - macchwu. */
5442 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5443 /* macchwuo - macchwuo. */
5444 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5445 /* machhw - machhw. */
5446 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5447 /* machhwo - machhwo. */
5448 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5449 /* machhws - machhws. */
5450 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5451 /* machhwso - machhwso. */
5452 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5453 /* machhwsu - machhwsu. */
5454 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5455 /* machhwsuo - machhwsuo. */
5456 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5457 /* machhwu - machhwu. */
5458 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5459 /* machhwuo - machhwuo. */
5460 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5461 /* maclhw - maclhw. */
5462 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5463 /* maclhwo - maclhwo. */
5464 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5465 /* maclhws - maclhws. */
5466 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5467 /* maclhwso - maclhwso. */
5468 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
5469 /* maclhwu - maclhwu. */
5470 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
5471 /* maclhwuo - maclhwuo. */
5472 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
5473 /* maclhwsu - maclhwsu. */
5474 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
5475 /* maclhwsuo - maclhwsuo. */
5476 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
5477 /* nmacchw - nmacchw. */
5478 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
5479 /* nmacchwo - nmacchwo. */
5480 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
5481 /* nmacchws - nmacchws. */
5482 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
5483 /* nmacchwso - nmacchwso. */
5484 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
5485 /* nmachhw - nmachhw. */
5486 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
5487 /* nmachhwo - nmachhwo. */
5488 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
5489 /* nmachhws - nmachhws. */
5490 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
5491 /* nmachhwso - nmachhwso. */
5492 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
5493 /* nmaclhw - nmaclhw. */
5494 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
5495 /* nmaclhwo - nmaclhwo. */
5496 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
5497 /* nmaclhws - nmaclhws. */
5498 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
5499 /* nmaclhwso - nmaclhwso. */
5500 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
5502 /* mulchw - mulchw. */
5503 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
5504 /* mulchwu - mulchwu. */
5505 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
5506 /* mulhhw - mulhhw. */
5507 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
5508 /* mulhhwu - mulhhwu. */
5509 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
5510 /* mullhw - mullhw. */
5511 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
5512 /* mullhwu - mullhwu. */
5513 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
5516 static void gen_mfdcr(DisasContext
*ctx
)
5518 #if defined(CONFIG_USER_ONLY)
5519 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5522 if (unlikely(!ctx
->mem_idx
)) {
5523 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5526 /* NIP cannot be restored if the memory exception comes from an helper */
5527 gen_update_nip(ctx
, ctx
->nip
- 4);
5528 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5529 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], dcrn
);
5530 tcg_temp_free(dcrn
);
5535 static void gen_mtdcr(DisasContext
*ctx
)
5537 #if defined(CONFIG_USER_ONLY)
5538 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5541 if (unlikely(!ctx
->mem_idx
)) {
5542 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5545 /* NIP cannot be restored if the memory exception comes from an helper */
5546 gen_update_nip(ctx
, ctx
->nip
- 4);
5547 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5548 gen_helper_store_dcr(dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
5549 tcg_temp_free(dcrn
);
5554 /* XXX: not implemented on 440 ? */
5555 static void gen_mfdcrx(DisasContext
*ctx
)
5557 #if defined(CONFIG_USER_ONLY)
5558 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5560 if (unlikely(!ctx
->mem_idx
)) {
5561 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5564 /* NIP cannot be restored if the memory exception comes from an helper */
5565 gen_update_nip(ctx
, ctx
->nip
- 4);
5566 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5567 /* Note: Rc update flag set leads to undefined state of Rc0 */
5572 /* XXX: not implemented on 440 ? */
5573 static void gen_mtdcrx(DisasContext
*ctx
)
5575 #if defined(CONFIG_USER_ONLY)
5576 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5578 if (unlikely(!ctx
->mem_idx
)) {
5579 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5582 /* NIP cannot be restored if the memory exception comes from an helper */
5583 gen_update_nip(ctx
, ctx
->nip
- 4);
5584 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5585 /* Note: Rc update flag set leads to undefined state of Rc0 */
5589 /* mfdcrux (PPC 460) : user-mode access to DCR */
5590 static void gen_mfdcrux(DisasContext
*ctx
)
5592 /* NIP cannot be restored if the memory exception comes from an helper */
5593 gen_update_nip(ctx
, ctx
->nip
- 4);
5594 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5595 /* Note: Rc update flag set leads to undefined state of Rc0 */
5598 /* mtdcrux (PPC 460) : user-mode access to DCR */
5599 static void gen_mtdcrux(DisasContext
*ctx
)
5601 /* NIP cannot be restored if the memory exception comes from an helper */
5602 gen_update_nip(ctx
, ctx
->nip
- 4);
5603 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5604 /* Note: Rc update flag set leads to undefined state of Rc0 */
5608 static void gen_dccci(DisasContext
*ctx
)
5610 #if defined(CONFIG_USER_ONLY)
5611 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5613 if (unlikely(!ctx
->mem_idx
)) {
5614 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5617 /* interpreted as no-op */
5622 static void gen_dcread(DisasContext
*ctx
)
5624 #if defined(CONFIG_USER_ONLY)
5625 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5628 if (unlikely(!ctx
->mem_idx
)) {
5629 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5632 gen_set_access_type(ctx
, ACCESS_CACHE
);
5633 EA
= tcg_temp_new();
5634 gen_addr_reg_index(ctx
, EA
);
5635 val
= tcg_temp_new();
5636 gen_qemu_ld32u(ctx
, val
, EA
);
5638 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
5644 static void gen_icbt_40x(DisasContext
*ctx
)
5646 /* interpreted as no-op */
5647 /* XXX: specification say this is treated as a load by the MMU
5648 * but does not generate any exception
5653 static void gen_iccci(DisasContext
*ctx
)
5655 #if defined(CONFIG_USER_ONLY)
5656 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5658 if (unlikely(!ctx
->mem_idx
)) {
5659 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5662 /* interpreted as no-op */
5667 static void gen_icread(DisasContext
*ctx
)
5669 #if defined(CONFIG_USER_ONLY)
5670 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5672 if (unlikely(!ctx
->mem_idx
)) {
5673 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5676 /* interpreted as no-op */
5680 /* rfci (mem_idx only) */
5681 static void gen_rfci_40x(DisasContext
*ctx
)
5683 #if defined(CONFIG_USER_ONLY)
5684 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5686 if (unlikely(!ctx
->mem_idx
)) {
5687 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5690 /* Restore CPU state */
5691 gen_helper_40x_rfci();
5692 gen_sync_exception(ctx
);
5696 static void gen_rfci(DisasContext
*ctx
)
5698 #if defined(CONFIG_USER_ONLY)
5699 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5701 if (unlikely(!ctx
->mem_idx
)) {
5702 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5705 /* Restore CPU state */
5707 gen_sync_exception(ctx
);
5711 /* BookE specific */
5713 /* XXX: not implemented on 440 ? */
5714 static void gen_rfdi(DisasContext
*ctx
)
5716 #if defined(CONFIG_USER_ONLY)
5717 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5719 if (unlikely(!ctx
->mem_idx
)) {
5720 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5723 /* Restore CPU state */
5725 gen_sync_exception(ctx
);
5729 /* XXX: not implemented on 440 ? */
5730 static void gen_rfmci(DisasContext
*ctx
)
5732 #if defined(CONFIG_USER_ONLY)
5733 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5735 if (unlikely(!ctx
->mem_idx
)) {
5736 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5739 /* Restore CPU state */
5741 gen_sync_exception(ctx
);
5745 /* TLB management - PowerPC 405 implementation */
5748 static void gen_tlbre_40x(DisasContext
*ctx
)
5750 #if defined(CONFIG_USER_ONLY)
5751 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5753 if (unlikely(!ctx
->mem_idx
)) {
5754 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5757 switch (rB(ctx
->opcode
)) {
5759 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5762 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5765 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5771 /* tlbsx - tlbsx. */
5772 static void gen_tlbsx_40x(DisasContext
*ctx
)
5774 #if defined(CONFIG_USER_ONLY)
5775 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5778 if (unlikely(!ctx
->mem_idx
)) {
5779 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5782 t0
= tcg_temp_new();
5783 gen_addr_reg_index(ctx
, t0
);
5784 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5786 if (Rc(ctx
->opcode
)) {
5787 int l1
= gen_new_label();
5788 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5789 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5790 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5791 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5792 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5799 static void gen_tlbwe_40x(DisasContext
*ctx
)
5801 #if defined(CONFIG_USER_ONLY)
5802 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5804 if (unlikely(!ctx
->mem_idx
)) {
5805 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5808 switch (rB(ctx
->opcode
)) {
5810 gen_helper_4xx_tlbwe_hi(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5813 gen_helper_4xx_tlbwe_lo(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5816 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5822 /* TLB management - PowerPC 440 implementation */
5825 static void gen_tlbre_440(DisasContext
*ctx
)
5827 #if defined(CONFIG_USER_ONLY)
5828 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5830 if (unlikely(!ctx
->mem_idx
)) {
5831 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5834 switch (rB(ctx
->opcode
)) {
5839 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
5840 gen_helper_440_tlbwe(t0
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5841 tcg_temp_free_i32(t0
);
5845 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5851 /* tlbsx - tlbsx. */
5852 static void gen_tlbsx_440(DisasContext
*ctx
)
5854 #if defined(CONFIG_USER_ONLY)
5855 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5858 if (unlikely(!ctx
->mem_idx
)) {
5859 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5862 t0
= tcg_temp_new();
5863 gen_addr_reg_index(ctx
, t0
);
5864 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5866 if (Rc(ctx
->opcode
)) {
5867 int l1
= gen_new_label();
5868 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5869 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5870 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5871 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5872 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5879 static void gen_tlbwe_440(DisasContext
*ctx
)
5881 #if defined(CONFIG_USER_ONLY)
5882 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5884 if (unlikely(!ctx
->mem_idx
)) {
5885 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5888 switch (rB(ctx
->opcode
)) {
5893 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
5894 gen_helper_440_tlbwe(t0
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5895 tcg_temp_free_i32(t0
);
5899 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5906 static void gen_wrtee(DisasContext
*ctx
)
5908 #if defined(CONFIG_USER_ONLY)
5909 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5912 if (unlikely(!ctx
->mem_idx
)) {
5913 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5916 t0
= tcg_temp_new();
5917 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
5918 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
5919 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
5921 /* Stop translation to have a chance to raise an exception
5922 * if we just set msr_ee to 1
5924 gen_stop_exception(ctx
);
5929 static void gen_wrteei(DisasContext
*ctx
)
5931 #if defined(CONFIG_USER_ONLY)
5932 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5934 if (unlikely(!ctx
->mem_idx
)) {
5935 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5938 if (ctx
->opcode
& 0x00010000) {
5939 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
5940 /* Stop translation to have a chance to raise an exception */
5941 gen_stop_exception(ctx
);
5943 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
5948 /* PowerPC 440 specific instructions */
5951 static void gen_dlmzb(DisasContext
*ctx
)
5953 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
5954 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
5955 cpu_gpr
[rB(ctx
->opcode
)], t0
);
5956 tcg_temp_free_i32(t0
);
5959 /* mbar replaces eieio on 440 */
5960 static void gen_mbar(DisasContext
*ctx
)
5962 /* interpreted as no-op */
5965 /* msync replaces sync on 440 */
5966 static void gen_msync(DisasContext
*ctx
)
5968 /* interpreted as no-op */
5972 static void gen_icbt_440(DisasContext
*ctx
)
5974 /* interpreted as no-op */
5975 /* XXX: specification say this is treated as a load by the MMU
5976 * but does not generate any exception
5980 /*** Altivec vector extension ***/
5981 /* Altivec registers moves */
5983 static always_inline TCGv_ptr
gen_avr_ptr(int reg
)
5985 TCGv_ptr r
= tcg_temp_new_ptr();
5986 tcg_gen_addi_ptr(r
, cpu_env
, offsetof(CPUPPCState
, avr
[reg
]));
5990 #define GEN_VR_LDX(name, opc2, opc3) \
5991 static void glue(gen_, name)(DisasContext *ctx) \
5994 if (unlikely(!ctx->altivec_enabled)) { \
5995 gen_exception(ctx, POWERPC_EXCP_VPU); \
5998 gen_set_access_type(ctx, ACCESS_INT); \
5999 EA = tcg_temp_new(); \
6000 gen_addr_reg_index(ctx, EA); \
6001 tcg_gen_andi_tl(EA, EA, ~0xf); \
6002 if (ctx->le_mode) { \
6003 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6004 tcg_gen_addi_tl(EA, EA, 8); \
6005 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6007 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6008 tcg_gen_addi_tl(EA, EA, 8); \
6009 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6011 tcg_temp_free(EA); \
6014 #define GEN_VR_STX(name, opc2, opc3) \
6015 static void gen_st##name(DisasContext *ctx) \
6018 if (unlikely(!ctx->altivec_enabled)) { \
6019 gen_exception(ctx, POWERPC_EXCP_VPU); \
6022 gen_set_access_type(ctx, ACCESS_INT); \
6023 EA = tcg_temp_new(); \
6024 gen_addr_reg_index(ctx, EA); \
6025 tcg_gen_andi_tl(EA, EA, ~0xf); \
6026 if (ctx->le_mode) { \
6027 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6028 tcg_gen_addi_tl(EA, EA, 8); \
6029 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6031 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6032 tcg_gen_addi_tl(EA, EA, 8); \
6033 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6035 tcg_temp_free(EA); \
6038 #define GEN_VR_LVE(name, opc2, opc3) \
6039 static void gen_lve##name(DisasContext *ctx) \
6043 if (unlikely(!ctx->altivec_enabled)) { \
6044 gen_exception(ctx, POWERPC_EXCP_VPU); \
6047 gen_set_access_type(ctx, ACCESS_INT); \
6048 EA = tcg_temp_new(); \
6049 gen_addr_reg_index(ctx, EA); \
6050 rs = gen_avr_ptr(rS(ctx->opcode)); \
6051 gen_helper_lve##name (rs, EA); \
6052 tcg_temp_free(EA); \
6053 tcg_temp_free_ptr(rs); \
6056 #define GEN_VR_STVE(name, opc2, opc3) \
6057 static void gen_stve##name(DisasContext *ctx) \
6061 if (unlikely(!ctx->altivec_enabled)) { \
6062 gen_exception(ctx, POWERPC_EXCP_VPU); \
6065 gen_set_access_type(ctx, ACCESS_INT); \
6066 EA = tcg_temp_new(); \
6067 gen_addr_reg_index(ctx, EA); \
6068 rs = gen_avr_ptr(rS(ctx->opcode)); \
6069 gen_helper_stve##name (rs, EA); \
6070 tcg_temp_free(EA); \
6071 tcg_temp_free_ptr(rs); \
6074 GEN_VR_LDX(lvx
, 0x07, 0x03);
6075 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6076 GEN_VR_LDX(lvxl
, 0x07, 0x0B);
6078 GEN_VR_LVE(bx
, 0x07, 0x00);
6079 GEN_VR_LVE(hx
, 0x07, 0x01);
6080 GEN_VR_LVE(wx
, 0x07, 0x02);
6082 GEN_VR_STX(svx
, 0x07, 0x07);
6083 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6084 GEN_VR_STX(svxl
, 0x07, 0x0F);
6086 GEN_VR_STVE(bx
, 0x07, 0x04);
6087 GEN_VR_STVE(hx
, 0x07, 0x05);
6088 GEN_VR_STVE(wx
, 0x07, 0x06);
6090 static void gen_lvsl(DisasContext
*ctx
)
6094 if (unlikely(!ctx
->altivec_enabled
)) {
6095 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6098 EA
= tcg_temp_new();
6099 gen_addr_reg_index(ctx
, EA
);
6100 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6101 gen_helper_lvsl(rd
, EA
);
6103 tcg_temp_free_ptr(rd
);
6106 static void gen_lvsr(DisasContext
*ctx
)
6110 if (unlikely(!ctx
->altivec_enabled
)) {
6111 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6114 EA
= tcg_temp_new();
6115 gen_addr_reg_index(ctx
, EA
);
6116 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6117 gen_helper_lvsr(rd
, EA
);
6119 tcg_temp_free_ptr(rd
);
6122 static void gen_mfvscr(DisasContext
*ctx
)
6125 if (unlikely(!ctx
->altivec_enabled
)) {
6126 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6129 tcg_gen_movi_i64(cpu_avrh
[rD(ctx
->opcode
)], 0);
6130 t
= tcg_temp_new_i32();
6131 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUState
, vscr
));
6132 tcg_gen_extu_i32_i64(cpu_avrl
[rD(ctx
->opcode
)], t
);
6133 tcg_temp_free_i32(t
);
6136 static void gen_mtvscr(DisasContext
*ctx
)
6139 if (unlikely(!ctx
->altivec_enabled
)) {
6140 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6143 p
= gen_avr_ptr(rD(ctx
->opcode
));
6144 gen_helper_mtvscr(p
);
6145 tcg_temp_free_ptr(p
);
6148 /* Logical operations */
6149 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
6150 static void glue(gen_, name)(DisasContext *ctx) \
6152 if (unlikely(!ctx->altivec_enabled)) { \
6153 gen_exception(ctx, POWERPC_EXCP_VPU); \
6156 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6157 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6160 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16);
6161 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17);
6162 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18);
6163 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19);
6164 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20);
6166 #define GEN_VXFORM(name, opc2, opc3) \
6167 static void glue(gen_, name)(DisasContext *ctx) \
6169 TCGv_ptr ra, rb, rd; \
6170 if (unlikely(!ctx->altivec_enabled)) { \
6171 gen_exception(ctx, POWERPC_EXCP_VPU); \
6174 ra = gen_avr_ptr(rA(ctx->opcode)); \
6175 rb = gen_avr_ptr(rB(ctx->opcode)); \
6176 rd = gen_avr_ptr(rD(ctx->opcode)); \
6177 gen_helper_##name (rd, ra, rb); \
6178 tcg_temp_free_ptr(ra); \
6179 tcg_temp_free_ptr(rb); \
6180 tcg_temp_free_ptr(rd); \
6183 GEN_VXFORM(vaddubm
, 0, 0);
6184 GEN_VXFORM(vadduhm
, 0, 1);
6185 GEN_VXFORM(vadduwm
, 0, 2);
6186 GEN_VXFORM(vsububm
, 0, 16);
6187 GEN_VXFORM(vsubuhm
, 0, 17);
6188 GEN_VXFORM(vsubuwm
, 0, 18);
6189 GEN_VXFORM(vmaxub
, 1, 0);
6190 GEN_VXFORM(vmaxuh
, 1, 1);
6191 GEN_VXFORM(vmaxuw
, 1, 2);
6192 GEN_VXFORM(vmaxsb
, 1, 4);
6193 GEN_VXFORM(vmaxsh
, 1, 5);
6194 GEN_VXFORM(vmaxsw
, 1, 6);
6195 GEN_VXFORM(vminub
, 1, 8);
6196 GEN_VXFORM(vminuh
, 1, 9);
6197 GEN_VXFORM(vminuw
, 1, 10);
6198 GEN_VXFORM(vminsb
, 1, 12);
6199 GEN_VXFORM(vminsh
, 1, 13);
6200 GEN_VXFORM(vminsw
, 1, 14);
6201 GEN_VXFORM(vavgub
, 1, 16);
6202 GEN_VXFORM(vavguh
, 1, 17);
6203 GEN_VXFORM(vavguw
, 1, 18);
6204 GEN_VXFORM(vavgsb
, 1, 20);
6205 GEN_VXFORM(vavgsh
, 1, 21);
6206 GEN_VXFORM(vavgsw
, 1, 22);
6207 GEN_VXFORM(vmrghb
, 6, 0);
6208 GEN_VXFORM(vmrghh
, 6, 1);
6209 GEN_VXFORM(vmrghw
, 6, 2);
6210 GEN_VXFORM(vmrglb
, 6, 4);
6211 GEN_VXFORM(vmrglh
, 6, 5);
6212 GEN_VXFORM(vmrglw
, 6, 6);
6213 GEN_VXFORM(vmuloub
, 4, 0);
6214 GEN_VXFORM(vmulouh
, 4, 1);
6215 GEN_VXFORM(vmulosb
, 4, 4);
6216 GEN_VXFORM(vmulosh
, 4, 5);
6217 GEN_VXFORM(vmuleub
, 4, 8);
6218 GEN_VXFORM(vmuleuh
, 4, 9);
6219 GEN_VXFORM(vmulesb
, 4, 12);
6220 GEN_VXFORM(vmulesh
, 4, 13);
6221 GEN_VXFORM(vslb
, 2, 4);
6222 GEN_VXFORM(vslh
, 2, 5);
6223 GEN_VXFORM(vslw
, 2, 6);
6224 GEN_VXFORM(vsrb
, 2, 8);
6225 GEN_VXFORM(vsrh
, 2, 9);
6226 GEN_VXFORM(vsrw
, 2, 10);
6227 GEN_VXFORM(vsrab
, 2, 12);
6228 GEN_VXFORM(vsrah
, 2, 13);
6229 GEN_VXFORM(vsraw
, 2, 14);
6230 GEN_VXFORM(vslo
, 6, 16);
6231 GEN_VXFORM(vsro
, 6, 17);
6232 GEN_VXFORM(vaddcuw
, 0, 6);
6233 GEN_VXFORM(vsubcuw
, 0, 22);
6234 GEN_VXFORM(vaddubs
, 0, 8);
6235 GEN_VXFORM(vadduhs
, 0, 9);
6236 GEN_VXFORM(vadduws
, 0, 10);
6237 GEN_VXFORM(vaddsbs
, 0, 12);
6238 GEN_VXFORM(vaddshs
, 0, 13);
6239 GEN_VXFORM(vaddsws
, 0, 14);
6240 GEN_VXFORM(vsububs
, 0, 24);
6241 GEN_VXFORM(vsubuhs
, 0, 25);
6242 GEN_VXFORM(vsubuws
, 0, 26);
6243 GEN_VXFORM(vsubsbs
, 0, 28);
6244 GEN_VXFORM(vsubshs
, 0, 29);
6245 GEN_VXFORM(vsubsws
, 0, 30);
6246 GEN_VXFORM(vrlb
, 2, 0);
6247 GEN_VXFORM(vrlh
, 2, 1);
6248 GEN_VXFORM(vrlw
, 2, 2);
6249 GEN_VXFORM(vsl
, 2, 7);
6250 GEN_VXFORM(vsr
, 2, 11);
6251 GEN_VXFORM(vpkuhum
, 7, 0);
6252 GEN_VXFORM(vpkuwum
, 7, 1);
6253 GEN_VXFORM(vpkuhus
, 7, 2);
6254 GEN_VXFORM(vpkuwus
, 7, 3);
6255 GEN_VXFORM(vpkshus
, 7, 4);
6256 GEN_VXFORM(vpkswus
, 7, 5);
6257 GEN_VXFORM(vpkshss
, 7, 6);
6258 GEN_VXFORM(vpkswss
, 7, 7);
6259 GEN_VXFORM(vpkpx
, 7, 12);
6260 GEN_VXFORM(vsum4ubs
, 4, 24);
6261 GEN_VXFORM(vsum4sbs
, 4, 28);
6262 GEN_VXFORM(vsum4shs
, 4, 25);
6263 GEN_VXFORM(vsum2sws
, 4, 26);
6264 GEN_VXFORM(vsumsws
, 4, 30);
6265 GEN_VXFORM(vaddfp
, 5, 0);
6266 GEN_VXFORM(vsubfp
, 5, 1);
6267 GEN_VXFORM(vmaxfp
, 5, 16);
6268 GEN_VXFORM(vminfp
, 5, 17);
6270 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
6271 static void glue(gen_, name)(DisasContext *ctx) \
6273 TCGv_ptr ra, rb, rd; \
6274 if (unlikely(!ctx->altivec_enabled)) { \
6275 gen_exception(ctx, POWERPC_EXCP_VPU); \
6278 ra = gen_avr_ptr(rA(ctx->opcode)); \
6279 rb = gen_avr_ptr(rB(ctx->opcode)); \
6280 rd = gen_avr_ptr(rD(ctx->opcode)); \
6281 gen_helper_##opname (rd, ra, rb); \
6282 tcg_temp_free_ptr(ra); \
6283 tcg_temp_free_ptr(rb); \
6284 tcg_temp_free_ptr(rd); \
6287 #define GEN_VXRFORM(name, opc2, opc3) \
6288 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
6289 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6291 GEN_VXRFORM(vcmpequb
, 3, 0)
6292 GEN_VXRFORM(vcmpequh
, 3, 1)
6293 GEN_VXRFORM(vcmpequw
, 3, 2)
6294 GEN_VXRFORM(vcmpgtsb
, 3, 12)
6295 GEN_VXRFORM(vcmpgtsh
, 3, 13)
6296 GEN_VXRFORM(vcmpgtsw
, 3, 14)
6297 GEN_VXRFORM(vcmpgtub
, 3, 8)
6298 GEN_VXRFORM(vcmpgtuh
, 3, 9)
6299 GEN_VXRFORM(vcmpgtuw
, 3, 10)
6300 GEN_VXRFORM(vcmpeqfp
, 3, 3)
6301 GEN_VXRFORM(vcmpgefp
, 3, 7)
6302 GEN_VXRFORM(vcmpgtfp
, 3, 11)
6303 GEN_VXRFORM(vcmpbfp
, 3, 15)
6305 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6306 static void glue(gen_, name)(DisasContext *ctx) \
6310 if (unlikely(!ctx->altivec_enabled)) { \
6311 gen_exception(ctx, POWERPC_EXCP_VPU); \
6314 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6315 rd = gen_avr_ptr(rD(ctx->opcode)); \
6316 gen_helper_##name (rd, simm); \
6317 tcg_temp_free_i32(simm); \
6318 tcg_temp_free_ptr(rd); \
6321 GEN_VXFORM_SIMM(vspltisb
, 6, 12);
6322 GEN_VXFORM_SIMM(vspltish
, 6, 13);
6323 GEN_VXFORM_SIMM(vspltisw
, 6, 14);
6325 #define GEN_VXFORM_NOA(name, opc2, opc3) \
6326 static void glue(gen_, name)(DisasContext *ctx) \
6329 if (unlikely(!ctx->altivec_enabled)) { \
6330 gen_exception(ctx, POWERPC_EXCP_VPU); \
6333 rb = gen_avr_ptr(rB(ctx->opcode)); \
6334 rd = gen_avr_ptr(rD(ctx->opcode)); \
6335 gen_helper_##name (rd, rb); \
6336 tcg_temp_free_ptr(rb); \
6337 tcg_temp_free_ptr(rd); \
6340 GEN_VXFORM_NOA(vupkhsb
, 7, 8);
6341 GEN_VXFORM_NOA(vupkhsh
, 7, 9);
6342 GEN_VXFORM_NOA(vupklsb
, 7, 10);
6343 GEN_VXFORM_NOA(vupklsh
, 7, 11);
6344 GEN_VXFORM_NOA(vupkhpx
, 7, 13);
6345 GEN_VXFORM_NOA(vupklpx
, 7, 15);
6346 GEN_VXFORM_NOA(vrefp
, 5, 4);
6347 GEN_VXFORM_NOA(vrsqrtefp
, 5, 5);
6348 GEN_VXFORM_NOA(vlogefp
, 5, 7);
6349 GEN_VXFORM_NOA(vrfim
, 5, 8);
6350 GEN_VXFORM_NOA(vrfin
, 5, 9);
6351 GEN_VXFORM_NOA(vrfip
, 5, 10);
6352 GEN_VXFORM_NOA(vrfiz
, 5, 11);
6354 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6355 static void glue(gen_, name)(DisasContext *ctx) \
6359 if (unlikely(!ctx->altivec_enabled)) { \
6360 gen_exception(ctx, POWERPC_EXCP_VPU); \
6363 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6364 rd = gen_avr_ptr(rD(ctx->opcode)); \
6365 gen_helper_##name (rd, simm); \
6366 tcg_temp_free_i32(simm); \
6367 tcg_temp_free_ptr(rd); \
6370 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
6371 static void glue(gen_, name)(DisasContext *ctx) \
6375 if (unlikely(!ctx->altivec_enabled)) { \
6376 gen_exception(ctx, POWERPC_EXCP_VPU); \
6379 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6380 rb = gen_avr_ptr(rB(ctx->opcode)); \
6381 rd = gen_avr_ptr(rD(ctx->opcode)); \
6382 gen_helper_##name (rd, rb, uimm); \
6383 tcg_temp_free_i32(uimm); \
6384 tcg_temp_free_ptr(rb); \
6385 tcg_temp_free_ptr(rd); \
6388 GEN_VXFORM_UIMM(vspltb
, 6, 8);
6389 GEN_VXFORM_UIMM(vsplth
, 6, 9);
6390 GEN_VXFORM_UIMM(vspltw
, 6, 10);
6391 GEN_VXFORM_UIMM(vcfux
, 5, 12);
6392 GEN_VXFORM_UIMM(vcfsx
, 5, 13);
6393 GEN_VXFORM_UIMM(vctuxs
, 5, 14);
6394 GEN_VXFORM_UIMM(vctsxs
, 5, 15);
6396 static void gen_vsldoi(DisasContext
*ctx
)
6398 TCGv_ptr ra
, rb
, rd
;
6400 if (unlikely(!ctx
->altivec_enabled
)) {
6401 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6404 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6405 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6406 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6407 sh
= tcg_const_i32(VSH(ctx
->opcode
));
6408 gen_helper_vsldoi (rd
, ra
, rb
, sh
);
6409 tcg_temp_free_ptr(ra
);
6410 tcg_temp_free_ptr(rb
);
6411 tcg_temp_free_ptr(rd
);
6412 tcg_temp_free_i32(sh
);
6415 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
6416 static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
6418 TCGv_ptr ra, rb, rc, rd; \
6419 if (unlikely(!ctx->altivec_enabled)) { \
6420 gen_exception(ctx, POWERPC_EXCP_VPU); \
6423 ra = gen_avr_ptr(rA(ctx->opcode)); \
6424 rb = gen_avr_ptr(rB(ctx->opcode)); \
6425 rc = gen_avr_ptr(rC(ctx->opcode)); \
6426 rd = gen_avr_ptr(rD(ctx->opcode)); \
6427 if (Rc(ctx->opcode)) { \
6428 gen_helper_##name1 (rd, ra, rb, rc); \
6430 gen_helper_##name0 (rd, ra, rb, rc); \
6432 tcg_temp_free_ptr(ra); \
6433 tcg_temp_free_ptr(rb); \
6434 tcg_temp_free_ptr(rc); \
6435 tcg_temp_free_ptr(rd); \
6438 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16)
6440 static void gen_vmladduhm(DisasContext
*ctx
)
6442 TCGv_ptr ra
, rb
, rc
, rd
;
6443 if (unlikely(!ctx
->altivec_enabled
)) {
6444 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6447 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6448 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6449 rc
= gen_avr_ptr(rC(ctx
->opcode
));
6450 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6451 gen_helper_vmladduhm(rd
, ra
, rb
, rc
);
6452 tcg_temp_free_ptr(ra
);
6453 tcg_temp_free_ptr(rb
);
6454 tcg_temp_free_ptr(rc
);
6455 tcg_temp_free_ptr(rd
);
6458 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18)
6459 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19)
6460 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20)
6461 GEN_VAFORM_PAIRED(vsel
, vperm
, 21)
6462 GEN_VAFORM_PAIRED(vmaddfp
, vnmsubfp
, 23)
6464 /*** SPE extension ***/
6465 /* Register moves */
6467 static always_inline
void gen_load_gpr64(TCGv_i64 t
, int reg
) {
6468 #if defined(TARGET_PPC64)
6469 tcg_gen_mov_i64(t
, cpu_gpr
[reg
]);
6471 tcg_gen_concat_i32_i64(t
, cpu_gpr
[reg
], cpu_gprh
[reg
]);
6475 static always_inline
void gen_store_gpr64(int reg
, TCGv_i64 t
) {
6476 #if defined(TARGET_PPC64)
6477 tcg_gen_mov_i64(cpu_gpr
[reg
], t
);
6479 TCGv_i64 tmp
= tcg_temp_new_i64();
6480 tcg_gen_trunc_i64_i32(cpu_gpr
[reg
], t
);
6481 tcg_gen_shri_i64(tmp
, t
, 32);
6482 tcg_gen_trunc_i64_i32(cpu_gprh
[reg
], tmp
);
6483 tcg_temp_free_i64(tmp
);
6487 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
6488 static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
6490 if (Rc(ctx->opcode)) \
6496 /* Handler for undefined SPE opcodes */
6497 static always_inline
void gen_speundef (DisasContext
*ctx
)
6499 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6503 #if defined(TARGET_PPC64)
6504 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6505 static always_inline void gen_##name (DisasContext *ctx) \
6507 if (unlikely(!ctx->spe_enabled)) { \
6508 gen_exception(ctx, POWERPC_EXCP_APU); \
6511 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6512 cpu_gpr[rB(ctx->opcode)]); \
6515 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6516 static always_inline void gen_##name (DisasContext *ctx) \
6518 if (unlikely(!ctx->spe_enabled)) { \
6519 gen_exception(ctx, POWERPC_EXCP_APU); \
6522 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6523 cpu_gpr[rB(ctx->opcode)]); \
6524 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6525 cpu_gprh[rB(ctx->opcode)]); \
6529 GEN_SPEOP_LOGIC2(evand
, tcg_gen_and_tl
);
6530 GEN_SPEOP_LOGIC2(evandc
, tcg_gen_andc_tl
);
6531 GEN_SPEOP_LOGIC2(evxor
, tcg_gen_xor_tl
);
6532 GEN_SPEOP_LOGIC2(evor
, tcg_gen_or_tl
);
6533 GEN_SPEOP_LOGIC2(evnor
, tcg_gen_nor_tl
);
6534 GEN_SPEOP_LOGIC2(eveqv
, tcg_gen_eqv_tl
);
6535 GEN_SPEOP_LOGIC2(evorc
, tcg_gen_orc_tl
);
6536 GEN_SPEOP_LOGIC2(evnand
, tcg_gen_nand_tl
);
6538 /* SPE logic immediate */
6539 #if defined(TARGET_PPC64)
6540 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6541 static always_inline void gen_##name (DisasContext *ctx) \
6543 if (unlikely(!ctx->spe_enabled)) { \
6544 gen_exception(ctx, POWERPC_EXCP_APU); \
6547 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6548 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6549 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6550 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6551 tcg_opi(t0, t0, rB(ctx->opcode)); \
6552 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6553 tcg_gen_trunc_i64_i32(t1, t2); \
6554 tcg_temp_free_i64(t2); \
6555 tcg_opi(t1, t1, rB(ctx->opcode)); \
6556 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6557 tcg_temp_free_i32(t0); \
6558 tcg_temp_free_i32(t1); \
6561 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6562 static always_inline void gen_##name (DisasContext *ctx) \
6564 if (unlikely(!ctx->spe_enabled)) { \
6565 gen_exception(ctx, POWERPC_EXCP_APU); \
6568 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6570 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6574 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi
, tcg_gen_shli_i32
);
6575 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu
, tcg_gen_shri_i32
);
6576 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis
, tcg_gen_sari_i32
);
6577 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi
, tcg_gen_rotli_i32
);
6579 /* SPE arithmetic */
6580 #if defined(TARGET_PPC64)
6581 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6582 static always_inline void gen_##name (DisasContext *ctx) \
6584 if (unlikely(!ctx->spe_enabled)) { \
6585 gen_exception(ctx, POWERPC_EXCP_APU); \
6588 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6589 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6590 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6591 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6593 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6594 tcg_gen_trunc_i64_i32(t1, t2); \
6595 tcg_temp_free_i64(t2); \
6597 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6598 tcg_temp_free_i32(t0); \
6599 tcg_temp_free_i32(t1); \
6602 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6603 static always_inline void gen_##name (DisasContext *ctx) \
6605 if (unlikely(!ctx->spe_enabled)) { \
6606 gen_exception(ctx, POWERPC_EXCP_APU); \
6609 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6610 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6614 static always_inline
void gen_op_evabs (TCGv_i32 ret
, TCGv_i32 arg1
)
6616 int l1
= gen_new_label();
6617 int l2
= gen_new_label();
6619 tcg_gen_brcondi_i32(TCG_COND_GE
, arg1
, 0, l1
);
6620 tcg_gen_neg_i32(ret
, arg1
);
6623 tcg_gen_mov_i32(ret
, arg1
);
6626 GEN_SPEOP_ARITH1(evabs
, gen_op_evabs
);
6627 GEN_SPEOP_ARITH1(evneg
, tcg_gen_neg_i32
);
6628 GEN_SPEOP_ARITH1(evextsb
, tcg_gen_ext8s_i32
);
6629 GEN_SPEOP_ARITH1(evextsh
, tcg_gen_ext16s_i32
);
6630 static always_inline
void gen_op_evrndw (TCGv_i32 ret
, TCGv_i32 arg1
)
6632 tcg_gen_addi_i32(ret
, arg1
, 0x8000);
6633 tcg_gen_ext16u_i32(ret
, ret
);
6635 GEN_SPEOP_ARITH1(evrndw
, gen_op_evrndw
);
6636 GEN_SPEOP_ARITH1(evcntlsw
, gen_helper_cntlsw32
);
6637 GEN_SPEOP_ARITH1(evcntlzw
, gen_helper_cntlzw32
);
6639 #if defined(TARGET_PPC64)
6640 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6641 static always_inline void gen_##name (DisasContext *ctx) \
6643 if (unlikely(!ctx->spe_enabled)) { \
6644 gen_exception(ctx, POWERPC_EXCP_APU); \
6647 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6648 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6649 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
6650 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
6651 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6652 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6653 tcg_op(t0, t0, t2); \
6654 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6655 tcg_gen_trunc_i64_i32(t1, t3); \
6656 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6657 tcg_gen_trunc_i64_i32(t2, t3); \
6658 tcg_temp_free_i64(t3); \
6659 tcg_op(t1, t1, t2); \
6660 tcg_temp_free_i32(t2); \
6661 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6662 tcg_temp_free_i32(t0); \
6663 tcg_temp_free_i32(t1); \
6666 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6667 static always_inline void gen_##name (DisasContext *ctx) \
6669 if (unlikely(!ctx->spe_enabled)) { \
6670 gen_exception(ctx, POWERPC_EXCP_APU); \
6673 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6674 cpu_gpr[rB(ctx->opcode)]); \
6675 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6676 cpu_gprh[rB(ctx->opcode)]); \
6680 static always_inline
void gen_op_evsrwu (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6685 l1
= gen_new_label();
6686 l2
= gen_new_label();
6687 t0
= tcg_temp_local_new_i32();
6688 /* No error here: 6 bits are used */
6689 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6690 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6691 tcg_gen_shr_i32(ret
, arg1
, t0
);
6694 tcg_gen_movi_i32(ret
, 0);
6696 tcg_temp_free_i32(t0
);
6698 GEN_SPEOP_ARITH2(evsrwu
, gen_op_evsrwu
);
6699 static always_inline
void gen_op_evsrws (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6704 l1
= gen_new_label();
6705 l2
= gen_new_label();
6706 t0
= tcg_temp_local_new_i32();
6707 /* No error here: 6 bits are used */
6708 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6709 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6710 tcg_gen_sar_i32(ret
, arg1
, t0
);
6713 tcg_gen_movi_i32(ret
, 0);
6715 tcg_temp_free_i32(t0
);
6717 GEN_SPEOP_ARITH2(evsrws
, gen_op_evsrws
);
6718 static always_inline
void gen_op_evslw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6723 l1
= gen_new_label();
6724 l2
= gen_new_label();
6725 t0
= tcg_temp_local_new_i32();
6726 /* No error here: 6 bits are used */
6727 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6728 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6729 tcg_gen_shl_i32(ret
, arg1
, t0
);
6732 tcg_gen_movi_i32(ret
, 0);
6734 tcg_temp_free_i32(t0
);
6736 GEN_SPEOP_ARITH2(evslw
, gen_op_evslw
);
6737 static always_inline
void gen_op_evrlw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6739 TCGv_i32 t0
= tcg_temp_new_i32();
6740 tcg_gen_andi_i32(t0
, arg2
, 0x1F);
6741 tcg_gen_rotl_i32(ret
, arg1
, t0
);
6742 tcg_temp_free_i32(t0
);
6744 GEN_SPEOP_ARITH2(evrlw
, gen_op_evrlw
);
6745 static always_inline
void gen_evmergehi (DisasContext
*ctx
)
6747 if (unlikely(!ctx
->spe_enabled
)) {
6748 gen_exception(ctx
, POWERPC_EXCP_APU
);
6751 #if defined(TARGET_PPC64)
6752 TCGv t0
= tcg_temp_new();
6753 TCGv t1
= tcg_temp_new();
6754 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
6755 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
6756 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6760 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
6761 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6764 GEN_SPEOP_ARITH2(evaddw
, tcg_gen_add_i32
);
6765 static always_inline
void gen_op_evsubf (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6767 tcg_gen_sub_i32(ret
, arg2
, arg1
);
6769 GEN_SPEOP_ARITH2(evsubfw
, gen_op_evsubf
);
6771 /* SPE arithmetic immediate */
6772 #if defined(TARGET_PPC64)
6773 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6774 static always_inline void gen_##name (DisasContext *ctx) \
6776 if (unlikely(!ctx->spe_enabled)) { \
6777 gen_exception(ctx, POWERPC_EXCP_APU); \
6780 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6781 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6782 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6783 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
6784 tcg_op(t0, t0, rA(ctx->opcode)); \
6785 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6786 tcg_gen_trunc_i64_i32(t1, t2); \
6787 tcg_temp_free_i64(t2); \
6788 tcg_op(t1, t1, rA(ctx->opcode)); \
6789 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6790 tcg_temp_free_i32(t0); \
6791 tcg_temp_free_i32(t1); \
6794 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6795 static always_inline void gen_##name (DisasContext *ctx) \
6797 if (unlikely(!ctx->spe_enabled)) { \
6798 gen_exception(ctx, POWERPC_EXCP_APU); \
6801 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
6803 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
6807 GEN_SPEOP_ARITH_IMM2(evaddiw
, tcg_gen_addi_i32
);
6808 GEN_SPEOP_ARITH_IMM2(evsubifw
, tcg_gen_subi_i32
);
6810 /* SPE comparison */
6811 #if defined(TARGET_PPC64)
6812 #define GEN_SPEOP_COMP(name, tcg_cond) \
6813 static always_inline void gen_##name (DisasContext *ctx) \
6815 if (unlikely(!ctx->spe_enabled)) { \
6816 gen_exception(ctx, POWERPC_EXCP_APU); \
6819 int l1 = gen_new_label(); \
6820 int l2 = gen_new_label(); \
6821 int l3 = gen_new_label(); \
6822 int l4 = gen_new_label(); \
6823 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6824 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6825 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6826 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6827 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
6828 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
6829 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
6831 gen_set_label(l1); \
6832 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6833 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6834 gen_set_label(l2); \
6835 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6836 tcg_gen_trunc_i64_i32(t0, t2); \
6837 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6838 tcg_gen_trunc_i64_i32(t1, t2); \
6839 tcg_temp_free_i64(t2); \
6840 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
6841 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6842 ~(CRF_CH | CRF_CH_AND_CL)); \
6844 gen_set_label(l3); \
6845 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6846 CRF_CH | CRF_CH_OR_CL); \
6847 gen_set_label(l4); \
6848 tcg_temp_free_i32(t0); \
6849 tcg_temp_free_i32(t1); \
6852 #define GEN_SPEOP_COMP(name, tcg_cond) \
6853 static always_inline void gen_##name (DisasContext *ctx) \
6855 if (unlikely(!ctx->spe_enabled)) { \
6856 gen_exception(ctx, POWERPC_EXCP_APU); \
6859 int l1 = gen_new_label(); \
6860 int l2 = gen_new_label(); \
6861 int l3 = gen_new_label(); \
6862 int l4 = gen_new_label(); \
6864 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
6865 cpu_gpr[rB(ctx->opcode)], l1); \
6866 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
6868 gen_set_label(l1); \
6869 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6870 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6871 gen_set_label(l2); \
6872 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
6873 cpu_gprh[rB(ctx->opcode)], l3); \
6874 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6875 ~(CRF_CH | CRF_CH_AND_CL)); \
6877 gen_set_label(l3); \
6878 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6879 CRF_CH | CRF_CH_OR_CL); \
6880 gen_set_label(l4); \
6883 GEN_SPEOP_COMP(evcmpgtu
, TCG_COND_GTU
);
6884 GEN_SPEOP_COMP(evcmpgts
, TCG_COND_GT
);
6885 GEN_SPEOP_COMP(evcmpltu
, TCG_COND_LTU
);
6886 GEN_SPEOP_COMP(evcmplts
, TCG_COND_LT
);
6887 GEN_SPEOP_COMP(evcmpeq
, TCG_COND_EQ
);
6890 static always_inline
void gen_brinc (DisasContext
*ctx
)
6892 /* Note: brinc is usable even if SPE is disabled */
6893 gen_helper_brinc(cpu_gpr
[rD(ctx
->opcode
)],
6894 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
6896 static always_inline
void gen_evmergelo (DisasContext
*ctx
)
6898 if (unlikely(!ctx
->spe_enabled
)) {
6899 gen_exception(ctx
, POWERPC_EXCP_APU
);
6902 #if defined(TARGET_PPC64)
6903 TCGv t0
= tcg_temp_new();
6904 TCGv t1
= tcg_temp_new();
6905 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
6906 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
6907 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6911 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
6912 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
6915 static always_inline
void gen_evmergehilo (DisasContext
*ctx
)
6917 if (unlikely(!ctx
->spe_enabled
)) {
6918 gen_exception(ctx
, POWERPC_EXCP_APU
);
6921 #if defined(TARGET_PPC64)
6922 TCGv t0
= tcg_temp_new();
6923 TCGv t1
= tcg_temp_new();
6924 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
6925 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
6926 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6930 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
6931 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6934 static always_inline
void gen_evmergelohi (DisasContext
*ctx
)
6936 if (unlikely(!ctx
->spe_enabled
)) {
6937 gen_exception(ctx
, POWERPC_EXCP_APU
);
6940 #if defined(TARGET_PPC64)
6941 TCGv t0
= tcg_temp_new();
6942 TCGv t1
= tcg_temp_new();
6943 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
6944 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
6945 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6949 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
6950 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
6953 static always_inline
void gen_evsplati (DisasContext
*ctx
)
6955 uint64_t imm
= ((int32_t)(rA(ctx
->opcode
) << 11)) >> 27;
6957 #if defined(TARGET_PPC64)
6958 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
6960 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
6961 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
6964 static always_inline
void gen_evsplatfi (DisasContext
*ctx
)
6966 uint64_t imm
= rA(ctx
->opcode
) << 11;
6968 #if defined(TARGET_PPC64)
6969 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
6971 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
6972 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
6976 static always_inline
void gen_evsel (DisasContext
*ctx
)
6978 int l1
= gen_new_label();
6979 int l2
= gen_new_label();
6980 int l3
= gen_new_label();
6981 int l4
= gen_new_label();
6982 TCGv_i32 t0
= tcg_temp_local_new_i32();
6983 #if defined(TARGET_PPC64)
6984 TCGv t1
= tcg_temp_local_new();
6985 TCGv t2
= tcg_temp_local_new();
6987 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 3);
6988 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
6989 #if defined(TARGET_PPC64)
6990 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
6992 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6996 #if defined(TARGET_PPC64)
6997 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
6999 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7002 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 2);
7003 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l3
);
7004 #if defined(TARGET_PPC64)
7005 tcg_gen_andi_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7007 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7011 #if defined(TARGET_PPC64)
7012 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7014 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7017 tcg_temp_free_i32(t0
);
7018 #if defined(TARGET_PPC64)
7019 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
, t2
);
7025 static void gen_evsel0(DisasContext
*ctx
)
7030 static void gen_evsel1(DisasContext
*ctx
)
7035 static void gen_evsel2(DisasContext
*ctx
)
7040 static void gen_evsel3(DisasContext
*ctx
)
7045 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, PPC_SPE
); ////
7046 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, PPC_SPE
);
7047 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, PPC_SPE
); ////
7048 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, PPC_SPE
);
7049 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, PPC_SPE
); ////
7050 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, PPC_SPE
); ////
7051 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, PPC_SPE
); ////
7052 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x00000000, PPC_SPE
); //
7053 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0x00000000, PPC_SPE
); ////
7054 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, PPC_SPE
); ////
7055 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, PPC_SPE
); ////
7056 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, PPC_SPE
); ////
7057 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0x00000000, PPC_SPE
); ////
7058 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, PPC_SPE
); ////
7059 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, PPC_SPE
); ////
7060 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, PPC_SPE
);
7061 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, PPC_SPE
); ////
7062 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, PPC_SPE
);
7063 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, PPC_SPE
); //
7064 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, PPC_SPE
);
7065 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, PPC_SPE
); ////
7066 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, PPC_SPE
); ////
7067 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, PPC_SPE
); ////
7068 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, PPC_SPE
); ////
7069 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, PPC_SPE
); ////
7071 /* SPE load and stores */
7072 static always_inline
void gen_addr_spe_imm_index (DisasContext
*ctx
, TCGv EA
, int sh
)
7074 target_ulong uimm
= rB(ctx
->opcode
);
7076 if (rA(ctx
->opcode
) == 0) {
7077 tcg_gen_movi_tl(EA
, uimm
<< sh
);
7079 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], uimm
<< sh
);
7080 #if defined(TARGET_PPC64)
7081 if (!ctx
->sf_mode
) {
7082 tcg_gen_ext32u_tl(EA
, EA
);
7088 static always_inline
void gen_op_evldd(DisasContext
*ctx
, TCGv addr
)
7090 #if defined(TARGET_PPC64)
7091 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7093 TCGv_i64 t0
= tcg_temp_new_i64();
7094 gen_qemu_ld64(ctx
, t0
, addr
);
7095 tcg_gen_trunc_i64_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7096 tcg_gen_shri_i64(t0
, t0
, 32);
7097 tcg_gen_trunc_i64_i32(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7098 tcg_temp_free_i64(t0
);
7102 static always_inline
void gen_op_evldw(DisasContext
*ctx
, TCGv addr
)
7104 #if defined(TARGET_PPC64)
7105 TCGv t0
= tcg_temp_new();
7106 gen_qemu_ld32u(ctx
, t0
, addr
);
7107 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7108 gen_addr_add(ctx
, addr
, addr
, 4);
7109 gen_qemu_ld32u(ctx
, t0
, addr
);
7110 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7113 gen_qemu_ld32u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7114 gen_addr_add(ctx
, addr
, addr
, 4);
7115 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7119 static always_inline
void gen_op_evldh(DisasContext
*ctx
, TCGv addr
)
7121 TCGv t0
= tcg_temp_new();
7122 #if defined(TARGET_PPC64)
7123 gen_qemu_ld16u(ctx
, t0
, addr
);
7124 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7125 gen_addr_add(ctx
, addr
, addr
, 2);
7126 gen_qemu_ld16u(ctx
, t0
, addr
);
7127 tcg_gen_shli_tl(t0
, t0
, 32);
7128 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7129 gen_addr_add(ctx
, addr
, addr
, 2);
7130 gen_qemu_ld16u(ctx
, t0
, addr
);
7131 tcg_gen_shli_tl(t0
, t0
, 16);
7132 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7133 gen_addr_add(ctx
, addr
, addr
, 2);
7134 gen_qemu_ld16u(ctx
, t0
, addr
);
7135 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7137 gen_qemu_ld16u(ctx
, t0
, addr
);
7138 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7139 gen_addr_add(ctx
, addr
, addr
, 2);
7140 gen_qemu_ld16u(ctx
, t0
, addr
);
7141 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7142 gen_addr_add(ctx
, addr
, addr
, 2);
7143 gen_qemu_ld16u(ctx
, t0
, addr
);
7144 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7145 gen_addr_add(ctx
, addr
, addr
, 2);
7146 gen_qemu_ld16u(ctx
, t0
, addr
);
7147 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7152 static always_inline
void gen_op_evlhhesplat(DisasContext
*ctx
, TCGv addr
)
7154 TCGv t0
= tcg_temp_new();
7155 gen_qemu_ld16u(ctx
, t0
, addr
);
7156 #if defined(TARGET_PPC64)
7157 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7158 tcg_gen_shli_tl(t0
, t0
, 16);
7159 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7161 tcg_gen_shli_tl(t0
, t0
, 16);
7162 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7163 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7168 static always_inline
void gen_op_evlhhousplat(DisasContext
*ctx
, TCGv addr
)
7170 TCGv t0
= tcg_temp_new();
7171 gen_qemu_ld16u(ctx
, t0
, addr
);
7172 #if defined(TARGET_PPC64)
7173 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7174 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7176 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7177 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7182 static always_inline
void gen_op_evlhhossplat(DisasContext
*ctx
, TCGv addr
)
7184 TCGv t0
= tcg_temp_new();
7185 gen_qemu_ld16s(ctx
, t0
, addr
);
7186 #if defined(TARGET_PPC64)
7187 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7188 tcg_gen_ext32u_tl(t0
, t0
);
7189 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7191 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7192 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7197 static always_inline
void gen_op_evlwhe(DisasContext
*ctx
, TCGv addr
)
7199 TCGv t0
= tcg_temp_new();
7200 #if defined(TARGET_PPC64)
7201 gen_qemu_ld16u(ctx
, t0
, addr
);
7202 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7203 gen_addr_add(ctx
, addr
, addr
, 2);
7204 gen_qemu_ld16u(ctx
, t0
, addr
);
7205 tcg_gen_shli_tl(t0
, t0
, 16);
7206 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7208 gen_qemu_ld16u(ctx
, t0
, addr
);
7209 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7210 gen_addr_add(ctx
, addr
, addr
, 2);
7211 gen_qemu_ld16u(ctx
, t0
, addr
);
7212 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7217 static always_inline
void gen_op_evlwhou(DisasContext
*ctx
, TCGv addr
)
7219 #if defined(TARGET_PPC64)
7220 TCGv t0
= tcg_temp_new();
7221 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7222 gen_addr_add(ctx
, addr
, addr
, 2);
7223 gen_qemu_ld16u(ctx
, t0
, addr
);
7224 tcg_gen_shli_tl(t0
, t0
, 32);
7225 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7228 gen_qemu_ld16u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7229 gen_addr_add(ctx
, addr
, addr
, 2);
7230 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7234 static always_inline
void gen_op_evlwhos(DisasContext
*ctx
, TCGv addr
)
7236 #if defined(TARGET_PPC64)
7237 TCGv t0
= tcg_temp_new();
7238 gen_qemu_ld16s(ctx
, t0
, addr
);
7239 tcg_gen_ext32u_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7240 gen_addr_add(ctx
, addr
, addr
, 2);
7241 gen_qemu_ld16s(ctx
, t0
, addr
);
7242 tcg_gen_shli_tl(t0
, t0
, 32);
7243 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7246 gen_qemu_ld16s(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7247 gen_addr_add(ctx
, addr
, addr
, 2);
7248 gen_qemu_ld16s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7252 static always_inline
void gen_op_evlwwsplat(DisasContext
*ctx
, TCGv addr
)
7254 TCGv t0
= tcg_temp_new();
7255 gen_qemu_ld32u(ctx
, t0
, addr
);
7256 #if defined(TARGET_PPC64)
7257 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7258 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7260 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7261 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7266 static always_inline
void gen_op_evlwhsplat(DisasContext
*ctx
, TCGv addr
)
7268 TCGv t0
= tcg_temp_new();
7269 #if defined(TARGET_PPC64)
7270 gen_qemu_ld16u(ctx
, t0
, addr
);
7271 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7272 tcg_gen_shli_tl(t0
, t0
, 32);
7273 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7274 gen_addr_add(ctx
, addr
, addr
, 2);
7275 gen_qemu_ld16u(ctx
, t0
, addr
);
7276 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7277 tcg_gen_shli_tl(t0
, t0
, 16);
7278 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7280 gen_qemu_ld16u(ctx
, t0
, addr
);
7281 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7282 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7283 gen_addr_add(ctx
, addr
, addr
, 2);
7284 gen_qemu_ld16u(ctx
, t0
, addr
);
7285 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7286 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7291 static always_inline
void gen_op_evstdd(DisasContext
*ctx
, TCGv addr
)
7293 #if defined(TARGET_PPC64)
7294 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7296 TCGv_i64 t0
= tcg_temp_new_i64();
7297 tcg_gen_concat_i32_i64(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gprh
[rS(ctx
->opcode
)]);
7298 gen_qemu_st64(ctx
, t0
, addr
);
7299 tcg_temp_free_i64(t0
);
7303 static always_inline
void gen_op_evstdw(DisasContext
*ctx
, TCGv addr
)
7305 #if defined(TARGET_PPC64)
7306 TCGv t0
= tcg_temp_new();
7307 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7308 gen_qemu_st32(ctx
, t0
, addr
);
7311 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7313 gen_addr_add(ctx
, addr
, addr
, 4);
7314 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7317 static always_inline
void gen_op_evstdh(DisasContext
*ctx
, TCGv addr
)
7319 TCGv t0
= tcg_temp_new();
7320 #if defined(TARGET_PPC64)
7321 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7323 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7325 gen_qemu_st16(ctx
, t0
, addr
);
7326 gen_addr_add(ctx
, addr
, addr
, 2);
7327 #if defined(TARGET_PPC64)
7328 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7329 gen_qemu_st16(ctx
, t0
, addr
);
7331 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7333 gen_addr_add(ctx
, addr
, addr
, 2);
7334 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7335 gen_qemu_st16(ctx
, t0
, addr
);
7337 gen_addr_add(ctx
, addr
, addr
, 2);
7338 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7341 static always_inline
void gen_op_evstwhe(DisasContext
*ctx
, TCGv addr
)
7343 TCGv t0
= tcg_temp_new();
7344 #if defined(TARGET_PPC64)
7345 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7347 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7349 gen_qemu_st16(ctx
, t0
, addr
);
7350 gen_addr_add(ctx
, addr
, addr
, 2);
7351 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7352 gen_qemu_st16(ctx
, t0
, addr
);
7356 static always_inline
void gen_op_evstwho(DisasContext
*ctx
, TCGv addr
)
7358 #if defined(TARGET_PPC64)
7359 TCGv t0
= tcg_temp_new();
7360 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7361 gen_qemu_st16(ctx
, t0
, addr
);
7364 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7366 gen_addr_add(ctx
, addr
, addr
, 2);
7367 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7370 static always_inline
void gen_op_evstwwe(DisasContext
*ctx
, TCGv addr
)
7372 #if defined(TARGET_PPC64)
7373 TCGv t0
= tcg_temp_new();
7374 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7375 gen_qemu_st32(ctx
, t0
, addr
);
7378 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7382 static always_inline
void gen_op_evstwwo(DisasContext
*ctx
, TCGv addr
)
7384 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7387 #define GEN_SPEOP_LDST(name, opc2, sh) \
7388 static void glue(gen_, name)(DisasContext *ctx) \
7391 if (unlikely(!ctx->spe_enabled)) { \
7392 gen_exception(ctx, POWERPC_EXCP_APU); \
7395 gen_set_access_type(ctx, ACCESS_INT); \
7396 t0 = tcg_temp_new(); \
7397 if (Rc(ctx->opcode)) { \
7398 gen_addr_spe_imm_index(ctx, t0, sh); \
7400 gen_addr_reg_index(ctx, t0); \
7402 gen_op_##name(ctx, t0); \
7403 tcg_temp_free(t0); \
7406 GEN_SPEOP_LDST(evldd
, 0x00, 3);
7407 GEN_SPEOP_LDST(evldw
, 0x01, 3);
7408 GEN_SPEOP_LDST(evldh
, 0x02, 3);
7409 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1);
7410 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1);
7411 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1);
7412 GEN_SPEOP_LDST(evlwhe
, 0x08, 2);
7413 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2);
7414 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2);
7415 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2);
7416 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2);
7418 GEN_SPEOP_LDST(evstdd
, 0x10, 3);
7419 GEN_SPEOP_LDST(evstdw
, 0x11, 3);
7420 GEN_SPEOP_LDST(evstdh
, 0x12, 3);
7421 GEN_SPEOP_LDST(evstwhe
, 0x18, 2);
7422 GEN_SPEOP_LDST(evstwho
, 0x1A, 2);
7423 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2);
7424 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2);
7426 /* Multiply and add - TODO */
7428 GEN_SPE(speundef
, evmhessf
, 0x01, 0x10, 0x00000000, PPC_SPE
);
7429 GEN_SPE(speundef
, evmhossf
, 0x03, 0x10, 0x00000000, PPC_SPE
);
7430 GEN_SPE(evmheumi
, evmhesmi
, 0x04, 0x10, 0x00000000, PPC_SPE
);
7431 GEN_SPE(speundef
, evmhesmf
, 0x05, 0x10, 0x00000000, PPC_SPE
);
7432 GEN_SPE(evmhoumi
, evmhosmi
, 0x06, 0x10, 0x00000000, PPC_SPE
);
7433 GEN_SPE(speundef
, evmhosmf
, 0x07, 0x10, 0x00000000, PPC_SPE
);
7434 GEN_SPE(speundef
, evmhessfa
, 0x11, 0x10, 0x00000000, PPC_SPE
);
7435 GEN_SPE(speundef
, evmhossfa
, 0x13, 0x10, 0x00000000, PPC_SPE
);
7436 GEN_SPE(evmheumia
, evmhesmia
, 0x14, 0x10, 0x00000000, PPC_SPE
);
7437 GEN_SPE(speundef
, evmhesmfa
, 0x15, 0x10, 0x00000000, PPC_SPE
);
7438 GEN_SPE(evmhoumia
, evmhosmia
, 0x16, 0x10, 0x00000000, PPC_SPE
);
7439 GEN_SPE(speundef
, evmhosmfa
, 0x17, 0x10, 0x00000000, PPC_SPE
);
7441 GEN_SPE(speundef
, evmwhssf
, 0x03, 0x11, 0x00000000, PPC_SPE
);
7442 GEN_SPE(evmwlumi
, speundef
, 0x04, 0x11, 0x00000000, PPC_SPE
);
7443 GEN_SPE(evmwhumi
, evmwhsmi
, 0x06, 0x11, 0x00000000, PPC_SPE
);
7444 GEN_SPE(speundef
, evmwhsmf
, 0x07, 0x11, 0x00000000, PPC_SPE
);
7445 GEN_SPE(speundef
, evmwssf
, 0x09, 0x11, 0x00000000, PPC_SPE
);
7446 GEN_SPE(evmwumi
, evmwsmi
, 0x0C, 0x11, 0x00000000, PPC_SPE
);
7447 GEN_SPE(speundef
, evmwsmf
, 0x0D, 0x11, 0x00000000, PPC_SPE
);
7448 GEN_SPE(speundef
, evmwhssfa
, 0x13, 0x11, 0x00000000, PPC_SPE
);
7449 GEN_SPE(evmwlumia
, speundef
, 0x14, 0x11, 0x00000000, PPC_SPE
);
7450 GEN_SPE(evmwhumia
, evmwhsmia
, 0x16, 0x11, 0x00000000, PPC_SPE
);
7451 GEN_SPE(speundef
, evmwhsmfa
, 0x17, 0x11, 0x00000000, PPC_SPE
);
7452 GEN_SPE(speundef
, evmwssfa
, 0x19, 0x11, 0x00000000, PPC_SPE
);
7453 GEN_SPE(evmwumia
, evmwsmia
, 0x1C, 0x11, 0x00000000, PPC_SPE
);
7454 GEN_SPE(speundef
, evmwsmfa
, 0x1D, 0x11, 0x00000000, PPC_SPE
);
7456 GEN_SPE(evadduiaaw
, evaddsiaaw
, 0x00, 0x13, 0x0000F800, PPC_SPE
);
7457 GEN_SPE(evsubfusiaaw
, evsubfssiaaw
, 0x01, 0x13, 0x0000F800, PPC_SPE
);
7458 GEN_SPE(evaddumiaaw
, evaddsmiaaw
, 0x04, 0x13, 0x0000F800, PPC_SPE
);
7459 GEN_SPE(evsubfumiaaw
, evsubfsmiaaw
, 0x05, 0x13, 0x0000F800, PPC_SPE
);
7460 GEN_SPE(evdivws
, evdivwu
, 0x06, 0x13, 0x00000000, PPC_SPE
);
7461 GEN_SPE(evmra
, speundef
, 0x07, 0x13, 0x0000F800, PPC_SPE
);
7463 GEN_SPE(evmheusiaaw
, evmhessiaaw
, 0x00, 0x14, 0x00000000, PPC_SPE
);
7464 GEN_SPE(speundef
, evmhessfaaw
, 0x01, 0x14, 0x00000000, PPC_SPE
);
7465 GEN_SPE(evmhousiaaw
, evmhossiaaw
, 0x02, 0x14, 0x00000000, PPC_SPE
);
7466 GEN_SPE(speundef
, evmhossfaaw
, 0x03, 0x14, 0x00000000, PPC_SPE
);
7467 GEN_SPE(evmheumiaaw
, evmhesmiaaw
, 0x04, 0x14, 0x00000000, PPC_SPE
);
7468 GEN_SPE(speundef
, evmhesmfaaw
, 0x05, 0x14, 0x00000000, PPC_SPE
);
7469 GEN_SPE(evmhoumiaaw
, evmhosmiaaw
, 0x06, 0x14, 0x00000000, PPC_SPE
);
7470 GEN_SPE(speundef
, evmhosmfaaw
, 0x07, 0x14, 0x00000000, PPC_SPE
);
7471 GEN_SPE(evmhegumiaa
, evmhegsmiaa
, 0x14, 0x14, 0x00000000, PPC_SPE
);
7472 GEN_SPE(speundef
, evmhegsmfaa
, 0x15, 0x14, 0x00000000, PPC_SPE
);
7473 GEN_SPE(evmhogumiaa
, evmhogsmiaa
, 0x16, 0x14, 0x00000000, PPC_SPE
);
7474 GEN_SPE(speundef
, evmhogsmfaa
, 0x17, 0x14, 0x00000000, PPC_SPE
);
7476 GEN_SPE(evmwlusiaaw
, evmwlssiaaw
, 0x00, 0x15, 0x00000000, PPC_SPE
);
7477 GEN_SPE(evmwlumiaaw
, evmwlsmiaaw
, 0x04, 0x15, 0x00000000, PPC_SPE
);
7478 GEN_SPE(speundef
, evmwssfaa
, 0x09, 0x15, 0x00000000, PPC_SPE
);
7479 GEN_SPE(evmwumiaa
, evmwsmiaa
, 0x0C, 0x15, 0x00000000, PPC_SPE
);
7480 GEN_SPE(speundef
, evmwsmfaa
, 0x0D, 0x15, 0x00000000, PPC_SPE
);
7482 GEN_SPE(evmheusianw
, evmhessianw
, 0x00, 0x16, 0x00000000, PPC_SPE
);
7483 GEN_SPE(speundef
, evmhessfanw
, 0x01, 0x16, 0x00000000, PPC_SPE
);
7484 GEN_SPE(evmhousianw
, evmhossianw
, 0x02, 0x16, 0x00000000, PPC_SPE
);
7485 GEN_SPE(speundef
, evmhossfanw
, 0x03, 0x16, 0x00000000, PPC_SPE
);
7486 GEN_SPE(evmheumianw
, evmhesmianw
, 0x04, 0x16, 0x00000000, PPC_SPE
);
7487 GEN_SPE(speundef
, evmhesmfanw
, 0x05, 0x16, 0x00000000, PPC_SPE
);
7488 GEN_SPE(evmhoumianw
, evmhosmianw
, 0x06, 0x16, 0x00000000, PPC_SPE
);
7489 GEN_SPE(speundef
, evmhosmfanw
, 0x07, 0x16, 0x00000000, PPC_SPE
);
7490 GEN_SPE(evmhegumian
, evmhegsmian
, 0x14, 0x16, 0x00000000, PPC_SPE
);
7491 GEN_SPE(speundef
, evmhegsmfan
, 0x15, 0x16, 0x00000000, PPC_SPE
);
7492 GEN_SPE(evmhigumian
, evmhigsmian
, 0x16, 0x16, 0x00000000, PPC_SPE
);
7493 GEN_SPE(speundef
, evmhogsmfan
, 0x17, 0x16, 0x00000000, PPC_SPE
);
7495 GEN_SPE(evmwlusianw
, evmwlssianw
, 0x00, 0x17, 0x00000000, PPC_SPE
);
7496 GEN_SPE(evmwlumianw
, evmwlsmianw
, 0x04, 0x17, 0x00000000, PPC_SPE
);
7497 GEN_SPE(speundef
, evmwssfan
, 0x09, 0x17, 0x00000000, PPC_SPE
);
7498 GEN_SPE(evmwumian
, evmwsmian
, 0x0C, 0x17, 0x00000000, PPC_SPE
);
7499 GEN_SPE(speundef
, evmwsmfan
, 0x0D, 0x17, 0x00000000, PPC_SPE
);
7502 /*** SPE floating-point extension ***/
7503 #if defined(TARGET_PPC64)
7504 #define GEN_SPEFPUOP_CONV_32_32(name) \
7505 static always_inline void gen_##name (DisasContext *ctx) \
7509 t0 = tcg_temp_new_i32(); \
7510 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7511 gen_helper_##name(t0, t0); \
7512 t1 = tcg_temp_new(); \
7513 tcg_gen_extu_i32_tl(t1, t0); \
7514 tcg_temp_free_i32(t0); \
7515 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7516 0xFFFFFFFF00000000ULL); \
7517 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7518 tcg_temp_free(t1); \
7520 #define GEN_SPEFPUOP_CONV_32_64(name) \
7521 static always_inline void gen_##name (DisasContext *ctx) \
7525 t0 = tcg_temp_new_i32(); \
7526 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7527 t1 = tcg_temp_new(); \
7528 tcg_gen_extu_i32_tl(t1, t0); \
7529 tcg_temp_free_i32(t0); \
7530 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7531 0xFFFFFFFF00000000ULL); \
7532 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7533 tcg_temp_free(t1); \
7535 #define GEN_SPEFPUOP_CONV_64_32(name) \
7536 static always_inline void gen_##name (DisasContext *ctx) \
7538 TCGv_i32 t0 = tcg_temp_new_i32(); \
7539 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7540 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7541 tcg_temp_free_i32(t0); \
7543 #define GEN_SPEFPUOP_CONV_64_64(name) \
7544 static always_inline void gen_##name (DisasContext *ctx) \
7546 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7548 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7549 static always_inline void gen_##name (DisasContext *ctx) \
7553 if (unlikely(!ctx->spe_enabled)) { \
7554 gen_exception(ctx, POWERPC_EXCP_APU); \
7557 t0 = tcg_temp_new_i32(); \
7558 t1 = tcg_temp_new_i32(); \
7559 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7560 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7561 gen_helper_##name(t0, t0, t1); \
7562 tcg_temp_free_i32(t1); \
7563 t2 = tcg_temp_new(); \
7564 tcg_gen_extu_i32_tl(t2, t0); \
7565 tcg_temp_free_i32(t0); \
7566 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7567 0xFFFFFFFF00000000ULL); \
7568 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
7569 tcg_temp_free(t2); \
7571 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7572 static always_inline void gen_##name (DisasContext *ctx) \
7574 if (unlikely(!ctx->spe_enabled)) { \
7575 gen_exception(ctx, POWERPC_EXCP_APU); \
7578 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7579 cpu_gpr[rB(ctx->opcode)]); \
7581 #define GEN_SPEFPUOP_COMP_32(name) \
7582 static always_inline void gen_##name (DisasContext *ctx) \
7585 if (unlikely(!ctx->spe_enabled)) { \
7586 gen_exception(ctx, POWERPC_EXCP_APU); \
7589 t0 = tcg_temp_new_i32(); \
7590 t1 = tcg_temp_new_i32(); \
7591 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7592 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7593 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7594 tcg_temp_free_i32(t0); \
7595 tcg_temp_free_i32(t1); \
7597 #define GEN_SPEFPUOP_COMP_64(name) \
7598 static always_inline void gen_##name (DisasContext *ctx) \
7600 if (unlikely(!ctx->spe_enabled)) { \
7601 gen_exception(ctx, POWERPC_EXCP_APU); \
7604 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7605 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7608 #define GEN_SPEFPUOP_CONV_32_32(name) \
7609 static always_inline void gen_##name (DisasContext *ctx) \
7611 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7613 #define GEN_SPEFPUOP_CONV_32_64(name) \
7614 static always_inline void gen_##name (DisasContext *ctx) \
7616 TCGv_i64 t0 = tcg_temp_new_i64(); \
7617 gen_load_gpr64(t0, rB(ctx->opcode)); \
7618 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7619 tcg_temp_free_i64(t0); \
7621 #define GEN_SPEFPUOP_CONV_64_32(name) \
7622 static always_inline void gen_##name (DisasContext *ctx) \
7624 TCGv_i64 t0 = tcg_temp_new_i64(); \
7625 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7626 gen_store_gpr64(rD(ctx->opcode), t0); \
7627 tcg_temp_free_i64(t0); \
7629 #define GEN_SPEFPUOP_CONV_64_64(name) \
7630 static always_inline void gen_##name (DisasContext *ctx) \
7632 TCGv_i64 t0 = tcg_temp_new_i64(); \
7633 gen_load_gpr64(t0, rB(ctx->opcode)); \
7634 gen_helper_##name(t0, t0); \
7635 gen_store_gpr64(rD(ctx->opcode), t0); \
7636 tcg_temp_free_i64(t0); \
7638 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7639 static always_inline void gen_##name (DisasContext *ctx) \
7641 if (unlikely(!ctx->spe_enabled)) { \
7642 gen_exception(ctx, POWERPC_EXCP_APU); \
7645 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \
7646 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7648 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7649 static always_inline void gen_##name (DisasContext *ctx) \
7652 if (unlikely(!ctx->spe_enabled)) { \
7653 gen_exception(ctx, POWERPC_EXCP_APU); \
7656 t0 = tcg_temp_new_i64(); \
7657 t1 = tcg_temp_new_i64(); \
7658 gen_load_gpr64(t0, rA(ctx->opcode)); \
7659 gen_load_gpr64(t1, rB(ctx->opcode)); \
7660 gen_helper_##name(t0, t0, t1); \
7661 gen_store_gpr64(rD(ctx->opcode), t0); \
7662 tcg_temp_free_i64(t0); \
7663 tcg_temp_free_i64(t1); \
7665 #define GEN_SPEFPUOP_COMP_32(name) \
7666 static always_inline void gen_##name (DisasContext *ctx) \
7668 if (unlikely(!ctx->spe_enabled)) { \
7669 gen_exception(ctx, POWERPC_EXCP_APU); \
7672 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7673 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7675 #define GEN_SPEFPUOP_COMP_64(name) \
7676 static always_inline void gen_##name (DisasContext *ctx) \
7679 if (unlikely(!ctx->spe_enabled)) { \
7680 gen_exception(ctx, POWERPC_EXCP_APU); \
7683 t0 = tcg_temp_new_i64(); \
7684 t1 = tcg_temp_new_i64(); \
7685 gen_load_gpr64(t0, rA(ctx->opcode)); \
7686 gen_load_gpr64(t1, rB(ctx->opcode)); \
7687 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7688 tcg_temp_free_i64(t0); \
7689 tcg_temp_free_i64(t1); \
7693 /* Single precision floating-point vectors operations */
7695 GEN_SPEFPUOP_ARITH2_64_64(evfsadd
);
7696 GEN_SPEFPUOP_ARITH2_64_64(evfssub
);
7697 GEN_SPEFPUOP_ARITH2_64_64(evfsmul
);
7698 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv
);
7699 static always_inline
void gen_evfsabs (DisasContext
*ctx
)
7701 if (unlikely(!ctx
->spe_enabled
)) {
7702 gen_exception(ctx
, POWERPC_EXCP_APU
);
7705 #if defined(TARGET_PPC64)
7706 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000080000000LL
);
7708 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x80000000);
7709 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7712 static always_inline
void gen_evfsnabs (DisasContext
*ctx
)
7714 if (unlikely(!ctx
->spe_enabled
)) {
7715 gen_exception(ctx
, POWERPC_EXCP_APU
);
7718 #if defined(TARGET_PPC64)
7719 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7721 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7722 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7725 static always_inline
void gen_evfsneg (DisasContext
*ctx
)
7727 if (unlikely(!ctx
->spe_enabled
)) {
7728 gen_exception(ctx
, POWERPC_EXCP_APU
);
7731 #if defined(TARGET_PPC64)
7732 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7734 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7735 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7740 GEN_SPEFPUOP_CONV_64_64(evfscfui
);
7741 GEN_SPEFPUOP_CONV_64_64(evfscfsi
);
7742 GEN_SPEFPUOP_CONV_64_64(evfscfuf
);
7743 GEN_SPEFPUOP_CONV_64_64(evfscfsf
);
7744 GEN_SPEFPUOP_CONV_64_64(evfsctui
);
7745 GEN_SPEFPUOP_CONV_64_64(evfsctsi
);
7746 GEN_SPEFPUOP_CONV_64_64(evfsctuf
);
7747 GEN_SPEFPUOP_CONV_64_64(evfsctsf
);
7748 GEN_SPEFPUOP_CONV_64_64(evfsctuiz
);
7749 GEN_SPEFPUOP_CONV_64_64(evfsctsiz
);
7752 GEN_SPEFPUOP_COMP_64(evfscmpgt
);
7753 GEN_SPEFPUOP_COMP_64(evfscmplt
);
7754 GEN_SPEFPUOP_COMP_64(evfscmpeq
);
7755 GEN_SPEFPUOP_COMP_64(evfststgt
);
7756 GEN_SPEFPUOP_COMP_64(evfststlt
);
7757 GEN_SPEFPUOP_COMP_64(evfststeq
);
7759 /* Opcodes definitions */
7760 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, PPC_SPE_SINGLE
); //
7761 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, PPC_SPE_SINGLE
); //
7762 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, PPC_SPE_SINGLE
); //
7763 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, PPC_SPE_SINGLE
); //
7764 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7765 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7766 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7767 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7768 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7769 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7770 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7771 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7772 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7773 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7775 /* Single precision floating-point operations */
7777 GEN_SPEFPUOP_ARITH2_32_32(efsadd
);
7778 GEN_SPEFPUOP_ARITH2_32_32(efssub
);
7779 GEN_SPEFPUOP_ARITH2_32_32(efsmul
);
7780 GEN_SPEFPUOP_ARITH2_32_32(efsdiv
);
7781 static always_inline
void gen_efsabs (DisasContext
*ctx
)
7783 if (unlikely(!ctx
->spe_enabled
)) {
7784 gen_exception(ctx
, POWERPC_EXCP_APU
);
7787 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], (target_long
)~0x80000000LL
);
7789 static always_inline
void gen_efsnabs (DisasContext
*ctx
)
7791 if (unlikely(!ctx
->spe_enabled
)) {
7792 gen_exception(ctx
, POWERPC_EXCP_APU
);
7795 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7797 static always_inline
void gen_efsneg (DisasContext
*ctx
)
7799 if (unlikely(!ctx
->spe_enabled
)) {
7800 gen_exception(ctx
, POWERPC_EXCP_APU
);
7803 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7807 GEN_SPEFPUOP_CONV_32_32(efscfui
);
7808 GEN_SPEFPUOP_CONV_32_32(efscfsi
);
7809 GEN_SPEFPUOP_CONV_32_32(efscfuf
);
7810 GEN_SPEFPUOP_CONV_32_32(efscfsf
);
7811 GEN_SPEFPUOP_CONV_32_32(efsctui
);
7812 GEN_SPEFPUOP_CONV_32_32(efsctsi
);
7813 GEN_SPEFPUOP_CONV_32_32(efsctuf
);
7814 GEN_SPEFPUOP_CONV_32_32(efsctsf
);
7815 GEN_SPEFPUOP_CONV_32_32(efsctuiz
);
7816 GEN_SPEFPUOP_CONV_32_32(efsctsiz
);
7817 GEN_SPEFPUOP_CONV_32_64(efscfd
);
7820 GEN_SPEFPUOP_COMP_32(efscmpgt
);
7821 GEN_SPEFPUOP_COMP_32(efscmplt
);
7822 GEN_SPEFPUOP_COMP_32(efscmpeq
);
7823 GEN_SPEFPUOP_COMP_32(efststgt
);
7824 GEN_SPEFPUOP_COMP_32(efststlt
);
7825 GEN_SPEFPUOP_COMP_32(efststeq
);
7827 /* Opcodes definitions */
7828 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, PPC_SPE_SINGLE
); //
7829 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, PPC_SPE_SINGLE
); //
7830 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, PPC_SPE_SINGLE
); //
7831 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, PPC_SPE_SINGLE
); //
7832 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7833 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7834 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7835 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7836 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7837 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7838 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7839 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7840 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7841 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7843 /* Double precision floating-point operations */
7845 GEN_SPEFPUOP_ARITH2_64_64(efdadd
);
7846 GEN_SPEFPUOP_ARITH2_64_64(efdsub
);
7847 GEN_SPEFPUOP_ARITH2_64_64(efdmul
);
7848 GEN_SPEFPUOP_ARITH2_64_64(efddiv
);
7849 static always_inline
void gen_efdabs (DisasContext
*ctx
)
7851 if (unlikely(!ctx
->spe_enabled
)) {
7852 gen_exception(ctx
, POWERPC_EXCP_APU
);
7855 #if defined(TARGET_PPC64)
7856 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000000000000LL
);
7858 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7861 static always_inline
void gen_efdnabs (DisasContext
*ctx
)
7863 if (unlikely(!ctx
->spe_enabled
)) {
7864 gen_exception(ctx
, POWERPC_EXCP_APU
);
7867 #if defined(TARGET_PPC64)
7868 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7870 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7873 static always_inline
void gen_efdneg (DisasContext
*ctx
)
7875 if (unlikely(!ctx
->spe_enabled
)) {
7876 gen_exception(ctx
, POWERPC_EXCP_APU
);
7879 #if defined(TARGET_PPC64)
7880 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7882 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7887 GEN_SPEFPUOP_CONV_64_32(efdcfui
);
7888 GEN_SPEFPUOP_CONV_64_32(efdcfsi
);
7889 GEN_SPEFPUOP_CONV_64_32(efdcfuf
);
7890 GEN_SPEFPUOP_CONV_64_32(efdcfsf
);
7891 GEN_SPEFPUOP_CONV_32_64(efdctui
);
7892 GEN_SPEFPUOP_CONV_32_64(efdctsi
);
7893 GEN_SPEFPUOP_CONV_32_64(efdctuf
);
7894 GEN_SPEFPUOP_CONV_32_64(efdctsf
);
7895 GEN_SPEFPUOP_CONV_32_64(efdctuiz
);
7896 GEN_SPEFPUOP_CONV_32_64(efdctsiz
);
7897 GEN_SPEFPUOP_CONV_64_32(efdcfs
);
7898 GEN_SPEFPUOP_CONV_64_64(efdcfuid
);
7899 GEN_SPEFPUOP_CONV_64_64(efdcfsid
);
7900 GEN_SPEFPUOP_CONV_64_64(efdctuidz
);
7901 GEN_SPEFPUOP_CONV_64_64(efdctsidz
);
7904 GEN_SPEFPUOP_COMP_64(efdcmpgt
);
7905 GEN_SPEFPUOP_COMP_64(efdcmplt
);
7906 GEN_SPEFPUOP_COMP_64(efdcmpeq
);
7907 GEN_SPEFPUOP_COMP_64(efdtstgt
);
7908 GEN_SPEFPUOP_COMP_64(efdtstlt
);
7909 GEN_SPEFPUOP_COMP_64(efdtsteq
);
7911 /* Opcodes definitions */
7912 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, PPC_SPE_DOUBLE
); //
7913 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7914 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
); //
7915 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
); //
7916 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, PPC_SPE_DOUBLE
); //
7917 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7918 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
7919 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
7920 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7921 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7922 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7923 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7924 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7925 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
7926 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
7927 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
7929 static opcode_t opcodes
[] = {
7930 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
),
7931 GEN_HANDLER(cmp
, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER
),
7932 GEN_HANDLER(cmpi
, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
7933 GEN_HANDLER(cmpl
, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER
),
7934 GEN_HANDLER(cmpli
, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
),
7935 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
),
7936 GEN_HANDLER(addi
, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7937 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7938 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7939 GEN_HANDLER(addis
, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7940 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
),
7941 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
),
7942 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
),
7943 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
),
7944 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7945 #if defined(TARGET_PPC64)
7946 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
),
7948 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
),
7949 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
),
7950 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7951 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7952 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7953 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
),
7954 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
),
7955 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
),
7956 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7957 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7958 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7959 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7960 GEN_HANDLER(popcntb
, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB
),
7961 #if defined(TARGET_PPC64)
7962 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
),
7964 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7965 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7966 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7967 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
),
7968 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
),
7969 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
),
7970 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
),
7971 #if defined(TARGET_PPC64)
7972 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
),
7973 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
),
7974 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
),
7975 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
),
7976 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
),
7978 GEN_HANDLER(frsqrtes
, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES
),
7979 GEN_HANDLER(fsqrt
, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
),
7980 GEN_HANDLER(fsqrts
, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
),
7981 GEN_HANDLER(fcmpo
, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT
),
7982 GEN_HANDLER(fcmpu
, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT
),
7983 GEN_HANDLER(fmr
, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT
),
7984 GEN_HANDLER(mcrfs
, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT
),
7985 GEN_HANDLER(mffs
, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT
),
7986 GEN_HANDLER(mtfsb0
, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT
),
7987 GEN_HANDLER(mtfsb1
, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT
),
7988 GEN_HANDLER(mtfsf
, 0x3F, 0x07, 0x16, 0x00010000, PPC_FLOAT
),
7989 GEN_HANDLER(mtfsfi
, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT
),
7990 #if defined(TARGET_PPC64)
7991 GEN_HANDLER(ld
, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B
),
7992 GEN_HANDLER(lq
, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX
),
7993 GEN_HANDLER(std
, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B
),
7995 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7996 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
7997 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
),
7998 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
),
7999 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
),
8000 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
),
8001 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO
),
8002 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
),
8003 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES
),
8004 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
),
8005 #if defined(TARGET_PPC64)
8006 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B
),
8007 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
),
8009 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
),
8010 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT
),
8011 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8012 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8013 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
),
8014 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
),
8015 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
),
8016 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
),
8017 #if defined(TARGET_PPC64)
8018 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
),
8019 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
),
8021 GEN_HANDLER(sc
, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW
),
8022 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
),
8023 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
8024 #if defined(TARGET_PPC64)
8025 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
),
8026 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
),
8028 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
),
8029 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
),
8030 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
),
8031 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
),
8032 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
),
8033 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
),
8034 #if defined(TARGET_PPC64)
8035 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
),
8037 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC
),
8038 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC
),
8039 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
),
8040 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
),
8041 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
),
8042 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE
),
8043 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE
),
8044 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ
),
8045 GEN_HANDLER2(dcbz_970
, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT
),
8046 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
),
8047 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC
),
8048 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
),
8049 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
),
8050 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
),
8051 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
),
8052 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
),
8053 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
),
8054 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
),
8055 #if defined(TARGET_PPC64)
8056 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
),
8057 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
8059 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
),
8060 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
8062 GEN_HANDLER2(slbmte
, "slbmte", 0x1F, 0x12, 0x0C, 0x00000000, PPC_SEGMENT_64B
),
8064 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
),
8065 GEN_HANDLER(tlbiel
, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE
),
8066 GEN_HANDLER(tlbie
, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE
),
8067 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
),
8068 #if defined(TARGET_PPC64)
8069 GEN_HANDLER(slbia
, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI
),
8070 GEN_HANDLER(slbie
, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI
),
8072 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
),
8073 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
),
8074 GEN_HANDLER(abs
, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR
),
8075 GEN_HANDLER(abso
, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR
),
8076 GEN_HANDLER(clcs
, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR
),
8077 GEN_HANDLER(div
, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR
),
8078 GEN_HANDLER(divo
, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR
),
8079 GEN_HANDLER(divs
, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR
),
8080 GEN_HANDLER(divso
, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR
),
8081 GEN_HANDLER(doz
, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR
),
8082 GEN_HANDLER(dozo
, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR
),
8083 GEN_HANDLER(dozi
, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
8084 GEN_HANDLER(lscbx
, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR
),
8085 GEN_HANDLER(maskg
, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR
),
8086 GEN_HANDLER(maskir
, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR
),
8087 GEN_HANDLER(mul
, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR
),
8088 GEN_HANDLER(mulo
, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR
),
8089 GEN_HANDLER(nabs
, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR
),
8090 GEN_HANDLER(nabso
, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR
),
8091 GEN_HANDLER(rlmi
, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
),
8092 GEN_HANDLER(rrib
, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR
),
8093 GEN_HANDLER(sle
, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR
),
8094 GEN_HANDLER(sleq
, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR
),
8095 GEN_HANDLER(sliq
, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR
),
8096 GEN_HANDLER(slliq
, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR
),
8097 GEN_HANDLER(sllq
, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR
),
8098 GEN_HANDLER(slq
, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR
),
8099 GEN_HANDLER(sraiq
, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR
),
8100 GEN_HANDLER(sraq
, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR
),
8101 GEN_HANDLER(sre
, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR
),
8102 GEN_HANDLER(srea
, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR
),
8103 GEN_HANDLER(sreq
, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR
),
8104 GEN_HANDLER(sriq
, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR
),
8105 GEN_HANDLER(srliq
, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR
),
8106 GEN_HANDLER(srlq
, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR
),
8107 GEN_HANDLER(srq
, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR
),
8108 GEN_HANDLER(dsa
, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC
),
8109 GEN_HANDLER(esa
, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC
),
8110 GEN_HANDLER(mfrom
, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC
),
8111 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
),
8112 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
),
8113 GEN_HANDLER2(tlbld_74xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB
),
8114 GEN_HANDLER2(tlbli_74xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB
),
8115 GEN_HANDLER(clf
, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER
),
8116 GEN_HANDLER(cli
, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER
),
8117 GEN_HANDLER(dclst
, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER
),
8118 GEN_HANDLER(mfsri
, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER
),
8119 GEN_HANDLER(rac
, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER
),
8120 GEN_HANDLER(rfsvc
, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER
),
8121 GEN_HANDLER(lfq
, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8122 GEN_HANDLER(lfqu
, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8123 GEN_HANDLER(lfqux
, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2
),
8124 GEN_HANDLER(lfqx
, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2
),
8125 GEN_HANDLER(stfq
, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8126 GEN_HANDLER(stfqu
, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2
),
8127 GEN_HANDLER(stfqux
, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2
),
8128 GEN_HANDLER(stfqx
, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2
),
8129 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
),
8130 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
),
8131 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
),
8132 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
),
8133 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
),
8134 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
),
8135 GEN_HANDLER(mfdcrux
, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX
),
8136 GEN_HANDLER(mtdcrux
, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX
),
8137 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
),
8138 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
),
8139 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
),
8140 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
),
8141 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
),
8142 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
),
8143 GEN_HANDLER(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
),
8144 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
),
8145 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
),
8146 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
),
8147 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
),
8148 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
),
8149 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
),
8150 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
),
8151 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
),
8152 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
),
8153 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_WRTEE
),
8154 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
),
8155 GEN_HANDLER(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE
),
8156 GEN_HANDLER(msync
, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE
),
8157 GEN_HANDLER2(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE
),
8158 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
),
8159 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
),
8160 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
),
8161 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
),
8162 GEN_HANDLER(vsldoi
, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC
),
8163 GEN_HANDLER(vmladduhm
, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC
),
8164 GEN_HANDLER2(evsel0
, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE
),
8165 GEN_HANDLER2(evsel1
, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE
),
8166 GEN_HANDLER2(evsel2
, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE
),
8167 GEN_HANDLER2(evsel3
, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE
),
8169 #undef GEN_INT_ARITH_ADD
8170 #undef GEN_INT_ARITH_ADD_CONST
8171 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
8172 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
8173 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
8174 add_ca, compute_ca, compute_ov) \
8175 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
8176 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
8177 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
8178 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
8179 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
8180 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
8181 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
8182 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
8183 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
8184 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
8185 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
8187 #undef GEN_INT_ARITH_DIVW
8188 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
8189 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
8190 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0),
8191 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1),
8192 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0),
8193 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1),
8195 #if defined(TARGET_PPC64)
8196 #undef GEN_INT_ARITH_DIVD
8197 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
8198 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8199 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0),
8200 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1),
8201 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0),
8202 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1),
8204 #undef GEN_INT_ARITH_MUL_HELPER
8205 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
8206 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8207 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00),
8208 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02),
8209 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17),
8212 #undef GEN_INT_ARITH_SUBF
8213 #undef GEN_INT_ARITH_SUBF_CONST
8214 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
8215 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
8216 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
8217 add_ca, compute_ca, compute_ov) \
8218 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
8219 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
8220 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
8221 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
8222 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
8223 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
8224 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
8225 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
8226 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
8227 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
8228 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
8232 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
8233 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
8234 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
8235 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
8236 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
),
8237 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
),
8238 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
),
8239 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
),
8240 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
),
8241 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
),
8242 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
),
8243 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
),
8244 #if defined(TARGET_PPC64)
8245 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
),
8248 #if defined(TARGET_PPC64)
8251 #define GEN_PPC64_R2(name, opc1, opc2) \
8252 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8253 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8255 #define GEN_PPC64_R4(name, opc1, opc2) \
8256 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8257 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
8259 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8261 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
8263 GEN_PPC64_R4(rldicl
, 0x1E, 0x00),
8264 GEN_PPC64_R4(rldicr
, 0x1E, 0x02),
8265 GEN_PPC64_R4(rldic
, 0x1E, 0x04),
8266 GEN_PPC64_R2(rldcl
, 0x1E, 0x08),
8267 GEN_PPC64_R2(rldcr
, 0x1E, 0x09),
8268 GEN_PPC64_R4(rldimi
, 0x1E, 0x06),
8271 #undef _GEN_FLOAT_ACB
8272 #undef GEN_FLOAT_ACB
8273 #undef _GEN_FLOAT_AB
8275 #undef _GEN_FLOAT_AC
8279 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
8280 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type)
8281 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
8282 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type), \
8283 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type)
8284 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8285 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8286 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
8287 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8288 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8289 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8290 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8291 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
8292 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8293 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8294 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
8295 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type)
8296 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
8297 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type)
8299 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
),
8300 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
),
8301 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
),
8302 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
),
8303 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
),
8304 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
),
8305 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
),
8306 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
),
8307 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
),
8308 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
),
8309 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
),
8310 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
),
8311 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
),
8312 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
),
8313 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
),
8314 #if defined(TARGET_PPC64)
8315 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
),
8316 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
),
8317 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
),
8319 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
),
8320 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
),
8321 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
),
8322 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
),
8323 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
),
8324 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
),
8325 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
),
8332 #define GEN_LD(name, ldop, opc, type) \
8333 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8334 #define GEN_LDU(name, ldop, opc, type) \
8335 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8336 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
8337 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
8338 #define GEN_LDX(name, ldop, opc2, opc3, type) \
8339 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8340 #define GEN_LDS(name, ldop, op, type) \
8341 GEN_LD(name, ldop, op | 0x20, type) \
8342 GEN_LDU(name, ldop, op | 0x21, type) \
8343 GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \
8344 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
8346 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
)
8347 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
)
8348 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
)
8349 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
)
8350 #if defined(TARGET_PPC64)
8351 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
)
8352 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
)
8353 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
)
8354 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
)
8356 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
)
8357 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
)
8364 #define GEN_ST(name, stop, opc, type) \
8365 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8366 #define GEN_STU(name, stop, opc, type) \
8367 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
8368 #define GEN_STUX(name, stop, opc2, opc3, type) \
8369 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
8370 #define GEN_STX(name, stop, opc2, opc3, type) \
8371 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8372 #define GEN_STS(name, stop, op, type) \
8373 GEN_ST(name, stop, op | 0x20, type) \
8374 GEN_STU(name, stop, op | 0x21, type) \
8375 GEN_STUX(name, stop, 0x17, op | 0x01, type) \
8376 GEN_STX(name, stop, 0x17, op | 0x00, type)
8378 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
)
8379 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
)
8380 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
)
8381 #if defined(TARGET_PPC64)
8382 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
)
8383 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
)
8385 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
)
8386 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
)
8393 #define GEN_LDF(name, ldop, opc, type) \
8394 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8395 #define GEN_LDUF(name, ldop, opc, type) \
8396 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8397 #define GEN_LDUXF(name, ldop, opc, type) \
8398 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
8399 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
8400 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8401 #define GEN_LDFS(name, ldop, op, type) \
8402 GEN_LDF(name, ldop, op | 0x20, type) \
8403 GEN_LDUF(name, ldop, op | 0x21, type) \
8404 GEN_LDUXF(name, ldop, op | 0x01, type) \
8405 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
8407 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
)
8408 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
)
8415 #define GEN_STF(name, stop, opc, type) \
8416 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8417 #define GEN_STUF(name, stop, opc, type) \
8418 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8419 #define GEN_STUXF(name, stop, opc, type) \
8420 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
8421 #define GEN_STXF(name, stop, opc2, opc3, type) \
8422 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8423 #define GEN_STFS(name, stop, op, type) \
8424 GEN_STF(name, stop, op | 0x20, type) \
8425 GEN_STUF(name, stop, op | 0x21, type) \
8426 GEN_STUXF(name, stop, op | 0x01, type) \
8427 GEN_STXF(name, stop, 0x17, op | 0x00, type)
8429 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
)
8430 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
)
8431 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
)
8434 #define GEN_CRLOGIC(name, tcg_op, opc) \
8435 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
8436 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08),
8437 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04),
8438 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09),
8439 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07),
8440 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01),
8441 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E),
8442 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D),
8443 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06),
8445 #undef GEN_MAC_HANDLER
8446 #define GEN_MAC_HANDLER(name, opc2, opc3) \
8447 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
8448 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05),
8449 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15),
8450 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07),
8451 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17),
8452 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06),
8453 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16),
8454 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04),
8455 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14),
8456 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01),
8457 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11),
8458 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03),
8459 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13),
8460 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02),
8461 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12),
8462 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00),
8463 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10),
8464 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D),
8465 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D),
8466 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F),
8467 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F),
8468 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C),
8469 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C),
8470 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E),
8471 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E),
8472 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05),
8473 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15),
8474 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07),
8475 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17),
8476 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01),
8477 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11),
8478 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03),
8479 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13),
8480 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D),
8481 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D),
8482 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F),
8483 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F),
8484 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05),
8485 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04),
8486 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01),
8487 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00),
8488 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D),
8489 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C),
8495 #define GEN_VR_LDX(name, opc2, opc3) \
8496 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
8497 #define GEN_VR_STX(name, opc2, opc3) \
8498 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
8499 #define GEN_VR_LVE(name, opc2, opc3) \
8500 GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
8501 #define GEN_VR_STVE(name, opc2, opc3) \
8502 GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
8503 GEN_VR_LDX(lvx
, 0x07, 0x03),
8504 GEN_VR_LDX(lvxl
, 0x07, 0x0B),
8505 GEN_VR_LVE(bx
, 0x07, 0x00),
8506 GEN_VR_LVE(hx
, 0x07, 0x01),
8507 GEN_VR_LVE(wx
, 0x07, 0x02),
8508 GEN_VR_STX(svx
, 0x07, 0x07),
8509 GEN_VR_STX(svxl
, 0x07, 0x0F),
8510 GEN_VR_STVE(bx
, 0x07, 0x04),
8511 GEN_VR_STVE(hx
, 0x07, 0x05),
8512 GEN_VR_STVE(wx
, 0x07, 0x06),
8514 #undef GEN_VX_LOGICAL
8515 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
8516 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
8517 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16),
8518 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17),
8519 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18),
8520 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19),
8521 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20),
8524 #define GEN_VXFORM(name, opc2, opc3) \
8525 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
8526 GEN_VXFORM(vaddubm
, 0, 0),
8527 GEN_VXFORM(vadduhm
, 0, 1),
8528 GEN_VXFORM(vadduwm
, 0, 2),
8529 GEN_VXFORM(vsububm
, 0, 16),
8530 GEN_VXFORM(vsubuhm
, 0, 17),
8531 GEN_VXFORM(vsubuwm
, 0, 18),
8532 GEN_VXFORM(vmaxub
, 1, 0),
8533 GEN_VXFORM(vmaxuh
, 1, 1),
8534 GEN_VXFORM(vmaxuw
, 1, 2),
8535 GEN_VXFORM(vmaxsb
, 1, 4),
8536 GEN_VXFORM(vmaxsh
, 1, 5),
8537 GEN_VXFORM(vmaxsw
, 1, 6),
8538 GEN_VXFORM(vminub
, 1, 8),
8539 GEN_VXFORM(vminuh
, 1, 9),
8540 GEN_VXFORM(vminuw
, 1, 10),
8541 GEN_VXFORM(vminsb
, 1, 12),
8542 GEN_VXFORM(vminsh
, 1, 13),
8543 GEN_VXFORM(vminsw
, 1, 14),
8544 GEN_VXFORM(vavgub
, 1, 16),
8545 GEN_VXFORM(vavguh
, 1, 17),
8546 GEN_VXFORM(vavguw
, 1, 18),
8547 GEN_VXFORM(vavgsb
, 1, 20),
8548 GEN_VXFORM(vavgsh
, 1, 21),
8549 GEN_VXFORM(vavgsw
, 1, 22),
8550 GEN_VXFORM(vmrghb
, 6, 0),
8551 GEN_VXFORM(vmrghh
, 6, 1),
8552 GEN_VXFORM(vmrghw
, 6, 2),
8553 GEN_VXFORM(vmrglb
, 6, 4),
8554 GEN_VXFORM(vmrglh
, 6, 5),
8555 GEN_VXFORM(vmrglw
, 6, 6),
8556 GEN_VXFORM(vmuloub
, 4, 0),
8557 GEN_VXFORM(vmulouh
, 4, 1),
8558 GEN_VXFORM(vmulosb
, 4, 4),
8559 GEN_VXFORM(vmulosh
, 4, 5),
8560 GEN_VXFORM(vmuleub
, 4, 8),
8561 GEN_VXFORM(vmuleuh
, 4, 9),
8562 GEN_VXFORM(vmulesb
, 4, 12),
8563 GEN_VXFORM(vmulesh
, 4, 13),
8564 GEN_VXFORM(vslb
, 2, 4),
8565 GEN_VXFORM(vslh
, 2, 5),
8566 GEN_VXFORM(vslw
, 2, 6),
8567 GEN_VXFORM(vsrb
, 2, 8),
8568 GEN_VXFORM(vsrh
, 2, 9),
8569 GEN_VXFORM(vsrw
, 2, 10),
8570 GEN_VXFORM(vsrab
, 2, 12),
8571 GEN_VXFORM(vsrah
, 2, 13),
8572 GEN_VXFORM(vsraw
, 2, 14),
8573 GEN_VXFORM(vslo
, 6, 16),
8574 GEN_VXFORM(vsro
, 6, 17),
8575 GEN_VXFORM(vaddcuw
, 0, 6),
8576 GEN_VXFORM(vsubcuw
, 0, 22),
8577 GEN_VXFORM(vaddubs
, 0, 8),
8578 GEN_VXFORM(vadduhs
, 0, 9),
8579 GEN_VXFORM(vadduws
, 0, 10),
8580 GEN_VXFORM(vaddsbs
, 0, 12),
8581 GEN_VXFORM(vaddshs
, 0, 13),
8582 GEN_VXFORM(vaddsws
, 0, 14),
8583 GEN_VXFORM(vsububs
, 0, 24),
8584 GEN_VXFORM(vsubuhs
, 0, 25),
8585 GEN_VXFORM(vsubuws
, 0, 26),
8586 GEN_VXFORM(vsubsbs
, 0, 28),
8587 GEN_VXFORM(vsubshs
, 0, 29),
8588 GEN_VXFORM(vsubsws
, 0, 30),
8589 GEN_VXFORM(vrlb
, 2, 0),
8590 GEN_VXFORM(vrlh
, 2, 1),
8591 GEN_VXFORM(vrlw
, 2, 2),
8592 GEN_VXFORM(vsl
, 2, 7),
8593 GEN_VXFORM(vsr
, 2, 11),
8594 GEN_VXFORM(vpkuhum
, 7, 0),
8595 GEN_VXFORM(vpkuwum
, 7, 1),
8596 GEN_VXFORM(vpkuhus
, 7, 2),
8597 GEN_VXFORM(vpkuwus
, 7, 3),
8598 GEN_VXFORM(vpkshus
, 7, 4),
8599 GEN_VXFORM(vpkswus
, 7, 5),
8600 GEN_VXFORM(vpkshss
, 7, 6),
8601 GEN_VXFORM(vpkswss
, 7, 7),
8602 GEN_VXFORM(vpkpx
, 7, 12),
8603 GEN_VXFORM(vsum4ubs
, 4, 24),
8604 GEN_VXFORM(vsum4sbs
, 4, 28),
8605 GEN_VXFORM(vsum4shs
, 4, 25),
8606 GEN_VXFORM(vsum2sws
, 4, 26),
8607 GEN_VXFORM(vsumsws
, 4, 30),
8608 GEN_VXFORM(vaddfp
, 5, 0),
8609 GEN_VXFORM(vsubfp
, 5, 1),
8610 GEN_VXFORM(vmaxfp
, 5, 16),
8611 GEN_VXFORM(vminfp
, 5, 17),
8615 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
8616 GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC),
8617 #define GEN_VXRFORM(name, opc2, opc3) \
8618 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
8619 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
8620 GEN_VXRFORM(vcmpequb
, 3, 0)
8621 GEN_VXRFORM(vcmpequh
, 3, 1)
8622 GEN_VXRFORM(vcmpequw
, 3, 2)
8623 GEN_VXRFORM(vcmpgtsb
, 3, 12)
8624 GEN_VXRFORM(vcmpgtsh
, 3, 13)
8625 GEN_VXRFORM(vcmpgtsw
, 3, 14)
8626 GEN_VXRFORM(vcmpgtub
, 3, 8)
8627 GEN_VXRFORM(vcmpgtuh
, 3, 9)
8628 GEN_VXRFORM(vcmpgtuw
, 3, 10)
8629 GEN_VXRFORM(vcmpeqfp
, 3, 3)
8630 GEN_VXRFORM(vcmpgefp
, 3, 7)
8631 GEN_VXRFORM(vcmpgtfp
, 3, 11)
8632 GEN_VXRFORM(vcmpbfp
, 3, 15)
8634 #undef GEN_VXFORM_SIMM
8635 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
8636 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
8637 GEN_VXFORM_SIMM(vspltisb
, 6, 12),
8638 GEN_VXFORM_SIMM(vspltish
, 6, 13),
8639 GEN_VXFORM_SIMM(vspltisw
, 6, 14),
8641 #undef GEN_VXFORM_NOA
8642 #define GEN_VXFORM_NOA(name, opc2, opc3) \
8643 GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC)
8644 GEN_VXFORM_NOA(vupkhsb
, 7, 8),
8645 GEN_VXFORM_NOA(vupkhsh
, 7, 9),
8646 GEN_VXFORM_NOA(vupklsb
, 7, 10),
8647 GEN_VXFORM_NOA(vupklsh
, 7, 11),
8648 GEN_VXFORM_NOA(vupkhpx
, 7, 13),
8649 GEN_VXFORM_NOA(vupklpx
, 7, 15),
8650 GEN_VXFORM_NOA(vrefp
, 5, 4),
8651 GEN_VXFORM_NOA(vrsqrtefp
, 5, 5),
8652 GEN_VXFORM_NOA(vlogefp
, 5, 7),
8653 GEN_VXFORM_NOA(vrfim
, 5, 8),
8654 GEN_VXFORM_NOA(vrfin
, 5, 9),
8655 GEN_VXFORM_NOA(vrfip
, 5, 10),
8656 GEN_VXFORM_NOA(vrfiz
, 5, 11),
8658 #undef GEN_VXFORM_UIMM
8659 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
8660 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
8661 GEN_VXFORM_UIMM(vspltb
, 6, 8),
8662 GEN_VXFORM_UIMM(vsplth
, 6, 9),
8663 GEN_VXFORM_UIMM(vspltw
, 6, 10),
8664 GEN_VXFORM_UIMM(vcfux
, 5, 12),
8665 GEN_VXFORM_UIMM(vcfsx
, 5, 13),
8666 GEN_VXFORM_UIMM(vctuxs
, 5, 14),
8667 GEN_VXFORM_UIMM(vctsxs
, 5, 15),
8669 #undef GEN_VAFORM_PAIRED
8670 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
8671 GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC)
8672 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16),
8673 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18),
8674 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19),
8675 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20),
8676 GEN_VAFORM_PAIRED(vsel
, vperm
, 21),
8677 GEN_VAFORM_PAIRED(vmaddfp
, vnmsubfp
, 23),
8680 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
8681 GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type)
8682 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, PPC_SPE
),
8683 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, PPC_SPE
),
8684 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, PPC_SPE
),
8685 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, PPC_SPE
),
8686 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, PPC_SPE
),
8687 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, PPC_SPE
),
8688 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, PPC_SPE
),
8689 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x00000000, PPC_SPE
),
8690 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0x00000000, PPC_SPE
),
8691 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, PPC_SPE
),
8692 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, PPC_SPE
),
8693 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, PPC_SPE
),
8694 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0x00000000, PPC_SPE
),
8695 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, PPC_SPE
),
8696 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, PPC_SPE
),
8697 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, PPC_SPE
),
8698 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, PPC_SPE
),
8699 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, PPC_SPE
),
8700 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, PPC_SPE
),
8701 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, PPC_SPE
),
8702 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, PPC_SPE
),
8703 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, PPC_SPE
),
8704 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, PPC_SPE
),
8705 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, PPC_SPE
),
8706 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, PPC_SPE
),
8708 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, PPC_SPE_SINGLE
),
8709 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, PPC_SPE_SINGLE
),
8710 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, PPC_SPE_SINGLE
),
8711 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, PPC_SPE_SINGLE
),
8712 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, PPC_SPE_SINGLE
),
8713 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, PPC_SPE_SINGLE
),
8714 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8715 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8716 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8717 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8718 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8719 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, PPC_SPE_SINGLE
),
8720 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, PPC_SPE_SINGLE
),
8721 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, PPC_SPE_SINGLE
),
8723 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, PPC_SPE_SINGLE
),
8724 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, PPC_SPE_SINGLE
),
8725 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, PPC_SPE_SINGLE
),
8726 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, PPC_SPE_SINGLE
),
8727 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, PPC_SPE_SINGLE
),
8728 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, PPC_SPE_SINGLE
),
8729 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8730 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8731 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8732 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8733 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8734 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, PPC_SPE_SINGLE
),
8735 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, PPC_SPE_SINGLE
),
8736 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, PPC_SPE_SINGLE
),
8738 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, PPC_SPE_DOUBLE
),
8739 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8740 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
),
8741 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
),
8742 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, PPC_SPE_DOUBLE
),
8743 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8744 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, PPC_SPE_DOUBLE
),
8745 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, PPC_SPE_DOUBLE
),
8746 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8747 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8748 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8749 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8750 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8751 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, PPC_SPE_DOUBLE
),
8752 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, PPC_SPE_DOUBLE
),
8753 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, PPC_SPE_DOUBLE
),
8755 #undef GEN_SPEOP_LDST
8756 #define GEN_SPEOP_LDST(name, opc2, sh) \
8757 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE)
8758 GEN_SPEOP_LDST(evldd
, 0x00, 3),
8759 GEN_SPEOP_LDST(evldw
, 0x01, 3),
8760 GEN_SPEOP_LDST(evldh
, 0x02, 3),
8761 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1),
8762 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1),
8763 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1),
8764 GEN_SPEOP_LDST(evlwhe
, 0x08, 2),
8765 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2),
8766 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2),
8767 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2),
8768 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2),
8770 GEN_SPEOP_LDST(evstdd
, 0x10, 3),
8771 GEN_SPEOP_LDST(evstdw
, 0x11, 3),
8772 GEN_SPEOP_LDST(evstdh
, 0x12, 3),
8773 GEN_SPEOP_LDST(evstwhe
, 0x18, 2),
8774 GEN_SPEOP_LDST(evstwho
, 0x1A, 2),
8775 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2),
8776 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2),
8779 #include "translate_init.c"
8780 #include "helper_regs.h"
8782 /*****************************************************************************/
8783 /* Misc PowerPC helpers */
8784 void cpu_dump_state (CPUState
*env
, FILE *f
,
8785 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8793 cpu_fprintf(f
, "NIP " ADDRX
" LR " ADDRX
" CTR " ADDRX
" XER %08x\n",
8794 env
->nip
, env
->lr
, env
->ctr
, env
->xer
);
8795 cpu_fprintf(f
, "MSR " ADDRX
" HID0 " ADDRX
" HF " ADDRX
" idx %d\n",
8796 env
->msr
, env
->spr
[SPR_HID0
], env
->hflags
, env
->mmu_idx
);
8797 #if !defined(NO_TIMER_DUMP)
8798 cpu_fprintf(f
, "TB %08x %08x "
8799 #if !defined(CONFIG_USER_ONLY)
8803 cpu_ppc_load_tbu(env
), cpu_ppc_load_tbl(env
)
8804 #if !defined(CONFIG_USER_ONLY)
8805 , cpu_ppc_load_decr(env
)
8809 for (i
= 0; i
< 32; i
++) {
8810 if ((i
& (RGPL
- 1)) == 0)
8811 cpu_fprintf(f
, "GPR%02d", i
);
8812 cpu_fprintf(f
, " " REGX
, ppc_dump_gpr(env
, i
));
8813 if ((i
& (RGPL
- 1)) == (RGPL
- 1))
8814 cpu_fprintf(f
, "\n");
8816 cpu_fprintf(f
, "CR ");
8817 for (i
= 0; i
< 8; i
++)
8818 cpu_fprintf(f
, "%01x", env
->crf
[i
]);
8819 cpu_fprintf(f
, " [");
8820 for (i
= 0; i
< 8; i
++) {
8822 if (env
->crf
[i
] & 0x08)
8824 else if (env
->crf
[i
] & 0x04)
8826 else if (env
->crf
[i
] & 0x02)
8828 cpu_fprintf(f
, " %c%c", a
, env
->crf
[i
] & 0x01 ? 'O' : ' ');
8830 cpu_fprintf(f
, " ] RES " ADDRX
"\n", env
->reserve
);
8831 for (i
= 0; i
< 32; i
++) {
8832 if ((i
& (RFPL
- 1)) == 0)
8833 cpu_fprintf(f
, "FPR%02d", i
);
8834 cpu_fprintf(f
, " %016" PRIx64
, *((uint64_t *)&env
->fpr
[i
]));
8835 if ((i
& (RFPL
- 1)) == (RFPL
- 1))
8836 cpu_fprintf(f
, "\n");
8838 cpu_fprintf(f
, "FPSCR %08x\n", env
->fpscr
);
8839 #if !defined(CONFIG_USER_ONLY)
8840 cpu_fprintf(f
, "SRR0 " ADDRX
" SRR1 " ADDRX
" SDR1 " ADDRX
"\n",
8841 env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
], env
->sdr1
);
8848 void cpu_dump_statistics (CPUState
*env
, FILE*f
,
8849 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8852 #if defined(DO_PPC_STATISTICS)
8853 opc_handler_t
**t1
, **t2
, **t3
, *handler
;
8857 for (op1
= 0; op1
< 64; op1
++) {
8859 if (is_indirect_opcode(handler
)) {
8860 t2
= ind_table(handler
);
8861 for (op2
= 0; op2
< 32; op2
++) {
8863 if (is_indirect_opcode(handler
)) {
8864 t3
= ind_table(handler
);
8865 for (op3
= 0; op3
< 32; op3
++) {
8867 if (handler
->count
== 0)
8869 cpu_fprintf(f
, "%02x %02x %02x (%02x %04d) %16s: "
8871 op1
, op2
, op3
, op1
, (op3
<< 5) | op2
,
8873 handler
->count
, handler
->count
);
8876 if (handler
->count
== 0)
8878 cpu_fprintf(f
, "%02x %02x (%02x %04d) %16s: "
8880 op1
, op2
, op1
, op2
, handler
->oname
,
8881 handler
->count
, handler
->count
);
8885 if (handler
->count
== 0)
8887 cpu_fprintf(f
, "%02x (%02x ) %16s: %016llx %lld\n",
8888 op1
, op1
, handler
->oname
,
8889 handler
->count
, handler
->count
);
8895 /*****************************************************************************/
8896 static always_inline
void gen_intermediate_code_internal (CPUState
*env
,
8897 TranslationBlock
*tb
,
8900 DisasContext ctx
, *ctxp
= &ctx
;
8901 opc_handler_t
**table
, *handler
;
8902 target_ulong pc_start
;
8903 uint16_t *gen_opc_end
;
8910 gen_opc_end
= gen_opc_buf
+ OPC_MAX_SIZE
;
8913 ctx
.exception
= POWERPC_EXCP_NONE
;
8914 ctx
.spr_cb
= env
->spr_cb
;
8915 ctx
.mem_idx
= env
->mmu_idx
;
8916 ctx
.access_type
= -1;
8917 ctx
.le_mode
= env
->hflags
& (1 << MSR_LE
) ? 1 : 0;
8918 #if defined(TARGET_PPC64)
8919 ctx
.sf_mode
= msr_sf
;
8921 ctx
.fpu_enabled
= msr_fp
;
8922 if ((env
->flags
& POWERPC_FLAG_SPE
) && msr_spe
)
8923 ctx
.spe_enabled
= msr_spe
;
8925 ctx
.spe_enabled
= 0;
8926 if ((env
->flags
& POWERPC_FLAG_VRE
) && msr_vr
)
8927 ctx
.altivec_enabled
= msr_vr
;
8929 ctx
.altivec_enabled
= 0;
8930 if ((env
->flags
& POWERPC_FLAG_SE
) && msr_se
)
8931 ctx
.singlestep_enabled
= CPU_SINGLE_STEP
;
8933 ctx
.singlestep_enabled
= 0;
8934 if ((env
->flags
& POWERPC_FLAG_BE
) && msr_be
)
8935 ctx
.singlestep_enabled
|= CPU_BRANCH_STEP
;
8936 if (unlikely(env
->singlestep_enabled
))
8937 ctx
.singlestep_enabled
|= GDBSTUB_SINGLE_STEP
;
8938 #if defined (DO_SINGLE_STEP) && 0
8939 /* Single step trace mode */
8943 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
8945 max_insns
= CF_COUNT_MASK
;
8948 /* Set env in case of segfault during code fetch */
8949 while (ctx
.exception
== POWERPC_EXCP_NONE
&& gen_opc_ptr
< gen_opc_end
) {
8950 if (unlikely(!TAILQ_EMPTY(&env
->breakpoints
))) {
8951 TAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
8952 if (bp
->pc
== ctx
.nip
) {
8953 gen_debug_exception(ctxp
);
8958 if (unlikely(search_pc
)) {
8959 j
= gen_opc_ptr
- gen_opc_buf
;
8963 gen_opc_instr_start
[lj
++] = 0;
8965 gen_opc_pc
[lj
] = ctx
.nip
;
8966 gen_opc_instr_start
[lj
] = 1;
8967 gen_opc_icount
[lj
] = num_insns
;
8969 LOG_DISAS("----------------\n");
8970 LOG_DISAS("nip=" ADDRX
" super=%d ir=%d\n",
8971 ctx
.nip
, ctx
.mem_idx
, (int)msr_ir
);
8972 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
8974 if (unlikely(ctx
.le_mode
)) {
8975 ctx
.opcode
= bswap32(ldl_code(ctx
.nip
));
8977 ctx
.opcode
= ldl_code(ctx
.nip
);
8979 LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
8980 ctx
.opcode
, opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8981 opc3(ctx
.opcode
), little_endian
? "little" : "big");
8983 table
= env
->opcodes
;
8985 handler
= table
[opc1(ctx
.opcode
)];
8986 if (is_indirect_opcode(handler
)) {
8987 table
= ind_table(handler
);
8988 handler
= table
[opc2(ctx
.opcode
)];
8989 if (is_indirect_opcode(handler
)) {
8990 table
= ind_table(handler
);
8991 handler
= table
[opc3(ctx
.opcode
)];
8994 /* Is opcode *REALLY* valid ? */
8995 if (unlikely(handler
->handler
== &gen_invalid
)) {
8996 if (qemu_log_enabled()) {
8997 qemu_log("invalid/unsupported opcode: "
8998 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
8999 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
9000 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
9002 printf("invalid/unsupported opcode: "
9003 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
9004 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
9005 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
9008 if (unlikely((ctx
.opcode
& handler
->inval
) != 0)) {
9009 if (qemu_log_enabled()) {
9010 qemu_log("invalid bits: %08x for opcode: "
9011 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
9012 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
9013 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
9014 ctx
.opcode
, ctx
.nip
- 4);
9016 printf("invalid bits: %08x for opcode: "
9017 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
9018 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
9019 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
9020 ctx
.opcode
, ctx
.nip
- 4);
9022 gen_inval_exception(ctxp
, POWERPC_EXCP_INVAL_INVAL
);
9026 (*(handler
->handler
))(&ctx
);
9027 #if defined(DO_PPC_STATISTICS)
9030 /* Check trace mode exceptions */
9031 if (unlikely(ctx
.singlestep_enabled
& CPU_SINGLE_STEP
&&
9032 (ctx
.nip
<= 0x100 || ctx
.nip
> 0xF00) &&
9033 ctx
.exception
!= POWERPC_SYSCALL
&&
9034 ctx
.exception
!= POWERPC_EXCP_TRAP
&&
9035 ctx
.exception
!= POWERPC_EXCP_BRANCH
)) {
9036 gen_exception(ctxp
, POWERPC_EXCP_TRACE
);
9037 } else if (unlikely(((ctx
.nip
& (TARGET_PAGE_SIZE
- 1)) == 0) ||
9038 (env
->singlestep_enabled
) ||
9040 num_insns
>= max_insns
)) {
9041 /* if we reach a page boundary or are single stepping, stop
9047 if (tb
->cflags
& CF_LAST_IO
)
9049 if (ctx
.exception
== POWERPC_EXCP_NONE
) {
9050 gen_goto_tb(&ctx
, 0, ctx
.nip
);
9051 } else if (ctx
.exception
!= POWERPC_EXCP_BRANCH
) {
9052 if (unlikely(env
->singlestep_enabled
)) {
9053 gen_debug_exception(ctxp
);
9055 /* Generate the return instruction */
9058 gen_icount_end(tb
, num_insns
);
9059 *gen_opc_ptr
= INDEX_op_end
;
9060 if (unlikely(search_pc
)) {
9061 j
= gen_opc_ptr
- gen_opc_buf
;
9064 gen_opc_instr_start
[lj
++] = 0;
9066 tb
->size
= ctx
.nip
- pc_start
;
9067 tb
->icount
= num_insns
;
9069 #if defined(DEBUG_DISAS)
9070 qemu_log_mask(CPU_LOG_TB_CPU
, "---------------- excp: %04x\n", ctx
.exception
);
9071 log_cpu_state_mask(CPU_LOG_TB_CPU
, env
, 0);
9072 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
9074 flags
= env
->bfd_mach
;
9075 flags
|= ctx
.le_mode
<< 16;
9076 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
9077 log_target_disas(pc_start
, ctx
.nip
- pc_start
, flags
);
9083 void gen_intermediate_code (CPUState
*env
, struct TranslationBlock
*tb
)
9085 gen_intermediate_code_internal(env
, tb
, 0);
9088 void gen_intermediate_code_pc (CPUState
*env
, struct TranslationBlock
*tb
)
9090 gen_intermediate_code_internal(env
, tb
, 1);
9093 void gen_pc_load(CPUState
*env
, TranslationBlock
*tb
,
9094 unsigned long searched_pc
, int pc_pos
, void *puc
)
9096 env
->nip
= gen_opc_pc
[pc_pos
];