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"
36 #define CPU_SINGLE_STEP 0x1
37 #define CPU_BRANCH_STEP 0x2
38 #define GDBSTUB_SINGLE_STEP 0x4
40 /* Include definitions for instructions classes and implementations flags */
41 //#define DO_SINGLE_STEP
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 static int done_init
= 0;
89 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
93 for (i
= 0; i
< 8; i
++) {
94 sprintf(p
, "crf%d", i
);
95 cpu_crf
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
96 offsetof(CPUState
, crf
[i
]), p
);
100 for (i
= 0; i
< 32; i
++) {
101 sprintf(p
, "r%d", i
);
102 cpu_gpr
[i
] = tcg_global_mem_new(TCG_AREG0
,
103 offsetof(CPUState
, gpr
[i
]), p
);
104 p
+= (i
< 10) ? 3 : 4;
105 #if !defined(TARGET_PPC64)
106 sprintf(p
, "r%dH", i
);
107 cpu_gprh
[i
] = tcg_global_mem_new_i32(TCG_AREG0
,
108 offsetof(CPUState
, gprh
[i
]), p
);
109 p
+= (i
< 10) ? 4 : 5;
112 sprintf(p
, "fp%d", i
);
113 cpu_fpr
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
114 offsetof(CPUState
, fpr
[i
]), p
);
115 p
+= (i
< 10) ? 4 : 5;
117 sprintf(p
, "avr%dH", i
);
118 #ifdef WORDS_BIGENDIAN
119 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
120 offsetof(CPUState
, avr
[i
].u64
[0]), p
);
122 cpu_avrh
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
123 offsetof(CPUState
, avr
[i
].u64
[1]), p
);
125 p
+= (i
< 10) ? 6 : 7;
127 sprintf(p
, "avr%dL", i
);
128 #ifdef WORDS_BIGENDIAN
129 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
130 offsetof(CPUState
, avr
[i
].u64
[1]), p
);
132 cpu_avrl
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
133 offsetof(CPUState
, avr
[i
].u64
[0]), p
);
135 p
+= (i
< 10) ? 6 : 7;
138 cpu_nip
= tcg_global_mem_new(TCG_AREG0
,
139 offsetof(CPUState
, nip
), "nip");
141 cpu_msr
= tcg_global_mem_new(TCG_AREG0
,
142 offsetof(CPUState
, msr
), "msr");
144 cpu_ctr
= tcg_global_mem_new(TCG_AREG0
,
145 offsetof(CPUState
, ctr
), "ctr");
147 cpu_lr
= tcg_global_mem_new(TCG_AREG0
,
148 offsetof(CPUState
, lr
), "lr");
150 cpu_xer
= tcg_global_mem_new(TCG_AREG0
,
151 offsetof(CPUState
, xer
), "xer");
153 cpu_reserve
= tcg_global_mem_new(TCG_AREG0
,
154 offsetof(CPUState
, reserve
), "reserve");
156 cpu_fpscr
= tcg_global_mem_new_i32(TCG_AREG0
,
157 offsetof(CPUState
, fpscr
), "fpscr");
159 cpu_access_type
= tcg_global_mem_new_i32(TCG_AREG0
,
160 offsetof(CPUState
, access_type
), "access_type");
162 /* register helpers */
169 /* internal defines */
170 typedef struct DisasContext
{
171 struct TranslationBlock
*tb
;
175 /* Routine used to access memory */
178 /* Translation flags */
180 #if defined(TARGET_PPC64)
186 ppc_spr_t
*spr_cb
; /* Needed to check rights for mfspr/mtspr */
187 int singlestep_enabled
;
190 struct opc_handler_t
{
193 /* instruction type */
196 void (*handler
)(DisasContext
*ctx
);
197 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
200 #if defined(DO_PPC_STATISTICS)
205 static always_inline
void gen_reset_fpstatus (void)
207 #ifdef CONFIG_SOFTFLOAT
208 gen_helper_reset_fpstatus();
212 static always_inline
void gen_compute_fprf (TCGv_i64 arg
, int set_fprf
, int set_rc
)
214 TCGv_i32 t0
= tcg_temp_new_i32();
217 /* This case might be optimized later */
218 tcg_gen_movi_i32(t0
, 1);
219 gen_helper_compute_fprf(t0
, arg
, t0
);
220 if (unlikely(set_rc
)) {
221 tcg_gen_mov_i32(cpu_crf
[1], t0
);
223 gen_helper_float_check_status();
224 } else if (unlikely(set_rc
)) {
225 /* We always need to compute fpcc */
226 tcg_gen_movi_i32(t0
, 0);
227 gen_helper_compute_fprf(t0
, arg
, t0
);
228 tcg_gen_mov_i32(cpu_crf
[1], t0
);
231 tcg_temp_free_i32(t0
);
234 static always_inline
void gen_set_access_type (DisasContext
*ctx
, int access_type
)
236 if (ctx
->access_type
!= access_type
) {
237 tcg_gen_movi_i32(cpu_access_type
, access_type
);
238 ctx
->access_type
= access_type
;
242 static always_inline
void gen_update_nip (DisasContext
*ctx
, target_ulong nip
)
244 #if defined(TARGET_PPC64)
246 tcg_gen_movi_tl(cpu_nip
, nip
);
249 tcg_gen_movi_tl(cpu_nip
, (uint32_t)nip
);
252 static always_inline
void gen_exception_err (DisasContext
*ctx
, uint32_t excp
, uint32_t error
)
255 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
256 gen_update_nip(ctx
, ctx
->nip
);
258 t0
= tcg_const_i32(excp
);
259 t1
= tcg_const_i32(error
);
260 gen_helper_raise_exception_err(t0
, t1
);
261 tcg_temp_free_i32(t0
);
262 tcg_temp_free_i32(t1
);
263 ctx
->exception
= (excp
);
266 static always_inline
void gen_exception (DisasContext
*ctx
, uint32_t excp
)
269 if (ctx
->exception
== POWERPC_EXCP_NONE
) {
270 gen_update_nip(ctx
, ctx
->nip
);
272 t0
= tcg_const_i32(excp
);
273 gen_helper_raise_exception(t0
);
274 tcg_temp_free_i32(t0
);
275 ctx
->exception
= (excp
);
278 static always_inline
void gen_debug_exception (DisasContext
*ctx
)
281 gen_update_nip(ctx
, ctx
->nip
);
282 t0
= tcg_const_i32(EXCP_DEBUG
);
283 gen_helper_raise_exception(t0
);
284 tcg_temp_free_i32(t0
);
287 static always_inline
void gen_inval_exception (DisasContext
*ctx
, uint32_t error
)
289 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_INVAL
| error
);
292 /* Stop translation */
293 static always_inline
void gen_stop_exception (DisasContext
*ctx
)
295 gen_update_nip(ctx
, ctx
->nip
);
296 ctx
->exception
= POWERPC_EXCP_STOP
;
299 /* No need to update nip here, as execution flow will change */
300 static always_inline
void gen_sync_exception (DisasContext
*ctx
)
302 ctx
->exception
= POWERPC_EXCP_SYNC
;
305 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
306 static void gen_##name (DisasContext *ctx); \
307 GEN_OPCODE(name, opc1, opc2, opc3, inval, type); \
308 static void gen_##name (DisasContext *ctx)
310 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
311 static void gen_##name (DisasContext *ctx); \
312 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type); \
313 static void gen_##name (DisasContext *ctx)
315 typedef struct opcode_t
{
316 unsigned char opc1
, opc2
, opc3
;
317 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
318 unsigned char pad
[5];
320 unsigned char pad
[1];
322 opc_handler_t handler
;
326 /*****************************************************************************/
327 /*** Instruction decoding ***/
328 #define EXTRACT_HELPER(name, shift, nb) \
329 static always_inline uint32_t name (uint32_t opcode) \
331 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
334 #define EXTRACT_SHELPER(name, shift, nb) \
335 static always_inline int32_t name (uint32_t opcode) \
337 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
341 EXTRACT_HELPER(opc1
, 26, 6);
343 EXTRACT_HELPER(opc2
, 1, 5);
345 EXTRACT_HELPER(opc3
, 6, 5);
346 /* Update Cr0 flags */
347 EXTRACT_HELPER(Rc
, 0, 1);
349 EXTRACT_HELPER(rD
, 21, 5);
351 EXTRACT_HELPER(rS
, 21, 5);
353 EXTRACT_HELPER(rA
, 16, 5);
355 EXTRACT_HELPER(rB
, 11, 5);
357 EXTRACT_HELPER(rC
, 6, 5);
359 EXTRACT_HELPER(crfD
, 23, 3);
360 EXTRACT_HELPER(crfS
, 18, 3);
361 EXTRACT_HELPER(crbD
, 21, 5);
362 EXTRACT_HELPER(crbA
, 16, 5);
363 EXTRACT_HELPER(crbB
, 11, 5);
365 EXTRACT_HELPER(_SPR
, 11, 10);
366 static always_inline
uint32_t SPR (uint32_t opcode
)
368 uint32_t sprn
= _SPR(opcode
);
370 return ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
372 /*** Get constants ***/
373 EXTRACT_HELPER(IMM
, 12, 8);
374 /* 16 bits signed immediate value */
375 EXTRACT_SHELPER(SIMM
, 0, 16);
376 /* 16 bits unsigned immediate value */
377 EXTRACT_HELPER(UIMM
, 0, 16);
378 /* 5 bits signed immediate value */
379 EXTRACT_HELPER(SIMM5
, 16, 5);
380 /* 5 bits signed immediate value */
381 EXTRACT_HELPER(UIMM5
, 16, 5);
383 EXTRACT_HELPER(NB
, 11, 5);
385 EXTRACT_HELPER(SH
, 11, 5);
386 /* Vector shift count */
387 EXTRACT_HELPER(VSH
, 6, 4);
389 EXTRACT_HELPER(MB
, 6, 5);
391 EXTRACT_HELPER(ME
, 1, 5);
393 EXTRACT_HELPER(TO
, 21, 5);
395 EXTRACT_HELPER(CRM
, 12, 8);
396 EXTRACT_HELPER(FM
, 17, 8);
397 EXTRACT_HELPER(SR
, 16, 4);
398 EXTRACT_HELPER(FPIMM
, 12, 4);
400 /*** Jump target decoding ***/
402 EXTRACT_SHELPER(d
, 0, 16);
403 /* Immediate address */
404 static always_inline target_ulong
LI (uint32_t opcode
)
406 return (opcode
>> 0) & 0x03FFFFFC;
409 static always_inline
uint32_t BD (uint32_t opcode
)
411 return (opcode
>> 0) & 0xFFFC;
414 EXTRACT_HELPER(BO
, 21, 5);
415 EXTRACT_HELPER(BI
, 16, 5);
416 /* Absolute/relative address */
417 EXTRACT_HELPER(AA
, 1, 1);
419 EXTRACT_HELPER(LK
, 0, 1);
421 /* Create a mask between <start> and <end> bits */
422 static always_inline target_ulong
MASK (uint32_t start
, uint32_t end
)
426 #if defined(TARGET_PPC64)
427 if (likely(start
== 0)) {
428 ret
= UINT64_MAX
<< (63 - end
);
429 } else if (likely(end
== 63)) {
430 ret
= UINT64_MAX
>> start
;
433 if (likely(start
== 0)) {
434 ret
= UINT32_MAX
<< (31 - end
);
435 } else if (likely(end
== 31)) {
436 ret
= UINT32_MAX
>> start
;
440 ret
= (((target_ulong
)(-1ULL)) >> (start
)) ^
441 (((target_ulong
)(-1ULL) >> (end
)) >> 1);
442 if (unlikely(start
> end
))
449 /*****************************************************************************/
450 /* PowerPC Instructions types definitions */
452 PPC_NONE
= 0x0000000000000000ULL
,
453 /* PowerPC base instructions set */
454 PPC_INSNS_BASE
= 0x0000000000000001ULL
,
455 /* integer operations instructions */
456 #define PPC_INTEGER PPC_INSNS_BASE
457 /* flow control instructions */
458 #define PPC_FLOW PPC_INSNS_BASE
459 /* virtual memory instructions */
460 #define PPC_MEM PPC_INSNS_BASE
461 /* ld/st with reservation instructions */
462 #define PPC_RES PPC_INSNS_BASE
463 /* spr/msr access instructions */
464 #define PPC_MISC PPC_INSNS_BASE
465 /* Deprecated instruction sets */
466 /* Original POWER instruction set */
467 PPC_POWER
= 0x0000000000000002ULL
,
468 /* POWER2 instruction set extension */
469 PPC_POWER2
= 0x0000000000000004ULL
,
470 /* Power RTC support */
471 PPC_POWER_RTC
= 0x0000000000000008ULL
,
472 /* Power-to-PowerPC bridge (601) */
473 PPC_POWER_BR
= 0x0000000000000010ULL
,
474 /* 64 bits PowerPC instruction set */
475 PPC_64B
= 0x0000000000000020ULL
,
476 /* New 64 bits extensions (PowerPC 2.0x) */
477 PPC_64BX
= 0x0000000000000040ULL
,
478 /* 64 bits hypervisor extensions */
479 PPC_64H
= 0x0000000000000080ULL
,
480 /* New wait instruction (PowerPC 2.0x) */
481 PPC_WAIT
= 0x0000000000000100ULL
,
482 /* Time base mftb instruction */
483 PPC_MFTB
= 0x0000000000000200ULL
,
485 /* Fixed-point unit extensions */
486 /* PowerPC 602 specific */
487 PPC_602_SPEC
= 0x0000000000000400ULL
,
488 /* isel instruction */
489 PPC_ISEL
= 0x0000000000000800ULL
,
490 /* popcntb instruction */
491 PPC_POPCNTB
= 0x0000000000001000ULL
,
492 /* string load / store */
493 PPC_STRING
= 0x0000000000002000ULL
,
495 /* Floating-point unit extensions */
496 /* Optional floating point instructions */
497 PPC_FLOAT
= 0x0000000000010000ULL
,
498 /* New floating-point extensions (PowerPC 2.0x) */
499 PPC_FLOAT_EXT
= 0x0000000000020000ULL
,
500 PPC_FLOAT_FSQRT
= 0x0000000000040000ULL
,
501 PPC_FLOAT_FRES
= 0x0000000000080000ULL
,
502 PPC_FLOAT_FRSQRTE
= 0x0000000000100000ULL
,
503 PPC_FLOAT_FRSQRTES
= 0x0000000000200000ULL
,
504 PPC_FLOAT_FSEL
= 0x0000000000400000ULL
,
505 PPC_FLOAT_STFIWX
= 0x0000000000800000ULL
,
507 /* Vector/SIMD extensions */
508 /* Altivec support */
509 PPC_ALTIVEC
= 0x0000000001000000ULL
,
510 /* PowerPC 2.03 SPE extension */
511 PPC_SPE
= 0x0000000002000000ULL
,
512 /* PowerPC 2.03 SPE floating-point extension */
513 PPC_SPEFPU
= 0x0000000004000000ULL
,
515 /* Optional memory control instructions */
516 PPC_MEM_TLBIA
= 0x0000000010000000ULL
,
517 PPC_MEM_TLBIE
= 0x0000000020000000ULL
,
518 PPC_MEM_TLBSYNC
= 0x0000000040000000ULL
,
519 /* sync instruction */
520 PPC_MEM_SYNC
= 0x0000000080000000ULL
,
521 /* eieio instruction */
522 PPC_MEM_EIEIO
= 0x0000000100000000ULL
,
524 /* Cache control instructions */
525 PPC_CACHE
= 0x0000000200000000ULL
,
526 /* icbi instruction */
527 PPC_CACHE_ICBI
= 0x0000000400000000ULL
,
528 /* dcbz instruction with fixed cache line size */
529 PPC_CACHE_DCBZ
= 0x0000000800000000ULL
,
530 /* dcbz instruction with tunable cache line size */
531 PPC_CACHE_DCBZT
= 0x0000001000000000ULL
,
532 /* dcba instruction */
533 PPC_CACHE_DCBA
= 0x0000002000000000ULL
,
534 /* Freescale cache locking instructions */
535 PPC_CACHE_LOCK
= 0x0000004000000000ULL
,
537 /* MMU related extensions */
538 /* external control instructions */
539 PPC_EXTERN
= 0x0000010000000000ULL
,
540 /* segment register access instructions */
541 PPC_SEGMENT
= 0x0000020000000000ULL
,
542 /* PowerPC 6xx TLB management instructions */
543 PPC_6xx_TLB
= 0x0000040000000000ULL
,
544 /* PowerPC 74xx TLB management instructions */
545 PPC_74xx_TLB
= 0x0000080000000000ULL
,
546 /* PowerPC 40x TLB management instructions */
547 PPC_40x_TLB
= 0x0000100000000000ULL
,
548 /* segment register access instructions for PowerPC 64 "bridge" */
549 PPC_SEGMENT_64B
= 0x0000200000000000ULL
,
551 PPC_SLBI
= 0x0000400000000000ULL
,
553 /* Embedded PowerPC dedicated instructions */
554 PPC_WRTEE
= 0x0001000000000000ULL
,
555 /* PowerPC 40x exception model */
556 PPC_40x_EXCP
= 0x0002000000000000ULL
,
557 /* PowerPC 405 Mac instructions */
558 PPC_405_MAC
= 0x0004000000000000ULL
,
559 /* PowerPC 440 specific instructions */
560 PPC_440_SPEC
= 0x0008000000000000ULL
,
561 /* BookE (embedded) PowerPC specification */
562 PPC_BOOKE
= 0x0010000000000000ULL
,
563 /* mfapidi instruction */
564 PPC_MFAPIDI
= 0x0020000000000000ULL
,
565 /* tlbiva instruction */
566 PPC_TLBIVA
= 0x0040000000000000ULL
,
567 /* tlbivax instruction */
568 PPC_TLBIVAX
= 0x0080000000000000ULL
,
569 /* PowerPC 4xx dedicated instructions */
570 PPC_4xx_COMMON
= 0x0100000000000000ULL
,
571 /* PowerPC 40x ibct instructions */
572 PPC_40x_ICBT
= 0x0200000000000000ULL
,
573 /* rfmci is not implemented in all BookE PowerPC */
574 PPC_RFMCI
= 0x0400000000000000ULL
,
575 /* rfdi instruction */
576 PPC_RFDI
= 0x0800000000000000ULL
,
578 PPC_DCR
= 0x1000000000000000ULL
,
579 /* DCR extended accesse */
580 PPC_DCRX
= 0x2000000000000000ULL
,
581 /* user-mode DCR access, implemented in PowerPC 460 */
582 PPC_DCRUX
= 0x4000000000000000ULL
,
585 /*****************************************************************************/
586 /* PowerPC instructions table */
587 #if HOST_LONG_BITS == 64
592 #if defined(__APPLE__)
593 #define OPCODES_SECTION \
594 __attribute__ ((section("__TEXT,__opcodes"), unused, aligned (OPC_ALIGN) ))
596 #define OPCODES_SECTION \
597 __attribute__ ((section(".opcodes"), unused, aligned (OPC_ALIGN) ))
600 #if defined(DO_PPC_STATISTICS)
601 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
602 OPCODES_SECTION opcode_t opc_##name = { \
610 .handler = &gen_##name, \
611 .oname = stringify(name), \
613 .oname = stringify(name), \
615 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
616 OPCODES_SECTION opcode_t opc_##name = { \
624 .handler = &gen_##name, \
630 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
631 OPCODES_SECTION opcode_t opc_##name = { \
639 .handler = &gen_##name, \
641 .oname = stringify(name), \
643 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
644 OPCODES_SECTION opcode_t opc_##name = { \
652 .handler = &gen_##name, \
658 #define GEN_OPCODE_MARK(name) \
659 OPCODES_SECTION opcode_t opc_##name = { \
665 .inval = 0x00000000, \
669 .oname = stringify(name), \
672 /* SPR load/store helpers */
673 static always_inline
void gen_load_spr(TCGv t
, int reg
)
675 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
678 static always_inline
void gen_store_spr(int reg
, TCGv t
)
680 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUState
, spr
[reg
]));
683 /* Start opcode list */
684 GEN_OPCODE_MARK(start
);
686 /* Invalid instruction */
687 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
)
689 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
692 static opc_handler_t invalid_handler
= {
695 .handler
= gen_invalid
,
698 /*** Integer comparison ***/
700 static always_inline
void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
704 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_xer
);
705 tcg_gen_shri_i32(cpu_crf
[crf
], cpu_crf
[crf
], XER_SO
);
706 tcg_gen_andi_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1);
708 l1
= gen_new_label();
709 l2
= gen_new_label();
710 l3
= gen_new_label();
712 tcg_gen_brcond_tl(TCG_COND_LT
, arg0
, arg1
, l1
);
713 tcg_gen_brcond_tl(TCG_COND_GT
, arg0
, arg1
, l2
);
715 tcg_gen_brcond_tl(TCG_COND_LTU
, arg0
, arg1
, l1
);
716 tcg_gen_brcond_tl(TCG_COND_GTU
, arg0
, arg1
, l2
);
718 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_EQ
);
721 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_LT
);
724 tcg_gen_ori_i32(cpu_crf
[crf
], cpu_crf
[crf
], 1 << CRF_GT
);
728 static always_inline
void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
730 TCGv t0
= tcg_const_local_tl(arg1
);
731 gen_op_cmp(arg0
, t0
, s
, crf
);
735 #if defined(TARGET_PPC64)
736 static always_inline
void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
739 t0
= tcg_temp_local_new();
740 t1
= tcg_temp_local_new();
742 tcg_gen_ext32s_tl(t0
, arg0
);
743 tcg_gen_ext32s_tl(t1
, arg1
);
745 tcg_gen_ext32u_tl(t0
, arg0
);
746 tcg_gen_ext32u_tl(t1
, arg1
);
748 gen_op_cmp(t0
, t1
, s
, crf
);
753 static always_inline
void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
755 TCGv t0
= tcg_const_local_tl(arg1
);
756 gen_op_cmp32(arg0
, t0
, s
, crf
);
761 static always_inline
void gen_set_Rc0 (DisasContext
*ctx
, TCGv reg
)
763 #if defined(TARGET_PPC64)
765 gen_op_cmpi32(reg
, 0, 1, 0);
768 gen_op_cmpi(reg
, 0, 1, 0);
772 GEN_HANDLER(cmp
, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER
)
774 #if defined(TARGET_PPC64)
775 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
776 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
777 1, crfD(ctx
->opcode
));
780 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
781 1, crfD(ctx
->opcode
));
785 GEN_HANDLER(cmpi
, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
)
787 #if defined(TARGET_PPC64)
788 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
789 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
790 1, crfD(ctx
->opcode
));
793 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], SIMM(ctx
->opcode
),
794 1, crfD(ctx
->opcode
));
798 GEN_HANDLER(cmpl
, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER
)
800 #if defined(TARGET_PPC64)
801 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
802 gen_op_cmp32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
803 0, crfD(ctx
->opcode
));
806 gen_op_cmp(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
807 0, crfD(ctx
->opcode
));
811 GEN_HANDLER(cmpli
, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER
)
813 #if defined(TARGET_PPC64)
814 if (!(ctx
->sf_mode
&& (ctx
->opcode
& 0x00200000)))
815 gen_op_cmpi32(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
816 0, crfD(ctx
->opcode
));
819 gen_op_cmpi(cpu_gpr
[rA(ctx
->opcode
)], UIMM(ctx
->opcode
),
820 0, crfD(ctx
->opcode
));
823 /* isel (PowerPC 2.03 specification) */
824 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
)
827 uint32_t bi
= rC(ctx
->opcode
);
831 l1
= gen_new_label();
832 l2
= gen_new_label();
834 mask
= 1 << (3 - (bi
& 0x03));
835 t0
= tcg_temp_new_i32();
836 tcg_gen_andi_i32(t0
, cpu_crf
[bi
>> 2], mask
);
837 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
838 if (rA(ctx
->opcode
) == 0)
839 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
841 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
844 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
846 tcg_temp_free_i32(t0
);
849 /*** Integer arithmetic ***/
851 static always_inline
void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
, TCGv arg1
, TCGv arg2
, int sub
)
856 l1
= gen_new_label();
857 /* Start with XER OV disabled, the most likely case */
858 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
859 t0
= tcg_temp_local_new();
860 tcg_gen_xor_tl(t0
, arg0
, arg1
);
861 #if defined(TARGET_PPC64)
863 tcg_gen_ext32s_tl(t0
, t0
);
866 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
868 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
869 tcg_gen_xor_tl(t0
, arg1
, arg2
);
870 #if defined(TARGET_PPC64)
872 tcg_gen_ext32s_tl(t0
, t0
);
875 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
877 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0, l1
);
878 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
883 static always_inline
void gen_op_arith_compute_ca(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
, int sub
)
885 int l1
= gen_new_label();
887 #if defined(TARGET_PPC64)
888 if (!(ctx
->sf_mode
)) {
893 tcg_gen_ext32u_tl(t0
, arg1
);
894 tcg_gen_ext32u_tl(t1
, arg2
);
896 tcg_gen_brcond_tl(TCG_COND_GTU
, t0
, t1
, l1
);
898 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
900 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
908 tcg_gen_brcond_tl(TCG_COND_GTU
, arg1
, arg2
, l1
);
910 tcg_gen_brcond_tl(TCG_COND_GEU
, arg1
, arg2
, l1
);
912 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
917 /* Common add function */
918 static always_inline
void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
919 int add_ca
, int compute_ca
, int compute_ov
)
923 if ((!compute_ca
&& !compute_ov
) ||
924 (!TCGV_EQUAL(ret
,arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
927 t0
= tcg_temp_local_new();
931 t1
= tcg_temp_local_new();
932 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
933 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
936 if (compute_ca
&& compute_ov
) {
937 /* Start with XER CA and OV disabled, the most likely case */
938 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
939 } else if (compute_ca
) {
940 /* Start with XER CA disabled, the most likely case */
941 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
942 } else if (compute_ov
) {
943 /* Start with XER OV disabled, the most likely case */
944 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
947 tcg_gen_add_tl(t0
, arg1
, arg2
);
950 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
953 tcg_gen_add_tl(t0
, t0
, t1
);
954 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
958 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
961 if (unlikely(Rc(ctx
->opcode
) != 0))
962 gen_set_Rc0(ctx
, t0
);
964 if (!TCGV_EQUAL(t0
, ret
)) {
965 tcg_gen_mov_tl(ret
, t0
);
969 /* Add functions with two operands */
970 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
971 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER) \
973 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
974 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
975 add_ca, compute_ca, compute_ov); \
977 /* Add functions with one operand and one immediate */
978 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
979 add_ca, compute_ca, compute_ov) \
980 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER) \
982 TCGv t0 = tcg_const_local_tl(const_val); \
983 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
984 cpu_gpr[rA(ctx->opcode)], t0, \
985 add_ca, compute_ca, compute_ov); \
989 /* add add. addo addo. */
990 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
991 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
992 /* addc addc. addco addco. */
993 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
994 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
995 /* adde adde. addeo addeo. */
996 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
997 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
998 /* addme addme. addmeo addmeo. */
999 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
1000 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
1001 /* addze addze. addzeo addzeo.*/
1002 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
1003 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
1005 GEN_HANDLER(addi
, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1007 target_long simm
= SIMM(ctx
->opcode
);
1009 if (rA(ctx
->opcode
) == 0) {
1011 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
);
1013 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
);
1017 static always_inline
void gen_op_addic (DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1020 target_long simm
= SIMM(ctx
->opcode
);
1022 /* Start with XER CA and OV disabled, the most likely case */
1023 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1025 if (likely(simm
!= 0)) {
1026 TCGv t0
= tcg_temp_local_new();
1027 tcg_gen_addi_tl(t0
, arg1
, simm
);
1028 gen_op_arith_compute_ca(ctx
, t0
, arg1
, 0);
1029 tcg_gen_mov_tl(ret
, t0
);
1032 tcg_gen_mov_tl(ret
, arg1
);
1035 gen_set_Rc0(ctx
, ret
);
1038 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1040 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1042 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1044 gen_op_addic(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1047 GEN_HANDLER(addis
, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1049 target_long simm
= SIMM(ctx
->opcode
);
1051 if (rA(ctx
->opcode
) == 0) {
1053 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
<< 16);
1055 tcg_gen_addi_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], simm
<< 16);
1059 static always_inline
void gen_op_arith_divw (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1060 int sign
, int compute_ov
)
1062 int l1
= gen_new_label();
1063 int l2
= gen_new_label();
1064 TCGv_i32 t0
= tcg_temp_local_new_i32();
1065 TCGv_i32 t1
= tcg_temp_local_new_i32();
1067 tcg_gen_trunc_tl_i32(t0
, arg1
);
1068 tcg_gen_trunc_tl_i32(t1
, arg2
);
1069 tcg_gen_brcondi_i32(TCG_COND_EQ
, t1
, 0, l1
);
1071 int l3
= gen_new_label();
1072 tcg_gen_brcondi_i32(TCG_COND_NE
, t1
, -1, l3
);
1073 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1075 tcg_gen_div_i32(t0
, t0
, t1
);
1077 tcg_gen_divu_i32(t0
, t0
, t1
);
1080 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1085 tcg_gen_sari_i32(t0
, t0
, 31);
1087 tcg_gen_movi_i32(t0
, 0);
1090 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1093 tcg_gen_extu_i32_tl(ret
, t0
);
1094 tcg_temp_free_i32(t0
);
1095 tcg_temp_free_i32(t1
);
1096 if (unlikely(Rc(ctx
->opcode
) != 0))
1097 gen_set_Rc0(ctx
, ret
);
1100 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1101 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER) \
1103 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1104 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1105 sign, compute_ov); \
1107 /* divwu divwu. divwuo divwuo. */
1108 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
1109 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
1110 /* divw divw. divwo divwo. */
1111 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
1112 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
1113 #if defined(TARGET_PPC64)
1114 static always_inline
void gen_op_arith_divd (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1115 int sign
, int compute_ov
)
1117 int l1
= gen_new_label();
1118 int l2
= gen_new_label();
1120 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg2
, 0, l1
);
1122 int l3
= gen_new_label();
1123 tcg_gen_brcondi_i64(TCG_COND_NE
, arg2
, -1, l3
);
1124 tcg_gen_brcondi_i64(TCG_COND_EQ
, arg1
, INT64_MIN
, l1
);
1126 tcg_gen_div_i64(ret
, arg1
, arg2
);
1128 tcg_gen_divu_i64(ret
, arg1
, arg2
);
1131 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1136 tcg_gen_sari_i64(ret
, arg1
, 63);
1138 tcg_gen_movi_i64(ret
, 0);
1141 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1144 if (unlikely(Rc(ctx
->opcode
) != 0))
1145 gen_set_Rc0(ctx
, ret
);
1147 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1148 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1150 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1151 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1152 sign, compute_ov); \
1154 /* divwu divwu. divwuo divwuo. */
1155 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1156 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1157 /* divw divw. divwo divwo. */
1158 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1159 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1163 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
)
1167 t0
= tcg_temp_new_i64();
1168 t1
= tcg_temp_new_i64();
1169 #if defined(TARGET_PPC64)
1170 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1171 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1172 tcg_gen_mul_i64(t0
, t0
, t1
);
1173 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1175 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1176 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1177 tcg_gen_mul_i64(t0
, t0
, t1
);
1178 tcg_gen_shri_i64(t0
, t0
, 32);
1179 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1181 tcg_temp_free_i64(t0
);
1182 tcg_temp_free_i64(t1
);
1183 if (unlikely(Rc(ctx
->opcode
) != 0))
1184 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1186 /* mulhwu mulhwu. */
1187 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
)
1191 t0
= tcg_temp_new_i64();
1192 t1
= tcg_temp_new_i64();
1193 #if defined(TARGET_PPC64)
1194 tcg_gen_ext32u_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1195 tcg_gen_ext32u_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1196 tcg_gen_mul_i64(t0
, t0
, t1
);
1197 tcg_gen_shri_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
1199 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1200 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1201 tcg_gen_mul_i64(t0
, t0
, t1
);
1202 tcg_gen_shri_i64(t0
, t0
, 32);
1203 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1205 tcg_temp_free_i64(t0
);
1206 tcg_temp_free_i64(t1
);
1207 if (unlikely(Rc(ctx
->opcode
) != 0))
1208 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1211 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
)
1213 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1214 cpu_gpr
[rB(ctx
->opcode
)]);
1215 tcg_gen_ext32s_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)]);
1216 if (unlikely(Rc(ctx
->opcode
) != 0))
1217 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1219 /* mullwo mullwo. */
1220 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
)
1225 t0
= tcg_temp_new_i64();
1226 t1
= tcg_temp_new_i64();
1227 l1
= gen_new_label();
1228 /* Start with XER OV disabled, the most likely case */
1229 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1230 #if defined(TARGET_PPC64)
1231 tcg_gen_ext32s_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1232 tcg_gen_ext32s_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1234 tcg_gen_ext_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1235 tcg_gen_ext_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1237 tcg_gen_mul_i64(t0
, t0
, t1
);
1238 #if defined(TARGET_PPC64)
1239 tcg_gen_ext32s_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1240 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, cpu_gpr
[rD(ctx
->opcode
)], l1
);
1242 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1243 tcg_gen_ext32s_i64(t1
, t0
);
1244 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
1246 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1248 tcg_temp_free_i64(t0
);
1249 tcg_temp_free_i64(t1
);
1250 if (unlikely(Rc(ctx
->opcode
) != 0))
1251 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1254 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1256 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1259 #if defined(TARGET_PPC64)
1260 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1261 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1263 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1264 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1265 if (unlikely(Rc(ctx->opcode) != 0)) \
1266 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1269 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00);
1270 /* mulhdu mulhdu. */
1271 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02);
1273 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
)
1275 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1276 cpu_gpr
[rB(ctx
->opcode
)]);
1277 if (unlikely(Rc(ctx
->opcode
) != 0))
1278 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1280 /* mulldo mulldo. */
1281 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17);
1284 /* neg neg. nego nego. */
1285 static always_inline
void gen_op_arith_neg (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, int ov_check
)
1287 int l1
= gen_new_label();
1288 int l2
= gen_new_label();
1289 TCGv t0
= tcg_temp_local_new();
1290 #if defined(TARGET_PPC64)
1292 tcg_gen_mov_tl(t0
, arg1
);
1293 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT64_MIN
, l1
);
1297 tcg_gen_ext32s_tl(t0
, arg1
);
1298 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, INT32_MIN
, l1
);
1300 tcg_gen_neg_tl(ret
, arg1
);
1302 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1306 tcg_gen_mov_tl(ret
, t0
);
1308 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
1312 if (unlikely(Rc(ctx
->opcode
) != 0))
1313 gen_set_Rc0(ctx
, ret
);
1315 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
)
1317 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0);
1319 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
)
1321 gen_op_arith_neg(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 1);
1324 /* Common subf function */
1325 static always_inline
void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
, TCGv arg2
,
1326 int add_ca
, int compute_ca
, int compute_ov
)
1330 if ((!compute_ca
&& !compute_ov
) ||
1331 (!TCGV_EQUAL(ret
, arg1
) && !TCGV_EQUAL(ret
, arg2
))) {
1334 t0
= tcg_temp_local_new();
1338 t1
= tcg_temp_local_new();
1339 tcg_gen_andi_tl(t1
, cpu_xer
, (1 << XER_CA
));
1340 tcg_gen_shri_tl(t1
, t1
, XER_CA
);
1343 if (compute_ca
&& compute_ov
) {
1344 /* Start with XER CA and OV disabled, the most likely case */
1345 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~((1 << XER_CA
) | (1 << XER_OV
)));
1346 } else if (compute_ca
) {
1347 /* Start with XER CA disabled, the most likely case */
1348 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1349 } else if (compute_ov
) {
1350 /* Start with XER OV disabled, the most likely case */
1351 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
1355 tcg_gen_not_tl(t0
, arg1
);
1356 tcg_gen_add_tl(t0
, t0
, arg2
);
1357 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 0);
1358 tcg_gen_add_tl(t0
, t0
, t1
);
1359 gen_op_arith_compute_ca(ctx
, t0
, t1
, 0);
1362 tcg_gen_sub_tl(t0
, arg2
, arg1
);
1364 gen_op_arith_compute_ca(ctx
, t0
, arg2
, 1);
1368 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
1371 if (unlikely(Rc(ctx
->opcode
) != 0))
1372 gen_set_Rc0(ctx
, t0
);
1374 if (!TCGV_EQUAL(t0
, ret
)) {
1375 tcg_gen_mov_tl(ret
, t0
);
1379 /* Sub functions with Two operands functions */
1380 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1381 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER) \
1383 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1384 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1385 add_ca, compute_ca, compute_ov); \
1387 /* Sub functions with one operand and one immediate */
1388 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1389 add_ca, compute_ca, compute_ov) \
1390 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER) \
1392 TCGv t0 = tcg_const_local_tl(const_val); \
1393 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1394 cpu_gpr[rA(ctx->opcode)], t0, \
1395 add_ca, compute_ca, compute_ov); \
1396 tcg_temp_free(t0); \
1398 /* subf subf. subfo subfo. */
1399 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
1400 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
1401 /* subfc subfc. subfco subfco. */
1402 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
1403 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
1404 /* subfe subfe. subfeo subfo. */
1405 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
1406 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
1407 /* subfme subfme. subfmeo subfmeo. */
1408 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
1409 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
1410 /* subfze subfze. subfzeo subfzeo.*/
1411 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
1412 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
1414 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1416 /* Start with XER CA and OV disabled, the most likely case */
1417 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1418 TCGv t0
= tcg_temp_local_new();
1419 TCGv t1
= tcg_const_local_tl(SIMM(ctx
->opcode
));
1420 tcg_gen_sub_tl(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)]);
1421 gen_op_arith_compute_ca(ctx
, t0
, t1
, 1);
1423 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
1427 /*** Integer logical ***/
1428 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1429 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type) \
1431 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1432 cpu_gpr[rB(ctx->opcode)]); \
1433 if (unlikely(Rc(ctx->opcode) != 0)) \
1434 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1437 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1438 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type) \
1440 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1441 if (unlikely(Rc(ctx->opcode) != 0)) \
1442 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1446 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
1448 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
1450 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1452 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
));
1453 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1456 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1458 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], UIMM(ctx
->opcode
) << 16);
1459 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1462 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
)
1464 gen_helper_cntlzw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1465 if (unlikely(Rc(ctx
->opcode
) != 0))
1466 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1469 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
1470 /* extsb & extsb. */
1471 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
1472 /* extsh & extsh. */
1473 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
1475 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
1477 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
1479 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
)
1483 rs
= rS(ctx
->opcode
);
1484 ra
= rA(ctx
->opcode
);
1485 rb
= rB(ctx
->opcode
);
1486 /* Optimisation for mr. ri case */
1487 if (rs
!= ra
|| rs
!= rb
) {
1489 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
1491 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
1492 if (unlikely(Rc(ctx
->opcode
) != 0))
1493 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
1494 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
1495 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
1496 #if defined(TARGET_PPC64)
1502 /* Set process priority to low */
1506 /* Set process priority to medium-low */
1510 /* Set process priority to normal */
1513 #if !defined(CONFIG_USER_ONLY)
1515 if (ctx
->mem_idx
> 0) {
1516 /* Set process priority to very low */
1521 if (ctx
->mem_idx
> 0) {
1522 /* Set process priority to medium-hight */
1527 if (ctx
->mem_idx
> 0) {
1528 /* Set process priority to high */
1533 if (ctx
->mem_idx
> 1) {
1534 /* Set process priority to very high */
1544 TCGv t0
= tcg_temp_new();
1545 gen_load_spr(t0
, SPR_PPR
);
1546 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
1547 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
1548 gen_store_spr(SPR_PPR
, t0
);
1555 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
1557 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
)
1559 /* Optimisation for "set to zero" case */
1560 if (rS(ctx
->opcode
) != rB(ctx
->opcode
))
1561 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1563 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1564 if (unlikely(Rc(ctx
->opcode
) != 0))
1565 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1568 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1570 target_ulong uimm
= UIMM(ctx
->opcode
);
1572 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1574 /* XXX: should handle special NOPs for POWER series */
1577 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1580 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1582 target_ulong uimm
= UIMM(ctx
->opcode
);
1584 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1588 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1591 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1593 target_ulong uimm
= UIMM(ctx
->opcode
);
1595 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1599 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
1602 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1604 target_ulong uimm
= UIMM(ctx
->opcode
);
1606 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
1610 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
<< 16);
1612 /* popcntb : PowerPC 2.03 specification */
1613 GEN_HANDLER(popcntb
, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB
)
1615 #if defined(TARGET_PPC64)
1617 gen_helper_popcntb_64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1620 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1623 #if defined(TARGET_PPC64)
1624 /* extsw & extsw. */
1625 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
1627 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
)
1629 gen_helper_cntlzd(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1630 if (unlikely(Rc(ctx
->opcode
) != 0))
1631 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1635 /*** Integer rotate ***/
1636 /* rlwimi & rlwimi. */
1637 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1639 uint32_t mb
, me
, sh
;
1641 mb
= MB(ctx
->opcode
);
1642 me
= ME(ctx
->opcode
);
1643 sh
= SH(ctx
->opcode
);
1644 if (likely(sh
== 0 && mb
== 0 && me
== 31)) {
1645 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1649 TCGv t0
= tcg_temp_new();
1650 #if defined(TARGET_PPC64)
1651 TCGv_i32 t2
= tcg_temp_new_i32();
1652 tcg_gen_trunc_i64_i32(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
1653 tcg_gen_rotli_i32(t2
, t2
, sh
);
1654 tcg_gen_extu_i32_i64(t0
, t2
);
1655 tcg_temp_free_i32(t2
);
1657 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1659 #if defined(TARGET_PPC64)
1663 mask
= MASK(mb
, me
);
1664 t1
= tcg_temp_new();
1665 tcg_gen_andi_tl(t0
, t0
, mask
);
1666 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1667 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1671 if (unlikely(Rc(ctx
->opcode
) != 0))
1672 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1674 /* rlwinm & rlwinm. */
1675 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1677 uint32_t mb
, me
, sh
;
1679 sh
= SH(ctx
->opcode
);
1680 mb
= MB(ctx
->opcode
);
1681 me
= ME(ctx
->opcode
);
1683 if (likely(mb
== 0 && me
== (31 - sh
))) {
1684 if (likely(sh
== 0)) {
1685 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1687 TCGv t0
= tcg_temp_new();
1688 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1689 tcg_gen_shli_tl(t0
, t0
, sh
);
1690 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1693 } else if (likely(sh
!= 0 && me
== 31 && sh
== (32 - mb
))) {
1694 TCGv t0
= tcg_temp_new();
1695 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1696 tcg_gen_shri_tl(t0
, t0
, mb
);
1697 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1700 TCGv t0
= tcg_temp_new();
1701 #if defined(TARGET_PPC64)
1702 TCGv_i32 t1
= tcg_temp_new_i32();
1703 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1704 tcg_gen_rotli_i32(t1
, t1
, sh
);
1705 tcg_gen_extu_i32_i64(t0
, t1
);
1706 tcg_temp_free_i32(t1
);
1708 tcg_gen_rotli_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1710 #if defined(TARGET_PPC64)
1714 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1717 if (unlikely(Rc(ctx
->opcode
) != 0))
1718 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1720 /* rlwnm & rlwnm. */
1721 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
1725 #if defined(TARGET_PPC64)
1729 mb
= MB(ctx
->opcode
);
1730 me
= ME(ctx
->opcode
);
1731 t0
= tcg_temp_new();
1732 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
1733 #if defined(TARGET_PPC64)
1734 t1
= tcg_temp_new_i32();
1735 t2
= tcg_temp_new_i32();
1736 tcg_gen_trunc_i64_i32(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1737 tcg_gen_trunc_i64_i32(t2
, t0
);
1738 tcg_gen_rotl_i32(t1
, t1
, t2
);
1739 tcg_gen_extu_i32_i64(t0
, t1
);
1740 tcg_temp_free_i32(t1
);
1741 tcg_temp_free_i32(t2
);
1743 tcg_gen_rotl_i32(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1745 if (unlikely(mb
!= 0 || me
!= 31)) {
1746 #if defined(TARGET_PPC64)
1750 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1752 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1755 if (unlikely(Rc(ctx
->opcode
) != 0))
1756 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1759 #if defined(TARGET_PPC64)
1760 #define GEN_PPC64_R2(name, opc1, opc2) \
1761 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1763 gen_##name(ctx, 0); \
1765 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1768 gen_##name(ctx, 1); \
1770 #define GEN_PPC64_R4(name, opc1, opc2) \
1771 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1773 gen_##name(ctx, 0, 0); \
1775 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
1778 gen_##name(ctx, 0, 1); \
1780 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1783 gen_##name(ctx, 1, 0); \
1785 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
1788 gen_##name(ctx, 1, 1); \
1791 static always_inline
void gen_rldinm (DisasContext
*ctx
, uint32_t mb
,
1792 uint32_t me
, uint32_t sh
)
1794 if (likely(sh
!= 0 && mb
== 0 && me
== (63 - sh
))) {
1795 tcg_gen_shli_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
1796 } else if (likely(sh
!= 0 && me
== 63 && sh
== (64 - mb
))) {
1797 tcg_gen_shri_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], mb
);
1799 TCGv t0
= tcg_temp_new();
1800 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1801 if (likely(mb
== 0 && me
== 63)) {
1802 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1804 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1808 if (unlikely(Rc(ctx
->opcode
) != 0))
1809 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1811 /* rldicl - rldicl. */
1812 static always_inline
void gen_rldicl (DisasContext
*ctx
, int mbn
, int shn
)
1816 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1817 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1818 gen_rldinm(ctx
, mb
, 63, sh
);
1820 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
1821 /* rldicr - rldicr. */
1822 static always_inline
void gen_rldicr (DisasContext
*ctx
, int men
, int shn
)
1826 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1827 me
= MB(ctx
->opcode
) | (men
<< 5);
1828 gen_rldinm(ctx
, 0, me
, sh
);
1830 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
1831 /* rldic - rldic. */
1832 static always_inline
void gen_rldic (DisasContext
*ctx
, int mbn
, int shn
)
1836 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1837 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1838 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
1840 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
1842 static always_inline
void gen_rldnm (DisasContext
*ctx
, uint32_t mb
,
1847 mb
= MB(ctx
->opcode
);
1848 me
= ME(ctx
->opcode
);
1849 t0
= tcg_temp_new();
1850 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1851 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
1852 if (unlikely(mb
!= 0 || me
!= 63)) {
1853 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, MASK(mb
, me
));
1855 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
1858 if (unlikely(Rc(ctx
->opcode
) != 0))
1859 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1862 /* rldcl - rldcl. */
1863 static always_inline
void gen_rldcl (DisasContext
*ctx
, int mbn
)
1867 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1868 gen_rldnm(ctx
, mb
, 63);
1870 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
1871 /* rldcr - rldcr. */
1872 static always_inline
void gen_rldcr (DisasContext
*ctx
, int men
)
1876 me
= MB(ctx
->opcode
) | (men
<< 5);
1877 gen_rldnm(ctx
, 0, me
);
1879 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
1880 /* rldimi - rldimi. */
1881 static always_inline
void gen_rldimi (DisasContext
*ctx
, int mbn
, int shn
)
1883 uint32_t sh
, mb
, me
;
1885 sh
= SH(ctx
->opcode
) | (shn
<< 5);
1886 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
1888 if (unlikely(sh
== 0 && mb
== 0)) {
1889 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1894 t0
= tcg_temp_new();
1895 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
1896 t1
= tcg_temp_new();
1897 mask
= MASK(mb
, me
);
1898 tcg_gen_andi_tl(t0
, t0
, mask
);
1899 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], ~mask
);
1900 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
1904 if (unlikely(Rc(ctx
->opcode
) != 0))
1905 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1907 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
1910 /*** Integer shift ***/
1912 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
)
1916 l1
= gen_new_label();
1917 l2
= gen_new_label();
1919 t0
= tcg_temp_local_new();
1920 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1921 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1922 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1925 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
1926 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
1929 if (unlikely(Rc(ctx
->opcode
) != 0))
1930 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1933 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
)
1935 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)],
1936 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
1937 if (unlikely(Rc(ctx
->opcode
) != 0))
1938 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1940 /* srawi & srawi. */
1941 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
)
1943 int sh
= SH(ctx
->opcode
);
1947 l1
= gen_new_label();
1948 l2
= gen_new_label();
1949 t0
= tcg_temp_local_new();
1950 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1951 tcg_gen_brcondi_tl(TCG_COND_GE
, t0
, 0, l1
);
1952 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
1953 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
1954 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
1957 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1959 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
1960 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, sh
);
1963 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
1964 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
1966 if (unlikely(Rc(ctx
->opcode
) != 0))
1967 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1970 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
)
1974 l1
= gen_new_label();
1975 l2
= gen_new_label();
1977 t0
= tcg_temp_local_new();
1978 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
1979 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x20, l1
);
1980 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
1983 t1
= tcg_temp_new();
1984 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
1985 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
, t0
);
1989 if (unlikely(Rc(ctx
->opcode
) != 0))
1990 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
1992 #if defined(TARGET_PPC64)
1994 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
)
1998 l1
= gen_new_label();
1999 l2
= gen_new_label();
2001 t0
= tcg_temp_local_new();
2002 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
2003 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
2004 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
2007 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
2010 if (unlikely(Rc(ctx
->opcode
) != 0))
2011 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2014 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
)
2016 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)],
2017 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2018 if (unlikely(Rc(ctx
->opcode
) != 0))
2019 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2021 /* sradi & sradi. */
2022 static always_inline
void gen_sradi (DisasContext
*ctx
, int n
)
2024 int sh
= SH(ctx
->opcode
) + (n
<< 5);
2028 l1
= gen_new_label();
2029 l2
= gen_new_label();
2030 t0
= tcg_temp_local_new();
2031 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
2032 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1ULL << sh
) - 1);
2033 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2034 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, 1 << XER_CA
);
2037 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
2040 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
2042 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2043 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
2045 if (unlikely(Rc(ctx
->opcode
) != 0))
2046 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2048 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
)
2052 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
)
2057 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
)
2061 l1
= gen_new_label();
2062 l2
= gen_new_label();
2064 t0
= tcg_temp_local_new();
2065 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x7f);
2066 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, 0x40, l1
);
2067 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
2070 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t0
);
2073 if (unlikely(Rc(ctx
->opcode
) != 0))
2074 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2078 /*** Floating-Point arithmetic ***/
2079 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
2080 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type) \
2082 if (unlikely(!ctx->fpu_enabled)) { \
2083 gen_exception(ctx, POWERPC_EXCP_FPU); \
2086 /* NIP cannot be restored if the memory exception comes from an helper */ \
2087 gen_update_nip(ctx, ctx->nip - 4); \
2088 gen_reset_fpstatus(); \
2089 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2090 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2092 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2094 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
2095 Rc(ctx->opcode) != 0); \
2098 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
2099 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
2100 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2102 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2103 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2105 if (unlikely(!ctx->fpu_enabled)) { \
2106 gen_exception(ctx, POWERPC_EXCP_FPU); \
2109 /* NIP cannot be restored if the memory exception comes from an helper */ \
2110 gen_update_nip(ctx, ctx->nip - 4); \
2111 gen_reset_fpstatus(); \
2112 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2113 cpu_fpr[rB(ctx->opcode)]); \
2115 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2117 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2118 set_fprf, Rc(ctx->opcode) != 0); \
2120 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2121 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2122 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2124 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2125 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2127 if (unlikely(!ctx->fpu_enabled)) { \
2128 gen_exception(ctx, POWERPC_EXCP_FPU); \
2131 /* NIP cannot be restored if the memory exception comes from an helper */ \
2132 gen_update_nip(ctx, ctx->nip - 4); \
2133 gen_reset_fpstatus(); \
2134 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2135 cpu_fpr[rC(ctx->opcode)]); \
2137 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2139 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2140 set_fprf, Rc(ctx->opcode) != 0); \
2142 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
2143 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2144 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2146 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2147 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type) \
2149 if (unlikely(!ctx->fpu_enabled)) { \
2150 gen_exception(ctx, POWERPC_EXCP_FPU); \
2153 /* NIP cannot be restored if the memory exception comes from an helper */ \
2154 gen_update_nip(ctx, ctx->nip - 4); \
2155 gen_reset_fpstatus(); \
2156 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2157 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2158 set_fprf, Rc(ctx->opcode) != 0); \
2161 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2162 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type) \
2164 if (unlikely(!ctx->fpu_enabled)) { \
2165 gen_exception(ctx, POWERPC_EXCP_FPU); \
2168 /* NIP cannot be restored if the memory exception comes from an helper */ \
2169 gen_update_nip(ctx, ctx->nip - 4); \
2170 gen_reset_fpstatus(); \
2171 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2172 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2173 set_fprf, Rc(ctx->opcode) != 0); \
2177 GEN_FLOAT_AB(add
, 0x15, 0x000007C0, 1, PPC_FLOAT
);
2179 GEN_FLOAT_AB(div
, 0x12, 0x000007C0, 1, PPC_FLOAT
);
2181 GEN_FLOAT_AC(mul
, 0x19, 0x0000F800, 1, PPC_FLOAT
);
2184 GEN_FLOAT_BS(re
, 0x3F, 0x18, 1, PPC_FLOAT_EXT
);
2187 GEN_FLOAT_BS(res
, 0x3B, 0x18, 1, PPC_FLOAT_FRES
);
2190 GEN_FLOAT_BS(rsqrte
, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE
);
2193 GEN_HANDLER(frsqrtes
, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES
)
2195 if (unlikely(!ctx
->fpu_enabled
)) {
2196 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2199 /* NIP cannot be restored if the memory exception comes from an helper */
2200 gen_update_nip(ctx
, ctx
->nip
- 4);
2201 gen_reset_fpstatus();
2202 gen_helper_frsqrte(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2203 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2204 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2208 _GEN_FLOAT_ACB(sel
, sel
, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL
);
2210 GEN_FLOAT_AB(sub
, 0x14, 0x000007C0, 1, PPC_FLOAT
);
2213 GEN_HANDLER(fsqrt
, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
)
2215 if (unlikely(!ctx
->fpu_enabled
)) {
2216 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2219 /* NIP cannot be restored if the memory exception comes from an helper */
2220 gen_update_nip(ctx
, ctx
->nip
- 4);
2221 gen_reset_fpstatus();
2222 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2223 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2226 GEN_HANDLER(fsqrts
, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT
)
2228 if (unlikely(!ctx
->fpu_enabled
)) {
2229 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2232 /* NIP cannot be restored if the memory exception comes from an helper */
2233 gen_update_nip(ctx
, ctx
->nip
- 4);
2234 gen_reset_fpstatus();
2235 gen_helper_fsqrt(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2236 gen_helper_frsp(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rD(ctx
->opcode
)]);
2237 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 1, Rc(ctx
->opcode
) != 0);
2240 /*** Floating-Point multiply-and-add ***/
2241 /* fmadd - fmadds */
2242 GEN_FLOAT_ACB(madd
, 0x1D, 1, PPC_FLOAT
);
2243 /* fmsub - fmsubs */
2244 GEN_FLOAT_ACB(msub
, 0x1C, 1, PPC_FLOAT
);
2245 /* fnmadd - fnmadds */
2246 GEN_FLOAT_ACB(nmadd
, 0x1F, 1, PPC_FLOAT
);
2247 /* fnmsub - fnmsubs */
2248 GEN_FLOAT_ACB(nmsub
, 0x1E, 1, PPC_FLOAT
);
2250 /*** Floating-Point round & convert ***/
2252 GEN_FLOAT_B(ctiw
, 0x0E, 0x00, 0, PPC_FLOAT
);
2254 GEN_FLOAT_B(ctiwz
, 0x0F, 0x00, 0, PPC_FLOAT
);
2256 GEN_FLOAT_B(rsp
, 0x0C, 0x00, 1, PPC_FLOAT
);
2257 #if defined(TARGET_PPC64)
2259 GEN_FLOAT_B(cfid
, 0x0E, 0x1A, 1, PPC_64B
);
2261 GEN_FLOAT_B(ctid
, 0x0E, 0x19, 0, PPC_64B
);
2263 GEN_FLOAT_B(ctidz
, 0x0F, 0x19, 0, PPC_64B
);
2267 GEN_FLOAT_B(rin
, 0x08, 0x0C, 1, PPC_FLOAT_EXT
);
2269 GEN_FLOAT_B(riz
, 0x08, 0x0D, 1, PPC_FLOAT_EXT
);
2271 GEN_FLOAT_B(rip
, 0x08, 0x0E, 1, PPC_FLOAT_EXT
);
2273 GEN_FLOAT_B(rim
, 0x08, 0x0F, 1, PPC_FLOAT_EXT
);
2275 /*** Floating-Point compare ***/
2277 GEN_HANDLER(fcmpo
, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT
)
2280 if (unlikely(!ctx
->fpu_enabled
)) {
2281 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2284 /* NIP cannot be restored if the memory exception comes from an helper */
2285 gen_update_nip(ctx
, ctx
->nip
- 4);
2286 gen_reset_fpstatus();
2287 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2288 gen_helper_fcmpo(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2289 tcg_temp_free_i32(crf
);
2290 gen_helper_float_check_status();
2294 GEN_HANDLER(fcmpu
, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT
)
2297 if (unlikely(!ctx
->fpu_enabled
)) {
2298 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2301 /* NIP cannot be restored if the memory exception comes from an helper */
2302 gen_update_nip(ctx
, ctx
->nip
- 4);
2303 gen_reset_fpstatus();
2304 crf
= tcg_const_i32(crfD(ctx
->opcode
));
2305 gen_helper_fcmpu(cpu_fpr
[rA(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)], crf
);
2306 tcg_temp_free_i32(crf
);
2307 gen_helper_float_check_status();
2310 /*** Floating-point move ***/
2312 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2313 GEN_FLOAT_B(abs
, 0x08, 0x08, 0, PPC_FLOAT
);
2316 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2317 GEN_HANDLER(fmr
, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT
)
2319 if (unlikely(!ctx
->fpu_enabled
)) {
2320 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2323 tcg_gen_mov_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpr
[rB(ctx
->opcode
)]);
2324 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2328 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2329 GEN_FLOAT_B(nabs
, 0x08, 0x04, 0, PPC_FLOAT
);
2331 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2332 GEN_FLOAT_B(neg
, 0x08, 0x01, 0, PPC_FLOAT
);
2334 /*** Floating-Point status & ctrl register ***/
2336 GEN_HANDLER(mcrfs
, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT
)
2340 if (unlikely(!ctx
->fpu_enabled
)) {
2341 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2344 bfa
= 4 * (7 - crfS(ctx
->opcode
));
2345 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_fpscr
, bfa
);
2346 tcg_gen_andi_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], 0xf);
2347 tcg_gen_andi_i32(cpu_fpscr
, cpu_fpscr
, ~(0xF << bfa
));
2351 GEN_HANDLER(mffs
, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT
)
2353 if (unlikely(!ctx
->fpu_enabled
)) {
2354 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2357 gen_reset_fpstatus();
2358 tcg_gen_extu_i32_i64(cpu_fpr
[rD(ctx
->opcode
)], cpu_fpscr
);
2359 gen_compute_fprf(cpu_fpr
[rD(ctx
->opcode
)], 0, Rc(ctx
->opcode
) != 0);
2363 GEN_HANDLER(mtfsb0
, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT
)
2367 if (unlikely(!ctx
->fpu_enabled
)) {
2368 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2371 crb
= 31 - crbD(ctx
->opcode
);
2372 gen_reset_fpstatus();
2373 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
)) {
2375 /* NIP cannot be restored if the memory exception comes from an helper */
2376 gen_update_nip(ctx
, ctx
->nip
- 4);
2377 t0
= tcg_const_i32(crb
);
2378 gen_helper_fpscr_clrbit(t0
);
2379 tcg_temp_free_i32(t0
);
2381 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2382 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2387 GEN_HANDLER(mtfsb1
, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT
)
2391 if (unlikely(!ctx
->fpu_enabled
)) {
2392 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2395 crb
= 31 - crbD(ctx
->opcode
);
2396 gen_reset_fpstatus();
2397 /* XXX: we pretend we can only do IEEE floating-point computations */
2398 if (likely(crb
!= FPSCR_FEX
&& crb
!= FPSCR_VX
&& crb
!= FPSCR_NI
)) {
2400 /* NIP cannot be restored if the memory exception comes from an helper */
2401 gen_update_nip(ctx
, ctx
->nip
- 4);
2402 t0
= tcg_const_i32(crb
);
2403 gen_helper_fpscr_setbit(t0
);
2404 tcg_temp_free_i32(t0
);
2406 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2407 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2409 /* We can raise a differed exception */
2410 gen_helper_float_check_status();
2414 GEN_HANDLER(mtfsf
, 0x3F, 0x07, 0x16, 0x02010000, PPC_FLOAT
)
2418 if (unlikely(!ctx
->fpu_enabled
)) {
2419 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2422 /* NIP cannot be restored if the memory exception comes from an helper */
2423 gen_update_nip(ctx
, ctx
->nip
- 4);
2424 gen_reset_fpstatus();
2425 t0
= tcg_const_i32(FM(ctx
->opcode
));
2426 gen_helper_store_fpscr(cpu_fpr
[rB(ctx
->opcode
)], t0
);
2427 tcg_temp_free_i32(t0
);
2428 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2429 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2431 /* We can raise a differed exception */
2432 gen_helper_float_check_status();
2436 GEN_HANDLER(mtfsfi
, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT
)
2442 if (unlikely(!ctx
->fpu_enabled
)) {
2443 gen_exception(ctx
, POWERPC_EXCP_FPU
);
2446 bf
= crbD(ctx
->opcode
) >> 2;
2448 /* NIP cannot be restored if the memory exception comes from an helper */
2449 gen_update_nip(ctx
, ctx
->nip
- 4);
2450 gen_reset_fpstatus();
2451 t0
= tcg_const_i64(FPIMM(ctx
->opcode
) << (4 * sh
));
2452 t1
= tcg_const_i32(1 << sh
);
2453 gen_helper_store_fpscr(t0
, t1
);
2454 tcg_temp_free_i64(t0
);
2455 tcg_temp_free_i32(t1
);
2456 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2457 tcg_gen_shri_i32(cpu_crf
[1], cpu_fpscr
, FPSCR_OX
);
2459 /* We can raise a differed exception */
2460 gen_helper_float_check_status();
2463 /*** Addressing modes ***/
2464 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2465 static always_inline
void gen_addr_imm_index (DisasContext
*ctx
, TCGv EA
, target_long maskl
)
2467 target_long simm
= SIMM(ctx
->opcode
);
2470 if (rA(ctx
->opcode
) == 0) {
2471 #if defined(TARGET_PPC64)
2472 if (!ctx
->sf_mode
) {
2473 tcg_gen_movi_tl(EA
, (uint32_t)simm
);
2476 tcg_gen_movi_tl(EA
, simm
);
2477 } else if (likely(simm
!= 0)) {
2478 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
2479 #if defined(TARGET_PPC64)
2480 if (!ctx
->sf_mode
) {
2481 tcg_gen_ext32u_tl(EA
, EA
);
2485 #if defined(TARGET_PPC64)
2486 if (!ctx
->sf_mode
) {
2487 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2490 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2494 static always_inline
void gen_addr_reg_index (DisasContext
*ctx
, TCGv EA
)
2496 if (rA(ctx
->opcode
) == 0) {
2497 #if defined(TARGET_PPC64)
2498 if (!ctx
->sf_mode
) {
2499 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2502 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
2504 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2505 #if defined(TARGET_PPC64)
2506 if (!ctx
->sf_mode
) {
2507 tcg_gen_ext32u_tl(EA
, EA
);
2513 static always_inline
void gen_addr_register (DisasContext
*ctx
, TCGv EA
)
2515 if (rA(ctx
->opcode
) == 0) {
2516 tcg_gen_movi_tl(EA
, 0);
2518 #if defined(TARGET_PPC64)
2519 if (!ctx
->sf_mode
) {
2520 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2523 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
2527 static always_inline
void gen_addr_add (DisasContext
*ctx
, TCGv ret
, TCGv arg1
, target_long val
)
2529 tcg_gen_addi_tl(ret
, arg1
, val
);
2530 #if defined(TARGET_PPC64)
2531 if (!ctx
->sf_mode
) {
2532 tcg_gen_ext32u_tl(ret
, ret
);
2537 static always_inline
void gen_check_align (DisasContext
*ctx
, TCGv EA
, int mask
)
2539 int l1
= gen_new_label();
2540 TCGv t0
= tcg_temp_new();
2542 /* NIP cannot be restored if the memory exception comes from an helper */
2543 gen_update_nip(ctx
, ctx
->nip
- 4);
2544 tcg_gen_andi_tl(t0
, EA
, mask
);
2545 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
2546 t1
= tcg_const_i32(POWERPC_EXCP_ALIGN
);
2547 t2
= tcg_const_i32(0);
2548 gen_helper_raise_exception_err(t1
, t2
);
2549 tcg_temp_free_i32(t1
);
2550 tcg_temp_free_i32(t2
);
2555 /*** Integer load ***/
2556 static always_inline
void gen_qemu_ld8u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2558 tcg_gen_qemu_ld8u(arg1
, arg2
, ctx
->mem_idx
);
2561 static always_inline
void gen_qemu_ld8s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2563 tcg_gen_qemu_ld8s(arg1
, arg2
, ctx
->mem_idx
);
2566 static always_inline
void gen_qemu_ld16u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2568 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2569 if (unlikely(ctx
->le_mode
)) {
2570 #if defined(TARGET_PPC64)
2571 TCGv_i32 t0
= tcg_temp_new_i32();
2572 tcg_gen_trunc_tl_i32(t0
, arg1
);
2573 tcg_gen_bswap16_i32(t0
, t0
);
2574 tcg_gen_extu_i32_tl(arg1
, t0
);
2575 tcg_temp_free_i32(t0
);
2577 tcg_gen_bswap16_i32(arg1
, arg1
);
2582 static always_inline
void gen_qemu_ld16s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2584 if (unlikely(ctx
->le_mode
)) {
2585 #if defined(TARGET_PPC64)
2587 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2588 t0
= tcg_temp_new_i32();
2589 tcg_gen_trunc_tl_i32(t0
, arg1
);
2590 tcg_gen_bswap16_i32(t0
, t0
);
2591 tcg_gen_extu_i32_tl(arg1
, t0
);
2592 tcg_gen_ext16s_tl(arg1
, arg1
);
2593 tcg_temp_free_i32(t0
);
2595 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2596 tcg_gen_bswap16_i32(arg1
, arg1
);
2597 tcg_gen_ext16s_i32(arg1
, arg1
);
2600 tcg_gen_qemu_ld16s(arg1
, arg2
, ctx
->mem_idx
);
2604 static always_inline
void gen_qemu_ld32u(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2606 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2607 if (unlikely(ctx
->le_mode
)) {
2608 #if defined(TARGET_PPC64)
2609 TCGv_i32 t0
= tcg_temp_new_i32();
2610 tcg_gen_trunc_tl_i32(t0
, arg1
);
2611 tcg_gen_bswap_i32(t0
, t0
);
2612 tcg_gen_extu_i32_tl(arg1
, t0
);
2613 tcg_temp_free_i32(t0
);
2615 tcg_gen_bswap_i32(arg1
, arg1
);
2620 #if defined(TARGET_PPC64)
2621 static always_inline
void gen_qemu_ld32s(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2623 if (unlikely(ctx
->mem_idx
)) {
2625 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
2626 t0
= tcg_temp_new_i32();
2627 tcg_gen_trunc_tl_i32(t0
, arg1
);
2628 tcg_gen_bswap_i32(t0
, t0
);
2629 tcg_gen_ext_i32_tl(arg1
, t0
);
2630 tcg_temp_free_i32(t0
);
2632 tcg_gen_qemu_ld32s(arg1
, arg2
, ctx
->mem_idx
);
2636 static always_inline
void gen_qemu_ld64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2638 tcg_gen_qemu_ld64(arg1
, arg2
, ctx
->mem_idx
);
2639 if (unlikely(ctx
->le_mode
)) {
2640 tcg_gen_bswap_i64(arg1
, arg1
);
2644 static always_inline
void gen_qemu_st8(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2646 tcg_gen_qemu_st8(arg1
, arg2
, ctx
->mem_idx
);
2649 static always_inline
void gen_qemu_st16(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2651 if (unlikely(ctx
->le_mode
)) {
2652 #if defined(TARGET_PPC64)
2655 t0
= tcg_temp_new_i32();
2656 tcg_gen_trunc_tl_i32(t0
, arg1
);
2657 tcg_gen_ext16u_i32(t0
, t0
);
2658 tcg_gen_bswap16_i32(t0
, t0
);
2659 t1
= tcg_temp_new();
2660 tcg_gen_extu_i32_tl(t1
, t0
);
2661 tcg_temp_free_i32(t0
);
2662 tcg_gen_qemu_st16(t1
, arg2
, ctx
->mem_idx
);
2665 TCGv t0
= tcg_temp_new();
2666 tcg_gen_ext16u_tl(t0
, arg1
);
2667 tcg_gen_bswap16_i32(t0
, t0
);
2668 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
2672 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
2676 static always_inline
void gen_qemu_st32(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2678 if (unlikely(ctx
->le_mode
)) {
2679 #if defined(TARGET_PPC64)
2682 t0
= tcg_temp_new_i32();
2683 tcg_gen_trunc_tl_i32(t0
, arg1
);
2684 tcg_gen_bswap_i32(t0
, t0
);
2685 t1
= tcg_temp_new();
2686 tcg_gen_extu_i32_tl(t1
, t0
);
2687 tcg_temp_free_i32(t0
);
2688 tcg_gen_qemu_st32(t1
, arg2
, ctx
->mem_idx
);
2691 TCGv t0
= tcg_temp_new_i32();
2692 tcg_gen_bswap_i32(t0
, arg1
);
2693 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
2697 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
2701 static always_inline
void gen_qemu_st64(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
2703 if (unlikely(ctx
->le_mode
)) {
2704 TCGv_i64 t0
= tcg_temp_new_i64();
2705 tcg_gen_bswap_i64(t0
, arg1
);
2706 tcg_gen_qemu_st64(t0
, arg2
, ctx
->mem_idx
);
2707 tcg_temp_free_i64(t0
);
2709 tcg_gen_qemu_st64(arg1
, arg2
, ctx
->mem_idx
);
2712 #define GEN_LD(name, ldop, opc, type) \
2713 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2716 gen_set_access_type(ctx, ACCESS_INT); \
2717 EA = tcg_temp_new(); \
2718 gen_addr_imm_index(ctx, EA, 0); \
2719 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2720 tcg_temp_free(EA); \
2723 #define GEN_LDU(name, ldop, opc, type) \
2724 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2727 if (unlikely(rA(ctx->opcode) == 0 || \
2728 rA(ctx->opcode) == rD(ctx->opcode))) { \
2729 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2732 gen_set_access_type(ctx, ACCESS_INT); \
2733 EA = tcg_temp_new(); \
2734 if (type == PPC_64B) \
2735 gen_addr_imm_index(ctx, EA, 0x03); \
2737 gen_addr_imm_index(ctx, EA, 0); \
2738 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2739 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2740 tcg_temp_free(EA); \
2743 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2744 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2747 if (unlikely(rA(ctx->opcode) == 0 || \
2748 rA(ctx->opcode) == rD(ctx->opcode))) { \
2749 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2752 gen_set_access_type(ctx, ACCESS_INT); \
2753 EA = tcg_temp_new(); \
2754 gen_addr_reg_index(ctx, EA); \
2755 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2756 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2757 tcg_temp_free(EA); \
2760 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2761 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2764 gen_set_access_type(ctx, ACCESS_INT); \
2765 EA = tcg_temp_new(); \
2766 gen_addr_reg_index(ctx, EA); \
2767 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2768 tcg_temp_free(EA); \
2771 #define GEN_LDS(name, ldop, op, type) \
2772 GEN_LD(name, ldop, op | 0x20, type); \
2773 GEN_LDU(name, ldop, op | 0x21, type); \
2774 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2775 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2777 /* lbz lbzu lbzux lbzx */
2778 GEN_LDS(lbz
, ld8u
, 0x02, PPC_INTEGER
);
2779 /* lha lhau lhaux lhax */
2780 GEN_LDS(lha
, ld16s
, 0x0A, PPC_INTEGER
);
2781 /* lhz lhzu lhzux lhzx */
2782 GEN_LDS(lhz
, ld16u
, 0x08, PPC_INTEGER
);
2783 /* lwz lwzu lwzux lwzx */
2784 GEN_LDS(lwz
, ld32u
, 0x00, PPC_INTEGER
);
2785 #if defined(TARGET_PPC64)
2787 GEN_LDUX(lwa
, ld32s
, 0x15, 0x0B, PPC_64B
);
2789 GEN_LDX(lwa
, ld32s
, 0x15, 0x0A, PPC_64B
);
2791 GEN_LDUX(ld
, ld64
, 0x15, 0x01, PPC_64B
);
2793 GEN_LDX(ld
, ld64
, 0x15, 0x00, PPC_64B
);
2794 GEN_HANDLER(ld
, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B
)
2797 if (Rc(ctx
->opcode
)) {
2798 if (unlikely(rA(ctx
->opcode
) == 0 ||
2799 rA(ctx
->opcode
) == rD(ctx
->opcode
))) {
2800 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2804 gen_set_access_type(ctx
, ACCESS_INT
);
2805 EA
= tcg_temp_new();
2806 gen_addr_imm_index(ctx
, EA
, 0x03);
2807 if (ctx
->opcode
& 0x02) {
2808 /* lwa (lwau is undefined) */
2809 gen_qemu_ld32s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2812 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], EA
);
2814 if (Rc(ctx
->opcode
))
2815 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2819 GEN_HANDLER(lq
, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX
)
2821 #if defined(CONFIG_USER_ONLY)
2822 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2827 /* Restore CPU state */
2828 if (unlikely(ctx
->mem_idx
== 0)) {
2829 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2832 ra
= rA(ctx
->opcode
);
2833 rd
= rD(ctx
->opcode
);
2834 if (unlikely((rd
& 1) || rd
== ra
)) {
2835 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2838 if (unlikely(ctx
->le_mode
)) {
2839 /* Little-endian mode is not handled */
2840 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2843 gen_set_access_type(ctx
, ACCESS_INT
);
2844 EA
= tcg_temp_new();
2845 gen_addr_imm_index(ctx
, EA
, 0x0F);
2846 gen_qemu_ld64(ctx
, cpu_gpr
[rd
], EA
);
2847 gen_addr_add(ctx
, EA
, EA
, 8);
2848 gen_qemu_ld64(ctx
, cpu_gpr
[rd
+1], EA
);
2854 /*** Integer store ***/
2855 #define GEN_ST(name, stop, opc, type) \
2856 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2859 gen_set_access_type(ctx, ACCESS_INT); \
2860 EA = tcg_temp_new(); \
2861 gen_addr_imm_index(ctx, EA, 0); \
2862 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2863 tcg_temp_free(EA); \
2866 #define GEN_STU(name, stop, opc, type) \
2867 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2870 if (unlikely(rA(ctx->opcode) == 0)) { \
2871 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2874 gen_set_access_type(ctx, ACCESS_INT); \
2875 EA = tcg_temp_new(); \
2876 if (type == PPC_64B) \
2877 gen_addr_imm_index(ctx, EA, 0x03); \
2879 gen_addr_imm_index(ctx, EA, 0); \
2880 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2881 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2882 tcg_temp_free(EA); \
2885 #define GEN_STUX(name, stop, opc2, opc3, type) \
2886 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2889 if (unlikely(rA(ctx->opcode) == 0)) { \
2890 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2893 gen_set_access_type(ctx, ACCESS_INT); \
2894 EA = tcg_temp_new(); \
2895 gen_addr_reg_index(ctx, EA); \
2896 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2897 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2898 tcg_temp_free(EA); \
2901 #define GEN_STX(name, stop, opc2, opc3, type) \
2902 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2905 gen_set_access_type(ctx, ACCESS_INT); \
2906 EA = tcg_temp_new(); \
2907 gen_addr_reg_index(ctx, EA); \
2908 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2909 tcg_temp_free(EA); \
2912 #define GEN_STS(name, stop, op, type) \
2913 GEN_ST(name, stop, op | 0x20, type); \
2914 GEN_STU(name, stop, op | 0x21, type); \
2915 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2916 GEN_STX(name, stop, 0x17, op | 0x00, type)
2918 /* stb stbu stbux stbx */
2919 GEN_STS(stb
, st8
, 0x06, PPC_INTEGER
);
2920 /* sth sthu sthux sthx */
2921 GEN_STS(sth
, st16
, 0x0C, PPC_INTEGER
);
2922 /* stw stwu stwux stwx */
2923 GEN_STS(stw
, st32
, 0x04, PPC_INTEGER
);
2924 #if defined(TARGET_PPC64)
2925 GEN_STUX(std
, st64
, 0x15, 0x05, PPC_64B
);
2926 GEN_STX(std
, st64
, 0x15, 0x04, PPC_64B
);
2927 GEN_HANDLER(std
, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B
)
2932 rs
= rS(ctx
->opcode
);
2933 if ((ctx
->opcode
& 0x3) == 0x2) {
2934 #if defined(CONFIG_USER_ONLY)
2935 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2938 if (unlikely(ctx
->mem_idx
== 0)) {
2939 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
2942 if (unlikely(rs
& 1)) {
2943 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2946 if (unlikely(ctx
->le_mode
)) {
2947 /* Little-endian mode is not handled */
2948 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_LE
);
2951 gen_set_access_type(ctx
, ACCESS_INT
);
2952 EA
= tcg_temp_new();
2953 gen_addr_imm_index(ctx
, EA
, 0x03);
2954 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2955 gen_addr_add(ctx
, EA
, EA
, 8);
2956 gen_qemu_st64(ctx
, cpu_gpr
[rs
+1], EA
);
2961 if (Rc(ctx
->opcode
)) {
2962 if (unlikely(rA(ctx
->opcode
) == 0)) {
2963 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
2967 gen_set_access_type(ctx
, ACCESS_INT
);
2968 EA
= tcg_temp_new();
2969 gen_addr_imm_index(ctx
, EA
, 0x03);
2970 gen_qemu_st64(ctx
, cpu_gpr
[rs
], EA
);
2971 if (Rc(ctx
->opcode
))
2972 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], EA
);
2977 /*** Integer load and store with byte reverse ***/
2979 static void always_inline
gen_qemu_ld16ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2981 tcg_gen_qemu_ld16u(arg1
, arg2
, ctx
->mem_idx
);
2982 if (likely(!ctx
->le_mode
)) {
2983 #if defined(TARGET_PPC64)
2984 TCGv_i32 t0
= tcg_temp_new_i32();
2985 tcg_gen_trunc_tl_i32(t0
, arg1
);
2986 tcg_gen_bswap16_i32(t0
, t0
);
2987 tcg_gen_extu_i32_tl(arg1
, t0
);
2988 tcg_temp_free_i32(t0
);
2990 tcg_gen_bswap16_i32(arg1
, arg1
);
2994 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
2997 static void always_inline
gen_qemu_ld32ur(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
2999 tcg_gen_qemu_ld32u(arg1
, arg2
, ctx
->mem_idx
);
3000 if (likely(!ctx
->le_mode
)) {
3001 #if defined(TARGET_PPC64)
3002 TCGv_i32 t0
= tcg_temp_new_i32();
3003 tcg_gen_trunc_tl_i32(t0
, arg1
);
3004 tcg_gen_bswap_i32(t0
, t0
);
3005 tcg_gen_extu_i32_tl(arg1
, t0
);
3006 tcg_temp_free_i32(t0
);
3008 tcg_gen_bswap_i32(arg1
, arg1
);
3012 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
3015 static void always_inline
gen_qemu_st16r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
3017 if (likely(!ctx
->le_mode
)) {
3018 #if defined(TARGET_PPC64)
3021 t0
= tcg_temp_new_i32();
3022 tcg_gen_trunc_tl_i32(t0
, arg1
);
3023 tcg_gen_ext16u_i32(t0
, t0
);
3024 tcg_gen_bswap16_i32(t0
, t0
);
3025 t1
= tcg_temp_new();
3026 tcg_gen_extu_i32_tl(t1
, t0
);
3027 tcg_temp_free_i32(t0
);
3028 tcg_gen_qemu_st16(t1
, arg2
, ctx
->mem_idx
);
3031 TCGv t0
= tcg_temp_new();
3032 tcg_gen_ext16u_tl(t0
, arg1
);
3033 tcg_gen_bswap16_i32(t0
, t0
);
3034 tcg_gen_qemu_st16(t0
, arg2
, ctx
->mem_idx
);
3038 tcg_gen_qemu_st16(arg1
, arg2
, ctx
->mem_idx
);
3041 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
3044 static void always_inline
gen_qemu_st32r(DisasContext
*ctx
, TCGv arg1
, TCGv arg2
)
3046 if (likely(!ctx
->le_mode
)) {
3047 #if defined(TARGET_PPC64)
3050 t0
= tcg_temp_new_i32();
3051 tcg_gen_trunc_tl_i32(t0
, arg1
);
3052 tcg_gen_bswap_i32(t0
, t0
);
3053 t1
= tcg_temp_new();
3054 tcg_gen_extu_i32_tl(t1
, t0
);
3055 tcg_temp_free_i32(t0
);
3056 tcg_gen_qemu_st32(t1
, arg2
, ctx
->mem_idx
);
3059 TCGv t0
= tcg_temp_new_i32();
3060 tcg_gen_bswap_i32(t0
, arg1
);
3061 tcg_gen_qemu_st32(t0
, arg2
, ctx
->mem_idx
);
3065 tcg_gen_qemu_st32(arg1
, arg2
, ctx
->mem_idx
);
3068 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
3070 /*** Integer load and store multiple ***/
3072 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
3076 gen_set_access_type(ctx
, ACCESS_INT
);
3077 /* NIP cannot be restored if the memory exception comes from an helper */
3078 gen_update_nip(ctx
, ctx
->nip
- 4);
3079 t0
= tcg_temp_new();
3080 t1
= tcg_const_i32(rD(ctx
->opcode
));
3081 gen_addr_imm_index(ctx
, t0
, 0);
3082 gen_helper_lmw(t0
, t1
);
3084 tcg_temp_free_i32(t1
);
3088 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
)
3092 gen_set_access_type(ctx
, ACCESS_INT
);
3093 /* NIP cannot be restored if the memory exception comes from an helper */
3094 gen_update_nip(ctx
, ctx
->nip
- 4);
3095 t0
= tcg_temp_new();
3096 t1
= tcg_const_i32(rS(ctx
->opcode
));
3097 gen_addr_imm_index(ctx
, t0
, 0);
3098 gen_helper_stmw(t0
, t1
);
3100 tcg_temp_free_i32(t1
);
3103 /*** Integer load and store strings ***/
3105 /* PowerPC32 specification says we must generate an exception if
3106 * rA is in the range of registers to be loaded.
3107 * In an other hand, IBM says this is valid, but rA won't be loaded.
3108 * For now, I'll follow the spec...
3110 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
)
3114 int nb
= NB(ctx
->opcode
);
3115 int start
= rD(ctx
->opcode
);
3116 int ra
= rA(ctx
->opcode
);
3122 if (unlikely(((start
+ nr
) > 32 &&
3123 start
<= ra
&& (start
+ nr
- 32) > ra
) ||
3124 ((start
+ nr
) <= 32 && start
<= ra
&& (start
+ nr
) > ra
))) {
3125 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3128 gen_set_access_type(ctx
, ACCESS_INT
);
3129 /* NIP cannot be restored if the memory exception comes from an helper */
3130 gen_update_nip(ctx
, ctx
->nip
- 4);
3131 t0
= tcg_temp_new();
3132 gen_addr_register(ctx
, t0
);
3133 t1
= tcg_const_i32(nb
);
3134 t2
= tcg_const_i32(start
);
3135 gen_helper_lsw(t0
, t1
, t2
);
3137 tcg_temp_free_i32(t1
);
3138 tcg_temp_free_i32(t2
);
3142 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
)
3145 TCGv_i32 t1
, t2
, t3
;
3146 gen_set_access_type(ctx
, ACCESS_INT
);
3147 /* NIP cannot be restored if the memory exception comes from an helper */
3148 gen_update_nip(ctx
, ctx
->nip
- 4);
3149 t0
= tcg_temp_new();
3150 gen_addr_reg_index(ctx
, t0
);
3151 t1
= tcg_const_i32(rD(ctx
->opcode
));
3152 t2
= tcg_const_i32(rA(ctx
->opcode
));
3153 t3
= tcg_const_i32(rB(ctx
->opcode
));
3154 gen_helper_lswx(t0
, t1
, t2
, t3
);
3156 tcg_temp_free_i32(t1
);
3157 tcg_temp_free_i32(t2
);
3158 tcg_temp_free_i32(t3
);
3162 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
)
3166 int nb
= NB(ctx
->opcode
);
3167 gen_set_access_type(ctx
, ACCESS_INT
);
3168 /* NIP cannot be restored if the memory exception comes from an helper */
3169 gen_update_nip(ctx
, ctx
->nip
- 4);
3170 t0
= tcg_temp_new();
3171 gen_addr_register(ctx
, t0
);
3174 t1
= tcg_const_i32(nb
);
3175 t2
= tcg_const_i32(rS(ctx
->opcode
));
3176 gen_helper_stsw(t0
, t1
, t2
);
3178 tcg_temp_free_i32(t1
);
3179 tcg_temp_free_i32(t2
);
3183 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
)
3187 gen_set_access_type(ctx
, ACCESS_INT
);
3188 /* NIP cannot be restored if the memory exception comes from an helper */
3189 gen_update_nip(ctx
, ctx
->nip
- 4);
3190 t0
= tcg_temp_new();
3191 gen_addr_reg_index(ctx
, t0
);
3192 t1
= tcg_temp_new_i32();
3193 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
3194 tcg_gen_andi_i32(t1
, t1
, 0x7F);
3195 t2
= tcg_const_i32(rS(ctx
->opcode
));
3196 gen_helper_stsw(t0
, t1
, t2
);
3198 tcg_temp_free_i32(t1
);
3199 tcg_temp_free_i32(t2
);
3202 /*** Memory synchronisation ***/
3204 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO
)
3209 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
)
3211 gen_stop_exception(ctx
);
3215 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES
)
3218 gen_set_access_type(ctx
, ACCESS_RES
);
3219 t0
= tcg_temp_local_new();
3220 gen_addr_reg_index(ctx
, t0
);
3221 gen_check_align(ctx
, t0
, 0x03);
3222 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3223 tcg_gen_mov_tl(cpu_reserve
, t0
);
3228 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
)
3232 gen_set_access_type(ctx
, ACCESS_RES
);
3233 t0
= tcg_temp_local_new();
3234 gen_addr_reg_index(ctx
, t0
);
3235 gen_check_align(ctx
, t0
, 0x03);
3236 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3237 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3238 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3239 l1
= gen_new_label();
3240 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3241 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3242 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3244 tcg_gen_movi_tl(cpu_reserve
, -1);
3248 #if defined(TARGET_PPC64)
3250 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B
)
3253 gen_set_access_type(ctx
, ACCESS_RES
);
3254 t0
= tcg_temp_local_new();
3255 gen_addr_reg_index(ctx
, t0
);
3256 gen_check_align(ctx
, t0
, 0x07);
3257 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
3258 tcg_gen_mov_tl(cpu_reserve
, t0
);
3263 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
)
3267 gen_set_access_type(ctx
, ACCESS_RES
);
3268 t0
= tcg_temp_local_new();
3269 gen_addr_reg_index(ctx
, t0
);
3270 gen_check_align(ctx
, t0
, 0x07);
3271 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
3272 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
3273 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
3274 l1
= gen_new_label();
3275 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3276 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 1 << CRF_EQ
);
3277 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3279 tcg_gen_movi_tl(cpu_reserve
, -1);
3282 #endif /* defined(TARGET_PPC64) */
3285 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
)
3290 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT
)
3292 TCGv_i32 t0
= tcg_temp_new_i32();
3293 tcg_gen_st_i32(t0
, cpu_env
, offsetof(CPUState
, halted
));
3294 tcg_temp_free_i32(t0
);
3295 /* Stop translation, as the CPU is supposed to sleep from now */
3296 gen_exception_err(ctx
, EXCP_HLT
, 1);
3299 /*** Floating-point load ***/
3300 #define GEN_LDF(name, ldop, opc, type) \
3301 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3304 if (unlikely(!ctx->fpu_enabled)) { \
3305 gen_exception(ctx, POWERPC_EXCP_FPU); \
3308 gen_set_access_type(ctx, ACCESS_FLOAT); \
3309 EA = tcg_temp_new(); \
3310 gen_addr_imm_index(ctx, EA, 0); \
3311 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3312 tcg_temp_free(EA); \
3315 #define GEN_LDUF(name, ldop, opc, type) \
3316 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3319 if (unlikely(!ctx->fpu_enabled)) { \
3320 gen_exception(ctx, POWERPC_EXCP_FPU); \
3323 if (unlikely(rA(ctx->opcode) == 0)) { \
3324 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3327 gen_set_access_type(ctx, ACCESS_FLOAT); \
3328 EA = tcg_temp_new(); \
3329 gen_addr_imm_index(ctx, EA, 0); \
3330 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3331 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3332 tcg_temp_free(EA); \
3335 #define GEN_LDUXF(name, ldop, opc, type) \
3336 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3339 if (unlikely(!ctx->fpu_enabled)) { \
3340 gen_exception(ctx, POWERPC_EXCP_FPU); \
3343 if (unlikely(rA(ctx->opcode) == 0)) { \
3344 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3347 gen_set_access_type(ctx, ACCESS_FLOAT); \
3348 EA = tcg_temp_new(); \
3349 gen_addr_reg_index(ctx, EA); \
3350 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3351 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3352 tcg_temp_free(EA); \
3355 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3356 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3359 if (unlikely(!ctx->fpu_enabled)) { \
3360 gen_exception(ctx, POWERPC_EXCP_FPU); \
3363 gen_set_access_type(ctx, ACCESS_FLOAT); \
3364 EA = tcg_temp_new(); \
3365 gen_addr_reg_index(ctx, EA); \
3366 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3367 tcg_temp_free(EA); \
3370 #define GEN_LDFS(name, ldop, op, type) \
3371 GEN_LDF(name, ldop, op | 0x20, type); \
3372 GEN_LDUF(name, ldop, op | 0x21, type); \
3373 GEN_LDUXF(name, ldop, op | 0x01, type); \
3374 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3376 static always_inline
void gen_qemu_ld32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3378 TCGv t0
= tcg_temp_new();
3379 TCGv_i32 t1
= tcg_temp_new_i32();
3380 gen_qemu_ld32u(ctx
, t0
, arg2
);
3381 tcg_gen_trunc_tl_i32(t1
, t0
);
3383 gen_helper_float32_to_float64(arg1
, t1
);
3384 tcg_temp_free_i32(t1
);
3387 /* lfd lfdu lfdux lfdx */
3388 GEN_LDFS(lfd
, ld64
, 0x12, PPC_FLOAT
);
3389 /* lfs lfsu lfsux lfsx */
3390 GEN_LDFS(lfs
, ld32fs
, 0x10, PPC_FLOAT
);
3392 /*** Floating-point store ***/
3393 #define GEN_STF(name, stop, opc, type) \
3394 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3397 if (unlikely(!ctx->fpu_enabled)) { \
3398 gen_exception(ctx, POWERPC_EXCP_FPU); \
3401 gen_set_access_type(ctx, ACCESS_FLOAT); \
3402 EA = tcg_temp_new(); \
3403 gen_addr_imm_index(ctx, EA, 0); \
3404 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3405 tcg_temp_free(EA); \
3408 #define GEN_STUF(name, stop, opc, type) \
3409 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3412 if (unlikely(!ctx->fpu_enabled)) { \
3413 gen_exception(ctx, POWERPC_EXCP_FPU); \
3416 if (unlikely(rA(ctx->opcode) == 0)) { \
3417 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3420 gen_set_access_type(ctx, ACCESS_FLOAT); \
3421 EA = tcg_temp_new(); \
3422 gen_addr_imm_index(ctx, EA, 0); \
3423 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3424 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3425 tcg_temp_free(EA); \
3428 #define GEN_STUXF(name, stop, opc, type) \
3429 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3432 if (unlikely(!ctx->fpu_enabled)) { \
3433 gen_exception(ctx, POWERPC_EXCP_FPU); \
3436 if (unlikely(rA(ctx->opcode) == 0)) { \
3437 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3440 gen_set_access_type(ctx, ACCESS_FLOAT); \
3441 EA = tcg_temp_new(); \
3442 gen_addr_reg_index(ctx, EA); \
3443 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3444 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3445 tcg_temp_free(EA); \
3448 #define GEN_STXF(name, stop, opc2, opc3, type) \
3449 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3452 if (unlikely(!ctx->fpu_enabled)) { \
3453 gen_exception(ctx, POWERPC_EXCP_FPU); \
3456 gen_set_access_type(ctx, ACCESS_FLOAT); \
3457 EA = tcg_temp_new(); \
3458 gen_addr_reg_index(ctx, EA); \
3459 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3460 tcg_temp_free(EA); \
3463 #define GEN_STFS(name, stop, op, type) \
3464 GEN_STF(name, stop, op | 0x20, type); \
3465 GEN_STUF(name, stop, op | 0x21, type); \
3466 GEN_STUXF(name, stop, op | 0x01, type); \
3467 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3469 static always_inline
void gen_qemu_st32fs(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3471 TCGv_i32 t0
= tcg_temp_new_i32();
3472 TCGv t1
= tcg_temp_new();
3473 gen_helper_float64_to_float32(t0
, arg1
);
3474 tcg_gen_extu_i32_tl(t1
, t0
);
3475 tcg_temp_free_i32(t0
);
3476 gen_qemu_st32(ctx
, t1
, arg2
);
3480 /* stfd stfdu stfdux stfdx */
3481 GEN_STFS(stfd
, st64
, 0x16, PPC_FLOAT
);
3482 /* stfs stfsu stfsux stfsx */
3483 GEN_STFS(stfs
, st32fs
, 0x14, PPC_FLOAT
);
3486 static always_inline
void gen_qemu_st32fiw(DisasContext
*ctx
, TCGv_i64 arg1
, TCGv arg2
)
3488 TCGv t0
= tcg_temp_new();
3489 tcg_gen_trunc_i64_tl(t0
, arg1
),
3490 gen_qemu_st32(ctx
, t0
, arg2
);
3494 GEN_STXF(stfiw
, st32fiw
, 0x17, 0x1E, PPC_FLOAT_STFIWX
);
3497 static always_inline
void gen_goto_tb (DisasContext
*ctx
, int n
,
3500 TranslationBlock
*tb
;
3502 #if defined(TARGET_PPC64)
3504 dest
= (uint32_t) dest
;
3506 if ((tb
->pc
& TARGET_PAGE_MASK
) == (dest
& TARGET_PAGE_MASK
) &&
3507 likely(!ctx
->singlestep_enabled
)) {
3509 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3510 tcg_gen_exit_tb((long)tb
+ n
);
3512 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
3513 if (unlikely(ctx
->singlestep_enabled
)) {
3514 if ((ctx
->singlestep_enabled
&
3515 (CPU_BRANCH_STEP
| CPU_SINGLE_STEP
)) &&
3516 ctx
->exception
== POWERPC_EXCP_BRANCH
) {
3517 target_ulong tmp
= ctx
->nip
;
3519 gen_exception(ctx
, POWERPC_EXCP_TRACE
);
3522 if (ctx
->singlestep_enabled
& GDBSTUB_SINGLE_STEP
) {
3523 gen_debug_exception(ctx
);
3530 static always_inline
void gen_setlr (DisasContext
*ctx
, target_ulong nip
)
3532 #if defined(TARGET_PPC64)
3533 if (ctx
->sf_mode
== 0)
3534 tcg_gen_movi_tl(cpu_lr
, (uint32_t)nip
);
3537 tcg_gen_movi_tl(cpu_lr
, nip
);
3541 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3543 target_ulong li
, target
;
3545 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3546 /* sign extend LI */
3547 #if defined(TARGET_PPC64)
3549 li
= ((int64_t)LI(ctx
->opcode
) << 38) >> 38;
3552 li
= ((int32_t)LI(ctx
->opcode
) << 6) >> 6;
3553 if (likely(AA(ctx
->opcode
) == 0))
3554 target
= ctx
->nip
+ li
- 4;
3557 if (LK(ctx
->opcode
))
3558 gen_setlr(ctx
, ctx
->nip
);
3559 gen_goto_tb(ctx
, 0, target
);
3566 static always_inline
void gen_bcond (DisasContext
*ctx
, int type
)
3568 uint32_t bo
= BO(ctx
->opcode
);
3569 int l1
= gen_new_label();
3572 ctx
->exception
= POWERPC_EXCP_BRANCH
;
3573 if (type
== BCOND_LR
|| type
== BCOND_CTR
) {
3574 target
= tcg_temp_local_new();
3575 if (type
== BCOND_CTR
)
3576 tcg_gen_mov_tl(target
, cpu_ctr
);
3578 tcg_gen_mov_tl(target
, cpu_lr
);
3580 if (LK(ctx
->opcode
))
3581 gen_setlr(ctx
, ctx
->nip
);
3582 l1
= gen_new_label();
3583 if ((bo
& 0x4) == 0) {
3584 /* Decrement and test CTR */
3585 TCGv temp
= tcg_temp_new();
3586 if (unlikely(type
== BCOND_CTR
)) {
3587 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3590 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
3591 #if defined(TARGET_PPC64)
3593 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
3596 tcg_gen_mov_tl(temp
, cpu_ctr
);
3598 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
3600 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
3602 tcg_temp_free(temp
);
3604 if ((bo
& 0x10) == 0) {
3606 uint32_t bi
= BI(ctx
->opcode
);
3607 uint32_t mask
= 1 << (3 - (bi
& 0x03));
3608 TCGv_i32 temp
= tcg_temp_new_i32();
3611 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3612 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
3614 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
3615 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
3617 tcg_temp_free_i32(temp
);
3619 if (type
== BCOND_IM
) {
3620 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
3621 if (likely(AA(ctx
->opcode
) == 0)) {
3622 gen_goto_tb(ctx
, 0, ctx
->nip
+ li
- 4);
3624 gen_goto_tb(ctx
, 0, li
);
3627 gen_goto_tb(ctx
, 1, ctx
->nip
);
3629 #if defined(TARGET_PPC64)
3630 if (!(ctx
->sf_mode
))
3631 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
3634 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
3637 #if defined(TARGET_PPC64)
3638 if (!(ctx
->sf_mode
))
3639 tcg_gen_movi_tl(cpu_nip
, (uint32_t)ctx
->nip
);
3642 tcg_gen_movi_tl(cpu_nip
, ctx
->nip
);
3647 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3649 gen_bcond(ctx
, BCOND_IM
);
3652 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
)
3654 gen_bcond(ctx
, BCOND_CTR
);
3657 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
)
3659 gen_bcond(ctx
, BCOND_LR
);
3662 /*** Condition register logical ***/
3663 #define GEN_CRLOGIC(name, tcg_op, opc) \
3664 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER) \
3669 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3670 t0 = tcg_temp_new_i32(); \
3672 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3674 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3676 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3677 t1 = tcg_temp_new_i32(); \
3678 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3680 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3682 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3684 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3685 tcg_op(t0, t0, t1); \
3686 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3687 tcg_gen_andi_i32(t0, t0, bitmask); \
3688 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3689 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3690 tcg_temp_free_i32(t0); \
3691 tcg_temp_free_i32(t1); \
3695 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
3697 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
3699 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
3701 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
3703 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
3705 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
3707 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
3709 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
3711 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
)
3713 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
3716 /*** System linkage ***/
3717 /* rfi (mem_idx only) */
3718 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
)
3720 #if defined(CONFIG_USER_ONLY)
3721 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3723 /* Restore CPU state */
3724 if (unlikely(!ctx
->mem_idx
)) {
3725 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3729 gen_sync_exception(ctx
);
3733 #if defined(TARGET_PPC64)
3734 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
)
3736 #if defined(CONFIG_USER_ONLY)
3737 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3739 /* Restore CPU state */
3740 if (unlikely(!ctx
->mem_idx
)) {
3741 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3745 gen_sync_exception(ctx
);
3749 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
)
3751 #if defined(CONFIG_USER_ONLY)
3752 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3754 /* Restore CPU state */
3755 if (unlikely(ctx
->mem_idx
<= 1)) {
3756 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
3760 gen_sync_exception(ctx
);
3766 #if defined(CONFIG_USER_ONLY)
3767 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3769 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3771 GEN_HANDLER(sc
, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW
)
3775 lev
= (ctx
->opcode
>> 5) & 0x7F;
3776 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
3781 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
)
3783 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3784 /* Update the nip since this might generate a trap exception */
3785 gen_update_nip(ctx
, ctx
->nip
);
3786 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3787 tcg_temp_free_i32(t0
);
3791 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
)
3793 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3794 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3795 /* Update the nip since this might generate a trap exception */
3796 gen_update_nip(ctx
, ctx
->nip
);
3797 gen_helper_tw(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3799 tcg_temp_free_i32(t1
);
3802 #if defined(TARGET_PPC64)
3804 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
)
3806 TCGv_i32 t0
= tcg_const_i32(TO(ctx
->opcode
));
3807 /* Update the nip since this might generate a trap exception */
3808 gen_update_nip(ctx
, ctx
->nip
);
3809 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
3810 tcg_temp_free_i32(t0
);
3814 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
)
3816 TCGv t0
= tcg_const_tl(SIMM(ctx
->opcode
));
3817 TCGv_i32 t1
= tcg_const_i32(TO(ctx
->opcode
));
3818 /* Update the nip since this might generate a trap exception */
3819 gen_update_nip(ctx
, ctx
->nip
);
3820 gen_helper_td(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3822 tcg_temp_free_i32(t1
);
3826 /*** Processor control ***/
3828 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
)
3830 tcg_gen_trunc_tl_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_xer
);
3831 tcg_gen_shri_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfD(ctx
->opcode
)], XER_CA
);
3832 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_SO
| 1 << XER_OV
| 1 << XER_CA
));
3836 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
)
3840 if (likely(ctx
->opcode
& 0x00100000)) {
3841 crm
= CRM(ctx
->opcode
);
3842 if (likely((crm
^ (crm
- 1)) == 0)) {
3844 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
3847 gen_helper_load_cr(cpu_gpr
[rD(ctx
->opcode
)]);
3852 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
)
3854 #if defined(CONFIG_USER_ONLY)
3855 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3857 if (unlikely(!ctx
->mem_idx
)) {
3858 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3861 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
3866 #define SPR_NOACCESS ((void *)(-1UL))
3868 static void spr_noaccess (void *opaque
, int sprn
)
3870 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
3871 printf("ERROR: try to access SPR %d !\n", sprn
);
3873 #define SPR_NOACCESS (&spr_noaccess)
3877 static always_inline
void gen_op_mfspr (DisasContext
*ctx
)
3879 void (*read_cb
)(void *opaque
, int gprn
, int sprn
);
3880 uint32_t sprn
= SPR(ctx
->opcode
);
3882 #if !defined(CONFIG_USER_ONLY)
3883 if (ctx
->mem_idx
== 2)
3884 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
3885 else if (ctx
->mem_idx
)
3886 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
3889 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
3890 if (likely(read_cb
!= NULL
)) {
3891 if (likely(read_cb
!= SPR_NOACCESS
)) {
3892 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
3894 /* Privilege exception */
3895 /* This is a hack to avoid warnings when running Linux:
3896 * this OS breaks the PowerPC virtualisation model,
3897 * allowing userland application to read the PVR
3899 if (sprn
!= SPR_PVR
) {
3900 qemu_log("Trying to read privileged spr %d %03x at "
3901 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3902 printf("Trying to read privileged spr %d %03x at " ADDRX
"\n",
3903 sprn
, sprn
, ctx
->nip
);
3905 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3909 qemu_log("Trying to read invalid spr %d %03x at "
3910 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
3911 printf("Trying to read invalid spr %d %03x at " ADDRX
"\n",
3912 sprn
, sprn
, ctx
->nip
);
3913 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
3917 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
)
3923 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
)
3929 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
)
3933 crm
= CRM(ctx
->opcode
);
3934 if (likely((ctx
->opcode
& 0x00100000) || (crm
^ (crm
- 1)) == 0)) {
3935 TCGv_i32 temp
= tcg_temp_new_i32();
3937 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
3938 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
3939 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
3940 tcg_temp_free_i32(temp
);
3942 TCGv_i32 temp
= tcg_const_i32(crm
);
3943 gen_helper_store_cr(cpu_gpr
[rS(ctx
->opcode
)], temp
);
3944 tcg_temp_free_i32(temp
);
3949 #if defined(TARGET_PPC64)
3950 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
)
3952 #if defined(CONFIG_USER_ONLY)
3953 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3955 if (unlikely(!ctx
->mem_idx
)) {
3956 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3959 if (ctx
->opcode
& 0x00010000) {
3960 /* Special form that does not need any synchronisation */
3961 TCGv t0
= tcg_temp_new();
3962 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3963 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3964 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3967 /* XXX: we need to update nip before the store
3968 * if we enter power saving mode, we will exit the loop
3969 * directly from ppc_store_msr
3971 gen_update_nip(ctx
, ctx
->nip
);
3972 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
3973 /* Must stop the translation as machine state (may have) changed */
3974 /* Note that mtmsr is not always defined as context-synchronizing */
3975 gen_stop_exception(ctx
);
3981 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC
)
3983 #if defined(CONFIG_USER_ONLY)
3984 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3986 if (unlikely(!ctx
->mem_idx
)) {
3987 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
3990 if (ctx
->opcode
& 0x00010000) {
3991 /* Special form that does not need any synchronisation */
3992 TCGv t0
= tcg_temp_new();
3993 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], (1 << MSR_RI
) | (1 << MSR_EE
));
3994 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~((1 << MSR_RI
) | (1 << MSR_EE
)));
3995 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
3998 /* XXX: we need to update nip before the store
3999 * if we enter power saving mode, we will exit the loop
4000 * directly from ppc_store_msr
4002 gen_update_nip(ctx
, ctx
->nip
);
4003 #if defined(TARGET_PPC64)
4004 if (!ctx
->sf_mode
) {
4005 TCGv t0
= tcg_temp_new();
4006 TCGv t1
= tcg_temp_new();
4007 tcg_gen_andi_tl(t0
, cpu_msr
, 0xFFFFFFFF00000000ULL
);
4008 tcg_gen_ext32u_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)]);
4009 tcg_gen_or_tl(t0
, t0
, t1
);
4011 gen_helper_store_msr(t0
);
4015 gen_helper_store_msr(cpu_gpr
[rS(ctx
->opcode
)]);
4016 /* Must stop the translation as machine state (may have) changed */
4017 /* Note that mtmsr is not always defined as context-synchronizing */
4018 gen_stop_exception(ctx
);
4024 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC
)
4026 void (*write_cb
)(void *opaque
, int sprn
, int gprn
);
4027 uint32_t sprn
= SPR(ctx
->opcode
);
4029 #if !defined(CONFIG_USER_ONLY)
4030 if (ctx
->mem_idx
== 2)
4031 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
4032 else if (ctx
->mem_idx
)
4033 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
4036 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
4037 if (likely(write_cb
!= NULL
)) {
4038 if (likely(write_cb
!= SPR_NOACCESS
)) {
4039 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
4041 /* Privilege exception */
4042 qemu_log("Trying to write privileged spr %d %03x at "
4043 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
4044 printf("Trying to write privileged spr %d %03x at " ADDRX
"\n",
4045 sprn
, sprn
, ctx
->nip
);
4046 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4050 qemu_log("Trying to write invalid spr %d %03x at "
4051 ADDRX
"\n", sprn
, sprn
, ctx
->nip
);
4052 printf("Trying to write invalid spr %d %03x at " ADDRX
"\n",
4053 sprn
, sprn
, ctx
->nip
);
4054 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_SPR
);
4058 /*** Cache management ***/
4060 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
)
4062 /* XXX: specification says this is treated as a load by the MMU */
4064 gen_set_access_type(ctx
, ACCESS_CACHE
);
4065 t0
= tcg_temp_new();
4066 gen_addr_reg_index(ctx
, t0
);
4067 gen_qemu_ld8u(ctx
, t0
, t0
);
4071 /* dcbi (Supervisor only) */
4072 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
)
4074 #if defined(CONFIG_USER_ONLY)
4075 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4078 if (unlikely(!ctx
->mem_idx
)) {
4079 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4082 EA
= tcg_temp_new();
4083 gen_set_access_type(ctx
, ACCESS_CACHE
);
4084 gen_addr_reg_index(ctx
, EA
);
4085 val
= tcg_temp_new();
4086 /* XXX: specification says this should be treated as a store by the MMU */
4087 gen_qemu_ld8u(ctx
, val
, EA
);
4088 gen_qemu_st8(ctx
, val
, EA
);
4095 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
)
4097 /* XXX: specification say this is treated as a load by the MMU */
4099 gen_set_access_type(ctx
, ACCESS_CACHE
);
4100 t0
= tcg_temp_new();
4101 gen_addr_reg_index(ctx
, t0
);
4102 gen_qemu_ld8u(ctx
, t0
, t0
);
4107 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE
)
4109 /* interpreted as no-op */
4110 /* XXX: specification say this is treated as a load by the MMU
4111 * but does not generate any exception
4116 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE
)
4118 /* interpreted as no-op */
4119 /* XXX: specification say this is treated as a load by the MMU
4120 * but does not generate any exception
4125 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ
)
4128 gen_set_access_type(ctx
, ACCESS_CACHE
);
4129 /* NIP cannot be restored if the memory exception comes from an helper */
4130 gen_update_nip(ctx
, ctx
->nip
- 4);
4131 t0
= tcg_temp_new();
4132 gen_addr_reg_index(ctx
, t0
);
4133 gen_helper_dcbz(t0
);
4137 GEN_HANDLER2(dcbz_970
, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT
)
4140 gen_set_access_type(ctx
, ACCESS_CACHE
);
4141 /* NIP cannot be restored if the memory exception comes from an helper */
4142 gen_update_nip(ctx
, ctx
->nip
- 4);
4143 t0
= tcg_temp_new();
4144 gen_addr_reg_index(ctx
, t0
);
4145 if (ctx
->opcode
& 0x00200000)
4146 gen_helper_dcbz(t0
);
4148 gen_helper_dcbz_970(t0
);
4153 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
)
4155 if (rA(ctx
->opcode
) == 0) {
4156 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4158 /* interpreted as no-op */
4163 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC
)
4165 if (rA(ctx
->opcode
) == 0) {
4166 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
4168 /* interpreted as no-op */
4174 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
)
4176 /* interpreted as no-op */
4180 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
)
4183 gen_set_access_type(ctx
, ACCESS_CACHE
);
4184 /* NIP cannot be restored if the memory exception comes from an helper */
4185 gen_update_nip(ctx
, ctx
->nip
- 4);
4186 t0
= tcg_temp_new();
4187 gen_addr_reg_index(ctx
, t0
);
4188 gen_helper_icbi(t0
);
4194 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
)
4196 /* interpreted as no-op */
4197 /* XXX: specification say this is treated as a store by the MMU
4198 * but does not generate any exception
4202 /*** Segment register manipulation ***/
4203 /* Supervisor only: */
4205 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
)
4207 #if defined(CONFIG_USER_ONLY)
4208 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4211 if (unlikely(!ctx
->mem_idx
)) {
4212 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4215 t0
= tcg_const_tl(SR(ctx
->opcode
));
4216 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4222 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
)
4224 #if defined(CONFIG_USER_ONLY)
4225 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4228 if (unlikely(!ctx
->mem_idx
)) {
4229 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4232 t0
= tcg_temp_new();
4233 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4234 tcg_gen_andi_tl(t0
, t0
, 0xF);
4235 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4241 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
)
4243 #if defined(CONFIG_USER_ONLY)
4244 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4247 if (unlikely(!ctx
->mem_idx
)) {
4248 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4251 t0
= tcg_const_tl(SR(ctx
->opcode
));
4252 gen_helper_store_sr(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4258 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
)
4260 #if defined(CONFIG_USER_ONLY)
4261 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4264 if (unlikely(!ctx
->mem_idx
)) {
4265 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4268 t0
= tcg_temp_new();
4269 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4270 tcg_gen_andi_tl(t0
, t0
, 0xF);
4271 gen_helper_store_sr(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
4276 #if defined(TARGET_PPC64)
4277 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4279 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
)
4281 #if defined(CONFIG_USER_ONLY)
4282 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4285 if (unlikely(!ctx
->mem_idx
)) {
4286 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4289 t0
= tcg_const_tl(SR(ctx
->opcode
));
4290 gen_helper_load_slb(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4296 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
4299 #if defined(CONFIG_USER_ONLY)
4300 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4303 if (unlikely(!ctx
->mem_idx
)) {
4304 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4307 t0
= tcg_temp_new();
4308 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4309 tcg_gen_andi_tl(t0
, t0
, 0xF);
4310 gen_helper_load_slb(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4316 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
)
4318 #if defined(CONFIG_USER_ONLY)
4319 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4322 if (unlikely(!ctx
->mem_idx
)) {
4323 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4326 t0
= tcg_const_tl(SR(ctx
->opcode
));
4327 gen_helper_store_slb(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4333 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
4336 #if defined(CONFIG_USER_ONLY)
4337 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4340 if (unlikely(!ctx
->mem_idx
)) {
4341 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4344 t0
= tcg_temp_new();
4345 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28);
4346 tcg_gen_andi_tl(t0
, t0
, 0xF);
4347 gen_helper_store_slb(t0
, cpu_gpr
[rS(ctx
->opcode
)]);
4351 #endif /* defined(TARGET_PPC64) */
4353 /*** Lookaside buffer management ***/
4354 /* Optional & mem_idx only: */
4356 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
)
4358 #if defined(CONFIG_USER_ONLY)
4359 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4361 if (unlikely(!ctx
->mem_idx
)) {
4362 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4370 GEN_HANDLER(tlbie
, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE
)
4372 #if defined(CONFIG_USER_ONLY)
4373 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4375 if (unlikely(!ctx
->mem_idx
)) {
4376 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4379 #if defined(TARGET_PPC64)
4380 if (!ctx
->sf_mode
) {
4381 TCGv t0
= tcg_temp_new();
4382 tcg_gen_ext32u_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)]);
4383 gen_helper_tlbie(t0
);
4387 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
4392 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
)
4394 #if defined(CONFIG_USER_ONLY)
4395 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4397 if (unlikely(!ctx
->mem_idx
)) {
4398 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4401 /* This has no effect: it should ensure that all previous
4402 * tlbie have completed
4404 gen_stop_exception(ctx
);
4408 #if defined(TARGET_PPC64)
4410 GEN_HANDLER(slbia
, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI
)
4412 #if defined(CONFIG_USER_ONLY)
4413 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4415 if (unlikely(!ctx
->mem_idx
)) {
4416 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4424 GEN_HANDLER(slbie
, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI
)
4426 #if defined(CONFIG_USER_ONLY)
4427 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4429 if (unlikely(!ctx
->mem_idx
)) {
4430 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
4433 gen_helper_slbie(cpu_gpr
[rB(ctx
->opcode
)]);
4438 /*** External control ***/
4441 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
)
4444 /* Should check EAR[E] ! */
4445 gen_set_access_type(ctx
, ACCESS_EXT
);
4446 t0
= tcg_temp_new();
4447 gen_addr_reg_index(ctx
, t0
);
4448 gen_check_align(ctx
, t0
, 0x03);
4449 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4454 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
)
4457 /* Should check EAR[E] ! */
4458 gen_set_access_type(ctx
, ACCESS_EXT
);
4459 t0
= tcg_temp_new();
4460 gen_addr_reg_index(ctx
, t0
);
4461 gen_check_align(ctx
, t0
, 0x03);
4462 gen_qemu_st32(ctx
, cpu_gpr
[rD(ctx
->opcode
)], t0
);
4466 /* PowerPC 601 specific instructions */
4468 GEN_HANDLER(abs
, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR
)
4470 int l1
= gen_new_label();
4471 int l2
= gen_new_label();
4472 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4473 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4476 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4478 if (unlikely(Rc(ctx
->opcode
) != 0))
4479 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4483 GEN_HANDLER(abso
, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR
)
4485 int l1
= gen_new_label();
4486 int l2
= gen_new_label();
4487 int l3
= gen_new_label();
4488 /* Start with XER OV disabled, the most likely case */
4489 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4490 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rA(ctx
->opcode
)], 0, l2
);
4491 tcg_gen_brcondi_tl(TCG_COND_NE
, cpu_gpr
[rA(ctx
->opcode
)], 0x80000000, l1
);
4492 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4495 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4498 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4500 if (unlikely(Rc(ctx
->opcode
) != 0))
4501 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4505 GEN_HANDLER(clcs
, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR
)
4507 TCGv_i32 t0
= tcg_const_i32(rA(ctx
->opcode
));
4508 gen_helper_clcs(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4509 tcg_temp_free_i32(t0
);
4510 /* Rc=1 sets CR0 to an undefined state */
4514 GEN_HANDLER(div
, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR
)
4516 gen_helper_div(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4517 if (unlikely(Rc(ctx
->opcode
) != 0))
4518 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4522 GEN_HANDLER(divo
, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR
)
4524 gen_helper_divo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4525 if (unlikely(Rc(ctx
->opcode
) != 0))
4526 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4530 GEN_HANDLER(divs
, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR
)
4532 gen_helper_divs(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4533 if (unlikely(Rc(ctx
->opcode
) != 0))
4534 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4537 /* divso - divso. */
4538 GEN_HANDLER(divso
, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR
)
4540 gen_helper_divso(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4541 if (unlikely(Rc(ctx
->opcode
) != 0))
4542 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4546 GEN_HANDLER(doz
, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR
)
4548 int l1
= gen_new_label();
4549 int l2
= gen_new_label();
4550 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4551 tcg_gen_sub_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4554 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4556 if (unlikely(Rc(ctx
->opcode
) != 0))
4557 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4561 GEN_HANDLER(dozo
, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR
)
4563 int l1
= gen_new_label();
4564 int l2
= gen_new_label();
4565 TCGv t0
= tcg_temp_new();
4566 TCGv t1
= tcg_temp_new();
4567 TCGv t2
= tcg_temp_new();
4568 /* Start with XER OV disabled, the most likely case */
4569 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4570 tcg_gen_brcond_tl(TCG_COND_GE
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], l1
);
4571 tcg_gen_sub_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4572 tcg_gen_xor_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4573 tcg_gen_xor_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], t0
);
4574 tcg_gen_andc_tl(t1
, t1
, t2
);
4575 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4576 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4577 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4580 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4585 if (unlikely(Rc(ctx
->opcode
) != 0))
4586 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4590 GEN_HANDLER(dozi
, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
)
4592 target_long simm
= SIMM(ctx
->opcode
);
4593 int l1
= gen_new_label();
4594 int l2
= gen_new_label();
4595 tcg_gen_brcondi_tl(TCG_COND_LT
, cpu_gpr
[rA(ctx
->opcode
)], simm
, l1
);
4596 tcg_gen_subfi_tl(cpu_gpr
[rD(ctx
->opcode
)], simm
, cpu_gpr
[rA(ctx
->opcode
)]);
4599 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], 0);
4601 if (unlikely(Rc(ctx
->opcode
) != 0))
4602 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4605 /* lscbx - lscbx. */
4606 GEN_HANDLER(lscbx
, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR
)
4608 TCGv t0
= tcg_temp_new();
4609 TCGv_i32 t1
= tcg_const_i32(rD(ctx
->opcode
));
4610 TCGv_i32 t2
= tcg_const_i32(rA(ctx
->opcode
));
4611 TCGv_i32 t3
= tcg_const_i32(rB(ctx
->opcode
));
4613 gen_addr_reg_index(ctx
, t0
);
4614 /* NIP cannot be restored if the memory exception comes from an helper */
4615 gen_update_nip(ctx
, ctx
->nip
- 4);
4616 gen_helper_lscbx(t0
, t0
, t1
, t2
, t3
);
4617 tcg_temp_free_i32(t1
);
4618 tcg_temp_free_i32(t2
);
4619 tcg_temp_free_i32(t3
);
4620 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~0x7F);
4621 tcg_gen_or_tl(cpu_xer
, cpu_xer
, t0
);
4622 if (unlikely(Rc(ctx
->opcode
) != 0))
4623 gen_set_Rc0(ctx
, t0
);
4627 /* maskg - maskg. */
4628 GEN_HANDLER(maskg
, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR
)
4630 int l1
= gen_new_label();
4631 TCGv t0
= tcg_temp_new();
4632 TCGv t1
= tcg_temp_new();
4633 TCGv t2
= tcg_temp_new();
4634 TCGv t3
= tcg_temp_new();
4635 tcg_gen_movi_tl(t3
, 0xFFFFFFFF);
4636 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4637 tcg_gen_andi_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 0x1F);
4638 tcg_gen_addi_tl(t2
, t0
, 1);
4639 tcg_gen_shr_tl(t2
, t3
, t2
);
4640 tcg_gen_shr_tl(t3
, t3
, t1
);
4641 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], t2
, t3
);
4642 tcg_gen_brcond_tl(TCG_COND_GE
, t0
, t1
, l1
);
4643 tcg_gen_neg_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4649 if (unlikely(Rc(ctx
->opcode
) != 0))
4650 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4653 /* maskir - maskir. */
4654 GEN_HANDLER(maskir
, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR
)
4656 TCGv t0
= tcg_temp_new();
4657 TCGv t1
= tcg_temp_new();
4658 tcg_gen_and_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4659 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
4660 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4663 if (unlikely(Rc(ctx
->opcode
) != 0))
4664 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4668 GEN_HANDLER(mul
, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR
)
4670 TCGv_i64 t0
= tcg_temp_new_i64();
4671 TCGv_i64 t1
= tcg_temp_new_i64();
4672 TCGv t2
= tcg_temp_new();
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_temp_free_i64(t0
);
4681 tcg_temp_free_i64(t1
);
4683 if (unlikely(Rc(ctx
->opcode
) != 0))
4684 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4688 GEN_HANDLER(mulo
, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR
)
4690 int l1
= gen_new_label();
4691 TCGv_i64 t0
= tcg_temp_new_i64();
4692 TCGv_i64 t1
= tcg_temp_new_i64();
4693 TCGv t2
= tcg_temp_new();
4694 /* Start with XER OV disabled, the most likely case */
4695 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4696 tcg_gen_extu_tl_i64(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
4697 tcg_gen_extu_tl_i64(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
4698 tcg_gen_mul_i64(t0
, t0
, t1
);
4699 tcg_gen_trunc_i64_tl(t2
, t0
);
4700 gen_store_spr(SPR_MQ
, t2
);
4701 tcg_gen_shri_i64(t1
, t0
, 32);
4702 tcg_gen_trunc_i64_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
4703 tcg_gen_ext32s_i64(t1
, t0
);
4704 tcg_gen_brcond_i64(TCG_COND_EQ
, t0
, t1
, l1
);
4705 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
4707 tcg_temp_free_i64(t0
);
4708 tcg_temp_free_i64(t1
);
4710 if (unlikely(Rc(ctx
->opcode
) != 0))
4711 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4715 GEN_HANDLER(nabs
, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR
)
4717 int l1
= gen_new_label();
4718 int l2
= gen_new_label();
4719 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4720 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4723 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4725 if (unlikely(Rc(ctx
->opcode
) != 0))
4726 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4729 /* nabso - nabso. */
4730 GEN_HANDLER(nabso
, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR
)
4732 int l1
= gen_new_label();
4733 int l2
= gen_new_label();
4734 tcg_gen_brcondi_tl(TCG_COND_GT
, cpu_gpr
[rA(ctx
->opcode
)], 0, l1
);
4735 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4738 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
4740 /* nabs never overflows */
4741 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
4742 if (unlikely(Rc(ctx
->opcode
) != 0))
4743 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
4747 GEN_HANDLER(rlmi
, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR
)
4749 uint32_t mb
= MB(ctx
->opcode
);
4750 uint32_t me
= ME(ctx
->opcode
);
4751 TCGv t0
= tcg_temp_new();
4752 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4753 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4754 tcg_gen_andi_tl(t0
, t0
, MASK(mb
, me
));
4755 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~MASK(mb
, me
));
4756 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], t0
);
4758 if (unlikely(Rc(ctx
->opcode
) != 0))
4759 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4763 GEN_HANDLER(rrib
, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR
)
4765 TCGv t0
= tcg_temp_new();
4766 TCGv t1
= tcg_temp_new();
4767 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4768 tcg_gen_movi_tl(t1
, 0x80000000);
4769 tcg_gen_shr_tl(t1
, t1
, t0
);
4770 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4771 tcg_gen_and_tl(t0
, t0
, t1
);
4772 tcg_gen_andc_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], t1
);
4773 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4776 if (unlikely(Rc(ctx
->opcode
) != 0))
4777 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4781 GEN_HANDLER(sle
, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR
)
4783 TCGv t0
= tcg_temp_new();
4784 TCGv t1
= tcg_temp_new();
4785 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4786 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4787 tcg_gen_subfi_tl(t1
, 32, t1
);
4788 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4789 tcg_gen_or_tl(t1
, t0
, t1
);
4790 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4791 gen_store_spr(SPR_MQ
, t1
);
4794 if (unlikely(Rc(ctx
->opcode
) != 0))
4795 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4799 GEN_HANDLER(sleq
, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR
)
4801 TCGv t0
= tcg_temp_new();
4802 TCGv t1
= tcg_temp_new();
4803 TCGv t2
= tcg_temp_new();
4804 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4805 tcg_gen_movi_tl(t2
, 0xFFFFFFFF);
4806 tcg_gen_shl_tl(t2
, t2
, t0
);
4807 tcg_gen_rotl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
4808 gen_load_spr(t1
, SPR_MQ
);
4809 gen_store_spr(SPR_MQ
, t0
);
4810 tcg_gen_and_tl(t0
, t0
, t2
);
4811 tcg_gen_andc_tl(t1
, t1
, t2
);
4812 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4816 if (unlikely(Rc(ctx
->opcode
) != 0))
4817 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4821 GEN_HANDLER(sliq
, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR
)
4823 int sh
= SH(ctx
->opcode
);
4824 TCGv t0
= tcg_temp_new();
4825 TCGv t1
= tcg_temp_new();
4826 tcg_gen_shli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4827 tcg_gen_shri_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4828 tcg_gen_or_tl(t1
, t0
, t1
);
4829 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4830 gen_store_spr(SPR_MQ
, t1
);
4833 if (unlikely(Rc(ctx
->opcode
) != 0))
4834 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4837 /* slliq - slliq. */
4838 GEN_HANDLER(slliq
, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR
)
4840 int sh
= SH(ctx
->opcode
);
4841 TCGv t0
= tcg_temp_new();
4842 TCGv t1
= tcg_temp_new();
4843 tcg_gen_rotli_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4844 gen_load_spr(t1
, SPR_MQ
);
4845 gen_store_spr(SPR_MQ
, t0
);
4846 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
<< sh
));
4847 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
<< sh
));
4848 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4851 if (unlikely(Rc(ctx
->opcode
) != 0))
4852 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4856 GEN_HANDLER(sllq
, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR
)
4858 int l1
= gen_new_label();
4859 int l2
= gen_new_label();
4860 TCGv t0
= tcg_temp_local_new();
4861 TCGv t1
= tcg_temp_local_new();
4862 TCGv t2
= tcg_temp_local_new();
4863 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4864 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
4865 tcg_gen_shl_tl(t1
, t1
, t2
);
4866 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4867 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
4868 gen_load_spr(t0
, SPR_MQ
);
4869 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4872 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4873 gen_load_spr(t2
, SPR_MQ
);
4874 tcg_gen_andc_tl(t1
, t2
, t1
);
4875 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4880 if (unlikely(Rc(ctx
->opcode
) != 0))
4881 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4885 GEN_HANDLER(slq
, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR
)
4887 int l1
= gen_new_label();
4888 TCGv t0
= tcg_temp_new();
4889 TCGv t1
= tcg_temp_new();
4890 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4891 tcg_gen_shl_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4892 tcg_gen_subfi_tl(t1
, 32, t1
);
4893 tcg_gen_shr_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4894 tcg_gen_or_tl(t1
, t0
, t1
);
4895 gen_store_spr(SPR_MQ
, t1
);
4896 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4897 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4898 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4899 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
4903 if (unlikely(Rc(ctx
->opcode
) != 0))
4904 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4907 /* sraiq - sraiq. */
4908 GEN_HANDLER(sraiq
, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR
)
4910 int sh
= SH(ctx
->opcode
);
4911 int l1
= gen_new_label();
4912 TCGv t0
= tcg_temp_new();
4913 TCGv t1
= tcg_temp_new();
4914 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
4915 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
4916 tcg_gen_or_tl(t0
, t0
, t1
);
4917 gen_store_spr(SPR_MQ
, t0
);
4918 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4919 tcg_gen_brcondi_tl(TCG_COND_EQ
, t1
, 0, l1
);
4920 tcg_gen_brcondi_tl(TCG_COND_GE
, cpu_gpr
[rS(ctx
->opcode
)], 0, l1
);
4921 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4923 tcg_gen_sari_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], sh
);
4926 if (unlikely(Rc(ctx
->opcode
) != 0))
4927 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4931 GEN_HANDLER(sraq
, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR
)
4933 int l1
= gen_new_label();
4934 int l2
= gen_new_label();
4935 TCGv t0
= tcg_temp_new();
4936 TCGv t1
= tcg_temp_local_new();
4937 TCGv t2
= tcg_temp_local_new();
4938 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4939 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4940 tcg_gen_sar_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4941 tcg_gen_subfi_tl(t2
, 32, t2
);
4942 tcg_gen_shl_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
4943 tcg_gen_or_tl(t0
, t0
, t2
);
4944 gen_store_spr(SPR_MQ
, t0
);
4945 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
4946 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l1
);
4947 tcg_gen_mov_tl(t2
, cpu_gpr
[rS(ctx
->opcode
)]);
4948 tcg_gen_sari_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 31);
4951 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t1
);
4952 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_CA
));
4953 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l2
);
4954 tcg_gen_brcondi_tl(TCG_COND_EQ
, t2
, 0, l2
);
4955 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_CA
));
4959 if (unlikely(Rc(ctx
->opcode
) != 0))
4960 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4964 GEN_HANDLER(sre
, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR
)
4966 TCGv t0
= tcg_temp_new();
4967 TCGv t1
= tcg_temp_new();
4968 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4969 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4970 tcg_gen_subfi_tl(t1
, 32, t1
);
4971 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4972 tcg_gen_or_tl(t1
, t0
, t1
);
4973 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
4974 gen_store_spr(SPR_MQ
, t1
);
4977 if (unlikely(Rc(ctx
->opcode
) != 0))
4978 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4982 GEN_HANDLER(srea
, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR
)
4984 TCGv t0
= tcg_temp_new();
4985 TCGv t1
= tcg_temp_new();
4986 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
4987 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
4988 gen_store_spr(SPR_MQ
, t0
);
4989 tcg_gen_sar_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], t1
);
4992 if (unlikely(Rc(ctx
->opcode
) != 0))
4993 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
4997 GEN_HANDLER(sreq
, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR
)
4999 TCGv t0
= tcg_temp_new();
5000 TCGv t1
= tcg_temp_new();
5001 TCGv t2
= tcg_temp_new();
5002 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5003 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5004 tcg_gen_shr_tl(t1
, t1
, t0
);
5005 tcg_gen_rotr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
5006 gen_load_spr(t2
, SPR_MQ
);
5007 gen_store_spr(SPR_MQ
, t0
);
5008 tcg_gen_and_tl(t0
, t0
, t1
);
5009 tcg_gen_andc_tl(t2
, t2
, t1
);
5010 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5014 if (unlikely(Rc(ctx
->opcode
) != 0))
5015 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5019 GEN_HANDLER(sriq
, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR
)
5021 int sh
= SH(ctx
->opcode
);
5022 TCGv t0
= tcg_temp_new();
5023 TCGv t1
= tcg_temp_new();
5024 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5025 tcg_gen_shli_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], 32 - sh
);
5026 tcg_gen_or_tl(t1
, t0
, t1
);
5027 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5028 gen_store_spr(SPR_MQ
, t1
);
5031 if (unlikely(Rc(ctx
->opcode
) != 0))
5032 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5036 GEN_HANDLER(srliq
, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR
)
5038 int sh
= SH(ctx
->opcode
);
5039 TCGv t0
= tcg_temp_new();
5040 TCGv t1
= tcg_temp_new();
5041 tcg_gen_rotri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], sh
);
5042 gen_load_spr(t1
, SPR_MQ
);
5043 gen_store_spr(SPR_MQ
, t0
);
5044 tcg_gen_andi_tl(t0
, t0
, (0xFFFFFFFFU
>> sh
));
5045 tcg_gen_andi_tl(t1
, t1
, ~(0xFFFFFFFFU
>> sh
));
5046 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5049 if (unlikely(Rc(ctx
->opcode
) != 0))
5050 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5054 GEN_HANDLER(srlq
, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR
)
5056 int l1
= gen_new_label();
5057 int l2
= gen_new_label();
5058 TCGv t0
= tcg_temp_local_new();
5059 TCGv t1
= tcg_temp_local_new();
5060 TCGv t2
= tcg_temp_local_new();
5061 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5062 tcg_gen_movi_tl(t1
, 0xFFFFFFFF);
5063 tcg_gen_shr_tl(t2
, t1
, t2
);
5064 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5065 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5066 gen_load_spr(t0
, SPR_MQ
);
5067 tcg_gen_and_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t2
);
5070 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t2
);
5071 tcg_gen_and_tl(t0
, t0
, t2
);
5072 gen_load_spr(t1
, SPR_MQ
);
5073 tcg_gen_andc_tl(t1
, t1
, t2
);
5074 tcg_gen_or_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
5079 if (unlikely(Rc(ctx
->opcode
) != 0))
5080 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5084 GEN_HANDLER(srq
, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR
)
5086 int l1
= gen_new_label();
5087 TCGv t0
= tcg_temp_new();
5088 TCGv t1
= tcg_temp_new();
5089 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1F);
5090 tcg_gen_shr_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5091 tcg_gen_subfi_tl(t1
, 32, t1
);
5092 tcg_gen_shl_tl(t1
, cpu_gpr
[rS(ctx
->opcode
)], t1
);
5093 tcg_gen_or_tl(t1
, t0
, t1
);
5094 gen_store_spr(SPR_MQ
, t1
);
5095 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x20);
5096 tcg_gen_mov_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
);
5097 tcg_gen_brcondi_tl(TCG_COND_EQ
, t0
, 0, l1
);
5098 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
5102 if (unlikely(Rc(ctx
->opcode
) != 0))
5103 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
5106 /* PowerPC 602 specific instructions */
5108 GEN_HANDLER(dsa
, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC
)
5111 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5115 GEN_HANDLER(esa
, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC
)
5118 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5122 GEN_HANDLER(mfrom
, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC
)
5124 #if defined(CONFIG_USER_ONLY)
5125 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5127 if (unlikely(!ctx
->mem_idx
)) {
5128 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5131 gen_helper_602_mfrom(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5135 /* 602 - 603 - G2 TLB management */
5137 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
)
5139 #if defined(CONFIG_USER_ONLY)
5140 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5142 if (unlikely(!ctx
->mem_idx
)) {
5143 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5146 gen_helper_6xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5151 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
)
5153 #if defined(CONFIG_USER_ONLY)
5154 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5156 if (unlikely(!ctx
->mem_idx
)) {
5157 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5160 gen_helper_6xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5164 /* 74xx TLB management */
5166 GEN_HANDLER2(tlbld_74xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB
)
5168 #if defined(CONFIG_USER_ONLY)
5169 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5171 if (unlikely(!ctx
->mem_idx
)) {
5172 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5175 gen_helper_74xx_tlbd(cpu_gpr
[rB(ctx
->opcode
)]);
5180 GEN_HANDLER2(tlbli_74xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB
)
5182 #if defined(CONFIG_USER_ONLY)
5183 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5185 if (unlikely(!ctx
->mem_idx
)) {
5186 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5189 gen_helper_74xx_tlbi(cpu_gpr
[rB(ctx
->opcode
)]);
5193 /* POWER instructions not in PowerPC 601 */
5195 GEN_HANDLER(clf
, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER
)
5197 /* Cache line flush: implemented as no-op */
5201 GEN_HANDLER(cli
, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER
)
5203 /* Cache line invalidate: privileged and treated as no-op */
5204 #if defined(CONFIG_USER_ONLY)
5205 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5207 if (unlikely(!ctx
->mem_idx
)) {
5208 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5215 GEN_HANDLER(dclst
, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER
)
5217 /* Data cache line store: treated as no-op */
5220 GEN_HANDLER(mfsri
, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER
)
5222 #if defined(CONFIG_USER_ONLY)
5223 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5225 int ra
= rA(ctx
->opcode
);
5226 int rd
= rD(ctx
->opcode
);
5228 if (unlikely(!ctx
->mem_idx
)) {
5229 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5232 t0
= tcg_temp_new();
5233 gen_addr_reg_index(ctx
, t0
);
5234 tcg_gen_shri_tl(t0
, t0
, 28);
5235 tcg_gen_andi_tl(t0
, t0
, 0xF);
5236 gen_helper_load_sr(cpu_gpr
[rd
], t0
);
5238 if (ra
!= 0 && ra
!= rd
)
5239 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rd
]);
5243 GEN_HANDLER(rac
, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER
)
5245 #if defined(CONFIG_USER_ONLY)
5246 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5249 if (unlikely(!ctx
->mem_idx
)) {
5250 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5253 t0
= tcg_temp_new();
5254 gen_addr_reg_index(ctx
, t0
);
5255 gen_helper_rac(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5260 GEN_HANDLER(rfsvc
, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER
)
5262 #if defined(CONFIG_USER_ONLY)
5263 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5265 if (unlikely(!ctx
->mem_idx
)) {
5266 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5270 gen_sync_exception(ctx
);
5274 /* svc is not implemented for now */
5276 /* POWER2 specific instructions */
5277 /* Quad manipulation (load/store two floats at a time) */
5280 GEN_HANDLER(lfq
, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5282 int rd
= rD(ctx
->opcode
);
5284 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5285 t0
= tcg_temp_new();
5286 gen_addr_imm_index(ctx
, t0
, 0);
5287 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5288 gen_addr_add(ctx
, t0
, t0
, 8);
5289 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5294 GEN_HANDLER(lfqu
, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5296 int ra
= rA(ctx
->opcode
);
5297 int rd
= rD(ctx
->opcode
);
5299 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5300 t0
= tcg_temp_new();
5301 t1
= tcg_temp_new();
5302 gen_addr_imm_index(ctx
, t0
, 0);
5303 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5304 gen_addr_add(ctx
, t1
, t0
, 8);
5305 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5307 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5313 GEN_HANDLER(lfqux
, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2
)
5315 int ra
= rA(ctx
->opcode
);
5316 int rd
= rD(ctx
->opcode
);
5317 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5319 t0
= tcg_temp_new();
5320 gen_addr_reg_index(ctx
, t0
);
5321 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5322 t1
= tcg_temp_new();
5323 gen_addr_add(ctx
, t1
, t0
, 8);
5324 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5327 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5332 GEN_HANDLER(lfqx
, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2
)
5334 int rd
= rD(ctx
->opcode
);
5336 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5337 t0
= tcg_temp_new();
5338 gen_addr_reg_index(ctx
, t0
);
5339 gen_qemu_ld64(ctx
, cpu_fpr
[rd
], t0
);
5340 gen_addr_add(ctx
, t0
, t0
, 8);
5341 gen_qemu_ld64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5346 GEN_HANDLER(stfq
, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5348 int rd
= rD(ctx
->opcode
);
5350 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5351 t0
= tcg_temp_new();
5352 gen_addr_imm_index(ctx
, t0
, 0);
5353 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5354 gen_addr_add(ctx
, t0
, t0
, 8);
5355 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5360 GEN_HANDLER(stfqu
, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2
)
5362 int ra
= rA(ctx
->opcode
);
5363 int rd
= rD(ctx
->opcode
);
5365 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5366 t0
= tcg_temp_new();
5367 gen_addr_imm_index(ctx
, t0
, 0);
5368 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5369 t1
= tcg_temp_new();
5370 gen_addr_add(ctx
, t1
, t0
, 8);
5371 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5374 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5379 GEN_HANDLER(stfqux
, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2
)
5381 int ra
= rA(ctx
->opcode
);
5382 int rd
= rD(ctx
->opcode
);
5384 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5385 t0
= tcg_temp_new();
5386 gen_addr_reg_index(ctx
, t0
);
5387 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5388 t1
= tcg_temp_new();
5389 gen_addr_add(ctx
, t1
, t0
, 8);
5390 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t1
);
5393 tcg_gen_mov_tl(cpu_gpr
[ra
], t0
);
5398 GEN_HANDLER(stfqx
, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2
)
5400 int rd
= rD(ctx
->opcode
);
5402 gen_set_access_type(ctx
, ACCESS_FLOAT
);
5403 t0
= tcg_temp_new();
5404 gen_addr_reg_index(ctx
, t0
);
5405 gen_qemu_st64(ctx
, cpu_fpr
[rd
], t0
);
5406 gen_addr_add(ctx
, t0
, t0
, 8);
5407 gen_qemu_st64(ctx
, cpu_fpr
[(rd
+ 1) % 32], t0
);
5411 /* BookE specific instructions */
5412 /* XXX: not implemented on 440 ? */
5413 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
)
5416 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5419 /* XXX: not implemented on 440 ? */
5420 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
)
5422 #if defined(CONFIG_USER_ONLY)
5423 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5426 if (unlikely(!ctx
->mem_idx
)) {
5427 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5430 t0
= tcg_temp_new();
5431 gen_addr_reg_index(ctx
, t0
);
5432 gen_helper_tlbie(cpu_gpr
[rB(ctx
->opcode
)]);
5437 /* All 405 MAC instructions are translated here */
5438 static always_inline
void gen_405_mulladd_insn (DisasContext
*ctx
,
5440 int ra
, int rb
, int rt
, int Rc
)
5444 t0
= tcg_temp_local_new();
5445 t1
= tcg_temp_local_new();
5447 switch (opc3
& 0x0D) {
5449 /* macchw - macchw. - macchwo - macchwo. */
5450 /* macchws - macchws. - macchwso - macchwso. */
5451 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5452 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5453 /* mulchw - mulchw. */
5454 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5455 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5456 tcg_gen_ext16s_tl(t1
, t1
);
5459 /* macchwu - macchwu. - macchwuo - macchwuo. */
5460 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5461 /* mulchwu - mulchwu. */
5462 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5463 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5464 tcg_gen_ext16u_tl(t1
, t1
);
5467 /* machhw - machhw. - machhwo - machhwo. */
5468 /* machhws - machhws. - machhwso - machhwso. */
5469 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5470 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5471 /* mulhhw - mulhhw. */
5472 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5473 tcg_gen_ext16s_tl(t0
, t0
);
5474 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5475 tcg_gen_ext16s_tl(t1
, t1
);
5478 /* machhwu - machhwu. - machhwuo - machhwuo. */
5479 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5480 /* mulhhwu - mulhhwu. */
5481 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5482 tcg_gen_ext16u_tl(t0
, t0
);
5483 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5484 tcg_gen_ext16u_tl(t1
, t1
);
5487 /* maclhw - maclhw. - maclhwo - maclhwo. */
5488 /* maclhws - maclhws. - maclhwso - maclhwso. */
5489 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5490 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5491 /* mullhw - mullhw. */
5492 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5493 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5496 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5497 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5498 /* mullhwu - mullhwu. */
5499 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5500 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5504 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5505 tcg_gen_mul_tl(t1
, t0
, t1
);
5507 /* nmultiply-and-accumulate (0x0E) */
5508 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5510 /* multiply-and-accumulate (0x0C) */
5511 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5515 /* Check overflow and/or saturate */
5516 int l1
= gen_new_label();
5519 /* Start with XER OV disabled, the most likely case */
5520 tcg_gen_andi_tl(cpu_xer
, cpu_xer
, ~(1 << XER_OV
));
5524 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5525 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5526 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5527 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5530 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5531 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5535 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5538 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5542 /* Check overflow */
5543 tcg_gen_ori_tl(cpu_xer
, cpu_xer
, (1 << XER_OV
) | (1 << XER_SO
));
5546 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5549 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5553 if (unlikely(Rc
) != 0) {
5555 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5559 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5560 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC) \
5562 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5563 rD(ctx->opcode), Rc(ctx->opcode)); \
5566 /* macchw - macchw. */
5567 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5568 /* macchwo - macchwo. */
5569 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5570 /* macchws - macchws. */
5571 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5572 /* macchwso - macchwso. */
5573 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5574 /* macchwsu - macchwsu. */
5575 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5576 /* macchwsuo - macchwsuo. */
5577 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5578 /* macchwu - macchwu. */
5579 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5580 /* macchwuo - macchwuo. */
5581 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5582 /* machhw - machhw. */
5583 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5584 /* machhwo - machhwo. */
5585 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5586 /* machhws - machhws. */
5587 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5588 /* machhwso - machhwso. */
5589 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5590 /* machhwsu - machhwsu. */
5591 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5592 /* machhwsuo - machhwsuo. */
5593 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5594 /* machhwu - machhwu. */
5595 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5596 /* machhwuo - machhwuo. */
5597 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5598 /* maclhw - maclhw. */
5599 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5600 /* maclhwo - maclhwo. */
5601 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5602 /* maclhws - maclhws. */
5603 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5604 /* maclhwso - maclhwso. */
5605 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
5606 /* maclhwu - maclhwu. */
5607 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
5608 /* maclhwuo - maclhwuo. */
5609 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
5610 /* maclhwsu - maclhwsu. */
5611 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
5612 /* maclhwsuo - maclhwsuo. */
5613 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
5614 /* nmacchw - nmacchw. */
5615 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
5616 /* nmacchwo - nmacchwo. */
5617 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
5618 /* nmacchws - nmacchws. */
5619 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
5620 /* nmacchwso - nmacchwso. */
5621 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
5622 /* nmachhw - nmachhw. */
5623 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
5624 /* nmachhwo - nmachhwo. */
5625 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
5626 /* nmachhws - nmachhws. */
5627 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
5628 /* nmachhwso - nmachhwso. */
5629 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
5630 /* nmaclhw - nmaclhw. */
5631 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
5632 /* nmaclhwo - nmaclhwo. */
5633 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
5634 /* nmaclhws - nmaclhws. */
5635 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
5636 /* nmaclhwso - nmaclhwso. */
5637 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
5639 /* mulchw - mulchw. */
5640 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
5641 /* mulchwu - mulchwu. */
5642 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
5643 /* mulhhw - mulhhw. */
5644 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
5645 /* mulhhwu - mulhhwu. */
5646 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
5647 /* mullhw - mullhw. */
5648 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
5649 /* mullhwu - mullhwu. */
5650 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
5653 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
)
5655 #if defined(CONFIG_USER_ONLY)
5656 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5659 if (unlikely(!ctx
->mem_idx
)) {
5660 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5663 /* NIP cannot be restored if the memory exception comes from an helper */
5664 gen_update_nip(ctx
, ctx
->nip
- 4);
5665 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5666 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], dcrn
);
5667 tcg_temp_free(dcrn
);
5672 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
)
5674 #if defined(CONFIG_USER_ONLY)
5675 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5678 if (unlikely(!ctx
->mem_idx
)) {
5679 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5682 /* NIP cannot be restored if the memory exception comes from an helper */
5683 gen_update_nip(ctx
, ctx
->nip
- 4);
5684 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5685 gen_helper_store_dcr(dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
5686 tcg_temp_free(dcrn
);
5691 /* XXX: not implemented on 440 ? */
5692 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
)
5694 #if defined(CONFIG_USER_ONLY)
5695 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5697 if (unlikely(!ctx
->mem_idx
)) {
5698 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5701 /* NIP cannot be restored if the memory exception comes from an helper */
5702 gen_update_nip(ctx
, ctx
->nip
- 4);
5703 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5704 /* Note: Rc update flag set leads to undefined state of Rc0 */
5709 /* XXX: not implemented on 440 ? */
5710 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
)
5712 #if defined(CONFIG_USER_ONLY)
5713 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5715 if (unlikely(!ctx
->mem_idx
)) {
5716 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5719 /* NIP cannot be restored if the memory exception comes from an helper */
5720 gen_update_nip(ctx
, ctx
->nip
- 4);
5721 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5722 /* Note: Rc update flag set leads to undefined state of Rc0 */
5726 /* mfdcrux (PPC 460) : user-mode access to DCR */
5727 GEN_HANDLER(mfdcrux
, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX
)
5729 /* NIP cannot be restored if the memory exception comes from an helper */
5730 gen_update_nip(ctx
, ctx
->nip
- 4);
5731 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5732 /* Note: Rc update flag set leads to undefined state of Rc0 */
5735 /* mtdcrux (PPC 460) : user-mode access to DCR */
5736 GEN_HANDLER(mtdcrux
, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX
)
5738 /* NIP cannot be restored if the memory exception comes from an helper */
5739 gen_update_nip(ctx
, ctx
->nip
- 4);
5740 gen_helper_store_dcr(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5741 /* Note: Rc update flag set leads to undefined state of Rc0 */
5745 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
)
5747 #if defined(CONFIG_USER_ONLY)
5748 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5750 if (unlikely(!ctx
->mem_idx
)) {
5751 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5754 /* interpreted as no-op */
5759 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
)
5761 #if defined(CONFIG_USER_ONLY)
5762 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5765 if (unlikely(!ctx
->mem_idx
)) {
5766 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5769 gen_set_access_type(ctx
, ACCESS_CACHE
);
5770 EA
= tcg_temp_new();
5771 gen_addr_reg_index(ctx
, EA
);
5772 val
= tcg_temp_new();
5773 gen_qemu_ld32u(ctx
, val
, EA
);
5775 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
5781 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
)
5783 /* interpreted as no-op */
5784 /* XXX: specification say this is treated as a load by the MMU
5785 * but does not generate any exception
5790 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
)
5792 #if defined(CONFIG_USER_ONLY)
5793 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5795 if (unlikely(!ctx
->mem_idx
)) {
5796 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5799 /* interpreted as no-op */
5804 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
)
5806 #if defined(CONFIG_USER_ONLY)
5807 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5809 if (unlikely(!ctx
->mem_idx
)) {
5810 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5813 /* interpreted as no-op */
5817 /* rfci (mem_idx only) */
5818 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
)
5820 #if defined(CONFIG_USER_ONLY)
5821 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5823 if (unlikely(!ctx
->mem_idx
)) {
5824 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5827 /* Restore CPU state */
5828 gen_helper_40x_rfci();
5829 gen_sync_exception(ctx
);
5833 GEN_HANDLER(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
)
5835 #if defined(CONFIG_USER_ONLY)
5836 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5838 if (unlikely(!ctx
->mem_idx
)) {
5839 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5842 /* Restore CPU state */
5844 gen_sync_exception(ctx
);
5848 /* BookE specific */
5849 /* XXX: not implemented on 440 ? */
5850 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
)
5852 #if defined(CONFIG_USER_ONLY)
5853 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5855 if (unlikely(!ctx
->mem_idx
)) {
5856 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5859 /* Restore CPU state */
5861 gen_sync_exception(ctx
);
5865 /* XXX: not implemented on 440 ? */
5866 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
)
5868 #if defined(CONFIG_USER_ONLY)
5869 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5871 if (unlikely(!ctx
->mem_idx
)) {
5872 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5875 /* Restore CPU state */
5877 gen_sync_exception(ctx
);
5881 /* TLB management - PowerPC 405 implementation */
5883 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
)
5885 #if defined(CONFIG_USER_ONLY)
5886 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5888 if (unlikely(!ctx
->mem_idx
)) {
5889 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5892 switch (rB(ctx
->opcode
)) {
5894 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5897 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5900 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5906 /* tlbsx - tlbsx. */
5907 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
)
5909 #if defined(CONFIG_USER_ONLY)
5910 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5913 if (unlikely(!ctx
->mem_idx
)) {
5914 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5917 t0
= tcg_temp_new();
5918 gen_addr_reg_index(ctx
, t0
);
5919 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5921 if (Rc(ctx
->opcode
)) {
5922 int l1
= gen_new_label();
5923 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
5924 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
5925 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
5926 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
5927 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
5934 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
)
5936 #if defined(CONFIG_USER_ONLY)
5937 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5939 if (unlikely(!ctx
->mem_idx
)) {
5940 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5943 switch (rB(ctx
->opcode
)) {
5945 gen_helper_4xx_tlbwe_hi(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5948 gen_helper_4xx_tlbwe_lo(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
5951 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5957 /* TLB management - PowerPC 440 implementation */
5959 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
)
5961 #if defined(CONFIG_USER_ONLY)
5962 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5964 if (unlikely(!ctx
->mem_idx
)) {
5965 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5968 switch (rB(ctx
->opcode
)) {
5973 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
5974 gen_helper_440_tlbwe(t0
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
5975 tcg_temp_free_i32(t0
);
5979 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5985 /* tlbsx - tlbsx. */
5986 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
)
5988 #if defined(CONFIG_USER_ONLY)
5989 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5992 if (unlikely(!ctx
->mem_idx
)) {
5993 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
5996 t0
= tcg_temp_new();
5997 gen_addr_reg_index(ctx
, t0
);
5998 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], t0
);
6000 if (Rc(ctx
->opcode
)) {
6001 int l1
= gen_new_label();
6002 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_xer
);
6003 tcg_gen_shri_i32(cpu_crf
[0], cpu_crf
[0], XER_SO
);
6004 tcg_gen_andi_i32(cpu_crf
[0], cpu_crf
[0], 1);
6005 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6006 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6013 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
)
6015 #if defined(CONFIG_USER_ONLY)
6016 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6018 if (unlikely(!ctx
->mem_idx
)) {
6019 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6022 switch (rB(ctx
->opcode
)) {
6027 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6028 gen_helper_440_tlbwe(t0
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
6029 tcg_temp_free_i32(t0
);
6033 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6040 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
)
6042 #if defined(CONFIG_USER_ONLY)
6043 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6046 if (unlikely(!ctx
->mem_idx
)) {
6047 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6050 t0
= tcg_temp_new();
6051 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
6052 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6053 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
6055 /* Stop translation to have a chance to raise an exception
6056 * if we just set msr_ee to 1
6058 gen_stop_exception(ctx
);
6063 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_WRTEE
)
6065 #if defined(CONFIG_USER_ONLY)
6066 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6068 if (unlikely(!ctx
->mem_idx
)) {
6069 gen_inval_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
6072 if (ctx
->opcode
& 0x00010000) {
6073 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
6074 /* Stop translation to have a chance to raise an exception */
6075 gen_stop_exception(ctx
);
6077 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6082 /* PowerPC 440 specific instructions */
6084 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
)
6086 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
6087 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
6088 cpu_gpr
[rB(ctx
->opcode
)], t0
);
6089 tcg_temp_free_i32(t0
);
6092 /* mbar replaces eieio on 440 */
6093 GEN_HANDLER(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE
)
6095 /* interpreted as no-op */
6098 /* msync replaces sync on 440 */
6099 GEN_HANDLER(msync
, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE
)
6101 /* interpreted as no-op */
6105 GEN_HANDLER2(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE
)
6107 /* interpreted as no-op */
6108 /* XXX: specification say this is treated as a load by the MMU
6109 * but does not generate any exception
6113 /*** Altivec vector extension ***/
6114 /* Altivec registers moves */
6116 static always_inline TCGv_ptr
gen_avr_ptr(int reg
)
6118 TCGv_ptr r
= tcg_temp_new_ptr();
6119 tcg_gen_addi_ptr(r
, cpu_env
, offsetof(CPUPPCState
, avr
[reg
]));
6123 #define GEN_VR_LDX(name, opc2, opc3) \
6124 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6127 if (unlikely(!ctx->altivec_enabled)) { \
6128 gen_exception(ctx, POWERPC_EXCP_VPU); \
6131 gen_set_access_type(ctx, ACCESS_INT); \
6132 EA = tcg_temp_new(); \
6133 gen_addr_reg_index(ctx, EA); \
6134 tcg_gen_andi_tl(EA, EA, ~0xf); \
6135 if (ctx->le_mode) { \
6136 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6137 tcg_gen_addi_tl(EA, EA, 8); \
6138 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6140 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6141 tcg_gen_addi_tl(EA, EA, 8); \
6142 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6144 tcg_temp_free(EA); \
6147 #define GEN_VR_STX(name, opc2, opc3) \
6148 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6151 if (unlikely(!ctx->altivec_enabled)) { \
6152 gen_exception(ctx, POWERPC_EXCP_VPU); \
6155 gen_set_access_type(ctx, ACCESS_INT); \
6156 EA = tcg_temp_new(); \
6157 gen_addr_reg_index(ctx, EA); \
6158 tcg_gen_andi_tl(EA, EA, ~0xf); \
6159 if (ctx->le_mode) { \
6160 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6161 tcg_gen_addi_tl(EA, EA, 8); \
6162 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6164 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6165 tcg_gen_addi_tl(EA, EA, 8); \
6166 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6168 tcg_temp_free(EA); \
6171 #define GEN_VR_LVE(name, opc2, opc3) \
6172 GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6176 if (unlikely(!ctx->altivec_enabled)) { \
6177 gen_exception(ctx, POWERPC_EXCP_VPU); \
6180 gen_set_access_type(ctx, ACCESS_INT); \
6181 EA = tcg_temp_new(); \
6182 gen_addr_reg_index(ctx, EA); \
6183 rs = gen_avr_ptr(rS(ctx->opcode)); \
6184 gen_helper_lve##name (rs, EA); \
6185 tcg_temp_free(EA); \
6186 tcg_temp_free_ptr(rs); \
6189 #define GEN_VR_STVE(name, opc2, opc3) \
6190 GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6194 if (unlikely(!ctx->altivec_enabled)) { \
6195 gen_exception(ctx, POWERPC_EXCP_VPU); \
6198 gen_set_access_type(ctx, ACCESS_INT); \
6199 EA = tcg_temp_new(); \
6200 gen_addr_reg_index(ctx, EA); \
6201 rs = gen_avr_ptr(rS(ctx->opcode)); \
6202 gen_helper_stve##name (rs, EA); \
6203 tcg_temp_free(EA); \
6204 tcg_temp_free_ptr(rs); \
6207 GEN_VR_LDX(lvx
, 0x07, 0x03);
6208 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6209 GEN_VR_LDX(lvxl
, 0x07, 0x0B);
6211 GEN_VR_LVE(bx
, 0x07, 0x00);
6212 GEN_VR_LVE(hx
, 0x07, 0x01);
6213 GEN_VR_LVE(wx
, 0x07, 0x02);
6215 GEN_VR_STX(svx
, 0x07, 0x07);
6216 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6217 GEN_VR_STX(svxl
, 0x07, 0x0F);
6219 GEN_VR_STVE(bx
, 0x07, 0x04);
6220 GEN_VR_STVE(hx
, 0x07, 0x05);
6221 GEN_VR_STVE(wx
, 0x07, 0x06);
6223 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
)
6227 if (unlikely(!ctx
->altivec_enabled
)) {
6228 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6231 EA
= tcg_temp_new();
6232 gen_addr_reg_index(ctx
, EA
);
6233 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6234 gen_helper_lvsl(rd
, EA
);
6236 tcg_temp_free_ptr(rd
);
6239 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
)
6243 if (unlikely(!ctx
->altivec_enabled
)) {
6244 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6247 EA
= tcg_temp_new();
6248 gen_addr_reg_index(ctx
, EA
);
6249 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6250 gen_helper_lvsr(rd
, EA
);
6252 tcg_temp_free_ptr(rd
);
6255 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
)
6258 if (unlikely(!ctx
->altivec_enabled
)) {
6259 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6262 tcg_gen_movi_i64(cpu_avrh
[rD(ctx
->opcode
)], 0);
6263 t
= tcg_temp_new_i32();
6264 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUState
, vscr
));
6265 tcg_gen_extu_i32_i64(cpu_avrl
[rD(ctx
->opcode
)], t
);
6266 tcg_temp_free_i32(t
);
6269 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
)
6272 if (unlikely(!ctx
->altivec_enabled
)) {
6273 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6276 p
= gen_avr_ptr(rD(ctx
->opcode
));
6277 gen_helper_mtvscr(p
);
6278 tcg_temp_free_ptr(p
);
6281 /* Logical operations */
6282 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
6283 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6285 if (unlikely(!ctx->altivec_enabled)) { \
6286 gen_exception(ctx, POWERPC_EXCP_VPU); \
6289 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6290 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6293 GEN_VX_LOGICAL(vand
, tcg_gen_and_i64
, 2, 16);
6294 GEN_VX_LOGICAL(vandc
, tcg_gen_andc_i64
, 2, 17);
6295 GEN_VX_LOGICAL(vor
, tcg_gen_or_i64
, 2, 18);
6296 GEN_VX_LOGICAL(vxor
, tcg_gen_xor_i64
, 2, 19);
6297 GEN_VX_LOGICAL(vnor
, tcg_gen_nor_i64
, 2, 20);
6299 #define GEN_VXFORM(name, opc2, opc3) \
6300 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6302 TCGv_ptr ra, rb, rd; \
6303 if (unlikely(!ctx->altivec_enabled)) { \
6304 gen_exception(ctx, POWERPC_EXCP_VPU); \
6307 ra = gen_avr_ptr(rA(ctx->opcode)); \
6308 rb = gen_avr_ptr(rB(ctx->opcode)); \
6309 rd = gen_avr_ptr(rD(ctx->opcode)); \
6310 gen_helper_##name (rd, ra, rb); \
6311 tcg_temp_free_ptr(ra); \
6312 tcg_temp_free_ptr(rb); \
6313 tcg_temp_free_ptr(rd); \
6316 GEN_VXFORM(vaddubm
, 0, 0);
6317 GEN_VXFORM(vadduhm
, 0, 1);
6318 GEN_VXFORM(vadduwm
, 0, 2);
6319 GEN_VXFORM(vsububm
, 0, 16);
6320 GEN_VXFORM(vsubuhm
, 0, 17);
6321 GEN_VXFORM(vsubuwm
, 0, 18);
6322 GEN_VXFORM(vmaxub
, 1, 0);
6323 GEN_VXFORM(vmaxuh
, 1, 1);
6324 GEN_VXFORM(vmaxuw
, 1, 2);
6325 GEN_VXFORM(vmaxsb
, 1, 4);
6326 GEN_VXFORM(vmaxsh
, 1, 5);
6327 GEN_VXFORM(vmaxsw
, 1, 6);
6328 GEN_VXFORM(vminub
, 1, 8);
6329 GEN_VXFORM(vminuh
, 1, 9);
6330 GEN_VXFORM(vminuw
, 1, 10);
6331 GEN_VXFORM(vminsb
, 1, 12);
6332 GEN_VXFORM(vminsh
, 1, 13);
6333 GEN_VXFORM(vminsw
, 1, 14);
6334 GEN_VXFORM(vavgub
, 1, 16);
6335 GEN_VXFORM(vavguh
, 1, 17);
6336 GEN_VXFORM(vavguw
, 1, 18);
6337 GEN_VXFORM(vavgsb
, 1, 20);
6338 GEN_VXFORM(vavgsh
, 1, 21);
6339 GEN_VXFORM(vavgsw
, 1, 22);
6340 GEN_VXFORM(vmrghb
, 6, 0);
6341 GEN_VXFORM(vmrghh
, 6, 1);
6342 GEN_VXFORM(vmrghw
, 6, 2);
6343 GEN_VXFORM(vmrglb
, 6, 4);
6344 GEN_VXFORM(vmrglh
, 6, 5);
6345 GEN_VXFORM(vmrglw
, 6, 6);
6346 GEN_VXFORM(vmuloub
, 4, 0);
6347 GEN_VXFORM(vmulouh
, 4, 1);
6348 GEN_VXFORM(vmulosb
, 4, 4);
6349 GEN_VXFORM(vmulosh
, 4, 5);
6350 GEN_VXFORM(vmuleub
, 4, 8);
6351 GEN_VXFORM(vmuleuh
, 4, 9);
6352 GEN_VXFORM(vmulesb
, 4, 12);
6353 GEN_VXFORM(vmulesh
, 4, 13);
6354 GEN_VXFORM(vslb
, 2, 4);
6355 GEN_VXFORM(vslh
, 2, 5);
6356 GEN_VXFORM(vslw
, 2, 6);
6357 GEN_VXFORM(vsrb
, 2, 8);
6358 GEN_VXFORM(vsrh
, 2, 9);
6359 GEN_VXFORM(vsrw
, 2, 10);
6360 GEN_VXFORM(vsrab
, 2, 12);
6361 GEN_VXFORM(vsrah
, 2, 13);
6362 GEN_VXFORM(vsraw
, 2, 14);
6363 GEN_VXFORM(vslo
, 6, 16);
6364 GEN_VXFORM(vsro
, 6, 17);
6365 GEN_VXFORM(vaddcuw
, 0, 6);
6366 GEN_VXFORM(vsubcuw
, 0, 22);
6367 GEN_VXFORM(vaddubs
, 0, 8);
6368 GEN_VXFORM(vadduhs
, 0, 9);
6369 GEN_VXFORM(vadduws
, 0, 10);
6370 GEN_VXFORM(vaddsbs
, 0, 12);
6371 GEN_VXFORM(vaddshs
, 0, 13);
6372 GEN_VXFORM(vaddsws
, 0, 14);
6373 GEN_VXFORM(vsububs
, 0, 24);
6374 GEN_VXFORM(vsubuhs
, 0, 25);
6375 GEN_VXFORM(vsubuws
, 0, 26);
6376 GEN_VXFORM(vsubsbs
, 0, 28);
6377 GEN_VXFORM(vsubshs
, 0, 29);
6378 GEN_VXFORM(vsubsws
, 0, 30);
6379 GEN_VXFORM(vrlb
, 2, 0);
6380 GEN_VXFORM(vrlh
, 2, 1);
6381 GEN_VXFORM(vrlw
, 2, 2);
6382 GEN_VXFORM(vsl
, 2, 7);
6383 GEN_VXFORM(vsr
, 2, 11);
6384 GEN_VXFORM(vpkuhum
, 7, 0);
6385 GEN_VXFORM(vpkuwum
, 7, 1);
6386 GEN_VXFORM(vpkuhus
, 7, 2);
6387 GEN_VXFORM(vpkuwus
, 7, 3);
6388 GEN_VXFORM(vpkshus
, 7, 4);
6389 GEN_VXFORM(vpkswus
, 7, 5);
6390 GEN_VXFORM(vpkshss
, 7, 6);
6391 GEN_VXFORM(vpkswss
, 7, 7);
6392 GEN_VXFORM(vpkpx
, 7, 12);
6393 GEN_VXFORM(vsum4ubs
, 4, 24);
6394 GEN_VXFORM(vsum4sbs
, 4, 28);
6395 GEN_VXFORM(vsum4shs
, 4, 25);
6396 GEN_VXFORM(vsum2sws
, 4, 26);
6397 GEN_VXFORM(vsumsws
, 4, 30);
6399 #define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
6400 GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6402 TCGv_ptr ra, rb, rd; \
6403 if (unlikely(!ctx->altivec_enabled)) { \
6404 gen_exception(ctx, POWERPC_EXCP_VPU); \
6407 ra = gen_avr_ptr(rA(ctx->opcode)); \
6408 rb = gen_avr_ptr(rB(ctx->opcode)); \
6409 rd = gen_avr_ptr(rD(ctx->opcode)); \
6410 gen_helper_##opname (rd, ra, rb); \
6411 tcg_temp_free_ptr(ra); \
6412 tcg_temp_free_ptr(rb); \
6413 tcg_temp_free_ptr(rd); \
6416 #define GEN_VXRFORM(name, opc2, opc3) \
6417 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
6418 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6420 GEN_VXRFORM(vcmpequb
, 3, 0)
6421 GEN_VXRFORM(vcmpequh
, 3, 1)
6422 GEN_VXRFORM(vcmpequw
, 3, 2)
6423 GEN_VXRFORM(vcmpgtsb
, 3, 12)
6424 GEN_VXRFORM(vcmpgtsh
, 3, 13)
6425 GEN_VXRFORM(vcmpgtsw
, 3, 14)
6426 GEN_VXRFORM(vcmpgtub
, 3, 8)
6427 GEN_VXRFORM(vcmpgtuh
, 3, 9)
6428 GEN_VXRFORM(vcmpgtuw
, 3, 10)
6430 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6431 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6435 if (unlikely(!ctx->altivec_enabled)) { \
6436 gen_exception(ctx, POWERPC_EXCP_VPU); \
6439 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6440 rd = gen_avr_ptr(rD(ctx->opcode)); \
6441 gen_helper_##name (rd, simm); \
6442 tcg_temp_free_i32(simm); \
6443 tcg_temp_free_ptr(rd); \
6446 GEN_VXFORM_SIMM(vspltisb
, 6, 12);
6447 GEN_VXFORM_SIMM(vspltish
, 6, 13);
6448 GEN_VXFORM_SIMM(vspltisw
, 6, 14);
6450 #define GEN_VXFORM_NOA(name, opc2, opc3) \
6451 GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC) \
6454 if (unlikely(!ctx->altivec_enabled)) { \
6455 gen_exception(ctx, POWERPC_EXCP_VPU); \
6458 rb = gen_avr_ptr(rB(ctx->opcode)); \
6459 rd = gen_avr_ptr(rD(ctx->opcode)); \
6460 gen_helper_##name (rd, rb); \
6461 tcg_temp_free_ptr(rb); \
6462 tcg_temp_free_ptr(rd); \
6465 GEN_VXFORM_NOA(vupkhsb
, 7, 8);
6466 GEN_VXFORM_NOA(vupkhsh
, 7, 9);
6467 GEN_VXFORM_NOA(vupklsb
, 7, 10);
6468 GEN_VXFORM_NOA(vupklsh
, 7, 11);
6469 GEN_VXFORM_NOA(vupkhpx
, 7, 13);
6470 GEN_VXFORM_NOA(vupklpx
, 7, 15);
6472 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6473 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6477 if (unlikely(!ctx->altivec_enabled)) { \
6478 gen_exception(ctx, POWERPC_EXCP_VPU); \
6481 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6482 rd = gen_avr_ptr(rD(ctx->opcode)); \
6483 gen_helper_##name (rd, simm); \
6484 tcg_temp_free_i32(simm); \
6485 tcg_temp_free_ptr(rd); \
6488 #define GEN_VXFORM_UIMM(name, opc2, opc3) \
6489 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6493 if (unlikely(!ctx->altivec_enabled)) { \
6494 gen_exception(ctx, POWERPC_EXCP_VPU); \
6497 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6498 rb = gen_avr_ptr(rB(ctx->opcode)); \
6499 rd = gen_avr_ptr(rD(ctx->opcode)); \
6500 gen_helper_##name (rd, rb, uimm); \
6501 tcg_temp_free_i32(uimm); \
6502 tcg_temp_free_ptr(rb); \
6503 tcg_temp_free_ptr(rd); \
6506 GEN_VXFORM_UIMM(vspltb
, 6, 8);
6507 GEN_VXFORM_UIMM(vsplth
, 6, 9);
6508 GEN_VXFORM_UIMM(vspltw
, 6, 10);
6510 GEN_HANDLER(vsldoi
, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC
)
6512 TCGv_ptr ra
, rb
, rd
;
6514 if (unlikely(!ctx
->altivec_enabled
)) {
6515 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6518 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6519 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6520 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6521 sh
= tcg_const_i32(VSH(ctx
->opcode
));
6522 gen_helper_vsldoi (rd
, ra
, rb
, sh
);
6523 tcg_temp_free_ptr(ra
);
6524 tcg_temp_free_ptr(rb
);
6525 tcg_temp_free_ptr(rd
);
6526 tcg_temp_free_i32(sh
);
6529 #define GEN_VAFORM_PAIRED(name0, name1, opc2) \
6530 GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC) \
6532 TCGv_ptr ra, rb, rc, rd; \
6533 if (unlikely(!ctx->altivec_enabled)) { \
6534 gen_exception(ctx, POWERPC_EXCP_VPU); \
6537 ra = gen_avr_ptr(rA(ctx->opcode)); \
6538 rb = gen_avr_ptr(rB(ctx->opcode)); \
6539 rc = gen_avr_ptr(rC(ctx->opcode)); \
6540 rd = gen_avr_ptr(rD(ctx->opcode)); \
6541 if (Rc(ctx->opcode)) { \
6542 gen_helper_##name1 (rd, ra, rb, rc); \
6544 gen_helper_##name0 (rd, ra, rb, rc); \
6546 tcg_temp_free_ptr(ra); \
6547 tcg_temp_free_ptr(rb); \
6548 tcg_temp_free_ptr(rc); \
6549 tcg_temp_free_ptr(rd); \
6552 GEN_VAFORM_PAIRED(vmhaddshs
, vmhraddshs
, 16)
6554 GEN_HANDLER(vmladduhm
, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC
)
6556 TCGv_ptr ra
, rb
, rc
, rd
;
6557 if (unlikely(!ctx
->altivec_enabled
)) {
6558 gen_exception(ctx
, POWERPC_EXCP_VPU
);
6561 ra
= gen_avr_ptr(rA(ctx
->opcode
));
6562 rb
= gen_avr_ptr(rB(ctx
->opcode
));
6563 rc
= gen_avr_ptr(rC(ctx
->opcode
));
6564 rd
= gen_avr_ptr(rD(ctx
->opcode
));
6565 gen_helper_vmladduhm(rd
, ra
, rb
, rc
);
6566 tcg_temp_free_ptr(ra
);
6567 tcg_temp_free_ptr(rb
);
6568 tcg_temp_free_ptr(rc
);
6569 tcg_temp_free_ptr(rd
);
6572 GEN_VAFORM_PAIRED(vmsumubm
, vmsummbm
, 18)
6573 GEN_VAFORM_PAIRED(vmsumuhm
, vmsumuhs
, 19)
6574 GEN_VAFORM_PAIRED(vmsumshm
, vmsumshs
, 20)
6575 GEN_VAFORM_PAIRED(vsel
, vperm
, 21)
6577 /*** SPE extension ***/
6578 /* Register moves */
6580 static always_inline
void gen_load_gpr64(TCGv_i64 t
, int reg
) {
6581 #if defined(TARGET_PPC64)
6582 tcg_gen_mov_i64(t
, cpu_gpr
[reg
]);
6584 tcg_gen_concat_i32_i64(t
, cpu_gpr
[reg
], cpu_gprh
[reg
]);
6588 static always_inline
void gen_store_gpr64(int reg
, TCGv_i64 t
) {
6589 #if defined(TARGET_PPC64)
6590 tcg_gen_mov_i64(cpu_gpr
[reg
], t
);
6592 TCGv_i64 tmp
= tcg_temp_new_i64();
6593 tcg_gen_trunc_i64_i32(cpu_gpr
[reg
], t
);
6594 tcg_gen_shri_i64(tmp
, t
, 32);
6595 tcg_gen_trunc_i64_i32(cpu_gprh
[reg
], tmp
);
6596 tcg_temp_free_i64(tmp
);
6600 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
6601 GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type) \
6603 if (Rc(ctx->opcode)) \
6609 /* Handler for undefined SPE opcodes */
6610 static always_inline
void gen_speundef (DisasContext
*ctx
)
6612 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6616 #if defined(TARGET_PPC64)
6617 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6618 static always_inline void gen_##name (DisasContext *ctx) \
6620 if (unlikely(!ctx->spe_enabled)) { \
6621 gen_exception(ctx, POWERPC_EXCP_APU); \
6624 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6625 cpu_gpr[rB(ctx->opcode)]); \
6628 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6629 static always_inline void gen_##name (DisasContext *ctx) \
6631 if (unlikely(!ctx->spe_enabled)) { \
6632 gen_exception(ctx, POWERPC_EXCP_APU); \
6635 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6636 cpu_gpr[rB(ctx->opcode)]); \
6637 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6638 cpu_gprh[rB(ctx->opcode)]); \
6642 GEN_SPEOP_LOGIC2(evand
, tcg_gen_and_tl
);
6643 GEN_SPEOP_LOGIC2(evandc
, tcg_gen_andc_tl
);
6644 GEN_SPEOP_LOGIC2(evxor
, tcg_gen_xor_tl
);
6645 GEN_SPEOP_LOGIC2(evor
, tcg_gen_or_tl
);
6646 GEN_SPEOP_LOGIC2(evnor
, tcg_gen_nor_tl
);
6647 GEN_SPEOP_LOGIC2(eveqv
, tcg_gen_eqv_tl
);
6648 GEN_SPEOP_LOGIC2(evorc
, tcg_gen_orc_tl
);
6649 GEN_SPEOP_LOGIC2(evnand
, tcg_gen_nand_tl
);
6651 /* SPE logic immediate */
6652 #if defined(TARGET_PPC64)
6653 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6654 static always_inline void gen_##name (DisasContext *ctx) \
6656 if (unlikely(!ctx->spe_enabled)) { \
6657 gen_exception(ctx, POWERPC_EXCP_APU); \
6660 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6661 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6662 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6663 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6664 tcg_opi(t0, t0, rB(ctx->opcode)); \
6665 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6666 tcg_gen_trunc_i64_i32(t1, t2); \
6667 tcg_temp_free_i64(t2); \
6668 tcg_opi(t1, t1, rB(ctx->opcode)); \
6669 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6670 tcg_temp_free_i32(t0); \
6671 tcg_temp_free_i32(t1); \
6674 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6675 static always_inline void gen_##name (DisasContext *ctx) \
6677 if (unlikely(!ctx->spe_enabled)) { \
6678 gen_exception(ctx, POWERPC_EXCP_APU); \
6681 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6683 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6687 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi
, tcg_gen_shli_i32
);
6688 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu
, tcg_gen_shri_i32
);
6689 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis
, tcg_gen_sari_i32
);
6690 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi
, tcg_gen_rotli_i32
);
6692 /* SPE arithmetic */
6693 #if defined(TARGET_PPC64)
6694 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6695 static always_inline void gen_##name (DisasContext *ctx) \
6697 if (unlikely(!ctx->spe_enabled)) { \
6698 gen_exception(ctx, POWERPC_EXCP_APU); \
6701 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6702 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6703 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6704 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6706 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6707 tcg_gen_trunc_i64_i32(t1, t2); \
6708 tcg_temp_free_i64(t2); \
6710 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6711 tcg_temp_free_i32(t0); \
6712 tcg_temp_free_i32(t1); \
6715 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6716 static always_inline void gen_##name (DisasContext *ctx) \
6718 if (unlikely(!ctx->spe_enabled)) { \
6719 gen_exception(ctx, POWERPC_EXCP_APU); \
6722 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6723 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6727 static always_inline
void gen_op_evabs (TCGv_i32 ret
, TCGv_i32 arg1
)
6729 int l1
= gen_new_label();
6730 int l2
= gen_new_label();
6732 tcg_gen_brcondi_i32(TCG_COND_GE
, arg1
, 0, l1
);
6733 tcg_gen_neg_i32(ret
, arg1
);
6736 tcg_gen_mov_i32(ret
, arg1
);
6739 GEN_SPEOP_ARITH1(evabs
, gen_op_evabs
);
6740 GEN_SPEOP_ARITH1(evneg
, tcg_gen_neg_i32
);
6741 GEN_SPEOP_ARITH1(evextsb
, tcg_gen_ext8s_i32
);
6742 GEN_SPEOP_ARITH1(evextsh
, tcg_gen_ext16s_i32
);
6743 static always_inline
void gen_op_evrndw (TCGv_i32 ret
, TCGv_i32 arg1
)
6745 tcg_gen_addi_i32(ret
, arg1
, 0x8000);
6746 tcg_gen_ext16u_i32(ret
, ret
);
6748 GEN_SPEOP_ARITH1(evrndw
, gen_op_evrndw
);
6749 GEN_SPEOP_ARITH1(evcntlsw
, gen_helper_cntlsw32
);
6750 GEN_SPEOP_ARITH1(evcntlzw
, gen_helper_cntlzw32
);
6752 #if defined(TARGET_PPC64)
6753 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6754 static always_inline void gen_##name (DisasContext *ctx) \
6756 if (unlikely(!ctx->spe_enabled)) { \
6757 gen_exception(ctx, POWERPC_EXCP_APU); \
6760 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6761 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6762 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
6763 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
6764 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6765 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6766 tcg_op(t0, t0, t2); \
6767 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6768 tcg_gen_trunc_i64_i32(t1, t3); \
6769 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6770 tcg_gen_trunc_i64_i32(t2, t3); \
6771 tcg_temp_free_i64(t3); \
6772 tcg_op(t1, t1, t2); \
6773 tcg_temp_free_i32(t2); \
6774 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6775 tcg_temp_free_i32(t0); \
6776 tcg_temp_free_i32(t1); \
6779 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6780 static always_inline void gen_##name (DisasContext *ctx) \
6782 if (unlikely(!ctx->spe_enabled)) { \
6783 gen_exception(ctx, POWERPC_EXCP_APU); \
6786 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6787 cpu_gpr[rB(ctx->opcode)]); \
6788 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6789 cpu_gprh[rB(ctx->opcode)]); \
6793 static always_inline
void gen_op_evsrwu (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6798 l1
= gen_new_label();
6799 l2
= gen_new_label();
6800 t0
= tcg_temp_local_new_i32();
6801 /* No error here: 6 bits are used */
6802 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6803 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6804 tcg_gen_shr_i32(ret
, arg1
, t0
);
6807 tcg_gen_movi_i32(ret
, 0);
6809 tcg_temp_free_i32(t0
);
6811 GEN_SPEOP_ARITH2(evsrwu
, gen_op_evsrwu
);
6812 static always_inline
void gen_op_evsrws (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6817 l1
= gen_new_label();
6818 l2
= gen_new_label();
6819 t0
= tcg_temp_local_new_i32();
6820 /* No error here: 6 bits are used */
6821 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6822 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6823 tcg_gen_sar_i32(ret
, arg1
, t0
);
6826 tcg_gen_movi_i32(ret
, 0);
6828 tcg_temp_free_i32(t0
);
6830 GEN_SPEOP_ARITH2(evsrws
, gen_op_evsrws
);
6831 static always_inline
void gen_op_evslw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6836 l1
= gen_new_label();
6837 l2
= gen_new_label();
6838 t0
= tcg_temp_local_new_i32();
6839 /* No error here: 6 bits are used */
6840 tcg_gen_andi_i32(t0
, arg2
, 0x3F);
6841 tcg_gen_brcondi_i32(TCG_COND_GE
, t0
, 32, l1
);
6842 tcg_gen_shl_i32(ret
, arg1
, t0
);
6845 tcg_gen_movi_i32(ret
, 0);
6847 tcg_temp_free_i32(t0
);
6849 GEN_SPEOP_ARITH2(evslw
, gen_op_evslw
);
6850 static always_inline
void gen_op_evrlw (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6852 TCGv_i32 t0
= tcg_temp_new_i32();
6853 tcg_gen_andi_i32(t0
, arg2
, 0x1F);
6854 tcg_gen_rotl_i32(ret
, arg1
, t0
);
6855 tcg_temp_free_i32(t0
);
6857 GEN_SPEOP_ARITH2(evrlw
, gen_op_evrlw
);
6858 static always_inline
void gen_evmergehi (DisasContext
*ctx
)
6860 if (unlikely(!ctx
->spe_enabled
)) {
6861 gen_exception(ctx
, POWERPC_EXCP_APU
);
6864 #if defined(TARGET_PPC64)
6865 TCGv t0
= tcg_temp_new();
6866 TCGv t1
= tcg_temp_new();
6867 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
6868 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
6869 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
6873 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
6874 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
6877 GEN_SPEOP_ARITH2(evaddw
, tcg_gen_add_i32
);
6878 static always_inline
void gen_op_evsubf (TCGv_i32 ret
, TCGv_i32 arg1
, TCGv_i32 arg2
)
6880 tcg_gen_sub_i32(ret
, arg2
, arg1
);
6882 GEN_SPEOP_ARITH2(evsubfw
, gen_op_evsubf
);
6884 /* SPE arithmetic immediate */
6885 #if defined(TARGET_PPC64)
6886 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6887 static always_inline void gen_##name (DisasContext *ctx) \
6889 if (unlikely(!ctx->spe_enabled)) { \
6890 gen_exception(ctx, POWERPC_EXCP_APU); \
6893 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6894 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6895 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6896 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
6897 tcg_op(t0, t0, rA(ctx->opcode)); \
6898 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6899 tcg_gen_trunc_i64_i32(t1, t2); \
6900 tcg_temp_free_i64(t2); \
6901 tcg_op(t1, t1, rA(ctx->opcode)); \
6902 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6903 tcg_temp_free_i32(t0); \
6904 tcg_temp_free_i32(t1); \
6907 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6908 static always_inline void gen_##name (DisasContext *ctx) \
6910 if (unlikely(!ctx->spe_enabled)) { \
6911 gen_exception(ctx, POWERPC_EXCP_APU); \
6914 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
6916 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
6920 GEN_SPEOP_ARITH_IMM2(evaddiw
, tcg_gen_addi_i32
);
6921 GEN_SPEOP_ARITH_IMM2(evsubifw
, tcg_gen_subi_i32
);
6923 /* SPE comparison */
6924 #if defined(TARGET_PPC64)
6925 #define GEN_SPEOP_COMP(name, tcg_cond) \
6926 static always_inline void gen_##name (DisasContext *ctx) \
6928 if (unlikely(!ctx->spe_enabled)) { \
6929 gen_exception(ctx, POWERPC_EXCP_APU); \
6932 int l1 = gen_new_label(); \
6933 int l2 = gen_new_label(); \
6934 int l3 = gen_new_label(); \
6935 int l4 = gen_new_label(); \
6936 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6937 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6938 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6939 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6940 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
6941 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
6942 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
6944 gen_set_label(l1); \
6945 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6946 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6947 gen_set_label(l2); \
6948 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6949 tcg_gen_trunc_i64_i32(t0, t2); \
6950 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6951 tcg_gen_trunc_i64_i32(t1, t2); \
6952 tcg_temp_free_i64(t2); \
6953 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
6954 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6955 ~(CRF_CH | CRF_CH_AND_CL)); \
6957 gen_set_label(l3); \
6958 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6959 CRF_CH | CRF_CH_OR_CL); \
6960 gen_set_label(l4); \
6961 tcg_temp_free_i32(t0); \
6962 tcg_temp_free_i32(t1); \
6965 #define GEN_SPEOP_COMP(name, tcg_cond) \
6966 static always_inline void gen_##name (DisasContext *ctx) \
6968 if (unlikely(!ctx->spe_enabled)) { \
6969 gen_exception(ctx, POWERPC_EXCP_APU); \
6972 int l1 = gen_new_label(); \
6973 int l2 = gen_new_label(); \
6974 int l3 = gen_new_label(); \
6975 int l4 = gen_new_label(); \
6977 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
6978 cpu_gpr[rB(ctx->opcode)], l1); \
6979 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
6981 gen_set_label(l1); \
6982 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6983 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6984 gen_set_label(l2); \
6985 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
6986 cpu_gprh[rB(ctx->opcode)], l3); \
6987 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6988 ~(CRF_CH | CRF_CH_AND_CL)); \
6990 gen_set_label(l3); \
6991 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6992 CRF_CH | CRF_CH_OR_CL); \
6993 gen_set_label(l4); \
6996 GEN_SPEOP_COMP(evcmpgtu
, TCG_COND_GTU
);
6997 GEN_SPEOP_COMP(evcmpgts
, TCG_COND_GT
);
6998 GEN_SPEOP_COMP(evcmpltu
, TCG_COND_LTU
);
6999 GEN_SPEOP_COMP(evcmplts
, TCG_COND_LT
);
7000 GEN_SPEOP_COMP(evcmpeq
, TCG_COND_EQ
);
7003 static always_inline
void gen_brinc (DisasContext
*ctx
)
7005 /* Note: brinc is usable even if SPE is disabled */
7006 gen_helper_brinc(cpu_gpr
[rD(ctx
->opcode
)],
7007 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7009 static always_inline
void gen_evmergelo (DisasContext
*ctx
)
7011 if (unlikely(!ctx
->spe_enabled
)) {
7012 gen_exception(ctx
, POWERPC_EXCP_APU
);
7015 #if defined(TARGET_PPC64)
7016 TCGv t0
= tcg_temp_new();
7017 TCGv t1
= tcg_temp_new();
7018 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
7019 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7020 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7024 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7025 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7028 static always_inline
void gen_evmergehilo (DisasContext
*ctx
)
7030 if (unlikely(!ctx
->spe_enabled
)) {
7031 gen_exception(ctx
, POWERPC_EXCP_APU
);
7034 #if defined(TARGET_PPC64)
7035 TCGv t0
= tcg_temp_new();
7036 TCGv t1
= tcg_temp_new();
7037 tcg_gen_andi_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFLL
);
7038 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF0000000ULL
);
7039 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7043 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7044 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7047 static always_inline
void gen_evmergelohi (DisasContext
*ctx
)
7049 if (unlikely(!ctx
->spe_enabled
)) {
7050 gen_exception(ctx
, POWERPC_EXCP_APU
);
7053 #if defined(TARGET_PPC64)
7054 TCGv t0
= tcg_temp_new();
7055 TCGv t1
= tcg_temp_new();
7056 tcg_gen_shri_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 32);
7057 tcg_gen_shli_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 32);
7058 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
7062 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7063 tcg_gen_mov_i32(cpu_gprh
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7066 static always_inline
void gen_evsplati (DisasContext
*ctx
)
7068 uint64_t imm
= ((int32_t)(rA(ctx
->opcode
) << 11)) >> 27;
7070 #if defined(TARGET_PPC64)
7071 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7073 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7074 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7077 static always_inline
void gen_evsplatfi (DisasContext
*ctx
)
7079 uint64_t imm
= rA(ctx
->opcode
) << 11;
7081 #if defined(TARGET_PPC64)
7082 tcg_gen_movi_tl(cpu_gpr
[rD(ctx
->opcode
)], (imm
<< 32) | imm
);
7084 tcg_gen_movi_i32(cpu_gpr
[rD(ctx
->opcode
)], imm
);
7085 tcg_gen_movi_i32(cpu_gprh
[rD(ctx
->opcode
)], imm
);
7089 static always_inline
void gen_evsel (DisasContext
*ctx
)
7091 int l1
= gen_new_label();
7092 int l2
= gen_new_label();
7093 int l3
= gen_new_label();
7094 int l4
= gen_new_label();
7095 TCGv_i32 t0
= tcg_temp_local_new_i32();
7096 #if defined(TARGET_PPC64)
7097 TCGv t1
= tcg_temp_local_new();
7098 TCGv t2
= tcg_temp_local_new();
7100 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 3);
7101 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l1
);
7102 #if defined(TARGET_PPC64)
7103 tcg_gen_andi_tl(t1
, cpu_gpr
[rA(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7105 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)]);
7109 #if defined(TARGET_PPC64)
7110 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0xFFFFFFFF00000000ULL
);
7112 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rB(ctx
->opcode
)]);
7115 tcg_gen_andi_i32(t0
, cpu_crf
[ctx
->opcode
& 0x07], 1 << 2);
7116 tcg_gen_brcondi_i32(TCG_COND_EQ
, t0
, 0, l3
);
7117 #if defined(TARGET_PPC64)
7118 tcg_gen_andi_tl(t2
, cpu_gpr
[rA(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7120 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
7124 #if defined(TARGET_PPC64)
7125 tcg_gen_andi_tl(t2
, cpu_gpr
[rB(ctx
->opcode
)], 0x00000000FFFFFFFFULL
);
7127 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
7130 tcg_temp_free_i32(t0
);
7131 #if defined(TARGET_PPC64)
7132 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
, t2
);
7137 GEN_HANDLER2(evsel0
, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE
)
7141 GEN_HANDLER2(evsel1
, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE
)
7145 GEN_HANDLER2(evsel2
, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE
)
7149 GEN_HANDLER2(evsel3
, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE
)
7154 GEN_SPE(evaddw
, speundef
, 0x00, 0x08, 0x00000000, PPC_SPE
); ////
7155 GEN_SPE(evaddiw
, speundef
, 0x01, 0x08, 0x00000000, PPC_SPE
);
7156 GEN_SPE(evsubfw
, speundef
, 0x02, 0x08, 0x00000000, PPC_SPE
); ////
7157 GEN_SPE(evsubifw
, speundef
, 0x03, 0x08, 0x00000000, PPC_SPE
);
7158 GEN_SPE(evabs
, evneg
, 0x04, 0x08, 0x0000F800, PPC_SPE
); ////
7159 GEN_SPE(evextsb
, evextsh
, 0x05, 0x08, 0x0000F800, PPC_SPE
); ////
7160 GEN_SPE(evrndw
, evcntlzw
, 0x06, 0x08, 0x0000F800, PPC_SPE
); ////
7161 GEN_SPE(evcntlsw
, brinc
, 0x07, 0x08, 0x00000000, PPC_SPE
); //
7162 GEN_SPE(speundef
, evand
, 0x08, 0x08, 0x00000000, PPC_SPE
); ////
7163 GEN_SPE(evandc
, speundef
, 0x09, 0x08, 0x00000000, PPC_SPE
); ////
7164 GEN_SPE(evxor
, evor
, 0x0B, 0x08, 0x00000000, PPC_SPE
); ////
7165 GEN_SPE(evnor
, eveqv
, 0x0C, 0x08, 0x00000000, PPC_SPE
); ////
7166 GEN_SPE(speundef
, evorc
, 0x0D, 0x08, 0x00000000, PPC_SPE
); ////
7167 GEN_SPE(evnand
, speundef
, 0x0F, 0x08, 0x00000000, PPC_SPE
); ////
7168 GEN_SPE(evsrwu
, evsrws
, 0x10, 0x08, 0x00000000, PPC_SPE
); ////
7169 GEN_SPE(evsrwiu
, evsrwis
, 0x11, 0x08, 0x00000000, PPC_SPE
);
7170 GEN_SPE(evslw
, speundef
, 0x12, 0x08, 0x00000000, PPC_SPE
); ////
7171 GEN_SPE(evslwi
, speundef
, 0x13, 0x08, 0x00000000, PPC_SPE
);
7172 GEN_SPE(evrlw
, evsplati
, 0x14, 0x08, 0x00000000, PPC_SPE
); //
7173 GEN_SPE(evrlwi
, evsplatfi
, 0x15, 0x08, 0x00000000, PPC_SPE
);
7174 GEN_SPE(evmergehi
, evmergelo
, 0x16, 0x08, 0x00000000, PPC_SPE
); ////
7175 GEN_SPE(evmergehilo
, evmergelohi
, 0x17, 0x08, 0x00000000, PPC_SPE
); ////
7176 GEN_SPE(evcmpgtu
, evcmpgts
, 0x18, 0x08, 0x00600000, PPC_SPE
); ////
7177 GEN_SPE(evcmpltu
, evcmplts
, 0x19, 0x08, 0x00600000, PPC_SPE
); ////
7178 GEN_SPE(evcmpeq
, speundef
, 0x1A, 0x08, 0x00600000, PPC_SPE
); ////
7180 /* SPE load and stores */
7181 static always_inline
void gen_addr_spe_imm_index (DisasContext
*ctx
, TCGv EA
, int sh
)
7183 target_ulong uimm
= rB(ctx
->opcode
);
7185 if (rA(ctx
->opcode
) == 0) {
7186 tcg_gen_movi_tl(EA
, uimm
<< sh
);
7188 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], uimm
<< sh
);
7189 #if defined(TARGET_PPC64)
7190 if (!ctx
->sf_mode
) {
7191 tcg_gen_ext32u_tl(EA
, EA
);
7197 static always_inline
void gen_op_evldd(DisasContext
*ctx
, TCGv addr
)
7199 #if defined(TARGET_PPC64)
7200 gen_qemu_ld64(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7202 TCGv_i64 t0
= tcg_temp_new_i64();
7203 gen_qemu_ld64(ctx
, t0
, addr
);
7204 tcg_gen_trunc_i64_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7205 tcg_gen_shri_i64(t0
, t0
, 32);
7206 tcg_gen_trunc_i64_i32(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7207 tcg_temp_free_i64(t0
);
7211 static always_inline
void gen_op_evldw(DisasContext
*ctx
, TCGv addr
)
7213 #if defined(TARGET_PPC64)
7214 TCGv t0
= tcg_temp_new();
7215 gen_qemu_ld32u(ctx
, t0
, addr
);
7216 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7217 gen_addr_add(ctx
, addr
, addr
, 4);
7218 gen_qemu_ld32u(ctx
, t0
, addr
);
7219 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7222 gen_qemu_ld32u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7223 gen_addr_add(ctx
, addr
, addr
, 4);
7224 gen_qemu_ld32u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7228 static always_inline
void gen_op_evldh(DisasContext
*ctx
, TCGv addr
)
7230 TCGv t0
= tcg_temp_new();
7231 #if defined(TARGET_PPC64)
7232 gen_qemu_ld16u(ctx
, t0
, addr
);
7233 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7234 gen_addr_add(ctx
, addr
, addr
, 2);
7235 gen_qemu_ld16u(ctx
, t0
, addr
);
7236 tcg_gen_shli_tl(t0
, t0
, 32);
7237 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7238 gen_addr_add(ctx
, addr
, addr
, 2);
7239 gen_qemu_ld16u(ctx
, t0
, addr
);
7240 tcg_gen_shli_tl(t0
, t0
, 16);
7241 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7242 gen_addr_add(ctx
, addr
, addr
, 2);
7243 gen_qemu_ld16u(ctx
, t0
, addr
);
7244 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7246 gen_qemu_ld16u(ctx
, t0
, addr
);
7247 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7248 gen_addr_add(ctx
, addr
, addr
, 2);
7249 gen_qemu_ld16u(ctx
, t0
, addr
);
7250 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7251 gen_addr_add(ctx
, addr
, addr
, 2);
7252 gen_qemu_ld16u(ctx
, t0
, addr
);
7253 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7254 gen_addr_add(ctx
, addr
, addr
, 2);
7255 gen_qemu_ld16u(ctx
, t0
, addr
);
7256 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7261 static always_inline
void gen_op_evlhhesplat(DisasContext
*ctx
, TCGv addr
)
7263 TCGv t0
= tcg_temp_new();
7264 gen_qemu_ld16u(ctx
, t0
, addr
);
7265 #if defined(TARGET_PPC64)
7266 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7267 tcg_gen_shli_tl(t0
, t0
, 16);
7268 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7270 tcg_gen_shli_tl(t0
, t0
, 16);
7271 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7272 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7277 static always_inline
void gen_op_evlhhousplat(DisasContext
*ctx
, TCGv addr
)
7279 TCGv t0
= tcg_temp_new();
7280 gen_qemu_ld16u(ctx
, t0
, addr
);
7281 #if defined(TARGET_PPC64)
7282 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7283 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7285 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7286 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7291 static always_inline
void gen_op_evlhhossplat(DisasContext
*ctx
, TCGv addr
)
7293 TCGv t0
= tcg_temp_new();
7294 gen_qemu_ld16s(ctx
, t0
, addr
);
7295 #if defined(TARGET_PPC64)
7296 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7297 tcg_gen_ext32u_tl(t0
, t0
);
7298 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7300 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7301 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7306 static always_inline
void gen_op_evlwhe(DisasContext
*ctx
, TCGv addr
)
7308 TCGv t0
= tcg_temp_new();
7309 #if defined(TARGET_PPC64)
7310 gen_qemu_ld16u(ctx
, t0
, addr
);
7311 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7312 gen_addr_add(ctx
, addr
, addr
, 2);
7313 gen_qemu_ld16u(ctx
, t0
, addr
);
7314 tcg_gen_shli_tl(t0
, t0
, 16);
7315 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7317 gen_qemu_ld16u(ctx
, t0
, addr
);
7318 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7319 gen_addr_add(ctx
, addr
, addr
, 2);
7320 gen_qemu_ld16u(ctx
, t0
, addr
);
7321 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7326 static always_inline
void gen_op_evlwhou(DisasContext
*ctx
, TCGv addr
)
7328 #if defined(TARGET_PPC64)
7329 TCGv t0
= tcg_temp_new();
7330 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7331 gen_addr_add(ctx
, addr
, addr
, 2);
7332 gen_qemu_ld16u(ctx
, t0
, addr
);
7333 tcg_gen_shli_tl(t0
, t0
, 32);
7334 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7337 gen_qemu_ld16u(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7338 gen_addr_add(ctx
, addr
, addr
, 2);
7339 gen_qemu_ld16u(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7343 static always_inline
void gen_op_evlwhos(DisasContext
*ctx
, TCGv addr
)
7345 #if defined(TARGET_PPC64)
7346 TCGv t0
= tcg_temp_new();
7347 gen_qemu_ld16s(ctx
, t0
, addr
);
7348 tcg_gen_ext32u_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7349 gen_addr_add(ctx
, addr
, addr
, 2);
7350 gen_qemu_ld16s(ctx
, t0
, addr
);
7351 tcg_gen_shli_tl(t0
, t0
, 32);
7352 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7355 gen_qemu_ld16s(ctx
, cpu_gprh
[rD(ctx
->opcode
)], addr
);
7356 gen_addr_add(ctx
, addr
, addr
, 2);
7357 gen_qemu_ld16s(ctx
, cpu_gpr
[rD(ctx
->opcode
)], addr
);
7361 static always_inline
void gen_op_evlwwsplat(DisasContext
*ctx
, TCGv addr
)
7363 TCGv t0
= tcg_temp_new();
7364 gen_qemu_ld32u(ctx
, t0
, addr
);
7365 #if defined(TARGET_PPC64)
7366 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 32);
7367 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7369 tcg_gen_mov_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
);
7370 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
7375 static always_inline
void gen_op_evlwhsplat(DisasContext
*ctx
, TCGv addr
)
7377 TCGv t0
= tcg_temp_new();
7378 #if defined(TARGET_PPC64)
7379 gen_qemu_ld16u(ctx
, t0
, addr
);
7380 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 48);
7381 tcg_gen_shli_tl(t0
, t0
, 32);
7382 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7383 gen_addr_add(ctx
, addr
, addr
, 2);
7384 gen_qemu_ld16u(ctx
, t0
, addr
);
7385 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7386 tcg_gen_shli_tl(t0
, t0
, 16);
7387 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rD(ctx
->opcode
)], t0
);
7389 gen_qemu_ld16u(ctx
, t0
, addr
);
7390 tcg_gen_shli_tl(cpu_gprh
[rD(ctx
->opcode
)], t0
, 16);
7391 tcg_gen_or_tl(cpu_gprh
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7392 gen_addr_add(ctx
, addr
, addr
, 2);
7393 gen_qemu_ld16u(ctx
, t0
, addr
);
7394 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, 16);
7395 tcg_gen_or_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gprh
[rD(ctx
->opcode
)], t0
);
7400 static always_inline
void gen_op_evstdd(DisasContext
*ctx
, TCGv addr
)
7402 #if defined(TARGET_PPC64)
7403 gen_qemu_st64(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7405 TCGv_i64 t0
= tcg_temp_new_i64();
7406 tcg_gen_concat_i32_i64(t0
, cpu_gpr
[rS(ctx
->opcode
)], cpu_gprh
[rS(ctx
->opcode
)]);
7407 gen_qemu_st64(ctx
, t0
, addr
);
7408 tcg_temp_free_i64(t0
);
7412 static always_inline
void gen_op_evstdw(DisasContext
*ctx
, TCGv addr
)
7414 #if defined(TARGET_PPC64)
7415 TCGv t0
= tcg_temp_new();
7416 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7417 gen_qemu_st32(ctx
, t0
, addr
);
7420 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7422 gen_addr_add(ctx
, addr
, addr
, 4);
7423 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7426 static always_inline
void gen_op_evstdh(DisasContext
*ctx
, TCGv addr
)
7428 TCGv t0
= tcg_temp_new();
7429 #if defined(TARGET_PPC64)
7430 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7432 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7434 gen_qemu_st16(ctx
, t0
, addr
);
7435 gen_addr_add(ctx
, addr
, addr
, 2);
7436 #if defined(TARGET_PPC64)
7437 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7438 gen_qemu_st16(ctx
, t0
, addr
);
7440 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7442 gen_addr_add(ctx
, addr
, addr
, 2);
7443 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7444 gen_qemu_st16(ctx
, t0
, addr
);
7446 gen_addr_add(ctx
, addr
, addr
, 2);
7447 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7450 static always_inline
void gen_op_evstwhe(DisasContext
*ctx
, TCGv addr
)
7452 TCGv t0
= tcg_temp_new();
7453 #if defined(TARGET_PPC64)
7454 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 48);
7456 tcg_gen_shri_tl(t0
, cpu_gprh
[rS(ctx
->opcode
)], 16);
7458 gen_qemu_st16(ctx
, t0
, addr
);
7459 gen_addr_add(ctx
, addr
, addr
, 2);
7460 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 16);
7461 gen_qemu_st16(ctx
, t0
, addr
);
7465 static always_inline
void gen_op_evstwho(DisasContext
*ctx
, TCGv addr
)
7467 #if defined(TARGET_PPC64)
7468 TCGv t0
= tcg_temp_new();
7469 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7470 gen_qemu_st16(ctx
, t0
, addr
);
7473 gen_qemu_st16(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7475 gen_addr_add(ctx
, addr
, addr
, 2);
7476 gen_qemu_st16(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7479 static always_inline
void gen_op_evstwwe(DisasContext
*ctx
, TCGv addr
)
7481 #if defined(TARGET_PPC64)
7482 TCGv t0
= tcg_temp_new();
7483 tcg_gen_shri_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], 32);
7484 gen_qemu_st32(ctx
, t0
, addr
);
7487 gen_qemu_st32(ctx
, cpu_gprh
[rS(ctx
->opcode
)], addr
);
7491 static always_inline
void gen_op_evstwwo(DisasContext
*ctx
, TCGv addr
)
7493 gen_qemu_st32(ctx
, cpu_gpr
[rS(ctx
->opcode
)], addr
);
7496 #define GEN_SPEOP_LDST(name, opc2, sh) \
7497 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE) \
7500 if (unlikely(!ctx->spe_enabled)) { \
7501 gen_exception(ctx, POWERPC_EXCP_APU); \
7504 gen_set_access_type(ctx, ACCESS_INT); \
7505 t0 = tcg_temp_new(); \
7506 if (Rc(ctx->opcode)) { \
7507 gen_addr_spe_imm_index(ctx, t0, sh); \
7509 gen_addr_reg_index(ctx, t0); \
7511 gen_op_##name(ctx, t0); \
7512 tcg_temp_free(t0); \
7515 GEN_SPEOP_LDST(evldd
, 0x00, 3);
7516 GEN_SPEOP_LDST(evldw
, 0x01, 3);
7517 GEN_SPEOP_LDST(evldh
, 0x02, 3);
7518 GEN_SPEOP_LDST(evlhhesplat
, 0x04, 1);
7519 GEN_SPEOP_LDST(evlhhousplat
, 0x06, 1);
7520 GEN_SPEOP_LDST(evlhhossplat
, 0x07, 1);
7521 GEN_SPEOP_LDST(evlwhe
, 0x08, 2);
7522 GEN_SPEOP_LDST(evlwhou
, 0x0A, 2);
7523 GEN_SPEOP_LDST(evlwhos
, 0x0B, 2);
7524 GEN_SPEOP_LDST(evlwwsplat
, 0x0C, 2);
7525 GEN_SPEOP_LDST(evlwhsplat
, 0x0E, 2);
7527 GEN_SPEOP_LDST(evstdd
, 0x10, 3);
7528 GEN_SPEOP_LDST(evstdw
, 0x11, 3);
7529 GEN_SPEOP_LDST(evstdh
, 0x12, 3);
7530 GEN_SPEOP_LDST(evstwhe
, 0x18, 2);
7531 GEN_SPEOP_LDST(evstwho
, 0x1A, 2);
7532 GEN_SPEOP_LDST(evstwwe
, 0x1C, 2);
7533 GEN_SPEOP_LDST(evstwwo
, 0x1E, 2);
7535 /* Multiply and add - TODO */
7537 GEN_SPE(speundef
, evmhessf
, 0x01, 0x10, 0x00000000, PPC_SPE
);
7538 GEN_SPE(speundef
, evmhossf
, 0x03, 0x10, 0x00000000, PPC_SPE
);
7539 GEN_SPE(evmheumi
, evmhesmi
, 0x04, 0x10, 0x00000000, PPC_SPE
);
7540 GEN_SPE(speundef
, evmhesmf
, 0x05, 0x10, 0x00000000, PPC_SPE
);
7541 GEN_SPE(evmhoumi
, evmhosmi
, 0x06, 0x10, 0x00000000, PPC_SPE
);
7542 GEN_SPE(speundef
, evmhosmf
, 0x07, 0x10, 0x00000000, PPC_SPE
);
7543 GEN_SPE(speundef
, evmhessfa
, 0x11, 0x10, 0x00000000, PPC_SPE
);
7544 GEN_SPE(speundef
, evmhossfa
, 0x13, 0x10, 0x00000000, PPC_SPE
);
7545 GEN_SPE(evmheumia
, evmhesmia
, 0x14, 0x10, 0x00000000, PPC_SPE
);
7546 GEN_SPE(speundef
, evmhesmfa
, 0x15, 0x10, 0x00000000, PPC_SPE
);
7547 GEN_SPE(evmhoumia
, evmhosmia
, 0x16, 0x10, 0x00000000, PPC_SPE
);
7548 GEN_SPE(speundef
, evmhosmfa
, 0x17, 0x10, 0x00000000, PPC_SPE
);
7550 GEN_SPE(speundef
, evmwhssf
, 0x03, 0x11, 0x00000000, PPC_SPE
);
7551 GEN_SPE(evmwlumi
, speundef
, 0x04, 0x11, 0x00000000, PPC_SPE
);
7552 GEN_SPE(evmwhumi
, evmwhsmi
, 0x06, 0x11, 0x00000000, PPC_SPE
);
7553 GEN_SPE(speundef
, evmwhsmf
, 0x07, 0x11, 0x00000000, PPC_SPE
);
7554 GEN_SPE(speundef
, evmwssf
, 0x09, 0x11, 0x00000000, PPC_SPE
);
7555 GEN_SPE(evmwumi
, evmwsmi
, 0x0C, 0x11, 0x00000000, PPC_SPE
);
7556 GEN_SPE(speundef
, evmwsmf
, 0x0D, 0x11, 0x00000000, PPC_SPE
);
7557 GEN_SPE(speundef
, evmwhssfa
, 0x13, 0x11, 0x00000000, PPC_SPE
);
7558 GEN_SPE(evmwlumia
, speundef
, 0x14, 0x11, 0x00000000, PPC_SPE
);
7559 GEN_SPE(evmwhumia
, evmwhsmia
, 0x16, 0x11, 0x00000000, PPC_SPE
);
7560 GEN_SPE(speundef
, evmwhsmfa
, 0x17, 0x11, 0x00000000, PPC_SPE
);
7561 GEN_SPE(speundef
, evmwssfa
, 0x19, 0x11, 0x00000000, PPC_SPE
);
7562 GEN_SPE(evmwumia
, evmwsmia
, 0x1C, 0x11, 0x00000000, PPC_SPE
);
7563 GEN_SPE(speundef
, evmwsmfa
, 0x1D, 0x11, 0x00000000, PPC_SPE
);
7565 GEN_SPE(evadduiaaw
, evaddsiaaw
, 0x00, 0x13, 0x0000F800, PPC_SPE
);
7566 GEN_SPE(evsubfusiaaw
, evsubfssiaaw
, 0x01, 0x13, 0x0000F800, PPC_SPE
);
7567 GEN_SPE(evaddumiaaw
, evaddsmiaaw
, 0x04, 0x13, 0x0000F800, PPC_SPE
);
7568 GEN_SPE(evsubfumiaaw
, evsubfsmiaaw
, 0x05, 0x13, 0x0000F800, PPC_SPE
);
7569 GEN_SPE(evdivws
, evdivwu
, 0x06, 0x13, 0x00000000, PPC_SPE
);
7570 GEN_SPE(evmra
, speundef
, 0x07, 0x13, 0x0000F800, PPC_SPE
);
7572 GEN_SPE(evmheusiaaw
, evmhessiaaw
, 0x00, 0x14, 0x00000000, PPC_SPE
);
7573 GEN_SPE(speundef
, evmhessfaaw
, 0x01, 0x14, 0x00000000, PPC_SPE
);
7574 GEN_SPE(evmhousiaaw
, evmhossiaaw
, 0x02, 0x14, 0x00000000, PPC_SPE
);
7575 GEN_SPE(speundef
, evmhossfaaw
, 0x03, 0x14, 0x00000000, PPC_SPE
);
7576 GEN_SPE(evmheumiaaw
, evmhesmiaaw
, 0x04, 0x14, 0x00000000, PPC_SPE
);
7577 GEN_SPE(speundef
, evmhesmfaaw
, 0x05, 0x14, 0x00000000, PPC_SPE
);
7578 GEN_SPE(evmhoumiaaw
, evmhosmiaaw
, 0x06, 0x14, 0x00000000, PPC_SPE
);
7579 GEN_SPE(speundef
, evmhosmfaaw
, 0x07, 0x14, 0x00000000, PPC_SPE
);
7580 GEN_SPE(evmhegumiaa
, evmhegsmiaa
, 0x14, 0x14, 0x00000000, PPC_SPE
);
7581 GEN_SPE(speundef
, evmhegsmfaa
, 0x15, 0x14, 0x00000000, PPC_SPE
);
7582 GEN_SPE(evmhogumiaa
, evmhogsmiaa
, 0x16, 0x14, 0x00000000, PPC_SPE
);
7583 GEN_SPE(speundef
, evmhogsmfaa
, 0x17, 0x14, 0x00000000, PPC_SPE
);
7585 GEN_SPE(evmwlusiaaw
, evmwlssiaaw
, 0x00, 0x15, 0x00000000, PPC_SPE
);
7586 GEN_SPE(evmwlumiaaw
, evmwlsmiaaw
, 0x04, 0x15, 0x00000000, PPC_SPE
);
7587 GEN_SPE(speundef
, evmwssfaa
, 0x09, 0x15, 0x00000000, PPC_SPE
);
7588 GEN_SPE(evmwumiaa
, evmwsmiaa
, 0x0C, 0x15, 0x00000000, PPC_SPE
);
7589 GEN_SPE(speundef
, evmwsmfaa
, 0x0D, 0x15, 0x00000000, PPC_SPE
);
7591 GEN_SPE(evmheusianw
, evmhessianw
, 0x00, 0x16, 0x00000000, PPC_SPE
);
7592 GEN_SPE(speundef
, evmhessfanw
, 0x01, 0x16, 0x00000000, PPC_SPE
);
7593 GEN_SPE(evmhousianw
, evmhossianw
, 0x02, 0x16, 0x00000000, PPC_SPE
);
7594 GEN_SPE(speundef
, evmhossfanw
, 0x03, 0x16, 0x00000000, PPC_SPE
);
7595 GEN_SPE(evmheumianw
, evmhesmianw
, 0x04, 0x16, 0x00000000, PPC_SPE
);
7596 GEN_SPE(speundef
, evmhesmfanw
, 0x05, 0x16, 0x00000000, PPC_SPE
);
7597 GEN_SPE(evmhoumianw
, evmhosmianw
, 0x06, 0x16, 0x00000000, PPC_SPE
);
7598 GEN_SPE(speundef
, evmhosmfanw
, 0x07, 0x16, 0x00000000, PPC_SPE
);
7599 GEN_SPE(evmhegumian
, evmhegsmian
, 0x14, 0x16, 0x00000000, PPC_SPE
);
7600 GEN_SPE(speundef
, evmhegsmfan
, 0x15, 0x16, 0x00000000, PPC_SPE
);
7601 GEN_SPE(evmhigumian
, evmhigsmian
, 0x16, 0x16, 0x00000000, PPC_SPE
);
7602 GEN_SPE(speundef
, evmhogsmfan
, 0x17, 0x16, 0x00000000, PPC_SPE
);
7604 GEN_SPE(evmwlusianw
, evmwlssianw
, 0x00, 0x17, 0x00000000, PPC_SPE
);
7605 GEN_SPE(evmwlumianw
, evmwlsmianw
, 0x04, 0x17, 0x00000000, PPC_SPE
);
7606 GEN_SPE(speundef
, evmwssfan
, 0x09, 0x17, 0x00000000, PPC_SPE
);
7607 GEN_SPE(evmwumian
, evmwsmian
, 0x0C, 0x17, 0x00000000, PPC_SPE
);
7608 GEN_SPE(speundef
, evmwsmfan
, 0x0D, 0x17, 0x00000000, PPC_SPE
);
7611 /*** SPE floating-point extension ***/
7612 #if defined(TARGET_PPC64)
7613 #define GEN_SPEFPUOP_CONV_32_32(name) \
7614 static always_inline void gen_##name (DisasContext *ctx) \
7618 t0 = tcg_temp_new_i32(); \
7619 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7620 gen_helper_##name(t0, t0); \
7621 t1 = tcg_temp_new(); \
7622 tcg_gen_extu_i32_tl(t1, t0); \
7623 tcg_temp_free_i32(t0); \
7624 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7625 0xFFFFFFFF00000000ULL); \
7626 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7627 tcg_temp_free(t1); \
7629 #define GEN_SPEFPUOP_CONV_32_64(name) \
7630 static always_inline void gen_##name (DisasContext *ctx) \
7634 t0 = tcg_temp_new_i32(); \
7635 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7636 t1 = tcg_temp_new(); \
7637 tcg_gen_extu_i32_tl(t1, t0); \
7638 tcg_temp_free_i32(t0); \
7639 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7640 0xFFFFFFFF00000000ULL); \
7641 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7642 tcg_temp_free(t1); \
7644 #define GEN_SPEFPUOP_CONV_64_32(name) \
7645 static always_inline void gen_##name (DisasContext *ctx) \
7647 TCGv_i32 t0 = tcg_temp_new_i32(); \
7648 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7649 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7650 tcg_temp_free_i32(t0); \
7652 #define GEN_SPEFPUOP_CONV_64_64(name) \
7653 static always_inline void gen_##name (DisasContext *ctx) \
7655 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7657 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7658 static always_inline void gen_##name (DisasContext *ctx) \
7662 if (unlikely(!ctx->spe_enabled)) { \
7663 gen_exception(ctx, POWERPC_EXCP_APU); \
7666 t0 = tcg_temp_new_i32(); \
7667 t1 = tcg_temp_new_i32(); \
7668 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7669 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7670 gen_helper_##name(t0, t0, t1); \
7671 tcg_temp_free_i32(t1); \
7672 t2 = tcg_temp_new(); \
7673 tcg_gen_extu_i32_tl(t2, t0); \
7674 tcg_temp_free_i32(t0); \
7675 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7676 0xFFFFFFFF00000000ULL); \
7677 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
7678 tcg_temp_free(t2); \
7680 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7681 static always_inline void gen_##name (DisasContext *ctx) \
7683 if (unlikely(!ctx->spe_enabled)) { \
7684 gen_exception(ctx, POWERPC_EXCP_APU); \
7687 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7688 cpu_gpr[rB(ctx->opcode)]); \
7690 #define GEN_SPEFPUOP_COMP_32(name) \
7691 static always_inline void gen_##name (DisasContext *ctx) \
7694 if (unlikely(!ctx->spe_enabled)) { \
7695 gen_exception(ctx, POWERPC_EXCP_APU); \
7698 t0 = tcg_temp_new_i32(); \
7699 t1 = tcg_temp_new_i32(); \
7700 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7701 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7702 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7703 tcg_temp_free_i32(t0); \
7704 tcg_temp_free_i32(t1); \
7706 #define GEN_SPEFPUOP_COMP_64(name) \
7707 static always_inline void gen_##name (DisasContext *ctx) \
7709 if (unlikely(!ctx->spe_enabled)) { \
7710 gen_exception(ctx, POWERPC_EXCP_APU); \
7713 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7714 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7717 #define GEN_SPEFPUOP_CONV_32_32(name) \
7718 static always_inline void gen_##name (DisasContext *ctx) \
7720 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7722 #define GEN_SPEFPUOP_CONV_32_64(name) \
7723 static always_inline void gen_##name (DisasContext *ctx) \
7725 TCGv_i64 t0 = tcg_temp_new_i64(); \
7726 gen_load_gpr64(t0, rB(ctx->opcode)); \
7727 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7728 tcg_temp_free_i64(t0); \
7730 #define GEN_SPEFPUOP_CONV_64_32(name) \
7731 static always_inline void gen_##name (DisasContext *ctx) \
7733 TCGv_i64 t0 = tcg_temp_new_i64(); \
7734 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7735 gen_store_gpr64(rD(ctx->opcode), t0); \
7736 tcg_temp_free_i64(t0); \
7738 #define GEN_SPEFPUOP_CONV_64_64(name) \
7739 static always_inline void gen_##name (DisasContext *ctx) \
7741 TCGv_i64 t0 = tcg_temp_new_i64(); \
7742 gen_load_gpr64(t0, rB(ctx->opcode)); \
7743 gen_helper_##name(t0, t0); \
7744 gen_store_gpr64(rD(ctx->opcode), t0); \
7745 tcg_temp_free_i64(t0); \
7747 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7748 static always_inline void gen_##name (DisasContext *ctx) \
7750 if (unlikely(!ctx->spe_enabled)) { \
7751 gen_exception(ctx, POWERPC_EXCP_APU); \
7754 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \
7755 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7757 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7758 static always_inline void gen_##name (DisasContext *ctx) \
7761 if (unlikely(!ctx->spe_enabled)) { \
7762 gen_exception(ctx, POWERPC_EXCP_APU); \
7765 t0 = tcg_temp_new_i64(); \
7766 t1 = tcg_temp_new_i64(); \
7767 gen_load_gpr64(t0, rA(ctx->opcode)); \
7768 gen_load_gpr64(t1, rB(ctx->opcode)); \
7769 gen_helper_##name(t0, t0, t1); \
7770 gen_store_gpr64(rD(ctx->opcode), t0); \
7771 tcg_temp_free_i64(t0); \
7772 tcg_temp_free_i64(t1); \
7774 #define GEN_SPEFPUOP_COMP_32(name) \
7775 static always_inline void gen_##name (DisasContext *ctx) \
7777 if (unlikely(!ctx->spe_enabled)) { \
7778 gen_exception(ctx, POWERPC_EXCP_APU); \
7781 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7782 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7784 #define GEN_SPEFPUOP_COMP_64(name) \
7785 static always_inline void gen_##name (DisasContext *ctx) \
7788 if (unlikely(!ctx->spe_enabled)) { \
7789 gen_exception(ctx, POWERPC_EXCP_APU); \
7792 t0 = tcg_temp_new_i64(); \
7793 t1 = tcg_temp_new_i64(); \
7794 gen_load_gpr64(t0, rA(ctx->opcode)); \
7795 gen_load_gpr64(t1, rB(ctx->opcode)); \
7796 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7797 tcg_temp_free_i64(t0); \
7798 tcg_temp_free_i64(t1); \
7802 /* Single precision floating-point vectors operations */
7804 GEN_SPEFPUOP_ARITH2_64_64(evfsadd
);
7805 GEN_SPEFPUOP_ARITH2_64_64(evfssub
);
7806 GEN_SPEFPUOP_ARITH2_64_64(evfsmul
);
7807 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv
);
7808 static always_inline
void gen_evfsabs (DisasContext
*ctx
)
7810 if (unlikely(!ctx
->spe_enabled
)) {
7811 gen_exception(ctx
, POWERPC_EXCP_APU
);
7814 #if defined(TARGET_PPC64)
7815 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000080000000LL
);
7817 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x80000000);
7818 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7821 static always_inline
void gen_evfsnabs (DisasContext
*ctx
)
7823 if (unlikely(!ctx
->spe_enabled
)) {
7824 gen_exception(ctx
, POWERPC_EXCP_APU
);
7827 #if defined(TARGET_PPC64)
7828 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7830 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7831 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7834 static always_inline
void gen_evfsneg (DisasContext
*ctx
)
7836 if (unlikely(!ctx
->spe_enabled
)) {
7837 gen_exception(ctx
, POWERPC_EXCP_APU
);
7840 #if defined(TARGET_PPC64)
7841 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000080000000LL
);
7843 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7844 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7849 GEN_SPEFPUOP_CONV_64_64(evfscfui
);
7850 GEN_SPEFPUOP_CONV_64_64(evfscfsi
);
7851 GEN_SPEFPUOP_CONV_64_64(evfscfuf
);
7852 GEN_SPEFPUOP_CONV_64_64(evfscfsf
);
7853 GEN_SPEFPUOP_CONV_64_64(evfsctui
);
7854 GEN_SPEFPUOP_CONV_64_64(evfsctsi
);
7855 GEN_SPEFPUOP_CONV_64_64(evfsctuf
);
7856 GEN_SPEFPUOP_CONV_64_64(evfsctsf
);
7857 GEN_SPEFPUOP_CONV_64_64(evfsctuiz
);
7858 GEN_SPEFPUOP_CONV_64_64(evfsctsiz
);
7861 GEN_SPEFPUOP_COMP_64(evfscmpgt
);
7862 GEN_SPEFPUOP_COMP_64(evfscmplt
);
7863 GEN_SPEFPUOP_COMP_64(evfscmpeq
);
7864 GEN_SPEFPUOP_COMP_64(evfststgt
);
7865 GEN_SPEFPUOP_COMP_64(evfststlt
);
7866 GEN_SPEFPUOP_COMP_64(evfststeq
);
7868 /* Opcodes definitions */
7869 GEN_SPE(evfsadd
, evfssub
, 0x00, 0x0A, 0x00000000, PPC_SPEFPU
); //
7870 GEN_SPE(evfsabs
, evfsnabs
, 0x02, 0x0A, 0x0000F800, PPC_SPEFPU
); //
7871 GEN_SPE(evfsneg
, speundef
, 0x03, 0x0A, 0x0000F800, PPC_SPEFPU
); //
7872 GEN_SPE(evfsmul
, evfsdiv
, 0x04, 0x0A, 0x00000000, PPC_SPEFPU
); //
7873 GEN_SPE(evfscmpgt
, evfscmplt
, 0x06, 0x0A, 0x00600000, PPC_SPEFPU
); //
7874 GEN_SPE(evfscmpeq
, speundef
, 0x07, 0x0A, 0x00600000, PPC_SPEFPU
); //
7875 GEN_SPE(evfscfui
, evfscfsi
, 0x08, 0x0A, 0x00180000, PPC_SPEFPU
); //
7876 GEN_SPE(evfscfuf
, evfscfsf
, 0x09, 0x0A, 0x00180000, PPC_SPEFPU
); //
7877 GEN_SPE(evfsctui
, evfsctsi
, 0x0A, 0x0A, 0x00180000, PPC_SPEFPU
); //
7878 GEN_SPE(evfsctuf
, evfsctsf
, 0x0B, 0x0A, 0x00180000, PPC_SPEFPU
); //
7879 GEN_SPE(evfsctuiz
, speundef
, 0x0C, 0x0A, 0x00180000, PPC_SPEFPU
); //
7880 GEN_SPE(evfsctsiz
, speundef
, 0x0D, 0x0A, 0x00180000, PPC_SPEFPU
); //
7881 GEN_SPE(evfststgt
, evfststlt
, 0x0E, 0x0A, 0x00600000, PPC_SPEFPU
); //
7882 GEN_SPE(evfststeq
, speundef
, 0x0F, 0x0A, 0x00600000, PPC_SPEFPU
); //
7884 /* Single precision floating-point operations */
7886 GEN_SPEFPUOP_ARITH2_32_32(efsadd
);
7887 GEN_SPEFPUOP_ARITH2_32_32(efssub
);
7888 GEN_SPEFPUOP_ARITH2_32_32(efsmul
);
7889 GEN_SPEFPUOP_ARITH2_32_32(efsdiv
);
7890 static always_inline
void gen_efsabs (DisasContext
*ctx
)
7892 if (unlikely(!ctx
->spe_enabled
)) {
7893 gen_exception(ctx
, POWERPC_EXCP_APU
);
7896 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], (target_long
)~0x80000000LL
);
7898 static always_inline
void gen_efsnabs (DisasContext
*ctx
)
7900 if (unlikely(!ctx
->spe_enabled
)) {
7901 gen_exception(ctx
, POWERPC_EXCP_APU
);
7904 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7906 static always_inline
void gen_efsneg (DisasContext
*ctx
)
7908 if (unlikely(!ctx
->spe_enabled
)) {
7909 gen_exception(ctx
, POWERPC_EXCP_APU
);
7912 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x80000000);
7916 GEN_SPEFPUOP_CONV_32_32(efscfui
);
7917 GEN_SPEFPUOP_CONV_32_32(efscfsi
);
7918 GEN_SPEFPUOP_CONV_32_32(efscfuf
);
7919 GEN_SPEFPUOP_CONV_32_32(efscfsf
);
7920 GEN_SPEFPUOP_CONV_32_32(efsctui
);
7921 GEN_SPEFPUOP_CONV_32_32(efsctsi
);
7922 GEN_SPEFPUOP_CONV_32_32(efsctuf
);
7923 GEN_SPEFPUOP_CONV_32_32(efsctsf
);
7924 GEN_SPEFPUOP_CONV_32_32(efsctuiz
);
7925 GEN_SPEFPUOP_CONV_32_32(efsctsiz
);
7926 GEN_SPEFPUOP_CONV_32_64(efscfd
);
7929 GEN_SPEFPUOP_COMP_32(efscmpgt
);
7930 GEN_SPEFPUOP_COMP_32(efscmplt
);
7931 GEN_SPEFPUOP_COMP_32(efscmpeq
);
7932 GEN_SPEFPUOP_COMP_32(efststgt
);
7933 GEN_SPEFPUOP_COMP_32(efststlt
);
7934 GEN_SPEFPUOP_COMP_32(efststeq
);
7936 /* Opcodes definitions */
7937 GEN_SPE(efsadd
, efssub
, 0x00, 0x0B, 0x00000000, PPC_SPEFPU
); //
7938 GEN_SPE(efsabs
, efsnabs
, 0x02, 0x0B, 0x0000F800, PPC_SPEFPU
); //
7939 GEN_SPE(efsneg
, speundef
, 0x03, 0x0B, 0x0000F800, PPC_SPEFPU
); //
7940 GEN_SPE(efsmul
, efsdiv
, 0x04, 0x0B, 0x00000000, PPC_SPEFPU
); //
7941 GEN_SPE(efscmpgt
, efscmplt
, 0x06, 0x0B, 0x00600000, PPC_SPEFPU
); //
7942 GEN_SPE(efscmpeq
, efscfd
, 0x07, 0x0B, 0x00600000, PPC_SPEFPU
); //
7943 GEN_SPE(efscfui
, efscfsi
, 0x08, 0x0B, 0x00180000, PPC_SPEFPU
); //
7944 GEN_SPE(efscfuf
, efscfsf
, 0x09, 0x0B, 0x00180000, PPC_SPEFPU
); //
7945 GEN_SPE(efsctui
, efsctsi
, 0x0A, 0x0B, 0x00180000, PPC_SPEFPU
); //
7946 GEN_SPE(efsctuf
, efsctsf
, 0x0B, 0x0B, 0x00180000, PPC_SPEFPU
); //
7947 GEN_SPE(efsctuiz
, speundef
, 0x0C, 0x0B, 0x00180000, PPC_SPEFPU
); //
7948 GEN_SPE(efsctsiz
, speundef
, 0x0D, 0x0B, 0x00180000, PPC_SPEFPU
); //
7949 GEN_SPE(efststgt
, efststlt
, 0x0E, 0x0B, 0x00600000, PPC_SPEFPU
); //
7950 GEN_SPE(efststeq
, speundef
, 0x0F, 0x0B, 0x00600000, PPC_SPEFPU
); //
7952 /* Double precision floating-point operations */
7954 GEN_SPEFPUOP_ARITH2_64_64(efdadd
);
7955 GEN_SPEFPUOP_ARITH2_64_64(efdsub
);
7956 GEN_SPEFPUOP_ARITH2_64_64(efdmul
);
7957 GEN_SPEFPUOP_ARITH2_64_64(efddiv
);
7958 static always_inline
void gen_efdabs (DisasContext
*ctx
)
7960 if (unlikely(!ctx
->spe_enabled
)) {
7961 gen_exception(ctx
, POWERPC_EXCP_APU
);
7964 #if defined(TARGET_PPC64)
7965 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], ~0x8000000000000000LL
);
7967 tcg_gen_andi_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], ~0x80000000);
7970 static always_inline
void gen_efdnabs (DisasContext
*ctx
)
7972 if (unlikely(!ctx
->spe_enabled
)) {
7973 gen_exception(ctx
, POWERPC_EXCP_APU
);
7976 #if defined(TARGET_PPC64)
7977 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7979 tcg_gen_ori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7982 static always_inline
void gen_efdneg (DisasContext
*ctx
)
7984 if (unlikely(!ctx
->spe_enabled
)) {
7985 gen_exception(ctx
, POWERPC_EXCP_APU
);
7988 #if defined(TARGET_PPC64)
7989 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 0x8000000000000000LL
);
7991 tcg_gen_xori_tl(cpu_gprh
[rA(ctx
->opcode
)], cpu_gprh
[rA(ctx
->opcode
)], 0x80000000);
7996 GEN_SPEFPUOP_CONV_64_32(efdcfui
);
7997 GEN_SPEFPUOP_CONV_64_32(efdcfsi
);
7998 GEN_SPEFPUOP_CONV_64_32(efdcfuf
);
7999 GEN_SPEFPUOP_CONV_64_32(efdcfsf
);
8000 GEN_SPEFPUOP_CONV_32_64(efdctui
);
8001 GEN_SPEFPUOP_CONV_32_64(efdctsi
);
8002 GEN_SPEFPUOP_CONV_32_64(efdctuf
);
8003 GEN_SPEFPUOP_CONV_32_64(efdctsf
);
8004 GEN_SPEFPUOP_CONV_32_64(efdctuiz
);
8005 GEN_SPEFPUOP_CONV_32_64(efdctsiz
);
8006 GEN_SPEFPUOP_CONV_64_32(efdcfs
);
8007 GEN_SPEFPUOP_CONV_64_64(efdcfuid
);
8008 GEN_SPEFPUOP_CONV_64_64(efdcfsid
);
8009 GEN_SPEFPUOP_CONV_64_64(efdctuidz
);
8010 GEN_SPEFPUOP_CONV_64_64(efdctsidz
);
8013 GEN_SPEFPUOP_COMP_64(efdcmpgt
);
8014 GEN_SPEFPUOP_COMP_64(efdcmplt
);
8015 GEN_SPEFPUOP_COMP_64(efdcmpeq
);
8016 GEN_SPEFPUOP_COMP_64(efdtstgt
);
8017 GEN_SPEFPUOP_COMP_64(efdtstlt
);
8018 GEN_SPEFPUOP_COMP_64(efdtsteq
);
8020 /* Opcodes definitions */
8021 GEN_SPE(efdadd
, efdsub
, 0x10, 0x0B, 0x00000000, PPC_SPEFPU
); //
8022 GEN_SPE(efdcfuid
, efdcfsid
, 0x11, 0x0B, 0x00180000, PPC_SPEFPU
); //
8023 GEN_SPE(efdabs
, efdnabs
, 0x12, 0x0B, 0x0000F800, PPC_SPEFPU
); //
8024 GEN_SPE(efdneg
, speundef
, 0x13, 0x0B, 0x0000F800, PPC_SPEFPU
); //
8025 GEN_SPE(efdmul
, efddiv
, 0x14, 0x0B, 0x00000000, PPC_SPEFPU
); //
8026 GEN_SPE(efdctuidz
, efdctsidz
, 0x15, 0x0B, 0x00180000, PPC_SPEFPU
); //
8027 GEN_SPE(efdcmpgt
, efdcmplt
, 0x16, 0x0B, 0x00600000, PPC_SPEFPU
); //
8028 GEN_SPE(efdcmpeq
, efdcfs
, 0x17, 0x0B, 0x00600000, PPC_SPEFPU
); //
8029 GEN_SPE(efdcfui
, efdcfsi
, 0x18, 0x0B, 0x00180000, PPC_SPEFPU
); //
8030 GEN_SPE(efdcfuf
, efdcfsf
, 0x19, 0x0B, 0x00180000, PPC_SPEFPU
); //
8031 GEN_SPE(efdctui
, efdctsi
, 0x1A, 0x0B, 0x00180000, PPC_SPEFPU
); //
8032 GEN_SPE(efdctuf
, efdctsf
, 0x1B, 0x0B, 0x00180000, PPC_SPEFPU
); //
8033 GEN_SPE(efdctuiz
, speundef
, 0x1C, 0x0B, 0x00180000, PPC_SPEFPU
); //
8034 GEN_SPE(efdctsiz
, speundef
, 0x1D, 0x0B, 0x00180000, PPC_SPEFPU
); //
8035 GEN_SPE(efdtstgt
, efdtstlt
, 0x1E, 0x0B, 0x00600000, PPC_SPEFPU
); //
8036 GEN_SPE(efdtsteq
, speundef
, 0x1F, 0x0B, 0x00600000, PPC_SPEFPU
); //
8038 /* End opcode list */
8039 GEN_OPCODE_MARK(end
);
8041 #include "translate_init.c"
8042 #include "helper_regs.h"
8044 /*****************************************************************************/
8045 /* Misc PowerPC helpers */
8046 void cpu_dump_state (CPUState
*env
, FILE *f
,
8047 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8055 cpu_fprintf(f
, "NIP " ADDRX
" LR " ADDRX
" CTR " ADDRX
" XER %08x\n",
8056 env
->nip
, env
->lr
, env
->ctr
, env
->xer
);
8057 cpu_fprintf(f
, "MSR " ADDRX
" HID0 " ADDRX
" HF " ADDRX
" idx %d\n",
8058 env
->msr
, env
->spr
[SPR_HID0
], env
->hflags
, env
->mmu_idx
);
8059 #if !defined(NO_TIMER_DUMP)
8060 cpu_fprintf(f
, "TB %08x %08x "
8061 #if !defined(CONFIG_USER_ONLY)
8065 cpu_ppc_load_tbu(env
), cpu_ppc_load_tbl(env
)
8066 #if !defined(CONFIG_USER_ONLY)
8067 , cpu_ppc_load_decr(env
)
8071 for (i
= 0; i
< 32; i
++) {
8072 if ((i
& (RGPL
- 1)) == 0)
8073 cpu_fprintf(f
, "GPR%02d", i
);
8074 cpu_fprintf(f
, " " REGX
, ppc_dump_gpr(env
, i
));
8075 if ((i
& (RGPL
- 1)) == (RGPL
- 1))
8076 cpu_fprintf(f
, "\n");
8078 cpu_fprintf(f
, "CR ");
8079 for (i
= 0; i
< 8; i
++)
8080 cpu_fprintf(f
, "%01x", env
->crf
[i
]);
8081 cpu_fprintf(f
, " [");
8082 for (i
= 0; i
< 8; i
++) {
8084 if (env
->crf
[i
] & 0x08)
8086 else if (env
->crf
[i
] & 0x04)
8088 else if (env
->crf
[i
] & 0x02)
8090 cpu_fprintf(f
, " %c%c", a
, env
->crf
[i
] & 0x01 ? 'O' : ' ');
8092 cpu_fprintf(f
, " ] RES " ADDRX
"\n", env
->reserve
);
8093 for (i
= 0; i
< 32; i
++) {
8094 if ((i
& (RFPL
- 1)) == 0)
8095 cpu_fprintf(f
, "FPR%02d", i
);
8096 cpu_fprintf(f
, " %016" PRIx64
, *((uint64_t *)&env
->fpr
[i
]));
8097 if ((i
& (RFPL
- 1)) == (RFPL
- 1))
8098 cpu_fprintf(f
, "\n");
8100 cpu_fprintf(f
, "FPSCR %08x\n", env
->fpscr
);
8101 #if !defined(CONFIG_USER_ONLY)
8102 cpu_fprintf(f
, "SRR0 " ADDRX
" SRR1 " ADDRX
" SDR1 " ADDRX
"\n",
8103 env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
], env
->sdr1
);
8110 void cpu_dump_statistics (CPUState
*env
, FILE*f
,
8111 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
8114 #if defined(DO_PPC_STATISTICS)
8115 opc_handler_t
**t1
, **t2
, **t3
, *handler
;
8119 for (op1
= 0; op1
< 64; op1
++) {
8121 if (is_indirect_opcode(handler
)) {
8122 t2
= ind_table(handler
);
8123 for (op2
= 0; op2
< 32; op2
++) {
8125 if (is_indirect_opcode(handler
)) {
8126 t3
= ind_table(handler
);
8127 for (op3
= 0; op3
< 32; op3
++) {
8129 if (handler
->count
== 0)
8131 cpu_fprintf(f
, "%02x %02x %02x (%02x %04d) %16s: "
8133 op1
, op2
, op3
, op1
, (op3
<< 5) | op2
,
8135 handler
->count
, handler
->count
);
8138 if (handler
->count
== 0)
8140 cpu_fprintf(f
, "%02x %02x (%02x %04d) %16s: "
8142 op1
, op2
, op1
, op2
, handler
->oname
,
8143 handler
->count
, handler
->count
);
8147 if (handler
->count
== 0)
8149 cpu_fprintf(f
, "%02x (%02x ) %16s: %016llx %lld\n",
8150 op1
, op1
, handler
->oname
,
8151 handler
->count
, handler
->count
);
8157 /*****************************************************************************/
8158 static always_inline
void gen_intermediate_code_internal (CPUState
*env
,
8159 TranslationBlock
*tb
,
8162 DisasContext ctx
, *ctxp
= &ctx
;
8163 opc_handler_t
**table
, *handler
;
8164 target_ulong pc_start
;
8165 uint16_t *gen_opc_end
;
8172 gen_opc_end
= gen_opc_buf
+ OPC_MAX_SIZE
;
8175 ctx
.exception
= POWERPC_EXCP_NONE
;
8176 ctx
.spr_cb
= env
->spr_cb
;
8177 ctx
.mem_idx
= env
->mmu_idx
;
8178 ctx
.access_type
= -1;
8179 ctx
.le_mode
= env
->hflags
& (1 << MSR_LE
) ? 1 : 0;
8180 #if defined(TARGET_PPC64)
8181 ctx
.sf_mode
= msr_sf
;
8183 ctx
.fpu_enabled
= msr_fp
;
8184 if ((env
->flags
& POWERPC_FLAG_SPE
) && msr_spe
)
8185 ctx
.spe_enabled
= msr_spe
;
8187 ctx
.spe_enabled
= 0;
8188 if ((env
->flags
& POWERPC_FLAG_VRE
) && msr_vr
)
8189 ctx
.altivec_enabled
= msr_vr
;
8191 ctx
.altivec_enabled
= 0;
8192 if ((env
->flags
& POWERPC_FLAG_SE
) && msr_se
)
8193 ctx
.singlestep_enabled
= CPU_SINGLE_STEP
;
8195 ctx
.singlestep_enabled
= 0;
8196 if ((env
->flags
& POWERPC_FLAG_BE
) && msr_be
)
8197 ctx
.singlestep_enabled
|= CPU_BRANCH_STEP
;
8198 if (unlikely(env
->singlestep_enabled
))
8199 ctx
.singlestep_enabled
|= GDBSTUB_SINGLE_STEP
;
8200 #if defined (DO_SINGLE_STEP) && 0
8201 /* Single step trace mode */
8205 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
8207 max_insns
= CF_COUNT_MASK
;
8210 /* Set env in case of segfault during code fetch */
8211 while (ctx
.exception
== POWERPC_EXCP_NONE
&& gen_opc_ptr
< gen_opc_end
) {
8212 if (unlikely(!TAILQ_EMPTY(&env
->breakpoints
))) {
8213 TAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
8214 if (bp
->pc
== ctx
.nip
) {
8215 gen_debug_exception(ctxp
);
8220 if (unlikely(search_pc
)) {
8221 j
= gen_opc_ptr
- gen_opc_buf
;
8225 gen_opc_instr_start
[lj
++] = 0;
8226 gen_opc_pc
[lj
] = ctx
.nip
;
8227 gen_opc_instr_start
[lj
] = 1;
8228 gen_opc_icount
[lj
] = num_insns
;
8231 LOG_DISAS("----------------\n");
8232 LOG_DISAS("nip=" ADDRX
" super=%d ir=%d\n",
8233 ctx
.nip
, ctx
.mem_idx
, (int)msr_ir
);
8234 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
8236 if (unlikely(ctx
.le_mode
)) {
8237 ctx
.opcode
= bswap32(ldl_code(ctx
.nip
));
8239 ctx
.opcode
= ldl_code(ctx
.nip
);
8241 LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
8242 ctx
.opcode
, opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8243 opc3(ctx
.opcode
), little_endian
? "little" : "big");
8245 table
= env
->opcodes
;
8247 handler
= table
[opc1(ctx
.opcode
)];
8248 if (is_indirect_opcode(handler
)) {
8249 table
= ind_table(handler
);
8250 handler
= table
[opc2(ctx
.opcode
)];
8251 if (is_indirect_opcode(handler
)) {
8252 table
= ind_table(handler
);
8253 handler
= table
[opc3(ctx
.opcode
)];
8256 /* Is opcode *REALLY* valid ? */
8257 if (unlikely(handler
->handler
== &gen_invalid
)) {
8258 if (qemu_log_enabled()) {
8259 qemu_log("invalid/unsupported opcode: "
8260 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
8261 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8262 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
8264 printf("invalid/unsupported opcode: "
8265 "%02x - %02x - %02x (%08x) " ADDRX
" %d\n",
8266 opc1(ctx
.opcode
), opc2(ctx
.opcode
),
8267 opc3(ctx
.opcode
), ctx
.opcode
, ctx
.nip
- 4, (int)msr_ir
);
8270 if (unlikely((ctx
.opcode
& handler
->inval
) != 0)) {
8271 if (qemu_log_enabled()) {
8272 qemu_log("invalid bits: %08x for opcode: "
8273 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
8274 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
8275 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
8276 ctx
.opcode
, ctx
.nip
- 4);
8278 printf("invalid bits: %08x for opcode: "
8279 "%02x - %02x - %02x (%08x) " ADDRX
"\n",
8280 ctx
.opcode
& handler
->inval
, opc1(ctx
.opcode
),
8281 opc2(ctx
.opcode
), opc3(ctx
.opcode
),
8282 ctx
.opcode
, ctx
.nip
- 4);
8284 gen_inval_exception(ctxp
, POWERPC_EXCP_INVAL_INVAL
);
8288 (*(handler
->handler
))(&ctx
);
8289 #if defined(DO_PPC_STATISTICS)
8292 /* Check trace mode exceptions */
8293 if (unlikely(ctx
.singlestep_enabled
& CPU_SINGLE_STEP
&&
8294 (ctx
.nip
<= 0x100 || ctx
.nip
> 0xF00) &&
8295 ctx
.exception
!= POWERPC_SYSCALL
&&
8296 ctx
.exception
!= POWERPC_EXCP_TRAP
&&
8297 ctx
.exception
!= POWERPC_EXCP_BRANCH
)) {
8298 gen_exception(ctxp
, POWERPC_EXCP_TRACE
);
8299 } else if (unlikely(((ctx
.nip
& (TARGET_PAGE_SIZE
- 1)) == 0) ||
8300 (env
->singlestep_enabled
) ||
8301 num_insns
>= max_insns
)) {
8302 /* if we reach a page boundary or are single stepping, stop
8307 #if defined (DO_SINGLE_STEP)
8311 if (tb
->cflags
& CF_LAST_IO
)
8313 if (ctx
.exception
== POWERPC_EXCP_NONE
) {
8314 gen_goto_tb(&ctx
, 0, ctx
.nip
);
8315 } else if (ctx
.exception
!= POWERPC_EXCP_BRANCH
) {
8316 if (unlikely(env
->singlestep_enabled
)) {
8317 gen_debug_exception(ctxp
);
8319 /* Generate the return instruction */
8322 gen_icount_end(tb
, num_insns
);
8323 *gen_opc_ptr
= INDEX_op_end
;
8324 if (unlikely(search_pc
)) {
8325 j
= gen_opc_ptr
- gen_opc_buf
;
8328 gen_opc_instr_start
[lj
++] = 0;
8330 tb
->size
= ctx
.nip
- pc_start
;
8331 tb
->icount
= num_insns
;
8333 #if defined(DEBUG_DISAS)
8334 qemu_log_mask(CPU_LOG_TB_CPU
, "---------------- excp: %04x\n", ctx
.exception
);
8335 log_cpu_state_mask(CPU_LOG_TB_CPU
, env
, 0);
8336 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
8338 flags
= env
->bfd_mach
;
8339 flags
|= ctx
.le_mode
<< 16;
8340 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
8341 log_target_disas(pc_start
, ctx
.nip
- pc_start
, flags
);
8347 void gen_intermediate_code (CPUState
*env
, struct TranslationBlock
*tb
)
8349 gen_intermediate_code_internal(env
, tb
, 0);
8352 void gen_intermediate_code_pc (CPUState
*env
, struct TranslationBlock
*tb
)
8354 gen_intermediate_code_internal(env
, tb
, 1);
8357 void gen_pc_load(CPUState
*env
, TranslationBlock
*tb
,
8358 unsigned long searched_pc
, int pc_pos
, void *puc
)
8360 env
->nip
= gen_opc_pc
[pc_pos
];