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 static void gen_##name (DisasContext *ctx); \
317 GEN_OPCODE(name, opc1, opc2, opc3, inval, type); \
318 static void gen_##name (DisasContext *ctx)
320 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
321 static void gen_##name (DisasContext *ctx); \
322 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type); \
323 static void gen_##name (DisasContext *ctx)
325 typedef struct opcode_t
{
326 unsigned char opc1
, opc2
, opc3
;
327 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
328 unsigned char pad
[5];
330 unsigned char pad
[1];
332 opc_handler_t handler
;
336 /*****************************************************************************/
337 /*** Instruction decoding ***/
338 #define EXTRACT_HELPER(name, shift, nb) \
339 static always_inline uint32_t name (uint32_t opcode) \
341 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
344 #define EXTRACT_SHELPER(name, shift, nb) \
345 static always_inline int32_t name (uint32_t opcode) \
347 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
351 EXTRACT_HELPER(opc1
, 26, 6);
353 EXTRACT_HELPER(opc2
, 1, 5);
355 EXTRACT_HELPER(opc3
, 6, 5);
356 /* Update Cr0 flags */
357 EXTRACT_HELPER(Rc
, 0, 1);
359 EXTRACT_HELPER(rD
, 21, 5);
361 EXTRACT_HELPER(rS
, 21, 5);
363 EXTRACT_HELPER(rA
, 16, 5);
365 EXTRACT_HELPER(rB
, 11, 5);
367 EXTRACT_HELPER(rC
, 6, 5);
369 EXTRACT_HELPER(crfD
, 23, 3);
370 EXTRACT_HELPER(crfS
, 18, 3);
371 EXTRACT_HELPER(crbD
, 21, 5);
372 EXTRACT_HELPER(crbA
, 16, 5);
373 EXTRACT_HELPER(crbB
, 11, 5);
375 EXTRACT_HELPER(_SPR
, 11, 10);
376 static always_inline
uint32_t SPR (uint32_t opcode
)
378 uint32_t sprn
= _SPR(opcode
);
380 return ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
382 /*** Get constants ***/
383 EXTRACT_HELPER(IMM
, 12, 8);
384 /* 16 bits signed immediate value */
385 EXTRACT_SHELPER(SIMM
, 0, 16);
386 /* 16 bits unsigned immediate value */
387 EXTRACT_HELPER(UIMM
, 0, 16);
388 /* 5 bits signed immediate value */
389 EXTRACT_HELPER(SIMM5
, 16, 5);
390 /* 5 bits signed immediate value */
391 EXTRACT_HELPER(UIMM5
, 16, 5);
393 EXTRACT_HELPER(NB
, 11, 5);
395 EXTRACT_HELPER(SH
, 11, 5);
396 /* Vector shift count */
397 EXTRACT_HELPER(VSH
, 6, 4);
399 EXTRACT_HELPER(MB
, 6, 5);
401 EXTRACT_HELPER(ME
, 1, 5);
403 EXTRACT_HELPER(TO
, 21, 5);
405 EXTRACT_HELPER(CRM
, 12, 8);
406 EXTRACT_HELPER(FM
, 17, 8);
407 EXTRACT_HELPER(SR
, 16, 4);
408 EXTRACT_HELPER(FPIMM
, 12, 4);
410 /*** Jump target decoding ***/
412 EXTRACT_SHELPER(d
, 0, 16);
413 /* Immediate address */
414 static always_inline target_ulong
LI (uint32_t opcode
)
416 return (opcode
>> 0) & 0x03FFFFFC;
419 static always_inline
uint32_t BD (uint32_t opcode
)
421 return (opcode
>> 0) & 0xFFFC;
424 EXTRACT_HELPER(BO
, 21, 5);
425 EXTRACT_HELPER(BI
, 16, 5);
426 /* Absolute/relative address */
427 EXTRACT_HELPER(AA
, 1, 1);
429 EXTRACT_HELPER(LK
, 0, 1);
431 /* Create a mask between <start> and <end> bits */
432 static always_inline target_ulong
MASK (uint32_t start
, uint32_t end
)
436 #if defined(TARGET_PPC64)
437 if (likely(start
== 0)) {
438 ret
= UINT64_MAX
<< (63 - end
);
439 } else if (likely(end
== 63)) {
440 ret
= UINT64_MAX
>> start
;
443 if (likely(start
== 0)) {
444 ret
= UINT32_MAX
<< (31 - end
);
445 } else if (likely(end
== 31)) {
446 ret
= UINT32_MAX
>> start
;
450 ret
= (((target_ulong
)(-1ULL)) >> (start
)) ^
451 (((target_ulong
)(-1ULL) >> (end
)) >> 1);
452 if (unlikely(start
> end
))
459 /*****************************************************************************/
460 /* PowerPC Instructions types definitions */
462 PPC_NONE
= 0x0000000000000000ULL
,
463 /* PowerPC base instructions set */
464 PPC_INSNS_BASE
= 0x0000000000000001ULL
,
465 /* integer operations instructions */
466 #define PPC_INTEGER PPC_INSNS_BASE
467 /* flow control instructions */
468 #define PPC_FLOW PPC_INSNS_BASE
469 /* virtual memory instructions */
470 #define PPC_MEM PPC_INSNS_BASE
471 /* ld/st with reservation instructions */
472 #define PPC_RES PPC_INSNS_BASE
473 /* spr/msr access instructions */
474 #define PPC_MISC PPC_INSNS_BASE
475 /* Deprecated instruction sets */
476 /* Original POWER instruction set */
477 PPC_POWER
= 0x0000000000000002ULL
,
478 /* POWER2 instruction set extension */
479 PPC_POWER2
= 0x0000000000000004ULL
,
480 /* Power RTC support */
481 PPC_POWER_RTC
= 0x0000000000000008ULL
,
482 /* Power-to-PowerPC bridge (601) */
483 PPC_POWER_BR
= 0x0000000000000010ULL
,
484 /* 64 bits PowerPC instruction set */
485 PPC_64B
= 0x0000000000000020ULL
,
486 /* New 64 bits extensions (PowerPC 2.0x) */
487 PPC_64BX
= 0x0000000000000040ULL
,
488 /* 64 bits hypervisor extensions */
489 PPC_64H
= 0x0000000000000080ULL
,
490 /* New wait instruction (PowerPC 2.0x) */
491 PPC_WAIT
= 0x0000000000000100ULL
,
492 /* Time base mftb instruction */
493 PPC_MFTB
= 0x0000000000000200ULL
,
495 /* Fixed-point unit extensions */
496 /* PowerPC 602 specific */
497 PPC_602_SPEC
= 0x0000000000000400ULL
,
498 /* isel instruction */
499 PPC_ISEL
= 0x0000000000000800ULL
,
500 /* popcntb instruction */
501 PPC_POPCNTB
= 0x0000000000001000ULL
,
502 /* string load / store */
503 PPC_STRING
= 0x0000000000002000ULL
,
505 /* Floating-point unit extensions */
506 /* Optional floating point instructions */
507 PPC_FLOAT
= 0x0000000000010000ULL
,
508 /* New floating-point extensions (PowerPC 2.0x) */
509 PPC_FLOAT_EXT
= 0x0000000000020000ULL
,
510 PPC_FLOAT_FSQRT
= 0x0000000000040000ULL
,
511 PPC_FLOAT_FRES
= 0x0000000000080000ULL
,
512 PPC_FLOAT_FRSQRTE
= 0x0000000000100000ULL
,
513 PPC_FLOAT_FRSQRTES
= 0x0000000000200000ULL
,
514 PPC_FLOAT_FSEL
= 0x0000000000400000ULL
,
515 PPC_FLOAT_STFIWX
= 0x0000000000800000ULL
,
517 /* Vector/SIMD extensions */
518 /* Altivec support */
519 PPC_ALTIVEC
= 0x0000000001000000ULL
,
520 /* PowerPC 2.03 SPE extension */
521 PPC_SPE
= 0x0000000002000000ULL
,
522 /* PowerPC 2.03 SPE single-precision floating-point extension */
523 PPC_SPE_SINGLE
= 0x0000000004000000ULL
,
524 /* PowerPC 2.03 SPE double-precision floating-point extension */
525 PPC_SPE_DOUBLE
= 0x0000000008000000ULL
,
527 /* Optional memory control instructions */
528 PPC_MEM_TLBIA
= 0x0000000010000000ULL
,
529 PPC_MEM_TLBIE
= 0x0000000020000000ULL
,
530 PPC_MEM_TLBSYNC
= 0x0000000040000000ULL
,
531 /* sync instruction */
532 PPC_MEM_SYNC
= 0x0000000080000000ULL
,
533 /* eieio instruction */
534 PPC_MEM_EIEIO
= 0x0000000100000000ULL
,
536 /* Cache control instructions */
537 PPC_CACHE
= 0x0000000200000000ULL
,
538 /* icbi instruction */
539 PPC_CACHE_ICBI
= 0x0000000400000000ULL
,
540 /* dcbz instruction with fixed cache line size */
541 PPC_CACHE_DCBZ
= 0x0000000800000000ULL
,
542 /* dcbz instruction with tunable cache line size */
543 PPC_CACHE_DCBZT
= 0x0000001000000000ULL
,
544 /* dcba instruction */
545 PPC_CACHE_DCBA
= 0x0000002000000000ULL
,
546 /* Freescale cache locking instructions */
547 PPC_CACHE_LOCK
= 0x0000004000000000ULL
,
549 /* MMU related extensions */
550 /* external control instructions */
551 PPC_EXTERN
= 0x0000010000000000ULL
,
552 /* segment register access instructions */
553 PPC_SEGMENT
= 0x0000020000000000ULL
,
554 /* PowerPC 6xx TLB management instructions */
555 PPC_6xx_TLB
= 0x0000040000000000ULL
,
556 /* PowerPC 74xx TLB management instructions */
557 PPC_74xx_TLB
= 0x0000080000000000ULL
,
558 /* PowerPC 40x TLB management instructions */
559 PPC_40x_TLB
= 0x0000100000000000ULL
,
560 /* segment register access instructions for PowerPC 64 "bridge" */
561 PPC_SEGMENT_64B
= 0x0000200000000000ULL
,
563 PPC_SLBI
= 0x0000400000000000ULL
,
565 /* Embedded PowerPC dedicated instructions */
566 PPC_WRTEE
= 0x0001000000000000ULL
,
567 /* PowerPC 40x exception model */
568 PPC_40x_EXCP
= 0x0002000000000000ULL
,
569 /* PowerPC 405 Mac instructions */
570 PPC_405_MAC
= 0x0004000000000000ULL
,
571 /* PowerPC 440 specific instructions */
572 PPC_440_SPEC
= 0x0008000000000000ULL
,
573 /* BookE (embedded) PowerPC specification */
574 PPC_BOOKE
= 0x0010000000000000ULL
,
575 /* mfapidi instruction */
576 PPC_MFAPIDI
= 0x0020000000000000ULL
,
577 /* tlbiva instruction */
578 PPC_TLBIVA
= 0x0040000000000000ULL
,
579 /* tlbivax instruction */
580 PPC_TLBIVAX
= 0x0080000000000000ULL
,
581 /* PowerPC 4xx dedicated instructions */
582 PPC_4xx_COMMON
= 0x0100000000000000ULL
,
583 /* PowerPC 40x ibct instructions */
584 PPC_40x_ICBT
= 0x0200000000000000ULL
,
585 /* rfmci is not implemented in all BookE PowerPC */
586 PPC_RFMCI
= 0x0400000000000000ULL
,
587 /* rfdi instruction */
588 PPC_RFDI
= 0x0800000000000000ULL
,
590 PPC_DCR
= 0x1000000000000000ULL
,
591 /* DCR extended accesse */
592 PPC_DCRX
= 0x2000000000000000ULL
,
593 /* user-mode DCR access, implemented in PowerPC 460 */
594 PPC_DCRUX
= 0x4000000000000000ULL
,
597 /*****************************************************************************/
598 /* PowerPC instructions table */
599 #if HOST_LONG_BITS == 64
604 #if defined(__APPLE__)
605 #define OPCODES_SECTION \
606 __attribute__ ((section("__TEXT,__opcodes"), unused, aligned (OPC_ALIGN) ))
608 #define OPCODES_SECTION \
609 __attribute__ ((section(".opcodes"), unused, aligned (OPC_ALIGN) ))
612 #if defined(DO_PPC_STATISTICS)
613 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
614 extern opcode_t opc_##name; \
615 OPCODES_SECTION opcode_t opc_##name = { \
623 .handler = &gen_##name, \
624 .oname = stringify(name), \
626 .oname = stringify(name), \
628 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
629 OPCODES_SECTION opcode_t opc_##name = { \
637 .handler = &gen_##name, \
643 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
644 extern opcode_t opc_##name; \
645 OPCODES_SECTION opcode_t opc_##name = { \
653 .handler = &gen_##name, \
655 .oname = stringify(name), \
657 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
658 extern opcode_t opc_##name; \
659 OPCODES_SECTION opcode_t opc_##name = { \
667 .handler = &gen_##name, \
673 #define GEN_OPCODE_MARK(name) \
674 extern opcode_t opc_##name; \
675 OPCODES_SECTION opcode_t opc_##name = { \
681 .inval = 0x00000000, \
685 .oname = stringify(name), \
688 /* SPR load/store helpers */
689 static always_inline
void gen_load_spr(TCGv t
, int reg
)
691 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
694 static always_inline
void gen_store_spr(int reg
, TCGv t
)
696 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
699 /* Start opcode list */
700 GEN_OPCODE_MARK(start
);
702 /* Invalid instruction */
703 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
)
705 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
708 static opc_handler_t invalid_handler
= {
711 .handler
= gen_invalid
,
714 /*** Integer comparison ***/
716 static always_inline
void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
720 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_xer
);
721 tcg_gen_shri_i32(cpu_crf
[crf
], cpu_crf
[crf
], XER_SO
);
722 tcg_gen_andi_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1);
724 l1
= gen_new_label();
725 l2
= gen_new_label();
726 l3
= gen_new_label();
728 tcg_gen_brcond_tl(TCG_COND_LT
, arg0
, arg1
, l1
);
729 tcg_gen_brcond_tl(TCG_COND_GT
, arg0
, arg1
, l2
);
731 tcg_gen_brcond_tl(TCG_COND_LTU
, arg0
, arg1
, l1
);
732 tcg_gen_brcond_tl(TCG_COND_GTU
, arg0
, arg1
, l2
);
734 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_EQ
);
737 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_LT
);
740 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_GT
);
744 static always_inline
void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
746 TCGv t0
= tcg_const_local_tl(arg1
);
747 gen_op_cmp(arg0
, t0
, s
, crf
);
751 #if defined(TARGET_PPC64)
752 static always_inline
void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
755 t0
= tcg_temp_local_new();
756 t1
= tcg_temp_local_new();
758 tcg_gen_ext32s_tl(t0
, arg0
);
759 tcg_gen_ext32s_tl(t1
, arg1
);
761 tcg_gen_ext32u_tl(t0
, arg0
);
762 tcg_gen_ext32u_tl(t1
, arg1
);
764 gen_op_cmp(t0
, t1
, s
, crf
);
769 static always_inline
void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
771 TCGv t0
= tcg_const_local_tl(arg1
);
772 gen_op_cmp32(arg0
, t0
, s
, crf
);
777 static always_inline
void gen_set_Rc0 (DisasContext
*ctx
, TCGv reg
)
779 #if defined(TARGET_PPC64)
781 gen_op_cmpi32(reg
, 0, 1, 0);
784 gen_op_cmpi(reg
, 0, 1, 0);
788 GEN_HANDLER(cmp
, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER
)
790 #if defined(TARGET_PPC64)
791 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
792 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
793 1, crfD(ctx
->opcode
));
796 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
797 1, crfD(ctx
->opcode
));
801 GEN_HANDLER(cmpi
, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
)
803 #if defined(TARGET_PPC64)
804 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
805 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
806 1, crfD(ctx
->opcode
));
809 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
810 1, crfD(ctx
->opcode
));
814 GEN_HANDLER(cmpl
, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER
)
816 #if defined(TARGET_PPC64)
817 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
818 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
819 0, crfD(ctx
->opcode
));
822 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
823 0, crfD(ctx
->opcode
));
827 GEN_HANDLER(cmpli
, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
)
829 #if defined(TARGET_PPC64)
830 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
831 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
832 0, crfD(ctx
->opcode
));
835 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
836 0, crfD(ctx
->opcode
));
839 /* isel (PowerPC 2.03 specification) */
840 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
)
843 uint32_t bi
= rC(ctx
->opcode
);
847 l1
= gen_new_label();
848 l2
= gen_new_label();
850 mask
= 1 << (3 - (bi
& 0x03));
851 t0
= tcg_temp_new_i32();
852 tcg_gen_andi_i32(t0
, cpu_crf
[bi
>> 2], mask
);
853 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
854 if (rA(ctx
->opcode
) == 0)
855 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
857 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
860 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
862 tcg_temp_free_i32(t0
);
865 /*** Integer arithmetic ***/
867 static always_inline
void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
, TCGv arg1
, TCGv arg2
, int sub
)
872 l1
= gen_new_label();
873 /* Start with XER OV disabled, the most likely case */
874 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
875 t0
= tcg_temp_local_new();
876 tcg_gen_xor_tl(t0
, arg0
, arg1
);
877 #if defined(TARGET_PPC64)
879 tcg_gen_ext32s_tl(t0
, t0
);
882 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
884 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
885 tcg_gen_xor_tl(t0
, arg1
, arg2
);
886 #if defined(TARGET_PPC64)
888 tcg_gen_ext32s_tl(t0
, t0
);
891 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
893 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
894 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
899 static always_inline
void gen_op_arith_compute_ca(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
, int sub
)
901 int l1
= gen_new_label();
903 #if defined(TARGET_PPC64)
904 if (!(ctx
->sf_mode
)) {
909 tcg_gen_ext32u_tl(t0
, arg1
);
910 tcg_gen_ext32u_tl(t1
, arg2
);
912 tcg_gen_brcond_tl(TCG_COND_GTU
, t0
, t1
, l1
);
914 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
916 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
924 tcg_gen_brcond_tl(TCG_COND_GTU
, arg1
, arg2
, l1
);
926 tcg_gen_brcond_tl(TCG_COND_GEU
, arg1
, arg2
, l1
);
928 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
933 /* Common add function */
934 static always_inline
void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
935 int add_ca
, int compute_ca
, int compute_ov
)
939 if ((!compute_ca
&& !compute_ov
) ||
940 (!TCGV_EQUAL(ret
,arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
943 t0
= tcg_temp_local_new();
947 t1
= tcg_temp_local_new();
948 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
949 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
952 if (compute_ca
&& compute_ov
) {
953 /* Start with XER CA and OV disabled, the most likely case */
954 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
955 } else if (compute_ca
) {
956 /* Start with XER CA disabled, the most likely case */
957 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
958 } else if (compute_ov
) {
959 /* Start with XER OV disabled, the most likely case */
960 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
963 tcg_gen_add_tl(t0
, arg1
, arg2
);
966 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
969 tcg_gen_add_tl(t0
, t0
, t1
);
970 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
974 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
977 if (unlikely(Rc(ctx
->opcode
) != 0))
978 gen_set_Rc0(ctx
, t0
);
980 if (!TCGV_EQUAL(t0
, ret
)) {
981 tcg_gen_mov_tl(ret
, t0
);
985 /* Add functions with two operands */
986 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
987 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER) \
989 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
990 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
991 add_ca, compute_ca, compute_ov); \
993 /* Add functions with one operand and one immediate */
994 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
995 add_ca, compute_ca, compute_ov) \
996 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER) \
998 TCGv t0 = tcg_const_local_tl(const_val); \
999 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
1000 cpu_gpr[rA(ctx->opcode)], t0, \
1001 add_ca, compute_ca, compute_ov); \
1002 tcg_temp_free(t0); \
1005 /* add add. addo addo. */
1006 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
1007 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
1008 /* addc addc. addco addco. */
1009 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
1010 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
1011 /* adde adde. addeo addeo. */
1012 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
1013 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
1014 /* addme addme. addmeo addmeo. */
1015 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
1016 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
1017 /* addze addze. addzeo addzeo.*/
1018 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
1019 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
1021 GEN_HANDLER(addi
, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1023 target_long simm
= SIMM(ctx
->opcode
);
1025 if (rA(ctx
->opcode
) == 0) {
1027 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
);
1029 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
);
1033 static always_inline
void gen_op_addic (DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1036 target_long simm
= SIMM(ctx
->opcode
);
1038 /* Start with XER CA and OV disabled, the most likely case */
1039 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1041 if (likely(simm
!= 0)) {
1042 TCGv t0
= tcg_temp_local_new();
1043 tcg_gen_addi_tl(t0
, arg1
, simm
);
1044 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
1045 tcg_gen_mov_tl(ret
, t0
);
1048 tcg_gen_mov_tl(ret
, arg1
);
1051 gen_set_Rc0(ctx
, ret
);
1054 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1056 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1058 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1060 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1063 GEN_HANDLER(addis
, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1065 target_long simm
= SIMM(ctx
->opcode
);
1067 if (rA(ctx
->opcode
) == 0) {
1069 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
<< 16);
1071 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
<< 16);
1075 static always_inline
void gen_op_arith_divw (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1076 int sign
, int compute_ov
)
1078 int l1
= gen_new_label();
1079 int l2
= gen_new_label();
1080 TCGv_i32 t0
= tcg_temp_local_new_i32();
1081 TCGv_i32 t1
= tcg_temp_local_new_i32();
1083 tcg_gen_trunc_tl_i32(t0
, arg1
);
1084 tcg_gen_trunc_tl_i32(t1
, arg2
);
1085 tcg_gen_brcondi_i32(TCG_COND_EQ
, t1
, 0, l1
);
1087 int l3
= gen_new_label();
1088 tcg_gen_brcondi_i32(TCG_COND_NE
, t1
, -1, l3
);
1089 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1091 tcg_gen_div_i32(t0
, t0
, t1
);
1093 tcg_gen_divu_i32(t0
, t0
, t1
);
1096 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1101 tcg_gen_sari_i32(t0
, t0
, 31);
1103 tcg_gen_movi_i32(t0
, 0);
1106 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1109 tcg_gen_extu_i32_tl(ret
, t0
);
1110 tcg_temp_free_i32(t0
);
1111 tcg_temp_free_i32(t1
);
1112 if (unlikely(Rc(ctx
->opcode
) != 0))
1113 gen_set_Rc0(ctx
, ret
);
1116 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1117 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER) \
1119 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1120 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1121 sign, compute_ov); \
1123 /* divwu divwu. divwuo divwuo. */
1124 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
1125 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
1126 /* divw divw. divwo divwo. */
1127 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
1128 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
1129 #if defined(TARGET_PPC64)
1130 static always_inline
void gen_op_arith_divd (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1131 int sign
, int compute_ov
)
1133 int l1
= gen_new_label();
1134 int l2
= gen_new_label();
1136 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg2
, 0, l1
);
1138 int l3
= gen_new_label();
1139 tcg_gen_brcondi_i64(TCG_COND_NE
, arg2
, -1, l3
);
1140 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg1
, INT64_MIN
, l1
);
1142 tcg_gen_div_i64(ret
, arg1
, arg2
);
1144 tcg_gen_divu_i64(ret
, arg1
, arg2
);
1147 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1152 tcg_gen_sari_i64(ret
, arg1
, 63);
1154 tcg_gen_movi_i64(ret
, 0);
1157 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1160 if (unlikely(Rc(ctx
->opcode
) != 0))
1161 gen_set_Rc0(ctx
, ret
);
1163 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1164 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1166 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1167 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1168 sign, compute_ov); \
1170 /* divwu divwu. divwuo divwuo. */
1171 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1172 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1173 /* divw divw. divwo divwo. */
1174 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1175 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1179 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
)
1183 t0
= tcg_temp_new_i64();
1184 t1
= tcg_temp_new_i64();
1185 #if defined(TARGET_PPC64)
1186 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1187 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1188 tcg_gen_mul_i64(t0
, t0
, t1
);
1189 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1191 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1192 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1193 tcg_gen_mul_i64(t0
, t0
, t1
);
1194 tcg_gen_shri_i64(t0
, t0
, 32);
1195 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1197 tcg_temp_free_i64(t0
);
1198 tcg_temp_free_i64(t1
);
1199 if (unlikely(Rc(ctx
->opcode
) != 0))
1200 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1202 /* mulhwu mulhwu. */
1203 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
)
1207 t0
= tcg_temp_new_i64();
1208 t1
= tcg_temp_new_i64();
1209 #if defined(TARGET_PPC64)
1210 tcg_gen_ext32u_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1211 tcg_gen_ext32u_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1212 tcg_gen_mul_i64(t0
, t0
, t1
);
1213 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1215 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1216 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1217 tcg_gen_mul_i64(t0
, t0
, t1
);
1218 tcg_gen_shri_i64(t0
, t0
, 32);
1219 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1221 tcg_temp_free_i64(t0
);
1222 tcg_temp_free_i64(t1
);
1223 if (unlikely(Rc(ctx
->opcode
) != 0))
1224 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1227 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
)
1229 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1230 cpu_gpr
[rB(ctx
->opcode
)]);
1231 tcg_gen_ext32s_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)]);
1232 if (unlikely(Rc(ctx
->opcode
) != 0))
1233 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1235 /* mullwo mullwo. */
1236 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
)
1241 t0
= tcg_temp_new_i64();
1242 t1
= tcg_temp_new_i64();
1243 l1
= gen_new_label();
1244 /* Start with XER OV disabled, the most likely case */
1245 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1246 #if defined(TARGET_PPC64)
1247 tcg_gen_ext32s_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1248 tcg_gen_ext32s_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1250 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1251 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1253 tcg_gen_mul_i64(t0
, t0
, t1
);
1254 #if defined(TARGET_PPC64)
1255 tcg_gen_ext32s_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1256 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, cpu_gpr
[rD(ctx
->opcode
)], l1
);
1258 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1259 tcg_gen_ext32s_i64(t1
, t0
);
1260 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
1262 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1264 tcg_temp_free_i64(t0
);
1265 tcg_temp_free_i64(t1
);
1266 if (unlikely(Rc(ctx
->opcode
) != 0))
1267 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1270 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1272 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1275 #if defined(TARGET_PPC64)
1276 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1277 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1279 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1280 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1281 if (unlikely(Rc(ctx->opcode) != 0)) \
1282 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1285 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00);
1286 /* mulhdu mulhdu. */
1287 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02);
1289 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
)
1291 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1292 cpu_gpr
[rB(ctx
->opcode
)]);
1293 if (unlikely(Rc(ctx
->opcode
) != 0))
1294 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1296 /* mulldo mulldo. */
1297 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17);
1300 /* neg neg. nego nego. */
1301 static always_inline
void gen_op_arith_neg (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, int ov_check
)
1303 int l1
= gen_new_label();
1304 int l2
= gen_new_label();
1305 TCGv t0
= tcg_temp_local_new();
1306 #if defined(TARGET_PPC64)
1308 tcg_gen_mov_tl(t0
, arg1
);
1309 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT64_MIN
, l1
);
1313 tcg_gen_ext32s_tl(t0
, arg1
);
1314 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1316 tcg_gen_neg_tl(ret
, arg1
);
1318 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1322 tcg_gen_mov_tl(ret
, t0
);
1324 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1328 if (unlikely(Rc(ctx
->opcode
) != 0))
1329 gen_set_Rc0(ctx
, ret
);
1331 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
)
1333 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1335 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
)
1337 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1340 /* Common subf function */
1341 static always_inline
void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1342 int add_ca
, int compute_ca
, int compute_ov
)
1346 if ((!compute_ca
&& !compute_ov
) ||
1347 (!TCGV_EQUAL(ret
, arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
1350 t0
= tcg_temp_local_new();
1354 t1
= tcg_temp_local_new();
1355 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
1356 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
1359 if (compute_ca
&& compute_ov
) {
1360 /* Start with XER CA and OV disabled, the most likely case */
1361 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
1362 } else if (compute_ca
) {
1363 /* Start with XER CA disabled, the most likely case */
1364 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1365 } else if (compute_ov
) {
1366 /* Start with XER OV disabled, the most likely case */
1367 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1371 tcg_gen_not_tl(t0
, arg1
);
1372 tcg_gen_add_tl(t0
, t0
, arg2
);
1373 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 0);
1374 tcg_gen_add_tl(t0
, t0
, t1
);
1375 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
1378 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1380 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 1);
1384 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
1387 if (unlikely(Rc(ctx
->opcode
) != 0))
1388 gen_set_Rc0(ctx
, t0
);
1390 if (!TCGV_EQUAL(t0
, ret
)) {
1391 tcg_gen_mov_tl(ret
, t0
);
1395 /* Sub functions with Two operands functions */
1396 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1397 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER) \
1399 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1400 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1401 add_ca, compute_ca, compute_ov); \
1403 /* Sub functions with one operand and one immediate */
1404 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1405 add_ca, compute_ca, compute_ov) \
1406 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER) \
1408 TCGv t0 = tcg_const_local_tl(const_val); \
1409 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1410 cpu_gpr[rA(ctx->opcode)], t0, \
1411 add_ca, compute_ca, compute_ov); \
1412 tcg_temp_free(t0); \
1414 /* subf subf. subfo subfo. */
1415 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
1416 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
1417 /* subfc subfc. subfco subfco. */
1418 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
1419 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
1420 /* subfe subfe. subfeo subfo. */
1421 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
1422 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
1423 /* subfme subfme. subfmeo subfmeo. */
1424 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
1425 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
1426 /* subfze subfze. subfzeo subfzeo.*/
1427 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
1428 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
1430 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1432 /* Start with XER CA and OV disabled, the most likely case */
1433 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1434 TCGv t0
= tcg_temp_local_new();
1435 TCGv t1
= tcg_const_local_tl(SIMM(ctx
->opcode
));
1436 tcg_gen_sub_tl(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)]);
1437 gen_op_arith_compute_ca(ctx
, t0
, t1
, 1);
1439 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1443 /*** Integer logical ***/
1444 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1445 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type) \
1447 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1448 cpu_gpr[rB(ctx->opcode)]); \
1449 if (unlikely(Rc(ctx->opcode) != 0)) \
1450 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1453 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1454 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type) \
1456 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1457 if (unlikely(Rc(ctx->opcode) != 0)) \
1458 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1462 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
1464 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
1466 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1468 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
));
1469 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1472 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1474 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
) << 16);
1475 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1478 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
)
1480 gen_helper_cntlzw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1481 if (unlikely(Rc(ctx
->opcode
) != 0))
1482 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1485 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
1486 /* extsb & extsb. */
1487 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
1488 /* extsh & extsh. */
1489 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
1491 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
1493 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
1495 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
)
1499 rs
= rS(ctx
->opcode
);
1500 ra
= rA(ctx
->opcode
);
1501 rb
= rB(ctx
->opcode
);
1502 /* Optimisation for mr. ri case */
1503 if (rs
!= ra
|| rs
!= rb
) {
1505 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
1507 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
1508 if (unlikely(Rc(ctx
->opcode
) != 0))
1509 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
1510 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
1511 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
1512 #if defined(TARGET_PPC64)
1518 /* Set process priority to low */
1522 /* Set process priority to medium-low */
1526 /* Set process priority to normal */
1529 #if !defined(CONFIG_USER_ONLY)
1531 if (ctx
->mem_idx
> 0) {
1532 /* Set process priority to very low */
1537 if (ctx
->mem_idx
> 0) {
1538 /* Set process priority to medium-hight */
1543 if (ctx
->mem_idx
> 0) {
1544 /* Set process priority to high */
1549 if (ctx
->mem_idx
> 1) {
1550 /* Set process priority to very high */
1560 TCGv t0
= tcg_temp_new();
1561 gen_load_spr(t0
, SPR_PPR
);
1562 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
1563 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
1564 gen_store_spr(SPR_PPR
, t0
);
1571 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
1573 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
)
1575 /* Optimisation for "set to zero" case */
1576 if (rS(ctx
->opcode
) != rB(ctx
->opcode
))
1577 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1579 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1580 if (unlikely(Rc(ctx
->opcode
) != 0))
1581 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1584 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1586 target_ulong uimm
= UIMM(ctx
->opcode
);
1588 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1590 /* XXX: should handle special NOPs for POWER series */
1593 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1596 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1598 target_ulong uimm
= UIMM(ctx
->opcode
);
1600 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1604 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1607 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1609 target_ulong uimm
= UIMM(ctx
->opcode
);
1611 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1615 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1618 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1620 target_ulong uimm
= UIMM(ctx
->opcode
);
1622 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1626 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1628 /* popcntb : PowerPC 2.03 specification */
1629 GEN_HANDLER(popcntb
, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB
)
1631 #if defined(TARGET_PPC64)
1633 gen_helper_popcntb_64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1636 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1639 #if defined(TARGET_PPC64)
1640 /* extsw & extsw. */
1641 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
1643 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
)
1645 gen_helper_cntlzd(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1646 if (unlikely(Rc(ctx
->opcode
) != 0))
1647 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1651 /*** Integer rotate ***/
1652 /* rlwimi & rlwimi. */
1653 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1655 uint32_t mb
, me
, sh
;
1657 mb
= MB(ctx
->opcode
);
1658 me
= ME(ctx
->opcode
);
1659 sh
= SH(ctx
->opcode
);
1660 if (likely(sh
== 0 && mb
== 0 && me
== 31)) {
1661 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1665 TCGv t0
= tcg_temp_new();
1666 #if defined(TARGET_PPC64)
1667 TCGv_i32 t2
= tcg_temp_new_i32();
1668 tcg_gen_trunc_i64_i32(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
1669 tcg_gen_rotli_i32(t2
, t2
, sh
);
1670 tcg_gen_extu_i32_i64(t0
, t2
);
1671 tcg_temp_free_i32(t2
);
1673 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1675 #if defined(TARGET_PPC64)
1679 mask
= MASK(mb
, me
);
1680 t1
= tcg_temp_new();
1681 tcg_gen_andi_tl(t0
, t0
, mask
);
1682 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1683 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1687 if (unlikely(Rc(ctx
->opcode
) != 0))
1688 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1690 /* rlwinm & rlwinm. */
1691 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1693 uint32_t mb
, me
, sh
;
1695 sh
= SH(ctx
->opcode
);
1696 mb
= MB(ctx
->opcode
);
1697 me
= ME(ctx
->opcode
);
1699 if (likely(mb
== 0 && me
== (31 - sh
))) {
1700 if (likely(sh
== 0)) {
1701 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1703 TCGv t0
= tcg_temp_new();
1704 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1705 tcg_gen_shli_tl(t0
, t0
, sh
);
1706 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1709 } else if (likely(sh
!= 0 && me
== 31 && sh
== (32 - mb
))) {
1710 TCGv t0
= tcg_temp_new();
1711 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1712 tcg_gen_shri_tl(t0
, t0
, mb
);
1713 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1716 TCGv t0
= tcg_temp_new();
1717 #if defined(TARGET_PPC64)
1718 TCGv_i32 t1
= tcg_temp_new_i32();
1719 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1720 tcg_gen_rotli_i32(t1
, t1
, sh
);
1721 tcg_gen_extu_i32_i64(t0
, t1
);
1722 tcg_temp_free_i32(t1
);
1724 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1726 #if defined(TARGET_PPC64)
1730 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1733 if (unlikely(Rc(ctx
->opcode
) != 0))
1734 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1736 /* rlwnm & rlwnm. */
1737 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1741 #if defined(TARGET_PPC64)
1745 mb
= MB(ctx
->opcode
);
1746 me
= ME(ctx
->opcode
);
1747 t0
= tcg_temp_new();
1748 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1749 #if defined(TARGET_PPC64)
1750 t1
= tcg_temp_new_i32();
1751 t2
= tcg_temp_new_i32();
1752 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1753 tcg_gen_trunc_i64_i32(t2
, t0
);
1754 tcg_gen_rotl_i32(t1
, t1
, t2
);
1755 tcg_gen_extu_i32_i64(t0
, t1
);
1756 tcg_temp_free_i32(t1
);
1757 tcg_temp_free_i32(t2
);
1759 tcg_gen_rotl_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1761 if (unlikely(mb
!= 0 || me
!= 31)) {
1762 #if defined(TARGET_PPC64)
1766 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1768 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1771 if (unlikely(Rc(ctx
->opcode
) != 0))
1772 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1775 #if defined(TARGET_PPC64)
1776 #define GEN_PPC64_R2(name, opc1, opc2) \
1777 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1779 gen_##name(ctx, 0); \
1781 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1784 gen_##name(ctx, 1); \
1786 #define GEN_PPC64_R4(name, opc1, opc2) \
1787 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1789 gen_##name(ctx, 0, 0); \
1791 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
1794 gen_##name(ctx, 0, 1); \
1796 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1799 gen_##name(ctx, 1, 0); \
1801 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
1804 gen_##name(ctx, 1, 1); \
1807 static always_inline
void gen_rldinm (DisasContext
*ctx
, uint32_t mb
,
1808 uint32_t me
, uint32_t sh
)
1810 if (likely(sh
!= 0 && mb
== 0 && me
== (63 - sh
))) {
1811 tcg_gen_shli_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1812 } else if (likely(sh
!= 0 && me
== 63 && sh
== (64 - mb
))) {
1813 tcg_gen_shri_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], mb
);
1815 TCGv t0
= tcg_temp_new();
1816 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1817 if (likely(mb
== 0 && me
== 63)) {
1818 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1820 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1824 if (unlikely(Rc(ctx
->opcode
) != 0))
1825 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1827 /* rldicl - rldicl. */
1828 static always_inline
void gen_rldicl (DisasContext
*ctx
, int mbn
, int shn
)
1832 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1833 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1834 gen_rldinm(ctx
, mb
, 63, sh
);
1836 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
1837 /* rldicr - rldicr. */
1838 static always_inline
void gen_rldicr (DisasContext
*ctx
, int men
, int shn
)
1842 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1843 me
= MB(ctx
->opcode
) | (men
<< 5);
1844 gen_rldinm(ctx
, 0, me
, sh
);
1846 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
1847 /* rldic - rldic. */
1848 static always_inline
void gen_rldic (DisasContext
*ctx
, int mbn
, int shn
)
1852 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1853 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1854 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
1856 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
1858 static always_inline
void gen_rldnm (DisasContext
*ctx
, uint32_t mb
,
1863 mb
= MB(ctx
->opcode
);
1864 me
= ME(ctx
->opcode
);
1865 t0
= tcg_temp_new();
1866 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1867 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1868 if (unlikely(mb
!= 0 || me
!= 63)) {
1869 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1871 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1874 if (unlikely(Rc(ctx
->opcode
) != 0))
1875 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1878 /* rldcl - rldcl. */
1879 static always_inline
void gen_rldcl (DisasContext
*ctx
, int mbn
)
1883 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1884 gen_rldnm(ctx
, mb
, 63);
1886 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
1887 /* rldcr - rldcr. */
1888 static always_inline
void gen_rldcr (DisasContext
*ctx
, int men
)
1892 me
= MB(ctx
->opcode
) | (men
<< 5);
1893 gen_rldnm(ctx
, 0, me
);
1895 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
1896 /* rldimi - rldimi. */
1897 static always_inline
void gen_rldimi (DisasContext
*ctx
, int mbn
, int shn
)
1899 uint32_t sh
, mb
, me
;
1901 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1902 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1904 if (unlikely(sh
== 0 && mb
== 0)) {
1905 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1910 t0
= tcg_temp_new();
1911 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1912 t1
= tcg_temp_new();
1913 mask
= MASK(mb
, me
);
1914 tcg_gen_andi_tl(t0
, t0
, mask
);
1915 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1916 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1920 if (unlikely(Rc(ctx
->opcode
) != 0))
1921 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1923 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
1926 /*** Integer shift ***/
1928 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
)
1932 l1
= gen_new_label();
1933 l2
= gen_new_label();
1935 t0
= tcg_temp_local_new();
1936 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1937 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1938 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1941 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
1942 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
1945 if (unlikely(Rc(ctx
->opcode
) != 0))
1946 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1949 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
)
1951 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)],
1952 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1953 if (unlikely(Rc(ctx
->opcode
) != 0))
1954 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1956 /* srawi & srawi. */
1957 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
)
1959 int sh
= SH(ctx
->opcode
);
1963 l1
= gen_new_label();
1964 l2
= gen_new_label();
1965 t0
= tcg_temp_local_new();
1966 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1967 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
1968 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1969 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1970 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1973 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1975 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1976 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, sh
);
1979 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1980 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1982 if (unlikely(Rc(ctx
->opcode
) != 0))
1983 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1986 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
)
1990 l1
= gen_new_label();
1991 l2
= gen_new_label();
1993 t0
= tcg_temp_local_new();
1994 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1995 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1996 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1999 t1
= tcg_temp_new();
2000 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
2001 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
, t0
);
2005 if (unlikely(Rc(ctx
->opcode
) != 0))
2006 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2008 #if defined(TARGET_PPC64)
2010 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
)
2014 l1
= gen_new_label();
2015 l2
= gen_new_label();
2017 t0
= tcg_temp_local_new();
2018 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
2019 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
2020 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
2023 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
2026 if (unlikely(Rc(ctx
->opcode
) != 0))
2027 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2030 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
)
2032 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)],
2033 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2034 if (unlikely(Rc(ctx
->opcode
) != 0))
2035 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2037 /* sradi & sradi. */
2038 static always_inline
void gen_sradi (DisasContext
*ctx
, int n
)
2040 int sh
= SH(ctx
->opcode
) + (n
<< 5);
2044 l1
= gen_new_label();
2045 l2
= gen_new_label();
2046 t0
= tcg_temp_local_new();
2047 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
2048 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
2049 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2050 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
2053 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
2056 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
2058 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2059 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
2061 if (unlikely(Rc(ctx
->opcode
) != 0))
2062 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2064 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
)
2068 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
)
2073 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
)
2077 l1
= gen_new_label();
2078 l2
= gen_new_label();
2080 t0
= tcg_temp_local_new();
2081 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
2082 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
2083 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
2086 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
2089 if (unlikely(Rc(ctx
->opcode
) != 0))
2090 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2094 /*** Floating-Point arithmetic ***/
2095 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
2096 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type) \
2098 if (unlikely(!ctx->fpu_enabled)) { \
2099 gen_exception(ctx, POWERPC_EXCP_FPU); \
2102 /* NIP cannot be restored if the memory exception comes from an helper */ \
2103 gen_update_nip(ctx, ctx->nip - 4); \
2104 gen_reset_fpstatus(); \
2105 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2106 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2108 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2110 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
2111 Rc(ctx->opcode) != 0); \
2114 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
2115 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
2116 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2118 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2119 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2121 if (unlikely(!ctx->fpu_enabled)) { \
2122 gen_exception(ctx, POWERPC_EXCP_FPU); \
2125 /* NIP cannot be restored if the memory exception comes from an helper */ \
2126 gen_update_nip(ctx, ctx->nip - 4); \
2127 gen_reset_fpstatus(); \
2128 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2129 cpu_fpr[rB(ctx->opcode)]); \
2131 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2133 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2134 set_fprf, Rc(ctx->opcode) != 0); \
2136 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2137 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2138 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2140 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2141 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2143 if (unlikely(!ctx->fpu_enabled)) { \
2144 gen_exception(ctx, POWERPC_EXCP_FPU); \
2147 /* NIP cannot be restored if the memory exception comes from an helper */ \
2148 gen_update_nip(ctx, ctx->nip - 4); \
2149 gen_reset_fpstatus(); \
2150 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2151 cpu_fpr[rC(ctx->opcode)]); \
2153 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2155 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2156 set_fprf, Rc(ctx->opcode) != 0); \
2158 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
2159 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2160 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2162 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2163 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type) \
2165 if (unlikely(!ctx->fpu_enabled)) { \
2166 gen_exception(ctx, POWERPC_EXCP_FPU); \
2169 /* NIP cannot be restored if the memory exception comes from an helper */ \
2170 gen_update_nip(ctx, ctx->nip - 4); \
2171 gen_reset_fpstatus(); \
2172 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2173 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2174 set_fprf, Rc(ctx->opcode) != 0); \
2177 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2178 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type) \
2180 if (unlikely(!ctx->fpu_enabled)) { \
2181 gen_exception(ctx, POWERPC_EXCP_FPU); \
2184 /* NIP cannot be restored if the memory exception comes from an helper */ \
2185 gen_update_nip(ctx, ctx->nip - 4); \
2186 gen_reset_fpstatus(); \
2187 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2188 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2189 set_fprf, Rc(ctx->opcode) != 0); \
2193 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
);
2195 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
);
2197 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
);
2200 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
);
2203 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
);
2206 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
);
2209 GEN_HANDLER(frsqrtes
, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES
)
2211 if (unlikely(!ctx
->fpu_enabled
)) {
2212 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2215 /* NIP cannot be restored if the memory exception comes from an helper */
2216 gen_update_nip(ctx
, ctx
->nip
- 4);
2217 gen_reset_fpstatus();
2218 gen_helper_frsqrte(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2219 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2220 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2224 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
);
2226 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
);
2229 GEN_HANDLER(fsqrt
, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
)
2231 if (unlikely(!ctx
->fpu_enabled
)) {
2232 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2235 /* NIP cannot be restored if the memory exception comes from an helper */
2236 gen_update_nip(ctx
, ctx
->nip
- 4);
2237 gen_reset_fpstatus();
2238 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2239 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2242 GEN_HANDLER(fsqrts
, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
)
2244 if (unlikely(!ctx
->fpu_enabled
)) {
2245 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2248 /* NIP cannot be restored if the memory exception comes from an helper */
2249 gen_update_nip(ctx
, ctx
->nip
- 4);
2250 gen_reset_fpstatus();
2251 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2252 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2253 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2256 /*** Floating-Point multiply-and-add ***/
2257 /* fmadd - fmadds */
2258 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
);
2259 /* fmsub - fmsubs */
2260 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
);
2261 /* fnmadd - fnmadds */
2262 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
);
2263 /* fnmsub - fnmsubs */
2264 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
);
2266 /*** Floating-Point round & convert ***/
2268 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
);
2270 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
);
2272 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
);
2273 #if defined(TARGET_PPC64)
2275 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
);
2277 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
);
2279 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
);
2283 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
);
2285 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
);
2287 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
);
2289 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
);
2291 /*** Floating-Point compare ***/
2293 GEN_HANDLER(fcmpo
, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT
)
2296 if (unlikely(!ctx
->fpu_enabled
)) {
2297 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2300 /* NIP cannot be restored if the memory exception comes from an helper */
2301 gen_update_nip(ctx
, ctx
->nip
- 4);
2302 gen_reset_fpstatus();
2303 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2304 gen_helper_fcmpo(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2305 tcg_temp_free_i32(crf
);
2306 gen_helper_float_check_status();
2310 GEN_HANDLER(fcmpu
, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT
)
2313 if (unlikely(!ctx
->fpu_enabled
)) {
2314 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2317 /* NIP cannot be restored if the memory exception comes from an helper */
2318 gen_update_nip(ctx
, ctx
->nip
- 4);
2319 gen_reset_fpstatus();
2320 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2321 gen_helper_fcmpu(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2322 tcg_temp_free_i32(crf
);
2323 gen_helper_float_check_status();
2326 /*** Floating-point move ***/
2328 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2329 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
);
2332 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2333 GEN_HANDLER(fmr
, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT
)
2335 if (unlikely(!ctx
->fpu_enabled
)) {
2336 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2339 tcg_gen_mov_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2340 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2344 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2345 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
);
2347 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2348 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
);
2350 /*** Floating-Point status & ctrl register ***/
2352 GEN_HANDLER(mcrfs
, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT
)
2356 if (unlikely(!ctx
->fpu_enabled
)) {
2357 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2360 bfa
= 4 * (7 - crfS(ctx
->opcode
));
2361 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_fpscr
, bfa
);
2362 tcg_gen_andi_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], 0xf);
2363 tcg_gen_andi_i32(cpu_fpscr
, cpu_fpscr
, ~(0xF << bfa
));
2367 GEN_HANDLER(mffs
, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT
)
2369 if (unlikely(!ctx
->fpu_enabled
)) {
2370 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2373 gen_reset_fpstatus();
2374 tcg_gen_extu_i32_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpscr
);
2375 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2379 GEN_HANDLER(mtfsb0
, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT
)
2383 if (unlikely(!ctx
->fpu_enabled
)) {
2384 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2387 crb
= 31 - crbD(ctx
->opcode
);
2388 gen_reset_fpstatus();
2389 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
)) {
2391 /* NIP cannot be restored if the memory exception comes from an helper */
2392 gen_update_nip(ctx
, ctx
->nip
- 4);
2393 t0
= tcg_const_i32(crb
);
2394 gen_helper_fpscr_clrbit(t0
);
2395 tcg_temp_free_i32(t0
);
2397 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2398 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2403 GEN_HANDLER(mtfsb1
, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT
)
2407 if (unlikely(!ctx
->fpu_enabled
)) {
2408 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2411 crb
= 31 - crbD(ctx
->opcode
);
2412 gen_reset_fpstatus();
2413 /* XXX: we pretend we can only do IEEE floating-point computations */
2414 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
&& crb
!= FPSCR_NI
)) {
2416 /* NIP cannot be restored if the memory exception comes from an helper */
2417 gen_update_nip(ctx
, ctx
->nip
- 4);
2418 t0
= tcg_const_i32(crb
);
2419 gen_helper_fpscr_setbit(t0
);
2420 tcg_temp_free_i32(t0
);
2422 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2423 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2425 /* We can raise a differed exception */
2426 gen_helper_float_check_status();
2430 GEN_HANDLER(mtfsf
, 0x3F, 0x07, 0x16, 0x00010000, PPC_FLOAT
)
2433 int L
= ctx
->opcode
& 0x02000000;
2435 if (unlikely(!ctx
->fpu_enabled
)) {
2436 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2439 /* NIP cannot be restored if the memory exception comes from an helper */
2440 gen_update_nip(ctx
, ctx
->nip
- 4);
2441 gen_reset_fpstatus();
2443 t0
= tcg_const_i32(0xff);
2445 t0
= tcg_const_i32(FM(ctx
->opcode
));
2446 gen_helper_store_fpscr(cpu_fpr
[rB(ctx
->opcode
)], t0
);
2447 tcg_temp_free_i32(t0
);
2448 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2449 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2451 /* We can raise a differed exception */
2452 gen_helper_float_check_status();
2456 GEN_HANDLER(mtfsfi
, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT
)
2462 if (unlikely(!ctx
->fpu_enabled
)) {
2463 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2466 bf
= crbD(ctx
->opcode
) >> 2;
2468 /* NIP cannot be restored if the memory exception comes from an helper */
2469 gen_update_nip(ctx
, ctx
->nip
- 4);
2470 gen_reset_fpstatus();
2471 t0
= tcg_const_i64(FPIMM(ctx
->opcode
) << (4 * sh
));
2472 t1
= tcg_const_i32(1 << sh
);
2473 gen_helper_store_fpscr(t0
, t1
);
2474 tcg_temp_free_i64(t0
);
2475 tcg_temp_free_i32(t1
);
2476 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2477 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2479 /* We can raise a differed exception */
2480 gen_helper_float_check_status();
2483 /*** Addressing modes ***/
2484 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2485 static always_inline
void gen_addr_imm_index (DisasContext
*ctx
, TCGv EA
, target_long maskl
)
2487 target_long simm
= SIMM(ctx
->opcode
);
2490 if (rA(ctx
->opcode
) == 0) {
2491 #if defined(TARGET_PPC64)
2492 if (!ctx
->sf_mode
) {
2493 tcg_gen_movi_tl(EA
, (uint32_t)simm
);
2496 tcg_gen_movi_tl(EA
, simm
);
2497 } else if (likely(simm
!= 0)) {
2498 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
2499 #if defined(TARGET_PPC64)
2500 if (!ctx
->sf_mode
) {
2501 tcg_gen_ext32u_tl(EA
, EA
);
2505 #if defined(TARGET_PPC64)
2506 if (!ctx
->sf_mode
) {
2507 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2510 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2514 static always_inline
void gen_addr_reg_index (DisasContext
*ctx
, TCGv EA
)
2516 if (rA(ctx
->opcode
) == 0) {
2517 #if defined(TARGET_PPC64)
2518 if (!ctx
->sf_mode
) {
2519 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2522 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2524 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2525 #if defined(TARGET_PPC64)
2526 if (!ctx
->sf_mode
) {
2527 tcg_gen_ext32u_tl(EA
, EA
);
2533 static always_inline
void gen_addr_register (DisasContext
*ctx
, TCGv EA
)
2535 if (rA(ctx
->opcode
) == 0) {
2536 tcg_gen_movi_tl(EA
, 0);
2538 #if defined(TARGET_PPC64)
2539 if (!ctx
->sf_mode
) {
2540 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2543 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2547 static always_inline
void gen_addr_add (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, target_long val
)
2549 tcg_gen_addi_tl(ret
, arg1
, val
);
2550 #if defined(TARGET_PPC64)
2551 if (!ctx
->sf_mode
) {
2552 tcg_gen_ext32u_tl(ret
, ret
);
2557 static always_inline
void gen_check_align (DisasContext
*ctx
, TCGv EA
, int mask
)
2559 int l1
= gen_new_label();
2560 TCGv t0
= tcg_temp_new();
2562 /* NIP cannot be restored if the memory exception comes from an helper */
2563 gen_update_nip(ctx
, ctx
->nip
- 4);
2564 tcg_gen_andi_tl(t0
, EA
, mask
);
2565 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2566 t1
= tcg_const_i32(POWERPC_EXCP_ALIGN
);
2567 t2
= tcg_const_i32(0);
2568 gen_helper_raise_exception_err(t1
, t2
);
2569 tcg_temp_free_i32(t1
);
2570 tcg_temp_free_i32(t2
);
2575 /*** Integer load ***/
2576 static always_inline
void gen_qemu_ld8u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2578 tcg_gen_qemu_ld8u(arg1
, arg2
, ctx
->mem_idx
);
2581 static always_inline
void gen_qemu_ld8s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2583 tcg_gen_qemu_ld8s(arg1
, arg2
, ctx
->mem_idx
);
2586 static always_inline
void gen_qemu_ld16u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2588 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2589 if (unlikely(ctx
->le_mode
)) {
2590 tcg_gen_bswap16_tl(arg1
, arg1
);
2594 static always_inline
void gen_qemu_ld16s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2596 if (unlikely(ctx
->le_mode
)) {
2597 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2598 tcg_gen_bswap16_tl(arg1
, arg1
);
2599 tcg_gen_ext16s_tl(arg1
, arg1
);
2601 tcg_gen_qemu_ld16s(arg1
, arg2
, ctx
->mem_idx
);
2605 static always_inline
void gen_qemu_ld32u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2607 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2608 if (unlikely(ctx
->le_mode
)) {
2609 tcg_gen_bswap32_tl(arg1
, arg1
);
2613 #if defined(TARGET_PPC64)
2614 static always_inline
void gen_qemu_ld32s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2616 if (unlikely(ctx
->le_mode
)) {
2617 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2618 tcg_gen_bswap32_tl(arg1
, arg1
);
2619 tcg_gen_ext32s_tl(arg1
, arg1
);
2621 tcg_gen_qemu_ld32s(arg1
, arg2
, ctx
->mem_idx
);
2625 static always_inline
void gen_qemu_ld64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2627 tcg_gen_qemu_ld64(arg1
, arg2
, ctx
->mem_idx
);
2628 if (unlikely(ctx
->le_mode
)) {
2629 tcg_gen_bswap64_i64(arg1
, arg1
);
2633 static always_inline
void gen_qemu_st8(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2635 tcg_gen_qemu_st8(arg1
, arg2
, ctx
->mem_idx
);
2638 static always_inline
void gen_qemu_st16(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2640 if (unlikely(ctx
->le_mode
)) {
2641 TCGv t0
= tcg_temp_new();
2642 tcg_gen_ext16u_tl(t0
, arg1
);
2643 tcg_gen_bswap16_tl(t0
, t0
);
2644 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2647 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2651 static always_inline
void gen_qemu_st32(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2653 if (unlikely(ctx
->le_mode
)) {
2654 TCGv t0
= tcg_temp_new();
2655 tcg_gen_ext32u_tl(t0
, arg1
);
2656 tcg_gen_bswap32_tl(t0
, t0
);
2657 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2660 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2664 static always_inline
void gen_qemu_st64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2666 if (unlikely(ctx
->le_mode
)) {
2667 TCGv_i64 t0
= tcg_temp_new_i64();
2668 tcg_gen_bswap64_i64(t0
, arg1
);
2669 tcg_gen_qemu_st64(t0
, arg2
, ctx
->mem_idx
);
2670 tcg_temp_free_i64(t0
);
2672 tcg_gen_qemu_st64(arg1
, arg2
, ctx
->mem_idx
);
2675 #define GEN_LD(name, ldop, opc, type) \
2676 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2679 gen_set_access_type(ctx, ACCESS_INT); \
2680 EA = tcg_temp_new(); \
2681 gen_addr_imm_index(ctx, EA, 0); \
2682 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2683 tcg_temp_free(EA); \
2686 #define GEN_LDU(name, ldop, opc, type) \
2687 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2690 if (unlikely(rA(ctx->opcode) == 0 || \
2691 rA(ctx->opcode) == rD(ctx->opcode))) { \
2692 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2695 gen_set_access_type(ctx, ACCESS_INT); \
2696 EA = tcg_temp_new(); \
2697 if (type == PPC_64B) \
2698 gen_addr_imm_index(ctx, EA, 0x03); \
2700 gen_addr_imm_index(ctx, EA, 0); \
2701 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2702 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2703 tcg_temp_free(EA); \
2706 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2707 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2710 if (unlikely(rA(ctx->opcode) == 0 || \
2711 rA(ctx->opcode) == rD(ctx->opcode))) { \
2712 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2715 gen_set_access_type(ctx, ACCESS_INT); \
2716 EA = tcg_temp_new(); \
2717 gen_addr_reg_index(ctx, EA); \
2718 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2719 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2720 tcg_temp_free(EA); \
2723 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2724 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2727 gen_set_access_type(ctx, ACCESS_INT); \
2728 EA = tcg_temp_new(); \
2729 gen_addr_reg_index(ctx, EA); \
2730 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2731 tcg_temp_free(EA); \
2734 #define GEN_LDS(name, ldop, op, type) \
2735 GEN_LD(name, ldop, op | 0x20, type); \
2736 GEN_LDU(name, ldop, op | 0x21, type); \
2737 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2738 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2740 /* lbz lbzu lbzux lbzx */
2741 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
);
2742 /* lha lhau lhaux lhax */
2743 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
);
2744 /* lhz lhzu lhzux lhzx */
2745 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
);
2746 /* lwz lwzu lwzux lwzx */
2747 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
);
2748 #if defined(TARGET_PPC64)
2750 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
);
2752 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
);
2754 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
);
2756 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
);
2757 GEN_HANDLER(ld
, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B
)
2760 if (Rc(ctx
->opcode
)) {
2761 if (unlikely(rA(ctx
->opcode
) == 0 ||
2762 rA(ctx
->opcode
) == rD(ctx
->opcode
))) {
2763 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2767 gen_set_access_type(ctx
, ACCESS_INT
);
2768 EA
= tcg_temp_new();
2769 gen_addr_imm_index(ctx
, EA
, 0x03);
2770 if (ctx
->opcode
& 0x02) {
2771 /* lwa (lwau is undefined) */
2772 gen_qemu_ld32s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2775 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2777 if (Rc(ctx
->opcode
))
2778 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2782 GEN_HANDLER(lq
, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX
)
2784 #if defined(CONFIG_USER_ONLY)
2785 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2790 /* Restore CPU state */
2791 if (unlikely(ctx
->mem_idx
== 0)) {
2792 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2795 ra
= rA(ctx
->opcode
);
2796 rd
= rD(ctx
->opcode
);
2797 if (unlikely((rd
& 1) || rd
== ra
)) {
2798 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2801 if (unlikely(ctx
->le_mode
)) {
2802 /* Little-endian mode is not handled */
2803 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2806 gen_set_access_type(ctx
, ACCESS_INT
);
2807 EA
= tcg_temp_new();
2808 gen_addr_imm_index(ctx
, EA
, 0x0F);
2809 gen_qemu_ld64(ctx
, cpu_gpr
[rd
], EA
);
2810 gen_addr_add(ctx
, EA
, EA
, 8);
2811 gen_qemu_ld64(ctx
, cpu_gpr
[rd
+1], EA
);
2817 /*** Integer store ***/
2818 #define GEN_ST(name, stop, opc, type) \
2819 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2822 gen_set_access_type(ctx, ACCESS_INT); \
2823 EA = tcg_temp_new(); \
2824 gen_addr_imm_index(ctx, EA, 0); \
2825 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2826 tcg_temp_free(EA); \
2829 #define GEN_STU(name, stop, opc, type) \
2830 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2833 if (unlikely(rA(ctx->opcode) == 0)) { \
2834 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2837 gen_set_access_type(ctx, ACCESS_INT); \
2838 EA = tcg_temp_new(); \
2839 if (type == PPC_64B) \
2840 gen_addr_imm_index(ctx, EA, 0x03); \
2842 gen_addr_imm_index(ctx, EA, 0); \
2843 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2844 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2845 tcg_temp_free(EA); \
2848 #define GEN_STUX(name, stop, opc2, opc3, type) \
2849 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2852 if (unlikely(rA(ctx->opcode) == 0)) { \
2853 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2856 gen_set_access_type(ctx, ACCESS_INT); \
2857 EA = tcg_temp_new(); \
2858 gen_addr_reg_index(ctx, EA); \
2859 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2860 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2861 tcg_temp_free(EA); \
2864 #define GEN_STX(name, stop, opc2, opc3, type) \
2865 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2868 gen_set_access_type(ctx, ACCESS_INT); \
2869 EA = tcg_temp_new(); \
2870 gen_addr_reg_index(ctx, EA); \
2871 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2872 tcg_temp_free(EA); \
2875 #define GEN_STS(name, stop, op, type) \
2876 GEN_ST(name, stop, op | 0x20, type); \
2877 GEN_STU(name, stop, op | 0x21, type); \
2878 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2879 GEN_STX(name, stop, 0x17, op | 0x00, type)
2881 /* stb stbu stbux stbx */
2882 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
);
2883 /* sth sthu sthux sthx */
2884 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
);
2885 /* stw stwu stwux stwx */
2886 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
);
2887 #if defined(TARGET_PPC64)
2888 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
);
2889 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
);
2890 GEN_HANDLER(std
, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B
)
2895 rs
= rS(ctx
->opcode
);
2896 if ((ctx
->opcode
& 0x3) == 0x2) {
2897 #if defined(CONFIG_USER_ONLY)
2898 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2901 if (unlikely(ctx
->mem_idx
== 0)) {
2902 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2905 if (unlikely(rs
& 1)) {
2906 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2909 if (unlikely(ctx
->le_mode
)) {
2910 /* Little-endian mode is not handled */
2911 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2914 gen_set_access_type(ctx
, ACCESS_INT
);
2915 EA
= tcg_temp_new();
2916 gen_addr_imm_index(ctx
, EA
, 0x03);
2917 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2918 gen_addr_add(ctx
, EA
, EA
, 8);
2919 gen_qemu_st64(ctx
, cpu_gpr
[rs
+1], EA
);
2924 if (Rc(ctx
->opcode
)) {
2925 if (unlikely(rA(ctx
->opcode
) == 0)) {
2926 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2930 gen_set_access_type(ctx
, ACCESS_INT
);
2931 EA
= tcg_temp_new();
2932 gen_addr_imm_index(ctx
, EA
, 0x03);
2933 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2934 if (Rc(ctx
->opcode
))
2935 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2940 /*** Integer load and store with byte reverse ***/
2942 static void always_inline
gen_qemu_ld16ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2944 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2945 if (likely(!ctx
->le_mode
)) {
2946 tcg_gen_bswap16_tl(arg1
, arg1
);
2949 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
2952 static void always_inline
gen_qemu_ld32ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2954 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2955 if (likely(!ctx
->le_mode
)) {
2956 tcg_gen_bswap32_tl(arg1
, arg1
);
2959 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
2962 static void always_inline
gen_qemu_st16r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2964 if (likely(!ctx
->le_mode
)) {
2965 TCGv t0
= tcg_temp_new();
2966 tcg_gen_ext16u_tl(t0
, arg1
);
2967 tcg_gen_bswap16_tl(t0
, t0
);
2968 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2971 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2974 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
2977 static void always_inline
gen_qemu_st32r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2979 if (likely(!ctx
->le_mode
)) {
2980 TCGv t0
= tcg_temp_new();
2981 tcg_gen_ext32u_tl(t0
, arg1
);
2982 tcg_gen_bswap32_tl(t0
, t0
);
2983 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2986 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2989 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
2991 /*** Integer load and store multiple ***/
2993 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
2997 gen_set_access_type(ctx
, ACCESS_INT
);
2998 /* NIP cannot be restored if the memory exception comes from an helper */
2999 gen_update_nip(ctx
, ctx
->nip
- 4);
3000 t0
= tcg_temp_new();
3001 t1
= tcg_const_i32(rD(ctx
->opcode
));
3002 gen_addr_imm_index(ctx
, t0
, 0);
3003 gen_helper_lmw(t0
, t1
);
3005 tcg_temp_free_i32(t1
);
3009 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
3013 gen_set_access_type(ctx
, ACCESS_INT
);
3014 /* NIP cannot be restored if the memory exception comes from an helper */
3015 gen_update_nip(ctx
, ctx
->nip
- 4);
3016 t0
= tcg_temp_new();
3017 t1
= tcg_const_i32(rS(ctx
->opcode
));
3018 gen_addr_imm_index(ctx
, t0
, 0);
3019 gen_helper_stmw(t0
, t1
);
3021 tcg_temp_free_i32(t1
);
3024 /*** Integer load and store strings ***/
3026 /* PowerPC32 specification says we must generate an exception if
3027 * rA is in the range of registers to be loaded.
3028 * In an other hand, IBM says this is valid, but rA won't be loaded.
3029 * For now, I'll follow the spec...
3031 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
)
3035 int nb
= NB(ctx
->opcode
);
3036 int start
= rD(ctx
->opcode
);
3037 int ra
= rA(ctx
->opcode
);
3043 if (unlikely(((start
+ nr
) > 32 &&
3044 start
<= ra
&& (start
+ nr
- 32) > ra
) ||
3045 ((start
+ nr
) <= 32 && start
<= ra
&& (start
+ nr
) > ra
))) {
3046 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3049 gen_set_access_type(ctx
, ACCESS_INT
);
3050 /* NIP cannot be restored if the memory exception comes from an helper */
3051 gen_update_nip(ctx
, ctx
->nip
- 4);
3052 t0
= tcg_temp_new();
3053 gen_addr_register(ctx
, t0
);
3054 t1
= tcg_const_i32(nb
);
3055 t2
= tcg_const_i32(start
);
3056 gen_helper_lsw(t0
, t1
, t2
);
3058 tcg_temp_free_i32(t1
);
3059 tcg_temp_free_i32(t2
);
3063 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
)
3066 TCGv_i32 t1
, t2
, t3
;
3067 gen_set_access_type(ctx
, ACCESS_INT
);
3068 /* NIP cannot be restored if the memory exception comes from an helper */
3069 gen_update_nip(ctx
, ctx
->nip
- 4);
3070 t0
= tcg_temp_new();
3071 gen_addr_reg_index(ctx
, t0
);
3072 t1
= tcg_const_i32(rD(ctx
->opcode
));
3073 t2
= tcg_const_i32(rA(ctx
->opcode
));
3074 t3
= tcg_const_i32(rB(ctx
->opcode
));
3075 gen_helper_lswx(t0
, t1
, t2
, t3
);
3077 tcg_temp_free_i32(t1
);
3078 tcg_temp_free_i32(t2
);
3079 tcg_temp_free_i32(t3
);
3083 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
)
3087 int nb
= NB(ctx
->opcode
);
3088 gen_set_access_type(ctx
, ACCESS_INT
);
3089 /* NIP cannot be restored if the memory exception comes from an helper */
3090 gen_update_nip(ctx
, ctx
->nip
- 4);
3091 t0
= tcg_temp_new();
3092 gen_addr_register(ctx
, t0
);
3095 t1
= tcg_const_i32(nb
);
3096 t2
= tcg_const_i32(rS(ctx
->opcode
));
3097 gen_helper_stsw(t0
, t1
, t2
);
3099 tcg_temp_free_i32(t1
);
3100 tcg_temp_free_i32(t2
);
3104 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
)
3108 gen_set_access_type(ctx
, ACCESS_INT
);
3109 /* NIP cannot be restored if the memory exception comes from an helper */
3110 gen_update_nip(ctx
, ctx
->nip
- 4);
3111 t0
= tcg_temp_new();
3112 gen_addr_reg_index(ctx
, t0
);
3113 t1
= tcg_temp_new_i32();
3114 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
3115 tcg_gen_andi_i32(t1
, t1
, 0x7F);
3116 t2
= tcg_const_i32(rS(ctx
->opcode
));
3117 gen_helper_stsw(t0
, t1
, t2
);
3119 tcg_temp_free_i32(t1
);
3120 tcg_temp_free_i32(t2
);
3123 /*** Memory synchronisation ***/
3125 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO
)
3130 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
)
3132 gen_stop_exception(ctx
);
3136 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES
)
3139 gen_set_access_type(ctx
, ACCESS_RES
);
3140 t0
= tcg_temp_local_new();
3141 gen_addr_reg_index(ctx
, t0
);
3142 gen_check_align(ctx
, t0
, 0x03);
3143 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3144 tcg_gen_mov_tl(cpu_reserve
, t0
);
3149 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
)
3153 gen_set_access_type(ctx
, ACCESS_RES
);
3154 t0
= tcg_temp_local_new();
3155 gen_addr_reg_index(ctx
, t0
);
3156 gen_check_align(ctx
, t0
, 0x03);
3157 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3158 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3159 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3160 l1
= gen_new_label();
3161 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3162 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3163 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3165 tcg_gen_movi_tl(cpu_reserve
, -1);
3169 #if defined(TARGET_PPC64)
3171 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B
)
3174 gen_set_access_type(ctx
, ACCESS_RES
);
3175 t0
= tcg_temp_local_new();
3176 gen_addr_reg_index(ctx
, t0
);
3177 gen_check_align(ctx
, t0
, 0x07);
3178 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3179 tcg_gen_mov_tl(cpu_reserve
, t0
);
3184 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
)
3188 gen_set_access_type(ctx
, ACCESS_RES
);
3189 t0
= tcg_temp_local_new();
3190 gen_addr_reg_index(ctx
, t0
);
3191 gen_check_align(ctx
, t0
, 0x07);
3192 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3193 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3194 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3195 l1
= gen_new_label();
3196 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3197 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3198 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3200 tcg_gen_movi_tl(cpu_reserve
, -1);
3203 #endif /* defined(TARGET_PPC64) */
3206 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
)
3211 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT
)
3213 TCGv_i32 t0
= tcg_temp_new_i32();
3214 tcg_gen_st_i32(t0
, cpu_env
, offsetof(CPUState
, halted
));
3215 tcg_temp_free_i32(t0
);
3216 /* Stop translation, as the CPU is supposed to sleep from now */
3217 gen_exception_err(ctx
, EXCP_HLT
, 1);
3220 /*** Floating-point load ***/
3221 #define GEN_LDF(name, ldop, opc, type) \
3222 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3225 if (unlikely(!ctx->fpu_enabled)) { \
3226 gen_exception(ctx, POWERPC_EXCP_FPU); \
3229 gen_set_access_type(ctx, ACCESS_FLOAT); \
3230 EA = tcg_temp_new(); \
3231 gen_addr_imm_index(ctx, EA, 0); \
3232 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3233 tcg_temp_free(EA); \
3236 #define GEN_LDUF(name, ldop, opc, type) \
3237 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3240 if (unlikely(!ctx->fpu_enabled)) { \
3241 gen_exception(ctx, POWERPC_EXCP_FPU); \
3244 if (unlikely(rA(ctx->opcode) == 0)) { \
3245 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3248 gen_set_access_type(ctx, ACCESS_FLOAT); \
3249 EA = tcg_temp_new(); \
3250 gen_addr_imm_index(ctx, EA, 0); \
3251 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3252 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3253 tcg_temp_free(EA); \
3256 #define GEN_LDUXF(name, ldop, opc, type) \
3257 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3260 if (unlikely(!ctx->fpu_enabled)) { \
3261 gen_exception(ctx, POWERPC_EXCP_FPU); \
3264 if (unlikely(rA(ctx->opcode) == 0)) { \
3265 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3268 gen_set_access_type(ctx, ACCESS_FLOAT); \
3269 EA = tcg_temp_new(); \
3270 gen_addr_reg_index(ctx, EA); \
3271 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3272 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3273 tcg_temp_free(EA); \
3276 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3277 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3280 if (unlikely(!ctx->fpu_enabled)) { \
3281 gen_exception(ctx, POWERPC_EXCP_FPU); \
3284 gen_set_access_type(ctx, ACCESS_FLOAT); \
3285 EA = tcg_temp_new(); \
3286 gen_addr_reg_index(ctx, EA); \
3287 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3288 tcg_temp_free(EA); \
3291 #define GEN_LDFS(name, ldop, op, type) \
3292 GEN_LDF(name, ldop, op | 0x20, type); \
3293 GEN_LDUF(name, ldop, op | 0x21, type); \
3294 GEN_LDUXF(name, ldop, op | 0x01, type); \
3295 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3297 static always_inline
void gen_qemu_ld32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3299 TCGv t0
= tcg_temp_new();
3300 TCGv_i32 t1
= tcg_temp_new_i32();
3301 gen_qemu_ld32u(ctx
, t0
, arg2
);
3302 tcg_gen_trunc_tl_i32(t1
, t0
);
3304 gen_helper_float32_to_float64(arg1
, t1
);
3305 tcg_temp_free_i32(t1
);
3308 /* lfd lfdu lfdux lfdx */
3309 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
);
3310 /* lfs lfsu lfsux lfsx */
3311 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
);
3313 /*** Floating-point store ***/
3314 #define GEN_STF(name, stop, opc, type) \
3315 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3318 if (unlikely(!ctx->fpu_enabled)) { \
3319 gen_exception(ctx, POWERPC_EXCP_FPU); \
3322 gen_set_access_type(ctx, ACCESS_FLOAT); \
3323 EA = tcg_temp_new(); \
3324 gen_addr_imm_index(ctx, EA, 0); \
3325 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3326 tcg_temp_free(EA); \
3329 #define GEN_STUF(name, stop, opc, type) \
3330 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3333 if (unlikely(!ctx->fpu_enabled)) { \
3334 gen_exception(ctx, POWERPC_EXCP_FPU); \
3337 if (unlikely(rA(ctx->opcode) == 0)) { \
3338 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3341 gen_set_access_type(ctx, ACCESS_FLOAT); \
3342 EA = tcg_temp_new(); \
3343 gen_addr_imm_index(ctx, EA, 0); \
3344 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3345 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3346 tcg_temp_free(EA); \
3349 #define GEN_STUXF(name, stop, opc, type) \
3350 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3353 if (unlikely(!ctx->fpu_enabled)) { \
3354 gen_exception(ctx, POWERPC_EXCP_FPU); \
3357 if (unlikely(rA(ctx->opcode) == 0)) { \
3358 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3361 gen_set_access_type(ctx, ACCESS_FLOAT); \
3362 EA = tcg_temp_new(); \
3363 gen_addr_reg_index(ctx, EA); \
3364 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3365 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3366 tcg_temp_free(EA); \
3369 #define GEN_STXF(name, stop, opc2, opc3, type) \
3370 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3373 if (unlikely(!ctx->fpu_enabled)) { \
3374 gen_exception(ctx, POWERPC_EXCP_FPU); \
3377 gen_set_access_type(ctx, ACCESS_FLOAT); \
3378 EA = tcg_temp_new(); \
3379 gen_addr_reg_index(ctx, EA); \
3380 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3381 tcg_temp_free(EA); \
3384 #define GEN_STFS(name, stop, op, type) \
3385 GEN_STF(name, stop, op | 0x20, type); \
3386 GEN_STUF(name, stop, op | 0x21, type); \
3387 GEN_STUXF(name, stop, op | 0x01, type); \
3388 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3390 static always_inline
void gen_qemu_st32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3392 TCGv_i32 t0
= tcg_temp_new_i32();
3393 TCGv t1
= tcg_temp_new();
3394 gen_helper_float64_to_float32(t0
, arg1
);
3395 tcg_gen_extu_i32_tl(t1
, t0
);
3396 tcg_temp_free_i32(t0
);
3397 gen_qemu_st32(ctx
, t1
, arg2
);
3401 /* stfd stfdu stfdux stfdx */
3402 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
);
3403 /* stfs stfsu stfsux stfsx */
3404 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
);
3407 static always_inline
void gen_qemu_st32fiw(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3409 TCGv t0
= tcg_temp_new();
3410 tcg_gen_trunc_i64_tl(t0
, arg1
),
3411 gen_qemu_st32(ctx
, t0
, arg2
);
3415 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
);
3418 static always_inline
void gen_goto_tb (DisasContext
*ctx
, int n
,
3421 TranslationBlock
*tb
;
3423 #if defined(TARGET_PPC64)
3425 dest
= (uint32_t) dest
;
3427 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) &&
3428 likely(!ctx
->singlestep_enabled
)) {
3430 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3431 tcg_gen_exit_tb((long)tb
+ n
);
3433 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3434 if (unlikely(ctx
->singlestep_enabled
)) {
3435 if ((ctx
->singlestep_enabled
&
3436 (CPU_BRANCH_STEP
| CPU_SINGLE_STEP
)) &&
3437 ctx
->exception
== POWERPC_EXCP_BRANCH
) {
3438 target_ulong tmp
= ctx
->nip
;
3440 gen_exception(ctx
, POWERPC_EXCP_TRACE
);
3443 if (ctx
->singlestep_enabled
& GDBSTUB_SINGLE_STEP
) {
3444 gen_debug_exception(ctx
);
3451 static always_inline
void gen_setlr (DisasContext
*ctx
, target_ulong nip
)
3453 #if defined(TARGET_PPC64)
3454 if (ctx
->sf_mode
== 0)
3455 tcg_gen_movi_tl(cpu_lr
, (uint32_t)nip
);
3458 tcg_gen_movi_tl(cpu_lr
, nip
);
3462 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3464 target_ulong li
, target
;
3466 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3467 /* sign extend LI */
3468 #if defined(TARGET_PPC64)
3470 li
= ((int64_t)LI(ctx
->opcode
) << 38) >> 38;
3473 li
= ((int32_t)LI(ctx
->opcode
) << 6) >> 6;
3474 if (likely(AA(ctx
->opcode
) == 0))
3475 target
= ctx
->nip
+ li
- 4;
3478 if (LK(ctx
->opcode
))
3479 gen_setlr(ctx
, ctx
->nip
);
3480 gen_goto_tb(ctx
, 0, target
);
3487 static always_inline
void gen_bcond (DisasContext
*ctx
, int type
)
3489 uint32_t bo
= BO(ctx
->opcode
);
3490 int l1
= gen_new_label();
3493 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3494 if (type
== BCOND_LR
|| type
== BCOND_CTR
) {
3495 target
= tcg_temp_local_new();
3496 if (type
== BCOND_CTR
)
3497 tcg_gen_mov_tl(target
, cpu_ctr
);
3499 tcg_gen_mov_tl(target
, cpu_lr
);
3501 if (LK(ctx
->opcode
))
3502 gen_setlr(ctx
, ctx
->nip
);
3503 l1
= gen_new_label();
3504 if ((bo
& 0x4) == 0) {
3505 /* Decrement and test CTR */
3506 TCGv temp
= tcg_temp_new();
3507 if (unlikely(type
== BCOND_CTR
)) {
3508 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3511 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3512 #if defined(TARGET_PPC64)
3514 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3517 tcg_gen_mov_tl(temp
, cpu_ctr
);
3519 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3521 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3523 tcg_temp_free(temp
);
3525 if ((bo
& 0x10) == 0) {
3527 uint32_t bi
= BI(ctx
->opcode
);
3528 uint32_t mask
= 1 << (3 - (bi
& 0x03));
3529 TCGv_i32 temp
= tcg_temp_new_i32();
3532 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3533 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
3535 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3536 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
3538 tcg_temp_free_i32(temp
);
3540 if (type
== BCOND_IM
) {
3541 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
3542 if (likely(AA(ctx
->opcode
) == 0)) {
3543 gen_goto_tb(ctx
, 0, ctx
->nip
+ li
- 4);
3545 gen_goto_tb(ctx
, 0, li
);
3548 gen_goto_tb(ctx
, 1, ctx
->nip
);
3550 #if defined(TARGET_PPC64)
3551 if (!(ctx
->sf_mode
))
3552 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
3555 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
3558 #if defined(TARGET_PPC64)
3559 if (!(ctx
->sf_mode
))
3560 tcg_gen_movi_tl(cpu_nip
, (uint32_t)ctx
->nip
);
3563 tcg_gen_movi_tl(cpu_nip
, ctx
->nip
);
3568 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3570 gen_bcond(ctx
, BCOND_IM
);
3573 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
)
3575 gen_bcond(ctx
, BCOND_CTR
);
3578 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
)
3580 gen_bcond(ctx
, BCOND_LR
);
3583 /*** Condition register logical ***/
3584 #define GEN_CRLOGIC(name, tcg_op, opc) \
3585 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER) \
3590 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3591 t0 = tcg_temp_new_i32(); \
3593 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3595 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3597 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3598 t1 = tcg_temp_new_i32(); \
3599 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3601 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3603 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3605 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3606 tcg_op(t0, t0, t1); \
3607 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3608 tcg_gen_andi_i32(t0, t0, bitmask); \
3609 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3610 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3611 tcg_temp_free_i32(t0); \
3612 tcg_temp_free_i32(t1); \
3616 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
3618 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
3620 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
3622 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
3624 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
3626 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
3628 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
3630 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
3632 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
)
3634 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
3637 /*** System linkage ***/
3638 /* rfi (mem_idx only) */
3639 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
)
3641 #if defined(CONFIG_USER_ONLY)
3642 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3644 /* Restore CPU state */
3645 if (unlikely(!ctx
->mem_idx
)) {
3646 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3650 gen_sync_exception(ctx
);
3654 #if defined(TARGET_PPC64)
3655 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
)
3657 #if defined(CONFIG_USER_ONLY)
3658 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3660 /* Restore CPU state */
3661 if (unlikely(!ctx
->mem_idx
)) {
3662 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3666 gen_sync_exception(ctx
);
3670 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
)
3672 #if defined(CONFIG_USER_ONLY)
3673 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3675 /* Restore CPU state */
3676 if (unlikely(ctx
->mem_idx
<= 1)) {
3677 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3681 gen_sync_exception(ctx
);
3687 #if defined(CONFIG_USER_ONLY)
3688 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3690 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3692 GEN_HANDLER(sc
, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW
)
3696 lev
= (ctx
->opcode
>> 5) & 0x7F;
3697 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
3702 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
)
3704 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3705 /* Update the nip since this might generate a trap exception */
3706 gen_update_nip(ctx
, ctx
->nip
);
3707 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3708 tcg_temp_free_i32(t0
);
3712 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3714 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3715 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3716 /* Update the nip since this might generate a trap exception */
3717 gen_update_nip(ctx
, ctx
->nip
);
3718 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3720 tcg_temp_free_i32(t1
);
3723 #if defined(TARGET_PPC64)
3725 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
)
3727 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3728 /* Update the nip since this might generate a trap exception */
3729 gen_update_nip(ctx
, ctx
->nip
);
3730 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3731 tcg_temp_free_i32(t0
);
3735 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
)
3737 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3738 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3739 /* Update the nip since this might generate a trap exception */
3740 gen_update_nip(ctx
, ctx
->nip
);
3741 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3743 tcg_temp_free_i32(t1
);
3747 /*** Processor control ***/
3749 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
)
3751 tcg_gen_trunc_tl_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_xer
);
3752 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], XER_CA
);
3753 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_SO
| 1 << XER_OV
| 1 << XER_CA
));
3757 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
)
3761 if (likely(ctx
->opcode
& 0x00100000)) {
3762 crm
= CRM(ctx
->opcode
);
3763 if (likely(crm
&& ((crm
& (crm
- 1)) == 0))) {
3765 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
3766 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)],
3767 cpu_gpr
[rD(ctx
->opcode
)], crn
* 4);
3770 TCGv_i32 t0
= tcg_temp_new_i32();
3771 tcg_gen_mov_i32(t0
, cpu_crf
[0]);
3772 tcg_gen_shli_i32(t0
, t0
, 4);
3773 tcg_gen_or_i32(t0
, t0
, cpu_crf
[1]);
3774 tcg_gen_shli_i32(t0
, t0
, 4);
3775 tcg_gen_or_i32(t0
, t0
, cpu_crf
[2]);
3776 tcg_gen_shli_i32(t0
, t0
, 4);
3777 tcg_gen_or_i32(t0
, t0
, cpu_crf
[3]);
3778 tcg_gen_shli_i32(t0
, t0
, 4);
3779 tcg_gen_or_i32(t0
, t0
, cpu_crf
[4]);
3780 tcg_gen_shli_i32(t0
, t0
, 4);
3781 tcg_gen_or_i32(t0
, t0
, cpu_crf
[5]);
3782 tcg_gen_shli_i32(t0
, t0
, 4);
3783 tcg_gen_or_i32(t0
, t0
, cpu_crf
[6]);
3784 tcg_gen_shli_i32(t0
, t0
, 4);
3785 tcg_gen_or_i32(t0
, t0
, cpu_crf
[7]);
3786 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
3787 tcg_temp_free_i32(t0
);
3792 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
)
3794 #if defined(CONFIG_USER_ONLY)
3795 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3797 if (unlikely(!ctx
->mem_idx
)) {
3798 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3801 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
3806 #define SPR_NOACCESS ((void *)(-1UL))
3808 static void spr_noaccess (void *opaque
, int sprn
)
3810 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
3811 printf("ERROR: try to access SPR %d !\n", sprn
);
3813 #define SPR_NOACCESS (&spr_noaccess)
3817 static always_inline
void gen_op_mfspr (DisasContext
*ctx
)
3819 void (*read_cb
)(void *opaque
, int gprn
, int sprn
);
3820 uint32_t sprn
= SPR(ctx
->opcode
);
3822 #if !defined(CONFIG_USER_ONLY)
3823 if (ctx
->mem_idx
== 2)
3824 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
3825 else if (ctx
->mem_idx
)
3826 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
3829 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
3830 if (likely(read_cb
!= NULL
)) {
3831 if (likely(read_cb
!= SPR_NOACCESS
)) {
3832 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
3834 /* Privilege exception */
3835 /* This is a hack to avoid warnings when running Linux:
3836 * this OS breaks the PowerPC virtualisation model,
3837 * allowing userland application to read the PVR
3839 if (sprn
!= SPR_PVR
) {
3840 qemu_log("Trying to read privileged spr %d %03x at "
3841 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3842 printf("Trying to read privileged spr %d %03x at " ADDRX
"\n",
3843 sprn
, sprn
, ctx
->nip
);
3845 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3849 qemu_log("Trying to read invalid spr %d %03x at "
3850 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3851 printf("Trying to read invalid spr %d %03x at " ADDRX
"\n",
3852 sprn
, sprn
, ctx
->nip
);
3853 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
3857 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
)
3863 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
)
3869 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
)
3873 crm
= CRM(ctx
->opcode
);
3874 if (likely((ctx
->opcode
& 0x00100000))) {
3875 if (crm
&& ((crm
& (crm
- 1)) == 0)) {
3876 TCGv_i32 temp
= tcg_temp_new_i32();
3878 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3879 tcg_gen_shri_i32(temp
, temp
, crn
* 4);
3880 tcg_gen_andi_i32(cpu_crf
[7 - crn
], temp
, 0xf);
3881 tcg_temp_free_i32(temp
);
3884 TCGv_i32 temp
= tcg_temp_new_i32();
3885 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3886 for (crn
= 0 ; crn
< 8 ; crn
++) {
3887 if (crm
& (1 << crn
)) {
3888 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
3889 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
3892 tcg_temp_free_i32(temp
);
3897 #if defined(TARGET_PPC64)
3898 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
)
3900 #if defined(CONFIG_USER_ONLY)
3901 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3903 if (unlikely(!ctx
->mem_idx
)) {
3904 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3907 if (ctx
->opcode
& 0x00010000) {
3908 /* Special form that does not need any synchronisation */
3909 TCGv t0
= tcg_temp_new();
3910 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3911 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3912 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3915 /* XXX: we need to update nip before the store
3916 * if we enter power saving mode, we will exit the loop
3917 * directly from ppc_store_msr
3919 gen_update_nip(ctx
, ctx
->nip
);
3920 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
3921 /* Must stop the translation as machine state (may have) changed */
3922 /* Note that mtmsr is not always defined as context-synchronizing */
3923 gen_stop_exception(ctx
);
3929 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC
)
3931 #if defined(CONFIG_USER_ONLY)
3932 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3934 if (unlikely(!ctx
->mem_idx
)) {
3935 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3938 if (ctx
->opcode
& 0x00010000) {
3939 /* Special form that does not need any synchronisation */
3940 TCGv t0
= tcg_temp_new();
3941 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3942 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3943 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3946 /* XXX: we need to update nip before the store
3947 * if we enter power saving mode, we will exit the loop
3948 * directly from ppc_store_msr
3950 gen_update_nip(ctx
, ctx
->nip
);
3951 #if defined(TARGET_PPC64)
3952 if (!ctx
->sf_mode
) {
3953 TCGv t0
= tcg_temp_new();
3954 TCGv t1
= tcg_temp_new();
3955 tcg_gen_andi_tl(t0
, cpu_msr
, 0xFFFFFFFF00000000ULL
);
3956 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
3957 tcg_gen_or_tl(t0
, t0
, t1
);
3959 gen_helper_store_msr(t0
);
3963 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
3964 /* Must stop the translation as machine state (may have) changed */
3965 /* Note that mtmsr is not always defined as context-synchronizing */
3966 gen_stop_exception(ctx
);
3972 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC
)
3974 void (*write_cb
)(void *opaque
, int sprn
, int gprn
);
3975 uint32_t sprn
= SPR(ctx
->opcode
);
3977 #if !defined(CONFIG_USER_ONLY)
3978 if (ctx
->mem_idx
== 2)
3979 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
3980 else if (ctx
->mem_idx
)
3981 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
3984 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
3985 if (likely(write_cb
!= NULL
)) {
3986 if (likely(write_cb
!= SPR_NOACCESS
)) {
3987 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
3989 /* Privilege exception */
3990 qemu_log("Trying to write privileged spr %d %03x at "
3991 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3992 printf("Trying to write privileged spr %d %03x at " ADDRX
"\n",
3993 sprn
, sprn
, ctx
->nip
);
3994 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3998 qemu_log("Trying to write invalid spr %d %03x at "
3999 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
4000 printf("Trying to write invalid spr %d %03x at " ADDRX
"\n",
4001 sprn
, sprn
, ctx
->nip
);
4002 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4006 /*** Cache management ***/
4008 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
)
4010 /* XXX: specification says this is treated as a load by the MMU */
4012 gen_set_access_type(ctx
, ACCESS_CACHE
);
4013 t0
= tcg_temp_new();
4014 gen_addr_reg_index(ctx
, t0
);
4015 gen_qemu_ld8u(ctx
, t0
, t0
);
4019 /* dcbi (Supervisor only) */
4020 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
)
4022 #if defined(CONFIG_USER_ONLY)
4023 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4026 if (unlikely(!ctx
->mem_idx
)) {
4027 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4030 EA
= tcg_temp_new();
4031 gen_set_access_type(ctx
, ACCESS_CACHE
);
4032 gen_addr_reg_index(ctx
, EA
);
4033 val
= tcg_temp_new();
4034 /* XXX: specification says this should be treated as a store by the MMU */
4035 gen_qemu_ld8u(ctx
, val
, EA
);
4036 gen_qemu_st8(ctx
, val
, EA
);
4043 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
)
4045 /* XXX: specification say this is treated as a load by the MMU */
4047 gen_set_access_type(ctx
, ACCESS_CACHE
);
4048 t0
= tcg_temp_new();
4049 gen_addr_reg_index(ctx
, t0
);
4050 gen_qemu_ld8u(ctx
, t0
, t0
);
4055 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE
)
4057 /* interpreted as no-op */
4058 /* XXX: specification say this is treated as a load by the MMU
4059 * but does not generate any exception
4064 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE
)
4066 /* interpreted as no-op */
4067 /* XXX: specification say this is treated as a load by the MMU
4068 * but does not generate any exception
4073 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ
)
4076 gen_set_access_type(ctx
, ACCESS_CACHE
);
4077 /* NIP cannot be restored if the memory exception comes from an helper */
4078 gen_update_nip(ctx
, ctx
->nip
- 4);
4079 t0
= tcg_temp_new();
4080 gen_addr_reg_index(ctx
, t0
);
4081 gen_helper_dcbz(t0
);
4085 GEN_HANDLER2(dcbz_970
, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT
)
4088 gen_set_access_type(ctx
, ACCESS_CACHE
);
4089 /* NIP cannot be restored if the memory exception comes from an helper */
4090 gen_update_nip(ctx
, ctx
->nip
- 4);
4091 t0
= tcg_temp_new();
4092 gen_addr_reg_index(ctx
, t0
);
4093 if (ctx
->opcode
& 0x00200000)
4094 gen_helper_dcbz(t0
);
4096 gen_helper_dcbz_970(t0
);
4101 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
)
4103 if (rA(ctx
->opcode
) == 0) {
4104 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4106 /* interpreted as no-op */
4111 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC
)
4113 if (rA(ctx
->opcode
) == 0) {
4114 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4116 /* interpreted as no-op */
4122 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
)
4124 /* interpreted as no-op */
4128 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
)
4131 gen_set_access_type(ctx
, ACCESS_CACHE
);
4132 /* NIP cannot be restored if the memory exception comes from an helper */
4133 gen_update_nip(ctx
, ctx
->nip
- 4);
4134 t0
= tcg_temp_new();
4135 gen_addr_reg_index(ctx
, t0
);
4136 gen_helper_icbi(t0
);
4142 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
)
4144 /* interpreted as no-op */
4145 /* XXX: specification say this is treated as a store by the MMU
4146 * but does not generate any exception
4150 /*** Segment register manipulation ***/
4151 /* Supervisor only: */
4153 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
)
4155 #if defined(CONFIG_USER_ONLY)
4156 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4159 if (unlikely(!ctx
->mem_idx
)) {
4160 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4163 t0
= tcg_const_tl(SR(ctx
->opcode
));
4164 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4170 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
)
4172 #if defined(CONFIG_USER_ONLY)
4173 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4176 if (unlikely(!ctx
->mem_idx
)) {
4177 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4180 t0
= tcg_temp_new();
4181 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4182 tcg_gen_andi_tl(t0
, t0
, 0xF);
4183 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4189 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
)
4191 #if defined(CONFIG_USER_ONLY)
4192 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4195 if (unlikely(!ctx
->mem_idx
)) {
4196 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4199 t0
= tcg_const_tl(SR(ctx
->opcode
));
4200 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4206 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
)
4208 #if defined(CONFIG_USER_ONLY)
4209 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4212 if (unlikely(!ctx
->mem_idx
)) {
4213 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4216 t0
= tcg_temp_new();
4217 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4218 tcg_gen_andi_tl(t0
, t0
, 0xF);
4219 gen_helper_store_sr(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
4224 #if defined(TARGET_PPC64)
4225 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4227 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
)
4229 #if defined(CONFIG_USER_ONLY)
4230 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4233 if (unlikely(!ctx
->mem_idx
)) {
4234 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4237 t0
= tcg_const_tl(SR(ctx
->opcode
));
4238 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4244 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
4247 #if defined(CONFIG_USER_ONLY)
4248 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4251 if (unlikely(!ctx
->mem_idx
)) {
4252 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4255 t0
= tcg_temp_new();
4256 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4257 tcg_gen_andi_tl(t0
, t0
, 0xF);
4258 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4264 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
)
4266 #if defined(CONFIG_USER_ONLY)
4267 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4270 if (unlikely(!ctx
->mem_idx
)) {
4271 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4274 t0
= tcg_const_tl(SR(ctx
->opcode
));
4275 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4281 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
4284 #if defined(CONFIG_USER_ONLY)
4285 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4288 if (unlikely(!ctx
->mem_idx
)) {
4289 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4292 t0
= tcg_temp_new();
4293 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4294 tcg_gen_andi_tl(t0
, t0
, 0xF);
4295 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4301 GEN_HANDLER2(slbmte
, "slbmte", 0x1F, 0x12, 0x0C, 0x00000000, PPC_SEGMENT_64B
)
4303 #if defined(CONFIG_USER_ONLY)
4304 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4306 if (unlikely(!ctx
->mem_idx
)) {
4307 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4310 gen_helper_store_slb(cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
4314 #endif /* defined(TARGET_PPC64) */
4316 /*** Lookaside buffer management ***/
4317 /* Optional & mem_idx only: */
4319 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
)
4321 #if defined(CONFIG_USER_ONLY)
4322 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4324 if (unlikely(!ctx
->mem_idx
)) {
4325 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4333 GEN_HANDLER(tlbiel
, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE
)
4335 #if defined(CONFIG_USER_ONLY)
4336 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4338 if (unlikely(!ctx
->mem_idx
)) {
4339 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4342 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
4347 GEN_HANDLER(tlbie
, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE
)
4349 #if defined(CONFIG_USER_ONLY)
4350 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4352 if (unlikely(!ctx
->mem_idx
)) {
4353 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4356 #if defined(TARGET_PPC64)
4357 if (!ctx
->sf_mode
) {
4358 TCGv t0
= tcg_temp_new();
4359 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
4360 gen_helper_tlbie(t0
);
4364 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
4369 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
)
4371 #if defined(CONFIG_USER_ONLY)
4372 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4374 if (unlikely(!ctx
->mem_idx
)) {
4375 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4378 /* This has no effect: it should ensure that all previous
4379 * tlbie have completed
4381 gen_stop_exception(ctx
);
4385 #if defined(TARGET_PPC64)
4387 GEN_HANDLER(slbia
, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI
)
4389 #if defined(CONFIG_USER_ONLY)
4390 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4392 if (unlikely(!ctx
->mem_idx
)) {
4393 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4401 GEN_HANDLER(slbie
, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI
)
4403 #if defined(CONFIG_USER_ONLY)
4404 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4406 if (unlikely(!ctx
->mem_idx
)) {
4407 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4410 gen_helper_slbie(cpu_gpr
[rB(ctx
->opcode
)]);
4415 /*** External control ***/
4418 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
)
4421 /* Should check EAR[E] ! */
4422 gen_set_access_type(ctx
, ACCESS_EXT
);
4423 t0
= tcg_temp_new();
4424 gen_addr_reg_index(ctx
, t0
);
4425 gen_check_align(ctx
, t0
, 0x03);
4426 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4431 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
)
4434 /* Should check EAR[E] ! */
4435 gen_set_access_type(ctx
, ACCESS_EXT
);
4436 t0
= tcg_temp_new();
4437 gen_addr_reg_index(ctx
, t0
);
4438 gen_check_align(ctx
, t0
, 0x03);
4439 gen_qemu_st32(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4443 /* PowerPC 601 specific instructions */
4445 GEN_HANDLER(abs
, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR
)
4447 int l1
= gen_new_label();
4448 int l2
= gen_new_label();
4449 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4450 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4453 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4455 if (unlikely(Rc(ctx
->opcode
) != 0))
4456 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4460 GEN_HANDLER(abso
, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR
)
4462 int l1
= gen_new_label();
4463 int l2
= gen_new_label();
4464 int l3
= gen_new_label();
4465 /* Start with XER OV disabled, the most likely case */
4466 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4467 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l2
);
4468 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[rA(ctx
->opcode
)], 0x80000000, l1
);
4469 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4472 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4475 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4477 if (unlikely(Rc(ctx
->opcode
) != 0))
4478 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4482 GEN_HANDLER(clcs
, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR
)
4484 TCGv_i32 t0
= tcg_const_i32(rA(ctx
->opcode
));
4485 gen_helper_clcs(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4486 tcg_temp_free_i32(t0
);
4487 /* Rc=1 sets CR0 to an undefined state */
4491 GEN_HANDLER(div
, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR
)
4493 gen_helper_div(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4494 if (unlikely(Rc(ctx
->opcode
) != 0))
4495 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4499 GEN_HANDLER(divo
, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR
)
4501 gen_helper_divo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4502 if (unlikely(Rc(ctx
->opcode
) != 0))
4503 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4507 GEN_HANDLER(divs
, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR
)
4509 gen_helper_divs(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4510 if (unlikely(Rc(ctx
->opcode
) != 0))
4511 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4514 /* divso - divso. */
4515 GEN_HANDLER(divso
, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR
)
4517 gen_helper_divso(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4518 if (unlikely(Rc(ctx
->opcode
) != 0))
4519 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4523 GEN_HANDLER(doz
, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR
)
4525 int l1
= gen_new_label();
4526 int l2
= gen_new_label();
4527 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4528 tcg_gen_sub_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4531 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4533 if (unlikely(Rc(ctx
->opcode
) != 0))
4534 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4538 GEN_HANDLER(dozo
, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR
)
4540 int l1
= gen_new_label();
4541 int l2
= gen_new_label();
4542 TCGv t0
= tcg_temp_new();
4543 TCGv t1
= tcg_temp_new();
4544 TCGv t2
= tcg_temp_new();
4545 /* Start with XER OV disabled, the most likely case */
4546 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4547 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4548 tcg_gen_sub_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4549 tcg_gen_xor_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4550 tcg_gen_xor_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], t0
);
4551 tcg_gen_andc_tl(t1
, t1
, t2
);
4552 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4553 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4554 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4557 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4562 if (unlikely(Rc(ctx
->opcode
) != 0))
4563 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4567 GEN_HANDLER(dozi
, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
)
4569 target_long simm
= SIMM(ctx
->opcode
);
4570 int l1
= gen_new_label();
4571 int l2
= gen_new_label();
4572 tcg_gen_brcondi_tl(TCG_COND_LT
, cpu_gpr
[rA(ctx
->opcode
)], simm
, l1
);
4573 tcg_gen_subfi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
, cpu_gpr
[rA(ctx
->opcode
)]);
4576 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4578 if (unlikely(Rc(ctx
->opcode
) != 0))
4579 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4582 /* lscbx - lscbx. */
4583 GEN_HANDLER(lscbx
, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR
)
4585 TCGv t0
= tcg_temp_new();
4586 TCGv_i32 t1
= tcg_const_i32(rD(ctx
->opcode
));
4587 TCGv_i32 t2
= tcg_const_i32(rA(ctx
->opcode
));
4588 TCGv_i32 t3
= tcg_const_i32(rB(ctx
->opcode
));
4590 gen_addr_reg_index(ctx
, t0
);
4591 /* NIP cannot be restored if the memory exception comes from an helper */
4592 gen_update_nip(ctx
, ctx
->nip
- 4);
4593 gen_helper_lscbx(t0
, t0
, t1
, t2
, t3
);
4594 tcg_temp_free_i32(t1
);
4595 tcg_temp_free_i32(t2
);
4596 tcg_temp_free_i32(t3
);
4597 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~0x7F);
4598 tcg_gen_or_tl(cpu_xer
, cpu_xer
, t0
);
4599 if (unlikely(Rc(ctx
->opcode
) != 0))
4600 gen_set_Rc0(ctx
, t0
);
4604 /* maskg - maskg. */
4605 GEN_HANDLER(maskg
, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR
)
4607 int l1
= gen_new_label();
4608 TCGv t0
= tcg_temp_new();
4609 TCGv t1
= tcg_temp_new();
4610 TCGv t2
= tcg_temp_new();
4611 TCGv t3
= tcg_temp_new();
4612 tcg_gen_movi_tl(t3
, 0xFFFFFFFF);
4613 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4614 tcg_gen_andi_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 0x1F);
4615 tcg_gen_addi_tl(t2
, t0
, 1);
4616 tcg_gen_shr_tl(t2
, t3
, t2
);
4617 tcg_gen_shr_tl(t3
, t3
, t1
);
4618 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], t2
, t3
);
4619 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
4620 tcg_gen_neg_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4626 if (unlikely(Rc(ctx
->opcode
) != 0))
4627 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4630 /* maskir - maskir. */
4631 GEN_HANDLER(maskir
, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR
)
4633 TCGv t0
= tcg_temp_new();
4634 TCGv t1
= tcg_temp_new();
4635 tcg_gen_and_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4636 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4637 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4640 if (unlikely(Rc(ctx
->opcode
) != 0))
4641 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4645 GEN_HANDLER(mul
, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR
)
4647 TCGv_i64 t0
= tcg_temp_new_i64();
4648 TCGv_i64 t1
= tcg_temp_new_i64();
4649 TCGv t2
= tcg_temp_new();
4650 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4651 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4652 tcg_gen_mul_i64(t0
, t0
, t1
);
4653 tcg_gen_trunc_i64_tl(t2
, t0
);
4654 gen_store_spr(SPR_MQ
, t2
);
4655 tcg_gen_shri_i64(t1
, t0
, 32);
4656 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4657 tcg_temp_free_i64(t0
);
4658 tcg_temp_free_i64(t1
);
4660 if (unlikely(Rc(ctx
->opcode
) != 0))
4661 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4665 GEN_HANDLER(mulo
, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR
)
4667 int l1
= gen_new_label();
4668 TCGv_i64 t0
= tcg_temp_new_i64();
4669 TCGv_i64 t1
= tcg_temp_new_i64();
4670 TCGv t2
= tcg_temp_new();
4671 /* Start with XER OV disabled, the most likely case */
4672 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4673 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4674 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4675 tcg_gen_mul_i64(t0
, t0
, t1
);
4676 tcg_gen_trunc_i64_tl(t2
, t0
);
4677 gen_store_spr(SPR_MQ
, t2
);
4678 tcg_gen_shri_i64(t1
, t0
, 32);
4679 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4680 tcg_gen_ext32s_i64(t1
, t0
);
4681 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
4682 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4684 tcg_temp_free_i64(t0
);
4685 tcg_temp_free_i64(t1
);
4687 if (unlikely(Rc(ctx
->opcode
) != 0))
4688 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4692 GEN_HANDLER(nabs
, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR
)
4694 int l1
= gen_new_label();
4695 int l2
= gen_new_label();
4696 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4697 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4700 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4702 if (unlikely(Rc(ctx
->opcode
) != 0))
4703 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4706 /* nabso - nabso. */
4707 GEN_HANDLER(nabso
, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR
)
4709 int l1
= gen_new_label();
4710 int l2
= gen_new_label();
4711 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4712 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4715 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4717 /* nabs never overflows */
4718 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4719 if (unlikely(Rc(ctx
->opcode
) != 0))
4720 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4724 GEN_HANDLER(rlmi
, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
)
4726 uint32_t mb
= MB(ctx
->opcode
);
4727 uint32_t me
= ME(ctx
->opcode
);
4728 TCGv t0
= tcg_temp_new();
4729 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4730 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4731 tcg_gen_andi_tl(t0
, t0
, MASK(mb
, me
));
4732 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~MASK(mb
, me
));
4733 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], t0
);
4735 if (unlikely(Rc(ctx
->opcode
) != 0))
4736 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4740 GEN_HANDLER(rrib
, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR
)
4742 TCGv t0
= tcg_temp_new();
4743 TCGv t1
= tcg_temp_new();
4744 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4745 tcg_gen_movi_tl(t1
, 0x80000000);
4746 tcg_gen_shr_tl(t1
, t1
, t0
);
4747 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4748 tcg_gen_and_tl(t0
, t0
, t1
);
4749 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], t1
);
4750 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4753 if (unlikely(Rc(ctx
->opcode
) != 0))
4754 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4758 GEN_HANDLER(sle
, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR
)
4760 TCGv t0
= tcg_temp_new();
4761 TCGv t1
= tcg_temp_new();
4762 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4763 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4764 tcg_gen_subfi_tl(t1
, 32, t1
);
4765 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4766 tcg_gen_or_tl(t1
, t0
, t1
);
4767 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4768 gen_store_spr(SPR_MQ
, t1
);
4771 if (unlikely(Rc(ctx
->opcode
) != 0))
4772 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4776 GEN_HANDLER(sleq
, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR
)
4778 TCGv t0
= tcg_temp_new();
4779 TCGv t1
= tcg_temp_new();
4780 TCGv t2
= tcg_temp_new();
4781 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4782 tcg_gen_movi_tl(t2
, 0xFFFFFFFF);
4783 tcg_gen_shl_tl(t2
, t2
, t0
);
4784 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4785 gen_load_spr(t1
, SPR_MQ
);
4786 gen_store_spr(SPR_MQ
, t0
);
4787 tcg_gen_and_tl(t0
, t0
, t2
);
4788 tcg_gen_andc_tl(t1
, t1
, t2
);
4789 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4793 if (unlikely(Rc(ctx
->opcode
) != 0))
4794 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4798 GEN_HANDLER(sliq
, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR
)
4800 int sh
= SH(ctx
->opcode
);
4801 TCGv t0
= tcg_temp_new();
4802 TCGv t1
= tcg_temp_new();
4803 tcg_gen_shli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4804 tcg_gen_shri_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4805 tcg_gen_or_tl(t1
, t0
, t1
);
4806 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4807 gen_store_spr(SPR_MQ
, t1
);
4810 if (unlikely(Rc(ctx
->opcode
) != 0))
4811 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4814 /* slliq - slliq. */
4815 GEN_HANDLER(slliq
, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR
)
4817 int sh
= SH(ctx
->opcode
);
4818 TCGv t0
= tcg_temp_new();
4819 TCGv t1
= tcg_temp_new();
4820 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4821 gen_load_spr(t1
, SPR_MQ
);
4822 gen_store_spr(SPR_MQ
, t0
);
4823 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
<< sh
));
4824 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
<< sh
));
4825 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4828 if (unlikely(Rc(ctx
->opcode
) != 0))
4829 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4833 GEN_HANDLER(sllq
, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR
)
4835 int l1
= gen_new_label();
4836 int l2
= gen_new_label();
4837 TCGv t0
= tcg_temp_local_new();
4838 TCGv t1
= tcg_temp_local_new();
4839 TCGv t2
= tcg_temp_local_new();
4840 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4841 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4842 tcg_gen_shl_tl(t1
, t1
, t2
);
4843 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4844 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4845 gen_load_spr(t0
, SPR_MQ
);
4846 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4849 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4850 gen_load_spr(t2
, SPR_MQ
);
4851 tcg_gen_andc_tl(t1
, t2
, t1
);
4852 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4857 if (unlikely(Rc(ctx
->opcode
) != 0))
4858 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4862 GEN_HANDLER(slq
, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR
)
4864 int l1
= gen_new_label();
4865 TCGv t0
= tcg_temp_new();
4866 TCGv t1
= tcg_temp_new();
4867 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4868 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4869 tcg_gen_subfi_tl(t1
, 32, t1
);
4870 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4871 tcg_gen_or_tl(t1
, t0
, t1
);
4872 gen_store_spr(SPR_MQ
, t1
);
4873 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4874 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4875 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4876 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
4880 if (unlikely(Rc(ctx
->opcode
) != 0))
4881 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4884 /* sraiq - sraiq. */
4885 GEN_HANDLER(sraiq
, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR
)
4887 int sh
= SH(ctx
->opcode
);
4888 int l1
= gen_new_label();
4889 TCGv t0
= tcg_temp_new();
4890 TCGv t1
= tcg_temp_new();
4891 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4892 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4893 tcg_gen_or_tl(t0
, t0
, t1
);
4894 gen_store_spr(SPR_MQ
, t0
);
4895 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4896 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4897 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
4898 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4900 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
4903 if (unlikely(Rc(ctx
->opcode
) != 0))
4904 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4908 GEN_HANDLER(sraq
, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR
)
4910 int l1
= gen_new_label();
4911 int l2
= gen_new_label();
4912 TCGv t0
= tcg_temp_new();
4913 TCGv t1
= tcg_temp_local_new();
4914 TCGv t2
= tcg_temp_local_new();
4915 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4916 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4917 tcg_gen_sar_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4918 tcg_gen_subfi_tl(t2
, 32, t2
);
4919 tcg_gen_shl_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4920 tcg_gen_or_tl(t0
, t0
, t2
);
4921 gen_store_spr(SPR_MQ
, t0
);
4922 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4923 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l1
);
4924 tcg_gen_mov_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
4925 tcg_gen_sari_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 31);
4928 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
);
4929 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4930 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4931 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l2
);
4932 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4936 if (unlikely(Rc(ctx
->opcode
) != 0))
4937 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4941 GEN_HANDLER(sre
, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR
)
4943 TCGv t0
= tcg_temp_new();
4944 TCGv t1
= tcg_temp_new();
4945 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4946 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4947 tcg_gen_subfi_tl(t1
, 32, t1
);
4948 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4949 tcg_gen_or_tl(t1
, t0
, t1
);
4950 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4951 gen_store_spr(SPR_MQ
, t1
);
4954 if (unlikely(Rc(ctx
->opcode
) != 0))
4955 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4959 GEN_HANDLER(srea
, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR
)
4961 TCGv t0
= tcg_temp_new();
4962 TCGv t1
= tcg_temp_new();
4963 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4964 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4965 gen_store_spr(SPR_MQ
, t0
);
4966 tcg_gen_sar_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t1
);
4969 if (unlikely(Rc(ctx
->opcode
) != 0))
4970 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4974 GEN_HANDLER(sreq
, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR
)
4976 TCGv t0
= tcg_temp_new();
4977 TCGv t1
= tcg_temp_new();
4978 TCGv t2
= tcg_temp_new();
4979 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4980 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4981 tcg_gen_shr_tl(t1
, t1
, t0
);
4982 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4983 gen_load_spr(t2
, SPR_MQ
);
4984 gen_store_spr(SPR_MQ
, t0
);
4985 tcg_gen_and_tl(t0
, t0
, t1
);
4986 tcg_gen_andc_tl(t2
, t2
, t1
);
4987 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
4991 if (unlikely(Rc(ctx
->opcode
) != 0))
4992 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4996 GEN_HANDLER(sriq
, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR
)
4998 int sh
= SH(ctx
->opcode
);
4999 TCGv t0
= tcg_temp_new();
5000 TCGv t1
= tcg_temp_new();
5001 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5002 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5003 tcg_gen_or_tl(t1
, t0
, t1
);
5004 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5005 gen_store_spr(SPR_MQ
, t1
);
5008 if (unlikely(Rc(ctx
->opcode
) != 0))
5009 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5013 GEN_HANDLER(srliq
, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR
)
5015 int sh
= SH(ctx
->opcode
);
5016 TCGv t0
= tcg_temp_new();
5017 TCGv t1
= tcg_temp_new();
5018 tcg_gen_rotri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5019 gen_load_spr(t1
, SPR_MQ
);
5020 gen_store_spr(SPR_MQ
, t0
);
5021 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
>> sh
));
5022 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
>> sh
));
5023 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5026 if (unlikely(Rc(ctx
->opcode
) != 0))
5027 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5031 GEN_HANDLER(srlq
, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR
)
5033 int l1
= gen_new_label();
5034 int l2
= gen_new_label();
5035 TCGv t0
= tcg_temp_local_new();
5036 TCGv t1
= tcg_temp_local_new();
5037 TCGv t2
= tcg_temp_local_new();
5038 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5039 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5040 tcg_gen_shr_tl(t2
, t1
, t2
);
5041 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5042 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5043 gen_load_spr(t0
, SPR_MQ
);
5044 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5047 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5048 tcg_gen_and_tl(t0
, t0
, t2
);
5049 gen_load_spr(t1
, SPR_MQ
);
5050 tcg_gen_andc_tl(t1
, t1
, t2
);
5051 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5056 if (unlikely(Rc(ctx
->opcode
) != 0))
5057 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5061 GEN_HANDLER(srq
, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR
)
5063 int l1
= gen_new_label();
5064 TCGv t0
= tcg_temp_new();
5065 TCGv t1
= tcg_temp_new();
5066 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5067 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5068 tcg_gen_subfi_tl(t1
, 32, t1
);
5069 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5070 tcg_gen_or_tl(t1
, t0
, t1
);
5071 gen_store_spr(SPR_MQ
, t1
);
5072 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5073 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5074 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5075 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
5079 if (unlikely(Rc(ctx
->opcode
) != 0))
5080 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5083 /* PowerPC 602 specific instructions */
5085 GEN_HANDLER(dsa
, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC
)
5088 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5092 GEN_HANDLER(esa
, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC
)
5095 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5099 GEN_HANDLER(mfrom
, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC
)
5101 #if defined(CONFIG_USER_ONLY)
5102 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5104 if (unlikely(!ctx
->mem_idx
)) {
5105 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5108 gen_helper_602_mfrom(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5112 /* 602 - 603 - G2 TLB management */
5114 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
)
5116 #if defined(CONFIG_USER_ONLY)
5117 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5119 if (unlikely(!ctx
->mem_idx
)) {
5120 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5123 gen_helper_6xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5128 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
)
5130 #if defined(CONFIG_USER_ONLY)
5131 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5133 if (unlikely(!ctx
->mem_idx
)) {
5134 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5137 gen_helper_6xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5141 /* 74xx TLB management */
5143 GEN_HANDLER2(tlbld_74xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB
)
5145 #if defined(CONFIG_USER_ONLY)
5146 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5148 if (unlikely(!ctx
->mem_idx
)) {
5149 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5152 gen_helper_74xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5157 GEN_HANDLER2(tlbli_74xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB
)
5159 #if defined(CONFIG_USER_ONLY)
5160 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5162 if (unlikely(!ctx
->mem_idx
)) {
5163 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5166 gen_helper_74xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5170 /* POWER instructions not in PowerPC 601 */
5172 GEN_HANDLER(clf
, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER
)
5174 /* Cache line flush: implemented as no-op */
5178 GEN_HANDLER(cli
, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER
)
5180 /* Cache line invalidate: privileged and treated as no-op */
5181 #if defined(CONFIG_USER_ONLY)
5182 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5184 if (unlikely(!ctx
->mem_idx
)) {
5185 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5192 GEN_HANDLER(dclst
, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER
)
5194 /* Data cache line store: treated as no-op */
5197 GEN_HANDLER(mfsri
, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER
)
5199 #if defined(CONFIG_USER_ONLY)
5200 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5202 int ra
= rA(ctx
->opcode
);
5203 int rd
= rD(ctx
->opcode
);
5205 if (unlikely(!ctx
->mem_idx
)) {
5206 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5209 t0
= tcg_temp_new();
5210 gen_addr_reg_index(ctx
, t0
);
5211 tcg_gen_shri_tl(t0
, t0
, 28);
5212 tcg_gen_andi_tl(t0
, t0
, 0xF);
5213 gen_helper_load_sr(cpu_gpr
[rd
], t0
);
5215 if (ra
!= 0 && ra
!= rd
)
5216 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rd
]);
5220 GEN_HANDLER(rac
, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER
)
5222 #if defined(CONFIG_USER_ONLY)
5223 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5226 if (unlikely(!ctx
->mem_idx
)) {
5227 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5230 t0
= tcg_temp_new();
5231 gen_addr_reg_index(ctx
, t0
);
5232 gen_helper_rac(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5237 GEN_HANDLER(rfsvc
, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER
)
5239 #if defined(CONFIG_USER_ONLY)
5240 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5242 if (unlikely(!ctx
->mem_idx
)) {
5243 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5247 gen_sync_exception(ctx
);
5251 /* svc is not implemented for now */
5253 /* POWER2 specific instructions */
5254 /* Quad manipulation (load/store two floats at a time) */
5257 GEN_HANDLER(lfq
, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5259 int rd
= rD(ctx
->opcode
);
5261 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5262 t0
= tcg_temp_new();
5263 gen_addr_imm_index(ctx
, t0
, 0);
5264 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5265 gen_addr_add(ctx
, t0
, t0
, 8);
5266 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5271 GEN_HANDLER(lfqu
, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5273 int ra
= rA(ctx
->opcode
);
5274 int rd
= rD(ctx
->opcode
);
5276 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5277 t0
= tcg_temp_new();
5278 t1
= tcg_temp_new();
5279 gen_addr_imm_index(ctx
, t0
, 0);
5280 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5281 gen_addr_add(ctx
, t1
, t0
, 8);
5282 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5284 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5290 GEN_HANDLER(lfqux
, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2
)
5292 int ra
= rA(ctx
->opcode
);
5293 int rd
= rD(ctx
->opcode
);
5294 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5296 t0
= tcg_temp_new();
5297 gen_addr_reg_index(ctx
, t0
);
5298 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5299 t1
= tcg_temp_new();
5300 gen_addr_add(ctx
, t1
, t0
, 8);
5301 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5304 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5309 GEN_HANDLER(lfqx
, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2
)
5311 int rd
= rD(ctx
->opcode
);
5313 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5314 t0
= tcg_temp_new();
5315 gen_addr_reg_index(ctx
, t0
);
5316 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5317 gen_addr_add(ctx
, t0
, t0
, 8);
5318 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5323 GEN_HANDLER(stfq
, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5325 int rd
= rD(ctx
->opcode
);
5327 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5328 t0
= tcg_temp_new();
5329 gen_addr_imm_index(ctx
, t0
, 0);
5330 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5331 gen_addr_add(ctx
, t0
, t0
, 8);
5332 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5337 GEN_HANDLER(stfqu
, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5339 int ra
= rA(ctx
->opcode
);
5340 int rd
= rD(ctx
->opcode
);
5342 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5343 t0
= tcg_temp_new();
5344 gen_addr_imm_index(ctx
, t0
, 0);
5345 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5346 t1
= tcg_temp_new();
5347 gen_addr_add(ctx
, t1
, t0
, 8);
5348 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5351 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5356 GEN_HANDLER(stfqux
, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2
)
5358 int ra
= rA(ctx
->opcode
);
5359 int rd
= rD(ctx
->opcode
);
5361 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5362 t0
= tcg_temp_new();
5363 gen_addr_reg_index(ctx
, t0
);
5364 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5365 t1
= tcg_temp_new();
5366 gen_addr_add(ctx
, t1
, t0
, 8);
5367 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5370 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5375 GEN_HANDLER(stfqx
, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2
)
5377 int rd
= rD(ctx
->opcode
);
5379 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5380 t0
= tcg_temp_new();
5381 gen_addr_reg_index(ctx
, t0
);
5382 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5383 gen_addr_add(ctx
, t0
, t0
, 8);
5384 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5388 /* BookE specific instructions */
5389 /* XXX: not implemented on 440 ? */
5390 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
)
5393 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5396 /* XXX: not implemented on 440 ? */
5397 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
)
5399 #if defined(CONFIG_USER_ONLY)
5400 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5403 if (unlikely(!ctx
->mem_idx
)) {
5404 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5407 t0
= tcg_temp_new();
5408 gen_addr_reg_index(ctx
, t0
);
5409 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
5414 /* All 405 MAC instructions are translated here */
5415 static always_inline
void gen_405_mulladd_insn (DisasContext
*ctx
,
5417 int ra
, int rb
, int rt
, int Rc
)
5421 t0
= tcg_temp_local_new();
5422 t1
= tcg_temp_local_new();
5424 switch (opc3
& 0x0D) {
5426 /* macchw - macchw. - macchwo - macchwo. */
5427 /* macchws - macchws. - macchwso - macchwso. */
5428 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5429 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5430 /* mulchw - mulchw. */
5431 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5432 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5433 tcg_gen_ext16s_tl(t1
, t1
);
5436 /* macchwu - macchwu. - macchwuo - macchwuo. */
5437 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5438 /* mulchwu - mulchwu. */
5439 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5440 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5441 tcg_gen_ext16u_tl(t1
, t1
);
5444 /* machhw - machhw. - machhwo - machhwo. */
5445 /* machhws - machhws. - machhwso - machhwso. */
5446 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5447 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5448 /* mulhhw - mulhhw. */
5449 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5450 tcg_gen_ext16s_tl(t0
, t0
);
5451 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5452 tcg_gen_ext16s_tl(t1
, t1
);
5455 /* machhwu - machhwu. - machhwuo - machhwuo. */
5456 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5457 /* mulhhwu - mulhhwu. */
5458 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5459 tcg_gen_ext16u_tl(t0
, t0
);
5460 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5461 tcg_gen_ext16u_tl(t1
, t1
);
5464 /* maclhw - maclhw. - maclhwo - maclhwo. */
5465 /* maclhws - maclhws. - maclhwso - maclhwso. */
5466 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5467 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5468 /* mullhw - mullhw. */
5469 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5470 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5473 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5474 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5475 /* mullhwu - mullhwu. */
5476 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5477 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5481 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5482 tcg_gen_mul_tl(t1
, t0
, t1
);
5484 /* nmultiply-and-accumulate (0x0E) */
5485 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5487 /* multiply-and-accumulate (0x0C) */
5488 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5492 /* Check overflow and/or saturate */
5493 int l1
= gen_new_label();
5496 /* Start with XER OV disabled, the most likely case */
5497 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
5501 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5502 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5503 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5504 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5507 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5508 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5512 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5515 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5519 /* Check overflow */
5520 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
5523 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5526 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5530 if (unlikely(Rc
) != 0) {
5532 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5536 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5537 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC) \
5539 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5540 rD(ctx->opcode), Rc(ctx->opcode)); \
5543 /* macchw - macchw. */
5544 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5545 /* macchwo - macchwo. */
5546 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5547 /* macchws - macchws. */
5548 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5549 /* macchwso - macchwso. */
5550 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5551 /* macchwsu - macchwsu. */
5552 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5553 /* macchwsuo - macchwsuo. */
5554 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5555 /* macchwu - macchwu. */
5556 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5557 /* macchwuo - macchwuo. */
5558 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5559 /* machhw - machhw. */
5560 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5561 /* machhwo - machhwo. */
5562 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5563 /* machhws - machhws. */
5564 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5565 /* machhwso - machhwso. */
5566 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5567 /* machhwsu - machhwsu. */
5568 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5569 /* machhwsuo - machhwsuo. */
5570 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5571 /* machhwu - machhwu. */
5572 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5573 /* machhwuo - machhwuo. */
5574 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5575 /* maclhw - maclhw. */
5576 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5577 /* maclhwo - maclhwo. */
5578 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5579 /* maclhws - maclhws. */
5580 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5581 /* maclhwso - maclhwso. */
5582 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
5583 /* maclhwu - maclhwu. */
5584 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
5585 /* maclhwuo - maclhwuo. */
5586 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
5587 /* maclhwsu - maclhwsu. */
5588 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
5589 /* maclhwsuo - maclhwsuo. */
5590 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
5591 /* nmacchw - nmacchw. */
5592 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
5593 /* nmacchwo - nmacchwo. */
5594 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
5595 /* nmacchws - nmacchws. */
5596 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
5597 /* nmacchwso - nmacchwso. */
5598 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
5599 /* nmachhw - nmachhw. */
5600 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
5601 /* nmachhwo - nmachhwo. */
5602 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
5603 /* nmachhws - nmachhws. */
5604 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
5605 /* nmachhwso - nmachhwso. */
5606 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
5607 /* nmaclhw - nmaclhw. */
5608 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
5609 /* nmaclhwo - nmaclhwo. */
5610 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
5611 /* nmaclhws - nmaclhws. */
5612 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
5613 /* nmaclhwso - nmaclhwso. */
5614 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
5616 /* mulchw - mulchw. */
5617 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
5618 /* mulchwu - mulchwu. */
5619 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
5620 /* mulhhw - mulhhw. */
5621 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
5622 /* mulhhwu - mulhhwu. */
5623 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
5624 /* mullhw - mullhw. */
5625 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
5626 /* mullhwu - mullhwu. */
5627 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
5630 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
)
5632 #if defined(CONFIG_USER_ONLY)
5633 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5636 if (unlikely(!ctx
->mem_idx
)) {
5637 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5640 /* NIP cannot be restored if the memory exception comes from an helper */
5641 gen_update_nip(ctx
, ctx
->nip
- 4);
5642 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5643 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], dcrn
);
5644 tcg_temp_free(dcrn
);
5649 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
)
5651 #if defined(CONFIG_USER_ONLY)
5652 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5655 if (unlikely(!ctx
->mem_idx
)) {
5656 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5659 /* NIP cannot be restored if the memory exception comes from an helper */
5660 gen_update_nip(ctx
, ctx
->nip
- 4);
5661 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5662 gen_helper_store_dcr(dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
5663 tcg_temp_free(dcrn
);
5668 /* XXX: not implemented on 440 ? */
5669 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
)
5671 #if defined(CONFIG_USER_ONLY)
5672 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5674 if (unlikely(!ctx
->mem_idx
)) {
5675 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5678 /* NIP cannot be restored if the memory exception comes from an helper */
5679 gen_update_nip(ctx
, ctx
->nip
- 4);
5680 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5681 /* Note: Rc update flag set leads to undefined state of Rc0 */
5686 /* XXX: not implemented on 440 ? */
5687 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
)
5689 #if defined(CONFIG_USER_ONLY)
5690 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5692 if (unlikely(!ctx
->mem_idx
)) {
5693 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5696 /* NIP cannot be restored if the memory exception comes from an helper */
5697 gen_update_nip(ctx
, ctx
->nip
- 4);
5698 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5699 /* Note: Rc update flag set leads to undefined state of Rc0 */
5703 /* mfdcrux (PPC 460) : user-mode access to DCR */
5704 GEN_HANDLER(mfdcrux
, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX
)
5706 /* NIP cannot be restored if the memory exception comes from an helper */
5707 gen_update_nip(ctx
, ctx
->nip
- 4);
5708 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5709 /* Note: Rc update flag set leads to undefined state of Rc0 */
5712 /* mtdcrux (PPC 460) : user-mode access to DCR */
5713 GEN_HANDLER(mtdcrux
, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX
)
5715 /* NIP cannot be restored if the memory exception comes from an helper */
5716 gen_update_nip(ctx
, ctx
->nip
- 4);
5717 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5718 /* Note: Rc update flag set leads to undefined state of Rc0 */
5722 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
)
5724 #if defined(CONFIG_USER_ONLY)
5725 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5727 if (unlikely(!ctx
->mem_idx
)) {
5728 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5731 /* interpreted as no-op */
5736 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
)
5738 #if defined(CONFIG_USER_ONLY)
5739 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5742 if (unlikely(!ctx
->mem_idx
)) {
5743 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5746 gen_set_access_type(ctx
, ACCESS_CACHE
);
5747 EA
= tcg_temp_new();
5748 gen_addr_reg_index(ctx
, EA
);
5749 val
= tcg_temp_new();
5750 gen_qemu_ld32u(ctx
, val
, EA
);
5752 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
5758 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
)
5760 /* interpreted as no-op */
5761 /* XXX: specification say this is treated as a load by the MMU
5762 * but does not generate any exception
5767 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
)
5769 #if defined(CONFIG_USER_ONLY)
5770 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5772 if (unlikely(!ctx
->mem_idx
)) {
5773 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5776 /* interpreted as no-op */
5781 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
)
5783 #if defined(CONFIG_USER_ONLY)
5784 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5786 if (unlikely(!ctx
->mem_idx
)) {
5787 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5790 /* interpreted as no-op */
5794 /* rfci (mem_idx only) */
5795 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
)
5797 #if defined(CONFIG_USER_ONLY)
5798 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5800 if (unlikely(!ctx
->mem_idx
)) {
5801 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5804 /* Restore CPU state */
5805 gen_helper_40x_rfci();
5806 gen_sync_exception(ctx
);
5810 GEN_HANDLER(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
)
5812 #if defined(CONFIG_USER_ONLY)
5813 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5815 if (unlikely(!ctx
->mem_idx
)) {
5816 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5819 /* Restore CPU state */
5821 gen_sync_exception(ctx
);
5825 /* BookE specific */
5826 /* XXX: not implemented on 440 ? */
5827 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
)
5829 #if defined(CONFIG_USER_ONLY)
5830 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5832 if (unlikely(!ctx
->mem_idx
)) {
5833 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5836 /* Restore CPU state */
5838 gen_sync_exception(ctx
);
5842 /* XXX: not implemented on 440 ? */
5843 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
)
5845 #if defined(CONFIG_USER_ONLY)
5846 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5848 if (unlikely(!ctx
->mem_idx
)) {
5849 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5852 /* Restore CPU state */
5854 gen_sync_exception(ctx
);
5858 /* TLB management - PowerPC 405 implementation */
5860 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
)
5862 #if defined(CONFIG_USER_ONLY)
5863 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5865 if (unlikely(!ctx
->mem_idx
)) {
5866 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5869 switch (rB(ctx
->opcode
)) {
5871 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5874 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5877 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5883 /* tlbsx - tlbsx. */
5884 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
)
5886 #if defined(CONFIG_USER_ONLY)
5887 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5890 if (unlikely(!ctx
->mem_idx
)) {
5891 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5894 t0
= tcg_temp_new();
5895 gen_addr_reg_index(ctx
, t0
);
5896 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5898 if (Rc(ctx
->opcode
)) {
5899 int l1
= gen_new_label();
5900 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5901 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5902 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5903 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5904 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5911 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
)
5913 #if defined(CONFIG_USER_ONLY)
5914 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5916 if (unlikely(!ctx
->mem_idx
)) {
5917 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5920 switch (rB(ctx
->opcode
)) {
5922 gen_helper_4xx_tlbwe_hi(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5925 gen_helper_4xx_tlbwe_lo(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5928 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5934 /* TLB management - PowerPC 440 implementation */
5936 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
)
5938 #if defined(CONFIG_USER_ONLY)
5939 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5941 if (unlikely(!ctx
->mem_idx
)) {
5942 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5945 switch (rB(ctx
->opcode
)) {
5950 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
5951 gen_helper_440_tlbwe(t0
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5952 tcg_temp_free_i32(t0
);
5956 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5962 /* tlbsx - tlbsx. */
5963 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
)
5965 #if defined(CONFIG_USER_ONLY)
5966 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5969 if (unlikely(!ctx
->mem_idx
)) {
5970 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5973 t0
= tcg_temp_new();
5974 gen_addr_reg_index(ctx
, t0
);
5975 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5977 if (Rc(ctx
->opcode
)) {
5978 int l1
= gen_new_label();
5979 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5980 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5981 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5982 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5983 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5990 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
)
5992 #if defined(CONFIG_USER_ONLY)
5993 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5995 if (unlikely(!ctx
->mem_idx
)) {
5996 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5999 switch (rB(ctx
->opcode
)) {
6004 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6005 gen_helper_440_tlbwe(t0
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
6006 tcg_temp_free_i32(t0
);
6010 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6017 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
)
6019 #if defined(CONFIG_USER_ONLY)
6020 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6023 if (unlikely(!ctx
->mem_idx
)) {
6024 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6027 t0
= tcg_temp_new();
6028 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
6029 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6030 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
6032 /* Stop translation to have a chance to raise an exception
6033 * if we just set msr_ee to 1
6035 gen_stop_exception(ctx
);
6040 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_WRTEE
)
6042 #if defined(CONFIG_USER_ONLY)
6043 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6045 if (unlikely(!ctx
->mem_idx
)) {
6046 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6049 if (ctx
->opcode
& 0x00010000) {
6050 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
6051 /* Stop translation to have a chance to raise an exception */
6052 gen_stop_exception(ctx
);
6054 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6059 /* PowerPC 440 specific instructions */
6061 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
)
6063 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
6064 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
6065 cpu_gpr
[rB(ctx
->opcode
)], t0
);
6066 tcg_temp_free_i32(t0
);
6069 /* mbar replaces eieio on 440 */
6070 GEN_HANDLER(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE
)
6072 /* interpreted as no-op */
6075 /* msync replaces sync on 440 */
6076 GEN_HANDLER(msync
, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE
)
6078 /* interpreted as no-op */
6082 GEN_HANDLER2(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE
)
6084 /* interpreted as no-op */
6085 /* XXX: specification say this is treated as a load by the MMU
6086 * but does not generate any exception
6090 /*** Altivec vector extension ***/
6091 /* Altivec registers moves */
6093 static always_inline TCGv_ptr
gen_avr_ptr(int reg
)
6095 TCGv_ptr r
= tcg_temp_new_ptr();
6096 tcg_gen_addi_ptr(r
, cpu_env
, offsetof(CPUPPCState
, avr
[reg
]));
6100 #define GEN_VR_LDX(name, opc2, opc3) \
6101 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6104 if (unlikely(!ctx->altivec_enabled)) { \
6105 gen_exception(ctx, POWERPC_EXCP_VPU); \
6108 gen_set_access_type(ctx, ACCESS_INT); \
6109 EA = tcg_temp_new(); \
6110 gen_addr_reg_index(ctx, EA); \
6111 tcg_gen_andi_tl(EA, EA, ~0xf); \
6112 if (ctx->le_mode) { \
6113 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6114 tcg_gen_addi_tl(EA, EA, 8); \
6115 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6117 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6118 tcg_gen_addi_tl(EA, EA, 8); \
6119 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6121 tcg_temp_free(EA); \
6124 #define GEN_VR_STX(name, opc2, opc3) \
6125 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6128 if (unlikely(!ctx->altivec_enabled)) { \
6129 gen_exception(ctx, POWERPC_EXCP_VPU); \
6132 gen_set_access_type(ctx, ACCESS_INT); \
6133 EA = tcg_temp_new(); \
6134 gen_addr_reg_index(ctx, EA); \
6135 tcg_gen_andi_tl(EA, EA, ~0xf); \
6136 if (ctx->le_mode) { \
6137 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6138 tcg_gen_addi_tl(EA, EA, 8); \
6139 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6141 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6142 tcg_gen_addi_tl(EA, EA, 8); \
6143 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6145 tcg_temp_free(EA); \
6148 #define GEN_VR_LVE(name, opc2, opc3) \
6149 GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6153 if (unlikely(!ctx->altivec_enabled)) { \
6154 gen_exception(ctx, POWERPC_EXCP_VPU); \
6157 gen_set_access_type(ctx, ACCESS_INT); \
6158 EA = tcg_temp_new(); \
6159 gen_addr_reg_index(ctx, EA); \
6160 rs = gen_avr_ptr(rS(ctx->opcode)); \
6161 gen_helper_lve##name (rs, EA); \
6162 tcg_temp_free(EA); \
6163 tcg_temp_free_ptr(rs); \
6166 #define GEN_VR_STVE(name, opc2, opc3) \
6167 GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6171 if (unlikely(!ctx->altivec_enabled)) { \
6172 gen_exception(ctx, POWERPC_EXCP_VPU); \
6175 gen_set_access_type(ctx, ACCESS_INT); \
6176 EA = tcg_temp_new(); \
6177 gen_addr_reg_index(ctx, EA); \
6178 rs = gen_avr_ptr(rS(ctx->opcode)); \
6179 gen_helper_stve##name (rs, EA); \
6180 tcg_temp_free(EA); \
6181 tcg_temp_free_ptr(rs); \
6184 GEN_VR_LDX(lvx
, 0x07, 0x03);
6185 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6186 GEN_VR_LDX(lvxl
, 0x07, 0x0B);
6188 GEN_VR_LVE(bx
, 0x07, 0x00);
6189 GEN_VR_LVE(hx
, 0x07, 0x01);
6190 GEN_VR_LVE(wx
, 0x07, 0x02);
6192 GEN_VR_STX(svx
, 0x07, 0x07);
6193 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6194 GEN_VR_STX(svxl
, 0x07, 0x0F);
6196 GEN_VR_STVE(bx
, 0x07, 0x04);
6197 GEN_VR_STVE(hx
, 0x07, 0x05);
6198 GEN_VR_STVE(wx
, 0x07, 0x06);
6200 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
)
6204 if (unlikely(!ctx
->altivec_enabled
)) {
6205 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6208 EA
= tcg_temp_new();
6209 gen_addr_reg_index(ctx
, EA
);
6210 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6211 gen_helper_lvsl(rd
, EA
);
6213 tcg_temp_free_ptr(rd
);
6216 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
)
6220 if (unlikely(!ctx
->altivec_enabled
)) {
6221 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6224 EA
= tcg_temp_new();
6225 gen_addr_reg_index(ctx
, EA
);
6226 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6227 gen_helper_lvsr(rd
, EA
);
6229 tcg_temp_free_ptr(rd
);
6232 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
)
6235 if (unlikely(!ctx
->altivec_enabled
)) {
6236 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6239 tcg_gen_movi_i64(cpu_avrh
[rD(ctx
->opcode
)], 0);
6240 t
= tcg_temp_new_i32();
6241 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUState
, vscr
));
6242 tcg_gen_extu_i32_i64(cpu_avrl
[rD(ctx
->opcode
)], t
);
6243 tcg_temp_free_i32(t
);
6246 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
)
6249 if (unlikely(!ctx
->altivec_enabled
)) {
6250 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6253 p
= gen_avr_ptr(rD(ctx
->opcode
));
6254 gen_helper_mtvscr(p
);
6255 tcg_temp_free_ptr(p
);
6258 /* Logical operations */
6259 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
6260 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6262 if (unlikely(!ctx->altivec_enabled)) { \
6263 gen_exception(ctx, POWERPC_EXCP_VPU); \
6266 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6267 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6270 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16);
6271 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17);
6272 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18);
6273 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19);
6274 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20);
6276 #define GEN_VXFORM(name, opc2, opc3) \
6277 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6279 TCGv_ptr ra, rb, rd; \
6280 if (unlikely(!ctx->altivec_enabled)) { \
6281 gen_exception(ctx, POWERPC_EXCP_VPU); \
6284 ra = gen_avr_ptr(rA(ctx->opcode)); \
6285 rb = gen_avr_ptr(rB(ctx->opcode)); \
6286 rd = gen_avr_ptr(rD(ctx->opcode)); \
6287 gen_helper_##name (rd, ra, rb); \
6288 tcg_temp_free_ptr(ra); \
6289 tcg_temp_free_ptr(rb); \
6290 tcg_temp_free_ptr(rd); \
6293 GEN_VXFORM(vaddubm
, 0, 0);
6294 GEN_VXFORM(vadduhm
, 0, 1);
6295 GEN_VXFORM(vadduwm
, 0, 2);
6296 GEN_VXFORM(vsububm
, 0, 16);
6297 GEN_VXFORM(vsubuhm
, 0, 17);
6298 GEN_VXFORM(vsubuwm
, 0, 18);
6299 GEN_VXFORM(vmaxub
, 1, 0);
6300 GEN_VXFORM(vmaxuh
, 1, 1);
6301 GEN_VXFORM(vmaxuw
, 1, 2);
6302 GEN_VXFORM(vmaxsb
, 1, 4);
6303 GEN_VXFORM(vmaxsh
, 1, 5);
6304 GEN_VXFORM(vmaxsw
, 1, 6);
6305 GEN_VXFORM(vminub
, 1, 8);
6306 GEN_VXFORM(vminuh
, 1, 9);
6307 GEN_VXFORM(vminuw
, 1, 10);
6308 GEN_VXFORM(vminsb
, 1, 12);
6309 GEN_VXFORM(vminsh
, 1, 13);
6310 GEN_VXFORM(vminsw
, 1, 14);
6311 GEN_VXFORM(vavgub
, 1, 16);
6312 GEN_VXFORM(vavguh
, 1, 17);
6313 GEN_VXFORM(vavguw
, 1, 18);
6314 GEN_VXFORM(vavgsb
, 1, 20);
6315 GEN_VXFORM(vavgsh
, 1, 21);
6316 GEN_VXFORM(vavgsw
, 1, 22);
6317 GEN_VXFORM(vmrghb
, 6, 0);
6318 GEN_VXFORM(vmrghh
, 6, 1);
6319 GEN_VXFORM(vmrghw
, 6, 2);
6320 GEN_VXFORM(vmrglb
, 6, 4);
6321 GEN_VXFORM(vmrglh
, 6, 5);
6322 GEN_VXFORM(vmrglw
, 6, 6);
6323 GEN_VXFORM(vmuloub
, 4, 0);
6324 GEN_VXFORM(vmulouh
, 4, 1);
6325 GEN_VXFORM(vmulosb
, 4, 4);
6326 GEN_VXFORM(vmulosh
, 4, 5);
6327 GEN_VXFORM(vmuleub
, 4, 8);
6328 GEN_VXFORM(vmuleuh
, 4, 9);
6329 GEN_VXFORM(vmulesb
, 4, 12);
6330 GEN_VXFORM(vmulesh
, 4, 13);
6331 GEN_VXFORM(vslb
, 2, 4);
6332 GEN_VXFORM(vslh
, 2, 5);
6333 GEN_VXFORM(vslw
, 2, 6);
6334 GEN_VXFORM(vsrb
, 2, 8);
6335 GEN_VXFORM(vsrh
, 2, 9);
6336 GEN_VXFORM(vsrw
, 2, 10);
6337 GEN_VXFORM(vsrab
, 2, 12);
6338 GEN_VXFORM(vsrah
, 2, 13);
6339 GEN_VXFORM(vsraw
, 2, 14);
6340 GEN_VXFORM(vslo
, 6, 16);
6341 GEN_VXFORM(vsro
, 6, 17);
6342 GEN_VXFORM(vaddcuw
, 0, 6);
6343 GEN_VXFORM(vsubcuw
, 0, 22);
6344 GEN_VXFORM(vaddubs
, 0, 8);
6345 GEN_VXFORM(vadduhs
, 0, 9);
6346 GEN_VXFORM(vadduws
, 0, 10);
6347 GEN_VXFORM(vaddsbs
, 0, 12);
6348 GEN_VXFORM(vaddshs
, 0, 13);
6349 GEN_VXFORM(vaddsws
, 0, 14);
6350 GEN_VXFORM(vsububs
, 0, 24);
6351 GEN_VXFORM(vsubuhs
, 0, 25);
6352 GEN_VXFORM(vsubuws
, 0, 26);
6353 GEN_VXFORM(vsubsbs
, 0, 28);
6354 GEN_VXFORM(vsubshs
, 0, 29);
6355 GEN_VXFORM(vsubsws
, 0, 30);
6356 GEN_VXFORM(vrlb
, 2, 0);
6357 GEN_VXFORM(vrlh
, 2, 1);
6358 GEN_VXFORM(vrlw
, 2, 2);
6359 GEN_VXFORM(vsl
, 2, 7);
6360 GEN_VXFORM(vsr
, 2, 11);
6361 GEN_VXFORM(vpkuhum
, 7, 0);
6362 GEN_VXFORM(vpkuwum
, 7, 1);
6363 GEN_VXFORM(vpkuhus
, 7, 2);
6364 GEN_VXFORM(vpkuwus
, 7, 3);
6365 GEN_VXFORM(vpkshus
, 7, 4);
6366 GEN_VXFORM(vpkswus
, 7, 5);
6367 GEN_VXFORM(vpkshss
, 7, 6);
6368 GEN_VXFORM(vpkswss
, 7, 7);
6369 GEN_VXFORM(vpkpx
, 7, 12);
6370 GEN_VXFORM(vsum4ubs
, 4, 24);
6371 GEN_VXFORM(vsum4sbs
, 4, 28);
6372 GEN_VXFORM(vsum4shs
, 4, 25);
6373 GEN_VXFORM(vsum2sws
, 4, 26);
6374 GEN_VXFORM(vsumsws
, 4, 30);
6375 GEN_VXFORM(vaddfp
, 5, 0);
6376 GEN_VXFORM(vsubfp
, 5, 1);
6377 GEN_VXFORM(vmaxfp
, 5, 16);
6378 GEN_VXFORM(vminfp
, 5, 17);
6380 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
6381 GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6383 TCGv_ptr ra, rb, rd; \
6384 if (unlikely(!ctx->altivec_enabled)) { \
6385 gen_exception(ctx, POWERPC_EXCP_VPU); \
6388 ra = gen_avr_ptr(rA(ctx->opcode)); \
6389 rb = gen_avr_ptr(rB(ctx->opcode)); \
6390 rd = gen_avr_ptr(rD(ctx->opcode)); \
6391 gen_helper_##opname (rd, ra, rb); \
6392 tcg_temp_free_ptr(ra); \
6393 tcg_temp_free_ptr(rb); \
6394 tcg_temp_free_ptr(rd); \
6397 #define GEN_VXRFORM(name, opc2, opc3) \
6398 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
6399 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6401 GEN_VXRFORM(vcmpequb
, 3, 0)
6402 GEN_VXRFORM(vcmpequh
, 3, 1)
6403 GEN_VXRFORM(vcmpequw
, 3, 2)
6404 GEN_VXRFORM(vcmpgtsb
, 3, 12)
6405 GEN_VXRFORM(vcmpgtsh
, 3, 13)
6406 GEN_VXRFORM(vcmpgtsw
, 3, 14)
6407 GEN_VXRFORM(vcmpgtub
, 3, 8)
6408 GEN_VXRFORM(vcmpgtuh
, 3, 9)
6409 GEN_VXRFORM(vcmpgtuw
, 3, 10)
6410 GEN_VXRFORM(vcmpeqfp
, 3, 3)
6411 GEN_VXRFORM(vcmpgefp
, 3, 7)
6412 GEN_VXRFORM(vcmpgtfp
, 3, 11)
6413 GEN_VXRFORM(vcmpbfp
, 3, 15)
6415 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6416 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6420 if (unlikely(!ctx->altivec_enabled)) { \
6421 gen_exception(ctx, POWERPC_EXCP_VPU); \
6424 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6425 rd = gen_avr_ptr(rD(ctx->opcode)); \
6426 gen_helper_##name (rd, simm); \
6427 tcg_temp_free_i32(simm); \
6428 tcg_temp_free_ptr(rd); \
6431 GEN_VXFORM_SIMM(vspltisb
, 6, 12);
6432 GEN_VXFORM_SIMM(vspltish
, 6, 13);
6433 GEN_VXFORM_SIMM(vspltisw
, 6, 14);
6435 #define GEN_VXFORM_NOA(name, opc2, opc3) \
6436 GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC) \
6439 if (unlikely(!ctx->altivec_enabled)) { \
6440 gen_exception(ctx, POWERPC_EXCP_VPU); \
6443 rb = gen_avr_ptr(rB(ctx->opcode)); \
6444 rd = gen_avr_ptr(rD(ctx->opcode)); \
6445 gen_helper_##name (rd, rb); \
6446 tcg_temp_free_ptr(rb); \
6447 tcg_temp_free_ptr(rd); \
6450 GEN_VXFORM_NOA(vupkhsb
, 7, 8);
6451 GEN_VXFORM_NOA(vupkhsh
, 7, 9);
6452 GEN_VXFORM_NOA(vupklsb
, 7, 10);
6453 GEN_VXFORM_NOA(vupklsh
, 7, 11);
6454 GEN_VXFORM_NOA(vupkhpx
, 7, 13);
6455 GEN_VXFORM_NOA(vupklpx
, 7, 15);
6456 GEN_VXFORM_NOA(vrefp
, 5, 4);
6457 GEN_VXFORM_NOA(vrsqrtefp
, 5, 5);
6458 GEN_VXFORM_NOA(vlogefp
, 5, 7);
6459 GEN_VXFORM_NOA(vrfim
, 5, 8);
6460 GEN_VXFORM_NOA(vrfin
, 5, 9);
6461 GEN_VXFORM_NOA(vrfip
, 5, 10);
6462 GEN_VXFORM_NOA(vrfiz
, 5, 11);
6464 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6465 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6469 if (unlikely(!ctx->altivec_enabled)) { \
6470 gen_exception(ctx, POWERPC_EXCP_VPU); \
6473 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6474 rd = gen_avr_ptr(rD(ctx->opcode)); \
6475 gen_helper_##name (rd, simm); \
6476 tcg_temp_free_i32(simm); \
6477 tcg_temp_free_ptr(rd); \
6480 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
6481 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6485 if (unlikely(!ctx->altivec_enabled)) { \
6486 gen_exception(ctx, POWERPC_EXCP_VPU); \
6489 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6490 rb = gen_avr_ptr(rB(ctx->opcode)); \
6491 rd = gen_avr_ptr(rD(ctx->opcode)); \
6492 gen_helper_##name (rd, rb, uimm); \
6493 tcg_temp_free_i32(uimm); \
6494 tcg_temp_free_ptr(rb); \
6495 tcg_temp_free_ptr(rd); \
6498 GEN_VXFORM_UIMM(vspltb
, 6, 8);
6499 GEN_VXFORM_UIMM(vsplth
, 6, 9);
6500 GEN_VXFORM_UIMM(vspltw
, 6, 10);
6501 GEN_VXFORM_UIMM(vcfux
, 5, 12);
6502 GEN_VXFORM_UIMM(vcfsx
, 5, 13);
6503 GEN_VXFORM_UIMM(vctuxs
, 5, 14);
6504 GEN_VXFORM_UIMM(vctsxs
, 5, 15);
6506 GEN_HANDLER(vsldoi
, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC
)
6508 TCGv_ptr ra
, rb
, rd
;
6510 if (unlikely(!ctx
->altivec_enabled
)) {
6511 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6514 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6515 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6516 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6517 sh
= tcg_const_i32(VSH(ctx
->opcode
));
6518 gen_helper_vsldoi (rd
, ra
, rb
, sh
);
6519 tcg_temp_free_ptr(ra
);
6520 tcg_temp_free_ptr(rb
);
6521 tcg_temp_free_ptr(rd
);
6522 tcg_temp_free_i32(sh
);
6525 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
6526 GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC) \
6528 TCGv_ptr ra, rb, rc, rd; \
6529 if (unlikely(!ctx->altivec_enabled)) { \
6530 gen_exception(ctx, POWERPC_EXCP_VPU); \
6533 ra = gen_avr_ptr(rA(ctx->opcode)); \
6534 rb = gen_avr_ptr(rB(ctx->opcode)); \
6535 rc = gen_avr_ptr(rC(ctx->opcode)); \
6536 rd = gen_avr_ptr(rD(ctx->opcode)); \
6537 if (Rc(ctx->opcode)) { \
6538 gen_helper_##name1 (rd, ra, rb, rc); \
6540 gen_helper_##name0 (rd, ra, rb, rc); \
6542 tcg_temp_free_ptr(ra); \
6543 tcg_temp_free_ptr(rb); \
6544 tcg_temp_free_ptr(rc); \
6545 tcg_temp_free_ptr(rd); \
6548 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16)
6550 GEN_HANDLER(vmladduhm
, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC
)
6552 TCGv_ptr ra
, rb
, rc
, rd
;
6553 if (unlikely(!ctx
->altivec_enabled
)) {
6554 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6557 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6558 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6559 rc
= gen_avr_ptr(rC(ctx
->opcode
));
6560 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6561 gen_helper_vmladduhm(rd
, ra
, rb
, rc
);
6562 tcg_temp_free_ptr(ra
);
6563 tcg_temp_free_ptr(rb
);
6564 tcg_temp_free_ptr(rc
);
6565 tcg_temp_free_ptr(rd
);
6568 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18)
6569 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19)
6570 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20)
6571 GEN_VAFORM_PAIRED(vsel
, vperm
, 21)
6572 GEN_VAFORM_PAIRED(vmaddfp
, vnmsubfp
, 23)
6574 /*** SPE extension ***/
6575 /* Register moves */
6577 static always_inline
void gen_load_gpr64(TCGv_i64 t
, int reg
) {
6578 #if defined(TARGET_PPC64)
6579 tcg_gen_mov_i64(t
, cpu_gpr
[reg
]);
6581 tcg_gen_concat_i32_i64(t
, cpu_gpr
[reg
], cpu_gprh
[reg
]);
6585 static always_inline
void gen_store_gpr64(int reg
, TCGv_i64 t
) {
6586 #if defined(TARGET_PPC64)
6587 tcg_gen_mov_i64(cpu_gpr
[reg
], t
);
6589 TCGv_i64 tmp
= tcg_temp_new_i64();
6590 tcg_gen_trunc_i64_i32(cpu_gpr
[reg
], t
);
6591 tcg_gen_shri_i64(tmp
, t
, 32);
6592 tcg_gen_trunc_i64_i32(cpu_gprh
[reg
], tmp
);
6593 tcg_temp_free_i64(tmp
);
6597 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
6598 GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type) \
6600 if (Rc(ctx->opcode)) \
6606 /* Handler for undefined SPE opcodes */
6607 static always_inline
void gen_speundef (DisasContext
*ctx
)
6609 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6613 #if defined(TARGET_PPC64)
6614 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6615 static always_inline void gen_##name (DisasContext *ctx) \
6617 if (unlikely(!ctx->spe_enabled)) { \
6618 gen_exception(ctx, POWERPC_EXCP_APU); \
6621 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6622 cpu_gpr[rB(ctx->opcode)]); \
6625 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6626 static always_inline void gen_##name (DisasContext *ctx) \
6628 if (unlikely(!ctx->spe_enabled)) { \
6629 gen_exception(ctx, POWERPC_EXCP_APU); \
6632 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6633 cpu_gpr[rB(ctx->opcode)]); \
6634 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6635 cpu_gprh[rB(ctx->opcode)]); \
6639 GEN_SPEOP_LOGIC2(evand
, tcg_gen_and_tl
);
6640 GEN_SPEOP_LOGIC2(evandc
, tcg_gen_andc_tl
);
6641 GEN_SPEOP_LOGIC2(evxor
, tcg_gen_xor_tl
);
6642 GEN_SPEOP_LOGIC2(evor
, tcg_gen_or_tl
);
6643 GEN_SPEOP_LOGIC2(evnor
, tcg_gen_nor_tl
);
6644 GEN_SPEOP_LOGIC2(eveqv
, tcg_gen_eqv_tl
);
6645 GEN_SPEOP_LOGIC2(evorc
, tcg_gen_orc_tl
);
6646 GEN_SPEOP_LOGIC2(evnand
, tcg_gen_nand_tl
);
6648 /* SPE logic immediate */
6649 #if defined(TARGET_PPC64)
6650 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6651 static always_inline void gen_##name (DisasContext *ctx) \
6653 if (unlikely(!ctx->spe_enabled)) { \
6654 gen_exception(ctx, POWERPC_EXCP_APU); \
6657 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6658 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6659 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6660 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6661 tcg_opi(t0, t0, rB(ctx->opcode)); \
6662 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6663 tcg_gen_trunc_i64_i32(t1, t2); \
6664 tcg_temp_free_i64(t2); \
6665 tcg_opi(t1, t1, rB(ctx->opcode)); \
6666 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6667 tcg_temp_free_i32(t0); \
6668 tcg_temp_free_i32(t1); \
6671 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6672 static always_inline void gen_##name (DisasContext *ctx) \
6674 if (unlikely(!ctx->spe_enabled)) { \
6675 gen_exception(ctx, POWERPC_EXCP_APU); \
6678 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6680 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6684 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi
, tcg_gen_shli_i32
);
6685 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu
, tcg_gen_shri_i32
);
6686 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis
, tcg_gen_sari_i32
);
6687 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi
, tcg_gen_rotli_i32
);
6689 /* SPE arithmetic */
6690 #if defined(TARGET_PPC64)
6691 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6692 static always_inline void gen_##name (DisasContext *ctx) \
6694 if (unlikely(!ctx->spe_enabled)) { \
6695 gen_exception(ctx, POWERPC_EXCP_APU); \
6698 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6699 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6700 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6701 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6703 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6704 tcg_gen_trunc_i64_i32(t1, t2); \
6705 tcg_temp_free_i64(t2); \
6707 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6708 tcg_temp_free_i32(t0); \
6709 tcg_temp_free_i32(t1); \
6712 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6713 static always_inline void gen_##name (DisasContext *ctx) \
6715 if (unlikely(!ctx->spe_enabled)) { \
6716 gen_exception(ctx, POWERPC_EXCP_APU); \
6719 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6720 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6724 static always_inline
void gen_op_evabs (TCGv_i32 ret
, TCGv_i32 arg1
)
6726 int l1
= gen_new_label();
6727 int l2
= gen_new_label();
6729 tcg_gen_brcondi_i32(TCG_COND_GE
, arg1
, 0, l1
);
6730 tcg_gen_neg_i32(ret
, arg1
);
6733 tcg_gen_mov_i32(ret
, arg1
);
6736 GEN_SPEOP_ARITH1(evabs
, gen_op_evabs
);
6737 GEN_SPEOP_ARITH1(evneg
, tcg_gen_neg_i32
);
6738 GEN_SPEOP_ARITH1(evextsb
, tcg_gen_ext8s_i32
);
6739 GEN_SPEOP_ARITH1(evextsh
, tcg_gen_ext16s_i32
);
6740 static always_inline
void gen_op_evrndw (TCGv_i32 ret
, TCGv_i32 arg1
)
6742 tcg_gen_addi_i32(ret
, arg1
, 0x8000);
6743 tcg_gen_ext16u_i32(ret
, ret
);
6745 GEN_SPEOP_ARITH1(evrndw
, gen_op_evrndw
);
6746 GEN_SPEOP_ARITH1(evcntlsw
, gen_helper_cntlsw32
);
6747 GEN_SPEOP_ARITH1(evcntlzw
, gen_helper_cntlzw32
);
6749 #if defined(TARGET_PPC64)
6750 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6751 static always_inline void gen_##name (DisasContext *ctx) \
6753 if (unlikely(!ctx->spe_enabled)) { \
6754 gen_exception(ctx, POWERPC_EXCP_APU); \
6757 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6758 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6759 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
6760 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
6761 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6762 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6763 tcg_op(t0, t0, t2); \
6764 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6765 tcg_gen_trunc_i64_i32(t1, t3); \
6766 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6767 tcg_gen_trunc_i64_i32(t2, t3); \
6768 tcg_temp_free_i64(t3); \
6769 tcg_op(t1, t1, t2); \
6770 tcg_temp_free_i32(t2); \
6771 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6772 tcg_temp_free_i32(t0); \
6773 tcg_temp_free_i32(t1); \
6776 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6777 static always_inline void gen_##name (DisasContext *ctx) \
6779 if (unlikely(!ctx->spe_enabled)) { \
6780 gen_exception(ctx, POWERPC_EXCP_APU); \
6783 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6784 cpu_gpr[rB(ctx->opcode)]); \
6785 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6786 cpu_gprh[rB(ctx->opcode)]); \
6790 static always_inline
void gen_op_evsrwu (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6795 l1
= gen_new_label();
6796 l2
= gen_new_label();
6797 t0
= tcg_temp_local_new_i32();
6798 /* No error here: 6 bits are used */
6799 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6800 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6801 tcg_gen_shr_i32(ret
, arg1
, t0
);
6804 tcg_gen_movi_i32(ret
, 0);
6806 tcg_temp_free_i32(t0
);
6808 GEN_SPEOP_ARITH2(evsrwu
, gen_op_evsrwu
);
6809 static always_inline
void gen_op_evsrws (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6814 l1
= gen_new_label();
6815 l2
= gen_new_label();
6816 t0
= tcg_temp_local_new_i32();
6817 /* No error here: 6 bits are used */
6818 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6819 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6820 tcg_gen_sar_i32(ret
, arg1
, t0
);
6823 tcg_gen_movi_i32(ret
, 0);
6825 tcg_temp_free_i32(t0
);
6827 GEN_SPEOP_ARITH2(evsrws
, gen_op_evsrws
);
6828 static always_inline
void gen_op_evslw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6833 l1
= gen_new_label();
6834 l2
= gen_new_label();
6835 t0
= tcg_temp_local_new_i32();
6836 /* No error here: 6 bits are used */
6837 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6838 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6839 tcg_gen_shl_i32(ret
, arg1
, t0
);
6842 tcg_gen_movi_i32(ret
, 0);
6844 tcg_temp_free_i32(t0
);
6846 GEN_SPEOP_ARITH2(evslw
, gen_op_evslw
);
6847 static always_inline
void gen_op_evrlw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6849 TCGv_i32 t0
= tcg_temp_new_i32();
6850 tcg_gen_andi_i32(t0
, arg2
, 0x1F);
6851 tcg_gen_rotl_i32(ret
, arg1
, t0
);
6852 tcg_temp_free_i32(t0
);
6854 GEN_SPEOP_ARITH2(evrlw
, gen_op_evrlw
);
6855 static always_inline
void gen_evmergehi (DisasContext
*ctx
)
6857 if (unlikely(!ctx
->spe_enabled
)) {
6858 gen_exception(ctx
, POWERPC_EXCP_APU
);
6861 #if defined(TARGET_PPC64)
6862 TCGv t0
= tcg_temp_new();
6863 TCGv t1
= tcg_temp_new();
6864 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
6865 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
6866 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6870 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
6871 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6874 GEN_SPEOP_ARITH2(evaddw
, tcg_gen_add_i32
);
6875 static always_inline
void gen_op_evsubf (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6877 tcg_gen_sub_i32(ret
, arg2
, arg1
);
6879 GEN_SPEOP_ARITH2(evsubfw
, gen_op_evsubf
);
6881 /* SPE arithmetic immediate */
6882 #if defined(TARGET_PPC64)
6883 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6884 static always_inline void gen_##name (DisasContext *ctx) \
6886 if (unlikely(!ctx->spe_enabled)) { \
6887 gen_exception(ctx, POWERPC_EXCP_APU); \
6890 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6891 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6892 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6893 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
6894 tcg_op(t0, t0, rA(ctx->opcode)); \
6895 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6896 tcg_gen_trunc_i64_i32(t1, t2); \
6897 tcg_temp_free_i64(t2); \
6898 tcg_op(t1, t1, rA(ctx->opcode)); \
6899 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6900 tcg_temp_free_i32(t0); \
6901 tcg_temp_free_i32(t1); \
6904 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6905 static always_inline void gen_##name (DisasContext *ctx) \
6907 if (unlikely(!ctx->spe_enabled)) { \
6908 gen_exception(ctx, POWERPC_EXCP_APU); \
6911 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
6913 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
6917 GEN_SPEOP_ARITH_IMM2(evaddiw
, tcg_gen_addi_i32
);
6918 GEN_SPEOP_ARITH_IMM2(evsubifw
, tcg_gen_subi_i32
);
6920 /* SPE comparison */
6921 #if defined(TARGET_PPC64)
6922 #define GEN_SPEOP_COMP(name, tcg_cond) \
6923 static always_inline void gen_##name (DisasContext *ctx) \
6925 if (unlikely(!ctx->spe_enabled)) { \
6926 gen_exception(ctx, POWERPC_EXCP_APU); \
6929 int l1 = gen_new_label(); \
6930 int l2 = gen_new_label(); \
6931 int l3 = gen_new_label(); \
6932 int l4 = gen_new_label(); \
6933 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6934 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6935 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6936 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6937 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
6938 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
6939 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
6941 gen_set_label(l1); \
6942 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6943 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6944 gen_set_label(l2); \
6945 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6946 tcg_gen_trunc_i64_i32(t0, t2); \
6947 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6948 tcg_gen_trunc_i64_i32(t1, t2); \
6949 tcg_temp_free_i64(t2); \
6950 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
6951 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6952 ~(CRF_CH | CRF_CH_AND_CL)); \
6954 gen_set_label(l3); \
6955 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6956 CRF_CH | CRF_CH_OR_CL); \
6957 gen_set_label(l4); \
6958 tcg_temp_free_i32(t0); \
6959 tcg_temp_free_i32(t1); \
6962 #define GEN_SPEOP_COMP(name, tcg_cond) \
6963 static always_inline void gen_##name (DisasContext *ctx) \
6965 if (unlikely(!ctx->spe_enabled)) { \
6966 gen_exception(ctx, POWERPC_EXCP_APU); \
6969 int l1 = gen_new_label(); \
6970 int l2 = gen_new_label(); \
6971 int l3 = gen_new_label(); \
6972 int l4 = gen_new_label(); \
6974 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
6975 cpu_gpr[rB(ctx->opcode)], l1); \
6976 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
6978 gen_set_label(l1); \
6979 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6980 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6981 gen_set_label(l2); \
6982 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
6983 cpu_gprh[rB(ctx->opcode)], l3); \
6984 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6985 ~(CRF_CH | CRF_CH_AND_CL)); \
6987 gen_set_label(l3); \
6988 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6989 CRF_CH | CRF_CH_OR_CL); \
6990 gen_set_label(l4); \
6993 GEN_SPEOP_COMP(evcmpgtu
, TCG_COND_GTU
);
6994 GEN_SPEOP_COMP(evcmpgts
, TCG_COND_GT
);
6995 GEN_SPEOP_COMP(evcmpltu
, TCG_COND_LTU
);
6996 GEN_SPEOP_COMP(evcmplts
, TCG_COND_LT
);
6997 GEN_SPEOP_COMP(evcmpeq
, TCG_COND_EQ
);
7000 static always_inline
void gen_brinc (DisasContext
*ctx
)
7002 /* Note: brinc is usable even if SPE is disabled */
7003 gen_helper_brinc(cpu_gpr
[rD(ctx
->opcode
)],
7004 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7006 static always_inline
void gen_evmergelo (DisasContext
*ctx
)
7008 if (unlikely(!ctx
->spe_enabled
)) {
7009 gen_exception(ctx
, POWERPC_EXCP_APU
);
7012 #if defined(TARGET_PPC64)
7013 TCGv t0
= tcg_temp_new();
7014 TCGv t1
= tcg_temp_new();
7015 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
7016 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7017 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7021 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7022 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7025 static always_inline
void gen_evmergehilo (DisasContext
*ctx
)
7027 if (unlikely(!ctx
->spe_enabled
)) {
7028 gen_exception(ctx
, POWERPC_EXCP_APU
);
7031 #if defined(TARGET_PPC64)
7032 TCGv t0
= tcg_temp_new();
7033 TCGv t1
= tcg_temp_new();
7034 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
7035 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
7036 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7040 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7041 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7044 static always_inline
void gen_evmergelohi (DisasContext
*ctx
)
7046 if (unlikely(!ctx
->spe_enabled
)) {
7047 gen_exception(ctx
, POWERPC_EXCP_APU
);
7050 #if defined(TARGET_PPC64)
7051 TCGv t0
= tcg_temp_new();
7052 TCGv t1
= tcg_temp_new();
7053 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
7054 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7055 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7059 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7060 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7063 static always_inline
void gen_evsplati (DisasContext
*ctx
)
7065 uint64_t imm
= ((int32_t)(rA(ctx
->opcode
) << 11)) >> 27;
7067 #if defined(TARGET_PPC64)
7068 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7070 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7071 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7074 static always_inline
void gen_evsplatfi (DisasContext
*ctx
)
7076 uint64_t imm
= rA(ctx
->opcode
) << 11;
7078 #if defined(TARGET_PPC64)
7079 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7081 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7082 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7086 static always_inline
void gen_evsel (DisasContext
*ctx
)
7088 int l1
= gen_new_label();
7089 int l2
= gen_new_label();
7090 int l3
= gen_new_label();
7091 int l4
= gen_new_label();
7092 TCGv_i32 t0
= tcg_temp_local_new_i32();
7093 #if defined(TARGET_PPC64)
7094 TCGv t1
= tcg_temp_local_new();
7095 TCGv t2
= tcg_temp_local_new();
7097 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 3);
7098 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
7099 #if defined(TARGET_PPC64)
7100 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7102 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7106 #if defined(TARGET_PPC64)
7107 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7109 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7112 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 2);
7113 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l3
);
7114 #if defined(TARGET_PPC64)
7115 tcg_gen_andi_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7117 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7121 #if defined(TARGET_PPC64)
7122 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7124 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7127 tcg_temp_free_i32(t0
);
7128 #if defined(TARGET_PPC64)
7129 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
, t2
);
7134 GEN_HANDLER2(evsel0
, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE
)
7138 GEN_HANDLER2(evsel1
, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE
)
7142 GEN_HANDLER2(evsel2
, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE
)
7146 GEN_HANDLER2(evsel3
, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE
)
7151 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, PPC_SPE
); ////
7152 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, PPC_SPE
);
7153 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, PPC_SPE
); ////
7154 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, PPC_SPE
);
7155 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, PPC_SPE
); ////
7156 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, PPC_SPE
); ////
7157 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, PPC_SPE
); ////
7158 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x00000000, PPC_SPE
); //
7159 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0x00000000, PPC_SPE
); ////
7160 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, PPC_SPE
); ////
7161 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, PPC_SPE
); ////
7162 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, PPC_SPE
); ////
7163 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0x00000000, PPC_SPE
); ////
7164 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, PPC_SPE
); ////
7165 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, PPC_SPE
); ////
7166 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, PPC_SPE
);
7167 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, PPC_SPE
); ////
7168 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, PPC_SPE
);
7169 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, PPC_SPE
); //
7170 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, PPC_SPE
);
7171 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, PPC_SPE
); ////
7172 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, PPC_SPE
); ////
7173 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, PPC_SPE
); ////
7174 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, PPC_SPE
); ////
7175 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, PPC_SPE
); ////
7177 /* SPE load and stores */
7178 static always_inline
void gen_addr_spe_imm_index (DisasContext
*ctx
, TCGv EA
, int sh
)
7180 target_ulong uimm
= rB(ctx
->opcode
);
7182 if (rA(ctx
->opcode
) == 0) {
7183 tcg_gen_movi_tl(EA
, uimm
<< sh
);
7185 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], uimm
<< sh
);
7186 #if defined(TARGET_PPC64)
7187 if (!ctx
->sf_mode
) {
7188 tcg_gen_ext32u_tl(EA
, EA
);
7194 static always_inline
void gen_op_evldd(DisasContext
*ctx
, TCGv addr
)
7196 #if defined(TARGET_PPC64)
7197 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7199 TCGv_i64 t0
= tcg_temp_new_i64();
7200 gen_qemu_ld64(ctx
, t0
, addr
);
7201 tcg_gen_trunc_i64_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7202 tcg_gen_shri_i64(t0
, t0
, 32);
7203 tcg_gen_trunc_i64_i32(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7204 tcg_temp_free_i64(t0
);
7208 static always_inline
void gen_op_evldw(DisasContext
*ctx
, TCGv addr
)
7210 #if defined(TARGET_PPC64)
7211 TCGv t0
= tcg_temp_new();
7212 gen_qemu_ld32u(ctx
, t0
, addr
);
7213 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7214 gen_addr_add(ctx
, addr
, addr
, 4);
7215 gen_qemu_ld32u(ctx
, t0
, addr
);
7216 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7219 gen_qemu_ld32u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7220 gen_addr_add(ctx
, addr
, addr
, 4);
7221 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7225 static always_inline
void gen_op_evldh(DisasContext
*ctx
, TCGv addr
)
7227 TCGv t0
= tcg_temp_new();
7228 #if defined(TARGET_PPC64)
7229 gen_qemu_ld16u(ctx
, t0
, addr
);
7230 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7231 gen_addr_add(ctx
, addr
, addr
, 2);
7232 gen_qemu_ld16u(ctx
, t0
, addr
);
7233 tcg_gen_shli_tl(t0
, t0
, 32);
7234 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7235 gen_addr_add(ctx
, addr
, addr
, 2);
7236 gen_qemu_ld16u(ctx
, t0
, addr
);
7237 tcg_gen_shli_tl(t0
, t0
, 16);
7238 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7239 gen_addr_add(ctx
, addr
, addr
, 2);
7240 gen_qemu_ld16u(ctx
, t0
, addr
);
7241 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7243 gen_qemu_ld16u(ctx
, t0
, addr
);
7244 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7245 gen_addr_add(ctx
, addr
, addr
, 2);
7246 gen_qemu_ld16u(ctx
, t0
, addr
);
7247 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7248 gen_addr_add(ctx
, addr
, addr
, 2);
7249 gen_qemu_ld16u(ctx
, t0
, addr
);
7250 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7251 gen_addr_add(ctx
, addr
, addr
, 2);
7252 gen_qemu_ld16u(ctx
, t0
, addr
);
7253 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7258 static always_inline
void gen_op_evlhhesplat(DisasContext
*ctx
, TCGv addr
)
7260 TCGv t0
= tcg_temp_new();
7261 gen_qemu_ld16u(ctx
, t0
, addr
);
7262 #if defined(TARGET_PPC64)
7263 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7264 tcg_gen_shli_tl(t0
, t0
, 16);
7265 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7267 tcg_gen_shli_tl(t0
, t0
, 16);
7268 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7269 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7274 static always_inline
void gen_op_evlhhousplat(DisasContext
*ctx
, TCGv addr
)
7276 TCGv t0
= tcg_temp_new();
7277 gen_qemu_ld16u(ctx
, t0
, addr
);
7278 #if defined(TARGET_PPC64)
7279 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7280 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7282 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7283 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7288 static always_inline
void gen_op_evlhhossplat(DisasContext
*ctx
, TCGv addr
)
7290 TCGv t0
= tcg_temp_new();
7291 gen_qemu_ld16s(ctx
, t0
, addr
);
7292 #if defined(TARGET_PPC64)
7293 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7294 tcg_gen_ext32u_tl(t0
, t0
);
7295 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7297 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7298 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7303 static always_inline
void gen_op_evlwhe(DisasContext
*ctx
, TCGv addr
)
7305 TCGv t0
= tcg_temp_new();
7306 #if defined(TARGET_PPC64)
7307 gen_qemu_ld16u(ctx
, t0
, addr
);
7308 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7309 gen_addr_add(ctx
, addr
, addr
, 2);
7310 gen_qemu_ld16u(ctx
, t0
, addr
);
7311 tcg_gen_shli_tl(t0
, t0
, 16);
7312 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7314 gen_qemu_ld16u(ctx
, t0
, addr
);
7315 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7316 gen_addr_add(ctx
, addr
, addr
, 2);
7317 gen_qemu_ld16u(ctx
, t0
, addr
);
7318 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7323 static always_inline
void gen_op_evlwhou(DisasContext
*ctx
, TCGv addr
)
7325 #if defined(TARGET_PPC64)
7326 TCGv t0
= tcg_temp_new();
7327 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7328 gen_addr_add(ctx
, addr
, addr
, 2);
7329 gen_qemu_ld16u(ctx
, t0
, addr
);
7330 tcg_gen_shli_tl(t0
, t0
, 32);
7331 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7334 gen_qemu_ld16u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7335 gen_addr_add(ctx
, addr
, addr
, 2);
7336 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7340 static always_inline
void gen_op_evlwhos(DisasContext
*ctx
, TCGv addr
)
7342 #if defined(TARGET_PPC64)
7343 TCGv t0
= tcg_temp_new();
7344 gen_qemu_ld16s(ctx
, t0
, addr
);
7345 tcg_gen_ext32u_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7346 gen_addr_add(ctx
, addr
, addr
, 2);
7347 gen_qemu_ld16s(ctx
, t0
, addr
);
7348 tcg_gen_shli_tl(t0
, t0
, 32);
7349 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7352 gen_qemu_ld16s(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7353 gen_addr_add(ctx
, addr
, addr
, 2);
7354 gen_qemu_ld16s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7358 static always_inline
void gen_op_evlwwsplat(DisasContext
*ctx
, TCGv addr
)
7360 TCGv t0
= tcg_temp_new();
7361 gen_qemu_ld32u(ctx
, t0
, addr
);
7362 #if defined(TARGET_PPC64)
7363 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7364 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7366 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7367 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7372 static always_inline
void gen_op_evlwhsplat(DisasContext
*ctx
, TCGv addr
)
7374 TCGv t0
= tcg_temp_new();
7375 #if defined(TARGET_PPC64)
7376 gen_qemu_ld16u(ctx
, t0
, addr
);
7377 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7378 tcg_gen_shli_tl(t0
, t0
, 32);
7379 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7380 gen_addr_add(ctx
, addr
, addr
, 2);
7381 gen_qemu_ld16u(ctx
, t0
, addr
);
7382 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7383 tcg_gen_shli_tl(t0
, t0
, 16);
7384 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7386 gen_qemu_ld16u(ctx
, t0
, addr
);
7387 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7388 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7389 gen_addr_add(ctx
, addr
, addr
, 2);
7390 gen_qemu_ld16u(ctx
, t0
, addr
);
7391 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7392 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7397 static always_inline
void gen_op_evstdd(DisasContext
*ctx
, TCGv addr
)
7399 #if defined(TARGET_PPC64)
7400 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7402 TCGv_i64 t0
= tcg_temp_new_i64();
7403 tcg_gen_concat_i32_i64(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gprh
[rS(ctx
->opcode
)]);
7404 gen_qemu_st64(ctx
, t0
, addr
);
7405 tcg_temp_free_i64(t0
);
7409 static always_inline
void gen_op_evstdw(DisasContext
*ctx
, TCGv addr
)
7411 #if defined(TARGET_PPC64)
7412 TCGv t0
= tcg_temp_new();
7413 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7414 gen_qemu_st32(ctx
, t0
, addr
);
7417 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7419 gen_addr_add(ctx
, addr
, addr
, 4);
7420 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7423 static always_inline
void gen_op_evstdh(DisasContext
*ctx
, TCGv addr
)
7425 TCGv t0
= tcg_temp_new();
7426 #if defined(TARGET_PPC64)
7427 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7429 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7431 gen_qemu_st16(ctx
, t0
, addr
);
7432 gen_addr_add(ctx
, addr
, addr
, 2);
7433 #if defined(TARGET_PPC64)
7434 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7435 gen_qemu_st16(ctx
, t0
, addr
);
7437 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7439 gen_addr_add(ctx
, addr
, addr
, 2);
7440 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7441 gen_qemu_st16(ctx
, t0
, addr
);
7443 gen_addr_add(ctx
, addr
, addr
, 2);
7444 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7447 static always_inline
void gen_op_evstwhe(DisasContext
*ctx
, TCGv addr
)
7449 TCGv t0
= tcg_temp_new();
7450 #if defined(TARGET_PPC64)
7451 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7453 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7455 gen_qemu_st16(ctx
, t0
, addr
);
7456 gen_addr_add(ctx
, addr
, addr
, 2);
7457 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7458 gen_qemu_st16(ctx
, t0
, addr
);
7462 static always_inline
void gen_op_evstwho(DisasContext
*ctx
, TCGv addr
)
7464 #if defined(TARGET_PPC64)
7465 TCGv t0
= tcg_temp_new();
7466 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7467 gen_qemu_st16(ctx
, t0
, addr
);
7470 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7472 gen_addr_add(ctx
, addr
, addr
, 2);
7473 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7476 static always_inline
void gen_op_evstwwe(DisasContext
*ctx
, TCGv addr
)
7478 #if defined(TARGET_PPC64)
7479 TCGv t0
= tcg_temp_new();
7480 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7481 gen_qemu_st32(ctx
, t0
, addr
);
7484 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7488 static always_inline
void gen_op_evstwwo(DisasContext
*ctx
, TCGv addr
)
7490 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7493 #define GEN_SPEOP_LDST(name, opc2, sh) \
7494 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE) \
7497 if (unlikely(!ctx->spe_enabled)) { \
7498 gen_exception(ctx, POWERPC_EXCP_APU); \
7501 gen_set_access_type(ctx, ACCESS_INT); \
7502 t0 = tcg_temp_new(); \
7503 if (Rc(ctx->opcode)) { \
7504 gen_addr_spe_imm_index(ctx, t0, sh); \
7506 gen_addr_reg_index(ctx, t0); \
7508 gen_op_##name(ctx, t0); \
7509 tcg_temp_free(t0); \
7512 GEN_SPEOP_LDST(evldd
, 0x00, 3);
7513 GEN_SPEOP_LDST(evldw
, 0x01, 3);
7514 GEN_SPEOP_LDST(evldh
, 0x02, 3);
7515 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1);
7516 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1);
7517 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1);
7518 GEN_SPEOP_LDST(evlwhe
, 0x08, 2);
7519 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2);
7520 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2);
7521 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2);
7522 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2);
7524 GEN_SPEOP_LDST(evstdd
, 0x10, 3);
7525 GEN_SPEOP_LDST(evstdw
, 0x11, 3);
7526 GEN_SPEOP_LDST(evstdh
, 0x12, 3);
7527 GEN_SPEOP_LDST(evstwhe
, 0x18, 2);
7528 GEN_SPEOP_LDST(evstwho
, 0x1A, 2);
7529 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2);
7530 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2);
7532 /* Multiply and add - TODO */
7534 GEN_SPE(speundef
, evmhessf
, 0x01, 0x10, 0x00000000, PPC_SPE
);
7535 GEN_SPE(speundef
, evmhossf
, 0x03, 0x10, 0x00000000, PPC_SPE
);
7536 GEN_SPE(evmheumi
, evmhesmi
, 0x04, 0x10, 0x00000000, PPC_SPE
);
7537 GEN_SPE(speundef
, evmhesmf
, 0x05, 0x10, 0x00000000, PPC_SPE
);
7538 GEN_SPE(evmhoumi
, evmhosmi
, 0x06, 0x10, 0x00000000, PPC_SPE
);
7539 GEN_SPE(speundef
, evmhosmf
, 0x07, 0x10, 0x00000000, PPC_SPE
);
7540 GEN_SPE(speundef
, evmhessfa
, 0x11, 0x10, 0x00000000, PPC_SPE
);
7541 GEN_SPE(speundef
, evmhossfa
, 0x13, 0x10, 0x00000000, PPC_SPE
);
7542 GEN_SPE(evmheumia
, evmhesmia
, 0x14, 0x10, 0x00000000, PPC_SPE
);
7543 GEN_SPE(speundef
, evmhesmfa
, 0x15, 0x10, 0x00000000, PPC_SPE
);
7544 GEN_SPE(evmhoumia
, evmhosmia
, 0x16, 0x10, 0x00000000, PPC_SPE
);
7545 GEN_SPE(speundef
, evmhosmfa
, 0x17, 0x10, 0x00000000, PPC_SPE
);
7547 GEN_SPE(speundef
, evmwhssf
, 0x03, 0x11, 0x00000000, PPC_SPE
);
7548 GEN_SPE(evmwlumi
, speundef
, 0x04, 0x11, 0x00000000, PPC_SPE
);
7549 GEN_SPE(evmwhumi
, evmwhsmi
, 0x06, 0x11, 0x00000000, PPC_SPE
);
7550 GEN_SPE(speundef
, evmwhsmf
, 0x07, 0x11, 0x00000000, PPC_SPE
);
7551 GEN_SPE(speundef
, evmwssf
, 0x09, 0x11, 0x00000000, PPC_SPE
);
7552 GEN_SPE(evmwumi
, evmwsmi
, 0x0C, 0x11, 0x00000000, PPC_SPE
);
7553 GEN_SPE(speundef
, evmwsmf
, 0x0D, 0x11, 0x00000000, PPC_SPE
);
7554 GEN_SPE(speundef
, evmwhssfa
, 0x13, 0x11, 0x00000000, PPC_SPE
);
7555 GEN_SPE(evmwlumia
, speundef
, 0x14, 0x11, 0x00000000, PPC_SPE
);
7556 GEN_SPE(evmwhumia
, evmwhsmia
, 0x16, 0x11, 0x00000000, PPC_SPE
);
7557 GEN_SPE(speundef
, evmwhsmfa
, 0x17, 0x11, 0x00000000, PPC_SPE
);
7558 GEN_SPE(speundef
, evmwssfa
, 0x19, 0x11, 0x00000000, PPC_SPE
);
7559 GEN_SPE(evmwumia
, evmwsmia
, 0x1C, 0x11, 0x00000000, PPC_SPE
);
7560 GEN_SPE(speundef
, evmwsmfa
, 0x1D, 0x11, 0x00000000, PPC_SPE
);
7562 GEN_SPE(evadduiaaw
, evaddsiaaw
, 0x00, 0x13, 0x0000F800, PPC_SPE
);
7563 GEN_SPE(evsubfusiaaw
, evsubfssiaaw
, 0x01, 0x13, 0x0000F800, PPC_SPE
);
7564 GEN_SPE(evaddumiaaw
, evaddsmiaaw
, 0x04, 0x13, 0x0000F800, PPC_SPE
);
7565 GEN_SPE(evsubfumiaaw
, evsubfsmiaaw
, 0x05, 0x13, 0x0000F800, PPC_SPE
);
7566 GEN_SPE(evdivws
, evdivwu
, 0x06, 0x13, 0x00000000, PPC_SPE
);
7567 GEN_SPE(evmra
, speundef
, 0x07, 0x13, 0x0000F800, PPC_SPE
);
7569 GEN_SPE(evmheusiaaw
, evmhessiaaw
, 0x00, 0x14, 0x00000000, PPC_SPE
);
7570 GEN_SPE(speundef
, evmhessfaaw
, 0x01, 0x14, 0x00000000, PPC_SPE
);
7571 GEN_SPE(evmhousiaaw
, evmhossiaaw
, 0x02, 0x14, 0x00000000, PPC_SPE
);
7572 GEN_SPE(speundef
, evmhossfaaw
, 0x03, 0x14, 0x00000000, PPC_SPE
);
7573 GEN_SPE(evmheumiaaw
, evmhesmiaaw
, 0x04, 0x14, 0x00000000, PPC_SPE
);
7574 GEN_SPE(speundef
, evmhesmfaaw
, 0x05, 0x14, 0x00000000, PPC_SPE
);
7575 GEN_SPE(evmhoumiaaw
, evmhosmiaaw
, 0x06, 0x14, 0x00000000, PPC_SPE
);
7576 GEN_SPE(speundef
, evmhosmfaaw
, 0x07, 0x14, 0x00000000, PPC_SPE
);
7577 GEN_SPE(evmhegumiaa
, evmhegsmiaa
, 0x14, 0x14, 0x00000000, PPC_SPE
);
7578 GEN_SPE(speundef
, evmhegsmfaa
, 0x15, 0x14, 0x00000000, PPC_SPE
);
7579 GEN_SPE(evmhogumiaa
, evmhogsmiaa
, 0x16, 0x14, 0x00000000, PPC_SPE
);
7580 GEN_SPE(speundef
, evmhogsmfaa
, 0x17, 0x14, 0x00000000, PPC_SPE
);
7582 GEN_SPE(evmwlusiaaw
, evmwlssiaaw
, 0x00, 0x15, 0x00000000, PPC_SPE
);
7583 GEN_SPE(evmwlumiaaw
, evmwlsmiaaw
, 0x04, 0x15, 0x00000000, PPC_SPE
);
7584 GEN_SPE(speundef
, evmwssfaa
, 0x09, 0x15, 0x00000000, PPC_SPE
);
7585 GEN_SPE(evmwumiaa
, evmwsmiaa
, 0x0C, 0x15, 0x00000000, PPC_SPE
);
7586 GEN_SPE(speundef
, evmwsmfaa
, 0x0D, 0x15, 0x00000000, PPC_SPE
);
7588 GEN_SPE(evmheusianw
, evmhessianw
, 0x00, 0x16, 0x00000000, PPC_SPE
);
7589 GEN_SPE(speundef
, evmhessfanw
, 0x01, 0x16, 0x00000000, PPC_SPE
);
7590 GEN_SPE(evmhousianw
, evmhossianw
, 0x02, 0x16, 0x00000000, PPC_SPE
);
7591 GEN_SPE(speundef
, evmhossfanw
, 0x03, 0x16, 0x00000000, PPC_SPE
);
7592 GEN_SPE(evmheumianw
, evmhesmianw
, 0x04, 0x16, 0x00000000, PPC_SPE
);
7593 GEN_SPE(speundef
, evmhesmfanw
, 0x05, 0x16, 0x00000000, PPC_SPE
);
7594 GEN_SPE(evmhoumianw
, evmhosmianw
, 0x06, 0x16, 0x00000000, PPC_SPE
);
7595 GEN_SPE(speundef
, evmhosmfanw
, 0x07, 0x16, 0x00000000, PPC_SPE
);
7596 GEN_SPE(evmhegumian
, evmhegsmian
, 0x14, 0x16, 0x00000000, PPC_SPE
);
7597 GEN_SPE(speundef
, evmhegsmfan
, 0x15, 0x16, 0x00000000, PPC_SPE
);
7598 GEN_SPE(evmhigumian
, evmhigsmian
, 0x16, 0x16, 0x00000000, PPC_SPE
);
7599 GEN_SPE(speundef
, evmhogsmfan
, 0x17, 0x16, 0x00000000, PPC_SPE
);
7601 GEN_SPE(evmwlusianw
, evmwlssianw
, 0x00, 0x17, 0x00000000, PPC_SPE
);
7602 GEN_SPE(evmwlumianw
, evmwlsmianw
, 0x04, 0x17, 0x00000000, PPC_SPE
);
7603 GEN_SPE(speundef
, evmwssfan
, 0x09, 0x17, 0x00000000, PPC_SPE
);
7604 GEN_SPE(evmwumian
, evmwsmian
, 0x0C, 0x17, 0x00000000, PPC_SPE
);
7605 GEN_SPE(speundef
, evmwsmfan
, 0x0D, 0x17, 0x00000000, PPC_SPE
);
7608 /*** SPE floating-point extension ***/
7609 #if defined(TARGET_PPC64)
7610 #define GEN_SPEFPUOP_CONV_32_32(name) \
7611 static always_inline void gen_##name (DisasContext *ctx) \
7615 t0 = tcg_temp_new_i32(); \
7616 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7617 gen_helper_##name(t0, t0); \
7618 t1 = tcg_temp_new(); \
7619 tcg_gen_extu_i32_tl(t1, t0); \
7620 tcg_temp_free_i32(t0); \
7621 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7622 0xFFFFFFFF00000000ULL); \
7623 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7624 tcg_temp_free(t1); \
7626 #define GEN_SPEFPUOP_CONV_32_64(name) \
7627 static always_inline void gen_##name (DisasContext *ctx) \
7631 t0 = tcg_temp_new_i32(); \
7632 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7633 t1 = tcg_temp_new(); \
7634 tcg_gen_extu_i32_tl(t1, t0); \
7635 tcg_temp_free_i32(t0); \
7636 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7637 0xFFFFFFFF00000000ULL); \
7638 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7639 tcg_temp_free(t1); \
7641 #define GEN_SPEFPUOP_CONV_64_32(name) \
7642 static always_inline void gen_##name (DisasContext *ctx) \
7644 TCGv_i32 t0 = tcg_temp_new_i32(); \
7645 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7646 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7647 tcg_temp_free_i32(t0); \
7649 #define GEN_SPEFPUOP_CONV_64_64(name) \
7650 static always_inline void gen_##name (DisasContext *ctx) \
7652 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7654 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7655 static always_inline void gen_##name (DisasContext *ctx) \
7659 if (unlikely(!ctx->spe_enabled)) { \
7660 gen_exception(ctx, POWERPC_EXCP_APU); \
7663 t0 = tcg_temp_new_i32(); \
7664 t1 = tcg_temp_new_i32(); \
7665 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7666 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7667 gen_helper_##name(t0, t0, t1); \
7668 tcg_temp_free_i32(t1); \
7669 t2 = tcg_temp_new(); \
7670 tcg_gen_extu_i32_tl(t2, t0); \
7671 tcg_temp_free_i32(t0); \
7672 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7673 0xFFFFFFFF00000000ULL); \
7674 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
7675 tcg_temp_free(t2); \
7677 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7678 static always_inline void gen_##name (DisasContext *ctx) \
7680 if (unlikely(!ctx->spe_enabled)) { \
7681 gen_exception(ctx, POWERPC_EXCP_APU); \
7684 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7685 cpu_gpr[rB(ctx->opcode)]); \
7687 #define GEN_SPEFPUOP_COMP_32(name) \
7688 static always_inline void gen_##name (DisasContext *ctx) \
7691 if (unlikely(!ctx->spe_enabled)) { \
7692 gen_exception(ctx, POWERPC_EXCP_APU); \
7695 t0 = tcg_temp_new_i32(); \
7696 t1 = tcg_temp_new_i32(); \
7697 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7698 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7699 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7700 tcg_temp_free_i32(t0); \
7701 tcg_temp_free_i32(t1); \
7703 #define GEN_SPEFPUOP_COMP_64(name) \
7704 static always_inline void gen_##name (DisasContext *ctx) \
7706 if (unlikely(!ctx->spe_enabled)) { \
7707 gen_exception(ctx, POWERPC_EXCP_APU); \
7710 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7711 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7714 #define GEN_SPEFPUOP_CONV_32_32(name) \
7715 static always_inline void gen_##name (DisasContext *ctx) \
7717 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7719 #define GEN_SPEFPUOP_CONV_32_64(name) \
7720 static always_inline void gen_##name (DisasContext *ctx) \
7722 TCGv_i64 t0 = tcg_temp_new_i64(); \
7723 gen_load_gpr64(t0, rB(ctx->opcode)); \
7724 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7725 tcg_temp_free_i64(t0); \
7727 #define GEN_SPEFPUOP_CONV_64_32(name) \
7728 static always_inline void gen_##name (DisasContext *ctx) \
7730 TCGv_i64 t0 = tcg_temp_new_i64(); \
7731 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7732 gen_store_gpr64(rD(ctx->opcode), t0); \
7733 tcg_temp_free_i64(t0); \
7735 #define GEN_SPEFPUOP_CONV_64_64(name) \
7736 static always_inline void gen_##name (DisasContext *ctx) \
7738 TCGv_i64 t0 = tcg_temp_new_i64(); \
7739 gen_load_gpr64(t0, rB(ctx->opcode)); \
7740 gen_helper_##name(t0, t0); \
7741 gen_store_gpr64(rD(ctx->opcode), t0); \
7742 tcg_temp_free_i64(t0); \
7744 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7745 static always_inline void gen_##name (DisasContext *ctx) \
7747 if (unlikely(!ctx->spe_enabled)) { \
7748 gen_exception(ctx, POWERPC_EXCP_APU); \
7751 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \
7752 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7754 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7755 static always_inline void gen_##name (DisasContext *ctx) \
7758 if (unlikely(!ctx->spe_enabled)) { \
7759 gen_exception(ctx, POWERPC_EXCP_APU); \
7762 t0 = tcg_temp_new_i64(); \
7763 t1 = tcg_temp_new_i64(); \
7764 gen_load_gpr64(t0, rA(ctx->opcode)); \
7765 gen_load_gpr64(t1, rB(ctx->opcode)); \
7766 gen_helper_##name(t0, t0, t1); \
7767 gen_store_gpr64(rD(ctx->opcode), t0); \
7768 tcg_temp_free_i64(t0); \
7769 tcg_temp_free_i64(t1); \
7771 #define GEN_SPEFPUOP_COMP_32(name) \
7772 static always_inline void gen_##name (DisasContext *ctx) \
7774 if (unlikely(!ctx->spe_enabled)) { \
7775 gen_exception(ctx, POWERPC_EXCP_APU); \
7778 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7779 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7781 #define GEN_SPEFPUOP_COMP_64(name) \
7782 static always_inline void gen_##name (DisasContext *ctx) \
7785 if (unlikely(!ctx->spe_enabled)) { \
7786 gen_exception(ctx, POWERPC_EXCP_APU); \
7789 t0 = tcg_temp_new_i64(); \
7790 t1 = tcg_temp_new_i64(); \
7791 gen_load_gpr64(t0, rA(ctx->opcode)); \
7792 gen_load_gpr64(t1, rB(ctx->opcode)); \
7793 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7794 tcg_temp_free_i64(t0); \
7795 tcg_temp_free_i64(t1); \
7799 /* Single precision floating-point vectors operations */
7801 GEN_SPEFPUOP_ARITH2_64_64(evfsadd
);
7802 GEN_SPEFPUOP_ARITH2_64_64(evfssub
);
7803 GEN_SPEFPUOP_ARITH2_64_64(evfsmul
);
7804 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv
);
7805 static always_inline
void gen_evfsabs (DisasContext
*ctx
)
7807 if (unlikely(!ctx
->spe_enabled
)) {
7808 gen_exception(ctx
, POWERPC_EXCP_APU
);
7811 #if defined(TARGET_PPC64)
7812 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000080000000LL
);
7814 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x80000000);
7815 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7818 static always_inline
void gen_evfsnabs (DisasContext
*ctx
)
7820 if (unlikely(!ctx
->spe_enabled
)) {
7821 gen_exception(ctx
, POWERPC_EXCP_APU
);
7824 #if defined(TARGET_PPC64)
7825 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7827 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7828 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7831 static always_inline
void gen_evfsneg (DisasContext
*ctx
)
7833 if (unlikely(!ctx
->spe_enabled
)) {
7834 gen_exception(ctx
, POWERPC_EXCP_APU
);
7837 #if defined(TARGET_PPC64)
7838 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7840 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7841 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7846 GEN_SPEFPUOP_CONV_64_64(evfscfui
);
7847 GEN_SPEFPUOP_CONV_64_64(evfscfsi
);
7848 GEN_SPEFPUOP_CONV_64_64(evfscfuf
);
7849 GEN_SPEFPUOP_CONV_64_64(evfscfsf
);
7850 GEN_SPEFPUOP_CONV_64_64(evfsctui
);
7851 GEN_SPEFPUOP_CONV_64_64(evfsctsi
);
7852 GEN_SPEFPUOP_CONV_64_64(evfsctuf
);
7853 GEN_SPEFPUOP_CONV_64_64(evfsctsf
);
7854 GEN_SPEFPUOP_CONV_64_64(evfsctuiz
);
7855 GEN_SPEFPUOP_CONV_64_64(evfsctsiz
);
7858 GEN_SPEFPUOP_COMP_64(evfscmpgt
);
7859 GEN_SPEFPUOP_COMP_64(evfscmplt
);
7860 GEN_SPEFPUOP_COMP_64(evfscmpeq
);
7861 GEN_SPEFPUOP_COMP_64(evfststgt
);
7862 GEN_SPEFPUOP_COMP_64(evfststlt
);
7863 GEN_SPEFPUOP_COMP_64(evfststeq
);
7865 /* Opcodes definitions */
7866 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, PPC_SPE_SINGLE
); //
7867 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, PPC_SPE_SINGLE
); //
7868 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, PPC_SPE_SINGLE
); //
7869 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, PPC_SPE_SINGLE
); //
7870 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7871 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7872 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7873 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7874 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7875 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7876 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7877 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, PPC_SPE_SINGLE
); //
7878 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7879 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, PPC_SPE_SINGLE
); //
7881 /* Single precision floating-point operations */
7883 GEN_SPEFPUOP_ARITH2_32_32(efsadd
);
7884 GEN_SPEFPUOP_ARITH2_32_32(efssub
);
7885 GEN_SPEFPUOP_ARITH2_32_32(efsmul
);
7886 GEN_SPEFPUOP_ARITH2_32_32(efsdiv
);
7887 static always_inline
void gen_efsabs (DisasContext
*ctx
)
7889 if (unlikely(!ctx
->spe_enabled
)) {
7890 gen_exception(ctx
, POWERPC_EXCP_APU
);
7893 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], (target_long
)~0x80000000LL
);
7895 static always_inline
void gen_efsnabs (DisasContext
*ctx
)
7897 if (unlikely(!ctx
->spe_enabled
)) {
7898 gen_exception(ctx
, POWERPC_EXCP_APU
);
7901 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7903 static always_inline
void gen_efsneg (DisasContext
*ctx
)
7905 if (unlikely(!ctx
->spe_enabled
)) {
7906 gen_exception(ctx
, POWERPC_EXCP_APU
);
7909 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7913 GEN_SPEFPUOP_CONV_32_32(efscfui
);
7914 GEN_SPEFPUOP_CONV_32_32(efscfsi
);
7915 GEN_SPEFPUOP_CONV_32_32(efscfuf
);
7916 GEN_SPEFPUOP_CONV_32_32(efscfsf
);
7917 GEN_SPEFPUOP_CONV_32_32(efsctui
);
7918 GEN_SPEFPUOP_CONV_32_32(efsctsi
);
7919 GEN_SPEFPUOP_CONV_32_32(efsctuf
);
7920 GEN_SPEFPUOP_CONV_32_32(efsctsf
);
7921 GEN_SPEFPUOP_CONV_32_32(efsctuiz
);
7922 GEN_SPEFPUOP_CONV_32_32(efsctsiz
);
7923 GEN_SPEFPUOP_CONV_32_64(efscfd
);
7926 GEN_SPEFPUOP_COMP_32(efscmpgt
);
7927 GEN_SPEFPUOP_COMP_32(efscmplt
);
7928 GEN_SPEFPUOP_COMP_32(efscmpeq
);
7929 GEN_SPEFPUOP_COMP_32(efststgt
);
7930 GEN_SPEFPUOP_COMP_32(efststlt
);
7931 GEN_SPEFPUOP_COMP_32(efststeq
);
7933 /* Opcodes definitions */
7934 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, PPC_SPE_SINGLE
); //
7935 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, PPC_SPE_SINGLE
); //
7936 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, PPC_SPE_SINGLE
); //
7937 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, PPC_SPE_SINGLE
); //
7938 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7939 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7940 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7941 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7942 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7943 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7944 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7945 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, PPC_SPE_SINGLE
); //
7946 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7947 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, PPC_SPE_SINGLE
); //
7949 /* Double precision floating-point operations */
7951 GEN_SPEFPUOP_ARITH2_64_64(efdadd
);
7952 GEN_SPEFPUOP_ARITH2_64_64(efdsub
);
7953 GEN_SPEFPUOP_ARITH2_64_64(efdmul
);
7954 GEN_SPEFPUOP_ARITH2_64_64(efddiv
);
7955 static always_inline
void gen_efdabs (DisasContext
*ctx
)
7957 if (unlikely(!ctx
->spe_enabled
)) {
7958 gen_exception(ctx
, POWERPC_EXCP_APU
);
7961 #if defined(TARGET_PPC64)
7962 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000000000000LL
);
7964 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7967 static always_inline
void gen_efdnabs (DisasContext
*ctx
)
7969 if (unlikely(!ctx
->spe_enabled
)) {
7970 gen_exception(ctx
, POWERPC_EXCP_APU
);
7973 #if defined(TARGET_PPC64)
7974 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7976 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7979 static always_inline
void gen_efdneg (DisasContext
*ctx
)
7981 if (unlikely(!ctx
->spe_enabled
)) {
7982 gen_exception(ctx
, POWERPC_EXCP_APU
);
7985 #if defined(TARGET_PPC64)
7986 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7988 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7993 GEN_SPEFPUOP_CONV_64_32(efdcfui
);
7994 GEN_SPEFPUOP_CONV_64_32(efdcfsi
);
7995 GEN_SPEFPUOP_CONV_64_32(efdcfuf
);
7996 GEN_SPEFPUOP_CONV_64_32(efdcfsf
);
7997 GEN_SPEFPUOP_CONV_32_64(efdctui
);
7998 GEN_SPEFPUOP_CONV_32_64(efdctsi
);
7999 GEN_SPEFPUOP_CONV_32_64(efdctuf
);
8000 GEN_SPEFPUOP_CONV_32_64(efdctsf
);
8001 GEN_SPEFPUOP_CONV_32_64(efdctuiz
);
8002 GEN_SPEFPUOP_CONV_32_64(efdctsiz
);
8003 GEN_SPEFPUOP_CONV_64_32(efdcfs
);
8004 GEN_SPEFPUOP_CONV_64_64(efdcfuid
);
8005 GEN_SPEFPUOP_CONV_64_64(efdcfsid
);
8006 GEN_SPEFPUOP_CONV_64_64(efdctuidz
);
8007 GEN_SPEFPUOP_CONV_64_64(efdctsidz
);
8010 GEN_SPEFPUOP_COMP_64(efdcmpgt
);
8011 GEN_SPEFPUOP_COMP_64(efdcmplt
);
8012 GEN_SPEFPUOP_COMP_64(efdcmpeq
);
8013 GEN_SPEFPUOP_COMP_64(efdtstgt
);
8014 GEN_SPEFPUOP_COMP_64(efdtstlt
);
8015 GEN_SPEFPUOP_COMP_64(efdtsteq
);
8017 /* Opcodes definitions */
8018 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, PPC_SPE_DOUBLE
); //
8019 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8020 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
); //
8021 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, PPC_SPE_DOUBLE
); //
8022 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, PPC_SPE_DOUBLE
); //
8023 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8024 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
8025 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
8026 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8027 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8028 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8029 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8030 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8031 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, PPC_SPE_DOUBLE
); //
8032 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
8033 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, PPC_SPE_DOUBLE
); //
8035 /* End opcode list */
8036 GEN_OPCODE_MARK(end
);
8038 #include "translate_init.c"
8039 #include "helper_regs.h"
8041 /*****************************************************************************/
8042 /* Misc PowerPC helpers */
8043 void cpu_dump_state (CPUState
*env
, FILE *f
,
8044 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8052 cpu_fprintf(f
, "NIP " ADDRX
" LR " ADDRX
" CTR " ADDRX
" XER %08x\n",
8053 env
->nip
, env
->lr
, env
->ctr
, env
->xer
);
8054 cpu_fprintf(f
, "MSR " ADDRX
" HID0 " ADDRX
" HF " ADDRX
" idx %d\n",
8055 env
->msr
, env
->spr
[SPR_HID0
], env
->hflags
, env
->mmu_idx
);
8056 #if !defined(NO_TIMER_DUMP)
8057 cpu_fprintf(f
, "TB %08x %08x "
8058 #if !defined(CONFIG_USER_ONLY)
8062 cpu_ppc_load_tbu(env
), cpu_ppc_load_tbl(env
)
8063 #if !defined(CONFIG_USER_ONLY)
8064 , cpu_ppc_load_decr(env
)
8068 for (i
= 0; i
< 32; i
++) {
8069 if ((i
& (RGPL
- 1)) == 0)
8070 cpu_fprintf(f
, "GPR%02d", i
);
8071 cpu_fprintf(f
, " " REGX
, ppc_dump_gpr(env
, i
));
8072 if ((i
& (RGPL
- 1)) == (RGPL
- 1))
8073 cpu_fprintf(f
, "\n");
8075 cpu_fprintf(f
, "CR ");
8076 for (i
= 0; i
< 8; i
++)
8077 cpu_fprintf(f
, "%01x", env
->crf
[i
]);
8078 cpu_fprintf(f
, " [");
8079 for (i
= 0; i
< 8; i
++) {
8081 if (env
->crf
[i
] & 0x08)
8083 else if (env
->crf
[i
] & 0x04)
8085 else if (env
->crf
[i
] & 0x02)
8087 cpu_fprintf(f
, " %c%c", a
, env
->crf
[i
] & 0x01 ? 'O' : ' ');
8089 cpu_fprintf(f
, " ] RES " ADDRX
"\n", env
->reserve
);
8090 for (i
= 0; i
< 32; i
++) {
8091 if ((i
& (RFPL
- 1)) == 0)
8092 cpu_fprintf(f
, "FPR%02d", i
);
8093 cpu_fprintf(f
, " %016" PRIx64
, *((uint64_t *)&env
->fpr
[i
]));
8094 if ((i
& (RFPL
- 1)) == (RFPL
- 1))
8095 cpu_fprintf(f
, "\n");
8097 cpu_fprintf(f
, "FPSCR %08x\n", env
->fpscr
);
8098 #if !defined(CONFIG_USER_ONLY)
8099 cpu_fprintf(f
, "SRR0 " ADDRX
" SRR1 " ADDRX
" SDR1 " ADDRX
"\n",
8100 env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
], env
->sdr1
);
8107 void cpu_dump_statistics (CPUState
*env
, FILE*f
,
8108 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8111 #if defined(DO_PPC_STATISTICS)
8112 opc_handler_t
**t1
, **t2
, **t3
, *handler
;
8116 for (op1
= 0; op1
< 64; op1
++) {
8118 if (is_indirect_opcode(handler
)) {
8119 t2
= ind_table(handler
);
8120 for (op2
= 0; op2
< 32; op2
++) {
8122 if (is_indirect_opcode(handler
)) {
8123 t3
= ind_table(handler
);
8124 for (op3
= 0; op3
< 32; op3
++) {
8126 if (handler
->count
== 0)
8128 cpu_fprintf(f
, "%02x %02x %02x (%02x %04d) %16s: "
8130 op1
, op2
, op3
, op1
, (op3
<< 5) | op2
,
8132 handler
->count
, handler
->count
);
8135 if (handler
->count
== 0)
8137 cpu_fprintf(f
, "%02x %02x (%02x %04d) %16s: "
8139 op1
, op2
, op1
, op2
, handler
->oname
,
8140 handler
->count
, handler
->count
);
8144 if (handler
->count
== 0)
8146 cpu_fprintf(f
, "%02x (%02x ) %16s: %016llx %lld\n",
8147 op1
, op1
, handler
->oname
,
8148 handler
->count
, handler
->count
);
8154 /*****************************************************************************/
8155 static always_inline
void gen_intermediate_code_internal (CPUState
*env
,
8156 TranslationBlock
*tb
,
8159 DisasContext ctx
, *ctxp
= &ctx
;
8160 opc_handler_t
**table
, *handler
;
8161 target_ulong pc_start
;
8162 uint16_t *gen_opc_end
;
8169 gen_opc_end
= gen_opc_buf
+ OPC_MAX_SIZE
;
8172 ctx
.exception
= POWERPC_EXCP_NONE
;
8173 ctx
.spr_cb
= env
->spr_cb
;
8174 ctx
.mem_idx
= env
->mmu_idx
;
8175 ctx
.access_type
= -1;
8176 ctx
.le_mode
= env
->hflags
& (1 << MSR_LE
) ? 1 : 0;
8177 #if defined(TARGET_PPC64)
8178 ctx
.sf_mode
= msr_sf
;
8180 ctx
.fpu_enabled
= msr_fp
;
8181 if ((env
->flags
& POWERPC_FLAG_SPE
) && msr_spe
)
8182 ctx
.spe_enabled
= msr_spe
;
8184 ctx
.spe_enabled
= 0;
8185 if ((env
->flags
& POWERPC_FLAG_VRE
) && msr_vr
)
8186 ctx
.altivec_enabled
= msr_vr
;
8188 ctx
.altivec_enabled
= 0;
8189 if ((env
->flags
& POWERPC_FLAG_SE
) && msr_se
)
8190 ctx
.singlestep_enabled
= CPU_SINGLE_STEP
;
8192 ctx
.singlestep_enabled
= 0;
8193 if ((env
->flags
& POWERPC_FLAG_BE
) && msr_be
)
8194 ctx
.singlestep_enabled
|= CPU_BRANCH_STEP
;
8195 if (unlikely(env
->singlestep_enabled
))
8196 ctx
.singlestep_enabled
|= GDBSTUB_SINGLE_STEP
;
8197 #if defined (DO_SINGLE_STEP) && 0
8198 /* Single step trace mode */
8202 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
8204 max_insns
= CF_COUNT_MASK
;
8207 /* Set env in case of segfault during code fetch */
8208 while (ctx
.exception
== POWERPC_EXCP_NONE
&& gen_opc_ptr
< gen_opc_end
) {
8209 if (unlikely(!TAILQ_EMPTY(&env
->breakpoints
))) {
8210 TAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
8211 if (bp
->pc
== ctx
.nip
) {
8212 gen_debug_exception(ctxp
);
8217 if (unlikely(search_pc
)) {
8218 j
= gen_opc_ptr
- gen_opc_buf
;
8222 gen_opc_instr_start
[lj
++] = 0;
8224 gen_opc_pc
[lj
] = ctx
.nip
;
8225 gen_opc_instr_start
[lj
] = 1;
8226 gen_opc_icount
[lj
] = num_insns
;
8228 LOG_DISAS("----------------\n");
8229 LOG_DISAS("nip=" ADDRX
" super=%d ir=%d\n",
8230 ctx
.nip
, ctx
.mem_idx
, (int)msr_ir
);
8231 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
8233 if (unlikely(ctx
.le_mode
)) {
8234 ctx
.opcode
= bswap32(ldl_code(ctx
.nip
));
8236 ctx
.opcode
= ldl_code(ctx
.nip
);
8238 LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
8239 ctx
.opcode
, opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8240 opc3(ctx
.opcode
), little_endian
? "little" : "big");
8242 table
= env
->opcodes
;
8244 handler
= table
[opc1(ctx
.opcode
)];
8245 if (is_indirect_opcode(handler
)) {
8246 table
= ind_table(handler
);
8247 handler
= table
[opc2(ctx
.opcode
)];
8248 if (is_indirect_opcode(handler
)) {
8249 table
= ind_table(handler
);
8250 handler
= table
[opc3(ctx
.opcode
)];
8253 /* Is opcode *REALLY* valid ? */
8254 if (unlikely(handler
->handler
== &gen_invalid
)) {
8255 if (qemu_log_enabled()) {
8256 qemu_log("invalid/unsupported opcode: "
8257 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
8258 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8259 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
8261 printf("invalid/unsupported opcode: "
8262 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
8263 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8264 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
8267 if (unlikely((ctx
.opcode
& handler
->inval
) != 0)) {
8268 if (qemu_log_enabled()) {
8269 qemu_log("invalid bits: %08x for opcode: "
8270 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
8271 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
8272 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
8273 ctx
.opcode
, ctx
.nip
- 4);
8275 printf("invalid bits: %08x for opcode: "
8276 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
8277 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
8278 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
8279 ctx
.opcode
, ctx
.nip
- 4);
8281 gen_inval_exception(ctxp
, POWERPC_EXCP_INVAL_INVAL
);
8285 (*(handler
->handler
))(&ctx
);
8286 #if defined(DO_PPC_STATISTICS)
8289 /* Check trace mode exceptions */
8290 if (unlikely(ctx
.singlestep_enabled
& CPU_SINGLE_STEP
&&
8291 (ctx
.nip
<= 0x100 || ctx
.nip
> 0xF00) &&
8292 ctx
.exception
!= POWERPC_SYSCALL
&&
8293 ctx
.exception
!= POWERPC_EXCP_TRAP
&&
8294 ctx
.exception
!= POWERPC_EXCP_BRANCH
)) {
8295 gen_exception(ctxp
, POWERPC_EXCP_TRACE
);
8296 } else if (unlikely(((ctx
.nip
& (TARGET_PAGE_SIZE
- 1)) == 0) ||
8297 (env
->singlestep_enabled
) ||
8299 num_insns
>= max_insns
)) {
8300 /* if we reach a page boundary or are single stepping, stop
8306 if (tb
->cflags
& CF_LAST_IO
)
8308 if (ctx
.exception
== POWERPC_EXCP_NONE
) {
8309 gen_goto_tb(&ctx
, 0, ctx
.nip
);
8310 } else if (ctx
.exception
!= POWERPC_EXCP_BRANCH
) {
8311 if (unlikely(env
->singlestep_enabled
)) {
8312 gen_debug_exception(ctxp
);
8314 /* Generate the return instruction */
8317 gen_icount_end(tb
, num_insns
);
8318 *gen_opc_ptr
= INDEX_op_end
;
8319 if (unlikely(search_pc
)) {
8320 j
= gen_opc_ptr
- gen_opc_buf
;
8323 gen_opc_instr_start
[lj
++] = 0;
8325 tb
->size
= ctx
.nip
- pc_start
;
8326 tb
->icount
= num_insns
;
8328 #if defined(DEBUG_DISAS)
8329 qemu_log_mask(CPU_LOG_TB_CPU
, "---------------- excp: %04x\n", ctx
.exception
);
8330 log_cpu_state_mask(CPU_LOG_TB_CPU
, env
, 0);
8331 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
8333 flags
= env
->bfd_mach
;
8334 flags
|= ctx
.le_mode
<< 16;
8335 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
8336 log_target_disas(pc_start
, ctx
.nip
- pc_start
, flags
);
8342 void gen_intermediate_code (CPUState
*env
, struct TranslationBlock
*tb
)
8344 gen_intermediate_code_internal(env
, tb
, 0);
8347 void gen_intermediate_code_pc (CPUState
*env
, struct TranslationBlock
*tb
)
8349 gen_intermediate_code_internal(env
, tb
, 1);
8352 void gen_pc_load(CPUState
*env
, TranslationBlock
*tb
,
8353 unsigned long searched_pc
, int pc_pos
, void *puc
)
8355 env
->nip
= gen_opc_pc
[pc_pos
];