Attached patch makes NetBSD use the native bswap functions
[qemu/mini2440/sniper_sniper_test.git] / target-ppc / translate.c
blob8312ccb65b920bae49f0e7e83212f8377075db3e
1 /*
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <stdarg.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24 #include <inttypes.h>
26 #include "cpu.h"
27 #include "exec-all.h"
28 #include "disas.h"
29 #include "tcg-op.h"
30 #include "qemu-common.h"
32 #include "helper.h"
33 #define GEN_HELPER 1
34 #include "helper.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
44 //#define OPTIMIZE_FPRF_UPDATE
46 /*****************************************************************************/
47 /* Code translation helpers */
49 /* global register indexes */
50 static TCGv_ptr cpu_env;
51 static char cpu_reg_names[10*3 + 22*4 /* GPR */
52 #if !defined(TARGET_PPC64)
53 + 10*4 + 22*5 /* SPE GPRh */
54 #endif
55 + 10*4 + 22*5 /* FPR */
56 + 2*(10*6 + 22*7) /* AVRh, AVRl */
57 + 8*5 /* CRF */];
58 static TCGv cpu_gpr[32];
59 #if !defined(TARGET_PPC64)
60 static TCGv cpu_gprh[32];
61 #endif
62 static TCGv_i64 cpu_fpr[32];
63 static TCGv_i64 cpu_avrh[32], cpu_avrl[32];
64 static TCGv_i32 cpu_crf[8];
65 static TCGv cpu_nip;
66 static TCGv cpu_ctr;
67 static TCGv cpu_lr;
68 static TCGv cpu_xer;
69 static TCGv cpu_reserve;
70 static TCGv_i32 cpu_fpscr;
71 static TCGv_i32 cpu_access_type;
73 /* dyngen register indexes */
74 static TCGv cpu_T[3];
76 #include "gen-icount.h"
78 void ppc_translate_init(void)
80 int i;
81 char* p;
82 static int done_init = 0;
84 if (done_init)
85 return;
87 cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
88 #if TARGET_LONG_BITS > HOST_LONG_BITS
89 cpu_T[0] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t0), "T0");
90 cpu_T[1] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t1), "T1");
91 cpu_T[2] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t2), "T2");
92 #else
93 cpu_T[0] = tcg_global_reg_new(TCG_AREG1, "T0");
94 cpu_T[1] = tcg_global_reg_new(TCG_AREG2, "T1");
95 #ifdef HOST_I386
96 /* XXX: This is a temporary workaround for i386.
97 * On i386 qemu_st32 runs out of registers.
98 * The proper fix is to remove cpu_T.
100 cpu_T[2] = tcg_global_mem_new(TCG_AREG0, offsetof(CPUState, t2), "T2");
101 #else
102 cpu_T[2] = tcg_global_reg_new(TCG_AREG3, "T2");
103 #endif
104 #endif
106 p = cpu_reg_names;
108 for (i = 0; i < 8; i++) {
109 sprintf(p, "crf%d", i);
110 cpu_crf[i] = tcg_global_mem_new_i32(TCG_AREG0,
111 offsetof(CPUState, crf[i]), p);
112 p += 5;
115 for (i = 0; i < 32; i++) {
116 sprintf(p, "r%d", i);
117 cpu_gpr[i] = tcg_global_mem_new(TCG_AREG0,
118 offsetof(CPUState, gpr[i]), p);
119 p += (i < 10) ? 3 : 4;
120 #if !defined(TARGET_PPC64)
121 sprintf(p, "r%dH", i);
122 cpu_gprh[i] = tcg_global_mem_new_i32(TCG_AREG0,
123 offsetof(CPUState, gprh[i]), p);
124 p += (i < 10) ? 4 : 5;
125 #endif
127 sprintf(p, "fp%d", i);
128 cpu_fpr[i] = tcg_global_mem_new_i64(TCG_AREG0,
129 offsetof(CPUState, fpr[i]), p);
130 p += (i < 10) ? 4 : 5;
132 sprintf(p, "avr%dH", i);
133 #ifdef WORDS_BIGENDIAN
134 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
135 offsetof(CPUState, avr[i].u64[0]), p);
136 #else
137 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
138 offsetof(CPUState, avr[i].u64[1]), p);
139 #endif
140 p += (i < 10) ? 6 : 7;
142 sprintf(p, "avr%dL", i);
143 #ifdef WORDS_BIGENDIAN
144 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
145 offsetof(CPUState, avr[i].u64[1]), p);
146 #else
147 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
148 offsetof(CPUState, avr[i].u64[0]), p);
149 #endif
150 p += (i < 10) ? 6 : 7;
153 cpu_nip = tcg_global_mem_new(TCG_AREG0,
154 offsetof(CPUState, nip), "nip");
156 cpu_ctr = tcg_global_mem_new(TCG_AREG0,
157 offsetof(CPUState, ctr), "ctr");
159 cpu_lr = tcg_global_mem_new(TCG_AREG0,
160 offsetof(CPUState, lr), "lr");
162 cpu_xer = tcg_global_mem_new(TCG_AREG0,
163 offsetof(CPUState, xer), "xer");
165 cpu_reserve = tcg_global_mem_new(TCG_AREG0,
166 offsetof(CPUState, reserve), "reserve");
168 cpu_fpscr = tcg_global_mem_new_i32(TCG_AREG0,
169 offsetof(CPUState, fpscr), "fpscr");
171 cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0,
172 offsetof(CPUState, access_type), "access_type");
174 /* register helpers */
175 #define GEN_HELPER 2
176 #include "helper.h"
178 done_init = 1;
181 #if defined(OPTIMIZE_FPRF_UPDATE)
182 static uint16_t *gen_fprf_buf[OPC_BUF_SIZE];
183 static uint16_t **gen_fprf_ptr;
184 #endif
186 /* internal defines */
187 typedef struct DisasContext {
188 struct TranslationBlock *tb;
189 target_ulong nip;
190 uint32_t opcode;
191 uint32_t exception;
192 /* Routine used to access memory */
193 int mem_idx;
194 /* Translation flags */
195 #if !defined(CONFIG_USER_ONLY)
196 int supervisor;
197 #endif
198 #if defined(TARGET_PPC64)
199 int sf_mode;
200 #endif
201 int fpu_enabled;
202 int altivec_enabled;
203 int spe_enabled;
204 ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
205 int singlestep_enabled;
206 } DisasContext;
208 struct opc_handler_t {
209 /* invalid bits */
210 uint32_t inval;
211 /* instruction type */
212 uint64_t type;
213 /* handler */
214 void (*handler)(DisasContext *ctx);
215 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
216 const char *oname;
217 #endif
218 #if defined(DO_PPC_STATISTICS)
219 uint64_t count;
220 #endif
223 static always_inline void gen_reset_fpstatus (void)
225 #ifdef CONFIG_SOFTFLOAT
226 gen_op_reset_fpstatus();
227 #endif
230 static always_inline void gen_compute_fprf (TCGv_i64 arg, int set_fprf, int set_rc)
232 TCGv_i32 t0 = tcg_temp_new_i32();
234 if (set_fprf != 0) {
235 /* This case might be optimized later */
236 #if defined(OPTIMIZE_FPRF_UPDATE)
237 *gen_fprf_ptr++ = gen_opc_ptr;
238 #endif
239 tcg_gen_movi_i32(t0, 1);
240 gen_helper_compute_fprf(t0, arg, t0);
241 if (unlikely(set_rc)) {
242 tcg_gen_mov_i32(cpu_crf[1], t0);
244 gen_helper_float_check_status();
245 } else if (unlikely(set_rc)) {
246 /* We always need to compute fpcc */
247 tcg_gen_movi_i32(t0, 0);
248 gen_helper_compute_fprf(t0, arg, t0);
249 tcg_gen_mov_i32(cpu_crf[1], t0);
250 if (set_fprf)
251 gen_helper_float_check_status();
254 tcg_temp_free_i32(t0);
257 static always_inline void gen_optimize_fprf (void)
259 #if defined(OPTIMIZE_FPRF_UPDATE)
260 uint16_t **ptr;
262 for (ptr = gen_fprf_buf; ptr != (gen_fprf_ptr - 1); ptr++)
263 *ptr = INDEX_op_nop1;
264 gen_fprf_ptr = gen_fprf_buf;
265 #endif
268 static always_inline void gen_set_access_type(int access_type)
270 tcg_gen_movi_i32(cpu_access_type, access_type);
273 static always_inline void gen_update_nip (DisasContext *ctx, target_ulong nip)
275 #if defined(TARGET_PPC64)
276 if (ctx->sf_mode)
277 tcg_gen_movi_tl(cpu_nip, nip);
278 else
279 #endif
280 tcg_gen_movi_tl(cpu_nip, (uint32_t)nip);
283 #define GEN_EXCP(ctx, excp, error) \
284 do { \
285 TCGv_i32 t0 = tcg_const_i32(excp); \
286 TCGv_i32 t1 = tcg_const_i32(error); \
287 if ((ctx)->exception == POWERPC_EXCP_NONE) { \
288 gen_update_nip(ctx, (ctx)->nip); \
290 gen_helper_raise_exception_err(t0, t1); \
291 tcg_temp_free_i32(t0); \
292 tcg_temp_free_i32(t1); \
293 ctx->exception = (excp); \
294 } while (0)
296 #define GEN_EXCP_INVAL(ctx) \
297 GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM, \
298 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_INVAL)
300 #define GEN_EXCP_PRIVOPC(ctx) \
301 GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM, \
302 POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_OPC)
304 #define GEN_EXCP_PRIVREG(ctx) \
305 GEN_EXCP((ctx), POWERPC_EXCP_PROGRAM, \
306 POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG)
308 #define GEN_EXCP_NO_FP(ctx) \
309 GEN_EXCP(ctx, POWERPC_EXCP_FPU, 0)
311 #define GEN_EXCP_NO_AP(ctx) \
312 GEN_EXCP(ctx, POWERPC_EXCP_APU, 0)
314 #define GEN_EXCP_NO_VR(ctx) \
315 GEN_EXCP(ctx, POWERPC_EXCP_VPU, 0)
317 /* Stop translation */
318 static always_inline void GEN_STOP (DisasContext *ctx)
320 gen_update_nip(ctx, ctx->nip);
321 ctx->exception = POWERPC_EXCP_STOP;
324 /* No need to update nip here, as execution flow will change */
325 static always_inline void GEN_SYNC (DisasContext *ctx)
327 ctx->exception = POWERPC_EXCP_SYNC;
330 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
331 static void gen_##name (DisasContext *ctx); \
332 GEN_OPCODE(name, opc1, opc2, opc3, inval, type); \
333 static void gen_##name (DisasContext *ctx)
335 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
336 static void gen_##name (DisasContext *ctx); \
337 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type); \
338 static void gen_##name (DisasContext *ctx)
340 typedef struct opcode_t {
341 unsigned char opc1, opc2, opc3;
342 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
343 unsigned char pad[5];
344 #else
345 unsigned char pad[1];
346 #endif
347 opc_handler_t handler;
348 const char *oname;
349 } opcode_t;
351 /*****************************************************************************/
352 /*** Instruction decoding ***/
353 #define EXTRACT_HELPER(name, shift, nb) \
354 static always_inline uint32_t name (uint32_t opcode) \
356 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
359 #define EXTRACT_SHELPER(name, shift, nb) \
360 static always_inline int32_t name (uint32_t opcode) \
362 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
365 /* Opcode part 1 */
366 EXTRACT_HELPER(opc1, 26, 6);
367 /* Opcode part 2 */
368 EXTRACT_HELPER(opc2, 1, 5);
369 /* Opcode part 3 */
370 EXTRACT_HELPER(opc3, 6, 5);
371 /* Update Cr0 flags */
372 EXTRACT_HELPER(Rc, 0, 1);
373 /* Destination */
374 EXTRACT_HELPER(rD, 21, 5);
375 /* Source */
376 EXTRACT_HELPER(rS, 21, 5);
377 /* First operand */
378 EXTRACT_HELPER(rA, 16, 5);
379 /* Second operand */
380 EXTRACT_HELPER(rB, 11, 5);
381 /* Third operand */
382 EXTRACT_HELPER(rC, 6, 5);
383 /*** Get CRn ***/
384 EXTRACT_HELPER(crfD, 23, 3);
385 EXTRACT_HELPER(crfS, 18, 3);
386 EXTRACT_HELPER(crbD, 21, 5);
387 EXTRACT_HELPER(crbA, 16, 5);
388 EXTRACT_HELPER(crbB, 11, 5);
389 /* SPR / TBL */
390 EXTRACT_HELPER(_SPR, 11, 10);
391 static always_inline uint32_t SPR (uint32_t opcode)
393 uint32_t sprn = _SPR(opcode);
395 return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
397 /*** Get constants ***/
398 EXTRACT_HELPER(IMM, 12, 8);
399 /* 16 bits signed immediate value */
400 EXTRACT_SHELPER(SIMM, 0, 16);
401 /* 16 bits unsigned immediate value */
402 EXTRACT_HELPER(UIMM, 0, 16);
403 /* Bit count */
404 EXTRACT_HELPER(NB, 11, 5);
405 /* Shift count */
406 EXTRACT_HELPER(SH, 11, 5);
407 /* Mask start */
408 EXTRACT_HELPER(MB, 6, 5);
409 /* Mask end */
410 EXTRACT_HELPER(ME, 1, 5);
411 /* Trap operand */
412 EXTRACT_HELPER(TO, 21, 5);
414 EXTRACT_HELPER(CRM, 12, 8);
415 EXTRACT_HELPER(FM, 17, 8);
416 EXTRACT_HELPER(SR, 16, 4);
417 EXTRACT_HELPER(FPIMM, 12, 4);
419 /*** Jump target decoding ***/
420 /* Displacement */
421 EXTRACT_SHELPER(d, 0, 16);
422 /* Immediate address */
423 static always_inline target_ulong LI (uint32_t opcode)
425 return (opcode >> 0) & 0x03FFFFFC;
428 static always_inline uint32_t BD (uint32_t opcode)
430 return (opcode >> 0) & 0xFFFC;
433 EXTRACT_HELPER(BO, 21, 5);
434 EXTRACT_HELPER(BI, 16, 5);
435 /* Absolute/relative address */
436 EXTRACT_HELPER(AA, 1, 1);
437 /* Link */
438 EXTRACT_HELPER(LK, 0, 1);
440 /* Create a mask between <start> and <end> bits */
441 static always_inline target_ulong MASK (uint32_t start, uint32_t end)
443 target_ulong ret;
445 #if defined(TARGET_PPC64)
446 if (likely(start == 0)) {
447 ret = UINT64_MAX << (63 - end);
448 } else if (likely(end == 63)) {
449 ret = UINT64_MAX >> start;
451 #else
452 if (likely(start == 0)) {
453 ret = UINT32_MAX << (31 - end);
454 } else if (likely(end == 31)) {
455 ret = UINT32_MAX >> start;
457 #endif
458 else {
459 ret = (((target_ulong)(-1ULL)) >> (start)) ^
460 (((target_ulong)(-1ULL) >> (end)) >> 1);
461 if (unlikely(start > end))
462 return ~ret;
465 return ret;
468 /*****************************************************************************/
469 /* PowerPC Instructions types definitions */
470 enum {
471 PPC_NONE = 0x0000000000000000ULL,
472 /* PowerPC base instructions set */
473 PPC_INSNS_BASE = 0x0000000000000001ULL,
474 /* integer operations instructions */
475 #define PPC_INTEGER PPC_INSNS_BASE
476 /* flow control instructions */
477 #define PPC_FLOW PPC_INSNS_BASE
478 /* virtual memory instructions */
479 #define PPC_MEM PPC_INSNS_BASE
480 /* ld/st with reservation instructions */
481 #define PPC_RES PPC_INSNS_BASE
482 /* spr/msr access instructions */
483 #define PPC_MISC PPC_INSNS_BASE
484 /* Deprecated instruction sets */
485 /* Original POWER instruction set */
486 PPC_POWER = 0x0000000000000002ULL,
487 /* POWER2 instruction set extension */
488 PPC_POWER2 = 0x0000000000000004ULL,
489 /* Power RTC support */
490 PPC_POWER_RTC = 0x0000000000000008ULL,
491 /* Power-to-PowerPC bridge (601) */
492 PPC_POWER_BR = 0x0000000000000010ULL,
493 /* 64 bits PowerPC instruction set */
494 PPC_64B = 0x0000000000000020ULL,
495 /* New 64 bits extensions (PowerPC 2.0x) */
496 PPC_64BX = 0x0000000000000040ULL,
497 /* 64 bits hypervisor extensions */
498 PPC_64H = 0x0000000000000080ULL,
499 /* New wait instruction (PowerPC 2.0x) */
500 PPC_WAIT = 0x0000000000000100ULL,
501 /* Time base mftb instruction */
502 PPC_MFTB = 0x0000000000000200ULL,
504 /* Fixed-point unit extensions */
505 /* PowerPC 602 specific */
506 PPC_602_SPEC = 0x0000000000000400ULL,
507 /* isel instruction */
508 PPC_ISEL = 0x0000000000000800ULL,
509 /* popcntb instruction */
510 PPC_POPCNTB = 0x0000000000001000ULL,
511 /* string load / store */
512 PPC_STRING = 0x0000000000002000ULL,
514 /* Floating-point unit extensions */
515 /* Optional floating point instructions */
516 PPC_FLOAT = 0x0000000000010000ULL,
517 /* New floating-point extensions (PowerPC 2.0x) */
518 PPC_FLOAT_EXT = 0x0000000000020000ULL,
519 PPC_FLOAT_FSQRT = 0x0000000000040000ULL,
520 PPC_FLOAT_FRES = 0x0000000000080000ULL,
521 PPC_FLOAT_FRSQRTE = 0x0000000000100000ULL,
522 PPC_FLOAT_FRSQRTES = 0x0000000000200000ULL,
523 PPC_FLOAT_FSEL = 0x0000000000400000ULL,
524 PPC_FLOAT_STFIWX = 0x0000000000800000ULL,
526 /* Vector/SIMD extensions */
527 /* Altivec support */
528 PPC_ALTIVEC = 0x0000000001000000ULL,
529 /* PowerPC 2.03 SPE extension */
530 PPC_SPE = 0x0000000002000000ULL,
531 /* PowerPC 2.03 SPE floating-point extension */
532 PPC_SPEFPU = 0x0000000004000000ULL,
534 /* Optional memory control instructions */
535 PPC_MEM_TLBIA = 0x0000000010000000ULL,
536 PPC_MEM_TLBIE = 0x0000000020000000ULL,
537 PPC_MEM_TLBSYNC = 0x0000000040000000ULL,
538 /* sync instruction */
539 PPC_MEM_SYNC = 0x0000000080000000ULL,
540 /* eieio instruction */
541 PPC_MEM_EIEIO = 0x0000000100000000ULL,
543 /* Cache control instructions */
544 PPC_CACHE = 0x0000000200000000ULL,
545 /* icbi instruction */
546 PPC_CACHE_ICBI = 0x0000000400000000ULL,
547 /* dcbz instruction with fixed cache line size */
548 PPC_CACHE_DCBZ = 0x0000000800000000ULL,
549 /* dcbz instruction with tunable cache line size */
550 PPC_CACHE_DCBZT = 0x0000001000000000ULL,
551 /* dcba instruction */
552 PPC_CACHE_DCBA = 0x0000002000000000ULL,
553 /* Freescale cache locking instructions */
554 PPC_CACHE_LOCK = 0x0000004000000000ULL,
556 /* MMU related extensions */
557 /* external control instructions */
558 PPC_EXTERN = 0x0000010000000000ULL,
559 /* segment register access instructions */
560 PPC_SEGMENT = 0x0000020000000000ULL,
561 /* PowerPC 6xx TLB management instructions */
562 PPC_6xx_TLB = 0x0000040000000000ULL,
563 /* PowerPC 74xx TLB management instructions */
564 PPC_74xx_TLB = 0x0000080000000000ULL,
565 /* PowerPC 40x TLB management instructions */
566 PPC_40x_TLB = 0x0000100000000000ULL,
567 /* segment register access instructions for PowerPC 64 "bridge" */
568 PPC_SEGMENT_64B = 0x0000200000000000ULL,
569 /* SLB management */
570 PPC_SLBI = 0x0000400000000000ULL,
572 /* Embedded PowerPC dedicated instructions */
573 PPC_WRTEE = 0x0001000000000000ULL,
574 /* PowerPC 40x exception model */
575 PPC_40x_EXCP = 0x0002000000000000ULL,
576 /* PowerPC 405 Mac instructions */
577 PPC_405_MAC = 0x0004000000000000ULL,
578 /* PowerPC 440 specific instructions */
579 PPC_440_SPEC = 0x0008000000000000ULL,
580 /* BookE (embedded) PowerPC specification */
581 PPC_BOOKE = 0x0010000000000000ULL,
582 /* mfapidi instruction */
583 PPC_MFAPIDI = 0x0020000000000000ULL,
584 /* tlbiva instruction */
585 PPC_TLBIVA = 0x0040000000000000ULL,
586 /* tlbivax instruction */
587 PPC_TLBIVAX = 0x0080000000000000ULL,
588 /* PowerPC 4xx dedicated instructions */
589 PPC_4xx_COMMON = 0x0100000000000000ULL,
590 /* PowerPC 40x ibct instructions */
591 PPC_40x_ICBT = 0x0200000000000000ULL,
592 /* rfmci is not implemented in all BookE PowerPC */
593 PPC_RFMCI = 0x0400000000000000ULL,
594 /* rfdi instruction */
595 PPC_RFDI = 0x0800000000000000ULL,
596 /* DCR accesses */
597 PPC_DCR = 0x1000000000000000ULL,
598 /* DCR extended accesse */
599 PPC_DCRX = 0x2000000000000000ULL,
600 /* user-mode DCR access, implemented in PowerPC 460 */
601 PPC_DCRUX = 0x4000000000000000ULL,
604 /*****************************************************************************/
605 /* PowerPC instructions table */
606 #if HOST_LONG_BITS == 64
607 #define OPC_ALIGN 8
608 #else
609 #define OPC_ALIGN 4
610 #endif
611 #if defined(__APPLE__)
612 #define OPCODES_SECTION \
613 __attribute__ ((section("__TEXT,__opcodes"), unused, aligned (OPC_ALIGN) ))
614 #else
615 #define OPCODES_SECTION \
616 __attribute__ ((section(".opcodes"), unused, aligned (OPC_ALIGN) ))
617 #endif
619 #if defined(DO_PPC_STATISTICS)
620 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
621 OPCODES_SECTION opcode_t opc_##name = { \
622 .opc1 = op1, \
623 .opc2 = op2, \
624 .opc3 = op3, \
625 .pad = { 0, }, \
626 .handler = { \
627 .inval = invl, \
628 .type = _typ, \
629 .handler = &gen_##name, \
630 .oname = stringify(name), \
631 }, \
632 .oname = stringify(name), \
634 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
635 OPCODES_SECTION opcode_t opc_##name = { \
636 .opc1 = op1, \
637 .opc2 = op2, \
638 .opc3 = op3, \
639 .pad = { 0, }, \
640 .handler = { \
641 .inval = invl, \
642 .type = _typ, \
643 .handler = &gen_##name, \
644 .oname = onam, \
645 }, \
646 .oname = onam, \
648 #else
649 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
650 OPCODES_SECTION opcode_t opc_##name = { \
651 .opc1 = op1, \
652 .opc2 = op2, \
653 .opc3 = op3, \
654 .pad = { 0, }, \
655 .handler = { \
656 .inval = invl, \
657 .type = _typ, \
658 .handler = &gen_##name, \
659 }, \
660 .oname = stringify(name), \
662 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
663 OPCODES_SECTION opcode_t opc_##name = { \
664 .opc1 = op1, \
665 .opc2 = op2, \
666 .opc3 = op3, \
667 .pad = { 0, }, \
668 .handler = { \
669 .inval = invl, \
670 .type = _typ, \
671 .handler = &gen_##name, \
672 }, \
673 .oname = onam, \
675 #endif
677 #define GEN_OPCODE_MARK(name) \
678 OPCODES_SECTION opcode_t opc_##name = { \
679 .opc1 = 0xFF, \
680 .opc2 = 0xFF, \
681 .opc3 = 0xFF, \
682 .pad = { 0, }, \
683 .handler = { \
684 .inval = 0x00000000, \
685 .type = 0x00, \
686 .handler = NULL, \
687 }, \
688 .oname = stringify(name), \
691 /* SPR load/store helpers */
692 static always_inline void gen_load_spr(TCGv t, int reg)
694 tcg_gen_ld_tl(t, cpu_env, offsetof(CPUState, spr[reg]));
697 static always_inline void gen_store_spr(int reg, TCGv t)
699 tcg_gen_st_tl(t, cpu_env, offsetof(CPUState, spr[reg]));
702 /* Start opcode list */
703 GEN_OPCODE_MARK(start);
705 /* Invalid instruction */
706 GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE)
708 GEN_EXCP_INVAL(ctx);
711 static opc_handler_t invalid_handler = {
712 .inval = 0xFFFFFFFF,
713 .type = PPC_NONE,
714 .handler = gen_invalid,
717 /*** Integer comparison ***/
719 static always_inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf)
721 int l1, l2, l3;
723 tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_xer);
724 tcg_gen_shri_i32(cpu_crf[crf], cpu_crf[crf], XER_SO);
725 tcg_gen_andi_i32(cpu_crf[crf], cpu_crf[crf], 1);
727 l1 = gen_new_label();
728 l2 = gen_new_label();
729 l3 = gen_new_label();
730 if (s) {
731 tcg_gen_brcond_tl(TCG_COND_LT, arg0, arg1, l1);
732 tcg_gen_brcond_tl(TCG_COND_GT, arg0, arg1, l2);
733 } else {
734 tcg_gen_brcond_tl(TCG_COND_LTU, arg0, arg1, l1);
735 tcg_gen_brcond_tl(TCG_COND_GTU, arg0, arg1, l2);
737 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_EQ);
738 tcg_gen_br(l3);
739 gen_set_label(l1);
740 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_LT);
741 tcg_gen_br(l3);
742 gen_set_label(l2);
743 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_GT);
744 gen_set_label(l3);
747 static always_inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf)
749 TCGv t0 = tcg_const_local_tl(arg1);
750 gen_op_cmp(arg0, t0, s, crf);
751 tcg_temp_free(t0);
754 #if defined(TARGET_PPC64)
755 static always_inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf)
757 TCGv t0, t1;
758 t0 = tcg_temp_local_new();
759 t1 = tcg_temp_local_new();
760 if (s) {
761 tcg_gen_ext32s_tl(t0, arg0);
762 tcg_gen_ext32s_tl(t1, arg1);
763 } else {
764 tcg_gen_ext32u_tl(t0, arg0);
765 tcg_gen_ext32u_tl(t1, arg1);
767 gen_op_cmp(t0, t1, s, crf);
768 tcg_temp_free(t1);
769 tcg_temp_free(t0);
772 static always_inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf)
774 TCGv t0 = tcg_const_local_tl(arg1);
775 gen_op_cmp32(arg0, t0, s, crf);
776 tcg_temp_free(t0);
778 #endif
780 static always_inline void gen_set_Rc0 (DisasContext *ctx, TCGv reg)
782 #if defined(TARGET_PPC64)
783 if (!(ctx->sf_mode))
784 gen_op_cmpi32(reg, 0, 1, 0);
785 else
786 #endif
787 gen_op_cmpi(reg, 0, 1, 0);
790 /* cmp */
791 GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER)
793 #if defined(TARGET_PPC64)
794 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
795 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
796 1, crfD(ctx->opcode));
797 else
798 #endif
799 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
800 1, crfD(ctx->opcode));
803 /* cmpi */
804 GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
806 #if defined(TARGET_PPC64)
807 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
808 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
809 1, crfD(ctx->opcode));
810 else
811 #endif
812 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
813 1, crfD(ctx->opcode));
816 /* cmpl */
817 GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER)
819 #if defined(TARGET_PPC64)
820 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
821 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
822 0, crfD(ctx->opcode));
823 else
824 #endif
825 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
826 0, crfD(ctx->opcode));
829 /* cmpli */
830 GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
832 #if defined(TARGET_PPC64)
833 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
834 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
835 0, crfD(ctx->opcode));
836 else
837 #endif
838 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
839 0, crfD(ctx->opcode));
842 /* isel (PowerPC 2.03 specification) */
843 GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL)
845 int l1, l2;
846 uint32_t bi = rC(ctx->opcode);
847 uint32_t mask;
848 TCGv_i32 t0;
850 l1 = gen_new_label();
851 l2 = gen_new_label();
853 mask = 1 << (3 - (bi & 0x03));
854 t0 = tcg_temp_new_i32();
855 tcg_gen_andi_i32(t0, cpu_crf[bi >> 2], mask);
856 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
857 if (rA(ctx->opcode) == 0)
858 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
859 else
860 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
861 tcg_gen_br(l2);
862 gen_set_label(l1);
863 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
864 gen_set_label(l2);
865 tcg_temp_free_i32(t0);
868 /*** Integer arithmetic ***/
870 static always_inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0, TCGv arg1, TCGv arg2, int sub)
872 int l1;
873 TCGv t0;
875 l1 = gen_new_label();
876 /* Start with XER OV disabled, the most likely case */
877 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
878 t0 = tcg_temp_local_new();
879 tcg_gen_xor_tl(t0, arg0, arg1);
880 #if defined(TARGET_PPC64)
881 if (!ctx->sf_mode)
882 tcg_gen_ext32s_tl(t0, t0);
883 #endif
884 if (sub)
885 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1);
886 else
887 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
888 tcg_gen_xor_tl(t0, arg1, arg2);
889 #if defined(TARGET_PPC64)
890 if (!ctx->sf_mode)
891 tcg_gen_ext32s_tl(t0, t0);
892 #endif
893 if (sub)
894 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
895 else
896 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1);
897 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
898 gen_set_label(l1);
899 tcg_temp_free(t0);
902 static always_inline void gen_op_arith_compute_ca(DisasContext *ctx, TCGv arg1, TCGv arg2, int sub)
904 int l1 = gen_new_label();
906 #if defined(TARGET_PPC64)
907 if (!(ctx->sf_mode)) {
908 TCGv t0, t1;
909 t0 = tcg_temp_new();
910 t1 = tcg_temp_new();
912 tcg_gen_ext32u_tl(t0, arg1);
913 tcg_gen_ext32u_tl(t1, arg2);
914 if (sub) {
915 tcg_gen_brcond_tl(TCG_COND_GTU, t0, t1, l1);
916 } else {
917 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
919 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
920 gen_set_label(l1);
921 tcg_temp_free(t0);
922 tcg_temp_free(t1);
923 } else
924 #endif
926 if (sub) {
927 tcg_gen_brcond_tl(TCG_COND_GTU, arg1, arg2, l1);
928 } else {
929 tcg_gen_brcond_tl(TCG_COND_GEU, arg1, arg2, l1);
931 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
932 gen_set_label(l1);
936 /* Common add function */
937 static always_inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
938 int add_ca, int compute_ca, int compute_ov)
940 TCGv t0, t1;
942 if ((!compute_ca && !compute_ov) ||
943 (!TCGV_EQUAL(ret,arg1) && !TCGV_EQUAL(ret, arg2))) {
944 t0 = ret;
945 } else {
946 t0 = tcg_temp_local_new();
949 if (add_ca) {
950 t1 = tcg_temp_local_new();
951 tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA));
952 tcg_gen_shri_tl(t1, t1, XER_CA);
955 if (compute_ca && compute_ov) {
956 /* Start with XER CA and OV disabled, the most likely case */
957 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV)));
958 } else if (compute_ca) {
959 /* Start with XER CA disabled, the most likely case */
960 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
961 } else if (compute_ov) {
962 /* Start with XER OV disabled, the most likely case */
963 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
966 tcg_gen_add_tl(t0, arg1, arg2);
968 if (compute_ca) {
969 gen_op_arith_compute_ca(ctx, t0, arg1, 0);
971 if (add_ca) {
972 tcg_gen_add_tl(t0, t0, t1);
973 gen_op_arith_compute_ca(ctx, t0, t1, 0);
974 tcg_temp_free(t1);
976 if (compute_ov) {
977 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0);
980 if (unlikely(Rc(ctx->opcode) != 0))
981 gen_set_Rc0(ctx, t0);
983 if (!TCGV_EQUAL(t0, ret)) {
984 tcg_gen_mov_tl(ret, t0);
985 tcg_temp_free(t0);
988 /* Add functions with two operands */
989 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
990 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER) \
992 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
993 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
994 add_ca, compute_ca, compute_ov); \
996 /* Add functions with one operand and one immediate */
997 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
998 add_ca, compute_ca, compute_ov) \
999 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER) \
1001 TCGv t0 = tcg_const_local_tl(const_val); \
1002 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
1003 cpu_gpr[rA(ctx->opcode)], t0, \
1004 add_ca, compute_ca, compute_ov); \
1005 tcg_temp_free(t0); \
1008 /* add add. addo addo. */
1009 GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
1010 GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
1011 /* addc addc. addco addco. */
1012 GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
1013 GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
1014 /* adde adde. addeo addeo. */
1015 GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
1016 GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
1017 /* addme addme. addmeo addmeo. */
1018 GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
1019 GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
1020 /* addze addze. addzeo addzeo.*/
1021 GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
1022 GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
1023 /* addi */
1024 GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1026 target_long simm = SIMM(ctx->opcode);
1028 if (rA(ctx->opcode) == 0) {
1029 /* li case */
1030 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm);
1031 } else {
1032 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm);
1035 /* addic addic.*/
1036 static always_inline void gen_op_addic (DisasContext *ctx, TCGv ret, TCGv arg1,
1037 int compute_Rc0)
1039 target_long simm = SIMM(ctx->opcode);
1041 /* Start with XER CA and OV disabled, the most likely case */
1042 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1044 if (likely(simm != 0)) {
1045 TCGv t0 = tcg_temp_local_new();
1046 tcg_gen_addi_tl(t0, arg1, simm);
1047 gen_op_arith_compute_ca(ctx, t0, arg1, 0);
1048 tcg_gen_mov_tl(ret, t0);
1049 tcg_temp_free(t0);
1050 } else {
1051 tcg_gen_mov_tl(ret, arg1);
1053 if (compute_Rc0) {
1054 gen_set_Rc0(ctx, ret);
1057 GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1059 gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0);
1061 GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1063 gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1);
1065 /* addis */
1066 GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1068 target_long simm = SIMM(ctx->opcode);
1070 if (rA(ctx->opcode) == 0) {
1071 /* lis case */
1072 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16);
1073 } else {
1074 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm << 16);
1078 static always_inline void gen_op_arith_divw (DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1079 int sign, int compute_ov)
1081 int l1 = gen_new_label();
1082 int l2 = gen_new_label();
1083 TCGv_i32 t0 = tcg_temp_local_new_i32();
1084 TCGv_i32 t1 = tcg_temp_local_new_i32();
1086 tcg_gen_trunc_tl_i32(t0, arg1);
1087 tcg_gen_trunc_tl_i32(t1, arg2);
1088 tcg_gen_brcondi_i32(TCG_COND_EQ, t1, 0, l1);
1089 if (sign) {
1090 int l3 = gen_new_label();
1091 tcg_gen_brcondi_i32(TCG_COND_NE, t1, -1, l3);
1092 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, INT32_MIN, l1);
1093 gen_set_label(l3);
1094 tcg_gen_div_i32(t0, t0, t1);
1095 } else {
1096 tcg_gen_divu_i32(t0, t0, t1);
1098 if (compute_ov) {
1099 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1101 tcg_gen_br(l2);
1102 gen_set_label(l1);
1103 if (sign) {
1104 tcg_gen_sari_i32(t0, t0, 31);
1105 } else {
1106 tcg_gen_movi_i32(t0, 0);
1108 if (compute_ov) {
1109 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1111 gen_set_label(l2);
1112 tcg_gen_extu_i32_tl(ret, t0);
1113 tcg_temp_free_i32(t0);
1114 tcg_temp_free_i32(t1);
1115 if (unlikely(Rc(ctx->opcode) != 0))
1116 gen_set_Rc0(ctx, ret);
1118 /* Div functions */
1119 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1120 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER) \
1122 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1123 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1124 sign, compute_ov); \
1126 /* divwu divwu. divwuo divwuo. */
1127 GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0);
1128 GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1);
1129 /* divw divw. divwo divwo. */
1130 GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0);
1131 GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1);
1132 #if defined(TARGET_PPC64)
1133 static always_inline void gen_op_arith_divd (DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1134 int sign, int compute_ov)
1136 int l1 = gen_new_label();
1137 int l2 = gen_new_label();
1139 tcg_gen_brcondi_i64(TCG_COND_EQ, arg2, 0, l1);
1140 if (sign) {
1141 int l3 = gen_new_label();
1142 tcg_gen_brcondi_i64(TCG_COND_NE, arg2, -1, l3);
1143 tcg_gen_brcondi_i64(TCG_COND_EQ, arg1, INT64_MIN, l1);
1144 gen_set_label(l3);
1145 tcg_gen_div_i64(ret, arg1, arg2);
1146 } else {
1147 tcg_gen_divu_i64(ret, arg1, arg2);
1149 if (compute_ov) {
1150 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1152 tcg_gen_br(l2);
1153 gen_set_label(l1);
1154 if (sign) {
1155 tcg_gen_sari_i64(ret, arg1, 63);
1156 } else {
1157 tcg_gen_movi_i64(ret, 0);
1159 if (compute_ov) {
1160 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1162 gen_set_label(l2);
1163 if (unlikely(Rc(ctx->opcode) != 0))
1164 gen_set_Rc0(ctx, ret);
1166 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1167 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1169 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1170 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1171 sign, compute_ov); \
1173 /* divwu divwu. divwuo divwuo. */
1174 GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0);
1175 GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1);
1176 /* divw divw. divwo divwo. */
1177 GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0);
1178 GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1);
1179 #endif
1181 /* mulhw mulhw. */
1182 GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER)
1184 TCGv_i64 t0, t1;
1186 t0 = tcg_temp_new_i64();
1187 t1 = tcg_temp_new_i64();
1188 #if defined(TARGET_PPC64)
1189 tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]);
1190 tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]);
1191 tcg_gen_mul_i64(t0, t0, t1);
1192 tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32);
1193 #else
1194 tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1195 tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1196 tcg_gen_mul_i64(t0, t0, t1);
1197 tcg_gen_shri_i64(t0, t0, 32);
1198 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1199 #endif
1200 tcg_temp_free_i64(t0);
1201 tcg_temp_free_i64(t1);
1202 if (unlikely(Rc(ctx->opcode) != 0))
1203 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1205 /* mulhwu mulhwu. */
1206 GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER)
1208 TCGv_i64 t0, t1;
1210 t0 = tcg_temp_new_i64();
1211 t1 = tcg_temp_new_i64();
1212 #if defined(TARGET_PPC64)
1213 tcg_gen_ext32u_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1214 tcg_gen_ext32u_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1215 tcg_gen_mul_i64(t0, t0, t1);
1216 tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32);
1217 #else
1218 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1219 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1220 tcg_gen_mul_i64(t0, t0, t1);
1221 tcg_gen_shri_i64(t0, t0, 32);
1222 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1223 #endif
1224 tcg_temp_free_i64(t0);
1225 tcg_temp_free_i64(t1);
1226 if (unlikely(Rc(ctx->opcode) != 0))
1227 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1229 /* mullw mullw. */
1230 GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER)
1232 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1233 cpu_gpr[rB(ctx->opcode)]);
1234 tcg_gen_ext32s_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)]);
1235 if (unlikely(Rc(ctx->opcode) != 0))
1236 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1238 /* mullwo mullwo. */
1239 GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER)
1241 int l1;
1242 TCGv_i64 t0, t1;
1244 t0 = tcg_temp_new_i64();
1245 t1 = tcg_temp_new_i64();
1246 l1 = gen_new_label();
1247 /* Start with XER OV disabled, the most likely case */
1248 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1249 #if defined(TARGET_PPC64)
1250 tcg_gen_ext32s_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1251 tcg_gen_ext32s_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1252 #else
1253 tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1254 tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1255 #endif
1256 tcg_gen_mul_i64(t0, t0, t1);
1257 #if defined(TARGET_PPC64)
1258 tcg_gen_ext32s_i64(cpu_gpr[rD(ctx->opcode)], t0);
1259 tcg_gen_brcond_i64(TCG_COND_EQ, t0, cpu_gpr[rD(ctx->opcode)], l1);
1260 #else
1261 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1262 tcg_gen_ext32s_i64(t1, t0);
1263 tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
1264 #endif
1265 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1266 gen_set_label(l1);
1267 tcg_temp_free_i64(t0);
1268 tcg_temp_free_i64(t1);
1269 if (unlikely(Rc(ctx->opcode) != 0))
1270 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1272 /* mulli */
1273 GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1275 tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1276 SIMM(ctx->opcode));
1278 #if defined(TARGET_PPC64)
1279 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1280 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1282 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1283 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1284 if (unlikely(Rc(ctx->opcode) != 0)) \
1285 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1287 /* mulhd mulhd. */
1288 GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00);
1289 /* mulhdu mulhdu. */
1290 GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02);
1291 /* mulld mulld. */
1292 GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B)
1294 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1295 cpu_gpr[rB(ctx->opcode)]);
1296 if (unlikely(Rc(ctx->opcode) != 0))
1297 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1299 /* mulldo mulldo. */
1300 GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17);
1301 #endif
1303 /* neg neg. nego nego. */
1304 static always_inline void gen_op_arith_neg (DisasContext *ctx, TCGv ret, TCGv arg1, int ov_check)
1306 int l1 = gen_new_label();
1307 int l2 = gen_new_label();
1308 TCGv t0 = tcg_temp_local_new();
1309 #if defined(TARGET_PPC64)
1310 if (ctx->sf_mode) {
1311 tcg_gen_mov_tl(t0, arg1);
1312 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT64_MIN, l1);
1313 } else
1314 #endif
1316 tcg_gen_ext32s_tl(t0, arg1);
1317 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT32_MIN, l1);
1319 tcg_gen_neg_tl(ret, arg1);
1320 if (ov_check) {
1321 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1323 tcg_gen_br(l2);
1324 gen_set_label(l1);
1325 tcg_gen_mov_tl(ret, t0);
1326 if (ov_check) {
1327 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1329 gen_set_label(l2);
1330 tcg_temp_free(t0);
1331 if (unlikely(Rc(ctx->opcode) != 0))
1332 gen_set_Rc0(ctx, ret);
1334 GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER)
1336 gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0);
1338 GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER)
1340 gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1);
1343 /* Common subf function */
1344 static always_inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1345 int add_ca, int compute_ca, int compute_ov)
1347 TCGv t0, t1;
1349 if ((!compute_ca && !compute_ov) ||
1350 (!TCGV_EQUAL(ret, arg1) && !TCGV_EQUAL(ret, arg2))) {
1351 t0 = ret;
1352 } else {
1353 t0 = tcg_temp_local_new();
1356 if (add_ca) {
1357 t1 = tcg_temp_local_new();
1358 tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA));
1359 tcg_gen_shri_tl(t1, t1, XER_CA);
1362 if (compute_ca && compute_ov) {
1363 /* Start with XER CA and OV disabled, the most likely case */
1364 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV)));
1365 } else if (compute_ca) {
1366 /* Start with XER CA disabled, the most likely case */
1367 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1368 } else if (compute_ov) {
1369 /* Start with XER OV disabled, the most likely case */
1370 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1373 if (add_ca) {
1374 tcg_gen_not_tl(t0, arg1);
1375 tcg_gen_add_tl(t0, t0, arg2);
1376 gen_op_arith_compute_ca(ctx, t0, arg2, 0);
1377 tcg_gen_add_tl(t0, t0, t1);
1378 gen_op_arith_compute_ca(ctx, t0, t1, 0);
1379 tcg_temp_free(t1);
1380 } else {
1381 tcg_gen_sub_tl(t0, arg2, arg1);
1382 if (compute_ca) {
1383 gen_op_arith_compute_ca(ctx, t0, arg2, 1);
1386 if (compute_ov) {
1387 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1);
1390 if (unlikely(Rc(ctx->opcode) != 0))
1391 gen_set_Rc0(ctx, t0);
1393 if (!TCGV_EQUAL(t0, ret)) {
1394 tcg_gen_mov_tl(ret, t0);
1395 tcg_temp_free(t0);
1398 /* Sub functions with Two operands functions */
1399 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1400 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER) \
1402 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1403 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1404 add_ca, compute_ca, compute_ov); \
1406 /* Sub functions with one operand and one immediate */
1407 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1408 add_ca, compute_ca, compute_ov) \
1409 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER) \
1411 TCGv t0 = tcg_const_local_tl(const_val); \
1412 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1413 cpu_gpr[rA(ctx->opcode)], t0, \
1414 add_ca, compute_ca, compute_ov); \
1415 tcg_temp_free(t0); \
1417 /* subf subf. subfo subfo. */
1418 GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
1419 GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
1420 /* subfc subfc. subfco subfco. */
1421 GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
1422 GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
1423 /* subfe subfe. subfeo subfo. */
1424 GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
1425 GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
1426 /* subfme subfme. subfmeo subfmeo. */
1427 GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
1428 GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
1429 /* subfze subfze. subfzeo subfzeo.*/
1430 GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
1431 GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
1432 /* subfic */
1433 GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1435 /* Start with XER CA and OV disabled, the most likely case */
1436 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1437 TCGv t0 = tcg_temp_local_new();
1438 TCGv t1 = tcg_const_local_tl(SIMM(ctx->opcode));
1439 tcg_gen_sub_tl(t0, t1, cpu_gpr[rA(ctx->opcode)]);
1440 gen_op_arith_compute_ca(ctx, t0, t1, 1);
1441 tcg_temp_free(t1);
1442 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
1443 tcg_temp_free(t0);
1446 /*** Integer logical ***/
1447 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1448 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type) \
1450 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1451 cpu_gpr[rB(ctx->opcode)]); \
1452 if (unlikely(Rc(ctx->opcode) != 0)) \
1453 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1456 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1457 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type) \
1459 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1460 if (unlikely(Rc(ctx->opcode) != 0)) \
1461 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1464 /* and & and. */
1465 GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER);
1466 /* andc & andc. */
1467 GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER);
1468 /* andi. */
1469 GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1471 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode));
1472 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1474 /* andis. */
1475 GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1477 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16);
1478 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1480 /* cntlzw */
1481 GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER)
1483 gen_helper_cntlzw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1484 if (unlikely(Rc(ctx->opcode) != 0))
1485 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1487 /* eqv & eqv. */
1488 GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER);
1489 /* extsb & extsb. */
1490 GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER);
1491 /* extsh & extsh. */
1492 GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER);
1493 /* nand & nand. */
1494 GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER);
1495 /* nor & nor. */
1496 GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
1497 /* or & or. */
1498 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER)
1500 int rs, ra, rb;
1502 rs = rS(ctx->opcode);
1503 ra = rA(ctx->opcode);
1504 rb = rB(ctx->opcode);
1505 /* Optimisation for mr. ri case */
1506 if (rs != ra || rs != rb) {
1507 if (rs != rb)
1508 tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]);
1509 else
1510 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]);
1511 if (unlikely(Rc(ctx->opcode) != 0))
1512 gen_set_Rc0(ctx, cpu_gpr[ra]);
1513 } else if (unlikely(Rc(ctx->opcode) != 0)) {
1514 gen_set_Rc0(ctx, cpu_gpr[rs]);
1515 #if defined(TARGET_PPC64)
1516 } else {
1517 int prio = 0;
1519 switch (rs) {
1520 case 1:
1521 /* Set process priority to low */
1522 prio = 2;
1523 break;
1524 case 6:
1525 /* Set process priority to medium-low */
1526 prio = 3;
1527 break;
1528 case 2:
1529 /* Set process priority to normal */
1530 prio = 4;
1531 break;
1532 #if !defined(CONFIG_USER_ONLY)
1533 case 31:
1534 if (ctx->supervisor > 0) {
1535 /* Set process priority to very low */
1536 prio = 1;
1538 break;
1539 case 5:
1540 if (ctx->supervisor > 0) {
1541 /* Set process priority to medium-hight */
1542 prio = 5;
1544 break;
1545 case 3:
1546 if (ctx->supervisor > 0) {
1547 /* Set process priority to high */
1548 prio = 6;
1550 break;
1551 case 7:
1552 if (ctx->supervisor > 1) {
1553 /* Set process priority to very high */
1554 prio = 7;
1556 break;
1557 #endif
1558 default:
1559 /* nop */
1560 break;
1562 if (prio) {
1563 TCGv t0 = tcg_temp_new();
1564 gen_load_spr(t0, SPR_PPR);
1565 tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL);
1566 tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50);
1567 gen_store_spr(SPR_PPR, t0);
1568 tcg_temp_free(t0);
1570 #endif
1573 /* orc & orc. */
1574 GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER);
1575 /* xor & xor. */
1576 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER)
1578 /* Optimisation for "set to zero" case */
1579 if (rS(ctx->opcode) != rB(ctx->opcode))
1580 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1581 else
1582 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1583 if (unlikely(Rc(ctx->opcode) != 0))
1584 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1586 /* ori */
1587 GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1589 target_ulong uimm = UIMM(ctx->opcode);
1591 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1592 /* NOP */
1593 /* XXX: should handle special NOPs for POWER series */
1594 return;
1596 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1598 /* oris */
1599 GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1601 target_ulong uimm = UIMM(ctx->opcode);
1603 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1604 /* NOP */
1605 return;
1607 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1609 /* xori */
1610 GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1612 target_ulong uimm = UIMM(ctx->opcode);
1614 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1615 /* NOP */
1616 return;
1618 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1620 /* xoris */
1621 GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1623 target_ulong uimm = UIMM(ctx->opcode);
1625 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1626 /* NOP */
1627 return;
1629 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1631 /* popcntb : PowerPC 2.03 specification */
1632 GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB)
1634 #if defined(TARGET_PPC64)
1635 if (ctx->sf_mode)
1636 gen_helper_popcntb_64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1637 else
1638 #endif
1639 gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1642 #if defined(TARGET_PPC64)
1643 /* extsw & extsw. */
1644 GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B);
1645 /* cntlzd */
1646 GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B)
1648 gen_helper_cntlzd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1649 if (unlikely(Rc(ctx->opcode) != 0))
1650 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1652 #endif
1654 /*** Integer rotate ***/
1655 /* rlwimi & rlwimi. */
1656 GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1658 uint32_t mb, me, sh;
1660 mb = MB(ctx->opcode);
1661 me = ME(ctx->opcode);
1662 sh = SH(ctx->opcode);
1663 if (likely(sh == 0 && mb == 0 && me == 31)) {
1664 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1665 } else {
1666 target_ulong mask;
1667 TCGv t1;
1668 TCGv t0 = tcg_temp_new();
1669 #if defined(TARGET_PPC64)
1670 TCGv_i32 t2 = tcg_temp_new_i32();
1671 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rS(ctx->opcode)]);
1672 tcg_gen_rotli_i32(t2, t2, sh);
1673 tcg_gen_extu_i32_i64(t0, t2);
1674 tcg_temp_free_i32(t2);
1675 #else
1676 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1677 #endif
1678 #if defined(TARGET_PPC64)
1679 mb += 32;
1680 me += 32;
1681 #endif
1682 mask = MASK(mb, me);
1683 t1 = tcg_temp_new();
1684 tcg_gen_andi_tl(t0, t0, mask);
1685 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1686 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1687 tcg_temp_free(t0);
1688 tcg_temp_free(t1);
1690 if (unlikely(Rc(ctx->opcode) != 0))
1691 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1693 /* rlwinm & rlwinm. */
1694 GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1696 uint32_t mb, me, sh;
1698 sh = SH(ctx->opcode);
1699 mb = MB(ctx->opcode);
1700 me = ME(ctx->opcode);
1702 if (likely(mb == 0 && me == (31 - sh))) {
1703 if (likely(sh == 0)) {
1704 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1705 } else {
1706 TCGv t0 = tcg_temp_new();
1707 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1708 tcg_gen_shli_tl(t0, t0, sh);
1709 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1710 tcg_temp_free(t0);
1712 } else if (likely(sh != 0 && me == 31 && sh == (32 - mb))) {
1713 TCGv t0 = tcg_temp_new();
1714 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1715 tcg_gen_shri_tl(t0, t0, mb);
1716 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1717 tcg_temp_free(t0);
1718 } else {
1719 TCGv t0 = tcg_temp_new();
1720 #if defined(TARGET_PPC64)
1721 TCGv_i32 t1 = tcg_temp_new_i32();
1722 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1723 tcg_gen_rotli_i32(t1, t1, sh);
1724 tcg_gen_extu_i32_i64(t0, t1);
1725 tcg_temp_free_i32(t1);
1726 #else
1727 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1728 #endif
1729 #if defined(TARGET_PPC64)
1730 mb += 32;
1731 me += 32;
1732 #endif
1733 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1734 tcg_temp_free(t0);
1736 if (unlikely(Rc(ctx->opcode) != 0))
1737 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1739 /* rlwnm & rlwnm. */
1740 GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1742 uint32_t mb, me;
1743 TCGv t0;
1744 #if defined(TARGET_PPC64)
1745 TCGv_i32 t1, t2;
1746 #endif
1748 mb = MB(ctx->opcode);
1749 me = ME(ctx->opcode);
1750 t0 = tcg_temp_new();
1751 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1f);
1752 #if defined(TARGET_PPC64)
1753 t1 = tcg_temp_new_i32();
1754 t2 = tcg_temp_new_i32();
1755 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1756 tcg_gen_trunc_i64_i32(t2, t0);
1757 tcg_gen_rotl_i32(t1, t1, t2);
1758 tcg_gen_extu_i32_i64(t0, t1);
1759 tcg_temp_free_i32(t1);
1760 tcg_temp_free_i32(t2);
1761 #else
1762 tcg_gen_rotl_i32(t0, cpu_gpr[rS(ctx->opcode)], t0);
1763 #endif
1764 if (unlikely(mb != 0 || me != 31)) {
1765 #if defined(TARGET_PPC64)
1766 mb += 32;
1767 me += 32;
1768 #endif
1769 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1770 } else {
1771 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1773 tcg_temp_free(t0);
1774 if (unlikely(Rc(ctx->opcode) != 0))
1775 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1778 #if defined(TARGET_PPC64)
1779 #define GEN_PPC64_R2(name, opc1, opc2) \
1780 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1782 gen_##name(ctx, 0); \
1784 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1785 PPC_64B) \
1787 gen_##name(ctx, 1); \
1789 #define GEN_PPC64_R4(name, opc1, opc2) \
1790 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1792 gen_##name(ctx, 0, 0); \
1794 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
1795 PPC_64B) \
1797 gen_##name(ctx, 0, 1); \
1799 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1800 PPC_64B) \
1802 gen_##name(ctx, 1, 0); \
1804 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
1805 PPC_64B) \
1807 gen_##name(ctx, 1, 1); \
1810 static always_inline void gen_rldinm (DisasContext *ctx, uint32_t mb,
1811 uint32_t me, uint32_t sh)
1813 if (likely(sh != 0 && mb == 0 && me == (63 - sh))) {
1814 tcg_gen_shli_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
1815 } else if (likely(sh != 0 && me == 63 && sh == (64 - mb))) {
1816 tcg_gen_shri_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], mb);
1817 } else {
1818 TCGv t0 = tcg_temp_new();
1819 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1820 if (likely(mb == 0 && me == 63)) {
1821 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1822 } else {
1823 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1825 tcg_temp_free(t0);
1827 if (unlikely(Rc(ctx->opcode) != 0))
1828 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1830 /* rldicl - rldicl. */
1831 static always_inline void gen_rldicl (DisasContext *ctx, int mbn, int shn)
1833 uint32_t sh, mb;
1835 sh = SH(ctx->opcode) | (shn << 5);
1836 mb = MB(ctx->opcode) | (mbn << 5);
1837 gen_rldinm(ctx, mb, 63, sh);
1839 GEN_PPC64_R4(rldicl, 0x1E, 0x00);
1840 /* rldicr - rldicr. */
1841 static always_inline void gen_rldicr (DisasContext *ctx, int men, int shn)
1843 uint32_t sh, me;
1845 sh = SH(ctx->opcode) | (shn << 5);
1846 me = MB(ctx->opcode) | (men << 5);
1847 gen_rldinm(ctx, 0, me, sh);
1849 GEN_PPC64_R4(rldicr, 0x1E, 0x02);
1850 /* rldic - rldic. */
1851 static always_inline void gen_rldic (DisasContext *ctx, int mbn, int shn)
1853 uint32_t sh, mb;
1855 sh = SH(ctx->opcode) | (shn << 5);
1856 mb = MB(ctx->opcode) | (mbn << 5);
1857 gen_rldinm(ctx, mb, 63 - sh, sh);
1859 GEN_PPC64_R4(rldic, 0x1E, 0x04);
1861 static always_inline void gen_rldnm (DisasContext *ctx, uint32_t mb,
1862 uint32_t me)
1864 TCGv t0;
1866 mb = MB(ctx->opcode);
1867 me = ME(ctx->opcode);
1868 t0 = tcg_temp_new();
1869 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1870 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1871 if (unlikely(mb != 0 || me != 63)) {
1872 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1873 } else {
1874 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1876 tcg_temp_free(t0);
1877 if (unlikely(Rc(ctx->opcode) != 0))
1878 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1881 /* rldcl - rldcl. */
1882 static always_inline void gen_rldcl (DisasContext *ctx, int mbn)
1884 uint32_t mb;
1886 mb = MB(ctx->opcode) | (mbn << 5);
1887 gen_rldnm(ctx, mb, 63);
1889 GEN_PPC64_R2(rldcl, 0x1E, 0x08);
1890 /* rldcr - rldcr. */
1891 static always_inline void gen_rldcr (DisasContext *ctx, int men)
1893 uint32_t me;
1895 me = MB(ctx->opcode) | (men << 5);
1896 gen_rldnm(ctx, 0, me);
1898 GEN_PPC64_R2(rldcr, 0x1E, 0x09);
1899 /* rldimi - rldimi. */
1900 static always_inline void gen_rldimi (DisasContext *ctx, int mbn, int shn)
1902 uint32_t sh, mb, me;
1904 sh = SH(ctx->opcode) | (shn << 5);
1905 mb = MB(ctx->opcode) | (mbn << 5);
1906 me = 63 - sh;
1907 if (unlikely(sh == 0 && mb == 0)) {
1908 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1909 } else {
1910 TCGv t0, t1;
1911 target_ulong mask;
1913 t0 = tcg_temp_new();
1914 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1915 t1 = tcg_temp_new();
1916 mask = MASK(mb, me);
1917 tcg_gen_andi_tl(t0, t0, mask);
1918 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1919 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1920 tcg_temp_free(t0);
1921 tcg_temp_free(t1);
1923 if (unlikely(Rc(ctx->opcode) != 0))
1924 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1926 GEN_PPC64_R4(rldimi, 0x1E, 0x06);
1927 #endif
1929 /*** Integer shift ***/
1930 /* slw & slw. */
1931 GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER)
1933 TCGv t0;
1934 int l1, l2;
1935 l1 = gen_new_label();
1936 l2 = gen_new_label();
1938 t0 = tcg_temp_local_new();
1939 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1940 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1);
1941 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1942 tcg_gen_br(l2);
1943 gen_set_label(l1);
1944 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
1945 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
1946 gen_set_label(l2);
1947 tcg_temp_free(t0);
1948 if (unlikely(Rc(ctx->opcode) != 0))
1949 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1951 /* sraw & sraw. */
1952 GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER)
1954 gen_helper_sraw(cpu_gpr[rA(ctx->opcode)],
1955 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1956 if (unlikely(Rc(ctx->opcode) != 0))
1957 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1959 /* srawi & srawi. */
1960 GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER)
1962 int sh = SH(ctx->opcode);
1963 if (sh != 0) {
1964 int l1, l2;
1965 TCGv t0;
1966 l1 = gen_new_label();
1967 l2 = gen_new_label();
1968 t0 = tcg_temp_local_new();
1969 tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1970 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
1971 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1);
1972 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
1973 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
1974 tcg_gen_br(l2);
1975 gen_set_label(l1);
1976 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1977 gen_set_label(l2);
1978 tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1979 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], t0, sh);
1980 tcg_temp_free(t0);
1981 } else {
1982 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1983 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1985 if (unlikely(Rc(ctx->opcode) != 0))
1986 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1988 /* srw & srw. */
1989 GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER)
1991 TCGv t0, t1;
1992 int l1, l2;
1993 l1 = gen_new_label();
1994 l2 = gen_new_label();
1996 t0 = tcg_temp_local_new();
1997 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1998 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1);
1999 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
2000 tcg_gen_br(l2);
2001 gen_set_label(l1);
2002 t1 = tcg_temp_new();
2003 tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]);
2004 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t1, t0);
2005 tcg_temp_free(t1);
2006 gen_set_label(l2);
2007 tcg_temp_free(t0);
2008 if (unlikely(Rc(ctx->opcode) != 0))
2009 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2011 #if defined(TARGET_PPC64)
2012 /* sld & sld. */
2013 GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B)
2015 TCGv t0;
2016 int l1, l2;
2017 l1 = gen_new_label();
2018 l2 = gen_new_label();
2020 t0 = tcg_temp_local_new();
2021 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f);
2022 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1);
2023 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
2024 tcg_gen_br(l2);
2025 gen_set_label(l1);
2026 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
2027 gen_set_label(l2);
2028 tcg_temp_free(t0);
2029 if (unlikely(Rc(ctx->opcode) != 0))
2030 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2032 /* srad & srad. */
2033 GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B)
2035 gen_helper_srad(cpu_gpr[rA(ctx->opcode)],
2036 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
2037 if (unlikely(Rc(ctx->opcode) != 0))
2038 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2040 /* sradi & sradi. */
2041 static always_inline void gen_sradi (DisasContext *ctx, int n)
2043 int sh = SH(ctx->opcode) + (n << 5);
2044 if (sh != 0) {
2045 int l1, l2;
2046 TCGv t0;
2047 l1 = gen_new_label();
2048 l2 = gen_new_label();
2049 t0 = tcg_temp_local_new();
2050 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
2051 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1);
2052 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2053 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
2054 tcg_gen_br(l2);
2055 gen_set_label(l1);
2056 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
2057 gen_set_label(l2);
2058 tcg_temp_free(t0);
2059 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
2060 } else {
2061 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
2062 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
2064 if (unlikely(Rc(ctx->opcode) != 0))
2065 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2067 GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B)
2069 gen_sradi(ctx, 0);
2071 GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B)
2073 gen_sradi(ctx, 1);
2075 /* srd & srd. */
2076 GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B)
2078 TCGv t0;
2079 int l1, l2;
2080 l1 = gen_new_label();
2081 l2 = gen_new_label();
2083 t0 = tcg_temp_local_new();
2084 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f);
2085 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1);
2086 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
2087 tcg_gen_br(l2);
2088 gen_set_label(l1);
2089 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
2090 gen_set_label(l2);
2091 tcg_temp_free(t0);
2092 if (unlikely(Rc(ctx->opcode) != 0))
2093 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2095 #endif
2097 /*** Floating-Point arithmetic ***/
2098 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
2099 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type) \
2101 if (unlikely(!ctx->fpu_enabled)) { \
2102 GEN_EXCP_NO_FP(ctx); \
2103 return; \
2105 gen_reset_fpstatus(); \
2106 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2107 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2108 if (isfloat) { \
2109 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2111 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
2112 Rc(ctx->opcode) != 0); \
2115 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
2116 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
2117 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2119 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2120 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2122 if (unlikely(!ctx->fpu_enabled)) { \
2123 GEN_EXCP_NO_FP(ctx); \
2124 return; \
2126 gen_reset_fpstatus(); \
2127 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2128 cpu_fpr[rB(ctx->opcode)]); \
2129 if (isfloat) { \
2130 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2132 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2133 set_fprf, Rc(ctx->opcode) != 0); \
2135 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2136 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2137 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2139 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2140 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2142 if (unlikely(!ctx->fpu_enabled)) { \
2143 GEN_EXCP_NO_FP(ctx); \
2144 return; \
2146 gen_reset_fpstatus(); \
2147 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2148 cpu_fpr[rC(ctx->opcode)]); \
2149 if (isfloat) { \
2150 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2152 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2153 set_fprf, Rc(ctx->opcode) != 0); \
2155 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
2156 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2157 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2159 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2160 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type) \
2162 if (unlikely(!ctx->fpu_enabled)) { \
2163 GEN_EXCP_NO_FP(ctx); \
2164 return; \
2166 gen_reset_fpstatus(); \
2167 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2168 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2169 set_fprf, Rc(ctx->opcode) != 0); \
2172 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2173 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type) \
2175 if (unlikely(!ctx->fpu_enabled)) { \
2176 GEN_EXCP_NO_FP(ctx); \
2177 return; \
2179 gen_reset_fpstatus(); \
2180 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2181 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2182 set_fprf, Rc(ctx->opcode) != 0); \
2185 /* fadd - fadds */
2186 GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT);
2187 /* fdiv - fdivs */
2188 GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT);
2189 /* fmul - fmuls */
2190 GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT);
2192 /* fre */
2193 GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT);
2195 /* fres */
2196 GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES);
2198 /* frsqrte */
2199 GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE);
2201 /* frsqrtes */
2202 GEN_HANDLER(frsqrtes, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES)
2204 if (unlikely(!ctx->fpu_enabled)) {
2205 GEN_EXCP_NO_FP(ctx);
2206 return;
2208 gen_reset_fpstatus();
2209 gen_helper_frsqrte(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2210 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]);
2211 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2214 /* fsel */
2215 _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL);
2216 /* fsub - fsubs */
2217 GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT);
2218 /* Optional: */
2219 /* fsqrt */
2220 GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
2222 if (unlikely(!ctx->fpu_enabled)) {
2223 GEN_EXCP_NO_FP(ctx);
2224 return;
2226 gen_reset_fpstatus();
2227 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2228 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2231 GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
2233 if (unlikely(!ctx->fpu_enabled)) {
2234 GEN_EXCP_NO_FP(ctx);
2235 return;
2237 gen_reset_fpstatus();
2238 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2239 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]);
2240 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2243 /*** Floating-Point multiply-and-add ***/
2244 /* fmadd - fmadds */
2245 GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT);
2246 /* fmsub - fmsubs */
2247 GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT);
2248 /* fnmadd - fnmadds */
2249 GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT);
2250 /* fnmsub - fnmsubs */
2251 GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT);
2253 /*** Floating-Point round & convert ***/
2254 /* fctiw */
2255 GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT);
2256 /* fctiwz */
2257 GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT);
2258 /* frsp */
2259 GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT);
2260 #if defined(TARGET_PPC64)
2261 /* fcfid */
2262 GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B);
2263 /* fctid */
2264 GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B);
2265 /* fctidz */
2266 GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B);
2267 #endif
2269 /* frin */
2270 GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT);
2271 /* friz */
2272 GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT);
2273 /* frip */
2274 GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT);
2275 /* frim */
2276 GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT);
2278 /*** Floating-Point compare ***/
2279 /* fcmpo */
2280 GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT)
2282 if (unlikely(!ctx->fpu_enabled)) {
2283 GEN_EXCP_NO_FP(ctx);
2284 return;
2286 gen_reset_fpstatus();
2287 gen_helper_fcmpo(cpu_crf[crfD(ctx->opcode)],
2288 cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2289 gen_helper_float_check_status();
2292 /* fcmpu */
2293 GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT)
2295 if (unlikely(!ctx->fpu_enabled)) {
2296 GEN_EXCP_NO_FP(ctx);
2297 return;
2299 gen_reset_fpstatus();
2300 gen_helper_fcmpu(cpu_crf[crfD(ctx->opcode)],
2301 cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2302 gen_helper_float_check_status();
2305 /*** Floating-point move ***/
2306 /* fabs */
2307 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2308 GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT);
2310 /* fmr - fmr. */
2311 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2312 GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT)
2314 if (unlikely(!ctx->fpu_enabled)) {
2315 GEN_EXCP_NO_FP(ctx);
2316 return;
2318 tcg_gen_mov_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2319 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2322 /* fnabs */
2323 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2324 GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT);
2325 /* fneg */
2326 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2327 GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT);
2329 /*** Floating-Point status & ctrl register ***/
2330 /* mcrfs */
2331 GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT)
2333 int bfa;
2335 if (unlikely(!ctx->fpu_enabled)) {
2336 GEN_EXCP_NO_FP(ctx);
2337 return;
2339 gen_optimize_fprf();
2340 bfa = 4 * (7 - crfS(ctx->opcode));
2341 tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_fpscr, bfa);
2342 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], 0xf);
2343 tcg_gen_andi_i32(cpu_fpscr, cpu_fpscr, ~(0xF << bfa));
2346 /* mffs */
2347 GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT)
2349 if (unlikely(!ctx->fpu_enabled)) {
2350 GEN_EXCP_NO_FP(ctx);
2351 return;
2353 gen_optimize_fprf();
2354 gen_reset_fpstatus();
2355 tcg_gen_extu_i32_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpscr);
2356 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2359 /* mtfsb0 */
2360 GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT)
2362 uint8_t crb;
2364 if (unlikely(!ctx->fpu_enabled)) {
2365 GEN_EXCP_NO_FP(ctx);
2366 return;
2368 crb = 32 - (crbD(ctx->opcode) >> 2);
2369 gen_optimize_fprf();
2370 gen_reset_fpstatus();
2371 if (likely(crb != 30 && crb != 29))
2372 tcg_gen_andi_i32(cpu_fpscr, cpu_fpscr, ~(1 << crb));
2373 if (unlikely(Rc(ctx->opcode) != 0)) {
2374 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2378 /* mtfsb1 */
2379 GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT)
2381 uint8_t crb;
2383 if (unlikely(!ctx->fpu_enabled)) {
2384 GEN_EXCP_NO_FP(ctx);
2385 return;
2387 crb = 32 - (crbD(ctx->opcode) >> 2);
2388 gen_optimize_fprf();
2389 gen_reset_fpstatus();
2390 /* XXX: we pretend we can only do IEEE floating-point computations */
2391 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX && crb != FPSCR_NI)) {
2392 TCGv_i32 t0 = tcg_const_i32(crb);
2393 gen_helper_fpscr_setbit(t0);
2394 tcg_temp_free_i32(t0);
2396 if (unlikely(Rc(ctx->opcode) != 0)) {
2397 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2399 /* We can raise a differed exception */
2400 gen_helper_float_check_status();
2403 /* mtfsf */
2404 GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x02010000, PPC_FLOAT)
2406 TCGv_i32 t0;
2408 if (unlikely(!ctx->fpu_enabled)) {
2409 GEN_EXCP_NO_FP(ctx);
2410 return;
2412 gen_optimize_fprf();
2413 gen_reset_fpstatus();
2414 t0 = tcg_const_i32(FM(ctx->opcode));
2415 gen_helper_store_fpscr(cpu_fpr[rB(ctx->opcode)], t0);
2416 tcg_temp_free_i32(t0);
2417 if (unlikely(Rc(ctx->opcode) != 0)) {
2418 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2420 /* We can raise a differed exception */
2421 gen_helper_float_check_status();
2424 /* mtfsfi */
2425 GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT)
2427 int bf, sh;
2428 TCGv_i64 t0;
2429 TCGv_i32 t1;
2431 if (unlikely(!ctx->fpu_enabled)) {
2432 GEN_EXCP_NO_FP(ctx);
2433 return;
2435 bf = crbD(ctx->opcode) >> 2;
2436 sh = 7 - bf;
2437 gen_optimize_fprf();
2438 gen_reset_fpstatus();
2439 t0 = tcg_const_i64(FPIMM(ctx->opcode) << (4 * sh));
2440 t1 = tcg_const_i32(1 << sh);
2441 gen_helper_store_fpscr(t0, t1);
2442 tcg_temp_free_i64(t0);
2443 tcg_temp_free_i32(t1);
2444 if (unlikely(Rc(ctx->opcode) != 0)) {
2445 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2447 /* We can raise a differed exception */
2448 gen_helper_float_check_status();
2451 /*** Addressing modes ***/
2452 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2453 static always_inline void gen_addr_imm_index (TCGv EA,
2454 DisasContext *ctx,
2455 target_long maskl)
2457 target_long simm = SIMM(ctx->opcode);
2459 simm &= ~maskl;
2460 if (rA(ctx->opcode) == 0)
2461 tcg_gen_movi_tl(EA, simm);
2462 else if (likely(simm != 0))
2463 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm);
2464 else
2465 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2468 static always_inline void gen_addr_reg_index (TCGv EA,
2469 DisasContext *ctx)
2471 if (rA(ctx->opcode) == 0)
2472 tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2473 else
2474 tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
2477 static always_inline void gen_addr_register (TCGv EA,
2478 DisasContext *ctx)
2480 if (rA(ctx->opcode) == 0)
2481 tcg_gen_movi_tl(EA, 0);
2482 else
2483 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2486 static always_inline void gen_check_align (DisasContext *ctx, TCGv EA, int mask)
2488 int l1 = gen_new_label();
2489 TCGv t0 = tcg_temp_new();
2490 TCGv_i32 t1, t2;
2491 /* NIP cannot be restored if the memory exception comes from an helper */
2492 gen_update_nip(ctx, ctx->nip - 4);
2493 tcg_gen_andi_tl(t0, EA, mask);
2494 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2495 t1 = tcg_const_i32(POWERPC_EXCP_ALIGN);
2496 t2 = tcg_const_i32(0);
2497 gen_helper_raise_exception_err(t1, t2);
2498 tcg_temp_free_i32(t1);
2499 tcg_temp_free_i32(t2);
2500 gen_set_label(l1);
2501 tcg_temp_free(t0);
2504 /*** Integer load ***/
2505 #if defined(TARGET_PPC64)
2506 #define GEN_QEMU_LD_PPC64(width) \
2507 static always_inline void gen_qemu_ld##width##_ppc64(TCGv t0, TCGv t1, int flags)\
2509 if (likely(flags & 2)) \
2510 tcg_gen_qemu_ld##width(t0, t1, flags >> 2); \
2511 else { \
2512 TCGv addr = tcg_temp_new(); \
2513 tcg_gen_ext32u_tl(addr, t1); \
2514 tcg_gen_qemu_ld##width(t0, addr, flags >> 2); \
2515 tcg_temp_free(addr); \
2518 GEN_QEMU_LD_PPC64(8u)
2519 GEN_QEMU_LD_PPC64(8s)
2520 GEN_QEMU_LD_PPC64(16u)
2521 GEN_QEMU_LD_PPC64(16s)
2522 GEN_QEMU_LD_PPC64(32u)
2523 GEN_QEMU_LD_PPC64(32s)
2524 GEN_QEMU_LD_PPC64(64)
2526 #define GEN_QEMU_ST_PPC64(width) \
2527 static always_inline void gen_qemu_st##width##_ppc64(TCGv t0, TCGv t1, int flags)\
2529 if (likely(flags & 2)) \
2530 tcg_gen_qemu_st##width(t0, t1, flags >> 2); \
2531 else { \
2532 TCGv addr = tcg_temp_new(); \
2533 tcg_gen_ext32u_tl(addr, t1); \
2534 tcg_gen_qemu_st##width(t0, addr, flags >> 2); \
2535 tcg_temp_free(addr); \
2538 GEN_QEMU_ST_PPC64(8)
2539 GEN_QEMU_ST_PPC64(16)
2540 GEN_QEMU_ST_PPC64(32)
2541 GEN_QEMU_ST_PPC64(64)
2543 static always_inline void gen_qemu_ld8u(TCGv arg0, TCGv arg1, int flags)
2545 gen_qemu_ld8u_ppc64(arg0, arg1, flags);
2548 static always_inline void gen_qemu_ld8s(TCGv arg0, TCGv arg1, int flags)
2550 gen_qemu_ld8s_ppc64(arg0, arg1, flags);
2553 static always_inline void gen_qemu_ld16u(TCGv arg0, TCGv arg1, int flags)
2555 if (unlikely(flags & 1)) {
2556 TCGv_i32 t0;
2557 gen_qemu_ld16u_ppc64(arg0, arg1, flags);
2558 t0 = tcg_temp_new_i32();
2559 tcg_gen_trunc_tl_i32(t0, arg0);
2560 tcg_gen_bswap16_i32(t0, t0);
2561 tcg_gen_extu_i32_tl(arg0, t0);
2562 tcg_temp_free_i32(t0);
2563 } else
2564 gen_qemu_ld16u_ppc64(arg0, arg1, flags);
2567 static always_inline void gen_qemu_ld16s(TCGv arg0, TCGv arg1, int flags)
2569 if (unlikely(flags & 1)) {
2570 TCGv_i32 t0;
2571 gen_qemu_ld16u_ppc64(arg0, arg1, flags);
2572 t0 = tcg_temp_new_i32();
2573 tcg_gen_trunc_tl_i32(t0, arg0);
2574 tcg_gen_bswap16_i32(t0, t0);
2575 tcg_gen_extu_i32_tl(arg0, t0);
2576 tcg_gen_ext16s_tl(arg0, arg0);
2577 tcg_temp_free_i32(t0);
2578 } else
2579 gen_qemu_ld16s_ppc64(arg0, arg1, flags);
2582 static always_inline void gen_qemu_ld32u(TCGv arg0, TCGv arg1, int flags)
2584 if (unlikely(flags & 1)) {
2585 TCGv_i32 t0;
2586 gen_qemu_ld32u_ppc64(arg0, arg1, flags);
2587 t0 = tcg_temp_new_i32();
2588 tcg_gen_trunc_tl_i32(t0, arg0);
2589 tcg_gen_bswap_i32(t0, t0);
2590 tcg_gen_extu_i32_tl(arg0, t0);
2591 tcg_temp_free_i32(t0);
2592 } else
2593 gen_qemu_ld32u_ppc64(arg0, arg1, flags);
2596 static always_inline void gen_qemu_ld32s(TCGv arg0, TCGv arg1, int flags)
2598 if (unlikely(flags & 1)) {
2599 TCGv_i32 t0;
2600 gen_qemu_ld32u_ppc64(arg0, arg1, flags);
2601 t0 = tcg_temp_new_i32();
2602 tcg_gen_trunc_tl_i32(t0, arg0);
2603 tcg_gen_bswap_i32(t0, t0);
2604 tcg_gen_ext_i32_tl(arg0, t0);
2605 tcg_temp_free_i32(t0);
2606 } else
2607 gen_qemu_ld32s_ppc64(arg0, arg1, flags);
2610 static always_inline void gen_qemu_ld64(TCGv arg0, TCGv arg1, int flags)
2612 gen_qemu_ld64_ppc64(arg0, arg1, flags);
2613 if (unlikely(flags & 1))
2614 tcg_gen_bswap_i64(arg0, arg0);
2617 static always_inline void gen_qemu_st8(TCGv arg0, TCGv arg1, int flags)
2619 gen_qemu_st8_ppc64(arg0, arg1, flags);
2622 static always_inline void gen_qemu_st16(TCGv arg0, TCGv arg1, int flags)
2624 if (unlikely(flags & 1)) {
2625 TCGv_i32 t0;
2626 TCGv_i64 t1;
2627 t0 = tcg_temp_new_i32();
2628 tcg_gen_trunc_tl_i32(t0, arg0);
2629 tcg_gen_ext16u_i32(t0, t0);
2630 tcg_gen_bswap16_i32(t0, t0);
2631 t1 = tcg_temp_new_i64();
2632 tcg_gen_extu_i32_tl(t1, t0);
2633 tcg_temp_free_i32(t0);
2634 gen_qemu_st16_ppc64(t1, arg1, flags);
2635 tcg_temp_free_i64(t1);
2636 } else
2637 gen_qemu_st16_ppc64(arg0, arg1, flags);
2640 static always_inline void gen_qemu_st32(TCGv arg0, TCGv arg1, int flags)
2642 if (unlikely(flags & 1)) {
2643 TCGv_i32 t0;
2644 TCGv_i64 t1;
2645 t0 = tcg_temp_new_i32();
2646 tcg_gen_trunc_tl_i32(t0, arg0);
2647 tcg_gen_bswap_i32(t0, t0);
2648 t1 = tcg_temp_new_i64();
2649 tcg_gen_extu_i32_tl(t1, t0);
2650 tcg_temp_free_i32(t0);
2651 gen_qemu_st32_ppc64(t1, arg1, flags);
2652 tcg_temp_free_i64(t1);
2653 } else
2654 gen_qemu_st32_ppc64(arg0, arg1, flags);
2657 static always_inline void gen_qemu_st64(TCGv arg0, TCGv arg1, int flags)
2659 if (unlikely(flags & 1)) {
2660 TCGv_i64 t0 = tcg_temp_new_i64();
2661 tcg_gen_bswap_i64(t0, arg0);
2662 gen_qemu_st64_ppc64(t0, arg1, flags);
2663 tcg_temp_free_i64(t0);
2664 } else
2665 gen_qemu_st64_ppc64(arg0, arg1, flags);
2669 #else /* defined(TARGET_PPC64) */
2670 #define GEN_QEMU_LD_PPC32(width) \
2671 static always_inline void gen_qemu_ld##width##_ppc32(TCGv arg0, TCGv arg1, int flags) \
2673 tcg_gen_qemu_ld##width(arg0, arg1, flags >> 1); \
2675 GEN_QEMU_LD_PPC32(8u)
2676 GEN_QEMU_LD_PPC32(8s)
2677 GEN_QEMU_LD_PPC32(16u)
2678 GEN_QEMU_LD_PPC32(16s)
2679 GEN_QEMU_LD_PPC32(32u)
2680 GEN_QEMU_LD_PPC32(32s)
2681 static always_inline void gen_qemu_ld64_ppc32(TCGv_i64 arg0, TCGv arg1, int flags)
2683 tcg_gen_qemu_ld64(arg0, arg1, flags >> 1);
2686 #define GEN_QEMU_ST_PPC32(width) \
2687 static always_inline void gen_qemu_st##width##_ppc32(TCGv arg0, TCGv arg1, int flags) \
2689 tcg_gen_qemu_st##width(arg0, arg1, flags >> 1); \
2691 GEN_QEMU_ST_PPC32(8)
2692 GEN_QEMU_ST_PPC32(16)
2693 GEN_QEMU_ST_PPC32(32)
2694 static always_inline void gen_qemu_st64_ppc32(TCGv_i64 arg0, TCGv arg1, int flags)
2696 tcg_gen_qemu_st64(arg0, arg1, flags >> 1);
2699 static always_inline void gen_qemu_ld8u(TCGv arg0, TCGv arg1, int flags)
2701 gen_qemu_ld8u_ppc32(arg0, arg1, flags >> 1);
2704 static always_inline void gen_qemu_ld8s(TCGv arg0, TCGv arg1, int flags)
2706 gen_qemu_ld8s_ppc32(arg0, arg1, flags >> 1);
2709 static always_inline void gen_qemu_ld16u(TCGv arg0, TCGv arg1, int flags)
2711 gen_qemu_ld16u_ppc32(arg0, arg1, flags >> 1);
2712 if (unlikely(flags & 1))
2713 tcg_gen_bswap16_i32(arg0, arg0);
2716 static always_inline void gen_qemu_ld16s(TCGv arg0, TCGv arg1, int flags)
2718 if (unlikely(flags & 1)) {
2719 gen_qemu_ld16u_ppc32(arg0, arg1, flags);
2720 tcg_gen_bswap16_i32(arg0, arg0);
2721 tcg_gen_ext16s_i32(arg0, arg0);
2722 } else
2723 gen_qemu_ld16s_ppc32(arg0, arg1, flags);
2726 static always_inline void gen_qemu_ld32u(TCGv arg0, TCGv arg1, int flags)
2728 gen_qemu_ld32u_ppc32(arg0, arg1, flags);
2729 if (unlikely(flags & 1))
2730 tcg_gen_bswap_i32(arg0, arg0);
2733 static always_inline void gen_qemu_ld64(TCGv_i64 arg0, TCGv arg1, int flags)
2735 gen_qemu_ld64_ppc32(arg0, arg1, flags);
2736 if (unlikely(flags & 1))
2737 tcg_gen_bswap_i64(arg0, arg0);
2740 static always_inline void gen_qemu_st8(TCGv arg0, TCGv arg1, int flags)
2742 gen_qemu_st8_ppc32(arg0, arg1, flags);
2745 static always_inline void gen_qemu_st16(TCGv arg0, TCGv arg1, int flags)
2747 if (unlikely(flags & 1)) {
2748 TCGv_i32 temp = tcg_temp_new_i32();
2749 tcg_gen_ext16u_i32(temp, arg0);
2750 tcg_gen_bswap16_i32(temp, temp);
2751 gen_qemu_st16_ppc32(temp, arg1, flags);
2752 tcg_temp_free_i32(temp);
2753 } else
2754 gen_qemu_st16_ppc32(arg0, arg1, flags);
2757 static always_inline void gen_qemu_st32(TCGv arg0, TCGv arg1, int flags)
2759 if (unlikely(flags & 1)) {
2760 TCGv_i32 temp = tcg_temp_new_i32();
2761 tcg_gen_bswap_i32(temp, arg0);
2762 gen_qemu_st32_ppc32(temp, arg1, flags);
2763 tcg_temp_free_i32(temp);
2764 } else
2765 gen_qemu_st32_ppc32(arg0, arg1, flags);
2768 static always_inline void gen_qemu_st64(TCGv_i64 arg0, TCGv arg1, int flags)
2770 if (unlikely(flags & 1)) {
2771 TCGv_i64 temp = tcg_temp_new_i64();
2772 tcg_gen_bswap_i64(temp, arg0);
2773 gen_qemu_st64_ppc32(temp, arg1, flags);
2774 tcg_temp_free_i64(temp);
2775 } else
2776 gen_qemu_st64_ppc32(arg0, arg1, flags);
2778 #endif
2780 #define GEN_LD(name, ldop, opc, type) \
2781 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2783 TCGv EA = tcg_temp_new(); \
2784 gen_set_access_type(ACCESS_INT); \
2785 gen_addr_imm_index(EA, ctx, 0); \
2786 gen_qemu_##ldop(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
2787 tcg_temp_free(EA); \
2790 #define GEN_LDU(name, ldop, opc, type) \
2791 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2793 TCGv EA; \
2794 if (unlikely(rA(ctx->opcode) == 0 || \
2795 rA(ctx->opcode) == rD(ctx->opcode))) { \
2796 GEN_EXCP_INVAL(ctx); \
2797 return; \
2799 EA = tcg_temp_new(); \
2800 gen_set_access_type(ACCESS_INT); \
2801 if (type == PPC_64B) \
2802 gen_addr_imm_index(EA, ctx, 0x03); \
2803 else \
2804 gen_addr_imm_index(EA, ctx, 0); \
2805 gen_qemu_##ldop(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
2806 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2807 tcg_temp_free(EA); \
2810 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2811 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2813 TCGv EA; \
2814 if (unlikely(rA(ctx->opcode) == 0 || \
2815 rA(ctx->opcode) == rD(ctx->opcode))) { \
2816 GEN_EXCP_INVAL(ctx); \
2817 return; \
2819 EA = tcg_temp_new(); \
2820 gen_set_access_type(ACCESS_INT); \
2821 gen_addr_reg_index(EA, ctx); \
2822 gen_qemu_##ldop(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
2823 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2824 tcg_temp_free(EA); \
2827 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2828 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2830 TCGv EA = tcg_temp_new(); \
2831 gen_set_access_type(ACCESS_INT); \
2832 gen_addr_reg_index(EA, ctx); \
2833 gen_qemu_##ldop(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
2834 tcg_temp_free(EA); \
2837 #define GEN_LDS(name, ldop, op, type) \
2838 GEN_LD(name, ldop, op | 0x20, type); \
2839 GEN_LDU(name, ldop, op | 0x21, type); \
2840 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2841 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2843 /* lbz lbzu lbzux lbzx */
2844 GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER);
2845 /* lha lhau lhaux lhax */
2846 GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER);
2847 /* lhz lhzu lhzux lhzx */
2848 GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER);
2849 /* lwz lwzu lwzux lwzx */
2850 GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER);
2851 #if defined(TARGET_PPC64)
2852 /* lwaux */
2853 GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B);
2854 /* lwax */
2855 GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B);
2856 /* ldux */
2857 GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B);
2858 /* ldx */
2859 GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B);
2860 GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B)
2862 TCGv EA;
2863 if (Rc(ctx->opcode)) {
2864 if (unlikely(rA(ctx->opcode) == 0 ||
2865 rA(ctx->opcode) == rD(ctx->opcode))) {
2866 GEN_EXCP_INVAL(ctx);
2867 return;
2870 EA = tcg_temp_new();
2871 gen_set_access_type(ACCESS_INT);
2872 gen_addr_imm_index(EA, ctx, 0x03);
2873 if (ctx->opcode & 0x02) {
2874 /* lwa (lwau is undefined) */
2875 gen_qemu_ld32s(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx);
2876 } else {
2877 /* ld - ldu */
2878 gen_qemu_ld64(cpu_gpr[rD(ctx->opcode)], EA, ctx->mem_idx);
2880 if (Rc(ctx->opcode))
2881 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2882 tcg_temp_free(EA);
2884 /* lq */
2885 GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX)
2887 #if defined(CONFIG_USER_ONLY)
2888 GEN_EXCP_PRIVOPC(ctx);
2889 #else
2890 int ra, rd;
2891 TCGv EA;
2893 /* Restore CPU state */
2894 if (unlikely(ctx->supervisor == 0)) {
2895 GEN_EXCP_PRIVOPC(ctx);
2896 return;
2898 ra = rA(ctx->opcode);
2899 rd = rD(ctx->opcode);
2900 if (unlikely((rd & 1) || rd == ra)) {
2901 GEN_EXCP_INVAL(ctx);
2902 return;
2904 if (unlikely(ctx->mem_idx & 1)) {
2905 /* Little-endian mode is not handled */
2906 GEN_EXCP(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2907 return;
2909 EA = tcg_temp_new();
2910 gen_set_access_type(ACCESS_INT);
2911 gen_addr_imm_index(EA, ctx, 0x0F);
2912 gen_qemu_ld64(cpu_gpr[rd], EA, ctx->mem_idx);
2913 tcg_gen_addi_tl(EA, EA, 8);
2914 gen_qemu_ld64(cpu_gpr[rd+1], EA, ctx->mem_idx);
2915 tcg_temp_free(EA);
2916 #endif
2918 #endif
2920 /*** Integer store ***/
2921 #define GEN_ST(name, stop, opc, type) \
2922 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2924 TCGv EA = tcg_temp_new(); \
2925 gen_set_access_type(ACCESS_INT); \
2926 gen_addr_imm_index(EA, ctx, 0); \
2927 gen_qemu_##stop(cpu_gpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
2928 tcg_temp_free(EA); \
2931 #define GEN_STU(name, stop, opc, type) \
2932 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2934 TCGv EA; \
2935 if (unlikely(rA(ctx->opcode) == 0)) { \
2936 GEN_EXCP_INVAL(ctx); \
2937 return; \
2939 EA = tcg_temp_new(); \
2940 gen_set_access_type(ACCESS_INT); \
2941 if (type == PPC_64B) \
2942 gen_addr_imm_index(EA, ctx, 0x03); \
2943 else \
2944 gen_addr_imm_index(EA, ctx, 0); \
2945 gen_qemu_##stop(cpu_gpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
2946 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2947 tcg_temp_free(EA); \
2950 #define GEN_STUX(name, stop, opc2, opc3, type) \
2951 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2953 TCGv EA; \
2954 if (unlikely(rA(ctx->opcode) == 0)) { \
2955 GEN_EXCP_INVAL(ctx); \
2956 return; \
2958 EA = tcg_temp_new(); \
2959 gen_set_access_type(ACCESS_INT); \
2960 gen_addr_reg_index(EA, ctx); \
2961 gen_qemu_##stop(cpu_gpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
2962 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2963 tcg_temp_free(EA); \
2966 #define GEN_STX(name, stop, opc2, opc3, type) \
2967 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2969 TCGv EA = tcg_temp_new(); \
2970 gen_set_access_type(ACCESS_INT); \
2971 gen_addr_reg_index(EA, ctx); \
2972 gen_qemu_##stop(cpu_gpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
2973 tcg_temp_free(EA); \
2976 #define GEN_STS(name, stop, op, type) \
2977 GEN_ST(name, stop, op | 0x20, type); \
2978 GEN_STU(name, stop, op | 0x21, type); \
2979 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2980 GEN_STX(name, stop, 0x17, op | 0x00, type)
2982 /* stb stbu stbux stbx */
2983 GEN_STS(stb, st8, 0x06, PPC_INTEGER);
2984 /* sth sthu sthux sthx */
2985 GEN_STS(sth, st16, 0x0C, PPC_INTEGER);
2986 /* stw stwu stwux stwx */
2987 GEN_STS(stw, st32, 0x04, PPC_INTEGER);
2988 #if defined(TARGET_PPC64)
2989 GEN_STUX(std, st64, 0x15, 0x05, PPC_64B);
2990 GEN_STX(std, st64, 0x15, 0x04, PPC_64B);
2991 GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B)
2993 int rs;
2994 TCGv EA;
2996 rs = rS(ctx->opcode);
2997 if ((ctx->opcode & 0x3) == 0x2) {
2998 #if defined(CONFIG_USER_ONLY)
2999 GEN_EXCP_PRIVOPC(ctx);
3000 #else
3001 /* stq */
3002 if (unlikely(ctx->supervisor == 0)) {
3003 GEN_EXCP_PRIVOPC(ctx);
3004 return;
3006 if (unlikely(rs & 1)) {
3007 GEN_EXCP_INVAL(ctx);
3008 return;
3010 if (unlikely(ctx->mem_idx & 1)) {
3011 /* Little-endian mode is not handled */
3012 GEN_EXCP(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
3013 return;
3015 EA = tcg_temp_new();
3016 gen_set_access_type(ACCESS_INT);
3017 gen_addr_imm_index(EA, ctx, 0x03);
3018 gen_qemu_st64(cpu_gpr[rs], EA, ctx->mem_idx);
3019 tcg_gen_addi_tl(EA, EA, 8);
3020 gen_qemu_st64(cpu_gpr[rs+1], EA, ctx->mem_idx);
3021 tcg_temp_free(EA);
3022 #endif
3023 } else {
3024 /* std / stdu */
3025 if (Rc(ctx->opcode)) {
3026 if (unlikely(rA(ctx->opcode) == 0)) {
3027 GEN_EXCP_INVAL(ctx);
3028 return;
3031 EA = tcg_temp_new();
3032 gen_set_access_type(ACCESS_INT);
3033 gen_addr_imm_index(EA, ctx, 0x03);
3034 gen_qemu_st64(cpu_gpr[rs], EA, ctx->mem_idx);
3035 if (Rc(ctx->opcode))
3036 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
3037 tcg_temp_free(EA);
3040 #endif
3041 /*** Integer load and store with byte reverse ***/
3042 /* lhbrx */
3043 void always_inline gen_qemu_ld16ur(TCGv t0, TCGv t1, int flags)
3045 TCGv_i32 temp = tcg_temp_new_i32();
3046 gen_qemu_ld16u(t0, t1, flags);
3047 tcg_gen_trunc_tl_i32(temp, t0);
3048 tcg_gen_bswap16_i32(temp, temp);
3049 tcg_gen_extu_i32_tl(t0, temp);
3050 tcg_temp_free_i32(temp);
3052 GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER);
3054 /* lwbrx */
3055 void always_inline gen_qemu_ld32ur(TCGv t0, TCGv t1, int flags)
3057 TCGv_i32 temp = tcg_temp_new_i32();
3058 gen_qemu_ld32u(t0, t1, flags);
3059 tcg_gen_trunc_tl_i32(temp, t0);
3060 tcg_gen_bswap_i32(temp, temp);
3061 tcg_gen_extu_i32_tl(t0, temp);
3062 tcg_temp_free_i32(temp);
3064 GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER);
3066 /* sthbrx */
3067 void always_inline gen_qemu_st16r(TCGv t0, TCGv t1, int flags)
3069 TCGv_i32 temp = tcg_temp_new_i32();
3070 TCGv t2 = tcg_temp_new();
3071 tcg_gen_trunc_tl_i32(temp, t0);
3072 tcg_gen_ext16u_i32(temp, temp);
3073 tcg_gen_bswap16_i32(temp, temp);
3074 tcg_gen_extu_i32_tl(t2, temp);
3075 tcg_temp_free_i32(temp);
3076 gen_qemu_st16(t2, t1, flags);
3077 tcg_temp_free(t2);
3079 GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER);
3081 /* stwbrx */
3082 void always_inline gen_qemu_st32r(TCGv t0, TCGv t1, int flags)
3084 TCGv_i32 temp = tcg_temp_new_i32();
3085 TCGv t2 = tcg_temp_new();
3086 tcg_gen_trunc_tl_i32(temp, t0);
3087 tcg_gen_bswap_i32(temp, temp);
3088 tcg_gen_extu_i32_tl(t2, temp);
3089 tcg_temp_free_i32(temp);
3090 gen_qemu_st32(t2, t1, flags);
3091 tcg_temp_free(t2);
3093 GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER);
3095 /*** Integer load and store multiple ***/
3096 /* lmw */
3097 GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
3099 TCGv t0 = tcg_temp_new();
3100 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
3101 /* NIP cannot be restored if the memory exception comes from an helper */
3102 gen_update_nip(ctx, ctx->nip - 4);
3103 gen_addr_imm_index(t0, ctx, 0);
3104 gen_helper_lmw(t0, t1);
3105 tcg_temp_free(t0);
3106 tcg_temp_free_i32(t1);
3109 /* stmw */
3110 GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
3112 TCGv t0 = tcg_temp_new();
3113 TCGv_i32 t1 = tcg_const_i32(rS(ctx->opcode));
3114 /* NIP cannot be restored if the memory exception comes from an helper */
3115 gen_update_nip(ctx, ctx->nip - 4);
3116 gen_addr_imm_index(t0, ctx, 0);
3117 gen_helper_stmw(t0, t1);
3118 tcg_temp_free(t0);
3119 tcg_temp_free_i32(t1);
3122 /*** Integer load and store strings ***/
3123 /* lswi */
3124 /* PowerPC32 specification says we must generate an exception if
3125 * rA is in the range of registers to be loaded.
3126 * In an other hand, IBM says this is valid, but rA won't be loaded.
3127 * For now, I'll follow the spec...
3129 GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING)
3131 TCGv t0;
3132 TCGv_i32 t1, t2;
3133 int nb = NB(ctx->opcode);
3134 int start = rD(ctx->opcode);
3135 int ra = rA(ctx->opcode);
3136 int nr;
3138 if (nb == 0)
3139 nb = 32;
3140 nr = nb / 4;
3141 if (unlikely(((start + nr) > 32 &&
3142 start <= ra && (start + nr - 32) > ra) ||
3143 ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) {
3144 GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
3145 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_LSWX);
3146 return;
3148 /* NIP cannot be restored if the memory exception comes from an helper */
3149 gen_update_nip(ctx, ctx->nip - 4);
3150 t0 = tcg_temp_new();
3151 gen_addr_register(t0, ctx);
3152 t1 = tcg_const_i32(nb);
3153 t2 = tcg_const_i32(start);
3154 gen_helper_lsw(t0, t1, t2);
3155 tcg_temp_free(t0);
3156 tcg_temp_free_i32(t1);
3157 tcg_temp_free_i32(t2);
3160 /* lswx */
3161 GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING)
3163 TCGv t0 = tcg_temp_new();
3164 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
3165 TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
3166 TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
3167 /* NIP cannot be restored if the memory exception comes from an helper */
3168 gen_update_nip(ctx, ctx->nip - 4);
3169 gen_addr_reg_index(t0, ctx);
3170 gen_helper_lswx(t0, t1, t2, t3);
3171 tcg_temp_free(t0);
3172 tcg_temp_free_i32(t1);
3173 tcg_temp_free_i32(t2);
3174 tcg_temp_free_i32(t3);
3177 /* stswi */
3178 GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING)
3180 int nb = NB(ctx->opcode);
3181 TCGv t0 = tcg_temp_new();
3182 TCGv_i32 t1;
3183 TCGv_i32 t2 = tcg_const_i32(rS(ctx->opcode));
3184 /* NIP cannot be restored if the memory exception comes from an helper */
3185 gen_update_nip(ctx, ctx->nip - 4);
3186 gen_addr_register(t0, ctx);
3187 if (nb == 0)
3188 nb = 32;
3189 t1 = tcg_const_i32(nb);
3190 gen_helper_stsw(t0, t1, t2);
3191 tcg_temp_free(t0);
3192 tcg_temp_free_i32(t1);
3193 tcg_temp_free_i32(t2);
3196 /* stswx */
3197 GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING)
3199 TCGv t0 = tcg_temp_new();
3200 TCGv_i32 t1 = tcg_temp_new_i32();
3201 TCGv_i32 t2 = tcg_const_i32(rS(ctx->opcode));
3202 /* NIP cannot be restored if the memory exception comes from an helper */
3203 gen_update_nip(ctx, ctx->nip - 4);
3204 gen_addr_reg_index(t0, ctx);
3205 tcg_gen_trunc_tl_i32(t1, cpu_xer);
3206 tcg_gen_andi_i32(t1, t1, 0x7F);
3207 gen_helper_stsw(t0, t1, t2);
3208 tcg_temp_free(t0);
3209 tcg_temp_free_i32(t1);
3210 tcg_temp_free_i32(t2);
3213 /*** Memory synchronisation ***/
3214 /* eieio */
3215 GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO)
3219 /* isync */
3220 GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM)
3222 GEN_STOP(ctx);
3225 /* lwarx */
3226 GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES)
3228 TCGv t0 = tcg_temp_local_new();
3229 gen_set_access_type(ACCESS_RES);
3230 gen_addr_reg_index(t0, ctx);
3231 gen_check_align(ctx, t0, 0x03);
3232 #if defined(TARGET_PPC64)
3233 if (!ctx->sf_mode)
3234 tcg_gen_ext32u_tl(t0, t0);
3235 #endif
3236 gen_qemu_ld32u(cpu_gpr[rD(ctx->opcode)], t0, ctx->mem_idx);
3237 tcg_gen_mov_tl(cpu_reserve, t0);
3238 tcg_temp_free(t0);
3241 /* stwcx. */
3242 GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES)
3244 int l1 = gen_new_label();
3245 TCGv t0 = tcg_temp_local_new();
3246 gen_set_access_type(ACCESS_RES);
3247 gen_addr_reg_index(t0, ctx);
3248 gen_check_align(ctx, t0, 0x03);
3249 #if defined(TARGET_PPC64)
3250 if (!ctx->sf_mode)
3251 tcg_gen_ext32u_tl(t0, t0);
3252 #endif
3253 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
3254 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
3255 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
3256 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3257 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3258 gen_qemu_st32(cpu_gpr[rS(ctx->opcode)], t0, ctx->mem_idx);
3259 gen_set_label(l1);
3260 tcg_gen_movi_tl(cpu_reserve, -1);
3261 tcg_temp_free(t0);
3264 #if defined(TARGET_PPC64)
3265 /* ldarx */
3266 GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B)
3268 TCGv t0 = tcg_temp_local_new();
3269 gen_set_access_type(ACCESS_RES);
3270 gen_addr_reg_index(t0, ctx);
3271 gen_check_align(ctx, t0, 0x07);
3272 if (!ctx->sf_mode)
3273 tcg_gen_ext32u_tl(t0, t0);
3274 gen_qemu_ld64(cpu_gpr[rD(ctx->opcode)], t0, ctx->mem_idx);
3275 tcg_gen_mov_tl(cpu_reserve, t0);
3276 tcg_temp_free(t0);
3279 /* stdcx. */
3280 GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B)
3282 int l1 = gen_new_label();
3283 TCGv t0 = tcg_temp_local_new();
3284 gen_set_access_type(ACCESS_RES);
3285 gen_addr_reg_index(t0, ctx);
3286 gen_check_align(ctx, t0, 0x07);
3287 if (!ctx->sf_mode)
3288 tcg_gen_ext32u_tl(t0, t0);
3289 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
3290 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
3291 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
3292 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3293 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3294 gen_qemu_st64(cpu_gpr[rS(ctx->opcode)], t0, ctx->mem_idx);
3295 gen_set_label(l1);
3296 tcg_gen_movi_tl(cpu_reserve, -1);
3297 tcg_temp_free(t0);
3299 #endif /* defined(TARGET_PPC64) */
3301 /* sync */
3302 GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC)
3306 /* wait */
3307 GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT)
3309 TCGv_i32 t0 = tcg_temp_new_i32();
3310 tcg_gen_st_i32(t0, cpu_env, offsetof(CPUState, halted));
3311 tcg_temp_free_i32(t0);
3312 /* Stop translation, as the CPU is supposed to sleep from now */
3313 GEN_EXCP(ctx, EXCP_HLT, 1);
3316 /*** Floating-point load ***/
3317 #define GEN_LDF(name, ldop, opc, type) \
3318 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3320 TCGv EA; \
3321 if (unlikely(!ctx->fpu_enabled)) { \
3322 GEN_EXCP_NO_FP(ctx); \
3323 return; \
3325 gen_set_access_type(ACCESS_FLOAT); \
3326 EA = tcg_temp_new(); \
3327 gen_addr_imm_index(EA, ctx, 0); \
3328 gen_qemu_##ldop(cpu_fpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
3329 tcg_temp_free(EA); \
3332 #define GEN_LDUF(name, ldop, opc, type) \
3333 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3335 TCGv EA; \
3336 if (unlikely(!ctx->fpu_enabled)) { \
3337 GEN_EXCP_NO_FP(ctx); \
3338 return; \
3340 if (unlikely(rA(ctx->opcode) == 0)) { \
3341 GEN_EXCP_INVAL(ctx); \
3342 return; \
3344 gen_set_access_type(ACCESS_FLOAT); \
3345 EA = tcg_temp_new(); \
3346 gen_addr_imm_index(EA, ctx, 0); \
3347 gen_qemu_##ldop(cpu_fpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
3348 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3349 tcg_temp_free(EA); \
3352 #define GEN_LDUXF(name, ldop, opc, type) \
3353 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3355 TCGv EA; \
3356 if (unlikely(!ctx->fpu_enabled)) { \
3357 GEN_EXCP_NO_FP(ctx); \
3358 return; \
3360 if (unlikely(rA(ctx->opcode) == 0)) { \
3361 GEN_EXCP_INVAL(ctx); \
3362 return; \
3364 gen_set_access_type(ACCESS_FLOAT); \
3365 EA = tcg_temp_new(); \
3366 gen_addr_reg_index(EA, ctx); \
3367 gen_qemu_##ldop(cpu_fpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
3368 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3369 tcg_temp_free(EA); \
3372 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3373 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3375 TCGv EA; \
3376 if (unlikely(!ctx->fpu_enabled)) { \
3377 GEN_EXCP_NO_FP(ctx); \
3378 return; \
3380 gen_set_access_type(ACCESS_FLOAT); \
3381 EA = tcg_temp_new(); \
3382 gen_addr_reg_index(EA, ctx); \
3383 gen_qemu_##ldop(cpu_fpr[rD(ctx->opcode)], EA, ctx->mem_idx); \
3384 tcg_temp_free(EA); \
3387 #define GEN_LDFS(name, ldop, op, type) \
3388 GEN_LDF(name, ldop, op | 0x20, type); \
3389 GEN_LDUF(name, ldop, op | 0x21, type); \
3390 GEN_LDUXF(name, ldop, op | 0x01, type); \
3391 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3393 static always_inline void gen_qemu_ld32fs(TCGv_i64 arg1, TCGv arg2, int flags)
3395 TCGv t0 = tcg_temp_new();
3396 TCGv_i32 t1 = tcg_temp_new_i32();
3397 gen_qemu_ld32u(t0, arg2, flags);
3398 tcg_gen_trunc_tl_i32(t1, t0);
3399 tcg_temp_free(t0);
3400 gen_helper_float32_to_float64(arg1, t1);
3401 tcg_temp_free_i32(t1);
3404 /* lfd lfdu lfdux lfdx */
3405 GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT);
3406 /* lfs lfsu lfsux lfsx */
3407 GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT);
3409 /*** Floating-point store ***/
3410 #define GEN_STF(name, stop, opc, type) \
3411 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3413 TCGv EA; \
3414 if (unlikely(!ctx->fpu_enabled)) { \
3415 GEN_EXCP_NO_FP(ctx); \
3416 return; \
3418 gen_set_access_type(ACCESS_FLOAT); \
3419 EA = tcg_temp_new(); \
3420 gen_addr_imm_index(EA, ctx, 0); \
3421 gen_qemu_##stop(cpu_fpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
3422 tcg_temp_free(EA); \
3425 #define GEN_STUF(name, stop, opc, type) \
3426 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3428 TCGv EA; \
3429 if (unlikely(!ctx->fpu_enabled)) { \
3430 GEN_EXCP_NO_FP(ctx); \
3431 return; \
3433 if (unlikely(rA(ctx->opcode) == 0)) { \
3434 GEN_EXCP_INVAL(ctx); \
3435 return; \
3437 gen_set_access_type(ACCESS_FLOAT); \
3438 EA = tcg_temp_new(); \
3439 gen_addr_imm_index(EA, ctx, 0); \
3440 gen_qemu_##stop(cpu_fpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
3441 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3442 tcg_temp_free(EA); \
3445 #define GEN_STUXF(name, stop, opc, type) \
3446 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3448 TCGv EA; \
3449 if (unlikely(!ctx->fpu_enabled)) { \
3450 GEN_EXCP_NO_FP(ctx); \
3451 return; \
3453 if (unlikely(rA(ctx->opcode) == 0)) { \
3454 GEN_EXCP_INVAL(ctx); \
3455 return; \
3457 gen_set_access_type(ACCESS_FLOAT); \
3458 EA = tcg_temp_new(); \
3459 gen_addr_reg_index(EA, ctx); \
3460 gen_qemu_##stop(cpu_fpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
3461 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3462 tcg_temp_free(EA); \
3465 #define GEN_STXF(name, stop, opc2, opc3, type) \
3466 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3468 TCGv EA; \
3469 if (unlikely(!ctx->fpu_enabled)) { \
3470 GEN_EXCP_NO_FP(ctx); \
3471 return; \
3473 gen_set_access_type(ACCESS_FLOAT); \
3474 EA = tcg_temp_new(); \
3475 gen_addr_reg_index(EA, ctx); \
3476 gen_qemu_##stop(cpu_fpr[rS(ctx->opcode)], EA, ctx->mem_idx); \
3477 tcg_temp_free(EA); \
3480 #define GEN_STFS(name, stop, op, type) \
3481 GEN_STF(name, stop, op | 0x20, type); \
3482 GEN_STUF(name, stop, op | 0x21, type); \
3483 GEN_STUXF(name, stop, op | 0x01, type); \
3484 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3486 static always_inline void gen_qemu_st32fs(TCGv_i64 arg1, TCGv arg2, int flags)
3488 TCGv_i32 t0 = tcg_temp_new_i32();
3489 TCGv t1 = tcg_temp_new();
3490 gen_helper_float64_to_float32(t0, arg1);
3491 tcg_gen_extu_i32_tl(t1, t0);
3492 tcg_temp_free_i32(t0);
3493 gen_qemu_st32(t1, arg2, flags);
3494 tcg_temp_free(t1);
3497 /* stfd stfdu stfdux stfdx */
3498 GEN_STFS(stfd, st64, 0x16, PPC_FLOAT);
3499 /* stfs stfsu stfsux stfsx */
3500 GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT);
3502 /* Optional: */
3503 static always_inline void gen_qemu_st32fiw(TCGv_i64 arg1, TCGv arg2, int flags)
3505 TCGv t0 = tcg_temp_new();
3506 tcg_gen_trunc_i64_tl(t0, arg1),
3507 gen_qemu_st32(t0, arg2, flags);
3508 tcg_temp_free(t0);
3510 /* stfiwx */
3511 GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX);
3513 /*** Branch ***/
3514 static always_inline void gen_goto_tb (DisasContext *ctx, int n,
3515 target_ulong dest)
3517 TranslationBlock *tb;
3518 tb = ctx->tb;
3519 #if defined(TARGET_PPC64)
3520 if (!ctx->sf_mode)
3521 dest = (uint32_t) dest;
3522 #endif
3523 if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) &&
3524 likely(!ctx->singlestep_enabled)) {
3525 tcg_gen_goto_tb(n);
3526 tcg_gen_movi_tl(cpu_nip, dest & ~3);
3527 tcg_gen_exit_tb((long)tb + n);
3528 } else {
3529 tcg_gen_movi_tl(cpu_nip, dest & ~3);
3530 if (unlikely(ctx->singlestep_enabled)) {
3531 if ((ctx->singlestep_enabled &
3532 (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) &&
3533 ctx->exception == POWERPC_EXCP_BRANCH) {
3534 target_ulong tmp = ctx->nip;
3535 ctx->nip = dest;
3536 GEN_EXCP(ctx, POWERPC_EXCP_TRACE, 0);
3537 ctx->nip = tmp;
3539 if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) {
3540 gen_update_nip(ctx, dest);
3541 gen_helper_raise_debug();
3544 tcg_gen_exit_tb(0);
3548 static always_inline void gen_setlr (DisasContext *ctx, target_ulong nip)
3550 #if defined(TARGET_PPC64)
3551 if (ctx->sf_mode == 0)
3552 tcg_gen_movi_tl(cpu_lr, (uint32_t)nip);
3553 else
3554 #endif
3555 tcg_gen_movi_tl(cpu_lr, nip);
3558 /* b ba bl bla */
3559 GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3561 target_ulong li, target;
3563 ctx->exception = POWERPC_EXCP_BRANCH;
3564 /* sign extend LI */
3565 #if defined(TARGET_PPC64)
3566 if (ctx->sf_mode)
3567 li = ((int64_t)LI(ctx->opcode) << 38) >> 38;
3568 else
3569 #endif
3570 li = ((int32_t)LI(ctx->opcode) << 6) >> 6;
3571 if (likely(AA(ctx->opcode) == 0))
3572 target = ctx->nip + li - 4;
3573 else
3574 target = li;
3575 if (LK(ctx->opcode))
3576 gen_setlr(ctx, ctx->nip);
3577 gen_goto_tb(ctx, 0, target);
3580 #define BCOND_IM 0
3581 #define BCOND_LR 1
3582 #define BCOND_CTR 2
3584 static always_inline void gen_bcond (DisasContext *ctx, int type)
3586 uint32_t bo = BO(ctx->opcode);
3587 int l1 = gen_new_label();
3588 TCGv target;
3590 ctx->exception = POWERPC_EXCP_BRANCH;
3591 if (type == BCOND_LR || type == BCOND_CTR) {
3592 target = tcg_temp_local_new();
3593 if (type == BCOND_CTR)
3594 tcg_gen_mov_tl(target, cpu_ctr);
3595 else
3596 tcg_gen_mov_tl(target, cpu_lr);
3598 if (LK(ctx->opcode))
3599 gen_setlr(ctx, ctx->nip);
3600 l1 = gen_new_label();
3601 if ((bo & 0x4) == 0) {
3602 /* Decrement and test CTR */
3603 TCGv temp = tcg_temp_new();
3604 if (unlikely(type == BCOND_CTR)) {
3605 GEN_EXCP_INVAL(ctx);
3606 return;
3608 tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);
3609 #if defined(TARGET_PPC64)
3610 if (!ctx->sf_mode)
3611 tcg_gen_ext32u_tl(temp, cpu_ctr);
3612 else
3613 #endif
3614 tcg_gen_mov_tl(temp, cpu_ctr);
3615 if (bo & 0x2) {
3616 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1);
3617 } else {
3618 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1);
3620 tcg_temp_free(temp);
3622 if ((bo & 0x10) == 0) {
3623 /* Test CR */
3624 uint32_t bi = BI(ctx->opcode);
3625 uint32_t mask = 1 << (3 - (bi & 0x03));
3626 TCGv_i32 temp = tcg_temp_new_i32();
3628 if (bo & 0x8) {
3629 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3630 tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1);
3631 } else {
3632 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3633 tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1);
3635 tcg_temp_free_i32(temp);
3637 if (type == BCOND_IM) {
3638 target_ulong li = (target_long)((int16_t)(BD(ctx->opcode)));
3639 if (likely(AA(ctx->opcode) == 0)) {
3640 gen_goto_tb(ctx, 0, ctx->nip + li - 4);
3641 } else {
3642 gen_goto_tb(ctx, 0, li);
3644 gen_set_label(l1);
3645 gen_goto_tb(ctx, 1, ctx->nip);
3646 } else {
3647 #if defined(TARGET_PPC64)
3648 if (!(ctx->sf_mode))
3649 tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
3650 else
3651 #endif
3652 tcg_gen_andi_tl(cpu_nip, target, ~3);
3653 tcg_gen_exit_tb(0);
3654 gen_set_label(l1);
3655 #if defined(TARGET_PPC64)
3656 if (!(ctx->sf_mode))
3657 tcg_gen_movi_tl(cpu_nip, (uint32_t)ctx->nip);
3658 else
3659 #endif
3660 tcg_gen_movi_tl(cpu_nip, ctx->nip);
3661 tcg_gen_exit_tb(0);
3665 GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3667 gen_bcond(ctx, BCOND_IM);
3670 GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW)
3672 gen_bcond(ctx, BCOND_CTR);
3675 GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW)
3677 gen_bcond(ctx, BCOND_LR);
3680 /*** Condition register logical ***/
3681 #define GEN_CRLOGIC(name, tcg_op, opc) \
3682 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER) \
3684 uint8_t bitmask; \
3685 int sh; \
3686 TCGv_i32 t0, t1; \
3687 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3688 t0 = tcg_temp_new_i32(); \
3689 if (sh > 0) \
3690 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3691 else if (sh < 0) \
3692 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3693 else \
3694 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3695 t1 = tcg_temp_new_i32(); \
3696 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3697 if (sh > 0) \
3698 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3699 else if (sh < 0) \
3700 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3701 else \
3702 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3703 tcg_op(t0, t0, t1); \
3704 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3705 tcg_gen_andi_i32(t0, t0, bitmask); \
3706 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3707 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3708 tcg_temp_free_i32(t0); \
3709 tcg_temp_free_i32(t1); \
3712 /* crand */
3713 GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08);
3714 /* crandc */
3715 GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04);
3716 /* creqv */
3717 GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09);
3718 /* crnand */
3719 GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07);
3720 /* crnor */
3721 GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01);
3722 /* cror */
3723 GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E);
3724 /* crorc */
3725 GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D);
3726 /* crxor */
3727 GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06);
3728 /* mcrf */
3729 GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER)
3731 tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]);
3734 /*** System linkage ***/
3735 /* rfi (supervisor only) */
3736 GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW)
3738 #if defined(CONFIG_USER_ONLY)
3739 GEN_EXCP_PRIVOPC(ctx);
3740 #else
3741 /* Restore CPU state */
3742 if (unlikely(!ctx->supervisor)) {
3743 GEN_EXCP_PRIVOPC(ctx);
3744 return;
3746 gen_helper_rfi();
3747 GEN_SYNC(ctx);
3748 #endif
3751 #if defined(TARGET_PPC64)
3752 GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B)
3754 #if defined(CONFIG_USER_ONLY)
3755 GEN_EXCP_PRIVOPC(ctx);
3756 #else
3757 /* Restore CPU state */
3758 if (unlikely(!ctx->supervisor)) {
3759 GEN_EXCP_PRIVOPC(ctx);
3760 return;
3762 gen_helper_rfid();
3763 GEN_SYNC(ctx);
3764 #endif
3767 GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H)
3769 #if defined(CONFIG_USER_ONLY)
3770 GEN_EXCP_PRIVOPC(ctx);
3771 #else
3772 /* Restore CPU state */
3773 if (unlikely(ctx->supervisor <= 1)) {
3774 GEN_EXCP_PRIVOPC(ctx);
3775 return;
3777 gen_helper_hrfid();
3778 GEN_SYNC(ctx);
3779 #endif
3781 #endif
3783 /* sc */
3784 #if defined(CONFIG_USER_ONLY)
3785 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3786 #else
3787 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3788 #endif
3789 GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW)
3791 uint32_t lev;
3793 lev = (ctx->opcode >> 5) & 0x7F;
3794 GEN_EXCP(ctx, POWERPC_SYSCALL, lev);
3797 /*** Trap ***/
3798 /* tw */
3799 GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW)
3801 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3802 /* Update the nip since this might generate a trap exception */
3803 gen_update_nip(ctx, ctx->nip);
3804 gen_helper_tw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
3805 tcg_temp_free_i32(t0);
3808 /* twi */
3809 GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3811 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3812 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3813 /* Update the nip since this might generate a trap exception */
3814 gen_update_nip(ctx, ctx->nip);
3815 gen_helper_tw(cpu_gpr[rA(ctx->opcode)], t0, t1);
3816 tcg_temp_free(t0);
3817 tcg_temp_free_i32(t1);
3820 #if defined(TARGET_PPC64)
3821 /* td */
3822 GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B)
3824 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3825 /* Update the nip since this might generate a trap exception */
3826 gen_update_nip(ctx, ctx->nip);
3827 gen_helper_td(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
3828 tcg_temp_free_i32(t0);
3831 /* tdi */
3832 GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B)
3834 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3835 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3836 /* Update the nip since this might generate a trap exception */
3837 gen_update_nip(ctx, ctx->nip);
3838 gen_helper_td(cpu_gpr[rA(ctx->opcode)], t0, t1);
3839 tcg_temp_free(t0);
3840 tcg_temp_free_i32(t1);
3842 #endif
3844 /*** Processor control ***/
3845 /* mcrxr */
3846 GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC)
3848 tcg_gen_trunc_tl_i32(cpu_crf[crfD(ctx->opcode)], cpu_xer);
3849 tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], XER_CA);
3850 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_SO | 1 << XER_OV | 1 << XER_CA));
3853 /* mfcr */
3854 GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC)
3856 uint32_t crm, crn;
3858 if (likely(ctx->opcode & 0x00100000)) {
3859 crm = CRM(ctx->opcode);
3860 if (likely((crm ^ (crm - 1)) == 0)) {
3861 crn = ffs(crm);
3862 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
3864 } else {
3865 gen_helper_load_cr(cpu_gpr[rD(ctx->opcode)]);
3869 /* mfmsr */
3870 GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC)
3872 #if defined(CONFIG_USER_ONLY)
3873 GEN_EXCP_PRIVREG(ctx);
3874 #else
3875 if (unlikely(!ctx->supervisor)) {
3876 GEN_EXCP_PRIVREG(ctx);
3877 return;
3879 gen_op_load_msr();
3880 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
3881 #endif
3884 #if 1
3885 #define SPR_NOACCESS ((void *)(-1UL))
3886 #else
3887 static void spr_noaccess (void *opaque, int sprn)
3889 sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
3890 printf("ERROR: try to access SPR %d !\n", sprn);
3892 #define SPR_NOACCESS (&spr_noaccess)
3893 #endif
3895 /* mfspr */
3896 static always_inline void gen_op_mfspr (DisasContext *ctx)
3898 void (*read_cb)(void *opaque, int sprn);
3899 uint32_t sprn = SPR(ctx->opcode);
3901 #if !defined(CONFIG_USER_ONLY)
3902 if (ctx->supervisor == 2)
3903 read_cb = ctx->spr_cb[sprn].hea_read;
3904 else if (ctx->supervisor)
3905 read_cb = ctx->spr_cb[sprn].oea_read;
3906 else
3907 #endif
3908 read_cb = ctx->spr_cb[sprn].uea_read;
3909 if (likely(read_cb != NULL)) {
3910 if (likely(read_cb != SPR_NOACCESS)) {
3911 (*read_cb)(ctx, sprn);
3912 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
3913 } else {
3914 /* Privilege exception */
3915 /* This is a hack to avoid warnings when running Linux:
3916 * this OS breaks the PowerPC virtualisation model,
3917 * allowing userland application to read the PVR
3919 if (sprn != SPR_PVR) {
3920 if (loglevel != 0) {
3921 fprintf(logfile, "Trying to read privileged spr %d %03x at "
3922 ADDRX "\n", sprn, sprn, ctx->nip);
3924 printf("Trying to read privileged spr %d %03x at " ADDRX "\n",
3925 sprn, sprn, ctx->nip);
3927 GEN_EXCP_PRIVREG(ctx);
3929 } else {
3930 /* Not defined */
3931 if (loglevel != 0) {
3932 fprintf(logfile, "Trying to read invalid spr %d %03x at "
3933 ADDRX "\n", sprn, sprn, ctx->nip);
3935 printf("Trying to read invalid spr %d %03x at " ADDRX "\n",
3936 sprn, sprn, ctx->nip);
3937 GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
3938 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_SPR);
3942 GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC)
3944 gen_op_mfspr(ctx);
3947 /* mftb */
3948 GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB)
3950 gen_op_mfspr(ctx);
3953 /* mtcrf */
3954 GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC)
3956 uint32_t crm, crn;
3958 crm = CRM(ctx->opcode);
3959 if (likely((ctx->opcode & 0x00100000) || (crm ^ (crm - 1)) == 0)) {
3960 TCGv_i32 temp = tcg_temp_new_i32();
3961 crn = ffs(crm);
3962 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
3963 tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
3964 tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
3965 tcg_temp_free_i32(temp);
3966 } else {
3967 TCGv_i32 temp = tcg_const_i32(crm);
3968 gen_helper_store_cr(cpu_gpr[rS(ctx->opcode)], temp);
3969 tcg_temp_free_i32(temp);
3973 /* mtmsr */
3974 #if defined(TARGET_PPC64)
3975 GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B)
3977 #if defined(CONFIG_USER_ONLY)
3978 GEN_EXCP_PRIVREG(ctx);
3979 #else
3980 if (unlikely(!ctx->supervisor)) {
3981 GEN_EXCP_PRIVREG(ctx);
3982 return;
3984 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
3985 if (ctx->opcode & 0x00010000) {
3986 /* Special form that does not need any synchronisation */
3987 gen_op_update_riee();
3988 } else {
3989 /* XXX: we need to update nip before the store
3990 * if we enter power saving mode, we will exit the loop
3991 * directly from ppc_store_msr
3993 gen_update_nip(ctx, ctx->nip);
3994 gen_op_store_msr();
3995 /* Must stop the translation as machine state (may have) changed */
3996 /* Note that mtmsr is not always defined as context-synchronizing */
3997 ctx->exception = POWERPC_EXCP_STOP;
3999 #endif
4001 #endif
4003 GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC)
4005 #if defined(CONFIG_USER_ONLY)
4006 GEN_EXCP_PRIVREG(ctx);
4007 #else
4008 if (unlikely(!ctx->supervisor)) {
4009 GEN_EXCP_PRIVREG(ctx);
4010 return;
4012 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4013 if (ctx->opcode & 0x00010000) {
4014 /* Special form that does not need any synchronisation */
4015 gen_op_update_riee();
4016 } else {
4017 /* XXX: we need to update nip before the store
4018 * if we enter power saving mode, we will exit the loop
4019 * directly from ppc_store_msr
4021 gen_update_nip(ctx, ctx->nip);
4022 #if defined(TARGET_PPC64)
4023 if (!ctx->sf_mode)
4024 gen_op_store_msr_32();
4025 else
4026 #endif
4027 gen_op_store_msr();
4028 /* Must stop the translation as machine state (may have) changed */
4029 /* Note that mtmsrd is not always defined as context-synchronizing */
4030 ctx->exception = POWERPC_EXCP_STOP;
4032 #endif
4035 /* mtspr */
4036 GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC)
4038 void (*write_cb)(void *opaque, int sprn);
4039 uint32_t sprn = SPR(ctx->opcode);
4041 #if !defined(CONFIG_USER_ONLY)
4042 if (ctx->supervisor == 2)
4043 write_cb = ctx->spr_cb[sprn].hea_write;
4044 else if (ctx->supervisor)
4045 write_cb = ctx->spr_cb[sprn].oea_write;
4046 else
4047 #endif
4048 write_cb = ctx->spr_cb[sprn].uea_write;
4049 if (likely(write_cb != NULL)) {
4050 if (likely(write_cb != SPR_NOACCESS)) {
4051 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4052 (*write_cb)(ctx, sprn);
4053 } else {
4054 /* Privilege exception */
4055 if (loglevel != 0) {
4056 fprintf(logfile, "Trying to write privileged spr %d %03x at "
4057 ADDRX "\n", sprn, sprn, ctx->nip);
4059 printf("Trying to write privileged spr %d %03x at " ADDRX "\n",
4060 sprn, sprn, ctx->nip);
4061 GEN_EXCP_PRIVREG(ctx);
4063 } else {
4064 /* Not defined */
4065 if (loglevel != 0) {
4066 fprintf(logfile, "Trying to write invalid spr %d %03x at "
4067 ADDRX "\n", sprn, sprn, ctx->nip);
4069 printf("Trying to write invalid spr %d %03x at " ADDRX "\n",
4070 sprn, sprn, ctx->nip);
4071 GEN_EXCP(ctx, POWERPC_EXCP_PROGRAM,
4072 POWERPC_EXCP_INVAL | POWERPC_EXCP_INVAL_SPR);
4076 /*** Cache management ***/
4077 /* dcbf */
4078 GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE)
4080 /* XXX: specification says this is treated as a load by the MMU */
4081 TCGv t0 = tcg_temp_new();
4082 gen_set_access_type(ACCESS_CACHE);
4083 gen_addr_reg_index(t0, ctx);
4084 gen_qemu_ld8u(t0, t0, ctx->mem_idx);
4085 tcg_temp_free(t0);
4088 /* dcbi (Supervisor only) */
4089 GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE)
4091 #if defined(CONFIG_USER_ONLY)
4092 GEN_EXCP_PRIVOPC(ctx);
4093 #else
4094 TCGv EA, val;
4095 if (unlikely(!ctx->supervisor)) {
4096 GEN_EXCP_PRIVOPC(ctx);
4097 return;
4099 EA = tcg_temp_new();
4100 gen_set_access_type(ACCESS_CACHE);
4101 gen_addr_reg_index(EA, ctx);
4102 val = tcg_temp_new();
4103 /* XXX: specification says this should be treated as a store by the MMU */
4104 gen_qemu_ld8u(val, EA, ctx->mem_idx);
4105 gen_qemu_st8(val, EA, ctx->mem_idx);
4106 tcg_temp_free(val);
4107 tcg_temp_free(EA);
4108 #endif
4111 /* dcdst */
4112 GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE)
4114 /* XXX: specification say this is treated as a load by the MMU */
4115 TCGv t0 = tcg_temp_new();
4116 gen_set_access_type(ACCESS_CACHE);
4117 gen_addr_reg_index(t0, ctx);
4118 gen_qemu_ld8u(t0, t0, ctx->mem_idx);
4119 tcg_temp_free(t0);
4122 /* dcbt */
4123 GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE)
4125 /* interpreted as no-op */
4126 /* XXX: specification say this is treated as a load by the MMU
4127 * but does not generate any exception
4131 /* dcbtst */
4132 GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE)
4134 /* interpreted as no-op */
4135 /* XXX: specification say this is treated as a load by the MMU
4136 * but does not generate any exception
4140 /* dcbz */
4141 GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ)
4143 TCGv t0 = tcg_temp_new();
4144 gen_addr_reg_index(t0, ctx);
4145 /* NIP cannot be restored if the memory exception comes from an helper */
4146 gen_update_nip(ctx, ctx->nip - 4);
4147 gen_helper_dcbz(t0);
4148 tcg_temp_free(t0);
4151 GEN_HANDLER2(dcbz_970, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT)
4153 TCGv t0 = tcg_temp_new();
4154 gen_addr_reg_index(t0, ctx);
4155 /* NIP cannot be restored if the memory exception comes from an helper */
4156 gen_update_nip(ctx, ctx->nip - 4);
4157 if (ctx->opcode & 0x00200000)
4158 gen_helper_dcbz(t0);
4159 else
4160 gen_helper_dcbz_970(t0);
4161 tcg_temp_free(t0);
4164 /* icbi */
4165 GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI)
4167 TCGv t0 = tcg_temp_new();
4168 /* NIP cannot be restored if the memory exception comes from an helper */
4169 gen_update_nip(ctx, ctx->nip - 4);
4170 gen_addr_reg_index(t0, ctx);
4171 gen_helper_icbi(t0);
4172 tcg_temp_free(t0);
4175 /* Optional: */
4176 /* dcba */
4177 GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA)
4179 /* interpreted as no-op */
4180 /* XXX: specification say this is treated as a store by the MMU
4181 * but does not generate any exception
4185 /*** Segment register manipulation ***/
4186 /* Supervisor only: */
4187 /* mfsr */
4188 GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT)
4190 #if defined(CONFIG_USER_ONLY)
4191 GEN_EXCP_PRIVREG(ctx);
4192 #else
4193 if (unlikely(!ctx->supervisor)) {
4194 GEN_EXCP_PRIVREG(ctx);
4195 return;
4197 tcg_gen_movi_tl(cpu_T[1], SR(ctx->opcode));
4198 gen_op_load_sr();
4199 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4200 #endif
4203 /* mfsrin */
4204 GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT)
4206 #if defined(CONFIG_USER_ONLY)
4207 GEN_EXCP_PRIVREG(ctx);
4208 #else
4209 if (unlikely(!ctx->supervisor)) {
4210 GEN_EXCP_PRIVREG(ctx);
4211 return;
4213 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4214 gen_op_srli_T1(28);
4215 gen_op_load_sr();
4216 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4217 #endif
4220 /* mtsr */
4221 GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT)
4223 #if defined(CONFIG_USER_ONLY)
4224 GEN_EXCP_PRIVREG(ctx);
4225 #else
4226 if (unlikely(!ctx->supervisor)) {
4227 GEN_EXCP_PRIVREG(ctx);
4228 return;
4230 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4231 tcg_gen_movi_tl(cpu_T[1], SR(ctx->opcode));
4232 gen_op_store_sr();
4233 #endif
4236 /* mtsrin */
4237 GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT)
4239 #if defined(CONFIG_USER_ONLY)
4240 GEN_EXCP_PRIVREG(ctx);
4241 #else
4242 if (unlikely(!ctx->supervisor)) {
4243 GEN_EXCP_PRIVREG(ctx);
4244 return;
4246 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4247 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4248 gen_op_srli_T1(28);
4249 gen_op_store_sr();
4250 #endif
4253 #if defined(TARGET_PPC64)
4254 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4255 /* mfsr */
4256 GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B)
4258 #if defined(CONFIG_USER_ONLY)
4259 GEN_EXCP_PRIVREG(ctx);
4260 #else
4261 if (unlikely(!ctx->supervisor)) {
4262 GEN_EXCP_PRIVREG(ctx);
4263 return;
4265 tcg_gen_movi_tl(cpu_T[1], SR(ctx->opcode));
4266 gen_op_load_slb();
4267 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4268 #endif
4271 /* mfsrin */
4272 GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
4273 PPC_SEGMENT_64B)
4275 #if defined(CONFIG_USER_ONLY)
4276 GEN_EXCP_PRIVREG(ctx);
4277 #else
4278 if (unlikely(!ctx->supervisor)) {
4279 GEN_EXCP_PRIVREG(ctx);
4280 return;
4282 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4283 gen_op_srli_T1(28);
4284 gen_op_load_slb();
4285 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4286 #endif
4289 /* mtsr */
4290 GEN_HANDLER2(mtsr_64b, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B)
4292 #if defined(CONFIG_USER_ONLY)
4293 GEN_EXCP_PRIVREG(ctx);
4294 #else
4295 if (unlikely(!ctx->supervisor)) {
4296 GEN_EXCP_PRIVREG(ctx);
4297 return;
4299 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4300 tcg_gen_movi_tl(cpu_T[1], SR(ctx->opcode));
4301 gen_op_store_slb();
4302 #endif
4305 /* mtsrin */
4306 GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
4307 PPC_SEGMENT_64B)
4309 #if defined(CONFIG_USER_ONLY)
4310 GEN_EXCP_PRIVREG(ctx);
4311 #else
4312 if (unlikely(!ctx->supervisor)) {
4313 GEN_EXCP_PRIVREG(ctx);
4314 return;
4316 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4317 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4318 gen_op_srli_T1(28);
4319 gen_op_store_slb();
4320 #endif
4322 #endif /* defined(TARGET_PPC64) */
4324 /*** Lookaside buffer management ***/
4325 /* Optional & supervisor only: */
4326 /* tlbia */
4327 GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA)
4329 #if defined(CONFIG_USER_ONLY)
4330 GEN_EXCP_PRIVOPC(ctx);
4331 #else
4332 if (unlikely(!ctx->supervisor)) {
4333 GEN_EXCP_PRIVOPC(ctx);
4334 return;
4336 gen_op_tlbia();
4337 #endif
4340 /* tlbie */
4341 GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE)
4343 #if defined(CONFIG_USER_ONLY)
4344 GEN_EXCP_PRIVOPC(ctx);
4345 #else
4346 if (unlikely(!ctx->supervisor)) {
4347 GEN_EXCP_PRIVOPC(ctx);
4348 return;
4350 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rB(ctx->opcode)]);
4351 #if defined(TARGET_PPC64)
4352 if (ctx->sf_mode)
4353 gen_op_tlbie_64();
4354 else
4355 #endif
4356 gen_op_tlbie();
4357 #endif
4360 /* tlbsync */
4361 GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC)
4363 #if defined(CONFIG_USER_ONLY)
4364 GEN_EXCP_PRIVOPC(ctx);
4365 #else
4366 if (unlikely(!ctx->supervisor)) {
4367 GEN_EXCP_PRIVOPC(ctx);
4368 return;
4370 /* This has no effect: it should ensure that all previous
4371 * tlbie have completed
4373 GEN_STOP(ctx);
4374 #endif
4377 #if defined(TARGET_PPC64)
4378 /* slbia */
4379 GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI)
4381 #if defined(CONFIG_USER_ONLY)
4382 GEN_EXCP_PRIVOPC(ctx);
4383 #else
4384 if (unlikely(!ctx->supervisor)) {
4385 GEN_EXCP_PRIVOPC(ctx);
4386 return;
4388 gen_op_slbia();
4389 #endif
4392 /* slbie */
4393 GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI)
4395 #if defined(CONFIG_USER_ONLY)
4396 GEN_EXCP_PRIVOPC(ctx);
4397 #else
4398 if (unlikely(!ctx->supervisor)) {
4399 GEN_EXCP_PRIVOPC(ctx);
4400 return;
4402 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rB(ctx->opcode)]);
4403 gen_op_slbie();
4404 #endif
4406 #endif
4408 /*** External control ***/
4409 /* Optional: */
4410 /* eciwx */
4411 GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN)
4413 /* Should check EAR[E] ! */
4414 TCGv t0 = tcg_temp_new();
4415 gen_set_access_type(ACCESS_RES);
4416 gen_addr_reg_index(t0, ctx);
4417 gen_check_align(ctx, t0, 0x03);
4418 gen_qemu_ld32u(cpu_gpr[rD(ctx->opcode)], t0, ctx->mem_idx);
4419 tcg_temp_free(t0);
4422 /* ecowx */
4423 GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN)
4425 /* Should check EAR[E] ! */
4426 TCGv t0 = tcg_temp_new();
4427 gen_set_access_type(ACCESS_RES);
4428 gen_addr_reg_index(t0, ctx);
4429 gen_check_align(ctx, t0, 0x03);
4430 gen_qemu_st32(cpu_gpr[rD(ctx->opcode)], t0, ctx->mem_idx);
4431 tcg_temp_free(t0);
4434 /* PowerPC 601 specific instructions */
4435 /* abs - abs. */
4436 GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR)
4438 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4439 gen_op_POWER_abs();
4440 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4441 if (unlikely(Rc(ctx->opcode) != 0))
4442 gen_set_Rc0(ctx, cpu_T[0]);
4445 /* abso - abso. */
4446 GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR)
4448 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4449 gen_op_POWER_abso();
4450 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4451 if (unlikely(Rc(ctx->opcode) != 0))
4452 gen_set_Rc0(ctx, cpu_T[0]);
4455 /* clcs */
4456 GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR)
4458 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4459 gen_op_POWER_clcs();
4460 /* Rc=1 sets CR0 to an undefined state */
4461 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4464 /* div - div. */
4465 GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR)
4467 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4468 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4469 gen_op_POWER_div();
4470 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4471 if (unlikely(Rc(ctx->opcode) != 0))
4472 gen_set_Rc0(ctx, cpu_T[0]);
4475 /* divo - divo. */
4476 GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR)
4478 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4479 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4480 gen_op_POWER_divo();
4481 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4482 if (unlikely(Rc(ctx->opcode) != 0))
4483 gen_set_Rc0(ctx, cpu_T[0]);
4486 /* divs - divs. */
4487 GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR)
4489 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4490 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4491 gen_op_POWER_divs();
4492 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4493 if (unlikely(Rc(ctx->opcode) != 0))
4494 gen_set_Rc0(ctx, cpu_T[0]);
4497 /* divso - divso. */
4498 GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR)
4500 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4501 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4502 gen_op_POWER_divso();
4503 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4504 if (unlikely(Rc(ctx->opcode) != 0))
4505 gen_set_Rc0(ctx, cpu_T[0]);
4508 /* doz - doz. */
4509 GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR)
4511 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4512 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4513 gen_op_POWER_doz();
4514 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4515 if (unlikely(Rc(ctx->opcode) != 0))
4516 gen_set_Rc0(ctx, cpu_T[0]);
4519 /* dozo - dozo. */
4520 GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR)
4522 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4523 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4524 gen_op_POWER_dozo();
4525 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4526 if (unlikely(Rc(ctx->opcode) != 0))
4527 gen_set_Rc0(ctx, cpu_T[0]);
4530 /* dozi */
4531 GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4533 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4534 tcg_gen_movi_tl(cpu_T[1], SIMM(ctx->opcode));
4535 gen_op_POWER_doz();
4536 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4539 /* lscbx - lscbx. */
4540 GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR)
4542 TCGv t0 = tcg_temp_new();
4543 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
4544 TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
4545 TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
4547 gen_addr_reg_index(t0, ctx);
4548 /* NIP cannot be restored if the memory exception comes from an helper */
4549 gen_update_nip(ctx, ctx->nip - 4);
4550 gen_helper_lscbx(t0, t0, t1, t2, t3);
4551 tcg_temp_free_i32(t1);
4552 tcg_temp_free_i32(t2);
4553 tcg_temp_free_i32(t3);
4554 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F);
4555 tcg_gen_or_tl(cpu_xer, cpu_xer, t0);
4556 if (unlikely(Rc(ctx->opcode) != 0))
4557 gen_set_Rc0(ctx, t0);
4558 tcg_temp_free(t0);
4561 /* maskg - maskg. */
4562 GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR)
4564 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rS(ctx->opcode)]);
4565 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4566 gen_op_POWER_maskg();
4567 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_T[0]);
4568 if (unlikely(Rc(ctx->opcode) != 0))
4569 gen_set_Rc0(ctx, cpu_T[0]);
4572 /* maskir - maskir. */
4573 GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR)
4575 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4576 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
4577 tcg_gen_mov_tl(cpu_T[2], cpu_gpr[rB(ctx->opcode)]);
4578 gen_op_POWER_maskir();
4579 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_T[0]);
4580 if (unlikely(Rc(ctx->opcode) != 0))
4581 gen_set_Rc0(ctx, cpu_T[0]);
4584 /* mul - mul. */
4585 GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR)
4587 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4588 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4589 gen_op_POWER_mul();
4590 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4591 if (unlikely(Rc(ctx->opcode) != 0))
4592 gen_set_Rc0(ctx, cpu_T[0]);
4595 /* mulo - mulo. */
4596 GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR)
4598 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4599 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rB(ctx->opcode)]);
4600 gen_op_POWER_mulo();
4601 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4602 if (unlikely(Rc(ctx->opcode) != 0))
4603 gen_set_Rc0(ctx, cpu_T[0]);
4606 /* nabs - nabs. */
4607 GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR)
4609 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4610 gen_op_POWER_nabs();
4611 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4612 if (unlikely(Rc(ctx->opcode) != 0))
4613 gen_set_Rc0(ctx, cpu_T[0]);
4616 /* nabso - nabso. */
4617 GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR)
4619 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
4620 gen_op_POWER_nabso();
4621 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
4622 if (unlikely(Rc(ctx->opcode) != 0))
4623 gen_set_Rc0(ctx, cpu_T[0]);
4626 /* rlmi - rlmi. */
4627 GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4629 uint32_t mb = MB(ctx->opcode);
4630 uint32_t me = ME(ctx->opcode);
4631 TCGv t0 = tcg_temp_new();
4632 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4633 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4634 tcg_gen_andi_tl(t0, t0, MASK(mb, me));
4635 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me));
4636 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0);
4637 tcg_temp_free(t0);
4638 if (unlikely(Rc(ctx->opcode) != 0))
4639 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4642 /* rrib - rrib. */
4643 GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR)
4645 TCGv t0 = tcg_temp_new();
4646 TCGv t1 = tcg_temp_new();
4647 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4648 tcg_gen_movi_tl(t1, 0x80000000);
4649 tcg_gen_shr_tl(t1, t1, t0);
4650 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4651 tcg_gen_and_tl(t0, t0, t1);
4652 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1);
4653 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4654 tcg_temp_free(t0);
4655 tcg_temp_free(t1);
4656 if (unlikely(Rc(ctx->opcode) != 0))
4657 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4660 /* sle - sle. */
4661 GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR)
4663 TCGv t0 = tcg_temp_new();
4664 TCGv t1 = tcg_temp_new();
4665 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4666 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4667 tcg_gen_subfi_tl(t1, 32, t1);
4668 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4669 tcg_gen_or_tl(t1, t0, t1);
4670 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4671 gen_store_spr(SPR_MQ, t1);
4672 tcg_temp_free(t0);
4673 tcg_temp_free(t1);
4674 if (unlikely(Rc(ctx->opcode) != 0))
4675 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4678 /* sleq - sleq. */
4679 GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR)
4681 TCGv t0 = tcg_temp_new();
4682 TCGv t1 = tcg_temp_new();
4683 TCGv t2 = tcg_temp_new();
4684 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4685 tcg_gen_movi_tl(t2, 0xFFFFFFFF);
4686 tcg_gen_shl_tl(t2, t2, t0);
4687 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4688 gen_load_spr(t1, SPR_MQ);
4689 gen_store_spr(SPR_MQ, t0);
4690 tcg_gen_and_tl(t0, t0, t2);
4691 tcg_gen_andc_tl(t1, t1, t2);
4692 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4693 tcg_temp_free(t0);
4694 tcg_temp_free(t1);
4695 tcg_temp_free(t2);
4696 if (unlikely(Rc(ctx->opcode) != 0))
4697 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4700 /* sliq - sliq. */
4701 GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR)
4703 int sh = SH(ctx->opcode);
4704 TCGv t0 = tcg_temp_new();
4705 TCGv t1 = tcg_temp_new();
4706 tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4707 tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4708 tcg_gen_or_tl(t1, t0, t1);
4709 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4710 gen_store_spr(SPR_MQ, t1);
4711 tcg_temp_free(t0);
4712 tcg_temp_free(t1);
4713 if (unlikely(Rc(ctx->opcode) != 0))
4714 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4717 /* slliq - slliq. */
4718 GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR)
4720 int sh = SH(ctx->opcode);
4721 TCGv t0 = tcg_temp_new();
4722 TCGv t1 = tcg_temp_new();
4723 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4724 gen_load_spr(t1, SPR_MQ);
4725 gen_store_spr(SPR_MQ, t0);
4726 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU << sh));
4727 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh));
4728 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4729 tcg_temp_free(t0);
4730 tcg_temp_free(t1);
4731 if (unlikely(Rc(ctx->opcode) != 0))
4732 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4735 /* sllq - sllq. */
4736 GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR)
4738 int l1 = gen_new_label();
4739 int l2 = gen_new_label();
4740 TCGv t0 = tcg_temp_local_new();
4741 TCGv t1 = tcg_temp_local_new();
4742 TCGv t2 = tcg_temp_local_new();
4743 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4744 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4745 tcg_gen_shl_tl(t1, t1, t2);
4746 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4747 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4748 gen_load_spr(t0, SPR_MQ);
4749 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4750 tcg_gen_br(l2);
4751 gen_set_label(l1);
4752 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4753 gen_load_spr(t2, SPR_MQ);
4754 tcg_gen_andc_tl(t1, t2, t1);
4755 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4756 gen_set_label(l2);
4757 tcg_temp_free(t0);
4758 tcg_temp_free(t1);
4759 tcg_temp_free(t2);
4760 if (unlikely(Rc(ctx->opcode) != 0))
4761 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4764 /* slq - slq. */
4765 GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR)
4767 int l1 = gen_new_label();
4768 TCGv t0 = tcg_temp_new();
4769 TCGv t1 = tcg_temp_new();
4770 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4771 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4772 tcg_gen_subfi_tl(t1, 32, t1);
4773 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4774 tcg_gen_or_tl(t1, t0, t1);
4775 gen_store_spr(SPR_MQ, t1);
4776 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
4777 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4778 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4779 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
4780 gen_set_label(l1);
4781 tcg_temp_free(t0);
4782 tcg_temp_free(t1);
4783 if (unlikely(Rc(ctx->opcode) != 0))
4784 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4787 /* sraiq - sraiq. */
4788 GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR)
4790 int sh = SH(ctx->opcode);
4791 int l1 = gen_new_label();
4792 TCGv t0 = tcg_temp_new();
4793 TCGv t1 = tcg_temp_new();
4794 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4795 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4796 tcg_gen_or_tl(t0, t0, t1);
4797 gen_store_spr(SPR_MQ, t0);
4798 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
4799 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4800 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
4801 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA));
4802 gen_set_label(l1);
4803 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
4804 tcg_temp_free(t0);
4805 tcg_temp_free(t1);
4806 if (unlikely(Rc(ctx->opcode) != 0))
4807 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4810 /* sraq - sraq. */
4811 GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR)
4813 int l1 = gen_new_label();
4814 int l2 = gen_new_label();
4815 TCGv t0 = tcg_temp_new();
4816 TCGv t1 = tcg_temp_local_new();
4817 TCGv t2 = tcg_temp_local_new();
4818 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4819 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4820 tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2);
4821 tcg_gen_subfi_tl(t2, 32, t2);
4822 tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2);
4823 tcg_gen_or_tl(t0, t0, t2);
4824 gen_store_spr(SPR_MQ, t0);
4825 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4826 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1);
4827 tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]);
4828 tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31);
4829 gen_set_label(l1);
4830 tcg_temp_free(t0);
4831 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1);
4832 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
4833 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
4834 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2);
4835 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA));
4836 gen_set_label(l2);
4837 tcg_temp_free(t1);
4838 tcg_temp_free(t2);
4839 if (unlikely(Rc(ctx->opcode) != 0))
4840 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4843 /* sre - sre. */
4844 GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR)
4846 TCGv t0 = tcg_temp_new();
4847 TCGv t1 = tcg_temp_new();
4848 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4849 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4850 tcg_gen_subfi_tl(t1, 32, t1);
4851 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4852 tcg_gen_or_tl(t1, t0, t1);
4853 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4854 gen_store_spr(SPR_MQ, t1);
4855 tcg_temp_free(t0);
4856 tcg_temp_free(t1);
4857 if (unlikely(Rc(ctx->opcode) != 0))
4858 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4861 /* srea - srea. */
4862 GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR)
4864 TCGv t0 = tcg_temp_new();
4865 TCGv t1 = tcg_temp_new();
4866 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4867 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4868 gen_store_spr(SPR_MQ, t0);
4869 tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1);
4870 tcg_temp_free(t0);
4871 tcg_temp_free(t1);
4872 if (unlikely(Rc(ctx->opcode) != 0))
4873 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4876 /* sreq */
4877 GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR)
4879 TCGv t0 = tcg_temp_new();
4880 TCGv t1 = tcg_temp_new();
4881 TCGv t2 = tcg_temp_new();
4882 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4883 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4884 tcg_gen_shr_tl(t1, t1, t0);
4885 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4886 gen_load_spr(t2, SPR_MQ);
4887 gen_store_spr(SPR_MQ, t0);
4888 tcg_gen_and_tl(t0, t0, t1);
4889 tcg_gen_andc_tl(t2, t2, t1);
4890 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
4891 tcg_temp_free(t0);
4892 tcg_temp_free(t1);
4893 tcg_temp_free(t2);
4894 if (unlikely(Rc(ctx->opcode) != 0))
4895 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4898 /* sriq */
4899 GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR)
4901 int sh = SH(ctx->opcode);
4902 TCGv t0 = tcg_temp_new();
4903 TCGv t1 = tcg_temp_new();
4904 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4905 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4906 tcg_gen_or_tl(t1, t0, t1);
4907 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4908 gen_store_spr(SPR_MQ, t1);
4909 tcg_temp_free(t0);
4910 tcg_temp_free(t1);
4911 if (unlikely(Rc(ctx->opcode) != 0))
4912 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4915 /* srliq */
4916 GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR)
4918 int sh = SH(ctx->opcode);
4919 TCGv t0 = tcg_temp_new();
4920 TCGv t1 = tcg_temp_new();
4921 tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4922 gen_load_spr(t1, SPR_MQ);
4923 gen_store_spr(SPR_MQ, t0);
4924 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU >> sh));
4925 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh));
4926 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4927 tcg_temp_free(t0);
4928 tcg_temp_free(t1);
4929 if (unlikely(Rc(ctx->opcode) != 0))
4930 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4933 /* srlq */
4934 GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR)
4936 int l1 = gen_new_label();
4937 int l2 = gen_new_label();
4938 TCGv t0 = tcg_temp_local_new();
4939 TCGv t1 = tcg_temp_local_new();
4940 TCGv t2 = tcg_temp_local_new();
4941 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4942 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4943 tcg_gen_shr_tl(t2, t1, t2);
4944 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4945 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4946 gen_load_spr(t0, SPR_MQ);
4947 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
4948 tcg_gen_br(l2);
4949 gen_set_label(l1);
4950 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4951 tcg_gen_and_tl(t0, t0, t2);
4952 gen_load_spr(t1, SPR_MQ);
4953 tcg_gen_andc_tl(t1, t1, t2);
4954 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4955 gen_set_label(l2);
4956 tcg_temp_free(t0);
4957 tcg_temp_free(t1);
4958 tcg_temp_free(t2);
4959 if (unlikely(Rc(ctx->opcode) != 0))
4960 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4963 /* srq */
4964 GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR)
4966 int l1 = gen_new_label();
4967 TCGv t0 = tcg_temp_new();
4968 TCGv t1 = tcg_temp_new();
4969 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4970 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4971 tcg_gen_subfi_tl(t1, 32, t1);
4972 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4973 tcg_gen_or_tl(t1, t0, t1);
4974 gen_store_spr(SPR_MQ, t1);
4975 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
4976 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4977 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4978 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
4979 gen_set_label(l1);
4980 tcg_temp_free(t0);
4981 tcg_temp_free(t1);
4982 if (unlikely(Rc(ctx->opcode) != 0))
4983 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4986 /* PowerPC 602 specific instructions */
4987 /* dsa */
4988 GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC)
4990 /* XXX: TODO */
4991 GEN_EXCP_INVAL(ctx);
4994 /* esa */
4995 GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC)
4997 /* XXX: TODO */
4998 GEN_EXCP_INVAL(ctx);
5001 /* mfrom */
5002 GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC)
5004 #if defined(CONFIG_USER_ONLY)
5005 GEN_EXCP_PRIVOPC(ctx);
5006 #else
5007 if (unlikely(!ctx->supervisor)) {
5008 GEN_EXCP_PRIVOPC(ctx);
5009 return;
5011 gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5012 #endif
5015 /* 602 - 603 - G2 TLB management */
5016 /* tlbld */
5017 GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB)
5019 #if defined(CONFIG_USER_ONLY)
5020 GEN_EXCP_PRIVOPC(ctx);
5021 #else
5022 if (unlikely(!ctx->supervisor)) {
5023 GEN_EXCP_PRIVOPC(ctx);
5024 return;
5026 gen_helper_load_6xx_tlbd(cpu_gpr[rB(ctx->opcode)]);
5027 #endif
5030 /* tlbli */
5031 GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB)
5033 #if defined(CONFIG_USER_ONLY)
5034 GEN_EXCP_PRIVOPC(ctx);
5035 #else
5036 if (unlikely(!ctx->supervisor)) {
5037 GEN_EXCP_PRIVOPC(ctx);
5038 return;
5040 gen_helper_load_6xx_tlbi(cpu_gpr[rB(ctx->opcode)]);
5041 #endif
5044 /* 74xx TLB management */
5045 /* tlbld */
5046 GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB)
5048 #if defined(CONFIG_USER_ONLY)
5049 GEN_EXCP_PRIVOPC(ctx);
5050 #else
5051 if (unlikely(!ctx->supervisor)) {
5052 GEN_EXCP_PRIVOPC(ctx);
5053 return;
5055 gen_helper_load_74xx_tlbd(cpu_gpr[rB(ctx->opcode)]);
5056 #endif
5059 /* tlbli */
5060 GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB)
5062 #if defined(CONFIG_USER_ONLY)
5063 GEN_EXCP_PRIVOPC(ctx);
5064 #else
5065 if (unlikely(!ctx->supervisor)) {
5066 GEN_EXCP_PRIVOPC(ctx);
5067 return;
5069 gen_helper_load_74xx_tlbi(cpu_gpr[rB(ctx->opcode)]);
5070 #endif
5073 /* POWER instructions not in PowerPC 601 */
5074 /* clf */
5075 GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER)
5077 /* Cache line flush: implemented as no-op */
5080 /* cli */
5081 GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER)
5083 /* Cache line invalidate: privileged and treated as no-op */
5084 #if defined(CONFIG_USER_ONLY)
5085 GEN_EXCP_PRIVOPC(ctx);
5086 #else
5087 if (unlikely(!ctx->supervisor)) {
5088 GEN_EXCP_PRIVOPC(ctx);
5089 return;
5091 #endif
5094 /* dclst */
5095 GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER)
5097 /* Data cache line store: treated as no-op */
5100 GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER)
5102 #if defined(CONFIG_USER_ONLY)
5103 GEN_EXCP_PRIVOPC(ctx);
5104 #else
5105 if (unlikely(!ctx->supervisor)) {
5106 GEN_EXCP_PRIVOPC(ctx);
5107 return;
5109 int ra = rA(ctx->opcode);
5110 int rd = rD(ctx->opcode);
5112 gen_addr_reg_index(cpu_T[0], ctx);
5113 gen_op_POWER_mfsri();
5114 tcg_gen_mov_tl(cpu_gpr[rd], cpu_T[0]);
5115 if (ra != 0 && ra != rd)
5116 tcg_gen_mov_tl(cpu_gpr[ra], cpu_T[1]);
5117 #endif
5120 GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER)
5122 #if defined(CONFIG_USER_ONLY)
5123 GEN_EXCP_PRIVOPC(ctx);
5124 #else
5125 if (unlikely(!ctx->supervisor)) {
5126 GEN_EXCP_PRIVOPC(ctx);
5127 return;
5129 gen_addr_reg_index(cpu_T[0], ctx);
5130 gen_op_POWER_rac();
5131 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5132 #endif
5135 GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER)
5137 #if defined(CONFIG_USER_ONLY)
5138 GEN_EXCP_PRIVOPC(ctx);
5139 #else
5140 if (unlikely(!ctx->supervisor)) {
5141 GEN_EXCP_PRIVOPC(ctx);
5142 return;
5144 gen_helper_rfsvc();
5145 GEN_SYNC(ctx);
5146 #endif
5149 /* svc is not implemented for now */
5151 /* POWER2 specific instructions */
5152 /* Quad manipulation (load/store two floats at a time) */
5154 /* lfq */
5155 GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5157 int rd = rD(ctx->opcode);
5158 TCGv t0 = tcg_temp_new();
5159 gen_addr_imm_index(t0, ctx, 0);
5160 gen_qemu_ld64(cpu_fpr[rd], t0, ctx->mem_idx);
5161 tcg_gen_addi_tl(t0, t0, 8);
5162 gen_qemu_ld64(cpu_fpr[(rd + 1) % 32], t0, ctx->mem_idx);
5163 tcg_temp_free(t0);
5166 /* lfqu */
5167 GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5169 int ra = rA(ctx->opcode);
5170 int rd = rD(ctx->opcode);
5171 TCGv t0 = tcg_temp_new();
5172 TCGv t1 = tcg_temp_new();
5173 gen_addr_imm_index(t0, ctx, 0);
5174 gen_qemu_ld64(cpu_fpr[rd], t0, ctx->mem_idx);
5175 tcg_gen_addi_tl(t1, t0, 8);
5176 gen_qemu_ld64(cpu_fpr[(rd + 1) % 32], t1, ctx->mem_idx);
5177 if (ra != 0)
5178 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5179 tcg_temp_free(t0);
5180 tcg_temp_free(t1);
5183 /* lfqux */
5184 GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2)
5186 int ra = rA(ctx->opcode);
5187 int rd = rD(ctx->opcode);
5188 TCGv t0 = tcg_temp_new();
5189 TCGv t1 = tcg_temp_new();
5190 gen_addr_reg_index(t0, ctx);
5191 gen_qemu_ld64(cpu_fpr[rd], t0, ctx->mem_idx);
5192 tcg_gen_addi_tl(t1, t0, 8);
5193 gen_qemu_ld64(cpu_fpr[(rd + 1) % 32], t1, ctx->mem_idx);
5194 if (ra != 0)
5195 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5196 tcg_temp_free(t0);
5197 tcg_temp_free(t1);
5200 /* lfqx */
5201 GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2)
5203 int rd = rD(ctx->opcode);
5204 TCGv t0 = tcg_temp_new();
5205 gen_addr_reg_index(t0, ctx);
5206 gen_qemu_ld64(cpu_fpr[rd], t0, ctx->mem_idx);
5207 tcg_gen_addi_tl(t0, t0, 8);
5208 gen_qemu_ld64(cpu_fpr[(rd + 1) % 32], t0, ctx->mem_idx);
5209 tcg_temp_free(t0);
5212 /* stfq */
5213 GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5215 int rd = rD(ctx->opcode);
5216 TCGv t0 = tcg_temp_new();
5217 gen_addr_imm_index(t0, ctx, 0);
5218 gen_qemu_st64(cpu_fpr[rd], t0, ctx->mem_idx);
5219 tcg_gen_addi_tl(t0, t0, 8);
5220 gen_qemu_st64(cpu_fpr[(rd + 1) % 32], t0, ctx->mem_idx);
5221 tcg_temp_free(t0);
5224 /* stfqu */
5225 GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5227 int ra = rA(ctx->opcode);
5228 int rd = rD(ctx->opcode);
5229 TCGv t0 = tcg_temp_new();
5230 TCGv t1 = tcg_temp_new();
5231 gen_addr_imm_index(t0, ctx, 0);
5232 gen_qemu_st64(cpu_fpr[rd], t0, ctx->mem_idx);
5233 tcg_gen_addi_tl(t1, t0, 8);
5234 gen_qemu_st64(cpu_fpr[(rd + 1) % 32], t1, ctx->mem_idx);
5235 if (ra != 0)
5236 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5237 tcg_temp_free(t0);
5238 tcg_temp_free(t1);
5241 /* stfqux */
5242 GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2)
5244 int ra = rA(ctx->opcode);
5245 int rd = rD(ctx->opcode);
5246 TCGv t0 = tcg_temp_new();
5247 TCGv t1 = tcg_temp_new();
5248 gen_addr_reg_index(t0, ctx);
5249 gen_qemu_st64(cpu_fpr[rd], t0, ctx->mem_idx);
5250 tcg_gen_addi_tl(t1, t0, 8);
5251 gen_qemu_st64(cpu_fpr[(rd + 1) % 32], t1, ctx->mem_idx);
5252 if (ra != 0)
5253 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5254 tcg_temp_free(t0);
5255 tcg_temp_free(t1);
5258 /* stfqx */
5259 GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2)
5261 int rd = rD(ctx->opcode);
5262 TCGv t0 = tcg_temp_new();
5263 gen_addr_reg_index(t0, ctx);
5264 gen_qemu_st64(cpu_fpr[rd], t0, ctx->mem_idx);
5265 tcg_gen_addi_tl(t0, t0, 8);
5266 gen_qemu_st64(cpu_fpr[(rd + 1) % 32], t0, ctx->mem_idx);
5267 tcg_temp_free(t0);
5270 /* BookE specific instructions */
5271 /* XXX: not implemented on 440 ? */
5272 GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI)
5274 /* XXX: TODO */
5275 GEN_EXCP_INVAL(ctx);
5278 /* XXX: not implemented on 440 ? */
5279 GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA)
5281 #if defined(CONFIG_USER_ONLY)
5282 GEN_EXCP_PRIVOPC(ctx);
5283 #else
5284 if (unlikely(!ctx->supervisor)) {
5285 GEN_EXCP_PRIVOPC(ctx);
5286 return;
5288 gen_addr_reg_index(cpu_T[0], ctx);
5289 /* Use the same micro-ops as for tlbie */
5290 #if defined(TARGET_PPC64)
5291 if (ctx->sf_mode)
5292 gen_op_tlbie_64();
5293 else
5294 #endif
5295 gen_op_tlbie();
5296 #endif
5299 /* All 405 MAC instructions are translated here */
5300 static always_inline void gen_405_mulladd_insn (DisasContext *ctx,
5301 int opc2, int opc3,
5302 int ra, int rb, int rt, int Rc)
5304 TCGv t0, t1;
5306 t0 = tcg_temp_local_new();
5307 t1 = tcg_temp_local_new();
5309 switch (opc3 & 0x0D) {
5310 case 0x05:
5311 /* macchw - macchw. - macchwo - macchwo. */
5312 /* macchws - macchws. - macchwso - macchwso. */
5313 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5314 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5315 /* mulchw - mulchw. */
5316 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5317 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5318 tcg_gen_ext16s_tl(t1, t1);
5319 break;
5320 case 0x04:
5321 /* macchwu - macchwu. - macchwuo - macchwuo. */
5322 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5323 /* mulchwu - mulchwu. */
5324 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5325 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5326 tcg_gen_ext16u_tl(t1, t1);
5327 break;
5328 case 0x01:
5329 /* machhw - machhw. - machhwo - machhwo. */
5330 /* machhws - machhws. - machhwso - machhwso. */
5331 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5332 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5333 /* mulhhw - mulhhw. */
5334 tcg_gen_sari_tl(t0, cpu_gpr[ra], 16);
5335 tcg_gen_ext16s_tl(t0, t0);
5336 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5337 tcg_gen_ext16s_tl(t1, t1);
5338 break;
5339 case 0x00:
5340 /* machhwu - machhwu. - machhwuo - machhwuo. */
5341 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5342 /* mulhhwu - mulhhwu. */
5343 tcg_gen_shri_tl(t0, cpu_gpr[ra], 16);
5344 tcg_gen_ext16u_tl(t0, t0);
5345 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5346 tcg_gen_ext16u_tl(t1, t1);
5347 break;
5348 case 0x0D:
5349 /* maclhw - maclhw. - maclhwo - maclhwo. */
5350 /* maclhws - maclhws. - maclhwso - maclhwso. */
5351 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5352 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5353 /* mullhw - mullhw. */
5354 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5355 tcg_gen_ext16s_tl(t1, cpu_gpr[rb]);
5356 break;
5357 case 0x0C:
5358 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5359 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5360 /* mullhwu - mullhwu. */
5361 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5362 tcg_gen_ext16u_tl(t1, cpu_gpr[rb]);
5363 break;
5365 if (opc2 & 0x04) {
5366 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5367 tcg_gen_mul_tl(t1, t0, t1);
5368 if (opc2 & 0x02) {
5369 /* nmultiply-and-accumulate (0x0E) */
5370 tcg_gen_sub_tl(t0, cpu_gpr[rt], t1);
5371 } else {
5372 /* multiply-and-accumulate (0x0C) */
5373 tcg_gen_add_tl(t0, cpu_gpr[rt], t1);
5376 if (opc3 & 0x12) {
5377 /* Check overflow and/or saturate */
5378 int l1 = gen_new_label();
5380 if (opc3 & 0x10) {
5381 /* Start with XER OV disabled, the most likely case */
5382 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
5384 if (opc3 & 0x01) {
5385 /* Signed */
5386 tcg_gen_xor_tl(t1, cpu_gpr[rt], t1);
5387 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1);
5388 tcg_gen_xor_tl(t1, cpu_gpr[rt], t0);
5389 tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1);
5390 if (opc3 & 0x02) {
5391 /* Saturate */
5392 tcg_gen_sari_tl(t0, cpu_gpr[rt], 31);
5393 tcg_gen_xori_tl(t0, t0, 0x7fffffff);
5395 } else {
5396 /* Unsigned */
5397 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
5398 if (opc3 & 0x02) {
5399 /* Saturate */
5400 tcg_gen_movi_tl(t0, UINT32_MAX);
5403 if (opc3 & 0x10) {
5404 /* Check overflow */
5405 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
5407 gen_set_label(l1);
5408 tcg_gen_mov_tl(cpu_gpr[rt], t0);
5410 } else {
5411 tcg_gen_mul_tl(cpu_gpr[rt], t0, t1);
5413 tcg_temp_free(t0);
5414 tcg_temp_free(t1);
5415 if (unlikely(Rc) != 0) {
5416 /* Update Rc0 */
5417 gen_set_Rc0(ctx, cpu_gpr[rt]);
5421 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5422 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC) \
5424 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5425 rD(ctx->opcode), Rc(ctx->opcode)); \
5428 /* macchw - macchw. */
5429 GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
5430 /* macchwo - macchwo. */
5431 GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
5432 /* macchws - macchws. */
5433 GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
5434 /* macchwso - macchwso. */
5435 GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
5436 /* macchwsu - macchwsu. */
5437 GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
5438 /* macchwsuo - macchwsuo. */
5439 GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
5440 /* macchwu - macchwu. */
5441 GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
5442 /* macchwuo - macchwuo. */
5443 GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
5444 /* machhw - machhw. */
5445 GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
5446 /* machhwo - machhwo. */
5447 GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
5448 /* machhws - machhws. */
5449 GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
5450 /* machhwso - machhwso. */
5451 GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
5452 /* machhwsu - machhwsu. */
5453 GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
5454 /* machhwsuo - machhwsuo. */
5455 GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
5456 /* machhwu - machhwu. */
5457 GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
5458 /* machhwuo - machhwuo. */
5459 GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
5460 /* maclhw - maclhw. */
5461 GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
5462 /* maclhwo - maclhwo. */
5463 GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
5464 /* maclhws - maclhws. */
5465 GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
5466 /* maclhwso - maclhwso. */
5467 GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
5468 /* maclhwu - maclhwu. */
5469 GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
5470 /* maclhwuo - maclhwuo. */
5471 GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
5472 /* maclhwsu - maclhwsu. */
5473 GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
5474 /* maclhwsuo - maclhwsuo. */
5475 GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
5476 /* nmacchw - nmacchw. */
5477 GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
5478 /* nmacchwo - nmacchwo. */
5479 GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
5480 /* nmacchws - nmacchws. */
5481 GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
5482 /* nmacchwso - nmacchwso. */
5483 GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
5484 /* nmachhw - nmachhw. */
5485 GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
5486 /* nmachhwo - nmachhwo. */
5487 GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
5488 /* nmachhws - nmachhws. */
5489 GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
5490 /* nmachhwso - nmachhwso. */
5491 GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
5492 /* nmaclhw - nmaclhw. */
5493 GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
5494 /* nmaclhwo - nmaclhwo. */
5495 GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
5496 /* nmaclhws - nmaclhws. */
5497 GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
5498 /* nmaclhwso - nmaclhwso. */
5499 GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
5501 /* mulchw - mulchw. */
5502 GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
5503 /* mulchwu - mulchwu. */
5504 GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
5505 /* mulhhw - mulhhw. */
5506 GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
5507 /* mulhhwu - mulhhwu. */
5508 GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
5509 /* mullhw - mullhw. */
5510 GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
5511 /* mullhwu - mullhwu. */
5512 GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
5514 /* mfdcr */
5515 GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR)
5517 #if defined(CONFIG_USER_ONLY)
5518 GEN_EXCP_PRIVREG(ctx);
5519 #else
5520 uint32_t dcrn = SPR(ctx->opcode);
5522 if (unlikely(!ctx->supervisor)) {
5523 GEN_EXCP_PRIVREG(ctx);
5524 return;
5526 tcg_gen_movi_tl(cpu_T[0], dcrn);
5527 gen_op_load_dcr();
5528 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5529 #endif
5532 /* mtdcr */
5533 GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR)
5535 #if defined(CONFIG_USER_ONLY)
5536 GEN_EXCP_PRIVREG(ctx);
5537 #else
5538 uint32_t dcrn = SPR(ctx->opcode);
5540 if (unlikely(!ctx->supervisor)) {
5541 GEN_EXCP_PRIVREG(ctx);
5542 return;
5544 tcg_gen_movi_tl(cpu_T[0], dcrn);
5545 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5546 gen_op_store_dcr();
5547 #endif
5550 /* mfdcrx */
5551 /* XXX: not implemented on 440 ? */
5552 GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX)
5554 #if defined(CONFIG_USER_ONLY)
5555 GEN_EXCP_PRIVREG(ctx);
5556 #else
5557 if (unlikely(!ctx->supervisor)) {
5558 GEN_EXCP_PRIVREG(ctx);
5559 return;
5561 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5562 gen_op_load_dcr();
5563 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5564 /* Note: Rc update flag set leads to undefined state of Rc0 */
5565 #endif
5568 /* mtdcrx */
5569 /* XXX: not implemented on 440 ? */
5570 GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX)
5572 #if defined(CONFIG_USER_ONLY)
5573 GEN_EXCP_PRIVREG(ctx);
5574 #else
5575 if (unlikely(!ctx->supervisor)) {
5576 GEN_EXCP_PRIVREG(ctx);
5577 return;
5579 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5580 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5581 gen_op_store_dcr();
5582 /* Note: Rc update flag set leads to undefined state of Rc0 */
5583 #endif
5586 /* mfdcrux (PPC 460) : user-mode access to DCR */
5587 GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX)
5589 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5590 gen_op_load_dcr();
5591 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5592 /* Note: Rc update flag set leads to undefined state of Rc0 */
5595 /* mtdcrux (PPC 460) : user-mode access to DCR */
5596 GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX)
5598 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5599 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5600 gen_op_store_dcr();
5601 /* Note: Rc update flag set leads to undefined state of Rc0 */
5604 /* dccci */
5605 GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON)
5607 #if defined(CONFIG_USER_ONLY)
5608 GEN_EXCP_PRIVOPC(ctx);
5609 #else
5610 if (unlikely(!ctx->supervisor)) {
5611 GEN_EXCP_PRIVOPC(ctx);
5612 return;
5614 /* interpreted as no-op */
5615 #endif
5618 /* dcread */
5619 GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON)
5621 #if defined(CONFIG_USER_ONLY)
5622 GEN_EXCP_PRIVOPC(ctx);
5623 #else
5624 TCGv EA, val;
5625 if (unlikely(!ctx->supervisor)) {
5626 GEN_EXCP_PRIVOPC(ctx);
5627 return;
5629 EA = tcg_temp_new();
5630 gen_set_access_type(ACCESS_CACHE);
5631 gen_addr_reg_index(EA, ctx);
5632 val = tcg_temp_new();
5633 gen_qemu_ld32u(val, EA, ctx->mem_idx);
5634 tcg_temp_free(val);
5635 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA);
5636 tcg_temp_free(EA);
5637 #endif
5640 /* icbt */
5641 GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT)
5643 /* interpreted as no-op */
5644 /* XXX: specification say this is treated as a load by the MMU
5645 * but does not generate any exception
5649 /* iccci */
5650 GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON)
5652 #if defined(CONFIG_USER_ONLY)
5653 GEN_EXCP_PRIVOPC(ctx);
5654 #else
5655 if (unlikely(!ctx->supervisor)) {
5656 GEN_EXCP_PRIVOPC(ctx);
5657 return;
5659 /* interpreted as no-op */
5660 #endif
5663 /* icread */
5664 GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON)
5666 #if defined(CONFIG_USER_ONLY)
5667 GEN_EXCP_PRIVOPC(ctx);
5668 #else
5669 if (unlikely(!ctx->supervisor)) {
5670 GEN_EXCP_PRIVOPC(ctx);
5671 return;
5673 /* interpreted as no-op */
5674 #endif
5677 /* rfci (supervisor only) */
5678 GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP)
5680 #if defined(CONFIG_USER_ONLY)
5681 GEN_EXCP_PRIVOPC(ctx);
5682 #else
5683 if (unlikely(!ctx->supervisor)) {
5684 GEN_EXCP_PRIVOPC(ctx);
5685 return;
5687 /* Restore CPU state */
5688 gen_helper_40x_rfci();
5689 GEN_SYNC(ctx);
5690 #endif
5693 GEN_HANDLER(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE)
5695 #if defined(CONFIG_USER_ONLY)
5696 GEN_EXCP_PRIVOPC(ctx);
5697 #else
5698 if (unlikely(!ctx->supervisor)) {
5699 GEN_EXCP_PRIVOPC(ctx);
5700 return;
5702 /* Restore CPU state */
5703 gen_helper_rfci();
5704 GEN_SYNC(ctx);
5705 #endif
5708 /* BookE specific */
5709 /* XXX: not implemented on 440 ? */
5710 GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI)
5712 #if defined(CONFIG_USER_ONLY)
5713 GEN_EXCP_PRIVOPC(ctx);
5714 #else
5715 if (unlikely(!ctx->supervisor)) {
5716 GEN_EXCP_PRIVOPC(ctx);
5717 return;
5719 /* Restore CPU state */
5720 gen_helper_rfdi();
5721 GEN_SYNC(ctx);
5722 #endif
5725 /* XXX: not implemented on 440 ? */
5726 GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI)
5728 #if defined(CONFIG_USER_ONLY)
5729 GEN_EXCP_PRIVOPC(ctx);
5730 #else
5731 if (unlikely(!ctx->supervisor)) {
5732 GEN_EXCP_PRIVOPC(ctx);
5733 return;
5735 /* Restore CPU state */
5736 gen_helper_rfmci();
5737 GEN_SYNC(ctx);
5738 #endif
5741 /* TLB management - PowerPC 405 implementation */
5742 /* tlbre */
5743 GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB)
5745 #if defined(CONFIG_USER_ONLY)
5746 GEN_EXCP_PRIVOPC(ctx);
5747 #else
5748 if (unlikely(!ctx->supervisor)) {
5749 GEN_EXCP_PRIVOPC(ctx);
5750 return;
5752 switch (rB(ctx->opcode)) {
5753 case 0:
5754 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5755 gen_op_4xx_tlbre_hi();
5756 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5757 break;
5758 case 1:
5759 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5760 gen_op_4xx_tlbre_lo();
5761 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5762 break;
5763 default:
5764 GEN_EXCP_INVAL(ctx);
5765 break;
5767 #endif
5770 /* tlbsx - tlbsx. */
5771 GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB)
5773 #if defined(CONFIG_USER_ONLY)
5774 GEN_EXCP_PRIVOPC(ctx);
5775 #else
5776 if (unlikely(!ctx->supervisor)) {
5777 GEN_EXCP_PRIVOPC(ctx);
5778 return;
5780 gen_addr_reg_index(cpu_T[0], ctx);
5781 gen_op_4xx_tlbsx();
5782 if (Rc(ctx->opcode))
5783 gen_op_4xx_tlbsx_check();
5784 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5785 #endif
5788 /* tlbwe */
5789 GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB)
5791 #if defined(CONFIG_USER_ONLY)
5792 GEN_EXCP_PRIVOPC(ctx);
5793 #else
5794 if (unlikely(!ctx->supervisor)) {
5795 GEN_EXCP_PRIVOPC(ctx);
5796 return;
5798 switch (rB(ctx->opcode)) {
5799 case 0:
5800 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5801 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5802 gen_op_4xx_tlbwe_hi();
5803 break;
5804 case 1:
5805 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5806 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5807 gen_op_4xx_tlbwe_lo();
5808 break;
5809 default:
5810 GEN_EXCP_INVAL(ctx);
5811 break;
5813 #endif
5816 /* TLB management - PowerPC 440 implementation */
5817 /* tlbre */
5818 GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE)
5820 #if defined(CONFIG_USER_ONLY)
5821 GEN_EXCP_PRIVOPC(ctx);
5822 #else
5823 if (unlikely(!ctx->supervisor)) {
5824 GEN_EXCP_PRIVOPC(ctx);
5825 return;
5827 switch (rB(ctx->opcode)) {
5828 case 0:
5829 case 1:
5830 case 2:
5831 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5832 gen_op_440_tlbre(rB(ctx->opcode));
5833 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5834 break;
5835 default:
5836 GEN_EXCP_INVAL(ctx);
5837 break;
5839 #endif
5842 /* tlbsx - tlbsx. */
5843 GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE)
5845 #if defined(CONFIG_USER_ONLY)
5846 GEN_EXCP_PRIVOPC(ctx);
5847 #else
5848 if (unlikely(!ctx->supervisor)) {
5849 GEN_EXCP_PRIVOPC(ctx);
5850 return;
5852 gen_addr_reg_index(cpu_T[0], ctx);
5853 gen_op_440_tlbsx();
5854 if (Rc(ctx->opcode))
5855 gen_op_4xx_tlbsx_check();
5856 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_T[0]);
5857 #endif
5860 /* tlbwe */
5861 GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE)
5863 #if defined(CONFIG_USER_ONLY)
5864 GEN_EXCP_PRIVOPC(ctx);
5865 #else
5866 if (unlikely(!ctx->supervisor)) {
5867 GEN_EXCP_PRIVOPC(ctx);
5868 return;
5870 switch (rB(ctx->opcode)) {
5871 case 0:
5872 case 1:
5873 case 2:
5874 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rA(ctx->opcode)]);
5875 tcg_gen_mov_tl(cpu_T[1], cpu_gpr[rS(ctx->opcode)]);
5876 gen_op_440_tlbwe(rB(ctx->opcode));
5877 break;
5878 default:
5879 GEN_EXCP_INVAL(ctx);
5880 break;
5882 #endif
5885 /* wrtee */
5886 GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE)
5888 #if defined(CONFIG_USER_ONLY)
5889 GEN_EXCP_PRIVOPC(ctx);
5890 #else
5891 if (unlikely(!ctx->supervisor)) {
5892 GEN_EXCP_PRIVOPC(ctx);
5893 return;
5895 tcg_gen_mov_tl(cpu_T[0], cpu_gpr[rD(ctx->opcode)]);
5896 gen_op_wrte();
5897 /* Stop translation to have a chance to raise an exception
5898 * if we just set msr_ee to 1
5900 GEN_STOP(ctx);
5901 #endif
5904 /* wrteei */
5905 GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_WRTEE)
5907 #if defined(CONFIG_USER_ONLY)
5908 GEN_EXCP_PRIVOPC(ctx);
5909 #else
5910 if (unlikely(!ctx->supervisor)) {
5911 GEN_EXCP_PRIVOPC(ctx);
5912 return;
5914 tcg_gen_movi_tl(cpu_T[0], ctx->opcode & 0x00010000);
5915 gen_op_wrte();
5916 /* Stop translation to have a chance to raise an exception
5917 * if we just set msr_ee to 1
5919 GEN_STOP(ctx);
5920 #endif
5923 /* PowerPC 440 specific instructions */
5924 /* dlmzb */
5925 GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC)
5927 TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode));
5928 gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)],
5929 cpu_gpr[rB(ctx->opcode)], t0);
5930 tcg_temp_free_i32(t0);
5933 /* mbar replaces eieio on 440 */
5934 GEN_HANDLER(mbar, 0x1F, 0x16, 0x13, 0x001FF801, PPC_BOOKE)
5936 /* interpreted as no-op */
5939 /* msync replaces sync on 440 */
5940 GEN_HANDLER(msync, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE)
5942 /* interpreted as no-op */
5945 /* icbt */
5946 GEN_HANDLER2(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE)
5948 /* interpreted as no-op */
5949 /* XXX: specification say this is treated as a load by the MMU
5950 * but does not generate any exception
5954 /*** Altivec vector extension ***/
5955 /* Altivec registers moves */
5957 #define GEN_VR_LDX(name, opc2, opc3) \
5958 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
5960 TCGv EA; \
5961 if (unlikely(!ctx->altivec_enabled)) { \
5962 GEN_EXCP_NO_VR(ctx); \
5963 return; \
5965 EA = tcg_temp_new(); \
5966 gen_addr_reg_index(EA, ctx); \
5967 tcg_gen_andi_tl(EA, EA, ~0xf); \
5968 if (ctx->mem_idx & 1) { \
5969 gen_qemu_ld64(cpu_avrl[rD(ctx->opcode)], EA, ctx->mem_idx); \
5970 tcg_gen_addi_tl(EA, EA, 8); \
5971 gen_qemu_ld64(cpu_avrh[rD(ctx->opcode)], EA, ctx->mem_idx); \
5972 } else { \
5973 gen_qemu_ld64(cpu_avrh[rD(ctx->opcode)], EA, ctx->mem_idx); \
5974 tcg_gen_addi_tl(EA, EA, 8); \
5975 gen_qemu_ld64(cpu_avrl[rD(ctx->opcode)], EA, ctx->mem_idx); \
5977 tcg_temp_free(EA); \
5980 #define GEN_VR_STX(name, opc2, opc3) \
5981 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
5983 TCGv EA; \
5984 if (unlikely(!ctx->altivec_enabled)) { \
5985 GEN_EXCP_NO_VR(ctx); \
5986 return; \
5988 EA = tcg_temp_new(); \
5989 gen_addr_reg_index(EA, ctx); \
5990 tcg_gen_andi_tl(EA, EA, ~0xf); \
5991 if (ctx->mem_idx & 1) { \
5992 gen_qemu_st64(cpu_avrl[rD(ctx->opcode)], EA, ctx->mem_idx); \
5993 tcg_gen_addi_tl(EA, EA, 8); \
5994 gen_qemu_st64(cpu_avrh[rD(ctx->opcode)], EA, ctx->mem_idx); \
5995 } else { \
5996 gen_qemu_st64(cpu_avrh[rD(ctx->opcode)], EA, ctx->mem_idx); \
5997 tcg_gen_addi_tl(EA, EA, 8); \
5998 gen_qemu_st64(cpu_avrl[rD(ctx->opcode)], EA, ctx->mem_idx); \
6000 tcg_temp_free(EA); \
6003 GEN_VR_LDX(lvx, 0x07, 0x03);
6004 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6005 GEN_VR_LDX(lvxl, 0x07, 0x0B);
6007 GEN_VR_STX(svx, 0x07, 0x07);
6008 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6009 GEN_VR_STX(svxl, 0x07, 0x0F);
6011 /*** SPE extension ***/
6012 /* Register moves */
6014 static always_inline void gen_load_gpr64(TCGv_i64 t, int reg) {
6015 #if defined(TARGET_PPC64)
6016 tcg_gen_mov_i64(t, cpu_gpr[reg]);
6017 #else
6018 tcg_gen_concat_i32_i64(t, cpu_gpr[reg], cpu_gprh[reg]);
6019 #endif
6022 static always_inline void gen_store_gpr64(int reg, TCGv_i64 t) {
6023 #if defined(TARGET_PPC64)
6024 tcg_gen_mov_i64(cpu_gpr[reg], t);
6025 #else
6026 TCGv_i64 tmp = tcg_temp_new_i64();
6027 tcg_gen_trunc_i64_i32(cpu_gpr[reg], t);
6028 tcg_gen_shri_i64(tmp, t, 32);
6029 tcg_gen_trunc_i64_i32(cpu_gprh[reg], tmp);
6030 tcg_temp_free_i64(tmp);
6031 #endif
6034 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
6035 GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type) \
6037 if (Rc(ctx->opcode)) \
6038 gen_##name1(ctx); \
6039 else \
6040 gen_##name0(ctx); \
6043 /* Handler for undefined SPE opcodes */
6044 static always_inline void gen_speundef (DisasContext *ctx)
6046 GEN_EXCP_INVAL(ctx);
6049 /* SPE logic */
6050 #if defined(TARGET_PPC64)
6051 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6052 static always_inline void gen_##name (DisasContext *ctx) \
6054 if (unlikely(!ctx->spe_enabled)) { \
6055 GEN_EXCP_NO_AP(ctx); \
6056 return; \
6058 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6059 cpu_gpr[rB(ctx->opcode)]); \
6061 #else
6062 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6063 static always_inline void gen_##name (DisasContext *ctx) \
6065 if (unlikely(!ctx->spe_enabled)) { \
6066 GEN_EXCP_NO_AP(ctx); \
6067 return; \
6069 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6070 cpu_gpr[rB(ctx->opcode)]); \
6071 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6072 cpu_gprh[rB(ctx->opcode)]); \
6074 #endif
6076 GEN_SPEOP_LOGIC2(evand, tcg_gen_and_tl);
6077 GEN_SPEOP_LOGIC2(evandc, tcg_gen_andc_tl);
6078 GEN_SPEOP_LOGIC2(evxor, tcg_gen_xor_tl);
6079 GEN_SPEOP_LOGIC2(evor, tcg_gen_or_tl);
6080 GEN_SPEOP_LOGIC2(evnor, tcg_gen_nor_tl);
6081 GEN_SPEOP_LOGIC2(eveqv, tcg_gen_eqv_tl);
6082 GEN_SPEOP_LOGIC2(evorc, tcg_gen_orc_tl);
6083 GEN_SPEOP_LOGIC2(evnand, tcg_gen_nand_tl);
6085 /* SPE logic immediate */
6086 #if defined(TARGET_PPC64)
6087 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6088 static always_inline void gen_##name (DisasContext *ctx) \
6090 if (unlikely(!ctx->spe_enabled)) { \
6091 GEN_EXCP_NO_AP(ctx); \
6092 return; \
6094 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6095 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6096 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6097 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6098 tcg_opi(t0, t0, rB(ctx->opcode)); \
6099 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6100 tcg_gen_trunc_i64_i32(t1, t2); \
6101 tcg_temp_free_i64(t2); \
6102 tcg_opi(t1, t1, rB(ctx->opcode)); \
6103 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6104 tcg_temp_free_i32(t0); \
6105 tcg_temp_free_i32(t1); \
6107 #else
6108 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6109 static always_inline void gen_##name (DisasContext *ctx) \
6111 if (unlikely(!ctx->spe_enabled)) { \
6112 GEN_EXCP_NO_AP(ctx); \
6113 return; \
6115 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6116 rB(ctx->opcode)); \
6117 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6118 rB(ctx->opcode)); \
6120 #endif
6121 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi, tcg_gen_shli_i32);
6122 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu, tcg_gen_shri_i32);
6123 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis, tcg_gen_sari_i32);
6124 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi, tcg_gen_rotli_i32);
6126 /* SPE arithmetic */
6127 #if defined(TARGET_PPC64)
6128 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6129 static always_inline void gen_##name (DisasContext *ctx) \
6131 if (unlikely(!ctx->spe_enabled)) { \
6132 GEN_EXCP_NO_AP(ctx); \
6133 return; \
6135 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6136 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6137 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6138 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6139 tcg_op(t0, t0); \
6140 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6141 tcg_gen_trunc_i64_i32(t1, t2); \
6142 tcg_temp_free_i64(t2); \
6143 tcg_op(t1, t1); \
6144 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6145 tcg_temp_free_i32(t0); \
6146 tcg_temp_free_i32(t1); \
6148 #else
6149 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6150 static always_inline void gen_##name (DisasContext *ctx) \
6152 if (unlikely(!ctx->spe_enabled)) { \
6153 GEN_EXCP_NO_AP(ctx); \
6154 return; \
6156 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6157 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6159 #endif
6161 static always_inline void gen_op_evabs (TCGv_i32 ret, TCGv_i32 arg1)
6163 int l1 = gen_new_label();
6164 int l2 = gen_new_label();
6166 tcg_gen_brcondi_i32(TCG_COND_GE, arg1, 0, l1);
6167 tcg_gen_neg_i32(ret, arg1);
6168 tcg_gen_br(l2);
6169 gen_set_label(l1);
6170 tcg_gen_mov_i32(ret, arg1);
6171 gen_set_label(l2);
6173 GEN_SPEOP_ARITH1(evabs, gen_op_evabs);
6174 GEN_SPEOP_ARITH1(evneg, tcg_gen_neg_i32);
6175 GEN_SPEOP_ARITH1(evextsb, tcg_gen_ext8s_i32);
6176 GEN_SPEOP_ARITH1(evextsh, tcg_gen_ext16s_i32);
6177 static always_inline void gen_op_evrndw (TCGv_i32 ret, TCGv_i32 arg1)
6179 tcg_gen_addi_i32(ret, arg1, 0x8000);
6180 tcg_gen_ext16u_i32(ret, ret);
6182 GEN_SPEOP_ARITH1(evrndw, gen_op_evrndw);
6183 GEN_SPEOP_ARITH1(evcntlsw, gen_helper_cntlsw32);
6184 GEN_SPEOP_ARITH1(evcntlzw, gen_helper_cntlzw32);
6186 #if defined(TARGET_PPC64)
6187 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6188 static always_inline void gen_##name (DisasContext *ctx) \
6190 if (unlikely(!ctx->spe_enabled)) { \
6191 GEN_EXCP_NO_AP(ctx); \
6192 return; \
6194 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6195 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6196 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
6197 TCGv_i64 t3 = tcg_temp_local_new(TCG_TYPE_I64); \
6198 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6199 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6200 tcg_op(t0, t0, t2); \
6201 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6202 tcg_gen_trunc_i64_i32(t1, t3); \
6203 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6204 tcg_gen_trunc_i64_i32(t2, t3); \
6205 tcg_temp_free_i64(t3); \
6206 tcg_op(t1, t1, t2); \
6207 tcg_temp_free_i32(t2); \
6208 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6209 tcg_temp_free_i32(t0); \
6210 tcg_temp_free_i32(t1); \
6212 #else
6213 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6214 static always_inline void gen_##name (DisasContext *ctx) \
6216 if (unlikely(!ctx->spe_enabled)) { \
6217 GEN_EXCP_NO_AP(ctx); \
6218 return; \
6220 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6221 cpu_gpr[rB(ctx->opcode)]); \
6222 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6223 cpu_gprh[rB(ctx->opcode)]); \
6225 #endif
6227 static always_inline void gen_op_evsrwu (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6229 TCGv_i32 t0;
6230 int l1, l2;
6232 l1 = gen_new_label();
6233 l2 = gen_new_label();
6234 t0 = tcg_temp_local_new_i32();
6235 /* No error here: 6 bits are used */
6236 tcg_gen_andi_i32(t0, arg2, 0x3F);
6237 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6238 tcg_gen_shr_i32(ret, arg1, t0);
6239 tcg_gen_br(l2);
6240 gen_set_label(l1);
6241 tcg_gen_movi_i32(ret, 0);
6242 tcg_gen_br(l2);
6243 tcg_temp_free_i32(t0);
6245 GEN_SPEOP_ARITH2(evsrwu, gen_op_evsrwu);
6246 static always_inline void gen_op_evsrws (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6248 TCGv_i32 t0;
6249 int l1, l2;
6251 l1 = gen_new_label();
6252 l2 = gen_new_label();
6253 t0 = tcg_temp_local_new_i32();
6254 /* No error here: 6 bits are used */
6255 tcg_gen_andi_i32(t0, arg2, 0x3F);
6256 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6257 tcg_gen_sar_i32(ret, arg1, t0);
6258 tcg_gen_br(l2);
6259 gen_set_label(l1);
6260 tcg_gen_movi_i32(ret, 0);
6261 tcg_gen_br(l2);
6262 tcg_temp_free_i32(t0);
6264 GEN_SPEOP_ARITH2(evsrws, gen_op_evsrws);
6265 static always_inline void gen_op_evslw (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6267 TCGv_i32 t0;
6268 int l1, l2;
6270 l1 = gen_new_label();
6271 l2 = gen_new_label();
6272 t0 = tcg_temp_local_new_i32();
6273 /* No error here: 6 bits are used */
6274 tcg_gen_andi_i32(t0, arg2, 0x3F);
6275 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6276 tcg_gen_shl_i32(ret, arg1, t0);
6277 tcg_gen_br(l2);
6278 gen_set_label(l1);
6279 tcg_gen_movi_i32(ret, 0);
6280 tcg_gen_br(l2);
6281 tcg_temp_free_i32(t0);
6283 GEN_SPEOP_ARITH2(evslw, gen_op_evslw);
6284 static always_inline void gen_op_evrlw (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6286 TCGv_i32 t0 = tcg_temp_new_i32();
6287 tcg_gen_andi_i32(t0, arg2, 0x1F);
6288 tcg_gen_rotl_i32(ret, arg1, t0);
6289 tcg_temp_free_i32(t0);
6291 GEN_SPEOP_ARITH2(evrlw, gen_op_evrlw);
6292 static always_inline void gen_evmergehi (DisasContext *ctx)
6294 if (unlikely(!ctx->spe_enabled)) {
6295 GEN_EXCP_NO_AP(ctx);
6296 return;
6298 #if defined(TARGET_PPC64)
6299 TCGv t0 = tcg_temp_new();
6300 TCGv t1 = tcg_temp_new();
6301 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
6302 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
6303 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6304 tcg_temp_free(t0);
6305 tcg_temp_free(t1);
6306 #else
6307 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6308 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6309 #endif
6311 GEN_SPEOP_ARITH2(evaddw, tcg_gen_add_i32);
6312 static always_inline void gen_op_evsubf (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6314 tcg_gen_sub_i32(ret, arg2, arg1);
6316 GEN_SPEOP_ARITH2(evsubfw, gen_op_evsubf);
6318 /* SPE arithmetic immediate */
6319 #if defined(TARGET_PPC64)
6320 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6321 static always_inline void gen_##name (DisasContext *ctx) \
6323 if (unlikely(!ctx->spe_enabled)) { \
6324 GEN_EXCP_NO_AP(ctx); \
6325 return; \
6327 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6328 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6329 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6330 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
6331 tcg_op(t0, t0, rA(ctx->opcode)); \
6332 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6333 tcg_gen_trunc_i64_i32(t1, t2); \
6334 tcg_temp_free_i64(t2); \
6335 tcg_op(t1, t1, rA(ctx->opcode)); \
6336 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6337 tcg_temp_free_i32(t0); \
6338 tcg_temp_free_i32(t1); \
6340 #else
6341 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6342 static always_inline void gen_##name (DisasContext *ctx) \
6344 if (unlikely(!ctx->spe_enabled)) { \
6345 GEN_EXCP_NO_AP(ctx); \
6346 return; \
6348 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
6349 rA(ctx->opcode)); \
6350 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
6351 rA(ctx->opcode)); \
6353 #endif
6354 GEN_SPEOP_ARITH_IMM2(evaddiw, tcg_gen_addi_i32);
6355 GEN_SPEOP_ARITH_IMM2(evsubifw, tcg_gen_subi_i32);
6357 /* SPE comparison */
6358 #if defined(TARGET_PPC64)
6359 #define GEN_SPEOP_COMP(name, tcg_cond) \
6360 static always_inline void gen_##name (DisasContext *ctx) \
6362 if (unlikely(!ctx->spe_enabled)) { \
6363 GEN_EXCP_NO_AP(ctx); \
6364 return; \
6366 int l1 = gen_new_label(); \
6367 int l2 = gen_new_label(); \
6368 int l3 = gen_new_label(); \
6369 int l4 = gen_new_label(); \
6370 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6371 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6372 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6373 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6374 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
6375 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
6376 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
6377 tcg_gen_br(l2); \
6378 gen_set_label(l1); \
6379 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6380 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6381 gen_set_label(l2); \
6382 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6383 tcg_gen_trunc_i64_i32(t0, t2); \
6384 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6385 tcg_gen_trunc_i64_i32(t1, t2); \
6386 tcg_temp_free_i64(t2); \
6387 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
6388 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6389 ~(CRF_CH | CRF_CH_AND_CL)); \
6390 tcg_gen_br(l4); \
6391 gen_set_label(l3); \
6392 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6393 CRF_CH | CRF_CH_OR_CL); \
6394 gen_set_label(l4); \
6395 tcg_temp_free_i32(t0); \
6396 tcg_temp_free_i32(t1); \
6398 #else
6399 #define GEN_SPEOP_COMP(name, tcg_cond) \
6400 static always_inline void gen_##name (DisasContext *ctx) \
6402 if (unlikely(!ctx->spe_enabled)) { \
6403 GEN_EXCP_NO_AP(ctx); \
6404 return; \
6406 int l1 = gen_new_label(); \
6407 int l2 = gen_new_label(); \
6408 int l3 = gen_new_label(); \
6409 int l4 = gen_new_label(); \
6411 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
6412 cpu_gpr[rB(ctx->opcode)], l1); \
6413 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
6414 tcg_gen_br(l2); \
6415 gen_set_label(l1); \
6416 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6417 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6418 gen_set_label(l2); \
6419 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
6420 cpu_gprh[rB(ctx->opcode)], l3); \
6421 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6422 ~(CRF_CH | CRF_CH_AND_CL)); \
6423 tcg_gen_br(l4); \
6424 gen_set_label(l3); \
6425 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6426 CRF_CH | CRF_CH_OR_CL); \
6427 gen_set_label(l4); \
6429 #endif
6430 GEN_SPEOP_COMP(evcmpgtu, TCG_COND_GTU);
6431 GEN_SPEOP_COMP(evcmpgts, TCG_COND_GT);
6432 GEN_SPEOP_COMP(evcmpltu, TCG_COND_LTU);
6433 GEN_SPEOP_COMP(evcmplts, TCG_COND_LT);
6434 GEN_SPEOP_COMP(evcmpeq, TCG_COND_EQ);
6436 /* SPE misc */
6437 static always_inline void gen_brinc (DisasContext *ctx)
6439 /* Note: brinc is usable even if SPE is disabled */
6440 gen_helper_brinc(cpu_gpr[rD(ctx->opcode)],
6441 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6443 static always_inline void gen_evmergelo (DisasContext *ctx)
6445 if (unlikely(!ctx->spe_enabled)) {
6446 GEN_EXCP_NO_AP(ctx);
6447 return;
6449 #if defined(TARGET_PPC64)
6450 TCGv t0 = tcg_temp_new();
6451 TCGv t1 = tcg_temp_new();
6452 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL);
6453 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
6454 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6455 tcg_temp_free(t0);
6456 tcg_temp_free(t1);
6457 #else
6458 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6459 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6460 #endif
6462 static always_inline void gen_evmergehilo (DisasContext *ctx)
6464 if (unlikely(!ctx->spe_enabled)) {
6465 GEN_EXCP_NO_AP(ctx);
6466 return;
6468 #if defined(TARGET_PPC64)
6469 TCGv t0 = tcg_temp_new();
6470 TCGv t1 = tcg_temp_new();
6471 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL);
6472 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
6473 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6474 tcg_temp_free(t0);
6475 tcg_temp_free(t1);
6476 #else
6477 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6478 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6479 #endif
6481 static always_inline void gen_evmergelohi (DisasContext *ctx)
6483 if (unlikely(!ctx->spe_enabled)) {
6484 GEN_EXCP_NO_AP(ctx);
6485 return;
6487 #if defined(TARGET_PPC64)
6488 TCGv t0 = tcg_temp_new();
6489 TCGv t1 = tcg_temp_new();
6490 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
6491 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
6492 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6493 tcg_temp_free(t0);
6494 tcg_temp_free(t1);
6495 #else
6496 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6497 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6498 #endif
6500 static always_inline void gen_evsplati (DisasContext *ctx)
6502 uint64_t imm = ((int32_t)(rA(ctx->opcode) << 11)) >> 27;
6504 #if defined(TARGET_PPC64)
6505 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
6506 #else
6507 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
6508 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
6509 #endif
6511 static always_inline void gen_evsplatfi (DisasContext *ctx)
6513 uint64_t imm = rA(ctx->opcode) << 11;
6515 #if defined(TARGET_PPC64)
6516 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
6517 #else
6518 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
6519 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
6520 #endif
6523 static always_inline void gen_evsel (DisasContext *ctx)
6525 int l1 = gen_new_label();
6526 int l2 = gen_new_label();
6527 int l3 = gen_new_label();
6528 int l4 = gen_new_label();
6529 TCGv_i32 t0 = tcg_temp_local_new_i32();
6530 #if defined(TARGET_PPC64)
6531 TCGv t1 = tcg_temp_local_new();
6532 TCGv t2 = tcg_temp_local_new();
6533 #endif
6534 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 3);
6535 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
6536 #if defined(TARGET_PPC64)
6537 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF00000000ULL);
6538 #else
6539 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6540 #endif
6541 tcg_gen_br(l2);
6542 gen_set_label(l1);
6543 #if defined(TARGET_PPC64)
6544 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0xFFFFFFFF00000000ULL);
6545 #else
6546 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6547 #endif
6548 gen_set_label(l2);
6549 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 2);
6550 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l3);
6551 #if defined(TARGET_PPC64)
6552 tcg_gen_andi_tl(t2, cpu_gpr[rA(ctx->opcode)], 0x00000000FFFFFFFFULL);
6553 #else
6554 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6555 #endif
6556 tcg_gen_br(l4);
6557 gen_set_label(l3);
6558 #if defined(TARGET_PPC64)
6559 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFULL);
6560 #else
6561 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6562 #endif
6563 gen_set_label(l4);
6564 tcg_temp_free_i32(t0);
6565 #if defined(TARGET_PPC64)
6566 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t1, t2);
6567 tcg_temp_free(t1);
6568 tcg_temp_free(t2);
6569 #endif
6571 GEN_HANDLER2(evsel0, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE)
6573 gen_evsel(ctx);
6575 GEN_HANDLER2(evsel1, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE)
6577 gen_evsel(ctx);
6579 GEN_HANDLER2(evsel2, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE)
6581 gen_evsel(ctx);
6583 GEN_HANDLER2(evsel3, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE)
6585 gen_evsel(ctx);
6588 GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, PPC_SPE); ////
6589 GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, PPC_SPE);
6590 GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, PPC_SPE); ////
6591 GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, PPC_SPE);
6592 GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, PPC_SPE); ////
6593 GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, PPC_SPE); ////
6594 GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, PPC_SPE); ////
6595 GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x00000000, PPC_SPE); //
6596 GEN_SPE(speundef, evand, 0x08, 0x08, 0x00000000, PPC_SPE); ////
6597 GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, PPC_SPE); ////
6598 GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, PPC_SPE); ////
6599 GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, PPC_SPE); ////
6600 GEN_SPE(speundef, evorc, 0x0D, 0x08, 0x00000000, PPC_SPE); ////
6601 GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, PPC_SPE); ////
6602 GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, PPC_SPE); ////
6603 GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, PPC_SPE);
6604 GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, PPC_SPE); ////
6605 GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, PPC_SPE);
6606 GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, PPC_SPE); //
6607 GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, PPC_SPE);
6608 GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, PPC_SPE); ////
6609 GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, PPC_SPE); ////
6610 GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, PPC_SPE); ////
6611 GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, PPC_SPE); ////
6612 GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, PPC_SPE); ////
6614 /* SPE load and stores */
6615 static always_inline void gen_addr_spe_imm_index (TCGv EA, DisasContext *ctx, int sh)
6617 target_ulong uimm = rB(ctx->opcode);
6619 if (rA(ctx->opcode) == 0)
6620 tcg_gen_movi_tl(EA, uimm << sh);
6621 else
6622 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], uimm << sh);
6625 static always_inline void gen_op_evldd(DisasContext *ctx, TCGv addr)
6627 #if defined(TARGET_PPC64)
6628 gen_qemu_ld64(cpu_gpr[rD(ctx->opcode)], addr, ctx->mem_idx);
6629 #else
6630 TCGv_i64 t0 = tcg_temp_new_i64();
6631 gen_qemu_ld64(t0, addr, ctx->mem_idx);
6632 tcg_gen_trunc_i64_i32(cpu_gpr[rD(ctx->opcode)], t0);
6633 tcg_gen_shri_i64(t0, t0, 32);
6634 tcg_gen_trunc_i64_i32(cpu_gprh[rD(ctx->opcode)], t0);
6635 tcg_temp_free_i64(t0);
6636 #endif
6639 static always_inline void gen_op_evldw(DisasContext *ctx, TCGv addr)
6641 #if defined(TARGET_PPC64)
6642 TCGv t0 = tcg_temp_new();
6643 gen_qemu_ld32u(t0, addr, ctx->mem_idx);
6644 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
6645 tcg_gen_addi_tl(addr, addr, 4);
6646 gen_qemu_ld32u(t0, addr, ctx->mem_idx);
6647 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6648 tcg_temp_free(t0);
6649 #else
6650 gen_qemu_ld32u(cpu_gprh[rD(ctx->opcode)], addr, ctx->mem_idx);
6651 tcg_gen_addi_tl(addr, addr, 4);
6652 gen_qemu_ld32u(cpu_gpr[rD(ctx->opcode)], addr, ctx->mem_idx);
6653 #endif
6656 static always_inline void gen_op_evldh(DisasContext *ctx, TCGv addr)
6658 TCGv t0 = tcg_temp_new();
6659 #if defined(TARGET_PPC64)
6660 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6661 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
6662 tcg_gen_addi_tl(addr, addr, 2);
6663 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6664 tcg_gen_shli_tl(t0, t0, 32);
6665 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6666 tcg_gen_addi_tl(addr, addr, 2);
6667 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6668 tcg_gen_shli_tl(t0, t0, 16);
6669 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6670 tcg_gen_addi_tl(addr, addr, 2);
6671 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6672 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6673 #else
6674 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6675 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6676 tcg_gen_addi_tl(addr, addr, 2);
6677 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6678 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
6679 tcg_gen_addi_tl(addr, addr, 2);
6680 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6681 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6682 tcg_gen_addi_tl(addr, addr, 2);
6683 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6684 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6685 #endif
6686 tcg_temp_free(t0);
6689 static always_inline void gen_op_evlhhesplat(DisasContext *ctx, TCGv addr)
6691 TCGv t0 = tcg_temp_new();
6692 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6693 #if defined(TARGET_PPC64)
6694 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
6695 tcg_gen_shli_tl(t0, t0, 16);
6696 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6697 #else
6698 tcg_gen_shli_tl(t0, t0, 16);
6699 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
6700 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
6701 #endif
6702 tcg_temp_free(t0);
6705 static always_inline void gen_op_evlhhousplat(DisasContext *ctx, TCGv addr)
6707 TCGv t0 = tcg_temp_new();
6708 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6709 #if defined(TARGET_PPC64)
6710 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
6711 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6712 #else
6713 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
6714 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
6715 #endif
6716 tcg_temp_free(t0);
6719 static always_inline void gen_op_evlhhossplat(DisasContext *ctx, TCGv addr)
6721 TCGv t0 = tcg_temp_new();
6722 gen_qemu_ld16s(t0, addr, ctx->mem_idx);
6723 #if defined(TARGET_PPC64)
6724 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
6725 tcg_gen_ext32u_tl(t0, t0);
6726 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6727 #else
6728 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
6729 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
6730 #endif
6731 tcg_temp_free(t0);
6734 static always_inline void gen_op_evlwhe(DisasContext *ctx, TCGv addr)
6736 TCGv t0 = tcg_temp_new();
6737 #if defined(TARGET_PPC64)
6738 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6739 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
6740 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6741 tcg_gen_shli_tl(t0, t0, 16);
6742 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6743 #else
6744 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6745 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6746 tcg_gen_addi_tl(addr, addr, 2);
6747 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6748 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
6749 #endif
6750 tcg_temp_free(t0);
6753 static always_inline void gen_op_evlwhou(DisasContext *ctx, TCGv addr)
6755 #if defined(TARGET_PPC64)
6756 TCGv t0 = tcg_temp_new();
6757 gen_qemu_ld16u(cpu_gpr[rD(ctx->opcode)], addr, ctx->mem_idx);
6758 tcg_gen_addi_tl(addr, addr, 2);
6759 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6760 tcg_gen_shli_tl(t0, t0, 32);
6761 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6762 tcg_temp_free(t0);
6763 #else
6764 gen_qemu_ld16u(cpu_gprh[rD(ctx->opcode)], addr, ctx->mem_idx);
6765 tcg_gen_addi_tl(addr, addr, 2);
6766 gen_qemu_ld16u(cpu_gpr[rD(ctx->opcode)], addr, ctx->mem_idx);
6767 #endif
6770 static always_inline void gen_op_evlwhos(DisasContext *ctx, TCGv addr)
6772 #if defined(TARGET_PPC64)
6773 TCGv t0 = tcg_temp_new();
6774 gen_qemu_ld16s(t0, addr, ctx->mem_idx);
6775 tcg_gen_ext32u_tl(cpu_gpr[rD(ctx->opcode)], t0);
6776 tcg_gen_addi_tl(addr, addr, 2);
6777 gen_qemu_ld16s(t0, addr, ctx->mem_idx);
6778 tcg_gen_shli_tl(t0, t0, 32);
6779 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6780 tcg_temp_free(t0);
6781 #else
6782 gen_qemu_ld16s(cpu_gprh[rD(ctx->opcode)], addr, ctx->mem_idx);
6783 tcg_gen_addi_tl(addr, addr, 2);
6784 gen_qemu_ld16s(cpu_gpr[rD(ctx->opcode)], addr, ctx->mem_idx);
6785 #endif
6788 static always_inline void gen_op_evlwwsplat(DisasContext *ctx, TCGv addr)
6790 TCGv t0 = tcg_temp_new();
6791 gen_qemu_ld32u(t0, addr, ctx->mem_idx);
6792 #if defined(TARGET_PPC64)
6793 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
6794 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6795 #else
6796 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
6797 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
6798 #endif
6799 tcg_temp_free(t0);
6802 static always_inline void gen_op_evlwhsplat(DisasContext *ctx, TCGv addr)
6804 TCGv t0 = tcg_temp_new();
6805 #if defined(TARGET_PPC64)
6806 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6807 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
6808 tcg_gen_shli_tl(t0, t0, 32);
6809 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6810 tcg_gen_addi_tl(addr, addr, 2);
6811 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6812 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6813 tcg_gen_shli_tl(t0, t0, 16);
6814 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6815 #else
6816 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6817 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6818 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
6819 tcg_gen_addi_tl(addr, addr, 2);
6820 gen_qemu_ld16u(t0, addr, ctx->mem_idx);
6821 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
6822 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
6823 #endif
6824 tcg_temp_free(t0);
6827 static always_inline void gen_op_evstdd(DisasContext *ctx, TCGv addr)
6829 #if defined(TARGET_PPC64)
6830 gen_qemu_st64(cpu_gpr[rS(ctx->opcode)], addr, ctx->mem_idx);
6831 #else
6832 TCGv_i64 t0 = tcg_temp_new_i64();
6833 tcg_gen_concat_i32_i64(t0, cpu_gpr[rS(ctx->opcode)], cpu_gprh[rS(ctx->opcode)]);
6834 gen_qemu_st64(t0, addr, ctx->mem_idx);
6835 tcg_temp_free_i64(t0);
6836 #endif
6839 static always_inline void gen_op_evstdw(DisasContext *ctx, TCGv addr)
6841 #if defined(TARGET_PPC64)
6842 TCGv t0 = tcg_temp_new();
6843 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
6844 gen_qemu_st32(t0, addr, ctx->mem_idx);
6845 tcg_temp_free(t0);
6846 #else
6847 gen_qemu_st32(cpu_gprh[rS(ctx->opcode)], addr, ctx->mem_idx);
6848 #endif
6849 tcg_gen_addi_tl(addr, addr, 4);
6850 gen_qemu_st32(cpu_gpr[rS(ctx->opcode)], addr, ctx->mem_idx);
6853 static always_inline void gen_op_evstdh(DisasContext *ctx, TCGv addr)
6855 TCGv t0 = tcg_temp_new();
6856 #if defined(TARGET_PPC64)
6857 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
6858 #else
6859 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
6860 #endif
6861 gen_qemu_st16(t0, addr, ctx->mem_idx);
6862 tcg_gen_addi_tl(addr, addr, 2);
6863 #if defined(TARGET_PPC64)
6864 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
6865 gen_qemu_st16(t0, addr, ctx->mem_idx);
6866 #else
6867 gen_qemu_st16(cpu_gprh[rS(ctx->opcode)], addr, ctx->mem_idx);
6868 #endif
6869 tcg_gen_addi_tl(addr, addr, 2);
6870 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
6871 gen_qemu_st16(t0, addr, ctx->mem_idx);
6872 tcg_temp_free(t0);
6873 tcg_gen_addi_tl(addr, addr, 2);
6874 gen_qemu_st16(cpu_gpr[rS(ctx->opcode)], addr, ctx->mem_idx);
6877 static always_inline void gen_op_evstwhe(DisasContext *ctx, TCGv addr)
6879 TCGv t0 = tcg_temp_new();
6880 #if defined(TARGET_PPC64)
6881 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
6882 #else
6883 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
6884 #endif
6885 gen_qemu_st16(t0, addr, ctx->mem_idx);
6886 tcg_gen_addi_tl(addr, addr, 2);
6887 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
6888 gen_qemu_st16(t0, addr, ctx->mem_idx);
6889 tcg_temp_free(t0);
6892 static always_inline void gen_op_evstwho(DisasContext *ctx, TCGv addr)
6894 #if defined(TARGET_PPC64)
6895 TCGv t0 = tcg_temp_new();
6896 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
6897 gen_qemu_st16(t0, addr, ctx->mem_idx);
6898 tcg_temp_free(t0);
6899 #else
6900 gen_qemu_st16(cpu_gprh[rS(ctx->opcode)], addr, ctx->mem_idx);
6901 #endif
6902 tcg_gen_addi_tl(addr, addr, 2);
6903 gen_qemu_st16(cpu_gpr[rS(ctx->opcode)], addr, ctx->mem_idx);
6906 static always_inline void gen_op_evstwwe(DisasContext *ctx, TCGv addr)
6908 #if defined(TARGET_PPC64)
6909 TCGv t0 = tcg_temp_new();
6910 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
6911 gen_qemu_st32(t0, addr, ctx->mem_idx);
6912 tcg_temp_free(t0);
6913 #else
6914 gen_qemu_st32(cpu_gprh[rS(ctx->opcode)], addr, ctx->mem_idx);
6915 #endif
6918 static always_inline void gen_op_evstwwo(DisasContext *ctx, TCGv addr)
6920 gen_qemu_st32(cpu_gpr[rS(ctx->opcode)], addr, ctx->mem_idx);
6923 #define GEN_SPEOP_LDST(name, opc2, sh) \
6924 GEN_HANDLER(gen_##name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE) \
6926 TCGv t0; \
6927 if (unlikely(!ctx->spe_enabled)) { \
6928 GEN_EXCP_NO_AP(ctx); \
6929 return; \
6931 t0 = tcg_temp_new(); \
6932 if (Rc(ctx->opcode)) { \
6933 gen_addr_spe_imm_index(t0, ctx, sh); \
6934 } else { \
6935 gen_addr_reg_index(t0, ctx); \
6937 gen_op_##name(ctx, t0); \
6938 tcg_temp_free(t0); \
6941 GEN_SPEOP_LDST(evldd, 0x00, 3);
6942 GEN_SPEOP_LDST(evldw, 0x01, 3);
6943 GEN_SPEOP_LDST(evldh, 0x02, 3);
6944 GEN_SPEOP_LDST(evlhhesplat, 0x04, 1);
6945 GEN_SPEOP_LDST(evlhhousplat, 0x06, 1);
6946 GEN_SPEOP_LDST(evlhhossplat, 0x07, 1);
6947 GEN_SPEOP_LDST(evlwhe, 0x08, 2);
6948 GEN_SPEOP_LDST(evlwhou, 0x0A, 2);
6949 GEN_SPEOP_LDST(evlwhos, 0x0B, 2);
6950 GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2);
6951 GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2);
6953 GEN_SPEOP_LDST(evstdd, 0x10, 3);
6954 GEN_SPEOP_LDST(evstdw, 0x11, 3);
6955 GEN_SPEOP_LDST(evstdh, 0x12, 3);
6956 GEN_SPEOP_LDST(evstwhe, 0x18, 2);
6957 GEN_SPEOP_LDST(evstwho, 0x1A, 2);
6958 GEN_SPEOP_LDST(evstwwe, 0x1C, 2);
6959 GEN_SPEOP_LDST(evstwwo, 0x1E, 2);
6961 /* Multiply and add - TODO */
6962 #if 0
6963 GEN_SPE(speundef, evmhessf, 0x01, 0x10, 0x00000000, PPC_SPE);
6964 GEN_SPE(speundef, evmhossf, 0x03, 0x10, 0x00000000, PPC_SPE);
6965 GEN_SPE(evmheumi, evmhesmi, 0x04, 0x10, 0x00000000, PPC_SPE);
6966 GEN_SPE(speundef, evmhesmf, 0x05, 0x10, 0x00000000, PPC_SPE);
6967 GEN_SPE(evmhoumi, evmhosmi, 0x06, 0x10, 0x00000000, PPC_SPE);
6968 GEN_SPE(speundef, evmhosmf, 0x07, 0x10, 0x00000000, PPC_SPE);
6969 GEN_SPE(speundef, evmhessfa, 0x11, 0x10, 0x00000000, PPC_SPE);
6970 GEN_SPE(speundef, evmhossfa, 0x13, 0x10, 0x00000000, PPC_SPE);
6971 GEN_SPE(evmheumia, evmhesmia, 0x14, 0x10, 0x00000000, PPC_SPE);
6972 GEN_SPE(speundef, evmhesmfa, 0x15, 0x10, 0x00000000, PPC_SPE);
6973 GEN_SPE(evmhoumia, evmhosmia, 0x16, 0x10, 0x00000000, PPC_SPE);
6974 GEN_SPE(speundef, evmhosmfa, 0x17, 0x10, 0x00000000, PPC_SPE);
6976 GEN_SPE(speundef, evmwhssf, 0x03, 0x11, 0x00000000, PPC_SPE);
6977 GEN_SPE(evmwlumi, speundef, 0x04, 0x11, 0x00000000, PPC_SPE);
6978 GEN_SPE(evmwhumi, evmwhsmi, 0x06, 0x11, 0x00000000, PPC_SPE);
6979 GEN_SPE(speundef, evmwhsmf, 0x07, 0x11, 0x00000000, PPC_SPE);
6980 GEN_SPE(speundef, evmwssf, 0x09, 0x11, 0x00000000, PPC_SPE);
6981 GEN_SPE(evmwumi, evmwsmi, 0x0C, 0x11, 0x00000000, PPC_SPE);
6982 GEN_SPE(speundef, evmwsmf, 0x0D, 0x11, 0x00000000, PPC_SPE);
6983 GEN_SPE(speundef, evmwhssfa, 0x13, 0x11, 0x00000000, PPC_SPE);
6984 GEN_SPE(evmwlumia, speundef, 0x14, 0x11, 0x00000000, PPC_SPE);
6985 GEN_SPE(evmwhumia, evmwhsmia, 0x16, 0x11, 0x00000000, PPC_SPE);
6986 GEN_SPE(speundef, evmwhsmfa, 0x17, 0x11, 0x00000000, PPC_SPE);
6987 GEN_SPE(speundef, evmwssfa, 0x19, 0x11, 0x00000000, PPC_SPE);
6988 GEN_SPE(evmwumia, evmwsmia, 0x1C, 0x11, 0x00000000, PPC_SPE);
6989 GEN_SPE(speundef, evmwsmfa, 0x1D, 0x11, 0x00000000, PPC_SPE);
6991 GEN_SPE(evadduiaaw, evaddsiaaw, 0x00, 0x13, 0x0000F800, PPC_SPE);
6992 GEN_SPE(evsubfusiaaw, evsubfssiaaw, 0x01, 0x13, 0x0000F800, PPC_SPE);
6993 GEN_SPE(evaddumiaaw, evaddsmiaaw, 0x04, 0x13, 0x0000F800, PPC_SPE);
6994 GEN_SPE(evsubfumiaaw, evsubfsmiaaw, 0x05, 0x13, 0x0000F800, PPC_SPE);
6995 GEN_SPE(evdivws, evdivwu, 0x06, 0x13, 0x00000000, PPC_SPE);
6996 GEN_SPE(evmra, speundef, 0x07, 0x13, 0x0000F800, PPC_SPE);
6998 GEN_SPE(evmheusiaaw, evmhessiaaw, 0x00, 0x14, 0x00000000, PPC_SPE);
6999 GEN_SPE(speundef, evmhessfaaw, 0x01, 0x14, 0x00000000, PPC_SPE);
7000 GEN_SPE(evmhousiaaw, evmhossiaaw, 0x02, 0x14, 0x00000000, PPC_SPE);
7001 GEN_SPE(speundef, evmhossfaaw, 0x03, 0x14, 0x00000000, PPC_SPE);
7002 GEN_SPE(evmheumiaaw, evmhesmiaaw, 0x04, 0x14, 0x00000000, PPC_SPE);
7003 GEN_SPE(speundef, evmhesmfaaw, 0x05, 0x14, 0x00000000, PPC_SPE);
7004 GEN_SPE(evmhoumiaaw, evmhosmiaaw, 0x06, 0x14, 0x00000000, PPC_SPE);
7005 GEN_SPE(speundef, evmhosmfaaw, 0x07, 0x14, 0x00000000, PPC_SPE);
7006 GEN_SPE(evmhegumiaa, evmhegsmiaa, 0x14, 0x14, 0x00000000, PPC_SPE);
7007 GEN_SPE(speundef, evmhegsmfaa, 0x15, 0x14, 0x00000000, PPC_SPE);
7008 GEN_SPE(evmhogumiaa, evmhogsmiaa, 0x16, 0x14, 0x00000000, PPC_SPE);
7009 GEN_SPE(speundef, evmhogsmfaa, 0x17, 0x14, 0x00000000, PPC_SPE);
7011 GEN_SPE(evmwlusiaaw, evmwlssiaaw, 0x00, 0x15, 0x00000000, PPC_SPE);
7012 GEN_SPE(evmwlumiaaw, evmwlsmiaaw, 0x04, 0x15, 0x00000000, PPC_SPE);
7013 GEN_SPE(speundef, evmwssfaa, 0x09, 0x15, 0x00000000, PPC_SPE);
7014 GEN_SPE(evmwumiaa, evmwsmiaa, 0x0C, 0x15, 0x00000000, PPC_SPE);
7015 GEN_SPE(speundef, evmwsmfaa, 0x0D, 0x15, 0x00000000, PPC_SPE);
7017 GEN_SPE(evmheusianw, evmhessianw, 0x00, 0x16, 0x00000000, PPC_SPE);
7018 GEN_SPE(speundef, evmhessfanw, 0x01, 0x16, 0x00000000, PPC_SPE);
7019 GEN_SPE(evmhousianw, evmhossianw, 0x02, 0x16, 0x00000000, PPC_SPE);
7020 GEN_SPE(speundef, evmhossfanw, 0x03, 0x16, 0x00000000, PPC_SPE);
7021 GEN_SPE(evmheumianw, evmhesmianw, 0x04, 0x16, 0x00000000, PPC_SPE);
7022 GEN_SPE(speundef, evmhesmfanw, 0x05, 0x16, 0x00000000, PPC_SPE);
7023 GEN_SPE(evmhoumianw, evmhosmianw, 0x06, 0x16, 0x00000000, PPC_SPE);
7024 GEN_SPE(speundef, evmhosmfanw, 0x07, 0x16, 0x00000000, PPC_SPE);
7025 GEN_SPE(evmhegumian, evmhegsmian, 0x14, 0x16, 0x00000000, PPC_SPE);
7026 GEN_SPE(speundef, evmhegsmfan, 0x15, 0x16, 0x00000000, PPC_SPE);
7027 GEN_SPE(evmhigumian, evmhigsmian, 0x16, 0x16, 0x00000000, PPC_SPE);
7028 GEN_SPE(speundef, evmhogsmfan, 0x17, 0x16, 0x00000000, PPC_SPE);
7030 GEN_SPE(evmwlusianw, evmwlssianw, 0x00, 0x17, 0x00000000, PPC_SPE);
7031 GEN_SPE(evmwlumianw, evmwlsmianw, 0x04, 0x17, 0x00000000, PPC_SPE);
7032 GEN_SPE(speundef, evmwssfan, 0x09, 0x17, 0x00000000, PPC_SPE);
7033 GEN_SPE(evmwumian, evmwsmian, 0x0C, 0x17, 0x00000000, PPC_SPE);
7034 GEN_SPE(speundef, evmwsmfan, 0x0D, 0x17, 0x00000000, PPC_SPE);
7035 #endif
7037 /*** SPE floating-point extension ***/
7038 #if defined(TARGET_PPC64)
7039 #define GEN_SPEFPUOP_CONV_32_32(name) \
7040 static always_inline void gen_##name (DisasContext *ctx) \
7042 TCGv_i32 t0; \
7043 TCGv t1; \
7044 t0 = tcg_temp_new_i32(); \
7045 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7046 gen_helper_##name(t0, t0); \
7047 t1 = tcg_temp_new(); \
7048 tcg_gen_extu_i32_tl(t1, t0); \
7049 tcg_temp_free_i32(t0); \
7050 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7051 0xFFFFFFFF00000000ULL); \
7052 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7053 tcg_temp_free(t1); \
7055 #define GEN_SPEFPUOP_CONV_32_64(name) \
7056 static always_inline void gen_##name (DisasContext *ctx) \
7058 TCGv_i32 t0; \
7059 TCGv t1; \
7060 t0 = tcg_temp_new_i32(); \
7061 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7062 t1 = tcg_temp_new(); \
7063 tcg_gen_extu_i32_tl(t1, t0); \
7064 tcg_temp_free_i32(t0); \
7065 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7066 0xFFFFFFFF00000000ULL); \
7067 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7068 tcg_temp_free(t1); \
7070 #define GEN_SPEFPUOP_CONV_64_32(name) \
7071 static always_inline void gen_##name (DisasContext *ctx) \
7073 TCGv_i32 t0 = tcg_temp_new_i32(); \
7074 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7075 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7076 tcg_temp_free_i32(t0); \
7078 #define GEN_SPEFPUOP_CONV_64_64(name) \
7079 static always_inline void gen_##name (DisasContext *ctx) \
7081 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7083 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7084 static always_inline void gen_##name (DisasContext *ctx) \
7086 TCGv_i32 t0, t1; \
7087 TCGv_i64 t2; \
7088 if (unlikely(!ctx->spe_enabled)) { \
7089 GEN_EXCP_NO_AP(ctx); \
7090 return; \
7092 t0 = tcg_temp_new_i32(); \
7093 t1 = tcg_temp_new_i32(); \
7094 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7095 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7096 gen_helper_##name(t0, t0, t1); \
7097 tcg_temp_free_i32(t1); \
7098 t2 = tcg_temp_new(); \
7099 tcg_gen_extu_i32_tl(t2, t0); \
7100 tcg_temp_free_i32(t0); \
7101 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7102 0xFFFFFFFF00000000ULL); \
7103 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
7104 tcg_temp_free(t2); \
7106 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7107 static always_inline void gen_##name (DisasContext *ctx) \
7109 if (unlikely(!ctx->spe_enabled)) { \
7110 GEN_EXCP_NO_AP(ctx); \
7111 return; \
7113 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7114 cpu_gpr[rB(ctx->opcode)]); \
7116 #define GEN_SPEFPUOP_COMP_32(name) \
7117 static always_inline void gen_##name (DisasContext *ctx) \
7119 TCGv_i32 t0, t1; \
7120 if (unlikely(!ctx->spe_enabled)) { \
7121 GEN_EXCP_NO_AP(ctx); \
7122 return; \
7124 t0 = tcg_temp_new_i32(); \
7125 t1 = tcg_temp_new_i32(); \
7126 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7127 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7128 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7129 tcg_temp_free_i32(t0); \
7130 tcg_temp_free_i32(t1); \
7132 #define GEN_SPEFPUOP_COMP_64(name) \
7133 static always_inline void gen_##name (DisasContext *ctx) \
7135 if (unlikely(!ctx->spe_enabled)) { \
7136 GEN_EXCP_NO_AP(ctx); \
7137 return; \
7139 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7140 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7142 #else
7143 #define GEN_SPEFPUOP_CONV_32_32(name) \
7144 static always_inline void gen_##name (DisasContext *ctx) \
7146 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7148 #define GEN_SPEFPUOP_CONV_32_64(name) \
7149 static always_inline void gen_##name (DisasContext *ctx) \
7151 TCGv_i64 t0 = tcg_temp_new_i64(); \
7152 gen_load_gpr64(t0, rB(ctx->opcode)); \
7153 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7154 tcg_temp_free_i64(t0); \
7156 #define GEN_SPEFPUOP_CONV_64_32(name) \
7157 static always_inline void gen_##name (DisasContext *ctx) \
7159 TCGv_i64 t0 = tcg_temp_new_i64(); \
7160 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7161 gen_store_gpr64(rD(ctx->opcode), t0); \
7162 tcg_temp_free_i64(t0); \
7164 #define GEN_SPEFPUOP_CONV_64_64(name) \
7165 static always_inline void gen_##name (DisasContext *ctx) \
7167 TCGv_i64 t0 = tcg_temp_new_i64(); \
7168 gen_load_gpr64(t0, rB(ctx->opcode)); \
7169 gen_helper_##name(t0, t0); \
7170 gen_store_gpr64(rD(ctx->opcode), t0); \
7171 tcg_temp_free_i64(t0); \
7173 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7174 static always_inline void gen_##name (DisasContext *ctx) \
7176 if (unlikely(!ctx->spe_enabled)) { \
7177 GEN_EXCP_NO_AP(ctx); \
7178 return; \
7180 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \
7181 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7183 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7184 static always_inline void gen_##name (DisasContext *ctx) \
7186 TCGv_i64 t0, t1; \
7187 if (unlikely(!ctx->spe_enabled)) { \
7188 GEN_EXCP_NO_AP(ctx); \
7189 return; \
7191 t0 = tcg_temp_new_i64(); \
7192 t1 = tcg_temp_new_i64(); \
7193 gen_load_gpr64(t0, rA(ctx->opcode)); \
7194 gen_load_gpr64(t1, rB(ctx->opcode)); \
7195 gen_helper_##name(t0, t0, t1); \
7196 gen_store_gpr64(rD(ctx->opcode), t0); \
7197 tcg_temp_free_i64(t0); \
7198 tcg_temp_free_i64(t1); \
7200 #define GEN_SPEFPUOP_COMP_32(name) \
7201 static always_inline void gen_##name (DisasContext *ctx) \
7203 if (unlikely(!ctx->spe_enabled)) { \
7204 GEN_EXCP_NO_AP(ctx); \
7205 return; \
7207 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7208 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7210 #define GEN_SPEFPUOP_COMP_64(name) \
7211 static always_inline void gen_##name (DisasContext *ctx) \
7213 TCGv_i64 t0, t1; \
7214 if (unlikely(!ctx->spe_enabled)) { \
7215 GEN_EXCP_NO_AP(ctx); \
7216 return; \
7218 t0 = tcg_temp_new_i64(); \
7219 t1 = tcg_temp_new_i64(); \
7220 gen_load_gpr64(t0, rA(ctx->opcode)); \
7221 gen_load_gpr64(t1, rB(ctx->opcode)); \
7222 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7223 tcg_temp_free_i64(t0); \
7224 tcg_temp_free_i64(t1); \
7226 #endif
7228 /* Single precision floating-point vectors operations */
7229 /* Arithmetic */
7230 GEN_SPEFPUOP_ARITH2_64_64(evfsadd);
7231 GEN_SPEFPUOP_ARITH2_64_64(evfssub);
7232 GEN_SPEFPUOP_ARITH2_64_64(evfsmul);
7233 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv);
7234 static always_inline void gen_evfsabs (DisasContext *ctx)
7236 if (unlikely(!ctx->spe_enabled)) {
7237 GEN_EXCP_NO_AP(ctx);
7238 return;
7240 #if defined(TARGET_PPC64)
7241 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000080000000LL);
7242 #else
7243 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x80000000);
7244 tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
7245 #endif
7247 static always_inline void gen_evfsnabs (DisasContext *ctx)
7249 if (unlikely(!ctx->spe_enabled)) {
7250 GEN_EXCP_NO_AP(ctx);
7251 return;
7253 #if defined(TARGET_PPC64)
7254 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
7255 #else
7256 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7257 tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7258 #endif
7260 static always_inline void gen_evfsneg (DisasContext *ctx)
7262 if (unlikely(!ctx->spe_enabled)) {
7263 GEN_EXCP_NO_AP(ctx);
7264 return;
7266 #if defined(TARGET_PPC64)
7267 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
7268 #else
7269 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7270 tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7271 #endif
7274 /* Conversion */
7275 GEN_SPEFPUOP_CONV_64_64(evfscfui);
7276 GEN_SPEFPUOP_CONV_64_64(evfscfsi);
7277 GEN_SPEFPUOP_CONV_64_64(evfscfuf);
7278 GEN_SPEFPUOP_CONV_64_64(evfscfsf);
7279 GEN_SPEFPUOP_CONV_64_64(evfsctui);
7280 GEN_SPEFPUOP_CONV_64_64(evfsctsi);
7281 GEN_SPEFPUOP_CONV_64_64(evfsctuf);
7282 GEN_SPEFPUOP_CONV_64_64(evfsctsf);
7283 GEN_SPEFPUOP_CONV_64_64(evfsctuiz);
7284 GEN_SPEFPUOP_CONV_64_64(evfsctsiz);
7286 /* Comparison */
7287 GEN_SPEFPUOP_COMP_64(evfscmpgt);
7288 GEN_SPEFPUOP_COMP_64(evfscmplt);
7289 GEN_SPEFPUOP_COMP_64(evfscmpeq);
7290 GEN_SPEFPUOP_COMP_64(evfststgt);
7291 GEN_SPEFPUOP_COMP_64(evfststlt);
7292 GEN_SPEFPUOP_COMP_64(evfststeq);
7294 /* Opcodes definitions */
7295 GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, PPC_SPEFPU); //
7296 GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, PPC_SPEFPU); //
7297 GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, PPC_SPEFPU); //
7298 GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, PPC_SPEFPU); //
7299 GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, PPC_SPEFPU); //
7300 GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, PPC_SPEFPU); //
7301 GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, PPC_SPEFPU); //
7302 GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, PPC_SPEFPU); //
7303 GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, PPC_SPEFPU); //
7304 GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, PPC_SPEFPU); //
7305 GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, PPC_SPEFPU); //
7306 GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, PPC_SPEFPU); //
7307 GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, PPC_SPEFPU); //
7308 GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, PPC_SPEFPU); //
7310 /* Single precision floating-point operations */
7311 /* Arithmetic */
7312 GEN_SPEFPUOP_ARITH2_32_32(efsadd);
7313 GEN_SPEFPUOP_ARITH2_32_32(efssub);
7314 GEN_SPEFPUOP_ARITH2_32_32(efsmul);
7315 GEN_SPEFPUOP_ARITH2_32_32(efsdiv);
7316 static always_inline void gen_efsabs (DisasContext *ctx)
7318 if (unlikely(!ctx->spe_enabled)) {
7319 GEN_EXCP_NO_AP(ctx);
7320 return;
7322 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], (target_long)~0x80000000LL);
7324 static always_inline void gen_efsnabs (DisasContext *ctx)
7326 if (unlikely(!ctx->spe_enabled)) {
7327 GEN_EXCP_NO_AP(ctx);
7328 return;
7330 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7332 static always_inline void gen_efsneg (DisasContext *ctx)
7334 if (unlikely(!ctx->spe_enabled)) {
7335 GEN_EXCP_NO_AP(ctx);
7336 return;
7338 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7341 /* Conversion */
7342 GEN_SPEFPUOP_CONV_32_32(efscfui);
7343 GEN_SPEFPUOP_CONV_32_32(efscfsi);
7344 GEN_SPEFPUOP_CONV_32_32(efscfuf);
7345 GEN_SPEFPUOP_CONV_32_32(efscfsf);
7346 GEN_SPEFPUOP_CONV_32_32(efsctui);
7347 GEN_SPEFPUOP_CONV_32_32(efsctsi);
7348 GEN_SPEFPUOP_CONV_32_32(efsctuf);
7349 GEN_SPEFPUOP_CONV_32_32(efsctsf);
7350 GEN_SPEFPUOP_CONV_32_32(efsctuiz);
7351 GEN_SPEFPUOP_CONV_32_32(efsctsiz);
7352 GEN_SPEFPUOP_CONV_32_64(efscfd);
7354 /* Comparison */
7355 GEN_SPEFPUOP_COMP_32(efscmpgt);
7356 GEN_SPEFPUOP_COMP_32(efscmplt);
7357 GEN_SPEFPUOP_COMP_32(efscmpeq);
7358 GEN_SPEFPUOP_COMP_32(efststgt);
7359 GEN_SPEFPUOP_COMP_32(efststlt);
7360 GEN_SPEFPUOP_COMP_32(efststeq);
7362 /* Opcodes definitions */
7363 GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, PPC_SPEFPU); //
7364 GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, PPC_SPEFPU); //
7365 GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, PPC_SPEFPU); //
7366 GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, PPC_SPEFPU); //
7367 GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, PPC_SPEFPU); //
7368 GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, PPC_SPEFPU); //
7369 GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, PPC_SPEFPU); //
7370 GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, PPC_SPEFPU); //
7371 GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, PPC_SPEFPU); //
7372 GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, PPC_SPEFPU); //
7373 GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, PPC_SPEFPU); //
7374 GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, PPC_SPEFPU); //
7375 GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, PPC_SPEFPU); //
7376 GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, PPC_SPEFPU); //
7378 /* Double precision floating-point operations */
7379 /* Arithmetic */
7380 GEN_SPEFPUOP_ARITH2_64_64(efdadd);
7381 GEN_SPEFPUOP_ARITH2_64_64(efdsub);
7382 GEN_SPEFPUOP_ARITH2_64_64(efdmul);
7383 GEN_SPEFPUOP_ARITH2_64_64(efddiv);
7384 static always_inline void gen_efdabs (DisasContext *ctx)
7386 if (unlikely(!ctx->spe_enabled)) {
7387 GEN_EXCP_NO_AP(ctx);
7388 return;
7390 #if defined(TARGET_PPC64)
7391 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000000000000LL);
7392 #else
7393 tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
7394 #endif
7396 static always_inline void gen_efdnabs (DisasContext *ctx)
7398 if (unlikely(!ctx->spe_enabled)) {
7399 GEN_EXCP_NO_AP(ctx);
7400 return;
7402 #if defined(TARGET_PPC64)
7403 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
7404 #else
7405 tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7406 #endif
7408 static always_inline void gen_efdneg (DisasContext *ctx)
7410 if (unlikely(!ctx->spe_enabled)) {
7411 GEN_EXCP_NO_AP(ctx);
7412 return;
7414 #if defined(TARGET_PPC64)
7415 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
7416 #else
7417 tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7418 #endif
7421 /* Conversion */
7422 GEN_SPEFPUOP_CONV_64_32(efdcfui);
7423 GEN_SPEFPUOP_CONV_64_32(efdcfsi);
7424 GEN_SPEFPUOP_CONV_64_32(efdcfuf);
7425 GEN_SPEFPUOP_CONV_64_32(efdcfsf);
7426 GEN_SPEFPUOP_CONV_32_64(efdctui);
7427 GEN_SPEFPUOP_CONV_32_64(efdctsi);
7428 GEN_SPEFPUOP_CONV_32_64(efdctuf);
7429 GEN_SPEFPUOP_CONV_32_64(efdctsf);
7430 GEN_SPEFPUOP_CONV_32_64(efdctuiz);
7431 GEN_SPEFPUOP_CONV_32_64(efdctsiz);
7432 GEN_SPEFPUOP_CONV_64_32(efdcfs);
7433 GEN_SPEFPUOP_CONV_64_64(efdcfuid);
7434 GEN_SPEFPUOP_CONV_64_64(efdcfsid);
7435 GEN_SPEFPUOP_CONV_64_64(efdctuidz);
7436 GEN_SPEFPUOP_CONV_64_64(efdctsidz);
7438 /* Comparison */
7439 GEN_SPEFPUOP_COMP_64(efdcmpgt);
7440 GEN_SPEFPUOP_COMP_64(efdcmplt);
7441 GEN_SPEFPUOP_COMP_64(efdcmpeq);
7442 GEN_SPEFPUOP_COMP_64(efdtstgt);
7443 GEN_SPEFPUOP_COMP_64(efdtstlt);
7444 GEN_SPEFPUOP_COMP_64(efdtsteq);
7446 /* Opcodes definitions */
7447 GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, PPC_SPEFPU); //
7448 GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, PPC_SPEFPU); //
7449 GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, PPC_SPEFPU); //
7450 GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, PPC_SPEFPU); //
7451 GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, PPC_SPEFPU); //
7452 GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, PPC_SPEFPU); //
7453 GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, PPC_SPEFPU); //
7454 GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, PPC_SPEFPU); //
7455 GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, PPC_SPEFPU); //
7456 GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, PPC_SPEFPU); //
7457 GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, PPC_SPEFPU); //
7458 GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, PPC_SPEFPU); //
7459 GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, PPC_SPEFPU); //
7460 GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, PPC_SPEFPU); //
7461 GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, PPC_SPEFPU); //
7462 GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, PPC_SPEFPU); //
7464 /* End opcode list */
7465 GEN_OPCODE_MARK(end);
7467 #include "translate_init.c"
7468 #include "helper_regs.h"
7470 /*****************************************************************************/
7471 /* Misc PowerPC helpers */
7472 void cpu_dump_state (CPUState *env, FILE *f,
7473 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
7474 int flags)
7476 #define RGPL 4
7477 #define RFPL 4
7479 int i;
7481 cpu_fprintf(f, "NIP " ADDRX " LR " ADDRX " CTR " ADDRX " XER %08x\n",
7482 env->nip, env->lr, env->ctr, env->xer);
7483 cpu_fprintf(f, "MSR " ADDRX " HID0 " ADDRX " HF " ADDRX " idx %d\n",
7484 env->msr, env->spr[SPR_HID0], env->hflags, env->mmu_idx);
7485 #if !defined(NO_TIMER_DUMP)
7486 cpu_fprintf(f, "TB %08x %08x "
7487 #if !defined(CONFIG_USER_ONLY)
7488 "DECR %08x"
7489 #endif
7490 "\n",
7491 cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
7492 #if !defined(CONFIG_USER_ONLY)
7493 , cpu_ppc_load_decr(env)
7494 #endif
7496 #endif
7497 for (i = 0; i < 32; i++) {
7498 if ((i & (RGPL - 1)) == 0)
7499 cpu_fprintf(f, "GPR%02d", i);
7500 cpu_fprintf(f, " " REGX, ppc_dump_gpr(env, i));
7501 if ((i & (RGPL - 1)) == (RGPL - 1))
7502 cpu_fprintf(f, "\n");
7504 cpu_fprintf(f, "CR ");
7505 for (i = 0; i < 8; i++)
7506 cpu_fprintf(f, "%01x", env->crf[i]);
7507 cpu_fprintf(f, " [");
7508 for (i = 0; i < 8; i++) {
7509 char a = '-';
7510 if (env->crf[i] & 0x08)
7511 a = 'L';
7512 else if (env->crf[i] & 0x04)
7513 a = 'G';
7514 else if (env->crf[i] & 0x02)
7515 a = 'E';
7516 cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
7518 cpu_fprintf(f, " ] RES " ADDRX "\n", env->reserve);
7519 for (i = 0; i < 32; i++) {
7520 if ((i & (RFPL - 1)) == 0)
7521 cpu_fprintf(f, "FPR%02d", i);
7522 cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
7523 if ((i & (RFPL - 1)) == (RFPL - 1))
7524 cpu_fprintf(f, "\n");
7526 #if !defined(CONFIG_USER_ONLY)
7527 cpu_fprintf(f, "SRR0 " ADDRX " SRR1 " ADDRX " SDR1 " ADDRX "\n",
7528 env->spr[SPR_SRR0], env->spr[SPR_SRR1], env->sdr1);
7529 #endif
7531 #undef RGPL
7532 #undef RFPL
7535 void cpu_dump_statistics (CPUState *env, FILE*f,
7536 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
7537 int flags)
7539 #if defined(DO_PPC_STATISTICS)
7540 opc_handler_t **t1, **t2, **t3, *handler;
7541 int op1, op2, op3;
7543 t1 = env->opcodes;
7544 for (op1 = 0; op1 < 64; op1++) {
7545 handler = t1[op1];
7546 if (is_indirect_opcode(handler)) {
7547 t2 = ind_table(handler);
7548 for (op2 = 0; op2 < 32; op2++) {
7549 handler = t2[op2];
7550 if (is_indirect_opcode(handler)) {
7551 t3 = ind_table(handler);
7552 for (op3 = 0; op3 < 32; op3++) {
7553 handler = t3[op3];
7554 if (handler->count == 0)
7555 continue;
7556 cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
7557 "%016llx %lld\n",
7558 op1, op2, op3, op1, (op3 << 5) | op2,
7559 handler->oname,
7560 handler->count, handler->count);
7562 } else {
7563 if (handler->count == 0)
7564 continue;
7565 cpu_fprintf(f, "%02x %02x (%02x %04d) %16s: "
7566 "%016llx %lld\n",
7567 op1, op2, op1, op2, handler->oname,
7568 handler->count, handler->count);
7571 } else {
7572 if (handler->count == 0)
7573 continue;
7574 cpu_fprintf(f, "%02x (%02x ) %16s: %016llx %lld\n",
7575 op1, op1, handler->oname,
7576 handler->count, handler->count);
7579 #endif
7582 /*****************************************************************************/
7583 static always_inline void gen_intermediate_code_internal (CPUState *env,
7584 TranslationBlock *tb,
7585 int search_pc)
7587 DisasContext ctx, *ctxp = &ctx;
7588 opc_handler_t **table, *handler;
7589 target_ulong pc_start;
7590 uint16_t *gen_opc_end;
7591 int supervisor, little_endian;
7592 CPUBreakpoint *bp;
7593 int j, lj = -1;
7594 int num_insns;
7595 int max_insns;
7597 pc_start = tb->pc;
7598 gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
7599 #if defined(OPTIMIZE_FPRF_UPDATE)
7600 gen_fprf_ptr = gen_fprf_buf;
7601 #endif
7602 ctx.nip = pc_start;
7603 ctx.tb = tb;
7604 ctx.exception = POWERPC_EXCP_NONE;
7605 ctx.spr_cb = env->spr_cb;
7606 supervisor = env->mmu_idx;
7607 #if !defined(CONFIG_USER_ONLY)
7608 ctx.supervisor = supervisor;
7609 #endif
7610 little_endian = env->hflags & (1 << MSR_LE) ? 1 : 0;
7611 #if defined(TARGET_PPC64)
7612 ctx.sf_mode = msr_sf;
7613 ctx.mem_idx = (supervisor << 2) | (msr_sf << 1) | little_endian;
7614 #else
7615 ctx.mem_idx = (supervisor << 1) | little_endian;
7616 #endif
7617 ctx.fpu_enabled = msr_fp;
7618 if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
7619 ctx.spe_enabled = msr_spe;
7620 else
7621 ctx.spe_enabled = 0;
7622 if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
7623 ctx.altivec_enabled = msr_vr;
7624 else
7625 ctx.altivec_enabled = 0;
7626 if ((env->flags & POWERPC_FLAG_SE) && msr_se)
7627 ctx.singlestep_enabled = CPU_SINGLE_STEP;
7628 else
7629 ctx.singlestep_enabled = 0;
7630 if ((env->flags & POWERPC_FLAG_BE) && msr_be)
7631 ctx.singlestep_enabled |= CPU_BRANCH_STEP;
7632 if (unlikely(env->singlestep_enabled))
7633 ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP;
7634 #if defined (DO_SINGLE_STEP) && 0
7635 /* Single step trace mode */
7636 msr_se = 1;
7637 #endif
7638 num_insns = 0;
7639 max_insns = tb->cflags & CF_COUNT_MASK;
7640 if (max_insns == 0)
7641 max_insns = CF_COUNT_MASK;
7643 gen_icount_start();
7644 /* Set env in case of segfault during code fetch */
7645 while (ctx.exception == POWERPC_EXCP_NONE && gen_opc_ptr < gen_opc_end) {
7646 if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) {
7647 TAILQ_FOREACH(bp, &env->breakpoints, entry) {
7648 if (bp->pc == ctx.nip) {
7649 gen_update_nip(&ctx, ctx.nip);
7650 gen_helper_raise_debug();
7651 break;
7655 if (unlikely(search_pc)) {
7656 j = gen_opc_ptr - gen_opc_buf;
7657 if (lj < j) {
7658 lj++;
7659 while (lj < j)
7660 gen_opc_instr_start[lj++] = 0;
7661 gen_opc_pc[lj] = ctx.nip;
7662 gen_opc_instr_start[lj] = 1;
7663 gen_opc_icount[lj] = num_insns;
7666 #if defined PPC_DEBUG_DISAS
7667 if (loglevel & CPU_LOG_TB_IN_ASM) {
7668 fprintf(logfile, "----------------\n");
7669 fprintf(logfile, "nip=" ADDRX " super=%d ir=%d\n",
7670 ctx.nip, supervisor, (int)msr_ir);
7672 #endif
7673 if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
7674 gen_io_start();
7675 if (unlikely(little_endian)) {
7676 ctx.opcode = bswap32(ldl_code(ctx.nip));
7677 } else {
7678 ctx.opcode = ldl_code(ctx.nip);
7680 #if defined PPC_DEBUG_DISAS
7681 if (loglevel & CPU_LOG_TB_IN_ASM) {
7682 fprintf(logfile, "translate opcode %08x (%02x %02x %02x) (%s)\n",
7683 ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
7684 opc3(ctx.opcode), little_endian ? "little" : "big");
7686 #endif
7687 ctx.nip += 4;
7688 table = env->opcodes;
7689 num_insns++;
7690 handler = table[opc1(ctx.opcode)];
7691 if (is_indirect_opcode(handler)) {
7692 table = ind_table(handler);
7693 handler = table[opc2(ctx.opcode)];
7694 if (is_indirect_opcode(handler)) {
7695 table = ind_table(handler);
7696 handler = table[opc3(ctx.opcode)];
7699 /* Is opcode *REALLY* valid ? */
7700 if (unlikely(handler->handler == &gen_invalid)) {
7701 if (loglevel != 0) {
7702 fprintf(logfile, "invalid/unsupported opcode: "
7703 "%02x - %02x - %02x (%08x) " ADDRX " %d\n",
7704 opc1(ctx.opcode), opc2(ctx.opcode),
7705 opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
7706 } else {
7707 printf("invalid/unsupported opcode: "
7708 "%02x - %02x - %02x (%08x) " ADDRX " %d\n",
7709 opc1(ctx.opcode), opc2(ctx.opcode),
7710 opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
7712 } else {
7713 if (unlikely((ctx.opcode & handler->inval) != 0)) {
7714 if (loglevel != 0) {
7715 fprintf(logfile, "invalid bits: %08x for opcode: "
7716 "%02x - %02x - %02x (%08x) " ADDRX "\n",
7717 ctx.opcode & handler->inval, opc1(ctx.opcode),
7718 opc2(ctx.opcode), opc3(ctx.opcode),
7719 ctx.opcode, ctx.nip - 4);
7720 } else {
7721 printf("invalid bits: %08x for opcode: "
7722 "%02x - %02x - %02x (%08x) " ADDRX "\n",
7723 ctx.opcode & handler->inval, opc1(ctx.opcode),
7724 opc2(ctx.opcode), opc3(ctx.opcode),
7725 ctx.opcode, ctx.nip - 4);
7727 GEN_EXCP_INVAL(ctxp);
7728 break;
7731 (*(handler->handler))(&ctx);
7732 #if defined(DO_PPC_STATISTICS)
7733 handler->count++;
7734 #endif
7735 /* Check trace mode exceptions */
7736 if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP &&
7737 (ctx.nip <= 0x100 || ctx.nip > 0xF00) &&
7738 ctx.exception != POWERPC_SYSCALL &&
7739 ctx.exception != POWERPC_EXCP_TRAP &&
7740 ctx.exception != POWERPC_EXCP_BRANCH)) {
7741 GEN_EXCP(ctxp, POWERPC_EXCP_TRACE, 0);
7742 } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
7743 (env->singlestep_enabled) ||
7744 num_insns >= max_insns)) {
7745 /* if we reach a page boundary or are single stepping, stop
7746 * generation
7748 break;
7750 #if defined (DO_SINGLE_STEP)
7751 break;
7752 #endif
7754 if (tb->cflags & CF_LAST_IO)
7755 gen_io_end();
7756 if (ctx.exception == POWERPC_EXCP_NONE) {
7757 gen_goto_tb(&ctx, 0, ctx.nip);
7758 } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
7759 if (unlikely(env->singlestep_enabled)) {
7760 gen_update_nip(&ctx, ctx.nip);
7761 gen_helper_raise_debug();
7763 /* Generate the return instruction */
7764 tcg_gen_exit_tb(0);
7766 gen_icount_end(tb, num_insns);
7767 *gen_opc_ptr = INDEX_op_end;
7768 if (unlikely(search_pc)) {
7769 j = gen_opc_ptr - gen_opc_buf;
7770 lj++;
7771 while (lj <= j)
7772 gen_opc_instr_start[lj++] = 0;
7773 } else {
7774 tb->size = ctx.nip - pc_start;
7775 tb->icount = num_insns;
7777 #if defined(DEBUG_DISAS)
7778 if (loglevel & CPU_LOG_TB_CPU) {
7779 fprintf(logfile, "---------------- excp: %04x\n", ctx.exception);
7780 cpu_dump_state(env, logfile, fprintf, 0);
7782 if (loglevel & CPU_LOG_TB_IN_ASM) {
7783 int flags;
7784 flags = env->bfd_mach;
7785 flags |= little_endian << 16;
7786 fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
7787 target_disas(logfile, pc_start, ctx.nip - pc_start, flags);
7788 fprintf(logfile, "\n");
7790 #endif
7793 void gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
7795 gen_intermediate_code_internal(env, tb, 0);
7798 void gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
7800 gen_intermediate_code_internal(env, tb, 1);
7803 void gen_pc_load(CPUState *env, TranslationBlock *tb,
7804 unsigned long searched_pc, int pc_pos, void *puc)
7806 env->nip = gen_opc_pc[pc_pos];