Add GEN_VXFORM_SIMM macro for subsequent instructions.
[qemu/qemu-JZ.git] / target-ppc / translate.c
blob6416ede98e8bd8b64b06e79343cfef187a6355b3
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 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
45 /*****************************************************************************/
46 /* Code translation helpers */
48 /* global register indexes */
49 static TCGv_ptr cpu_env;
50 static char cpu_reg_names[10*3 + 22*4 /* GPR */
51 #if !defined(TARGET_PPC64)
52 + 10*4 + 22*5 /* SPE GPRh */
53 #endif
54 + 10*4 + 22*5 /* FPR */
55 + 2*(10*6 + 22*7) /* AVRh, AVRl */
56 + 8*5 /* CRF */];
57 static TCGv cpu_gpr[32];
58 #if !defined(TARGET_PPC64)
59 static TCGv cpu_gprh[32];
60 #endif
61 static TCGv_i64 cpu_fpr[32];
62 static TCGv_i64 cpu_avrh[32], cpu_avrl[32];
63 static TCGv_i32 cpu_crf[8];
64 static TCGv cpu_nip;
65 static TCGv cpu_msr;
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 #include "gen-icount.h"
75 void ppc_translate_init(void)
77 int i;
78 char* p;
79 static int done_init = 0;
81 if (done_init)
82 return;
84 cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
86 p = cpu_reg_names;
88 for (i = 0; i < 8; i++) {
89 sprintf(p, "crf%d", i);
90 cpu_crf[i] = tcg_global_mem_new_i32(TCG_AREG0,
91 offsetof(CPUState, crf[i]), p);
92 p += 5;
95 for (i = 0; i < 32; i++) {
96 sprintf(p, "r%d", i);
97 cpu_gpr[i] = tcg_global_mem_new(TCG_AREG0,
98 offsetof(CPUState, gpr[i]), p);
99 p += (i < 10) ? 3 : 4;
100 #if !defined(TARGET_PPC64)
101 sprintf(p, "r%dH", i);
102 cpu_gprh[i] = tcg_global_mem_new_i32(TCG_AREG0,
103 offsetof(CPUState, gprh[i]), p);
104 p += (i < 10) ? 4 : 5;
105 #endif
107 sprintf(p, "fp%d", i);
108 cpu_fpr[i] = tcg_global_mem_new_i64(TCG_AREG0,
109 offsetof(CPUState, fpr[i]), p);
110 p += (i < 10) ? 4 : 5;
112 sprintf(p, "avr%dH", i);
113 #ifdef WORDS_BIGENDIAN
114 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
115 offsetof(CPUState, avr[i].u64[0]), p);
116 #else
117 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
118 offsetof(CPUState, avr[i].u64[1]), p);
119 #endif
120 p += (i < 10) ? 6 : 7;
122 sprintf(p, "avr%dL", i);
123 #ifdef WORDS_BIGENDIAN
124 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
125 offsetof(CPUState, avr[i].u64[1]), p);
126 #else
127 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
128 offsetof(CPUState, avr[i].u64[0]), p);
129 #endif
130 p += (i < 10) ? 6 : 7;
133 cpu_nip = tcg_global_mem_new(TCG_AREG0,
134 offsetof(CPUState, nip), "nip");
136 cpu_msr = tcg_global_mem_new(TCG_AREG0,
137 offsetof(CPUState, msr), "msr");
139 cpu_ctr = tcg_global_mem_new(TCG_AREG0,
140 offsetof(CPUState, ctr), "ctr");
142 cpu_lr = tcg_global_mem_new(TCG_AREG0,
143 offsetof(CPUState, lr), "lr");
145 cpu_xer = tcg_global_mem_new(TCG_AREG0,
146 offsetof(CPUState, xer), "xer");
148 cpu_reserve = tcg_global_mem_new(TCG_AREG0,
149 offsetof(CPUState, reserve), "reserve");
151 cpu_fpscr = tcg_global_mem_new_i32(TCG_AREG0,
152 offsetof(CPUState, fpscr), "fpscr");
154 cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0,
155 offsetof(CPUState, access_type), "access_type");
157 /* register helpers */
158 #define GEN_HELPER 2
159 #include "helper.h"
161 done_init = 1;
164 /* internal defines */
165 typedef struct DisasContext {
166 struct TranslationBlock *tb;
167 target_ulong nip;
168 uint32_t opcode;
169 uint32_t exception;
170 /* Routine used to access memory */
171 int mem_idx;
172 int access_type;
173 /* Translation flags */
174 int le_mode;
175 #if defined(TARGET_PPC64)
176 int sf_mode;
177 #endif
178 int fpu_enabled;
179 int altivec_enabled;
180 int spe_enabled;
181 ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
182 int singlestep_enabled;
183 } DisasContext;
185 struct opc_handler_t {
186 /* invalid bits */
187 uint32_t inval;
188 /* instruction type */
189 uint64_t type;
190 /* handler */
191 void (*handler)(DisasContext *ctx);
192 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
193 const char *oname;
194 #endif
195 #if defined(DO_PPC_STATISTICS)
196 uint64_t count;
197 #endif
200 static always_inline void gen_reset_fpstatus (void)
202 #ifdef CONFIG_SOFTFLOAT
203 gen_helper_reset_fpstatus();
204 #endif
207 static always_inline void gen_compute_fprf (TCGv_i64 arg, int set_fprf, int set_rc)
209 TCGv_i32 t0 = tcg_temp_new_i32();
211 if (set_fprf != 0) {
212 /* This case might be optimized later */
213 tcg_gen_movi_i32(t0, 1);
214 gen_helper_compute_fprf(t0, arg, t0);
215 if (unlikely(set_rc)) {
216 tcg_gen_mov_i32(cpu_crf[1], t0);
218 gen_helper_float_check_status();
219 } else if (unlikely(set_rc)) {
220 /* We always need to compute fpcc */
221 tcg_gen_movi_i32(t0, 0);
222 gen_helper_compute_fprf(t0, arg, t0);
223 tcg_gen_mov_i32(cpu_crf[1], t0);
226 tcg_temp_free_i32(t0);
229 static always_inline void gen_set_access_type (DisasContext *ctx, int access_type)
231 if (ctx->access_type != access_type) {
232 tcg_gen_movi_i32(cpu_access_type, access_type);
233 ctx->access_type = access_type;
237 static always_inline void gen_update_nip (DisasContext *ctx, target_ulong nip)
239 #if defined(TARGET_PPC64)
240 if (ctx->sf_mode)
241 tcg_gen_movi_tl(cpu_nip, nip);
242 else
243 #endif
244 tcg_gen_movi_tl(cpu_nip, (uint32_t)nip);
247 static always_inline void gen_exception_err (DisasContext *ctx, uint32_t excp, uint32_t error)
249 TCGv_i32 t0, t1;
250 if (ctx->exception == POWERPC_EXCP_NONE) {
251 gen_update_nip(ctx, ctx->nip);
253 t0 = tcg_const_i32(excp);
254 t1 = tcg_const_i32(error);
255 gen_helper_raise_exception_err(t0, t1);
256 tcg_temp_free_i32(t0);
257 tcg_temp_free_i32(t1);
258 ctx->exception = (excp);
261 static always_inline void gen_exception (DisasContext *ctx, uint32_t excp)
263 TCGv_i32 t0;
264 if (ctx->exception == POWERPC_EXCP_NONE) {
265 gen_update_nip(ctx, ctx->nip);
267 t0 = tcg_const_i32(excp);
268 gen_helper_raise_exception(t0);
269 tcg_temp_free_i32(t0);
270 ctx->exception = (excp);
273 static always_inline void gen_debug_exception (DisasContext *ctx)
275 TCGv_i32 t0;
276 gen_update_nip(ctx, ctx->nip);
277 t0 = tcg_const_i32(EXCP_DEBUG);
278 gen_helper_raise_exception(t0);
279 tcg_temp_free_i32(t0);
282 static always_inline void gen_inval_exception (DisasContext *ctx, uint32_t error)
284 gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_INVAL | error);
287 /* Stop translation */
288 static always_inline void gen_stop_exception (DisasContext *ctx)
290 gen_update_nip(ctx, ctx->nip);
291 ctx->exception = POWERPC_EXCP_STOP;
294 /* No need to update nip here, as execution flow will change */
295 static always_inline void gen_sync_exception (DisasContext *ctx)
297 ctx->exception = POWERPC_EXCP_SYNC;
300 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
301 static void gen_##name (DisasContext *ctx); \
302 GEN_OPCODE(name, opc1, opc2, opc3, inval, type); \
303 static void gen_##name (DisasContext *ctx)
305 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
306 static void gen_##name (DisasContext *ctx); \
307 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type); \
308 static void gen_##name (DisasContext *ctx)
310 typedef struct opcode_t {
311 unsigned char opc1, opc2, opc3;
312 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
313 unsigned char pad[5];
314 #else
315 unsigned char pad[1];
316 #endif
317 opc_handler_t handler;
318 const char *oname;
319 } opcode_t;
321 /*****************************************************************************/
322 /*** Instruction decoding ***/
323 #define EXTRACT_HELPER(name, shift, nb) \
324 static always_inline uint32_t name (uint32_t opcode) \
326 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
329 #define EXTRACT_SHELPER(name, shift, nb) \
330 static always_inline int32_t name (uint32_t opcode) \
332 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
335 /* Opcode part 1 */
336 EXTRACT_HELPER(opc1, 26, 6);
337 /* Opcode part 2 */
338 EXTRACT_HELPER(opc2, 1, 5);
339 /* Opcode part 3 */
340 EXTRACT_HELPER(opc3, 6, 5);
341 /* Update Cr0 flags */
342 EXTRACT_HELPER(Rc, 0, 1);
343 /* Destination */
344 EXTRACT_HELPER(rD, 21, 5);
345 /* Source */
346 EXTRACT_HELPER(rS, 21, 5);
347 /* First operand */
348 EXTRACT_HELPER(rA, 16, 5);
349 /* Second operand */
350 EXTRACT_HELPER(rB, 11, 5);
351 /* Third operand */
352 EXTRACT_HELPER(rC, 6, 5);
353 /*** Get CRn ***/
354 EXTRACT_HELPER(crfD, 23, 3);
355 EXTRACT_HELPER(crfS, 18, 3);
356 EXTRACT_HELPER(crbD, 21, 5);
357 EXTRACT_HELPER(crbA, 16, 5);
358 EXTRACT_HELPER(crbB, 11, 5);
359 /* SPR / TBL */
360 EXTRACT_HELPER(_SPR, 11, 10);
361 static always_inline uint32_t SPR (uint32_t opcode)
363 uint32_t sprn = _SPR(opcode);
365 return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
367 /*** Get constants ***/
368 EXTRACT_HELPER(IMM, 12, 8);
369 /* 16 bits signed immediate value */
370 EXTRACT_SHELPER(SIMM, 0, 16);
371 /* 16 bits unsigned immediate value */
372 EXTRACT_HELPER(UIMM, 0, 16);
373 /* 5 bits signed immediate value */
374 EXTRACT_HELPER(SIMM5, 16, 5);
375 /* Bit count */
376 EXTRACT_HELPER(NB, 11, 5);
377 /* Shift count */
378 EXTRACT_HELPER(SH, 11, 5);
379 /* Vector shift count */
380 EXTRACT_HELPER(VSH, 6, 4);
381 /* Mask start */
382 EXTRACT_HELPER(MB, 6, 5);
383 /* Mask end */
384 EXTRACT_HELPER(ME, 1, 5);
385 /* Trap operand */
386 EXTRACT_HELPER(TO, 21, 5);
388 EXTRACT_HELPER(CRM, 12, 8);
389 EXTRACT_HELPER(FM, 17, 8);
390 EXTRACT_HELPER(SR, 16, 4);
391 EXTRACT_HELPER(FPIMM, 12, 4);
393 /*** Jump target decoding ***/
394 /* Displacement */
395 EXTRACT_SHELPER(d, 0, 16);
396 /* Immediate address */
397 static always_inline target_ulong LI (uint32_t opcode)
399 return (opcode >> 0) & 0x03FFFFFC;
402 static always_inline uint32_t BD (uint32_t opcode)
404 return (opcode >> 0) & 0xFFFC;
407 EXTRACT_HELPER(BO, 21, 5);
408 EXTRACT_HELPER(BI, 16, 5);
409 /* Absolute/relative address */
410 EXTRACT_HELPER(AA, 1, 1);
411 /* Link */
412 EXTRACT_HELPER(LK, 0, 1);
414 /* Create a mask between <start> and <end> bits */
415 static always_inline target_ulong MASK (uint32_t start, uint32_t end)
417 target_ulong ret;
419 #if defined(TARGET_PPC64)
420 if (likely(start == 0)) {
421 ret = UINT64_MAX << (63 - end);
422 } else if (likely(end == 63)) {
423 ret = UINT64_MAX >> start;
425 #else
426 if (likely(start == 0)) {
427 ret = UINT32_MAX << (31 - end);
428 } else if (likely(end == 31)) {
429 ret = UINT32_MAX >> start;
431 #endif
432 else {
433 ret = (((target_ulong)(-1ULL)) >> (start)) ^
434 (((target_ulong)(-1ULL) >> (end)) >> 1);
435 if (unlikely(start > end))
436 return ~ret;
439 return ret;
442 /*****************************************************************************/
443 /* PowerPC Instructions types definitions */
444 enum {
445 PPC_NONE = 0x0000000000000000ULL,
446 /* PowerPC base instructions set */
447 PPC_INSNS_BASE = 0x0000000000000001ULL,
448 /* integer operations instructions */
449 #define PPC_INTEGER PPC_INSNS_BASE
450 /* flow control instructions */
451 #define PPC_FLOW PPC_INSNS_BASE
452 /* virtual memory instructions */
453 #define PPC_MEM PPC_INSNS_BASE
454 /* ld/st with reservation instructions */
455 #define PPC_RES PPC_INSNS_BASE
456 /* spr/msr access instructions */
457 #define PPC_MISC PPC_INSNS_BASE
458 /* Deprecated instruction sets */
459 /* Original POWER instruction set */
460 PPC_POWER = 0x0000000000000002ULL,
461 /* POWER2 instruction set extension */
462 PPC_POWER2 = 0x0000000000000004ULL,
463 /* Power RTC support */
464 PPC_POWER_RTC = 0x0000000000000008ULL,
465 /* Power-to-PowerPC bridge (601) */
466 PPC_POWER_BR = 0x0000000000000010ULL,
467 /* 64 bits PowerPC instruction set */
468 PPC_64B = 0x0000000000000020ULL,
469 /* New 64 bits extensions (PowerPC 2.0x) */
470 PPC_64BX = 0x0000000000000040ULL,
471 /* 64 bits hypervisor extensions */
472 PPC_64H = 0x0000000000000080ULL,
473 /* New wait instruction (PowerPC 2.0x) */
474 PPC_WAIT = 0x0000000000000100ULL,
475 /* Time base mftb instruction */
476 PPC_MFTB = 0x0000000000000200ULL,
478 /* Fixed-point unit extensions */
479 /* PowerPC 602 specific */
480 PPC_602_SPEC = 0x0000000000000400ULL,
481 /* isel instruction */
482 PPC_ISEL = 0x0000000000000800ULL,
483 /* popcntb instruction */
484 PPC_POPCNTB = 0x0000000000001000ULL,
485 /* string load / store */
486 PPC_STRING = 0x0000000000002000ULL,
488 /* Floating-point unit extensions */
489 /* Optional floating point instructions */
490 PPC_FLOAT = 0x0000000000010000ULL,
491 /* New floating-point extensions (PowerPC 2.0x) */
492 PPC_FLOAT_EXT = 0x0000000000020000ULL,
493 PPC_FLOAT_FSQRT = 0x0000000000040000ULL,
494 PPC_FLOAT_FRES = 0x0000000000080000ULL,
495 PPC_FLOAT_FRSQRTE = 0x0000000000100000ULL,
496 PPC_FLOAT_FRSQRTES = 0x0000000000200000ULL,
497 PPC_FLOAT_FSEL = 0x0000000000400000ULL,
498 PPC_FLOAT_STFIWX = 0x0000000000800000ULL,
500 /* Vector/SIMD extensions */
501 /* Altivec support */
502 PPC_ALTIVEC = 0x0000000001000000ULL,
503 /* PowerPC 2.03 SPE extension */
504 PPC_SPE = 0x0000000002000000ULL,
505 /* PowerPC 2.03 SPE floating-point extension */
506 PPC_SPEFPU = 0x0000000004000000ULL,
508 /* Optional memory control instructions */
509 PPC_MEM_TLBIA = 0x0000000010000000ULL,
510 PPC_MEM_TLBIE = 0x0000000020000000ULL,
511 PPC_MEM_TLBSYNC = 0x0000000040000000ULL,
512 /* sync instruction */
513 PPC_MEM_SYNC = 0x0000000080000000ULL,
514 /* eieio instruction */
515 PPC_MEM_EIEIO = 0x0000000100000000ULL,
517 /* Cache control instructions */
518 PPC_CACHE = 0x0000000200000000ULL,
519 /* icbi instruction */
520 PPC_CACHE_ICBI = 0x0000000400000000ULL,
521 /* dcbz instruction with fixed cache line size */
522 PPC_CACHE_DCBZ = 0x0000000800000000ULL,
523 /* dcbz instruction with tunable cache line size */
524 PPC_CACHE_DCBZT = 0x0000001000000000ULL,
525 /* dcba instruction */
526 PPC_CACHE_DCBA = 0x0000002000000000ULL,
527 /* Freescale cache locking instructions */
528 PPC_CACHE_LOCK = 0x0000004000000000ULL,
530 /* MMU related extensions */
531 /* external control instructions */
532 PPC_EXTERN = 0x0000010000000000ULL,
533 /* segment register access instructions */
534 PPC_SEGMENT = 0x0000020000000000ULL,
535 /* PowerPC 6xx TLB management instructions */
536 PPC_6xx_TLB = 0x0000040000000000ULL,
537 /* PowerPC 74xx TLB management instructions */
538 PPC_74xx_TLB = 0x0000080000000000ULL,
539 /* PowerPC 40x TLB management instructions */
540 PPC_40x_TLB = 0x0000100000000000ULL,
541 /* segment register access instructions for PowerPC 64 "bridge" */
542 PPC_SEGMENT_64B = 0x0000200000000000ULL,
543 /* SLB management */
544 PPC_SLBI = 0x0000400000000000ULL,
546 /* Embedded PowerPC dedicated instructions */
547 PPC_WRTEE = 0x0001000000000000ULL,
548 /* PowerPC 40x exception model */
549 PPC_40x_EXCP = 0x0002000000000000ULL,
550 /* PowerPC 405 Mac instructions */
551 PPC_405_MAC = 0x0004000000000000ULL,
552 /* PowerPC 440 specific instructions */
553 PPC_440_SPEC = 0x0008000000000000ULL,
554 /* BookE (embedded) PowerPC specification */
555 PPC_BOOKE = 0x0010000000000000ULL,
556 /* mfapidi instruction */
557 PPC_MFAPIDI = 0x0020000000000000ULL,
558 /* tlbiva instruction */
559 PPC_TLBIVA = 0x0040000000000000ULL,
560 /* tlbivax instruction */
561 PPC_TLBIVAX = 0x0080000000000000ULL,
562 /* PowerPC 4xx dedicated instructions */
563 PPC_4xx_COMMON = 0x0100000000000000ULL,
564 /* PowerPC 40x ibct instructions */
565 PPC_40x_ICBT = 0x0200000000000000ULL,
566 /* rfmci is not implemented in all BookE PowerPC */
567 PPC_RFMCI = 0x0400000000000000ULL,
568 /* rfdi instruction */
569 PPC_RFDI = 0x0800000000000000ULL,
570 /* DCR accesses */
571 PPC_DCR = 0x1000000000000000ULL,
572 /* DCR extended accesse */
573 PPC_DCRX = 0x2000000000000000ULL,
574 /* user-mode DCR access, implemented in PowerPC 460 */
575 PPC_DCRUX = 0x4000000000000000ULL,
578 /*****************************************************************************/
579 /* PowerPC instructions table */
580 #if HOST_LONG_BITS == 64
581 #define OPC_ALIGN 8
582 #else
583 #define OPC_ALIGN 4
584 #endif
585 #if defined(__APPLE__)
586 #define OPCODES_SECTION \
587 __attribute__ ((section("__TEXT,__opcodes"), unused, aligned (OPC_ALIGN) ))
588 #else
589 #define OPCODES_SECTION \
590 __attribute__ ((section(".opcodes"), unused, aligned (OPC_ALIGN) ))
591 #endif
593 #if defined(DO_PPC_STATISTICS)
594 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
595 OPCODES_SECTION opcode_t opc_##name = { \
596 .opc1 = op1, \
597 .opc2 = op2, \
598 .opc3 = op3, \
599 .pad = { 0, }, \
600 .handler = { \
601 .inval = invl, \
602 .type = _typ, \
603 .handler = &gen_##name, \
604 .oname = stringify(name), \
605 }, \
606 .oname = stringify(name), \
608 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
609 OPCODES_SECTION opcode_t opc_##name = { \
610 .opc1 = op1, \
611 .opc2 = op2, \
612 .opc3 = op3, \
613 .pad = { 0, }, \
614 .handler = { \
615 .inval = invl, \
616 .type = _typ, \
617 .handler = &gen_##name, \
618 .oname = onam, \
619 }, \
620 .oname = onam, \
622 #else
623 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ) \
624 OPCODES_SECTION opcode_t opc_##name = { \
625 .opc1 = op1, \
626 .opc2 = op2, \
627 .opc3 = op3, \
628 .pad = { 0, }, \
629 .handler = { \
630 .inval = invl, \
631 .type = _typ, \
632 .handler = &gen_##name, \
633 }, \
634 .oname = stringify(name), \
636 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ) \
637 OPCODES_SECTION opcode_t opc_##name = { \
638 .opc1 = op1, \
639 .opc2 = op2, \
640 .opc3 = op3, \
641 .pad = { 0, }, \
642 .handler = { \
643 .inval = invl, \
644 .type = _typ, \
645 .handler = &gen_##name, \
646 }, \
647 .oname = onam, \
649 #endif
651 #define GEN_OPCODE_MARK(name) \
652 OPCODES_SECTION opcode_t opc_##name = { \
653 .opc1 = 0xFF, \
654 .opc2 = 0xFF, \
655 .opc3 = 0xFF, \
656 .pad = { 0, }, \
657 .handler = { \
658 .inval = 0x00000000, \
659 .type = 0x00, \
660 .handler = NULL, \
661 }, \
662 .oname = stringify(name), \
665 /* SPR load/store helpers */
666 static always_inline void gen_load_spr(TCGv t, int reg)
668 tcg_gen_ld_tl(t, cpu_env, offsetof(CPUState, spr[reg]));
671 static always_inline void gen_store_spr(int reg, TCGv t)
673 tcg_gen_st_tl(t, cpu_env, offsetof(CPUState, spr[reg]));
676 /* Start opcode list */
677 GEN_OPCODE_MARK(start);
679 /* Invalid instruction */
680 GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE)
682 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
685 static opc_handler_t invalid_handler = {
686 .inval = 0xFFFFFFFF,
687 .type = PPC_NONE,
688 .handler = gen_invalid,
691 /*** Integer comparison ***/
693 static always_inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf)
695 int l1, l2, l3;
697 tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_xer);
698 tcg_gen_shri_i32(cpu_crf[crf], cpu_crf[crf], XER_SO);
699 tcg_gen_andi_i32(cpu_crf[crf], cpu_crf[crf], 1);
701 l1 = gen_new_label();
702 l2 = gen_new_label();
703 l3 = gen_new_label();
704 if (s) {
705 tcg_gen_brcond_tl(TCG_COND_LT, arg0, arg1, l1);
706 tcg_gen_brcond_tl(TCG_COND_GT, arg0, arg1, l2);
707 } else {
708 tcg_gen_brcond_tl(TCG_COND_LTU, arg0, arg1, l1);
709 tcg_gen_brcond_tl(TCG_COND_GTU, arg0, arg1, l2);
711 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_EQ);
712 tcg_gen_br(l3);
713 gen_set_label(l1);
714 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_LT);
715 tcg_gen_br(l3);
716 gen_set_label(l2);
717 tcg_gen_ori_i32(cpu_crf[crf], cpu_crf[crf], 1 << CRF_GT);
718 gen_set_label(l3);
721 static always_inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf)
723 TCGv t0 = tcg_const_local_tl(arg1);
724 gen_op_cmp(arg0, t0, s, crf);
725 tcg_temp_free(t0);
728 #if defined(TARGET_PPC64)
729 static always_inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf)
731 TCGv t0, t1;
732 t0 = tcg_temp_local_new();
733 t1 = tcg_temp_local_new();
734 if (s) {
735 tcg_gen_ext32s_tl(t0, arg0);
736 tcg_gen_ext32s_tl(t1, arg1);
737 } else {
738 tcg_gen_ext32u_tl(t0, arg0);
739 tcg_gen_ext32u_tl(t1, arg1);
741 gen_op_cmp(t0, t1, s, crf);
742 tcg_temp_free(t1);
743 tcg_temp_free(t0);
746 static always_inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf)
748 TCGv t0 = tcg_const_local_tl(arg1);
749 gen_op_cmp32(arg0, t0, s, crf);
750 tcg_temp_free(t0);
752 #endif
754 static always_inline void gen_set_Rc0 (DisasContext *ctx, TCGv reg)
756 #if defined(TARGET_PPC64)
757 if (!(ctx->sf_mode))
758 gen_op_cmpi32(reg, 0, 1, 0);
759 else
760 #endif
761 gen_op_cmpi(reg, 0, 1, 0);
764 /* cmp */
765 GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER)
767 #if defined(TARGET_PPC64)
768 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
769 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
770 1, crfD(ctx->opcode));
771 else
772 #endif
773 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
774 1, crfD(ctx->opcode));
777 /* cmpi */
778 GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER)
780 #if defined(TARGET_PPC64)
781 if (!(ctx->sf_mode && (ctx->opcode & 0x00200000)))
782 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
783 1, crfD(ctx->opcode));
784 else
785 #endif
786 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
787 1, crfD(ctx->opcode));
790 /* cmpl */
791 GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 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 0, crfD(ctx->opcode));
797 else
798 #endif
799 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
800 0, crfD(ctx->opcode));
803 /* cmpli */
804 GEN_HANDLER(cmpli, 0x0A, 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)], UIMM(ctx->opcode),
809 0, crfD(ctx->opcode));
810 else
811 #endif
812 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
813 0, crfD(ctx->opcode));
816 /* isel (PowerPC 2.03 specification) */
817 GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL)
819 int l1, l2;
820 uint32_t bi = rC(ctx->opcode);
821 uint32_t mask;
822 TCGv_i32 t0;
824 l1 = gen_new_label();
825 l2 = gen_new_label();
827 mask = 1 << (3 - (bi & 0x03));
828 t0 = tcg_temp_new_i32();
829 tcg_gen_andi_i32(t0, cpu_crf[bi >> 2], mask);
830 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
831 if (rA(ctx->opcode) == 0)
832 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
833 else
834 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
835 tcg_gen_br(l2);
836 gen_set_label(l1);
837 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
838 gen_set_label(l2);
839 tcg_temp_free_i32(t0);
842 /*** Integer arithmetic ***/
844 static always_inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0, TCGv arg1, TCGv arg2, int sub)
846 int l1;
847 TCGv t0;
849 l1 = gen_new_label();
850 /* Start with XER OV disabled, the most likely case */
851 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
852 t0 = tcg_temp_local_new();
853 tcg_gen_xor_tl(t0, arg0, arg1);
854 #if defined(TARGET_PPC64)
855 if (!ctx->sf_mode)
856 tcg_gen_ext32s_tl(t0, t0);
857 #endif
858 if (sub)
859 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1);
860 else
861 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
862 tcg_gen_xor_tl(t0, arg1, arg2);
863 #if defined(TARGET_PPC64)
864 if (!ctx->sf_mode)
865 tcg_gen_ext32s_tl(t0, t0);
866 #endif
867 if (sub)
868 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
869 else
870 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0, l1);
871 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
872 gen_set_label(l1);
873 tcg_temp_free(t0);
876 static always_inline void gen_op_arith_compute_ca(DisasContext *ctx, TCGv arg1, TCGv arg2, int sub)
878 int l1 = gen_new_label();
880 #if defined(TARGET_PPC64)
881 if (!(ctx->sf_mode)) {
882 TCGv t0, t1;
883 t0 = tcg_temp_new();
884 t1 = tcg_temp_new();
886 tcg_gen_ext32u_tl(t0, arg1);
887 tcg_gen_ext32u_tl(t1, arg2);
888 if (sub) {
889 tcg_gen_brcond_tl(TCG_COND_GTU, t0, t1, l1);
890 } else {
891 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
893 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
894 gen_set_label(l1);
895 tcg_temp_free(t0);
896 tcg_temp_free(t1);
897 } else
898 #endif
900 if (sub) {
901 tcg_gen_brcond_tl(TCG_COND_GTU, arg1, arg2, l1);
902 } else {
903 tcg_gen_brcond_tl(TCG_COND_GEU, arg1, arg2, l1);
905 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
906 gen_set_label(l1);
910 /* Common add function */
911 static always_inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
912 int add_ca, int compute_ca, int compute_ov)
914 TCGv t0, t1;
916 if ((!compute_ca && !compute_ov) ||
917 (!TCGV_EQUAL(ret,arg1) && !TCGV_EQUAL(ret, arg2))) {
918 t0 = ret;
919 } else {
920 t0 = tcg_temp_local_new();
923 if (add_ca) {
924 t1 = tcg_temp_local_new();
925 tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA));
926 tcg_gen_shri_tl(t1, t1, XER_CA);
929 if (compute_ca && compute_ov) {
930 /* Start with XER CA and OV disabled, the most likely case */
931 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV)));
932 } else if (compute_ca) {
933 /* Start with XER CA disabled, the most likely case */
934 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
935 } else if (compute_ov) {
936 /* Start with XER OV disabled, the most likely case */
937 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
940 tcg_gen_add_tl(t0, arg1, arg2);
942 if (compute_ca) {
943 gen_op_arith_compute_ca(ctx, t0, arg1, 0);
945 if (add_ca) {
946 tcg_gen_add_tl(t0, t0, t1);
947 gen_op_arith_compute_ca(ctx, t0, t1, 0);
948 tcg_temp_free(t1);
950 if (compute_ov) {
951 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0);
954 if (unlikely(Rc(ctx->opcode) != 0))
955 gen_set_Rc0(ctx, t0);
957 if (!TCGV_EQUAL(t0, ret)) {
958 tcg_gen_mov_tl(ret, t0);
959 tcg_temp_free(t0);
962 /* Add functions with two operands */
963 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
964 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER) \
966 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
967 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
968 add_ca, compute_ca, compute_ov); \
970 /* Add functions with one operand and one immediate */
971 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
972 add_ca, compute_ca, compute_ov) \
973 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER) \
975 TCGv t0 = tcg_const_local_tl(const_val); \
976 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
977 cpu_gpr[rA(ctx->opcode)], t0, \
978 add_ca, compute_ca, compute_ov); \
979 tcg_temp_free(t0); \
982 /* add add. addo addo. */
983 GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
984 GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
985 /* addc addc. addco addco. */
986 GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
987 GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
988 /* adde adde. addeo addeo. */
989 GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
990 GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
991 /* addme addme. addmeo addmeo. */
992 GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
993 GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
994 /* addze addze. addzeo addzeo.*/
995 GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
996 GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
997 /* addi */
998 GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1000 target_long simm = SIMM(ctx->opcode);
1002 if (rA(ctx->opcode) == 0) {
1003 /* li case */
1004 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm);
1005 } else {
1006 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm);
1009 /* addic addic.*/
1010 static always_inline void gen_op_addic (DisasContext *ctx, TCGv ret, TCGv arg1,
1011 int compute_Rc0)
1013 target_long simm = SIMM(ctx->opcode);
1015 /* Start with XER CA and OV disabled, the most likely case */
1016 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1018 if (likely(simm != 0)) {
1019 TCGv t0 = tcg_temp_local_new();
1020 tcg_gen_addi_tl(t0, arg1, simm);
1021 gen_op_arith_compute_ca(ctx, t0, arg1, 0);
1022 tcg_gen_mov_tl(ret, t0);
1023 tcg_temp_free(t0);
1024 } else {
1025 tcg_gen_mov_tl(ret, arg1);
1027 if (compute_Rc0) {
1028 gen_set_Rc0(ctx, ret);
1031 GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1033 gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0);
1035 GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1037 gen_op_addic(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1);
1039 /* addis */
1040 GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1042 target_long simm = SIMM(ctx->opcode);
1044 if (rA(ctx->opcode) == 0) {
1045 /* lis case */
1046 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16);
1047 } else {
1048 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], simm << 16);
1052 static always_inline void gen_op_arith_divw (DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1053 int sign, int compute_ov)
1055 int l1 = gen_new_label();
1056 int l2 = gen_new_label();
1057 TCGv_i32 t0 = tcg_temp_local_new_i32();
1058 TCGv_i32 t1 = tcg_temp_local_new_i32();
1060 tcg_gen_trunc_tl_i32(t0, arg1);
1061 tcg_gen_trunc_tl_i32(t1, arg2);
1062 tcg_gen_brcondi_i32(TCG_COND_EQ, t1, 0, l1);
1063 if (sign) {
1064 int l3 = gen_new_label();
1065 tcg_gen_brcondi_i32(TCG_COND_NE, t1, -1, l3);
1066 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, INT32_MIN, l1);
1067 gen_set_label(l3);
1068 tcg_gen_div_i32(t0, t0, t1);
1069 } else {
1070 tcg_gen_divu_i32(t0, t0, t1);
1072 if (compute_ov) {
1073 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1075 tcg_gen_br(l2);
1076 gen_set_label(l1);
1077 if (sign) {
1078 tcg_gen_sari_i32(t0, t0, 31);
1079 } else {
1080 tcg_gen_movi_i32(t0, 0);
1082 if (compute_ov) {
1083 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1085 gen_set_label(l2);
1086 tcg_gen_extu_i32_tl(ret, t0);
1087 tcg_temp_free_i32(t0);
1088 tcg_temp_free_i32(t1);
1089 if (unlikely(Rc(ctx->opcode) != 0))
1090 gen_set_Rc0(ctx, ret);
1092 /* Div functions */
1093 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1094 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER) \
1096 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1097 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1098 sign, compute_ov); \
1100 /* divwu divwu. divwuo divwuo. */
1101 GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0);
1102 GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1);
1103 /* divw divw. divwo divwo. */
1104 GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0);
1105 GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1);
1106 #if defined(TARGET_PPC64)
1107 static always_inline void gen_op_arith_divd (DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1108 int sign, int compute_ov)
1110 int l1 = gen_new_label();
1111 int l2 = gen_new_label();
1113 tcg_gen_brcondi_i64(TCG_COND_EQ, arg2, 0, l1);
1114 if (sign) {
1115 int l3 = gen_new_label();
1116 tcg_gen_brcondi_i64(TCG_COND_NE, arg2, -1, l3);
1117 tcg_gen_brcondi_i64(TCG_COND_EQ, arg1, INT64_MIN, l1);
1118 gen_set_label(l3);
1119 tcg_gen_div_i64(ret, arg1, arg2);
1120 } else {
1121 tcg_gen_divu_i64(ret, arg1, arg2);
1123 if (compute_ov) {
1124 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1126 tcg_gen_br(l2);
1127 gen_set_label(l1);
1128 if (sign) {
1129 tcg_gen_sari_i64(ret, arg1, 63);
1130 } else {
1131 tcg_gen_movi_i64(ret, 0);
1133 if (compute_ov) {
1134 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1136 gen_set_label(l2);
1137 if (unlikely(Rc(ctx->opcode) != 0))
1138 gen_set_Rc0(ctx, ret);
1140 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1141 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1143 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1144 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1145 sign, compute_ov); \
1147 /* divwu divwu. divwuo divwuo. */
1148 GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0);
1149 GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1);
1150 /* divw divw. divwo divwo. */
1151 GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0);
1152 GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1);
1153 #endif
1155 /* mulhw mulhw. */
1156 GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER)
1158 TCGv_i64 t0, t1;
1160 t0 = tcg_temp_new_i64();
1161 t1 = tcg_temp_new_i64();
1162 #if defined(TARGET_PPC64)
1163 tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]);
1164 tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]);
1165 tcg_gen_mul_i64(t0, t0, t1);
1166 tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32);
1167 #else
1168 tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1169 tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1170 tcg_gen_mul_i64(t0, t0, t1);
1171 tcg_gen_shri_i64(t0, t0, 32);
1172 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1173 #endif
1174 tcg_temp_free_i64(t0);
1175 tcg_temp_free_i64(t1);
1176 if (unlikely(Rc(ctx->opcode) != 0))
1177 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1179 /* mulhwu mulhwu. */
1180 GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER)
1182 TCGv_i64 t0, t1;
1184 t0 = tcg_temp_new_i64();
1185 t1 = tcg_temp_new_i64();
1186 #if defined(TARGET_PPC64)
1187 tcg_gen_ext32u_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1188 tcg_gen_ext32u_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1189 tcg_gen_mul_i64(t0, t0, t1);
1190 tcg_gen_shri_i64(cpu_gpr[rD(ctx->opcode)], t0, 32);
1191 #else
1192 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1193 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1194 tcg_gen_mul_i64(t0, t0, t1);
1195 tcg_gen_shri_i64(t0, t0, 32);
1196 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1197 #endif
1198 tcg_temp_free_i64(t0);
1199 tcg_temp_free_i64(t1);
1200 if (unlikely(Rc(ctx->opcode) != 0))
1201 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1203 /* mullw mullw. */
1204 GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER)
1206 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1207 cpu_gpr[rB(ctx->opcode)]);
1208 tcg_gen_ext32s_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)]);
1209 if (unlikely(Rc(ctx->opcode) != 0))
1210 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1212 /* mullwo mullwo. */
1213 GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER)
1215 int l1;
1216 TCGv_i64 t0, t1;
1218 t0 = tcg_temp_new_i64();
1219 t1 = tcg_temp_new_i64();
1220 l1 = gen_new_label();
1221 /* Start with XER OV disabled, the most likely case */
1222 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1223 #if defined(TARGET_PPC64)
1224 tcg_gen_ext32s_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1225 tcg_gen_ext32s_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1226 #else
1227 tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
1228 tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
1229 #endif
1230 tcg_gen_mul_i64(t0, t0, t1);
1231 #if defined(TARGET_PPC64)
1232 tcg_gen_ext32s_i64(cpu_gpr[rD(ctx->opcode)], t0);
1233 tcg_gen_brcond_i64(TCG_COND_EQ, t0, cpu_gpr[rD(ctx->opcode)], l1);
1234 #else
1235 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t0);
1236 tcg_gen_ext32s_i64(t1, t0);
1237 tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
1238 #endif
1239 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1240 gen_set_label(l1);
1241 tcg_temp_free_i64(t0);
1242 tcg_temp_free_i64(t1);
1243 if (unlikely(Rc(ctx->opcode) != 0))
1244 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1246 /* mulli */
1247 GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1249 tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1250 SIMM(ctx->opcode));
1252 #if defined(TARGET_PPC64)
1253 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
1254 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B) \
1256 gen_helper_##name (cpu_gpr[rD(ctx->opcode)], \
1257 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
1258 if (unlikely(Rc(ctx->opcode) != 0)) \
1259 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1261 /* mulhd mulhd. */
1262 GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00);
1263 /* mulhdu mulhdu. */
1264 GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02);
1265 /* mulld mulld. */
1266 GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B)
1268 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1269 cpu_gpr[rB(ctx->opcode)]);
1270 if (unlikely(Rc(ctx->opcode) != 0))
1271 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1273 /* mulldo mulldo. */
1274 GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17);
1275 #endif
1277 /* neg neg. nego nego. */
1278 static always_inline void gen_op_arith_neg (DisasContext *ctx, TCGv ret, TCGv arg1, int ov_check)
1280 int l1 = gen_new_label();
1281 int l2 = gen_new_label();
1282 TCGv t0 = tcg_temp_local_new();
1283 #if defined(TARGET_PPC64)
1284 if (ctx->sf_mode) {
1285 tcg_gen_mov_tl(t0, arg1);
1286 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT64_MIN, l1);
1287 } else
1288 #endif
1290 tcg_gen_ext32s_tl(t0, arg1);
1291 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, INT32_MIN, l1);
1293 tcg_gen_neg_tl(ret, arg1);
1294 if (ov_check) {
1295 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1297 tcg_gen_br(l2);
1298 gen_set_label(l1);
1299 tcg_gen_mov_tl(ret, t0);
1300 if (ov_check) {
1301 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
1303 gen_set_label(l2);
1304 tcg_temp_free(t0);
1305 if (unlikely(Rc(ctx->opcode) != 0))
1306 gen_set_Rc0(ctx, ret);
1308 GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER)
1310 gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0);
1312 GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER)
1314 gen_op_arith_neg(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 1);
1317 /* Common subf function */
1318 static always_inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1, TCGv arg2,
1319 int add_ca, int compute_ca, int compute_ov)
1321 TCGv t0, t1;
1323 if ((!compute_ca && !compute_ov) ||
1324 (!TCGV_EQUAL(ret, arg1) && !TCGV_EQUAL(ret, arg2))) {
1325 t0 = ret;
1326 } else {
1327 t0 = tcg_temp_local_new();
1330 if (add_ca) {
1331 t1 = tcg_temp_local_new();
1332 tcg_gen_andi_tl(t1, cpu_xer, (1 << XER_CA));
1333 tcg_gen_shri_tl(t1, t1, XER_CA);
1336 if (compute_ca && compute_ov) {
1337 /* Start with XER CA and OV disabled, the most likely case */
1338 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~((1 << XER_CA) | (1 << XER_OV)));
1339 } else if (compute_ca) {
1340 /* Start with XER CA disabled, the most likely case */
1341 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1342 } else if (compute_ov) {
1343 /* Start with XER OV disabled, the most likely case */
1344 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
1347 if (add_ca) {
1348 tcg_gen_not_tl(t0, arg1);
1349 tcg_gen_add_tl(t0, t0, arg2);
1350 gen_op_arith_compute_ca(ctx, t0, arg2, 0);
1351 tcg_gen_add_tl(t0, t0, t1);
1352 gen_op_arith_compute_ca(ctx, t0, t1, 0);
1353 tcg_temp_free(t1);
1354 } else {
1355 tcg_gen_sub_tl(t0, arg2, arg1);
1356 if (compute_ca) {
1357 gen_op_arith_compute_ca(ctx, t0, arg2, 1);
1360 if (compute_ov) {
1361 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1);
1364 if (unlikely(Rc(ctx->opcode) != 0))
1365 gen_set_Rc0(ctx, t0);
1367 if (!TCGV_EQUAL(t0, ret)) {
1368 tcg_gen_mov_tl(ret, t0);
1369 tcg_temp_free(t0);
1372 /* Sub functions with Two operands functions */
1373 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
1374 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER) \
1376 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1377 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1378 add_ca, compute_ca, compute_ov); \
1380 /* Sub functions with one operand and one immediate */
1381 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1382 add_ca, compute_ca, compute_ov) \
1383 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER) \
1385 TCGv t0 = tcg_const_local_tl(const_val); \
1386 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1387 cpu_gpr[rA(ctx->opcode)], t0, \
1388 add_ca, compute_ca, compute_ov); \
1389 tcg_temp_free(t0); \
1391 /* subf subf. subfo subfo. */
1392 GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
1393 GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
1394 /* subfc subfc. subfco subfco. */
1395 GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
1396 GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
1397 /* subfe subfe. subfeo subfo. */
1398 GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
1399 GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
1400 /* subfme subfme. subfmeo subfmeo. */
1401 GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
1402 GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
1403 /* subfze subfze. subfzeo subfzeo.*/
1404 GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
1405 GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
1406 /* subfic */
1407 GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1409 /* Start with XER CA and OV disabled, the most likely case */
1410 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1411 TCGv t0 = tcg_temp_local_new();
1412 TCGv t1 = tcg_const_local_tl(SIMM(ctx->opcode));
1413 tcg_gen_sub_tl(t0, t1, cpu_gpr[rA(ctx->opcode)]);
1414 gen_op_arith_compute_ca(ctx, t0, t1, 1);
1415 tcg_temp_free(t1);
1416 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
1417 tcg_temp_free(t0);
1420 /*** Integer logical ***/
1421 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
1422 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type) \
1424 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1425 cpu_gpr[rB(ctx->opcode)]); \
1426 if (unlikely(Rc(ctx->opcode) != 0)) \
1427 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1430 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
1431 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type) \
1433 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
1434 if (unlikely(Rc(ctx->opcode) != 0)) \
1435 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
1438 /* and & and. */
1439 GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER);
1440 /* andc & andc. */
1441 GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER);
1442 /* andi. */
1443 GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1445 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode));
1446 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1448 /* andis. */
1449 GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1451 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16);
1452 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1454 /* cntlzw */
1455 GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER)
1457 gen_helper_cntlzw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1458 if (unlikely(Rc(ctx->opcode) != 0))
1459 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1461 /* eqv & eqv. */
1462 GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER);
1463 /* extsb & extsb. */
1464 GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER);
1465 /* extsh & extsh. */
1466 GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER);
1467 /* nand & nand. */
1468 GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER);
1469 /* nor & nor. */
1470 GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
1471 /* or & or. */
1472 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER)
1474 int rs, ra, rb;
1476 rs = rS(ctx->opcode);
1477 ra = rA(ctx->opcode);
1478 rb = rB(ctx->opcode);
1479 /* Optimisation for mr. ri case */
1480 if (rs != ra || rs != rb) {
1481 if (rs != rb)
1482 tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]);
1483 else
1484 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]);
1485 if (unlikely(Rc(ctx->opcode) != 0))
1486 gen_set_Rc0(ctx, cpu_gpr[ra]);
1487 } else if (unlikely(Rc(ctx->opcode) != 0)) {
1488 gen_set_Rc0(ctx, cpu_gpr[rs]);
1489 #if defined(TARGET_PPC64)
1490 } else {
1491 int prio = 0;
1493 switch (rs) {
1494 case 1:
1495 /* Set process priority to low */
1496 prio = 2;
1497 break;
1498 case 6:
1499 /* Set process priority to medium-low */
1500 prio = 3;
1501 break;
1502 case 2:
1503 /* Set process priority to normal */
1504 prio = 4;
1505 break;
1506 #if !defined(CONFIG_USER_ONLY)
1507 case 31:
1508 if (ctx->mem_idx > 0) {
1509 /* Set process priority to very low */
1510 prio = 1;
1512 break;
1513 case 5:
1514 if (ctx->mem_idx > 0) {
1515 /* Set process priority to medium-hight */
1516 prio = 5;
1518 break;
1519 case 3:
1520 if (ctx->mem_idx > 0) {
1521 /* Set process priority to high */
1522 prio = 6;
1524 break;
1525 case 7:
1526 if (ctx->mem_idx > 1) {
1527 /* Set process priority to very high */
1528 prio = 7;
1530 break;
1531 #endif
1532 default:
1533 /* nop */
1534 break;
1536 if (prio) {
1537 TCGv t0 = tcg_temp_new();
1538 gen_load_spr(t0, SPR_PPR);
1539 tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL);
1540 tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50);
1541 gen_store_spr(SPR_PPR, t0);
1542 tcg_temp_free(t0);
1544 #endif
1547 /* orc & orc. */
1548 GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER);
1549 /* xor & xor. */
1550 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER)
1552 /* Optimisation for "set to zero" case */
1553 if (rS(ctx->opcode) != rB(ctx->opcode))
1554 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1555 else
1556 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1557 if (unlikely(Rc(ctx->opcode) != 0))
1558 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1560 /* ori */
1561 GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1563 target_ulong uimm = UIMM(ctx->opcode);
1565 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1566 /* NOP */
1567 /* XXX: should handle special NOPs for POWER series */
1568 return;
1570 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1572 /* oris */
1573 GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1575 target_ulong uimm = UIMM(ctx->opcode);
1577 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1578 /* NOP */
1579 return;
1581 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1583 /* xori */
1584 GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1586 target_ulong uimm = UIMM(ctx->opcode);
1588 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1589 /* NOP */
1590 return;
1592 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1594 /* xoris */
1595 GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1597 target_ulong uimm = UIMM(ctx->opcode);
1599 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1600 /* NOP */
1601 return;
1603 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1605 /* popcntb : PowerPC 2.03 specification */
1606 GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB)
1608 #if defined(TARGET_PPC64)
1609 if (ctx->sf_mode)
1610 gen_helper_popcntb_64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1611 else
1612 #endif
1613 gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1616 #if defined(TARGET_PPC64)
1617 /* extsw & extsw. */
1618 GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B);
1619 /* cntlzd */
1620 GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B)
1622 gen_helper_cntlzd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1623 if (unlikely(Rc(ctx->opcode) != 0))
1624 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1626 #endif
1628 /*** Integer rotate ***/
1629 /* rlwimi & rlwimi. */
1630 GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1632 uint32_t mb, me, sh;
1634 mb = MB(ctx->opcode);
1635 me = ME(ctx->opcode);
1636 sh = SH(ctx->opcode);
1637 if (likely(sh == 0 && mb == 0 && me == 31)) {
1638 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1639 } else {
1640 target_ulong mask;
1641 TCGv t1;
1642 TCGv t0 = tcg_temp_new();
1643 #if defined(TARGET_PPC64)
1644 TCGv_i32 t2 = tcg_temp_new_i32();
1645 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rS(ctx->opcode)]);
1646 tcg_gen_rotli_i32(t2, t2, sh);
1647 tcg_gen_extu_i32_i64(t0, t2);
1648 tcg_temp_free_i32(t2);
1649 #else
1650 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1651 #endif
1652 #if defined(TARGET_PPC64)
1653 mb += 32;
1654 me += 32;
1655 #endif
1656 mask = MASK(mb, me);
1657 t1 = tcg_temp_new();
1658 tcg_gen_andi_tl(t0, t0, mask);
1659 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1660 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1661 tcg_temp_free(t0);
1662 tcg_temp_free(t1);
1664 if (unlikely(Rc(ctx->opcode) != 0))
1665 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1667 /* rlwinm & rlwinm. */
1668 GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1670 uint32_t mb, me, sh;
1672 sh = SH(ctx->opcode);
1673 mb = MB(ctx->opcode);
1674 me = ME(ctx->opcode);
1676 if (likely(mb == 0 && me == (31 - sh))) {
1677 if (likely(sh == 0)) {
1678 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1679 } else {
1680 TCGv t0 = tcg_temp_new();
1681 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1682 tcg_gen_shli_tl(t0, t0, sh);
1683 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1684 tcg_temp_free(t0);
1686 } else if (likely(sh != 0 && me == 31 && sh == (32 - mb))) {
1687 TCGv t0 = tcg_temp_new();
1688 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1689 tcg_gen_shri_tl(t0, t0, mb);
1690 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1691 tcg_temp_free(t0);
1692 } else {
1693 TCGv t0 = tcg_temp_new();
1694 #if defined(TARGET_PPC64)
1695 TCGv_i32 t1 = tcg_temp_new_i32();
1696 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1697 tcg_gen_rotli_i32(t1, t1, sh);
1698 tcg_gen_extu_i32_i64(t0, t1);
1699 tcg_temp_free_i32(t1);
1700 #else
1701 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1702 #endif
1703 #if defined(TARGET_PPC64)
1704 mb += 32;
1705 me += 32;
1706 #endif
1707 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1708 tcg_temp_free(t0);
1710 if (unlikely(Rc(ctx->opcode) != 0))
1711 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1713 /* rlwnm & rlwnm. */
1714 GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
1716 uint32_t mb, me;
1717 TCGv t0;
1718 #if defined(TARGET_PPC64)
1719 TCGv_i32 t1, t2;
1720 #endif
1722 mb = MB(ctx->opcode);
1723 me = ME(ctx->opcode);
1724 t0 = tcg_temp_new();
1725 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1f);
1726 #if defined(TARGET_PPC64)
1727 t1 = tcg_temp_new_i32();
1728 t2 = tcg_temp_new_i32();
1729 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1730 tcg_gen_trunc_i64_i32(t2, t0);
1731 tcg_gen_rotl_i32(t1, t1, t2);
1732 tcg_gen_extu_i32_i64(t0, t1);
1733 tcg_temp_free_i32(t1);
1734 tcg_temp_free_i32(t2);
1735 #else
1736 tcg_gen_rotl_i32(t0, cpu_gpr[rS(ctx->opcode)], t0);
1737 #endif
1738 if (unlikely(mb != 0 || me != 31)) {
1739 #if defined(TARGET_PPC64)
1740 mb += 32;
1741 me += 32;
1742 #endif
1743 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1744 } else {
1745 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1747 tcg_temp_free(t0);
1748 if (unlikely(Rc(ctx->opcode) != 0))
1749 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1752 #if defined(TARGET_PPC64)
1753 #define GEN_PPC64_R2(name, opc1, opc2) \
1754 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1756 gen_##name(ctx, 0); \
1758 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1759 PPC_64B) \
1761 gen_##name(ctx, 1); \
1763 #define GEN_PPC64_R4(name, opc1, opc2) \
1764 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B) \
1766 gen_##name(ctx, 0, 0); \
1768 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
1769 PPC_64B) \
1771 gen_##name(ctx, 0, 1); \
1773 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
1774 PPC_64B) \
1776 gen_##name(ctx, 1, 0); \
1778 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
1779 PPC_64B) \
1781 gen_##name(ctx, 1, 1); \
1784 static always_inline void gen_rldinm (DisasContext *ctx, uint32_t mb,
1785 uint32_t me, uint32_t sh)
1787 if (likely(sh != 0 && mb == 0 && me == (63 - sh))) {
1788 tcg_gen_shli_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
1789 } else if (likely(sh != 0 && me == 63 && sh == (64 - mb))) {
1790 tcg_gen_shri_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], mb);
1791 } else {
1792 TCGv t0 = tcg_temp_new();
1793 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1794 if (likely(mb == 0 && me == 63)) {
1795 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1796 } else {
1797 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1799 tcg_temp_free(t0);
1801 if (unlikely(Rc(ctx->opcode) != 0))
1802 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1804 /* rldicl - rldicl. */
1805 static always_inline void gen_rldicl (DisasContext *ctx, int mbn, int shn)
1807 uint32_t sh, mb;
1809 sh = SH(ctx->opcode) | (shn << 5);
1810 mb = MB(ctx->opcode) | (mbn << 5);
1811 gen_rldinm(ctx, mb, 63, sh);
1813 GEN_PPC64_R4(rldicl, 0x1E, 0x00);
1814 /* rldicr - rldicr. */
1815 static always_inline void gen_rldicr (DisasContext *ctx, int men, int shn)
1817 uint32_t sh, me;
1819 sh = SH(ctx->opcode) | (shn << 5);
1820 me = MB(ctx->opcode) | (men << 5);
1821 gen_rldinm(ctx, 0, me, sh);
1823 GEN_PPC64_R4(rldicr, 0x1E, 0x02);
1824 /* rldic - rldic. */
1825 static always_inline void gen_rldic (DisasContext *ctx, int mbn, int shn)
1827 uint32_t sh, mb;
1829 sh = SH(ctx->opcode) | (shn << 5);
1830 mb = MB(ctx->opcode) | (mbn << 5);
1831 gen_rldinm(ctx, mb, 63 - sh, sh);
1833 GEN_PPC64_R4(rldic, 0x1E, 0x04);
1835 static always_inline void gen_rldnm (DisasContext *ctx, uint32_t mb,
1836 uint32_t me)
1838 TCGv t0;
1840 mb = MB(ctx->opcode);
1841 me = ME(ctx->opcode);
1842 t0 = tcg_temp_new();
1843 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1844 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1845 if (unlikely(mb != 0 || me != 63)) {
1846 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1847 } else {
1848 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1850 tcg_temp_free(t0);
1851 if (unlikely(Rc(ctx->opcode) != 0))
1852 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1855 /* rldcl - rldcl. */
1856 static always_inline void gen_rldcl (DisasContext *ctx, int mbn)
1858 uint32_t mb;
1860 mb = MB(ctx->opcode) | (mbn << 5);
1861 gen_rldnm(ctx, mb, 63);
1863 GEN_PPC64_R2(rldcl, 0x1E, 0x08);
1864 /* rldcr - rldcr. */
1865 static always_inline void gen_rldcr (DisasContext *ctx, int men)
1867 uint32_t me;
1869 me = MB(ctx->opcode) | (men << 5);
1870 gen_rldnm(ctx, 0, me);
1872 GEN_PPC64_R2(rldcr, 0x1E, 0x09);
1873 /* rldimi - rldimi. */
1874 static always_inline void gen_rldimi (DisasContext *ctx, int mbn, int shn)
1876 uint32_t sh, mb, me;
1878 sh = SH(ctx->opcode) | (shn << 5);
1879 mb = MB(ctx->opcode) | (mbn << 5);
1880 me = 63 - sh;
1881 if (unlikely(sh == 0 && mb == 0)) {
1882 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1883 } else {
1884 TCGv t0, t1;
1885 target_ulong mask;
1887 t0 = tcg_temp_new();
1888 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1889 t1 = tcg_temp_new();
1890 mask = MASK(mb, me);
1891 tcg_gen_andi_tl(t0, t0, mask);
1892 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1893 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1894 tcg_temp_free(t0);
1895 tcg_temp_free(t1);
1897 if (unlikely(Rc(ctx->opcode) != 0))
1898 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1900 GEN_PPC64_R4(rldimi, 0x1E, 0x06);
1901 #endif
1903 /*** Integer shift ***/
1904 /* slw & slw. */
1905 GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER)
1907 TCGv t0;
1908 int l1, l2;
1909 l1 = gen_new_label();
1910 l2 = gen_new_label();
1912 t0 = tcg_temp_local_new();
1913 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1914 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1);
1915 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1916 tcg_gen_br(l2);
1917 gen_set_label(l1);
1918 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
1919 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
1920 gen_set_label(l2);
1921 tcg_temp_free(t0);
1922 if (unlikely(Rc(ctx->opcode) != 0))
1923 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1925 /* sraw & sraw. */
1926 GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER)
1928 gen_helper_sraw(cpu_gpr[rA(ctx->opcode)],
1929 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1930 if (unlikely(Rc(ctx->opcode) != 0))
1931 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1933 /* srawi & srawi. */
1934 GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER)
1936 int sh = SH(ctx->opcode);
1937 if (sh != 0) {
1938 int l1, l2;
1939 TCGv t0;
1940 l1 = gen_new_label();
1941 l2 = gen_new_label();
1942 t0 = tcg_temp_local_new();
1943 tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1944 tcg_gen_brcondi_tl(TCG_COND_GE, t0, 0, l1);
1945 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1);
1946 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
1947 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
1948 tcg_gen_br(l2);
1949 gen_set_label(l1);
1950 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1951 gen_set_label(l2);
1952 tcg_gen_ext32s_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1953 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], t0, sh);
1954 tcg_temp_free(t0);
1955 } else {
1956 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1957 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
1959 if (unlikely(Rc(ctx->opcode) != 0))
1960 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1962 /* srw & srw. */
1963 GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER)
1965 TCGv t0, t1;
1966 int l1, l2;
1967 l1 = gen_new_label();
1968 l2 = gen_new_label();
1970 t0 = tcg_temp_local_new();
1971 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1972 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x20, l1);
1973 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1974 tcg_gen_br(l2);
1975 gen_set_label(l1);
1976 t1 = tcg_temp_new();
1977 tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]);
1978 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t1, t0);
1979 tcg_temp_free(t1);
1980 gen_set_label(l2);
1981 tcg_temp_free(t0);
1982 if (unlikely(Rc(ctx->opcode) != 0))
1983 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1985 #if defined(TARGET_PPC64)
1986 /* sld & sld. */
1987 GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B)
1989 TCGv t0;
1990 int l1, l2;
1991 l1 = gen_new_label();
1992 l2 = gen_new_label();
1994 t0 = tcg_temp_local_new();
1995 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f);
1996 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1);
1997 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1998 tcg_gen_br(l2);
1999 gen_set_label(l1);
2000 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
2001 gen_set_label(l2);
2002 tcg_temp_free(t0);
2003 if (unlikely(Rc(ctx->opcode) != 0))
2004 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2006 /* srad & srad. */
2007 GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B)
2009 gen_helper_srad(cpu_gpr[rA(ctx->opcode)],
2010 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
2011 if (unlikely(Rc(ctx->opcode) != 0))
2012 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2014 /* sradi & sradi. */
2015 static always_inline void gen_sradi (DisasContext *ctx, int n)
2017 int sh = SH(ctx->opcode) + (n << 5);
2018 if (sh != 0) {
2019 int l1, l2;
2020 TCGv t0;
2021 l1 = gen_new_label();
2022 l2 = gen_new_label();
2023 t0 = tcg_temp_local_new();
2024 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
2025 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1ULL << sh) - 1);
2026 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2027 tcg_gen_ori_tl(cpu_xer, cpu_xer, 1 << XER_CA);
2028 tcg_gen_br(l2);
2029 gen_set_label(l1);
2030 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
2031 gen_set_label(l2);
2032 tcg_temp_free(t0);
2033 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
2034 } else {
2035 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
2036 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
2038 if (unlikely(Rc(ctx->opcode) != 0))
2039 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2041 GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B)
2043 gen_sradi(ctx, 0);
2045 GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B)
2047 gen_sradi(ctx, 1);
2049 /* srd & srd. */
2050 GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B)
2052 TCGv t0;
2053 int l1, l2;
2054 l1 = gen_new_label();
2055 l2 = gen_new_label();
2057 t0 = tcg_temp_local_new();
2058 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x7f);
2059 tcg_gen_brcondi_tl(TCG_COND_LT, t0, 0x40, l1);
2060 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
2061 tcg_gen_br(l2);
2062 gen_set_label(l1);
2063 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t0);
2064 gen_set_label(l2);
2065 tcg_temp_free(t0);
2066 if (unlikely(Rc(ctx->opcode) != 0))
2067 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2069 #endif
2071 /*** Floating-Point arithmetic ***/
2072 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
2073 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type) \
2075 if (unlikely(!ctx->fpu_enabled)) { \
2076 gen_exception(ctx, POWERPC_EXCP_FPU); \
2077 return; \
2079 /* NIP cannot be restored if the memory exception comes from an helper */ \
2080 gen_update_nip(ctx, ctx->nip - 4); \
2081 gen_reset_fpstatus(); \
2082 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2083 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2084 if (isfloat) { \
2085 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2087 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
2088 Rc(ctx->opcode) != 0); \
2091 #define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
2092 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
2093 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2095 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2096 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2098 if (unlikely(!ctx->fpu_enabled)) { \
2099 gen_exception(ctx, POWERPC_EXCP_FPU); \
2100 return; \
2102 /* NIP cannot be restored if the memory exception comes from an helper */ \
2103 gen_update_nip(ctx, ctx->nip - 4); \
2104 gen_reset_fpstatus(); \
2105 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2106 cpu_fpr[rB(ctx->opcode)]); \
2107 if (isfloat) { \
2108 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]); \
2110 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2111 set_fprf, Rc(ctx->opcode) != 0); \
2113 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
2114 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2115 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2117 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
2118 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type) \
2120 if (unlikely(!ctx->fpu_enabled)) { \
2121 gen_exception(ctx, POWERPC_EXCP_FPU); \
2122 return; \
2124 /* NIP cannot be restored if the memory exception comes from an helper */ \
2125 gen_update_nip(ctx, ctx->nip - 4); \
2126 gen_reset_fpstatus(); \
2127 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)], \
2128 cpu_fpr[rC(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_AC(name, op2, inval, set_fprf, type) \
2136 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
2137 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2139 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
2140 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type) \
2142 if (unlikely(!ctx->fpu_enabled)) { \
2143 gen_exception(ctx, POWERPC_EXCP_FPU); \
2144 return; \
2146 /* NIP cannot be restored if the memory exception comes from an helper */ \
2147 gen_update_nip(ctx, ctx->nip - 4); \
2148 gen_reset_fpstatus(); \
2149 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2150 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2151 set_fprf, Rc(ctx->opcode) != 0); \
2154 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
2155 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type) \
2157 if (unlikely(!ctx->fpu_enabled)) { \
2158 gen_exception(ctx, POWERPC_EXCP_FPU); \
2159 return; \
2161 /* NIP cannot be restored if the memory exception comes from an helper */ \
2162 gen_update_nip(ctx, ctx->nip - 4); \
2163 gen_reset_fpstatus(); \
2164 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
2165 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2166 set_fprf, Rc(ctx->opcode) != 0); \
2169 /* fadd - fadds */
2170 GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT);
2171 /* fdiv - fdivs */
2172 GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT);
2173 /* fmul - fmuls */
2174 GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT);
2176 /* fre */
2177 GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT);
2179 /* fres */
2180 GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES);
2182 /* frsqrte */
2183 GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE);
2185 /* frsqrtes */
2186 GEN_HANDLER(frsqrtes, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES)
2188 if (unlikely(!ctx->fpu_enabled)) {
2189 gen_exception(ctx, POWERPC_EXCP_FPU);
2190 return;
2192 /* NIP cannot be restored if the memory exception comes from an helper */
2193 gen_update_nip(ctx, ctx->nip - 4);
2194 gen_reset_fpstatus();
2195 gen_helper_frsqrte(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2196 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]);
2197 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2200 /* fsel */
2201 _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL);
2202 /* fsub - fsubs */
2203 GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT);
2204 /* Optional: */
2205 /* fsqrt */
2206 GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
2208 if (unlikely(!ctx->fpu_enabled)) {
2209 gen_exception(ctx, POWERPC_EXCP_FPU);
2210 return;
2212 /* NIP cannot be restored if the memory exception comes from an helper */
2213 gen_update_nip(ctx, ctx->nip - 4);
2214 gen_reset_fpstatus();
2215 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2216 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2219 GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT)
2221 if (unlikely(!ctx->fpu_enabled)) {
2222 gen_exception(ctx, POWERPC_EXCP_FPU);
2223 return;
2225 /* NIP cannot be restored if the memory exception comes from an helper */
2226 gen_update_nip(ctx, ctx->nip - 4);
2227 gen_reset_fpstatus();
2228 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2229 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rD(ctx->opcode)]);
2230 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2233 /*** Floating-Point multiply-and-add ***/
2234 /* fmadd - fmadds */
2235 GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT);
2236 /* fmsub - fmsubs */
2237 GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT);
2238 /* fnmadd - fnmadds */
2239 GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT);
2240 /* fnmsub - fnmsubs */
2241 GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT);
2243 /*** Floating-Point round & convert ***/
2244 /* fctiw */
2245 GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT);
2246 /* fctiwz */
2247 GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT);
2248 /* frsp */
2249 GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT);
2250 #if defined(TARGET_PPC64)
2251 /* fcfid */
2252 GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B);
2253 /* fctid */
2254 GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B);
2255 /* fctidz */
2256 GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B);
2257 #endif
2259 /* frin */
2260 GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT);
2261 /* friz */
2262 GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT);
2263 /* frip */
2264 GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT);
2265 /* frim */
2266 GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT);
2268 /*** Floating-Point compare ***/
2269 /* fcmpo */
2270 GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT)
2272 TCGv_i32 crf;
2273 if (unlikely(!ctx->fpu_enabled)) {
2274 gen_exception(ctx, POWERPC_EXCP_FPU);
2275 return;
2277 /* NIP cannot be restored if the memory exception comes from an helper */
2278 gen_update_nip(ctx, ctx->nip - 4);
2279 gen_reset_fpstatus();
2280 crf = tcg_const_i32(crfD(ctx->opcode));
2281 gen_helper_fcmpo(cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)], crf);
2282 tcg_temp_free_i32(crf);
2283 gen_helper_float_check_status();
2286 /* fcmpu */
2287 GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT)
2289 TCGv_i32 crf;
2290 if (unlikely(!ctx->fpu_enabled)) {
2291 gen_exception(ctx, POWERPC_EXCP_FPU);
2292 return;
2294 /* NIP cannot be restored if the memory exception comes from an helper */
2295 gen_update_nip(ctx, ctx->nip - 4);
2296 gen_reset_fpstatus();
2297 crf = tcg_const_i32(crfD(ctx->opcode));
2298 gen_helper_fcmpu(cpu_fpr[rA(ctx->opcode)], cpu_fpr[rB(ctx->opcode)], crf);
2299 tcg_temp_free_i32(crf);
2300 gen_helper_float_check_status();
2303 /*** Floating-point move ***/
2304 /* fabs */
2305 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2306 GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT);
2308 /* fmr - fmr. */
2309 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2310 GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT)
2312 if (unlikely(!ctx->fpu_enabled)) {
2313 gen_exception(ctx, POWERPC_EXCP_FPU);
2314 return;
2316 tcg_gen_mov_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2317 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2320 /* fnabs */
2321 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2322 GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT);
2323 /* fneg */
2324 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2325 GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT);
2327 /*** Floating-Point status & ctrl register ***/
2328 /* mcrfs */
2329 GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT)
2331 int bfa;
2333 if (unlikely(!ctx->fpu_enabled)) {
2334 gen_exception(ctx, POWERPC_EXCP_FPU);
2335 return;
2337 bfa = 4 * (7 - crfS(ctx->opcode));
2338 tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_fpscr, bfa);
2339 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], 0xf);
2340 tcg_gen_andi_i32(cpu_fpscr, cpu_fpscr, ~(0xF << bfa));
2343 /* mffs */
2344 GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT)
2346 if (unlikely(!ctx->fpu_enabled)) {
2347 gen_exception(ctx, POWERPC_EXCP_FPU);
2348 return;
2350 gen_reset_fpstatus();
2351 tcg_gen_extu_i32_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpscr);
2352 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2355 /* mtfsb0 */
2356 GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT)
2358 uint8_t crb;
2360 if (unlikely(!ctx->fpu_enabled)) {
2361 gen_exception(ctx, POWERPC_EXCP_FPU);
2362 return;
2364 crb = 31 - crbD(ctx->opcode);
2365 gen_reset_fpstatus();
2366 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX)) {
2367 TCGv_i32 t0;
2368 /* NIP cannot be restored if the memory exception comes from an helper */
2369 gen_update_nip(ctx, ctx->nip - 4);
2370 t0 = tcg_const_i32(crb);
2371 gen_helper_fpscr_clrbit(t0);
2372 tcg_temp_free_i32(t0);
2374 if (unlikely(Rc(ctx->opcode) != 0)) {
2375 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2379 /* mtfsb1 */
2380 GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT)
2382 uint8_t crb;
2384 if (unlikely(!ctx->fpu_enabled)) {
2385 gen_exception(ctx, POWERPC_EXCP_FPU);
2386 return;
2388 crb = 31 - crbD(ctx->opcode);
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;
2393 /* NIP cannot be restored if the memory exception comes from an helper */
2394 gen_update_nip(ctx, ctx->nip - 4);
2395 t0 = tcg_const_i32(crb);
2396 gen_helper_fpscr_setbit(t0);
2397 tcg_temp_free_i32(t0);
2399 if (unlikely(Rc(ctx->opcode) != 0)) {
2400 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2402 /* We can raise a differed exception */
2403 gen_helper_float_check_status();
2406 /* mtfsf */
2407 GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x02010000, PPC_FLOAT)
2409 TCGv_i32 t0;
2411 if (unlikely(!ctx->fpu_enabled)) {
2412 gen_exception(ctx, POWERPC_EXCP_FPU);
2413 return;
2415 /* NIP cannot be restored if the memory exception comes from an helper */
2416 gen_update_nip(ctx, ctx->nip - 4);
2417 gen_reset_fpstatus();
2418 t0 = tcg_const_i32(FM(ctx->opcode));
2419 gen_helper_store_fpscr(cpu_fpr[rB(ctx->opcode)], t0);
2420 tcg_temp_free_i32(t0);
2421 if (unlikely(Rc(ctx->opcode) != 0)) {
2422 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2424 /* We can raise a differed exception */
2425 gen_helper_float_check_status();
2428 /* mtfsfi */
2429 GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT)
2431 int bf, sh;
2432 TCGv_i64 t0;
2433 TCGv_i32 t1;
2435 if (unlikely(!ctx->fpu_enabled)) {
2436 gen_exception(ctx, POWERPC_EXCP_FPU);
2437 return;
2439 bf = crbD(ctx->opcode) >> 2;
2440 sh = 7 - bf;
2441 /* NIP cannot be restored if the memory exception comes from an helper */
2442 gen_update_nip(ctx, ctx->nip - 4);
2443 gen_reset_fpstatus();
2444 t0 = tcg_const_i64(FPIMM(ctx->opcode) << (4 * sh));
2445 t1 = tcg_const_i32(1 << sh);
2446 gen_helper_store_fpscr(t0, t1);
2447 tcg_temp_free_i64(t0);
2448 tcg_temp_free_i32(t1);
2449 if (unlikely(Rc(ctx->opcode) != 0)) {
2450 tcg_gen_shri_i32(cpu_crf[1], cpu_fpscr, FPSCR_OX);
2452 /* We can raise a differed exception */
2453 gen_helper_float_check_status();
2456 /*** Addressing modes ***/
2457 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2458 static always_inline void gen_addr_imm_index (DisasContext *ctx, TCGv EA, target_long maskl)
2460 target_long simm = SIMM(ctx->opcode);
2462 simm &= ~maskl;
2463 if (rA(ctx->opcode) == 0) {
2464 #if defined(TARGET_PPC64)
2465 if (!ctx->sf_mode) {
2466 tcg_gen_movi_tl(EA, (uint32_t)simm);
2467 } else
2468 #endif
2469 tcg_gen_movi_tl(EA, simm);
2470 } else if (likely(simm != 0)) {
2471 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm);
2472 #if defined(TARGET_PPC64)
2473 if (!ctx->sf_mode) {
2474 tcg_gen_ext32u_tl(EA, EA);
2476 #endif
2477 } else {
2478 #if defined(TARGET_PPC64)
2479 if (!ctx->sf_mode) {
2480 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2481 } else
2482 #endif
2483 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2487 static always_inline void gen_addr_reg_index (DisasContext *ctx, TCGv EA)
2489 if (rA(ctx->opcode) == 0) {
2490 #if defined(TARGET_PPC64)
2491 if (!ctx->sf_mode) {
2492 tcg_gen_ext32u_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2493 } else
2494 #endif
2495 tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2496 } else {
2497 tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
2498 #if defined(TARGET_PPC64)
2499 if (!ctx->sf_mode) {
2500 tcg_gen_ext32u_tl(EA, EA);
2502 #endif
2506 static always_inline void gen_addr_register (DisasContext *ctx, TCGv EA)
2508 if (rA(ctx->opcode) == 0) {
2509 tcg_gen_movi_tl(EA, 0);
2510 } else {
2511 #if defined(TARGET_PPC64)
2512 if (!ctx->sf_mode) {
2513 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2514 } else
2515 #endif
2516 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2520 static always_inline void gen_addr_add (DisasContext *ctx, TCGv ret, TCGv arg1, target_long val)
2522 tcg_gen_addi_tl(ret, arg1, val);
2523 #if defined(TARGET_PPC64)
2524 if (!ctx->sf_mode) {
2525 tcg_gen_ext32u_tl(ret, ret);
2527 #endif
2530 static always_inline void gen_check_align (DisasContext *ctx, TCGv EA, int mask)
2532 int l1 = gen_new_label();
2533 TCGv t0 = tcg_temp_new();
2534 TCGv_i32 t1, t2;
2535 /* NIP cannot be restored if the memory exception comes from an helper */
2536 gen_update_nip(ctx, ctx->nip - 4);
2537 tcg_gen_andi_tl(t0, EA, mask);
2538 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2539 t1 = tcg_const_i32(POWERPC_EXCP_ALIGN);
2540 t2 = tcg_const_i32(0);
2541 gen_helper_raise_exception_err(t1, t2);
2542 tcg_temp_free_i32(t1);
2543 tcg_temp_free_i32(t2);
2544 gen_set_label(l1);
2545 tcg_temp_free(t0);
2548 /*** Integer load ***/
2549 static always_inline void gen_qemu_ld8u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2551 tcg_gen_qemu_ld8u(arg1, arg2, ctx->mem_idx);
2554 static always_inline void gen_qemu_ld8s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2556 tcg_gen_qemu_ld8s(arg1, arg2, ctx->mem_idx);
2559 static always_inline void gen_qemu_ld16u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2561 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2562 if (unlikely(ctx->le_mode)) {
2563 #if defined(TARGET_PPC64)
2564 TCGv_i32 t0 = tcg_temp_new_i32();
2565 tcg_gen_trunc_tl_i32(t0, arg1);
2566 tcg_gen_bswap16_i32(t0, t0);
2567 tcg_gen_extu_i32_tl(arg1, t0);
2568 tcg_temp_free_i32(t0);
2569 #else
2570 tcg_gen_bswap16_i32(arg1, arg1);
2571 #endif
2575 static always_inline void gen_qemu_ld16s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2577 if (unlikely(ctx->le_mode)) {
2578 #if defined(TARGET_PPC64)
2579 TCGv_i32 t0;
2580 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2581 t0 = tcg_temp_new_i32();
2582 tcg_gen_trunc_tl_i32(t0, arg1);
2583 tcg_gen_bswap16_i32(t0, t0);
2584 tcg_gen_extu_i32_tl(arg1, t0);
2585 tcg_gen_ext16s_tl(arg1, arg1);
2586 tcg_temp_free_i32(t0);
2587 #else
2588 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2589 tcg_gen_bswap16_i32(arg1, arg1);
2590 tcg_gen_ext16s_i32(arg1, arg1);
2591 #endif
2592 } else {
2593 tcg_gen_qemu_ld16s(arg1, arg2, ctx->mem_idx);
2597 static always_inline void gen_qemu_ld32u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2599 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2600 if (unlikely(ctx->le_mode)) {
2601 #if defined(TARGET_PPC64)
2602 TCGv_i32 t0 = tcg_temp_new_i32();
2603 tcg_gen_trunc_tl_i32(t0, arg1);
2604 tcg_gen_bswap_i32(t0, t0);
2605 tcg_gen_extu_i32_tl(arg1, t0);
2606 tcg_temp_free_i32(t0);
2607 #else
2608 tcg_gen_bswap_i32(arg1, arg1);
2609 #endif
2613 #if defined(TARGET_PPC64)
2614 static always_inline void gen_qemu_ld32s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2616 if (unlikely(ctx->mem_idx)) {
2617 TCGv_i32 t0;
2618 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2619 t0 = tcg_temp_new_i32();
2620 tcg_gen_trunc_tl_i32(t0, arg1);
2621 tcg_gen_bswap_i32(t0, t0);
2622 tcg_gen_ext_i32_tl(arg1, t0);
2623 tcg_temp_free_i32(t0);
2624 } else
2625 tcg_gen_qemu_ld32s(arg1, arg2, ctx->mem_idx);
2627 #endif
2629 static always_inline void gen_qemu_ld64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
2631 tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx);
2632 if (unlikely(ctx->le_mode)) {
2633 tcg_gen_bswap_i64(arg1, arg1);
2637 static always_inline void gen_qemu_st8(DisasContext *ctx, TCGv arg1, TCGv arg2)
2639 tcg_gen_qemu_st8(arg1, arg2, ctx->mem_idx);
2642 static always_inline void gen_qemu_st16(DisasContext *ctx, TCGv arg1, TCGv arg2)
2644 if (unlikely(ctx->le_mode)) {
2645 #if defined(TARGET_PPC64)
2646 TCGv_i32 t0;
2647 TCGv t1;
2648 t0 = tcg_temp_new_i32();
2649 tcg_gen_trunc_tl_i32(t0, arg1);
2650 tcg_gen_ext16u_i32(t0, t0);
2651 tcg_gen_bswap16_i32(t0, t0);
2652 t1 = tcg_temp_new();
2653 tcg_gen_extu_i32_tl(t1, t0);
2654 tcg_temp_free_i32(t0);
2655 tcg_gen_qemu_st16(t1, arg2, ctx->mem_idx);
2656 tcg_temp_free(t1);
2657 #else
2658 TCGv t0 = tcg_temp_new();
2659 tcg_gen_ext16u_tl(t0, arg1);
2660 tcg_gen_bswap16_i32(t0, t0);
2661 tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
2662 tcg_temp_free(t0);
2663 #endif
2664 } else {
2665 tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
2669 static always_inline void gen_qemu_st32(DisasContext *ctx, TCGv arg1, TCGv arg2)
2671 if (unlikely(ctx->le_mode)) {
2672 #if defined(TARGET_PPC64)
2673 TCGv_i32 t0;
2674 TCGv t1;
2675 t0 = tcg_temp_new_i32();
2676 tcg_gen_trunc_tl_i32(t0, arg1);
2677 tcg_gen_bswap_i32(t0, t0);
2678 t1 = tcg_temp_new();
2679 tcg_gen_extu_i32_tl(t1, t0);
2680 tcg_temp_free_i32(t0);
2681 tcg_gen_qemu_st32(t1, arg2, ctx->mem_idx);
2682 tcg_temp_free(t1);
2683 #else
2684 TCGv t0 = tcg_temp_new_i32();
2685 tcg_gen_bswap_i32(t0, arg1);
2686 tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
2687 tcg_temp_free(t0);
2688 #endif
2689 } else {
2690 tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
2694 static always_inline void gen_qemu_st64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
2696 if (unlikely(ctx->le_mode)) {
2697 TCGv_i64 t0 = tcg_temp_new_i64();
2698 tcg_gen_bswap_i64(t0, arg1);
2699 tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx);
2700 tcg_temp_free_i64(t0);
2701 } else
2702 tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx);
2705 #define GEN_LD(name, ldop, opc, type) \
2706 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2708 TCGv EA; \
2709 gen_set_access_type(ctx, ACCESS_INT); \
2710 EA = tcg_temp_new(); \
2711 gen_addr_imm_index(ctx, EA, 0); \
2712 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2713 tcg_temp_free(EA); \
2716 #define GEN_LDU(name, ldop, opc, type) \
2717 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2719 TCGv EA; \
2720 if (unlikely(rA(ctx->opcode) == 0 || \
2721 rA(ctx->opcode) == rD(ctx->opcode))) { \
2722 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2723 return; \
2725 gen_set_access_type(ctx, ACCESS_INT); \
2726 EA = tcg_temp_new(); \
2727 if (type == PPC_64B) \
2728 gen_addr_imm_index(ctx, EA, 0x03); \
2729 else \
2730 gen_addr_imm_index(ctx, EA, 0); \
2731 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2732 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2733 tcg_temp_free(EA); \
2736 #define GEN_LDUX(name, ldop, opc2, opc3, type) \
2737 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2739 TCGv EA; \
2740 if (unlikely(rA(ctx->opcode) == 0 || \
2741 rA(ctx->opcode) == rD(ctx->opcode))) { \
2742 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2743 return; \
2745 gen_set_access_type(ctx, ACCESS_INT); \
2746 EA = tcg_temp_new(); \
2747 gen_addr_reg_index(ctx, EA); \
2748 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2749 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2750 tcg_temp_free(EA); \
2753 #define GEN_LDX(name, ldop, opc2, opc3, type) \
2754 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2756 TCGv EA; \
2757 gen_set_access_type(ctx, ACCESS_INT); \
2758 EA = tcg_temp_new(); \
2759 gen_addr_reg_index(ctx, EA); \
2760 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
2761 tcg_temp_free(EA); \
2764 #define GEN_LDS(name, ldop, op, type) \
2765 GEN_LD(name, ldop, op | 0x20, type); \
2766 GEN_LDU(name, ldop, op | 0x21, type); \
2767 GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2768 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2770 /* lbz lbzu lbzux lbzx */
2771 GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER);
2772 /* lha lhau lhaux lhax */
2773 GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER);
2774 /* lhz lhzu lhzux lhzx */
2775 GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER);
2776 /* lwz lwzu lwzux lwzx */
2777 GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER);
2778 #if defined(TARGET_PPC64)
2779 /* lwaux */
2780 GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B);
2781 /* lwax */
2782 GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B);
2783 /* ldux */
2784 GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B);
2785 /* ldx */
2786 GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B);
2787 GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B)
2789 TCGv EA;
2790 if (Rc(ctx->opcode)) {
2791 if (unlikely(rA(ctx->opcode) == 0 ||
2792 rA(ctx->opcode) == rD(ctx->opcode))) {
2793 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2794 return;
2797 gen_set_access_type(ctx, ACCESS_INT);
2798 EA = tcg_temp_new();
2799 gen_addr_imm_index(ctx, EA, 0x03);
2800 if (ctx->opcode & 0x02) {
2801 /* lwa (lwau is undefined) */
2802 gen_qemu_ld32s(ctx, cpu_gpr[rD(ctx->opcode)], EA);
2803 } else {
2804 /* ld - ldu */
2805 gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], EA);
2807 if (Rc(ctx->opcode))
2808 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2809 tcg_temp_free(EA);
2811 /* lq */
2812 GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX)
2814 #if defined(CONFIG_USER_ONLY)
2815 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2816 #else
2817 int ra, rd;
2818 TCGv EA;
2820 /* Restore CPU state */
2821 if (unlikely(ctx->mem_idx == 0)) {
2822 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2823 return;
2825 ra = rA(ctx->opcode);
2826 rd = rD(ctx->opcode);
2827 if (unlikely((rd & 1) || rd == ra)) {
2828 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2829 return;
2831 if (unlikely(ctx->le_mode)) {
2832 /* Little-endian mode is not handled */
2833 gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2834 return;
2836 gen_set_access_type(ctx, ACCESS_INT);
2837 EA = tcg_temp_new();
2838 gen_addr_imm_index(ctx, EA, 0x0F);
2839 gen_qemu_ld64(ctx, cpu_gpr[rd], EA);
2840 gen_addr_add(ctx, EA, EA, 8);
2841 gen_qemu_ld64(ctx, cpu_gpr[rd+1], EA);
2842 tcg_temp_free(EA);
2843 #endif
2845 #endif
2847 /*** Integer store ***/
2848 #define GEN_ST(name, stop, opc, type) \
2849 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
2851 TCGv EA; \
2852 gen_set_access_type(ctx, ACCESS_INT); \
2853 EA = tcg_temp_new(); \
2854 gen_addr_imm_index(ctx, EA, 0); \
2855 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2856 tcg_temp_free(EA); \
2859 #define GEN_STU(name, stop, opc, type) \
2860 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type) \
2862 TCGv EA; \
2863 if (unlikely(rA(ctx->opcode) == 0)) { \
2864 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2865 return; \
2867 gen_set_access_type(ctx, ACCESS_INT); \
2868 EA = tcg_temp_new(); \
2869 if (type == PPC_64B) \
2870 gen_addr_imm_index(ctx, EA, 0x03); \
2871 else \
2872 gen_addr_imm_index(ctx, EA, 0); \
2873 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2874 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2875 tcg_temp_free(EA); \
2878 #define GEN_STUX(name, stop, opc2, opc3, type) \
2879 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type) \
2881 TCGv EA; \
2882 if (unlikely(rA(ctx->opcode) == 0)) { \
2883 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
2884 return; \
2886 gen_set_access_type(ctx, ACCESS_INT); \
2887 EA = tcg_temp_new(); \
2888 gen_addr_reg_index(ctx, EA); \
2889 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2890 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2891 tcg_temp_free(EA); \
2894 #define GEN_STX(name, stop, opc2, opc3, type) \
2895 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
2897 TCGv EA; \
2898 gen_set_access_type(ctx, ACCESS_INT); \
2899 EA = tcg_temp_new(); \
2900 gen_addr_reg_index(ctx, EA); \
2901 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
2902 tcg_temp_free(EA); \
2905 #define GEN_STS(name, stop, op, type) \
2906 GEN_ST(name, stop, op | 0x20, type); \
2907 GEN_STU(name, stop, op | 0x21, type); \
2908 GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2909 GEN_STX(name, stop, 0x17, op | 0x00, type)
2911 /* stb stbu stbux stbx */
2912 GEN_STS(stb, st8, 0x06, PPC_INTEGER);
2913 /* sth sthu sthux sthx */
2914 GEN_STS(sth, st16, 0x0C, PPC_INTEGER);
2915 /* stw stwu stwux stwx */
2916 GEN_STS(stw, st32, 0x04, PPC_INTEGER);
2917 #if defined(TARGET_PPC64)
2918 GEN_STUX(std, st64, 0x15, 0x05, PPC_64B);
2919 GEN_STX(std, st64, 0x15, 0x04, PPC_64B);
2920 GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B)
2922 int rs;
2923 TCGv EA;
2925 rs = rS(ctx->opcode);
2926 if ((ctx->opcode & 0x3) == 0x2) {
2927 #if defined(CONFIG_USER_ONLY)
2928 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2929 #else
2930 /* stq */
2931 if (unlikely(ctx->mem_idx == 0)) {
2932 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2933 return;
2935 if (unlikely(rs & 1)) {
2936 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2937 return;
2939 if (unlikely(ctx->le_mode)) {
2940 /* Little-endian mode is not handled */
2941 gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2942 return;
2944 gen_set_access_type(ctx, ACCESS_INT);
2945 EA = tcg_temp_new();
2946 gen_addr_imm_index(ctx, EA, 0x03);
2947 gen_qemu_st64(ctx, cpu_gpr[rs], EA);
2948 gen_addr_add(ctx, EA, EA, 8);
2949 gen_qemu_st64(ctx, cpu_gpr[rs+1], EA);
2950 tcg_temp_free(EA);
2951 #endif
2952 } else {
2953 /* std / stdu */
2954 if (Rc(ctx->opcode)) {
2955 if (unlikely(rA(ctx->opcode) == 0)) {
2956 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2957 return;
2960 gen_set_access_type(ctx, ACCESS_INT);
2961 EA = tcg_temp_new();
2962 gen_addr_imm_index(ctx, EA, 0x03);
2963 gen_qemu_st64(ctx, cpu_gpr[rs], EA);
2964 if (Rc(ctx->opcode))
2965 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2966 tcg_temp_free(EA);
2969 #endif
2970 /*** Integer load and store with byte reverse ***/
2971 /* lhbrx */
2972 static void always_inline gen_qemu_ld16ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2974 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2975 if (likely(!ctx->le_mode)) {
2976 #if defined(TARGET_PPC64)
2977 TCGv_i32 t0 = tcg_temp_new_i32();
2978 tcg_gen_trunc_tl_i32(t0, arg1);
2979 tcg_gen_bswap16_i32(t0, t0);
2980 tcg_gen_extu_i32_tl(arg1, t0);
2981 tcg_temp_free_i32(t0);
2982 #else
2983 tcg_gen_bswap16_i32(arg1, arg1);
2984 #endif
2987 GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER);
2989 /* lwbrx */
2990 static void always_inline gen_qemu_ld32ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2992 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2993 if (likely(!ctx->le_mode)) {
2994 #if defined(TARGET_PPC64)
2995 TCGv_i32 t0 = tcg_temp_new_i32();
2996 tcg_gen_trunc_tl_i32(t0, arg1);
2997 tcg_gen_bswap_i32(t0, t0);
2998 tcg_gen_extu_i32_tl(arg1, t0);
2999 tcg_temp_free_i32(t0);
3000 #else
3001 tcg_gen_bswap_i32(arg1, arg1);
3002 #endif
3005 GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER);
3007 /* sthbrx */
3008 static void always_inline gen_qemu_st16r(DisasContext *ctx, TCGv arg1, TCGv arg2)
3010 if (likely(!ctx->le_mode)) {
3011 #if defined(TARGET_PPC64)
3012 TCGv_i32 t0;
3013 TCGv t1;
3014 t0 = tcg_temp_new_i32();
3015 tcg_gen_trunc_tl_i32(t0, arg1);
3016 tcg_gen_ext16u_i32(t0, t0);
3017 tcg_gen_bswap16_i32(t0, t0);
3018 t1 = tcg_temp_new();
3019 tcg_gen_extu_i32_tl(t1, t0);
3020 tcg_temp_free_i32(t0);
3021 tcg_gen_qemu_st16(t1, arg2, ctx->mem_idx);
3022 tcg_temp_free(t1);
3023 #else
3024 TCGv t0 = tcg_temp_new();
3025 tcg_gen_ext16u_tl(t0, arg1);
3026 tcg_gen_bswap16_i32(t0, t0);
3027 tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
3028 tcg_temp_free(t0);
3029 #endif
3030 } else {
3031 tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
3034 GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER);
3036 /* stwbrx */
3037 static void always_inline gen_qemu_st32r(DisasContext *ctx, TCGv arg1, TCGv arg2)
3039 if (likely(!ctx->le_mode)) {
3040 #if defined(TARGET_PPC64)
3041 TCGv_i32 t0;
3042 TCGv t1;
3043 t0 = tcg_temp_new_i32();
3044 tcg_gen_trunc_tl_i32(t0, arg1);
3045 tcg_gen_bswap_i32(t0, t0);
3046 t1 = tcg_temp_new();
3047 tcg_gen_extu_i32_tl(t1, t0);
3048 tcg_temp_free_i32(t0);
3049 tcg_gen_qemu_st32(t1, arg2, ctx->mem_idx);
3050 tcg_temp_free(t1);
3051 #else
3052 TCGv t0 = tcg_temp_new_i32();
3053 tcg_gen_bswap_i32(t0, arg1);
3054 tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
3055 tcg_temp_free(t0);
3056 #endif
3057 } else {
3058 tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
3061 GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER);
3063 /*** Integer load and store multiple ***/
3064 /* lmw */
3065 GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
3067 TCGv t0;
3068 TCGv_i32 t1;
3069 gen_set_access_type(ctx, ACCESS_INT);
3070 /* NIP cannot be restored if the memory exception comes from an helper */
3071 gen_update_nip(ctx, ctx->nip - 4);
3072 t0 = tcg_temp_new();
3073 t1 = tcg_const_i32(rD(ctx->opcode));
3074 gen_addr_imm_index(ctx, t0, 0);
3075 gen_helper_lmw(t0, t1);
3076 tcg_temp_free(t0);
3077 tcg_temp_free_i32(t1);
3080 /* stmw */
3081 GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER)
3083 TCGv t0;
3084 TCGv_i32 t1;
3085 gen_set_access_type(ctx, ACCESS_INT);
3086 /* NIP cannot be restored if the memory exception comes from an helper */
3087 gen_update_nip(ctx, ctx->nip - 4);
3088 t0 = tcg_temp_new();
3089 t1 = tcg_const_i32(rS(ctx->opcode));
3090 gen_addr_imm_index(ctx, t0, 0);
3091 gen_helper_stmw(t0, t1);
3092 tcg_temp_free(t0);
3093 tcg_temp_free_i32(t1);
3096 /*** Integer load and store strings ***/
3097 /* lswi */
3098 /* PowerPC32 specification says we must generate an exception if
3099 * rA is in the range of registers to be loaded.
3100 * In an other hand, IBM says this is valid, but rA won't be loaded.
3101 * For now, I'll follow the spec...
3103 GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING)
3105 TCGv t0;
3106 TCGv_i32 t1, t2;
3107 int nb = NB(ctx->opcode);
3108 int start = rD(ctx->opcode);
3109 int ra = rA(ctx->opcode);
3110 int nr;
3112 if (nb == 0)
3113 nb = 32;
3114 nr = nb / 4;
3115 if (unlikely(((start + nr) > 32 &&
3116 start <= ra && (start + nr - 32) > ra) ||
3117 ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) {
3118 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
3119 return;
3121 gen_set_access_type(ctx, ACCESS_INT);
3122 /* NIP cannot be restored if the memory exception comes from an helper */
3123 gen_update_nip(ctx, ctx->nip - 4);
3124 t0 = tcg_temp_new();
3125 gen_addr_register(ctx, t0);
3126 t1 = tcg_const_i32(nb);
3127 t2 = tcg_const_i32(start);
3128 gen_helper_lsw(t0, t1, t2);
3129 tcg_temp_free(t0);
3130 tcg_temp_free_i32(t1);
3131 tcg_temp_free_i32(t2);
3134 /* lswx */
3135 GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING)
3137 TCGv t0;
3138 TCGv_i32 t1, t2, t3;
3139 gen_set_access_type(ctx, ACCESS_INT);
3140 /* NIP cannot be restored if the memory exception comes from an helper */
3141 gen_update_nip(ctx, ctx->nip - 4);
3142 t0 = tcg_temp_new();
3143 gen_addr_reg_index(ctx, t0);
3144 t1 = tcg_const_i32(rD(ctx->opcode));
3145 t2 = tcg_const_i32(rA(ctx->opcode));
3146 t3 = tcg_const_i32(rB(ctx->opcode));
3147 gen_helper_lswx(t0, t1, t2, t3);
3148 tcg_temp_free(t0);
3149 tcg_temp_free_i32(t1);
3150 tcg_temp_free_i32(t2);
3151 tcg_temp_free_i32(t3);
3154 /* stswi */
3155 GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING)
3157 TCGv t0;
3158 TCGv_i32 t1, t2;
3159 int nb = NB(ctx->opcode);
3160 gen_set_access_type(ctx, ACCESS_INT);
3161 /* NIP cannot be restored if the memory exception comes from an helper */
3162 gen_update_nip(ctx, ctx->nip - 4);
3163 t0 = tcg_temp_new();
3164 gen_addr_register(ctx, t0);
3165 if (nb == 0)
3166 nb = 32;
3167 t1 = tcg_const_i32(nb);
3168 t2 = tcg_const_i32(rS(ctx->opcode));
3169 gen_helper_stsw(t0, t1, t2);
3170 tcg_temp_free(t0);
3171 tcg_temp_free_i32(t1);
3172 tcg_temp_free_i32(t2);
3175 /* stswx */
3176 GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING)
3178 TCGv t0;
3179 TCGv_i32 t1, t2;
3180 gen_set_access_type(ctx, ACCESS_INT);
3181 /* NIP cannot be restored if the memory exception comes from an helper */
3182 gen_update_nip(ctx, ctx->nip - 4);
3183 t0 = tcg_temp_new();
3184 gen_addr_reg_index(ctx, t0);
3185 t1 = tcg_temp_new_i32();
3186 tcg_gen_trunc_tl_i32(t1, cpu_xer);
3187 tcg_gen_andi_i32(t1, t1, 0x7F);
3188 t2 = tcg_const_i32(rS(ctx->opcode));
3189 gen_helper_stsw(t0, t1, t2);
3190 tcg_temp_free(t0);
3191 tcg_temp_free_i32(t1);
3192 tcg_temp_free_i32(t2);
3195 /*** Memory synchronisation ***/
3196 /* eieio */
3197 GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO)
3201 /* isync */
3202 GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM)
3204 gen_stop_exception(ctx);
3207 /* lwarx */
3208 GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000001, PPC_RES)
3210 TCGv t0;
3211 gen_set_access_type(ctx, ACCESS_RES);
3212 t0 = tcg_temp_local_new();
3213 gen_addr_reg_index(ctx, t0);
3214 gen_check_align(ctx, t0, 0x03);
3215 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0);
3216 tcg_gen_mov_tl(cpu_reserve, t0);
3217 tcg_temp_free(t0);
3220 /* stwcx. */
3221 GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES)
3223 int l1;
3224 TCGv t0;
3225 gen_set_access_type(ctx, ACCESS_RES);
3226 t0 = tcg_temp_local_new();
3227 gen_addr_reg_index(ctx, t0);
3228 gen_check_align(ctx, t0, 0x03);
3229 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
3230 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
3231 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
3232 l1 = gen_new_label();
3233 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3234 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3235 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3236 gen_set_label(l1);
3237 tcg_gen_movi_tl(cpu_reserve, -1);
3238 tcg_temp_free(t0);
3241 #if defined(TARGET_PPC64)
3242 /* ldarx */
3243 GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000001, PPC_64B)
3245 TCGv t0;
3246 gen_set_access_type(ctx, ACCESS_RES);
3247 t0 = tcg_temp_local_new();
3248 gen_addr_reg_index(ctx, t0);
3249 gen_check_align(ctx, t0, 0x07);
3250 gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], t0);
3251 tcg_gen_mov_tl(cpu_reserve, t0);
3252 tcg_temp_free(t0);
3255 /* stdcx. */
3256 GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B)
3258 int l1;
3259 TCGv t0;
3260 gen_set_access_type(ctx, ACCESS_RES);
3261 t0 = tcg_temp_local_new();
3262 gen_addr_reg_index(ctx, t0);
3263 gen_check_align(ctx, t0, 0x07);
3264 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
3265 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
3266 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
3267 l1 = gen_new_label();
3268 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3269 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3270 gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3271 gen_set_label(l1);
3272 tcg_gen_movi_tl(cpu_reserve, -1);
3273 tcg_temp_free(t0);
3275 #endif /* defined(TARGET_PPC64) */
3277 /* sync */
3278 GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC)
3282 /* wait */
3283 GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT)
3285 TCGv_i32 t0 = tcg_temp_new_i32();
3286 tcg_gen_st_i32(t0, cpu_env, offsetof(CPUState, halted));
3287 tcg_temp_free_i32(t0);
3288 /* Stop translation, as the CPU is supposed to sleep from now */
3289 gen_exception_err(ctx, EXCP_HLT, 1);
3292 /*** Floating-point load ***/
3293 #define GEN_LDF(name, ldop, opc, type) \
3294 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3296 TCGv EA; \
3297 if (unlikely(!ctx->fpu_enabled)) { \
3298 gen_exception(ctx, POWERPC_EXCP_FPU); \
3299 return; \
3301 gen_set_access_type(ctx, ACCESS_FLOAT); \
3302 EA = tcg_temp_new(); \
3303 gen_addr_imm_index(ctx, EA, 0); \
3304 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3305 tcg_temp_free(EA); \
3308 #define GEN_LDUF(name, ldop, opc, type) \
3309 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3311 TCGv EA; \
3312 if (unlikely(!ctx->fpu_enabled)) { \
3313 gen_exception(ctx, POWERPC_EXCP_FPU); \
3314 return; \
3316 if (unlikely(rA(ctx->opcode) == 0)) { \
3317 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3318 return; \
3320 gen_set_access_type(ctx, ACCESS_FLOAT); \
3321 EA = tcg_temp_new(); \
3322 gen_addr_imm_index(ctx, EA, 0); \
3323 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3324 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3325 tcg_temp_free(EA); \
3328 #define GEN_LDUXF(name, ldop, opc, type) \
3329 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3331 TCGv EA; \
3332 if (unlikely(!ctx->fpu_enabled)) { \
3333 gen_exception(ctx, POWERPC_EXCP_FPU); \
3334 return; \
3336 if (unlikely(rA(ctx->opcode) == 0)) { \
3337 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3338 return; \
3340 gen_set_access_type(ctx, ACCESS_FLOAT); \
3341 EA = tcg_temp_new(); \
3342 gen_addr_reg_index(ctx, EA); \
3343 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3344 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3345 tcg_temp_free(EA); \
3348 #define GEN_LDXF(name, ldop, opc2, opc3, type) \
3349 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3351 TCGv EA; \
3352 if (unlikely(!ctx->fpu_enabled)) { \
3353 gen_exception(ctx, POWERPC_EXCP_FPU); \
3354 return; \
3356 gen_set_access_type(ctx, ACCESS_FLOAT); \
3357 EA = tcg_temp_new(); \
3358 gen_addr_reg_index(ctx, EA); \
3359 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
3360 tcg_temp_free(EA); \
3363 #define GEN_LDFS(name, ldop, op, type) \
3364 GEN_LDF(name, ldop, op | 0x20, type); \
3365 GEN_LDUF(name, ldop, op | 0x21, type); \
3366 GEN_LDUXF(name, ldop, op | 0x01, type); \
3367 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3369 static always_inline void gen_qemu_ld32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3371 TCGv t0 = tcg_temp_new();
3372 TCGv_i32 t1 = tcg_temp_new_i32();
3373 gen_qemu_ld32u(ctx, t0, arg2);
3374 tcg_gen_trunc_tl_i32(t1, t0);
3375 tcg_temp_free(t0);
3376 gen_helper_float32_to_float64(arg1, t1);
3377 tcg_temp_free_i32(t1);
3380 /* lfd lfdu lfdux lfdx */
3381 GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT);
3382 /* lfs lfsu lfsux lfsx */
3383 GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT);
3385 /*** Floating-point store ***/
3386 #define GEN_STF(name, stop, opc, type) \
3387 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type) \
3389 TCGv EA; \
3390 if (unlikely(!ctx->fpu_enabled)) { \
3391 gen_exception(ctx, POWERPC_EXCP_FPU); \
3392 return; \
3394 gen_set_access_type(ctx, ACCESS_FLOAT); \
3395 EA = tcg_temp_new(); \
3396 gen_addr_imm_index(ctx, EA, 0); \
3397 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3398 tcg_temp_free(EA); \
3401 #define GEN_STUF(name, stop, opc, type) \
3402 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type) \
3404 TCGv EA; \
3405 if (unlikely(!ctx->fpu_enabled)) { \
3406 gen_exception(ctx, POWERPC_EXCP_FPU); \
3407 return; \
3409 if (unlikely(rA(ctx->opcode) == 0)) { \
3410 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3411 return; \
3413 gen_set_access_type(ctx, ACCESS_FLOAT); \
3414 EA = tcg_temp_new(); \
3415 gen_addr_imm_index(ctx, EA, 0); \
3416 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3417 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3418 tcg_temp_free(EA); \
3421 #define GEN_STUXF(name, stop, opc, type) \
3422 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type) \
3424 TCGv EA; \
3425 if (unlikely(!ctx->fpu_enabled)) { \
3426 gen_exception(ctx, POWERPC_EXCP_FPU); \
3427 return; \
3429 if (unlikely(rA(ctx->opcode) == 0)) { \
3430 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
3431 return; \
3433 gen_set_access_type(ctx, ACCESS_FLOAT); \
3434 EA = tcg_temp_new(); \
3435 gen_addr_reg_index(ctx, EA); \
3436 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3437 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3438 tcg_temp_free(EA); \
3441 #define GEN_STXF(name, stop, opc2, opc3, type) \
3442 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type) \
3444 TCGv EA; \
3445 if (unlikely(!ctx->fpu_enabled)) { \
3446 gen_exception(ctx, POWERPC_EXCP_FPU); \
3447 return; \
3449 gen_set_access_type(ctx, ACCESS_FLOAT); \
3450 EA = tcg_temp_new(); \
3451 gen_addr_reg_index(ctx, EA); \
3452 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
3453 tcg_temp_free(EA); \
3456 #define GEN_STFS(name, stop, op, type) \
3457 GEN_STF(name, stop, op | 0x20, type); \
3458 GEN_STUF(name, stop, op | 0x21, type); \
3459 GEN_STUXF(name, stop, op | 0x01, type); \
3460 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3462 static always_inline void gen_qemu_st32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3464 TCGv_i32 t0 = tcg_temp_new_i32();
3465 TCGv t1 = tcg_temp_new();
3466 gen_helper_float64_to_float32(t0, arg1);
3467 tcg_gen_extu_i32_tl(t1, t0);
3468 tcg_temp_free_i32(t0);
3469 gen_qemu_st32(ctx, t1, arg2);
3470 tcg_temp_free(t1);
3473 /* stfd stfdu stfdux stfdx */
3474 GEN_STFS(stfd, st64, 0x16, PPC_FLOAT);
3475 /* stfs stfsu stfsux stfsx */
3476 GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT);
3478 /* Optional: */
3479 static always_inline void gen_qemu_st32fiw(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3481 TCGv t0 = tcg_temp_new();
3482 tcg_gen_trunc_i64_tl(t0, arg1),
3483 gen_qemu_st32(ctx, t0, arg2);
3484 tcg_temp_free(t0);
3486 /* stfiwx */
3487 GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX);
3489 /*** Branch ***/
3490 static always_inline void gen_goto_tb (DisasContext *ctx, int n,
3491 target_ulong dest)
3493 TranslationBlock *tb;
3494 tb = ctx->tb;
3495 #if defined(TARGET_PPC64)
3496 if (!ctx->sf_mode)
3497 dest = (uint32_t) dest;
3498 #endif
3499 if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) &&
3500 likely(!ctx->singlestep_enabled)) {
3501 tcg_gen_goto_tb(n);
3502 tcg_gen_movi_tl(cpu_nip, dest & ~3);
3503 tcg_gen_exit_tb((long)tb + n);
3504 } else {
3505 tcg_gen_movi_tl(cpu_nip, dest & ~3);
3506 if (unlikely(ctx->singlestep_enabled)) {
3507 if ((ctx->singlestep_enabled &
3508 (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) &&
3509 ctx->exception == POWERPC_EXCP_BRANCH) {
3510 target_ulong tmp = ctx->nip;
3511 ctx->nip = dest;
3512 gen_exception(ctx, POWERPC_EXCP_TRACE);
3513 ctx->nip = tmp;
3515 if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) {
3516 gen_debug_exception(ctx);
3519 tcg_gen_exit_tb(0);
3523 static always_inline void gen_setlr (DisasContext *ctx, target_ulong nip)
3525 #if defined(TARGET_PPC64)
3526 if (ctx->sf_mode == 0)
3527 tcg_gen_movi_tl(cpu_lr, (uint32_t)nip);
3528 else
3529 #endif
3530 tcg_gen_movi_tl(cpu_lr, nip);
3533 /* b ba bl bla */
3534 GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3536 target_ulong li, target;
3538 ctx->exception = POWERPC_EXCP_BRANCH;
3539 /* sign extend LI */
3540 #if defined(TARGET_PPC64)
3541 if (ctx->sf_mode)
3542 li = ((int64_t)LI(ctx->opcode) << 38) >> 38;
3543 else
3544 #endif
3545 li = ((int32_t)LI(ctx->opcode) << 6) >> 6;
3546 if (likely(AA(ctx->opcode) == 0))
3547 target = ctx->nip + li - 4;
3548 else
3549 target = li;
3550 if (LK(ctx->opcode))
3551 gen_setlr(ctx, ctx->nip);
3552 gen_goto_tb(ctx, 0, target);
3555 #define BCOND_IM 0
3556 #define BCOND_LR 1
3557 #define BCOND_CTR 2
3559 static always_inline void gen_bcond (DisasContext *ctx, int type)
3561 uint32_t bo = BO(ctx->opcode);
3562 int l1 = gen_new_label();
3563 TCGv target;
3565 ctx->exception = POWERPC_EXCP_BRANCH;
3566 if (type == BCOND_LR || type == BCOND_CTR) {
3567 target = tcg_temp_local_new();
3568 if (type == BCOND_CTR)
3569 tcg_gen_mov_tl(target, cpu_ctr);
3570 else
3571 tcg_gen_mov_tl(target, cpu_lr);
3573 if (LK(ctx->opcode))
3574 gen_setlr(ctx, ctx->nip);
3575 l1 = gen_new_label();
3576 if ((bo & 0x4) == 0) {
3577 /* Decrement and test CTR */
3578 TCGv temp = tcg_temp_new();
3579 if (unlikely(type == BCOND_CTR)) {
3580 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
3581 return;
3583 tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);
3584 #if defined(TARGET_PPC64)
3585 if (!ctx->sf_mode)
3586 tcg_gen_ext32u_tl(temp, cpu_ctr);
3587 else
3588 #endif
3589 tcg_gen_mov_tl(temp, cpu_ctr);
3590 if (bo & 0x2) {
3591 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1);
3592 } else {
3593 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1);
3595 tcg_temp_free(temp);
3597 if ((bo & 0x10) == 0) {
3598 /* Test CR */
3599 uint32_t bi = BI(ctx->opcode);
3600 uint32_t mask = 1 << (3 - (bi & 0x03));
3601 TCGv_i32 temp = tcg_temp_new_i32();
3603 if (bo & 0x8) {
3604 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3605 tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1);
3606 } else {
3607 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3608 tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1);
3610 tcg_temp_free_i32(temp);
3612 if (type == BCOND_IM) {
3613 target_ulong li = (target_long)((int16_t)(BD(ctx->opcode)));
3614 if (likely(AA(ctx->opcode) == 0)) {
3615 gen_goto_tb(ctx, 0, ctx->nip + li - 4);
3616 } else {
3617 gen_goto_tb(ctx, 0, li);
3619 gen_set_label(l1);
3620 gen_goto_tb(ctx, 1, ctx->nip);
3621 } else {
3622 #if defined(TARGET_PPC64)
3623 if (!(ctx->sf_mode))
3624 tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
3625 else
3626 #endif
3627 tcg_gen_andi_tl(cpu_nip, target, ~3);
3628 tcg_gen_exit_tb(0);
3629 gen_set_label(l1);
3630 #if defined(TARGET_PPC64)
3631 if (!(ctx->sf_mode))
3632 tcg_gen_movi_tl(cpu_nip, (uint32_t)ctx->nip);
3633 else
3634 #endif
3635 tcg_gen_movi_tl(cpu_nip, ctx->nip);
3636 tcg_gen_exit_tb(0);
3640 GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3642 gen_bcond(ctx, BCOND_IM);
3645 GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW)
3647 gen_bcond(ctx, BCOND_CTR);
3650 GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW)
3652 gen_bcond(ctx, BCOND_LR);
3655 /*** Condition register logical ***/
3656 #define GEN_CRLOGIC(name, tcg_op, opc) \
3657 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER) \
3659 uint8_t bitmask; \
3660 int sh; \
3661 TCGv_i32 t0, t1; \
3662 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
3663 t0 = tcg_temp_new_i32(); \
3664 if (sh > 0) \
3665 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
3666 else if (sh < 0) \
3667 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
3668 else \
3669 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
3670 t1 = tcg_temp_new_i32(); \
3671 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3672 if (sh > 0) \
3673 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
3674 else if (sh < 0) \
3675 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
3676 else \
3677 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3678 tcg_op(t0, t0, t1); \
3679 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
3680 tcg_gen_andi_i32(t0, t0, bitmask); \
3681 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3682 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
3683 tcg_temp_free_i32(t0); \
3684 tcg_temp_free_i32(t1); \
3687 /* crand */
3688 GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08);
3689 /* crandc */
3690 GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04);
3691 /* creqv */
3692 GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09);
3693 /* crnand */
3694 GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07);
3695 /* crnor */
3696 GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01);
3697 /* cror */
3698 GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E);
3699 /* crorc */
3700 GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D);
3701 /* crxor */
3702 GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06);
3703 /* mcrf */
3704 GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER)
3706 tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]);
3709 /*** System linkage ***/
3710 /* rfi (mem_idx only) */
3711 GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW)
3713 #if defined(CONFIG_USER_ONLY)
3714 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3715 #else
3716 /* Restore CPU state */
3717 if (unlikely(!ctx->mem_idx)) {
3718 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3719 return;
3721 gen_helper_rfi();
3722 gen_sync_exception(ctx);
3723 #endif
3726 #if defined(TARGET_PPC64)
3727 GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B)
3729 #if defined(CONFIG_USER_ONLY)
3730 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3731 #else
3732 /* Restore CPU state */
3733 if (unlikely(!ctx->mem_idx)) {
3734 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3735 return;
3737 gen_helper_rfid();
3738 gen_sync_exception(ctx);
3739 #endif
3742 GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H)
3744 #if defined(CONFIG_USER_ONLY)
3745 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3746 #else
3747 /* Restore CPU state */
3748 if (unlikely(ctx->mem_idx <= 1)) {
3749 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3750 return;
3752 gen_helper_hrfid();
3753 gen_sync_exception(ctx);
3754 #endif
3756 #endif
3758 /* sc */
3759 #if defined(CONFIG_USER_ONLY)
3760 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3761 #else
3762 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3763 #endif
3764 GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW)
3766 uint32_t lev;
3768 lev = (ctx->opcode >> 5) & 0x7F;
3769 gen_exception_err(ctx, POWERPC_SYSCALL, lev);
3772 /*** Trap ***/
3773 /* tw */
3774 GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW)
3776 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3777 /* Update the nip since this might generate a trap exception */
3778 gen_update_nip(ctx, ctx->nip);
3779 gen_helper_tw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
3780 tcg_temp_free_i32(t0);
3783 /* twi */
3784 GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW)
3786 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3787 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3788 /* Update the nip since this might generate a trap exception */
3789 gen_update_nip(ctx, ctx->nip);
3790 gen_helper_tw(cpu_gpr[rA(ctx->opcode)], t0, t1);
3791 tcg_temp_free(t0);
3792 tcg_temp_free_i32(t1);
3795 #if defined(TARGET_PPC64)
3796 /* td */
3797 GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B)
3799 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3800 /* Update the nip since this might generate a trap exception */
3801 gen_update_nip(ctx, ctx->nip);
3802 gen_helper_td(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
3803 tcg_temp_free_i32(t0);
3806 /* tdi */
3807 GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B)
3809 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3810 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3811 /* Update the nip since this might generate a trap exception */
3812 gen_update_nip(ctx, ctx->nip);
3813 gen_helper_td(cpu_gpr[rA(ctx->opcode)], t0, t1);
3814 tcg_temp_free(t0);
3815 tcg_temp_free_i32(t1);
3817 #endif
3819 /*** Processor control ***/
3820 /* mcrxr */
3821 GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC)
3823 tcg_gen_trunc_tl_i32(cpu_crf[crfD(ctx->opcode)], cpu_xer);
3824 tcg_gen_shri_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], XER_CA);
3825 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_SO | 1 << XER_OV | 1 << XER_CA));
3828 /* mfcr */
3829 GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC)
3831 uint32_t crm, crn;
3833 if (likely(ctx->opcode & 0x00100000)) {
3834 crm = CRM(ctx->opcode);
3835 if (likely((crm ^ (crm - 1)) == 0)) {
3836 crn = ffs(crm);
3837 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
3839 } else {
3840 gen_helper_load_cr(cpu_gpr[rD(ctx->opcode)]);
3844 /* mfmsr */
3845 GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC)
3847 #if defined(CONFIG_USER_ONLY)
3848 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3849 #else
3850 if (unlikely(!ctx->mem_idx)) {
3851 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3852 return;
3854 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_msr);
3855 #endif
3858 #if 1
3859 #define SPR_NOACCESS ((void *)(-1UL))
3860 #else
3861 static void spr_noaccess (void *opaque, int sprn)
3863 sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
3864 printf("ERROR: try to access SPR %d !\n", sprn);
3866 #define SPR_NOACCESS (&spr_noaccess)
3867 #endif
3869 /* mfspr */
3870 static always_inline void gen_op_mfspr (DisasContext *ctx)
3872 void (*read_cb)(void *opaque, int gprn, int sprn);
3873 uint32_t sprn = SPR(ctx->opcode);
3875 #if !defined(CONFIG_USER_ONLY)
3876 if (ctx->mem_idx == 2)
3877 read_cb = ctx->spr_cb[sprn].hea_read;
3878 else if (ctx->mem_idx)
3879 read_cb = ctx->spr_cb[sprn].oea_read;
3880 else
3881 #endif
3882 read_cb = ctx->spr_cb[sprn].uea_read;
3883 if (likely(read_cb != NULL)) {
3884 if (likely(read_cb != SPR_NOACCESS)) {
3885 (*read_cb)(ctx, rD(ctx->opcode), sprn);
3886 } else {
3887 /* Privilege exception */
3888 /* This is a hack to avoid warnings when running Linux:
3889 * this OS breaks the PowerPC virtualisation model,
3890 * allowing userland application to read the PVR
3892 if (sprn != SPR_PVR) {
3893 if (loglevel != 0) {
3894 fprintf(logfile, "Trying to read privileged spr %d %03x at "
3895 ADDRX "\n", sprn, sprn, ctx->nip);
3897 printf("Trying to read privileged spr %d %03x at " ADDRX "\n",
3898 sprn, sprn, ctx->nip);
3900 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3902 } else {
3903 /* Not defined */
3904 if (loglevel != 0) {
3905 fprintf(logfile, "Trying to read invalid spr %d %03x at "
3906 ADDRX "\n", sprn, sprn, ctx->nip);
3908 printf("Trying to read invalid spr %d %03x at " ADDRX "\n",
3909 sprn, sprn, ctx->nip);
3910 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
3914 GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC)
3916 gen_op_mfspr(ctx);
3919 /* mftb */
3920 GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB)
3922 gen_op_mfspr(ctx);
3925 /* mtcrf */
3926 GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC)
3928 uint32_t crm, crn;
3930 crm = CRM(ctx->opcode);
3931 if (likely((ctx->opcode & 0x00100000) || (crm ^ (crm - 1)) == 0)) {
3932 TCGv_i32 temp = tcg_temp_new_i32();
3933 crn = ffs(crm);
3934 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
3935 tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
3936 tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
3937 tcg_temp_free_i32(temp);
3938 } else {
3939 TCGv_i32 temp = tcg_const_i32(crm);
3940 gen_helper_store_cr(cpu_gpr[rS(ctx->opcode)], temp);
3941 tcg_temp_free_i32(temp);
3945 /* mtmsr */
3946 #if defined(TARGET_PPC64)
3947 GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B)
3949 #if defined(CONFIG_USER_ONLY)
3950 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3951 #else
3952 if (unlikely(!ctx->mem_idx)) {
3953 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3954 return;
3956 if (ctx->opcode & 0x00010000) {
3957 /* Special form that does not need any synchronisation */
3958 TCGv t0 = tcg_temp_new();
3959 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
3960 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
3961 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3962 tcg_temp_free(t0);
3963 } else {
3964 /* XXX: we need to update nip before the store
3965 * if we enter power saving mode, we will exit the loop
3966 * directly from ppc_store_msr
3968 gen_update_nip(ctx, ctx->nip);
3969 gen_helper_store_msr(cpu_gpr[rS(ctx->opcode)]);
3970 /* Must stop the translation as machine state (may have) changed */
3971 /* Note that mtmsr is not always defined as context-synchronizing */
3972 gen_stop_exception(ctx);
3974 #endif
3976 #endif
3978 GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC)
3980 #if defined(CONFIG_USER_ONLY)
3981 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3982 #else
3983 if (unlikely(!ctx->mem_idx)) {
3984 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3985 return;
3987 if (ctx->opcode & 0x00010000) {
3988 /* Special form that does not need any synchronisation */
3989 TCGv t0 = tcg_temp_new();
3990 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
3991 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
3992 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3993 tcg_temp_free(t0);
3994 } else {
3995 /* XXX: we need to update nip before the store
3996 * if we enter power saving mode, we will exit the loop
3997 * directly from ppc_store_msr
3999 gen_update_nip(ctx, ctx->nip);
4000 #if defined(TARGET_PPC64)
4001 if (!ctx->sf_mode) {
4002 TCGv t0 = tcg_temp_new();
4003 TCGv t1 = tcg_temp_new();
4004 tcg_gen_andi_tl(t0, cpu_msr, 0xFFFFFFFF00000000ULL);
4005 tcg_gen_ext32u_tl(t1, cpu_gpr[rS(ctx->opcode)]);
4006 tcg_gen_or_tl(t0, t0, t1);
4007 tcg_temp_free(t1);
4008 gen_helper_store_msr(t0);
4009 tcg_temp_free(t0);
4010 } else
4011 #endif
4012 gen_helper_store_msr(cpu_gpr[rS(ctx->opcode)]);
4013 /* Must stop the translation as machine state (may have) changed */
4014 /* Note that mtmsr is not always defined as context-synchronizing */
4015 gen_stop_exception(ctx);
4017 #endif
4020 /* mtspr */
4021 GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC)
4023 void (*write_cb)(void *opaque, int sprn, int gprn);
4024 uint32_t sprn = SPR(ctx->opcode);
4026 #if !defined(CONFIG_USER_ONLY)
4027 if (ctx->mem_idx == 2)
4028 write_cb = ctx->spr_cb[sprn].hea_write;
4029 else if (ctx->mem_idx)
4030 write_cb = ctx->spr_cb[sprn].oea_write;
4031 else
4032 #endif
4033 write_cb = ctx->spr_cb[sprn].uea_write;
4034 if (likely(write_cb != NULL)) {
4035 if (likely(write_cb != SPR_NOACCESS)) {
4036 (*write_cb)(ctx, sprn, rS(ctx->opcode));
4037 } else {
4038 /* Privilege exception */
4039 if (loglevel != 0) {
4040 fprintf(logfile, "Trying to write privileged spr %d %03x at "
4041 ADDRX "\n", sprn, sprn, ctx->nip);
4043 printf("Trying to write privileged spr %d %03x at " ADDRX "\n",
4044 sprn, sprn, ctx->nip);
4045 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4047 } else {
4048 /* Not defined */
4049 if (loglevel != 0) {
4050 fprintf(logfile, "Trying to write invalid spr %d %03x at "
4051 ADDRX "\n", sprn, sprn, ctx->nip);
4053 printf("Trying to write invalid spr %d %03x at " ADDRX "\n",
4054 sprn, sprn, ctx->nip);
4055 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
4059 /*** Cache management ***/
4060 /* dcbf */
4061 GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE)
4063 /* XXX: specification says this is treated as a load by the MMU */
4064 TCGv t0;
4065 gen_set_access_type(ctx, ACCESS_CACHE);
4066 t0 = tcg_temp_new();
4067 gen_addr_reg_index(ctx, t0);
4068 gen_qemu_ld8u(ctx, t0, t0);
4069 tcg_temp_free(t0);
4072 /* dcbi (Supervisor only) */
4073 GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE)
4075 #if defined(CONFIG_USER_ONLY)
4076 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4077 #else
4078 TCGv EA, val;
4079 if (unlikely(!ctx->mem_idx)) {
4080 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4081 return;
4083 EA = tcg_temp_new();
4084 gen_set_access_type(ctx, ACCESS_CACHE);
4085 gen_addr_reg_index(ctx, EA);
4086 val = tcg_temp_new();
4087 /* XXX: specification says this should be treated as a store by the MMU */
4088 gen_qemu_ld8u(ctx, val, EA);
4089 gen_qemu_st8(ctx, val, EA);
4090 tcg_temp_free(val);
4091 tcg_temp_free(EA);
4092 #endif
4095 /* dcdst */
4096 GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE)
4098 /* XXX: specification say this is treated as a load by the MMU */
4099 TCGv t0;
4100 gen_set_access_type(ctx, ACCESS_CACHE);
4101 t0 = tcg_temp_new();
4102 gen_addr_reg_index(ctx, t0);
4103 gen_qemu_ld8u(ctx, t0, t0);
4104 tcg_temp_free(t0);
4107 /* dcbt */
4108 GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE)
4110 /* interpreted as no-op */
4111 /* XXX: specification say this is treated as a load by the MMU
4112 * but does not generate any exception
4116 /* dcbtst */
4117 GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE)
4119 /* interpreted as no-op */
4120 /* XXX: specification say this is treated as a load by the MMU
4121 * but does not generate any exception
4125 /* dcbz */
4126 GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03E00001, PPC_CACHE_DCBZ)
4128 TCGv t0;
4129 gen_set_access_type(ctx, ACCESS_CACHE);
4130 /* NIP cannot be restored if the memory exception comes from an helper */
4131 gen_update_nip(ctx, ctx->nip - 4);
4132 t0 = tcg_temp_new();
4133 gen_addr_reg_index(ctx, t0);
4134 gen_helper_dcbz(t0);
4135 tcg_temp_free(t0);
4138 GEN_HANDLER2(dcbz_970, "dcbz", 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZT)
4140 TCGv t0;
4141 gen_set_access_type(ctx, ACCESS_CACHE);
4142 /* NIP cannot be restored if the memory exception comes from an helper */
4143 gen_update_nip(ctx, ctx->nip - 4);
4144 t0 = tcg_temp_new();
4145 gen_addr_reg_index(ctx, t0);
4146 if (ctx->opcode & 0x00200000)
4147 gen_helper_dcbz(t0);
4148 else
4149 gen_helper_dcbz_970(t0);
4150 tcg_temp_free(t0);
4153 /* icbi */
4154 GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI)
4156 TCGv t0;
4157 gen_set_access_type(ctx, ACCESS_CACHE);
4158 /* NIP cannot be restored if the memory exception comes from an helper */
4159 gen_update_nip(ctx, ctx->nip - 4);
4160 t0 = tcg_temp_new();
4161 gen_addr_reg_index(ctx, t0);
4162 gen_helper_icbi(t0);
4163 tcg_temp_free(t0);
4166 /* Optional: */
4167 /* dcba */
4168 GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA)
4170 /* interpreted as no-op */
4171 /* XXX: specification say this is treated as a store by the MMU
4172 * but does not generate any exception
4176 /*** Segment register manipulation ***/
4177 /* Supervisor only: */
4178 /* mfsr */
4179 GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT)
4181 #if defined(CONFIG_USER_ONLY)
4182 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4183 #else
4184 TCGv t0;
4185 if (unlikely(!ctx->mem_idx)) {
4186 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4187 return;
4189 t0 = tcg_const_tl(SR(ctx->opcode));
4190 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0);
4191 tcg_temp_free(t0);
4192 #endif
4195 /* mfsrin */
4196 GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT)
4198 #if defined(CONFIG_USER_ONLY)
4199 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4200 #else
4201 TCGv t0;
4202 if (unlikely(!ctx->mem_idx)) {
4203 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4204 return;
4206 t0 = tcg_temp_new();
4207 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4208 tcg_gen_andi_tl(t0, t0, 0xF);
4209 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], t0);
4210 tcg_temp_free(t0);
4211 #endif
4214 /* mtsr */
4215 GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT)
4217 #if defined(CONFIG_USER_ONLY)
4218 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4219 #else
4220 TCGv t0;
4221 if (unlikely(!ctx->mem_idx)) {
4222 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4223 return;
4225 t0 = tcg_const_tl(SR(ctx->opcode));
4226 gen_helper_store_sr(t0, cpu_gpr[rS(ctx->opcode)]);
4227 tcg_temp_free(t0);
4228 #endif
4231 /* mtsrin */
4232 GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT)
4234 #if defined(CONFIG_USER_ONLY)
4235 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4236 #else
4237 TCGv t0;
4238 if (unlikely(!ctx->mem_idx)) {
4239 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4240 return;
4242 t0 = tcg_temp_new();
4243 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4244 tcg_gen_andi_tl(t0, t0, 0xF);
4245 gen_helper_store_sr(t0, cpu_gpr[rD(ctx->opcode)]);
4246 tcg_temp_free(t0);
4247 #endif
4250 #if defined(TARGET_PPC64)
4251 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4252 /* mfsr */
4253 GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B)
4255 #if defined(CONFIG_USER_ONLY)
4256 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4257 #else
4258 TCGv t0;
4259 if (unlikely(!ctx->mem_idx)) {
4260 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4261 return;
4263 t0 = tcg_const_tl(SR(ctx->opcode));
4264 gen_helper_load_slb(cpu_gpr[rD(ctx->opcode)], t0);
4265 tcg_temp_free(t0);
4266 #endif
4269 /* mfsrin */
4270 GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
4271 PPC_SEGMENT_64B)
4273 #if defined(CONFIG_USER_ONLY)
4274 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4275 #else
4276 TCGv t0;
4277 if (unlikely(!ctx->mem_idx)) {
4278 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4279 return;
4281 t0 = tcg_temp_new();
4282 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4283 tcg_gen_andi_tl(t0, t0, 0xF);
4284 gen_helper_load_slb(cpu_gpr[rD(ctx->opcode)], t0);
4285 tcg_temp_free(t0);
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_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4294 #else
4295 TCGv t0;
4296 if (unlikely(!ctx->mem_idx)) {
4297 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4298 return;
4300 t0 = tcg_const_tl(SR(ctx->opcode));
4301 gen_helper_store_slb(t0, cpu_gpr[rS(ctx->opcode)]);
4302 tcg_temp_free(t0);
4303 #endif
4306 /* mtsrin */
4307 GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
4308 PPC_SEGMENT_64B)
4310 #if defined(CONFIG_USER_ONLY)
4311 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4312 #else
4313 TCGv t0;
4314 if (unlikely(!ctx->mem_idx)) {
4315 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4316 return;
4318 t0 = tcg_temp_new();
4319 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4320 tcg_gen_andi_tl(t0, t0, 0xF);
4321 gen_helper_store_slb(t0, cpu_gpr[rS(ctx->opcode)]);
4322 tcg_temp_free(t0);
4323 #endif
4325 #endif /* defined(TARGET_PPC64) */
4327 /*** Lookaside buffer management ***/
4328 /* Optional & mem_idx only: */
4329 /* tlbia */
4330 GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA)
4332 #if defined(CONFIG_USER_ONLY)
4333 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4334 #else
4335 if (unlikely(!ctx->mem_idx)) {
4336 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4337 return;
4339 gen_helper_tlbia();
4340 #endif
4343 /* tlbie */
4344 GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE)
4346 #if defined(CONFIG_USER_ONLY)
4347 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4348 #else
4349 if (unlikely(!ctx->mem_idx)) {
4350 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4351 return;
4353 #if defined(TARGET_PPC64)
4354 if (!ctx->sf_mode) {
4355 TCGv t0 = tcg_temp_new();
4356 tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
4357 gen_helper_tlbie(t0);
4358 tcg_temp_free(t0);
4359 } else
4360 #endif
4361 gen_helper_tlbie(cpu_gpr[rB(ctx->opcode)]);
4362 #endif
4365 /* tlbsync */
4366 GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC)
4368 #if defined(CONFIG_USER_ONLY)
4369 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4370 #else
4371 if (unlikely(!ctx->mem_idx)) {
4372 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4373 return;
4375 /* This has no effect: it should ensure that all previous
4376 * tlbie have completed
4378 gen_stop_exception(ctx);
4379 #endif
4382 #if defined(TARGET_PPC64)
4383 /* slbia */
4384 GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI)
4386 #if defined(CONFIG_USER_ONLY)
4387 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4388 #else
4389 if (unlikely(!ctx->mem_idx)) {
4390 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4391 return;
4393 gen_helper_slbia();
4394 #endif
4397 /* slbie */
4398 GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI)
4400 #if defined(CONFIG_USER_ONLY)
4401 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4402 #else
4403 if (unlikely(!ctx->mem_idx)) {
4404 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4405 return;
4407 gen_helper_slbie(cpu_gpr[rB(ctx->opcode)]);
4408 #endif
4410 #endif
4412 /*** External control ***/
4413 /* Optional: */
4414 /* eciwx */
4415 GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN)
4417 TCGv t0;
4418 /* Should check EAR[E] ! */
4419 gen_set_access_type(ctx, ACCESS_EXT);
4420 t0 = tcg_temp_new();
4421 gen_addr_reg_index(ctx, t0);
4422 gen_check_align(ctx, t0, 0x03);
4423 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0);
4424 tcg_temp_free(t0);
4427 /* ecowx */
4428 GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN)
4430 TCGv t0;
4431 /* Should check EAR[E] ! */
4432 gen_set_access_type(ctx, ACCESS_EXT);
4433 t0 = tcg_temp_new();
4434 gen_addr_reg_index(ctx, t0);
4435 gen_check_align(ctx, t0, 0x03);
4436 gen_qemu_st32(ctx, cpu_gpr[rD(ctx->opcode)], t0);
4437 tcg_temp_free(t0);
4440 /* PowerPC 601 specific instructions */
4441 /* abs - abs. */
4442 GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR)
4444 int l1 = gen_new_label();
4445 int l2 = gen_new_label();
4446 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l1);
4447 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4448 tcg_gen_br(l2);
4449 gen_set_label(l1);
4450 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4451 gen_set_label(l2);
4452 if (unlikely(Rc(ctx->opcode) != 0))
4453 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4456 /* abso - abso. */
4457 GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR)
4459 int l1 = gen_new_label();
4460 int l2 = gen_new_label();
4461 int l3 = gen_new_label();
4462 /* Start with XER OV disabled, the most likely case */
4463 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
4464 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l2);
4465 tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[rA(ctx->opcode)], 0x80000000, l1);
4466 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
4467 tcg_gen_br(l2);
4468 gen_set_label(l1);
4469 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4470 tcg_gen_br(l3);
4471 gen_set_label(l2);
4472 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4473 gen_set_label(l3);
4474 if (unlikely(Rc(ctx->opcode) != 0))
4475 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4478 /* clcs */
4479 GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR)
4481 TCGv_i32 t0 = tcg_const_i32(rA(ctx->opcode));
4482 gen_helper_clcs(cpu_gpr[rD(ctx->opcode)], t0);
4483 tcg_temp_free_i32(t0);
4484 /* Rc=1 sets CR0 to an undefined state */
4487 /* div - div. */
4488 GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR)
4490 gen_helper_div(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4491 if (unlikely(Rc(ctx->opcode) != 0))
4492 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4495 /* divo - divo. */
4496 GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR)
4498 gen_helper_divo(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4499 if (unlikely(Rc(ctx->opcode) != 0))
4500 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4503 /* divs - divs. */
4504 GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR)
4506 gen_helper_divs(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4507 if (unlikely(Rc(ctx->opcode) != 0))
4508 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4511 /* divso - divso. */
4512 GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR)
4514 gen_helper_divso(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4515 if (unlikely(Rc(ctx->opcode) != 0))
4516 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4519 /* doz - doz. */
4520 GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR)
4522 int l1 = gen_new_label();
4523 int l2 = gen_new_label();
4524 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4525 tcg_gen_sub_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4526 tcg_gen_br(l2);
4527 gen_set_label(l1);
4528 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4529 gen_set_label(l2);
4530 if (unlikely(Rc(ctx->opcode) != 0))
4531 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4534 /* dozo - dozo. */
4535 GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR)
4537 int l1 = gen_new_label();
4538 int l2 = gen_new_label();
4539 TCGv t0 = tcg_temp_new();
4540 TCGv t1 = tcg_temp_new();
4541 TCGv t2 = tcg_temp_new();
4542 /* Start with XER OV disabled, the most likely case */
4543 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
4544 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4545 tcg_gen_sub_tl(t0, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4546 tcg_gen_xor_tl(t1, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4547 tcg_gen_xor_tl(t2, cpu_gpr[rA(ctx->opcode)], t0);
4548 tcg_gen_andc_tl(t1, t1, t2);
4549 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
4550 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
4551 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
4552 tcg_gen_br(l2);
4553 gen_set_label(l1);
4554 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4555 gen_set_label(l2);
4556 tcg_temp_free(t0);
4557 tcg_temp_free(t1);
4558 tcg_temp_free(t2);
4559 if (unlikely(Rc(ctx->opcode) != 0))
4560 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4563 /* dozi */
4564 GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4566 target_long simm = SIMM(ctx->opcode);
4567 int l1 = gen_new_label();
4568 int l2 = gen_new_label();
4569 tcg_gen_brcondi_tl(TCG_COND_LT, cpu_gpr[rA(ctx->opcode)], simm, l1);
4570 tcg_gen_subfi_tl(cpu_gpr[rD(ctx->opcode)], simm, cpu_gpr[rA(ctx->opcode)]);
4571 tcg_gen_br(l2);
4572 gen_set_label(l1);
4573 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4574 gen_set_label(l2);
4575 if (unlikely(Rc(ctx->opcode) != 0))
4576 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4579 /* lscbx - lscbx. */
4580 GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR)
4582 TCGv t0 = tcg_temp_new();
4583 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
4584 TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
4585 TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
4587 gen_addr_reg_index(ctx, t0);
4588 /* NIP cannot be restored if the memory exception comes from an helper */
4589 gen_update_nip(ctx, ctx->nip - 4);
4590 gen_helper_lscbx(t0, t0, t1, t2, t3);
4591 tcg_temp_free_i32(t1);
4592 tcg_temp_free_i32(t2);
4593 tcg_temp_free_i32(t3);
4594 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F);
4595 tcg_gen_or_tl(cpu_xer, cpu_xer, t0);
4596 if (unlikely(Rc(ctx->opcode) != 0))
4597 gen_set_Rc0(ctx, t0);
4598 tcg_temp_free(t0);
4601 /* maskg - maskg. */
4602 GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR)
4604 int l1 = gen_new_label();
4605 TCGv t0 = tcg_temp_new();
4606 TCGv t1 = tcg_temp_new();
4607 TCGv t2 = tcg_temp_new();
4608 TCGv t3 = tcg_temp_new();
4609 tcg_gen_movi_tl(t3, 0xFFFFFFFF);
4610 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4611 tcg_gen_andi_tl(t1, cpu_gpr[rS(ctx->opcode)], 0x1F);
4612 tcg_gen_addi_tl(t2, t0, 1);
4613 tcg_gen_shr_tl(t2, t3, t2);
4614 tcg_gen_shr_tl(t3, t3, t1);
4615 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], t2, t3);
4616 tcg_gen_brcond_tl(TCG_COND_GE, t0, t1, l1);
4617 tcg_gen_neg_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4618 gen_set_label(l1);
4619 tcg_temp_free(t0);
4620 tcg_temp_free(t1);
4621 tcg_temp_free(t2);
4622 tcg_temp_free(t3);
4623 if (unlikely(Rc(ctx->opcode) != 0))
4624 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4627 /* maskir - maskir. */
4628 GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR)
4630 TCGv t0 = tcg_temp_new();
4631 TCGv t1 = tcg_temp_new();
4632 tcg_gen_and_tl(t0, cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4633 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4634 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4635 tcg_temp_free(t0);
4636 tcg_temp_free(t1);
4637 if (unlikely(Rc(ctx->opcode) != 0))
4638 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4641 /* mul - mul. */
4642 GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR)
4644 TCGv_i64 t0 = tcg_temp_new_i64();
4645 TCGv_i64 t1 = tcg_temp_new_i64();
4646 TCGv t2 = tcg_temp_new();
4647 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4648 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4649 tcg_gen_mul_i64(t0, t0, t1);
4650 tcg_gen_trunc_i64_tl(t2, t0);
4651 gen_store_spr(SPR_MQ, t2);
4652 tcg_gen_shri_i64(t1, t0, 32);
4653 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4654 tcg_temp_free_i64(t0);
4655 tcg_temp_free_i64(t1);
4656 tcg_temp_free(t2);
4657 if (unlikely(Rc(ctx->opcode) != 0))
4658 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4661 /* mulo - mulo. */
4662 GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR)
4664 int l1 = gen_new_label();
4665 TCGv_i64 t0 = tcg_temp_new_i64();
4666 TCGv_i64 t1 = tcg_temp_new_i64();
4667 TCGv t2 = tcg_temp_new();
4668 /* Start with XER OV disabled, the most likely case */
4669 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
4670 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4671 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4672 tcg_gen_mul_i64(t0, t0, t1);
4673 tcg_gen_trunc_i64_tl(t2, t0);
4674 gen_store_spr(SPR_MQ, t2);
4675 tcg_gen_shri_i64(t1, t0, 32);
4676 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4677 tcg_gen_ext32s_i64(t1, t0);
4678 tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
4679 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
4680 gen_set_label(l1);
4681 tcg_temp_free_i64(t0);
4682 tcg_temp_free_i64(t1);
4683 tcg_temp_free(t2);
4684 if (unlikely(Rc(ctx->opcode) != 0))
4685 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4688 /* nabs - nabs. */
4689 GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR)
4691 int l1 = gen_new_label();
4692 int l2 = gen_new_label();
4693 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4694 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4695 tcg_gen_br(l2);
4696 gen_set_label(l1);
4697 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4698 gen_set_label(l2);
4699 if (unlikely(Rc(ctx->opcode) != 0))
4700 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4703 /* nabso - nabso. */
4704 GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR)
4706 int l1 = gen_new_label();
4707 int l2 = gen_new_label();
4708 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4709 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4710 tcg_gen_br(l2);
4711 gen_set_label(l1);
4712 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4713 gen_set_label(l2);
4714 /* nabs never overflows */
4715 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
4716 if (unlikely(Rc(ctx->opcode) != 0))
4717 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4720 /* rlmi - rlmi. */
4721 GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR)
4723 uint32_t mb = MB(ctx->opcode);
4724 uint32_t me = ME(ctx->opcode);
4725 TCGv t0 = tcg_temp_new();
4726 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4727 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4728 tcg_gen_andi_tl(t0, t0, MASK(mb, me));
4729 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me));
4730 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0);
4731 tcg_temp_free(t0);
4732 if (unlikely(Rc(ctx->opcode) != 0))
4733 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4736 /* rrib - rrib. */
4737 GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR)
4739 TCGv t0 = tcg_temp_new();
4740 TCGv t1 = tcg_temp_new();
4741 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4742 tcg_gen_movi_tl(t1, 0x80000000);
4743 tcg_gen_shr_tl(t1, t1, t0);
4744 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4745 tcg_gen_and_tl(t0, t0, t1);
4746 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1);
4747 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4748 tcg_temp_free(t0);
4749 tcg_temp_free(t1);
4750 if (unlikely(Rc(ctx->opcode) != 0))
4751 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4754 /* sle - sle. */
4755 GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR)
4757 TCGv t0 = tcg_temp_new();
4758 TCGv t1 = tcg_temp_new();
4759 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4760 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4761 tcg_gen_subfi_tl(t1, 32, t1);
4762 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4763 tcg_gen_or_tl(t1, t0, t1);
4764 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4765 gen_store_spr(SPR_MQ, t1);
4766 tcg_temp_free(t0);
4767 tcg_temp_free(t1);
4768 if (unlikely(Rc(ctx->opcode) != 0))
4769 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4772 /* sleq - sleq. */
4773 GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR)
4775 TCGv t0 = tcg_temp_new();
4776 TCGv t1 = tcg_temp_new();
4777 TCGv t2 = tcg_temp_new();
4778 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4779 tcg_gen_movi_tl(t2, 0xFFFFFFFF);
4780 tcg_gen_shl_tl(t2, t2, t0);
4781 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4782 gen_load_spr(t1, SPR_MQ);
4783 gen_store_spr(SPR_MQ, t0);
4784 tcg_gen_and_tl(t0, t0, t2);
4785 tcg_gen_andc_tl(t1, t1, t2);
4786 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4787 tcg_temp_free(t0);
4788 tcg_temp_free(t1);
4789 tcg_temp_free(t2);
4790 if (unlikely(Rc(ctx->opcode) != 0))
4791 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4794 /* sliq - sliq. */
4795 GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR)
4797 int sh = SH(ctx->opcode);
4798 TCGv t0 = tcg_temp_new();
4799 TCGv t1 = tcg_temp_new();
4800 tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4801 tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4802 tcg_gen_or_tl(t1, t0, t1);
4803 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4804 gen_store_spr(SPR_MQ, t1);
4805 tcg_temp_free(t0);
4806 tcg_temp_free(t1);
4807 if (unlikely(Rc(ctx->opcode) != 0))
4808 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4811 /* slliq - slliq. */
4812 GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR)
4814 int sh = SH(ctx->opcode);
4815 TCGv t0 = tcg_temp_new();
4816 TCGv t1 = tcg_temp_new();
4817 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4818 gen_load_spr(t1, SPR_MQ);
4819 gen_store_spr(SPR_MQ, t0);
4820 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU << sh));
4821 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh));
4822 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4823 tcg_temp_free(t0);
4824 tcg_temp_free(t1);
4825 if (unlikely(Rc(ctx->opcode) != 0))
4826 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4829 /* sllq - sllq. */
4830 GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR)
4832 int l1 = gen_new_label();
4833 int l2 = gen_new_label();
4834 TCGv t0 = tcg_temp_local_new();
4835 TCGv t1 = tcg_temp_local_new();
4836 TCGv t2 = tcg_temp_local_new();
4837 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4838 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4839 tcg_gen_shl_tl(t1, t1, t2);
4840 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4841 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4842 gen_load_spr(t0, SPR_MQ);
4843 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4844 tcg_gen_br(l2);
4845 gen_set_label(l1);
4846 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4847 gen_load_spr(t2, SPR_MQ);
4848 tcg_gen_andc_tl(t1, t2, t1);
4849 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4850 gen_set_label(l2);
4851 tcg_temp_free(t0);
4852 tcg_temp_free(t1);
4853 tcg_temp_free(t2);
4854 if (unlikely(Rc(ctx->opcode) != 0))
4855 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4858 /* slq - slq. */
4859 GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR)
4861 int l1 = gen_new_label();
4862 TCGv t0 = tcg_temp_new();
4863 TCGv t1 = tcg_temp_new();
4864 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4865 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4866 tcg_gen_subfi_tl(t1, 32, t1);
4867 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4868 tcg_gen_or_tl(t1, t0, t1);
4869 gen_store_spr(SPR_MQ, t1);
4870 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
4871 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4872 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4873 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
4874 gen_set_label(l1);
4875 tcg_temp_free(t0);
4876 tcg_temp_free(t1);
4877 if (unlikely(Rc(ctx->opcode) != 0))
4878 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4881 /* sraiq - sraiq. */
4882 GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR)
4884 int sh = SH(ctx->opcode);
4885 int l1 = gen_new_label();
4886 TCGv t0 = tcg_temp_new();
4887 TCGv t1 = tcg_temp_new();
4888 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4889 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4890 tcg_gen_or_tl(t0, t0, t1);
4891 gen_store_spr(SPR_MQ, t0);
4892 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
4893 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4894 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
4895 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA));
4896 gen_set_label(l1);
4897 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
4898 tcg_temp_free(t0);
4899 tcg_temp_free(t1);
4900 if (unlikely(Rc(ctx->opcode) != 0))
4901 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4904 /* sraq - sraq. */
4905 GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR)
4907 int l1 = gen_new_label();
4908 int l2 = gen_new_label();
4909 TCGv t0 = tcg_temp_new();
4910 TCGv t1 = tcg_temp_local_new();
4911 TCGv t2 = tcg_temp_local_new();
4912 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4913 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4914 tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2);
4915 tcg_gen_subfi_tl(t2, 32, t2);
4916 tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2);
4917 tcg_gen_or_tl(t0, t0, t2);
4918 gen_store_spr(SPR_MQ, t0);
4919 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4920 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1);
4921 tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]);
4922 tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31);
4923 gen_set_label(l1);
4924 tcg_temp_free(t0);
4925 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1);
4926 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_CA));
4927 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
4928 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2);
4929 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_CA));
4930 gen_set_label(l2);
4931 tcg_temp_free(t1);
4932 tcg_temp_free(t2);
4933 if (unlikely(Rc(ctx->opcode) != 0))
4934 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4937 /* sre - sre. */
4938 GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR)
4940 TCGv t0 = tcg_temp_new();
4941 TCGv t1 = tcg_temp_new();
4942 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4943 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4944 tcg_gen_subfi_tl(t1, 32, t1);
4945 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4946 tcg_gen_or_tl(t1, t0, t1);
4947 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4948 gen_store_spr(SPR_MQ, t1);
4949 tcg_temp_free(t0);
4950 tcg_temp_free(t1);
4951 if (unlikely(Rc(ctx->opcode) != 0))
4952 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4955 /* srea - srea. */
4956 GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR)
4958 TCGv t0 = tcg_temp_new();
4959 TCGv t1 = tcg_temp_new();
4960 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4961 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4962 gen_store_spr(SPR_MQ, t0);
4963 tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1);
4964 tcg_temp_free(t0);
4965 tcg_temp_free(t1);
4966 if (unlikely(Rc(ctx->opcode) != 0))
4967 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4970 /* sreq */
4971 GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR)
4973 TCGv t0 = tcg_temp_new();
4974 TCGv t1 = tcg_temp_new();
4975 TCGv t2 = tcg_temp_new();
4976 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4977 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4978 tcg_gen_shr_tl(t1, t1, t0);
4979 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4980 gen_load_spr(t2, SPR_MQ);
4981 gen_store_spr(SPR_MQ, t0);
4982 tcg_gen_and_tl(t0, t0, t1);
4983 tcg_gen_andc_tl(t2, t2, t1);
4984 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
4985 tcg_temp_free(t0);
4986 tcg_temp_free(t1);
4987 tcg_temp_free(t2);
4988 if (unlikely(Rc(ctx->opcode) != 0))
4989 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4992 /* sriq */
4993 GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR)
4995 int sh = SH(ctx->opcode);
4996 TCGv t0 = tcg_temp_new();
4997 TCGv t1 = tcg_temp_new();
4998 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4999 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
5000 tcg_gen_or_tl(t1, t0, t1);
5001 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5002 gen_store_spr(SPR_MQ, t1);
5003 tcg_temp_free(t0);
5004 tcg_temp_free(t1);
5005 if (unlikely(Rc(ctx->opcode) != 0))
5006 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5009 /* srliq */
5010 GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR)
5012 int sh = SH(ctx->opcode);
5013 TCGv t0 = tcg_temp_new();
5014 TCGv t1 = tcg_temp_new();
5015 tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5016 gen_load_spr(t1, SPR_MQ);
5017 gen_store_spr(SPR_MQ, t0);
5018 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU >> sh));
5019 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh));
5020 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5021 tcg_temp_free(t0);
5022 tcg_temp_free(t1);
5023 if (unlikely(Rc(ctx->opcode) != 0))
5024 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5027 /* srlq */
5028 GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR)
5030 int l1 = gen_new_label();
5031 int l2 = gen_new_label();
5032 TCGv t0 = tcg_temp_local_new();
5033 TCGv t1 = tcg_temp_local_new();
5034 TCGv t2 = tcg_temp_local_new();
5035 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5036 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5037 tcg_gen_shr_tl(t2, t1, t2);
5038 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5039 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5040 gen_load_spr(t0, SPR_MQ);
5041 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5042 tcg_gen_br(l2);
5043 gen_set_label(l1);
5044 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5045 tcg_gen_and_tl(t0, t0, t2);
5046 gen_load_spr(t1, SPR_MQ);
5047 tcg_gen_andc_tl(t1, t1, t2);
5048 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5049 gen_set_label(l2);
5050 tcg_temp_free(t0);
5051 tcg_temp_free(t1);
5052 tcg_temp_free(t2);
5053 if (unlikely(Rc(ctx->opcode) != 0))
5054 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5057 /* srq */
5058 GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR)
5060 int l1 = gen_new_label();
5061 TCGv t0 = tcg_temp_new();
5062 TCGv t1 = tcg_temp_new();
5063 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5064 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5065 tcg_gen_subfi_tl(t1, 32, t1);
5066 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5067 tcg_gen_or_tl(t1, t0, t1);
5068 gen_store_spr(SPR_MQ, t1);
5069 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
5070 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5071 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5072 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
5073 gen_set_label(l1);
5074 tcg_temp_free(t0);
5075 tcg_temp_free(t1);
5076 if (unlikely(Rc(ctx->opcode) != 0))
5077 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5080 /* PowerPC 602 specific instructions */
5081 /* dsa */
5082 GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC)
5084 /* XXX: TODO */
5085 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5088 /* esa */
5089 GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC)
5091 /* XXX: TODO */
5092 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5095 /* mfrom */
5096 GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC)
5098 #if defined(CONFIG_USER_ONLY)
5099 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5100 #else
5101 if (unlikely(!ctx->mem_idx)) {
5102 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5103 return;
5105 gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5106 #endif
5109 /* 602 - 603 - G2 TLB management */
5110 /* tlbld */
5111 GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB)
5113 #if defined(CONFIG_USER_ONLY)
5114 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5115 #else
5116 if (unlikely(!ctx->mem_idx)) {
5117 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5118 return;
5120 gen_helper_6xx_tlbd(cpu_gpr[rB(ctx->opcode)]);
5121 #endif
5124 /* tlbli */
5125 GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB)
5127 #if defined(CONFIG_USER_ONLY)
5128 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5129 #else
5130 if (unlikely(!ctx->mem_idx)) {
5131 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5132 return;
5134 gen_helper_6xx_tlbi(cpu_gpr[rB(ctx->opcode)]);
5135 #endif
5138 /* 74xx TLB management */
5139 /* tlbld */
5140 GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB)
5142 #if defined(CONFIG_USER_ONLY)
5143 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5144 #else
5145 if (unlikely(!ctx->mem_idx)) {
5146 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5147 return;
5149 gen_helper_74xx_tlbd(cpu_gpr[rB(ctx->opcode)]);
5150 #endif
5153 /* tlbli */
5154 GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB)
5156 #if defined(CONFIG_USER_ONLY)
5157 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5158 #else
5159 if (unlikely(!ctx->mem_idx)) {
5160 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5161 return;
5163 gen_helper_74xx_tlbi(cpu_gpr[rB(ctx->opcode)]);
5164 #endif
5167 /* POWER instructions not in PowerPC 601 */
5168 /* clf */
5169 GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER)
5171 /* Cache line flush: implemented as no-op */
5174 /* cli */
5175 GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER)
5177 /* Cache line invalidate: privileged and treated as no-op */
5178 #if defined(CONFIG_USER_ONLY)
5179 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5180 #else
5181 if (unlikely(!ctx->mem_idx)) {
5182 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5183 return;
5185 #endif
5188 /* dclst */
5189 GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER)
5191 /* Data cache line store: treated as no-op */
5194 GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER)
5196 #if defined(CONFIG_USER_ONLY)
5197 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5198 #else
5199 int ra = rA(ctx->opcode);
5200 int rd = rD(ctx->opcode);
5201 TCGv t0;
5202 if (unlikely(!ctx->mem_idx)) {
5203 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5204 return;
5206 t0 = tcg_temp_new();
5207 gen_addr_reg_index(ctx, t0);
5208 tcg_gen_shri_tl(t0, t0, 28);
5209 tcg_gen_andi_tl(t0, t0, 0xF);
5210 gen_helper_load_sr(cpu_gpr[rd], t0);
5211 tcg_temp_free(t0);
5212 if (ra != 0 && ra != rd)
5213 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rd]);
5214 #endif
5217 GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER)
5219 #if defined(CONFIG_USER_ONLY)
5220 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5221 #else
5222 TCGv t0;
5223 if (unlikely(!ctx->mem_idx)) {
5224 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5225 return;
5227 t0 = tcg_temp_new();
5228 gen_addr_reg_index(ctx, t0);
5229 gen_helper_rac(cpu_gpr[rD(ctx->opcode)], t0);
5230 tcg_temp_free(t0);
5231 #endif
5234 GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER)
5236 #if defined(CONFIG_USER_ONLY)
5237 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5238 #else
5239 if (unlikely(!ctx->mem_idx)) {
5240 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5241 return;
5243 gen_helper_rfsvc();
5244 gen_sync_exception(ctx);
5245 #endif
5248 /* svc is not implemented for now */
5250 /* POWER2 specific instructions */
5251 /* Quad manipulation (load/store two floats at a time) */
5253 /* lfq */
5254 GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5256 int rd = rD(ctx->opcode);
5257 TCGv t0;
5258 gen_set_access_type(ctx, ACCESS_FLOAT);
5259 t0 = tcg_temp_new();
5260 gen_addr_imm_index(ctx, t0, 0);
5261 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5262 gen_addr_add(ctx, t0, t0, 8);
5263 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5264 tcg_temp_free(t0);
5267 /* lfqu */
5268 GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5270 int ra = rA(ctx->opcode);
5271 int rd = rD(ctx->opcode);
5272 TCGv t0, t1;
5273 gen_set_access_type(ctx, ACCESS_FLOAT);
5274 t0 = tcg_temp_new();
5275 t1 = tcg_temp_new();
5276 gen_addr_imm_index(ctx, t0, 0);
5277 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5278 gen_addr_add(ctx, t1, t0, 8);
5279 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5280 if (ra != 0)
5281 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5282 tcg_temp_free(t0);
5283 tcg_temp_free(t1);
5286 /* lfqux */
5287 GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2)
5289 int ra = rA(ctx->opcode);
5290 int rd = rD(ctx->opcode);
5291 gen_set_access_type(ctx, ACCESS_FLOAT);
5292 TCGv t0, t1;
5293 t0 = tcg_temp_new();
5294 gen_addr_reg_index(ctx, t0);
5295 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5296 t1 = tcg_temp_new();
5297 gen_addr_add(ctx, t1, t0, 8);
5298 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5299 tcg_temp_free(t1);
5300 if (ra != 0)
5301 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5302 tcg_temp_free(t0);
5305 /* lfqx */
5306 GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2)
5308 int rd = rD(ctx->opcode);
5309 TCGv t0;
5310 gen_set_access_type(ctx, ACCESS_FLOAT);
5311 t0 = tcg_temp_new();
5312 gen_addr_reg_index(ctx, t0);
5313 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5314 gen_addr_add(ctx, t0, t0, 8);
5315 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5316 tcg_temp_free(t0);
5319 /* stfq */
5320 GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5322 int rd = rD(ctx->opcode);
5323 TCGv t0;
5324 gen_set_access_type(ctx, ACCESS_FLOAT);
5325 t0 = tcg_temp_new();
5326 gen_addr_imm_index(ctx, t0, 0);
5327 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5328 gen_addr_add(ctx, t0, t0, 8);
5329 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5330 tcg_temp_free(t0);
5333 /* stfqu */
5334 GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2)
5336 int ra = rA(ctx->opcode);
5337 int rd = rD(ctx->opcode);
5338 TCGv t0, t1;
5339 gen_set_access_type(ctx, ACCESS_FLOAT);
5340 t0 = tcg_temp_new();
5341 gen_addr_imm_index(ctx, t0, 0);
5342 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5343 t1 = tcg_temp_new();
5344 gen_addr_add(ctx, t1, t0, 8);
5345 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5346 tcg_temp_free(t1);
5347 if (ra != 0)
5348 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5349 tcg_temp_free(t0);
5352 /* stfqux */
5353 GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2)
5355 int ra = rA(ctx->opcode);
5356 int rd = rD(ctx->opcode);
5357 TCGv t0, t1;
5358 gen_set_access_type(ctx, ACCESS_FLOAT);
5359 t0 = tcg_temp_new();
5360 gen_addr_reg_index(ctx, t0);
5361 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5362 t1 = tcg_temp_new();
5363 gen_addr_add(ctx, t1, t0, 8);
5364 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5365 tcg_temp_free(t1);
5366 if (ra != 0)
5367 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5368 tcg_temp_free(t0);
5371 /* stfqx */
5372 GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2)
5374 int rd = rD(ctx->opcode);
5375 TCGv t0;
5376 gen_set_access_type(ctx, ACCESS_FLOAT);
5377 t0 = tcg_temp_new();
5378 gen_addr_reg_index(ctx, t0);
5379 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5380 gen_addr_add(ctx, t0, t0, 8);
5381 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5382 tcg_temp_free(t0);
5385 /* BookE specific instructions */
5386 /* XXX: not implemented on 440 ? */
5387 GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI)
5389 /* XXX: TODO */
5390 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5393 /* XXX: not implemented on 440 ? */
5394 GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA)
5396 #if defined(CONFIG_USER_ONLY)
5397 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5398 #else
5399 TCGv t0;
5400 if (unlikely(!ctx->mem_idx)) {
5401 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5402 return;
5404 t0 = tcg_temp_new();
5405 gen_addr_reg_index(ctx, t0);
5406 gen_helper_tlbie(cpu_gpr[rB(ctx->opcode)]);
5407 tcg_temp_free(t0);
5408 #endif
5411 /* All 405 MAC instructions are translated here */
5412 static always_inline void gen_405_mulladd_insn (DisasContext *ctx,
5413 int opc2, int opc3,
5414 int ra, int rb, int rt, int Rc)
5416 TCGv t0, t1;
5418 t0 = tcg_temp_local_new();
5419 t1 = tcg_temp_local_new();
5421 switch (opc3 & 0x0D) {
5422 case 0x05:
5423 /* macchw - macchw. - macchwo - macchwo. */
5424 /* macchws - macchws. - macchwso - macchwso. */
5425 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5426 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5427 /* mulchw - mulchw. */
5428 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5429 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5430 tcg_gen_ext16s_tl(t1, t1);
5431 break;
5432 case 0x04:
5433 /* macchwu - macchwu. - macchwuo - macchwuo. */
5434 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5435 /* mulchwu - mulchwu. */
5436 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5437 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5438 tcg_gen_ext16u_tl(t1, t1);
5439 break;
5440 case 0x01:
5441 /* machhw - machhw. - machhwo - machhwo. */
5442 /* machhws - machhws. - machhwso - machhwso. */
5443 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5444 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5445 /* mulhhw - mulhhw. */
5446 tcg_gen_sari_tl(t0, cpu_gpr[ra], 16);
5447 tcg_gen_ext16s_tl(t0, t0);
5448 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5449 tcg_gen_ext16s_tl(t1, t1);
5450 break;
5451 case 0x00:
5452 /* machhwu - machhwu. - machhwuo - machhwuo. */
5453 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5454 /* mulhhwu - mulhhwu. */
5455 tcg_gen_shri_tl(t0, cpu_gpr[ra], 16);
5456 tcg_gen_ext16u_tl(t0, t0);
5457 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5458 tcg_gen_ext16u_tl(t1, t1);
5459 break;
5460 case 0x0D:
5461 /* maclhw - maclhw. - maclhwo - maclhwo. */
5462 /* maclhws - maclhws. - maclhwso - maclhwso. */
5463 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5464 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5465 /* mullhw - mullhw. */
5466 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5467 tcg_gen_ext16s_tl(t1, cpu_gpr[rb]);
5468 break;
5469 case 0x0C:
5470 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5471 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5472 /* mullhwu - mullhwu. */
5473 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5474 tcg_gen_ext16u_tl(t1, cpu_gpr[rb]);
5475 break;
5477 if (opc2 & 0x04) {
5478 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5479 tcg_gen_mul_tl(t1, t0, t1);
5480 if (opc2 & 0x02) {
5481 /* nmultiply-and-accumulate (0x0E) */
5482 tcg_gen_sub_tl(t0, cpu_gpr[rt], t1);
5483 } else {
5484 /* multiply-and-accumulate (0x0C) */
5485 tcg_gen_add_tl(t0, cpu_gpr[rt], t1);
5488 if (opc3 & 0x12) {
5489 /* Check overflow and/or saturate */
5490 int l1 = gen_new_label();
5492 if (opc3 & 0x10) {
5493 /* Start with XER OV disabled, the most likely case */
5494 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~(1 << XER_OV));
5496 if (opc3 & 0x01) {
5497 /* Signed */
5498 tcg_gen_xor_tl(t1, cpu_gpr[rt], t1);
5499 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1);
5500 tcg_gen_xor_tl(t1, cpu_gpr[rt], t0);
5501 tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1);
5502 if (opc3 & 0x02) {
5503 /* Saturate */
5504 tcg_gen_sari_tl(t0, cpu_gpr[rt], 31);
5505 tcg_gen_xori_tl(t0, t0, 0x7fffffff);
5507 } else {
5508 /* Unsigned */
5509 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
5510 if (opc3 & 0x02) {
5511 /* Saturate */
5512 tcg_gen_movi_tl(t0, UINT32_MAX);
5515 if (opc3 & 0x10) {
5516 /* Check overflow */
5517 tcg_gen_ori_tl(cpu_xer, cpu_xer, (1 << XER_OV) | (1 << XER_SO));
5519 gen_set_label(l1);
5520 tcg_gen_mov_tl(cpu_gpr[rt], t0);
5522 } else {
5523 tcg_gen_mul_tl(cpu_gpr[rt], t0, t1);
5525 tcg_temp_free(t0);
5526 tcg_temp_free(t1);
5527 if (unlikely(Rc) != 0) {
5528 /* Update Rc0 */
5529 gen_set_Rc0(ctx, cpu_gpr[rt]);
5533 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5534 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC) \
5536 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5537 rD(ctx->opcode), Rc(ctx->opcode)); \
5540 /* macchw - macchw. */
5541 GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
5542 /* macchwo - macchwo. */
5543 GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
5544 /* macchws - macchws. */
5545 GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
5546 /* macchwso - macchwso. */
5547 GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
5548 /* macchwsu - macchwsu. */
5549 GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
5550 /* macchwsuo - macchwsuo. */
5551 GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
5552 /* macchwu - macchwu. */
5553 GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
5554 /* macchwuo - macchwuo. */
5555 GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
5556 /* machhw - machhw. */
5557 GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
5558 /* machhwo - machhwo. */
5559 GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
5560 /* machhws - machhws. */
5561 GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
5562 /* machhwso - machhwso. */
5563 GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
5564 /* machhwsu - machhwsu. */
5565 GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
5566 /* machhwsuo - machhwsuo. */
5567 GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
5568 /* machhwu - machhwu. */
5569 GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
5570 /* machhwuo - machhwuo. */
5571 GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
5572 /* maclhw - maclhw. */
5573 GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
5574 /* maclhwo - maclhwo. */
5575 GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
5576 /* maclhws - maclhws. */
5577 GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
5578 /* maclhwso - maclhwso. */
5579 GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
5580 /* maclhwu - maclhwu. */
5581 GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
5582 /* maclhwuo - maclhwuo. */
5583 GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
5584 /* maclhwsu - maclhwsu. */
5585 GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
5586 /* maclhwsuo - maclhwsuo. */
5587 GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
5588 /* nmacchw - nmacchw. */
5589 GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
5590 /* nmacchwo - nmacchwo. */
5591 GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
5592 /* nmacchws - nmacchws. */
5593 GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
5594 /* nmacchwso - nmacchwso. */
5595 GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
5596 /* nmachhw - nmachhw. */
5597 GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
5598 /* nmachhwo - nmachhwo. */
5599 GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
5600 /* nmachhws - nmachhws. */
5601 GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
5602 /* nmachhwso - nmachhwso. */
5603 GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
5604 /* nmaclhw - nmaclhw. */
5605 GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
5606 /* nmaclhwo - nmaclhwo. */
5607 GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
5608 /* nmaclhws - nmaclhws. */
5609 GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
5610 /* nmaclhwso - nmaclhwso. */
5611 GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
5613 /* mulchw - mulchw. */
5614 GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
5615 /* mulchwu - mulchwu. */
5616 GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
5617 /* mulhhw - mulhhw. */
5618 GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
5619 /* mulhhwu - mulhhwu. */
5620 GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
5621 /* mullhw - mullhw. */
5622 GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
5623 /* mullhwu - mullhwu. */
5624 GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
5626 /* mfdcr */
5627 GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR)
5629 #if defined(CONFIG_USER_ONLY)
5630 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5631 #else
5632 TCGv dcrn;
5633 if (unlikely(!ctx->mem_idx)) {
5634 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5635 return;
5637 /* NIP cannot be restored if the memory exception comes from an helper */
5638 gen_update_nip(ctx, ctx->nip - 4);
5639 dcrn = tcg_const_tl(SPR(ctx->opcode));
5640 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], dcrn);
5641 tcg_temp_free(dcrn);
5642 #endif
5645 /* mtdcr */
5646 GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR)
5648 #if defined(CONFIG_USER_ONLY)
5649 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5650 #else
5651 TCGv dcrn;
5652 if (unlikely(!ctx->mem_idx)) {
5653 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5654 return;
5656 /* NIP cannot be restored if the memory exception comes from an helper */
5657 gen_update_nip(ctx, ctx->nip - 4);
5658 dcrn = tcg_const_tl(SPR(ctx->opcode));
5659 gen_helper_store_dcr(dcrn, cpu_gpr[rS(ctx->opcode)]);
5660 tcg_temp_free(dcrn);
5661 #endif
5664 /* mfdcrx */
5665 /* XXX: not implemented on 440 ? */
5666 GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX)
5668 #if defined(CONFIG_USER_ONLY)
5669 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5670 #else
5671 if (unlikely(!ctx->mem_idx)) {
5672 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5673 return;
5675 /* NIP cannot be restored if the memory exception comes from an helper */
5676 gen_update_nip(ctx, ctx->nip - 4);
5677 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5678 /* Note: Rc update flag set leads to undefined state of Rc0 */
5679 #endif
5682 /* mtdcrx */
5683 /* XXX: not implemented on 440 ? */
5684 GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX)
5686 #if defined(CONFIG_USER_ONLY)
5687 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5688 #else
5689 if (unlikely(!ctx->mem_idx)) {
5690 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5691 return;
5693 /* NIP cannot be restored if the memory exception comes from an helper */
5694 gen_update_nip(ctx, ctx->nip - 4);
5695 gen_helper_store_dcr(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
5696 /* Note: Rc update flag set leads to undefined state of Rc0 */
5697 #endif
5700 /* mfdcrux (PPC 460) : user-mode access to DCR */
5701 GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX)
5703 /* NIP cannot be restored if the memory exception comes from an helper */
5704 gen_update_nip(ctx, ctx->nip - 4);
5705 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5706 /* Note: Rc update flag set leads to undefined state of Rc0 */
5709 /* mtdcrux (PPC 460) : user-mode access to DCR */
5710 GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX)
5712 /* NIP cannot be restored if the memory exception comes from an helper */
5713 gen_update_nip(ctx, ctx->nip - 4);
5714 gen_helper_store_dcr(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
5715 /* Note: Rc update flag set leads to undefined state of Rc0 */
5718 /* dccci */
5719 GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON)
5721 #if defined(CONFIG_USER_ONLY)
5722 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5723 #else
5724 if (unlikely(!ctx->mem_idx)) {
5725 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5726 return;
5728 /* interpreted as no-op */
5729 #endif
5732 /* dcread */
5733 GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON)
5735 #if defined(CONFIG_USER_ONLY)
5736 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5737 #else
5738 TCGv EA, val;
5739 if (unlikely(!ctx->mem_idx)) {
5740 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5741 return;
5743 gen_set_access_type(ctx, ACCESS_CACHE);
5744 EA = tcg_temp_new();
5745 gen_addr_reg_index(ctx, EA);
5746 val = tcg_temp_new();
5747 gen_qemu_ld32u(ctx, val, EA);
5748 tcg_temp_free(val);
5749 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA);
5750 tcg_temp_free(EA);
5751 #endif
5754 /* icbt */
5755 GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT)
5757 /* interpreted as no-op */
5758 /* XXX: specification say this is treated as a load by the MMU
5759 * but does not generate any exception
5763 /* iccci */
5764 GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON)
5766 #if defined(CONFIG_USER_ONLY)
5767 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5768 #else
5769 if (unlikely(!ctx->mem_idx)) {
5770 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5771 return;
5773 /* interpreted as no-op */
5774 #endif
5777 /* icread */
5778 GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON)
5780 #if defined(CONFIG_USER_ONLY)
5781 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5782 #else
5783 if (unlikely(!ctx->mem_idx)) {
5784 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5785 return;
5787 /* interpreted as no-op */
5788 #endif
5791 /* rfci (mem_idx only) */
5792 GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP)
5794 #if defined(CONFIG_USER_ONLY)
5795 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5796 #else
5797 if (unlikely(!ctx->mem_idx)) {
5798 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5799 return;
5801 /* Restore CPU state */
5802 gen_helper_40x_rfci();
5803 gen_sync_exception(ctx);
5804 #endif
5807 GEN_HANDLER(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE)
5809 #if defined(CONFIG_USER_ONLY)
5810 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5811 #else
5812 if (unlikely(!ctx->mem_idx)) {
5813 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5814 return;
5816 /* Restore CPU state */
5817 gen_helper_rfci();
5818 gen_sync_exception(ctx);
5819 #endif
5822 /* BookE specific */
5823 /* XXX: not implemented on 440 ? */
5824 GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI)
5826 #if defined(CONFIG_USER_ONLY)
5827 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5828 #else
5829 if (unlikely(!ctx->mem_idx)) {
5830 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5831 return;
5833 /* Restore CPU state */
5834 gen_helper_rfdi();
5835 gen_sync_exception(ctx);
5836 #endif
5839 /* XXX: not implemented on 440 ? */
5840 GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI)
5842 #if defined(CONFIG_USER_ONLY)
5843 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5844 #else
5845 if (unlikely(!ctx->mem_idx)) {
5846 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5847 return;
5849 /* Restore CPU state */
5850 gen_helper_rfmci();
5851 gen_sync_exception(ctx);
5852 #endif
5855 /* TLB management - PowerPC 405 implementation */
5856 /* tlbre */
5857 GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB)
5859 #if defined(CONFIG_USER_ONLY)
5860 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5861 #else
5862 if (unlikely(!ctx->mem_idx)) {
5863 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5864 return;
5866 switch (rB(ctx->opcode)) {
5867 case 0:
5868 gen_helper_4xx_tlbre_hi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5869 break;
5870 case 1:
5871 gen_helper_4xx_tlbre_lo(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5872 break;
5873 default:
5874 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5875 break;
5877 #endif
5880 /* tlbsx - tlbsx. */
5881 GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB)
5883 #if defined(CONFIG_USER_ONLY)
5884 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5885 #else
5886 TCGv t0;
5887 if (unlikely(!ctx->mem_idx)) {
5888 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5889 return;
5891 t0 = tcg_temp_new();
5892 gen_addr_reg_index(ctx, t0);
5893 gen_helper_4xx_tlbsx(cpu_gpr[rD(ctx->opcode)], t0);
5894 tcg_temp_free(t0);
5895 if (Rc(ctx->opcode)) {
5896 int l1 = gen_new_label();
5897 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
5898 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
5899 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
5900 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5901 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5902 gen_set_label(l1);
5904 #endif
5907 /* tlbwe */
5908 GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB)
5910 #if defined(CONFIG_USER_ONLY)
5911 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5912 #else
5913 if (unlikely(!ctx->mem_idx)) {
5914 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5915 return;
5917 switch (rB(ctx->opcode)) {
5918 case 0:
5919 gen_helper_4xx_tlbwe_hi(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
5920 break;
5921 case 1:
5922 gen_helper_4xx_tlbwe_lo(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
5923 break;
5924 default:
5925 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5926 break;
5928 #endif
5931 /* TLB management - PowerPC 440 implementation */
5932 /* tlbre */
5933 GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE)
5935 #if defined(CONFIG_USER_ONLY)
5936 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5937 #else
5938 if (unlikely(!ctx->mem_idx)) {
5939 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5940 return;
5942 switch (rB(ctx->opcode)) {
5943 case 0:
5944 case 1:
5945 case 2:
5947 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
5948 gen_helper_440_tlbwe(t0, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5949 tcg_temp_free_i32(t0);
5951 break;
5952 default:
5953 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5954 break;
5956 #endif
5959 /* tlbsx - tlbsx. */
5960 GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE)
5962 #if defined(CONFIG_USER_ONLY)
5963 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5964 #else
5965 TCGv t0;
5966 if (unlikely(!ctx->mem_idx)) {
5967 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5968 return;
5970 t0 = tcg_temp_new();
5971 gen_addr_reg_index(ctx, t0);
5972 gen_helper_440_tlbsx(cpu_gpr[rD(ctx->opcode)], t0);
5973 tcg_temp_free(t0);
5974 if (Rc(ctx->opcode)) {
5975 int l1 = gen_new_label();
5976 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_xer);
5977 tcg_gen_shri_i32(cpu_crf[0], cpu_crf[0], XER_SO);
5978 tcg_gen_andi_i32(cpu_crf[0], cpu_crf[0], 1);
5979 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5980 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5981 gen_set_label(l1);
5983 #endif
5986 /* tlbwe */
5987 GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE)
5989 #if defined(CONFIG_USER_ONLY)
5990 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5991 #else
5992 if (unlikely(!ctx->mem_idx)) {
5993 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5994 return;
5996 switch (rB(ctx->opcode)) {
5997 case 0:
5998 case 1:
5999 case 2:
6001 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
6002 gen_helper_440_tlbwe(t0, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
6003 tcg_temp_free_i32(t0);
6005 break;
6006 default:
6007 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6008 break;
6010 #endif
6013 /* wrtee */
6014 GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE)
6016 #if defined(CONFIG_USER_ONLY)
6017 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6018 #else
6019 TCGv t0;
6020 if (unlikely(!ctx->mem_idx)) {
6021 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6022 return;
6024 t0 = tcg_temp_new();
6025 tcg_gen_andi_tl(t0, cpu_gpr[rD(ctx->opcode)], (1 << MSR_EE));
6026 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6027 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
6028 tcg_temp_free(t0);
6029 /* Stop translation to have a chance to raise an exception
6030 * if we just set msr_ee to 1
6032 gen_stop_exception(ctx);
6033 #endif
6036 /* wrteei */
6037 GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000EFC01, PPC_WRTEE)
6039 #if defined(CONFIG_USER_ONLY)
6040 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6041 #else
6042 if (unlikely(!ctx->mem_idx)) {
6043 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6044 return;
6046 if (ctx->opcode & 0x00010000) {
6047 tcg_gen_ori_tl(cpu_msr, cpu_msr, (1 << MSR_EE));
6048 /* Stop translation to have a chance to raise an exception */
6049 gen_stop_exception(ctx);
6050 } else {
6051 tcg_gen_andi_tl(cpu_msr, cpu_msr, (1 << MSR_EE));
6053 #endif
6056 /* PowerPC 440 specific instructions */
6057 /* dlmzb */
6058 GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC)
6060 TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode));
6061 gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)],
6062 cpu_gpr[rB(ctx->opcode)], t0);
6063 tcg_temp_free_i32(t0);
6066 /* mbar replaces eieio on 440 */
6067 GEN_HANDLER(mbar, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE)
6069 /* interpreted as no-op */
6072 /* msync replaces sync on 440 */
6073 GEN_HANDLER(msync, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE)
6075 /* interpreted as no-op */
6078 /* icbt */
6079 GEN_HANDLER2(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001, PPC_BOOKE)
6081 /* interpreted as no-op */
6082 /* XXX: specification say this is treated as a load by the MMU
6083 * but does not generate any exception
6087 /*** Altivec vector extension ***/
6088 /* Altivec registers moves */
6090 static always_inline TCGv_ptr gen_avr_ptr(int reg)
6092 TCGv_ptr r = tcg_temp_new_ptr();
6093 tcg_gen_addi_ptr(r, cpu_env, offsetof(CPUPPCState, avr[reg]));
6094 return r;
6097 #define GEN_VR_LDX(name, opc2, opc3) \
6098 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6100 TCGv EA; \
6101 if (unlikely(!ctx->altivec_enabled)) { \
6102 gen_exception(ctx, POWERPC_EXCP_VPU); \
6103 return; \
6105 gen_set_access_type(ctx, ACCESS_INT); \
6106 EA = tcg_temp_new(); \
6107 gen_addr_reg_index(ctx, EA); \
6108 tcg_gen_andi_tl(EA, EA, ~0xf); \
6109 if (ctx->le_mode) { \
6110 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6111 tcg_gen_addi_tl(EA, EA, 8); \
6112 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6113 } else { \
6114 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6115 tcg_gen_addi_tl(EA, EA, 8); \
6116 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6118 tcg_temp_free(EA); \
6121 #define GEN_VR_STX(name, opc2, opc3) \
6122 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC) \
6124 TCGv EA; \
6125 if (unlikely(!ctx->altivec_enabled)) { \
6126 gen_exception(ctx, POWERPC_EXCP_VPU); \
6127 return; \
6129 gen_set_access_type(ctx, ACCESS_INT); \
6130 EA = tcg_temp_new(); \
6131 gen_addr_reg_index(ctx, EA); \
6132 tcg_gen_andi_tl(EA, EA, ~0xf); \
6133 if (ctx->le_mode) { \
6134 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6135 tcg_gen_addi_tl(EA, EA, 8); \
6136 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6137 } else { \
6138 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
6139 tcg_gen_addi_tl(EA, EA, 8); \
6140 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
6142 tcg_temp_free(EA); \
6145 GEN_VR_LDX(lvx, 0x07, 0x03);
6146 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6147 GEN_VR_LDX(lvxl, 0x07, 0x0B);
6149 GEN_VR_STX(svx, 0x07, 0x07);
6150 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6151 GEN_VR_STX(svxl, 0x07, 0x0F);
6153 GEN_HANDLER(lvsl, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC)
6155 TCGv_ptr rd;
6156 TCGv EA;
6157 if (unlikely(!ctx->altivec_enabled)) {
6158 gen_exception(ctx, POWERPC_EXCP_VPU);
6159 return;
6161 EA = tcg_temp_new();
6162 gen_addr_reg_index(ctx, EA);
6163 rd = gen_avr_ptr(rD(ctx->opcode));
6164 gen_helper_lvsl(rd, EA);
6165 tcg_temp_free(EA);
6166 tcg_temp_free_ptr(rd);
6169 GEN_HANDLER(lvsr, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC)
6171 TCGv_ptr rd;
6172 TCGv EA;
6173 if (unlikely(!ctx->altivec_enabled)) {
6174 gen_exception(ctx, POWERPC_EXCP_VPU);
6175 return;
6177 EA = tcg_temp_new();
6178 gen_addr_reg_index(ctx, EA);
6179 rd = gen_avr_ptr(rD(ctx->opcode));
6180 gen_helper_lvsr(rd, EA);
6181 tcg_temp_free(EA);
6182 tcg_temp_free_ptr(rd);
6185 /* Logical operations */
6186 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
6187 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6189 if (unlikely(!ctx->altivec_enabled)) { \
6190 gen_exception(ctx, POWERPC_EXCP_VPU); \
6191 return; \
6193 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6194 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6197 GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16);
6198 GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17);
6199 GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18);
6200 GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19);
6201 GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20);
6203 #define GEN_VXFORM(name, opc2, opc3) \
6204 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6206 TCGv_ptr ra, rb, rd; \
6207 if (unlikely(!ctx->altivec_enabled)) { \
6208 gen_exception(ctx, POWERPC_EXCP_VPU); \
6209 return; \
6211 ra = gen_avr_ptr(rA(ctx->opcode)); \
6212 rb = gen_avr_ptr(rB(ctx->opcode)); \
6213 rd = gen_avr_ptr(rD(ctx->opcode)); \
6214 gen_helper_##name (rd, ra, rb); \
6215 tcg_temp_free_ptr(ra); \
6216 tcg_temp_free_ptr(rb); \
6217 tcg_temp_free_ptr(rd); \
6220 GEN_VXFORM(vaddubm, 0, 0);
6221 GEN_VXFORM(vadduhm, 0, 1);
6222 GEN_VXFORM(vadduwm, 0, 2);
6223 GEN_VXFORM(vsububm, 0, 16);
6224 GEN_VXFORM(vsubuhm, 0, 17);
6225 GEN_VXFORM(vsubuwm, 0, 18);
6226 GEN_VXFORM(vmaxub, 1, 0);
6227 GEN_VXFORM(vmaxuh, 1, 1);
6228 GEN_VXFORM(vmaxuw, 1, 2);
6229 GEN_VXFORM(vmaxsb, 1, 4);
6230 GEN_VXFORM(vmaxsh, 1, 5);
6231 GEN_VXFORM(vmaxsw, 1, 6);
6232 GEN_VXFORM(vminub, 1, 8);
6233 GEN_VXFORM(vminuh, 1, 9);
6234 GEN_VXFORM(vminuw, 1, 10);
6235 GEN_VXFORM(vminsb, 1, 12);
6236 GEN_VXFORM(vminsh, 1, 13);
6237 GEN_VXFORM(vminsw, 1, 14);
6238 GEN_VXFORM(vavgub, 1, 16);
6239 GEN_VXFORM(vavguh, 1, 17);
6240 GEN_VXFORM(vavguw, 1, 18);
6241 GEN_VXFORM(vavgsb, 1, 20);
6242 GEN_VXFORM(vavgsh, 1, 21);
6243 GEN_VXFORM(vavgsw, 1, 22);
6244 GEN_VXFORM(vmrghb, 6, 0);
6245 GEN_VXFORM(vmrghh, 6, 1);
6246 GEN_VXFORM(vmrghw, 6, 2);
6247 GEN_VXFORM(vmrglb, 6, 4);
6248 GEN_VXFORM(vmrglh, 6, 5);
6249 GEN_VXFORM(vmrglw, 6, 6);
6250 GEN_VXFORM(vmuloub, 4, 0);
6251 GEN_VXFORM(vmulouh, 4, 1);
6252 GEN_VXFORM(vmulosb, 4, 4);
6253 GEN_VXFORM(vmulosh, 4, 5);
6254 GEN_VXFORM(vmuleub, 4, 8);
6255 GEN_VXFORM(vmuleuh, 4, 9);
6256 GEN_VXFORM(vmulesb, 4, 12);
6257 GEN_VXFORM(vmulesh, 4, 13);
6258 GEN_VXFORM(vslb, 2, 4);
6259 GEN_VXFORM(vslh, 2, 5);
6260 GEN_VXFORM(vslw, 2, 6);
6261 GEN_VXFORM(vsrb, 2, 8);
6262 GEN_VXFORM(vsrh, 2, 9);
6263 GEN_VXFORM(vsrw, 2, 10);
6264 GEN_VXFORM(vsrab, 2, 12);
6265 GEN_VXFORM(vsrah, 2, 13);
6266 GEN_VXFORM(vsraw, 2, 14);
6267 GEN_VXFORM(vslo, 6, 16);
6268 GEN_VXFORM(vsro, 6, 17);
6269 GEN_VXFORM(vaddcuw, 0, 6);
6270 GEN_VXFORM(vsubcuw, 0, 22);
6271 GEN_VXFORM(vrlb, 2, 0);
6272 GEN_VXFORM(vrlh, 2, 1);
6273 GEN_VXFORM(vrlw, 2, 2);
6275 #define GEN_VXFORM_SIMM(name, opc2, opc3) \
6276 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC) \
6278 TCGv_ptr rd; \
6279 TCGv_i32 simm; \
6280 if (unlikely(!ctx->altivec_enabled)) { \
6281 gen_exception(ctx, POWERPC_EXCP_VPU); \
6282 return; \
6284 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6285 rd = gen_avr_ptr(rD(ctx->opcode)); \
6286 gen_helper_##name (rd, simm); \
6287 tcg_temp_free_i32(simm); \
6288 tcg_temp_free_ptr(rd); \
6291 GEN_HANDLER(vsldoi, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC)
6293 TCGv_ptr ra, rb, rd;
6294 TCGv sh;
6295 if (unlikely(!ctx->altivec_enabled)) {
6296 gen_exception(ctx, POWERPC_EXCP_VPU);
6297 return;
6299 ra = gen_avr_ptr(rA(ctx->opcode));
6300 rb = gen_avr_ptr(rB(ctx->opcode));
6301 rd = gen_avr_ptr(rD(ctx->opcode));
6302 sh = tcg_const_i32(VSH(ctx->opcode));
6303 gen_helper_vsldoi (rd, ra, rb, sh);
6304 tcg_temp_free_ptr(ra);
6305 tcg_temp_free_ptr(rb);
6306 tcg_temp_free_ptr(rd);
6307 tcg_temp_free(sh);
6310 /*** SPE extension ***/
6311 /* Register moves */
6313 static always_inline void gen_load_gpr64(TCGv_i64 t, int reg) {
6314 #if defined(TARGET_PPC64)
6315 tcg_gen_mov_i64(t, cpu_gpr[reg]);
6316 #else
6317 tcg_gen_concat_i32_i64(t, cpu_gpr[reg], cpu_gprh[reg]);
6318 #endif
6321 static always_inline void gen_store_gpr64(int reg, TCGv_i64 t) {
6322 #if defined(TARGET_PPC64)
6323 tcg_gen_mov_i64(cpu_gpr[reg], t);
6324 #else
6325 TCGv_i64 tmp = tcg_temp_new_i64();
6326 tcg_gen_trunc_i64_i32(cpu_gpr[reg], t);
6327 tcg_gen_shri_i64(tmp, t, 32);
6328 tcg_gen_trunc_i64_i32(cpu_gprh[reg], tmp);
6329 tcg_temp_free_i64(tmp);
6330 #endif
6333 #define GEN_SPE(name0, name1, opc2, opc3, inval, type) \
6334 GEN_HANDLER(name0##_##name1, 0x04, opc2, opc3, inval, type) \
6336 if (Rc(ctx->opcode)) \
6337 gen_##name1(ctx); \
6338 else \
6339 gen_##name0(ctx); \
6342 /* Handler for undefined SPE opcodes */
6343 static always_inline void gen_speundef (DisasContext *ctx)
6345 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6348 /* SPE logic */
6349 #if defined(TARGET_PPC64)
6350 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6351 static always_inline void gen_##name (DisasContext *ctx) \
6353 if (unlikely(!ctx->spe_enabled)) { \
6354 gen_exception(ctx, POWERPC_EXCP_APU); \
6355 return; \
6357 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6358 cpu_gpr[rB(ctx->opcode)]); \
6360 #else
6361 #define GEN_SPEOP_LOGIC2(name, tcg_op) \
6362 static always_inline void gen_##name (DisasContext *ctx) \
6364 if (unlikely(!ctx->spe_enabled)) { \
6365 gen_exception(ctx, POWERPC_EXCP_APU); \
6366 return; \
6368 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6369 cpu_gpr[rB(ctx->opcode)]); \
6370 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6371 cpu_gprh[rB(ctx->opcode)]); \
6373 #endif
6375 GEN_SPEOP_LOGIC2(evand, tcg_gen_and_tl);
6376 GEN_SPEOP_LOGIC2(evandc, tcg_gen_andc_tl);
6377 GEN_SPEOP_LOGIC2(evxor, tcg_gen_xor_tl);
6378 GEN_SPEOP_LOGIC2(evor, tcg_gen_or_tl);
6379 GEN_SPEOP_LOGIC2(evnor, tcg_gen_nor_tl);
6380 GEN_SPEOP_LOGIC2(eveqv, tcg_gen_eqv_tl);
6381 GEN_SPEOP_LOGIC2(evorc, tcg_gen_orc_tl);
6382 GEN_SPEOP_LOGIC2(evnand, tcg_gen_nand_tl);
6384 /* SPE logic immediate */
6385 #if defined(TARGET_PPC64)
6386 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6387 static always_inline void gen_##name (DisasContext *ctx) \
6389 if (unlikely(!ctx->spe_enabled)) { \
6390 gen_exception(ctx, POWERPC_EXCP_APU); \
6391 return; \
6393 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6394 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6395 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6396 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6397 tcg_opi(t0, t0, rB(ctx->opcode)); \
6398 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6399 tcg_gen_trunc_i64_i32(t1, t2); \
6400 tcg_temp_free_i64(t2); \
6401 tcg_opi(t1, t1, rB(ctx->opcode)); \
6402 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6403 tcg_temp_free_i32(t0); \
6404 tcg_temp_free_i32(t1); \
6406 #else
6407 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
6408 static always_inline void gen_##name (DisasContext *ctx) \
6410 if (unlikely(!ctx->spe_enabled)) { \
6411 gen_exception(ctx, POWERPC_EXCP_APU); \
6412 return; \
6414 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6415 rB(ctx->opcode)); \
6416 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6417 rB(ctx->opcode)); \
6419 #endif
6420 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi, tcg_gen_shli_i32);
6421 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu, tcg_gen_shri_i32);
6422 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis, tcg_gen_sari_i32);
6423 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi, tcg_gen_rotli_i32);
6425 /* SPE arithmetic */
6426 #if defined(TARGET_PPC64)
6427 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6428 static always_inline void gen_##name (DisasContext *ctx) \
6430 if (unlikely(!ctx->spe_enabled)) { \
6431 gen_exception(ctx, POWERPC_EXCP_APU); \
6432 return; \
6434 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6435 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6436 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6437 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6438 tcg_op(t0, t0); \
6439 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6440 tcg_gen_trunc_i64_i32(t1, t2); \
6441 tcg_temp_free_i64(t2); \
6442 tcg_op(t1, t1); \
6443 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6444 tcg_temp_free_i32(t0); \
6445 tcg_temp_free_i32(t1); \
6447 #else
6448 #define GEN_SPEOP_ARITH1(name, tcg_op) \
6449 static always_inline void gen_##name (DisasContext *ctx) \
6451 if (unlikely(!ctx->spe_enabled)) { \
6452 gen_exception(ctx, POWERPC_EXCP_APU); \
6453 return; \
6455 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6456 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6458 #endif
6460 static always_inline void gen_op_evabs (TCGv_i32 ret, TCGv_i32 arg1)
6462 int l1 = gen_new_label();
6463 int l2 = gen_new_label();
6465 tcg_gen_brcondi_i32(TCG_COND_GE, arg1, 0, l1);
6466 tcg_gen_neg_i32(ret, arg1);
6467 tcg_gen_br(l2);
6468 gen_set_label(l1);
6469 tcg_gen_mov_i32(ret, arg1);
6470 gen_set_label(l2);
6472 GEN_SPEOP_ARITH1(evabs, gen_op_evabs);
6473 GEN_SPEOP_ARITH1(evneg, tcg_gen_neg_i32);
6474 GEN_SPEOP_ARITH1(evextsb, tcg_gen_ext8s_i32);
6475 GEN_SPEOP_ARITH1(evextsh, tcg_gen_ext16s_i32);
6476 static always_inline void gen_op_evrndw (TCGv_i32 ret, TCGv_i32 arg1)
6478 tcg_gen_addi_i32(ret, arg1, 0x8000);
6479 tcg_gen_ext16u_i32(ret, ret);
6481 GEN_SPEOP_ARITH1(evrndw, gen_op_evrndw);
6482 GEN_SPEOP_ARITH1(evcntlsw, gen_helper_cntlsw32);
6483 GEN_SPEOP_ARITH1(evcntlzw, gen_helper_cntlzw32);
6485 #if defined(TARGET_PPC64)
6486 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6487 static always_inline void gen_##name (DisasContext *ctx) \
6489 if (unlikely(!ctx->spe_enabled)) { \
6490 gen_exception(ctx, POWERPC_EXCP_APU); \
6491 return; \
6493 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6494 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6495 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
6496 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
6497 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6498 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6499 tcg_op(t0, t0, t2); \
6500 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6501 tcg_gen_trunc_i64_i32(t1, t3); \
6502 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6503 tcg_gen_trunc_i64_i32(t2, t3); \
6504 tcg_temp_free_i64(t3); \
6505 tcg_op(t1, t1, t2); \
6506 tcg_temp_free_i32(t2); \
6507 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6508 tcg_temp_free_i32(t0); \
6509 tcg_temp_free_i32(t1); \
6511 #else
6512 #define GEN_SPEOP_ARITH2(name, tcg_op) \
6513 static always_inline void gen_##name (DisasContext *ctx) \
6515 if (unlikely(!ctx->spe_enabled)) { \
6516 gen_exception(ctx, POWERPC_EXCP_APU); \
6517 return; \
6519 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6520 cpu_gpr[rB(ctx->opcode)]); \
6521 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6522 cpu_gprh[rB(ctx->opcode)]); \
6524 #endif
6526 static always_inline void gen_op_evsrwu (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6528 TCGv_i32 t0;
6529 int l1, l2;
6531 l1 = gen_new_label();
6532 l2 = gen_new_label();
6533 t0 = tcg_temp_local_new_i32();
6534 /* No error here: 6 bits are used */
6535 tcg_gen_andi_i32(t0, arg2, 0x3F);
6536 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6537 tcg_gen_shr_i32(ret, arg1, t0);
6538 tcg_gen_br(l2);
6539 gen_set_label(l1);
6540 tcg_gen_movi_i32(ret, 0);
6541 tcg_gen_br(l2);
6542 tcg_temp_free_i32(t0);
6544 GEN_SPEOP_ARITH2(evsrwu, gen_op_evsrwu);
6545 static always_inline void gen_op_evsrws (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6547 TCGv_i32 t0;
6548 int l1, l2;
6550 l1 = gen_new_label();
6551 l2 = gen_new_label();
6552 t0 = tcg_temp_local_new_i32();
6553 /* No error here: 6 bits are used */
6554 tcg_gen_andi_i32(t0, arg2, 0x3F);
6555 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6556 tcg_gen_sar_i32(ret, arg1, t0);
6557 tcg_gen_br(l2);
6558 gen_set_label(l1);
6559 tcg_gen_movi_i32(ret, 0);
6560 tcg_gen_br(l2);
6561 tcg_temp_free_i32(t0);
6563 GEN_SPEOP_ARITH2(evsrws, gen_op_evsrws);
6564 static always_inline void gen_op_evslw (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6566 TCGv_i32 t0;
6567 int l1, l2;
6569 l1 = gen_new_label();
6570 l2 = gen_new_label();
6571 t0 = tcg_temp_local_new_i32();
6572 /* No error here: 6 bits are used */
6573 tcg_gen_andi_i32(t0, arg2, 0x3F);
6574 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
6575 tcg_gen_shl_i32(ret, arg1, t0);
6576 tcg_gen_br(l2);
6577 gen_set_label(l1);
6578 tcg_gen_movi_i32(ret, 0);
6579 tcg_gen_br(l2);
6580 tcg_temp_free_i32(t0);
6582 GEN_SPEOP_ARITH2(evslw, gen_op_evslw);
6583 static always_inline void gen_op_evrlw (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6585 TCGv_i32 t0 = tcg_temp_new_i32();
6586 tcg_gen_andi_i32(t0, arg2, 0x1F);
6587 tcg_gen_rotl_i32(ret, arg1, t0);
6588 tcg_temp_free_i32(t0);
6590 GEN_SPEOP_ARITH2(evrlw, gen_op_evrlw);
6591 static always_inline void gen_evmergehi (DisasContext *ctx)
6593 if (unlikely(!ctx->spe_enabled)) {
6594 gen_exception(ctx, POWERPC_EXCP_APU);
6595 return;
6597 #if defined(TARGET_PPC64)
6598 TCGv t0 = tcg_temp_new();
6599 TCGv t1 = tcg_temp_new();
6600 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
6601 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
6602 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6603 tcg_temp_free(t0);
6604 tcg_temp_free(t1);
6605 #else
6606 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6607 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6608 #endif
6610 GEN_SPEOP_ARITH2(evaddw, tcg_gen_add_i32);
6611 static always_inline void gen_op_evsubf (TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
6613 tcg_gen_sub_i32(ret, arg2, arg1);
6615 GEN_SPEOP_ARITH2(evsubfw, gen_op_evsubf);
6617 /* SPE arithmetic immediate */
6618 #if defined(TARGET_PPC64)
6619 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6620 static always_inline void gen_##name (DisasContext *ctx) \
6622 if (unlikely(!ctx->spe_enabled)) { \
6623 gen_exception(ctx, POWERPC_EXCP_APU); \
6624 return; \
6626 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6627 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6628 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6629 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
6630 tcg_op(t0, t0, rA(ctx->opcode)); \
6631 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6632 tcg_gen_trunc_i64_i32(t1, t2); \
6633 tcg_temp_free_i64(t2); \
6634 tcg_op(t1, t1, rA(ctx->opcode)); \
6635 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
6636 tcg_temp_free_i32(t0); \
6637 tcg_temp_free_i32(t1); \
6639 #else
6640 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
6641 static always_inline void gen_##name (DisasContext *ctx) \
6643 if (unlikely(!ctx->spe_enabled)) { \
6644 gen_exception(ctx, POWERPC_EXCP_APU); \
6645 return; \
6647 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
6648 rA(ctx->opcode)); \
6649 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
6650 rA(ctx->opcode)); \
6652 #endif
6653 GEN_SPEOP_ARITH_IMM2(evaddiw, tcg_gen_addi_i32);
6654 GEN_SPEOP_ARITH_IMM2(evsubifw, tcg_gen_subi_i32);
6656 /* SPE comparison */
6657 #if defined(TARGET_PPC64)
6658 #define GEN_SPEOP_COMP(name, tcg_cond) \
6659 static always_inline void gen_##name (DisasContext *ctx) \
6661 if (unlikely(!ctx->spe_enabled)) { \
6662 gen_exception(ctx, POWERPC_EXCP_APU); \
6663 return; \
6665 int l1 = gen_new_label(); \
6666 int l2 = gen_new_label(); \
6667 int l3 = gen_new_label(); \
6668 int l4 = gen_new_label(); \
6669 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6670 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6671 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
6672 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6673 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
6674 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
6675 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
6676 tcg_gen_br(l2); \
6677 gen_set_label(l1); \
6678 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6679 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6680 gen_set_label(l2); \
6681 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6682 tcg_gen_trunc_i64_i32(t0, t2); \
6683 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
6684 tcg_gen_trunc_i64_i32(t1, t2); \
6685 tcg_temp_free_i64(t2); \
6686 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
6687 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6688 ~(CRF_CH | CRF_CH_AND_CL)); \
6689 tcg_gen_br(l4); \
6690 gen_set_label(l3); \
6691 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6692 CRF_CH | CRF_CH_OR_CL); \
6693 gen_set_label(l4); \
6694 tcg_temp_free_i32(t0); \
6695 tcg_temp_free_i32(t1); \
6697 #else
6698 #define GEN_SPEOP_COMP(name, tcg_cond) \
6699 static always_inline void gen_##name (DisasContext *ctx) \
6701 if (unlikely(!ctx->spe_enabled)) { \
6702 gen_exception(ctx, POWERPC_EXCP_APU); \
6703 return; \
6705 int l1 = gen_new_label(); \
6706 int l2 = gen_new_label(); \
6707 int l3 = gen_new_label(); \
6708 int l4 = gen_new_label(); \
6710 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
6711 cpu_gpr[rB(ctx->opcode)], l1); \
6712 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
6713 tcg_gen_br(l2); \
6714 gen_set_label(l1); \
6715 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
6716 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
6717 gen_set_label(l2); \
6718 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
6719 cpu_gprh[rB(ctx->opcode)], l3); \
6720 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6721 ~(CRF_CH | CRF_CH_AND_CL)); \
6722 tcg_gen_br(l4); \
6723 gen_set_label(l3); \
6724 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
6725 CRF_CH | CRF_CH_OR_CL); \
6726 gen_set_label(l4); \
6728 #endif
6729 GEN_SPEOP_COMP(evcmpgtu, TCG_COND_GTU);
6730 GEN_SPEOP_COMP(evcmpgts, TCG_COND_GT);
6731 GEN_SPEOP_COMP(evcmpltu, TCG_COND_LTU);
6732 GEN_SPEOP_COMP(evcmplts, TCG_COND_LT);
6733 GEN_SPEOP_COMP(evcmpeq, TCG_COND_EQ);
6735 /* SPE misc */
6736 static always_inline void gen_brinc (DisasContext *ctx)
6738 /* Note: brinc is usable even if SPE is disabled */
6739 gen_helper_brinc(cpu_gpr[rD(ctx->opcode)],
6740 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6742 static always_inline void gen_evmergelo (DisasContext *ctx)
6744 if (unlikely(!ctx->spe_enabled)) {
6745 gen_exception(ctx, POWERPC_EXCP_APU);
6746 return;
6748 #if defined(TARGET_PPC64)
6749 TCGv t0 = tcg_temp_new();
6750 TCGv t1 = tcg_temp_new();
6751 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL);
6752 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
6753 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6754 tcg_temp_free(t0);
6755 tcg_temp_free(t1);
6756 #else
6757 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6758 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6759 #endif
6761 static always_inline void gen_evmergehilo (DisasContext *ctx)
6763 if (unlikely(!ctx->spe_enabled)) {
6764 gen_exception(ctx, POWERPC_EXCP_APU);
6765 return;
6767 #if defined(TARGET_PPC64)
6768 TCGv t0 = tcg_temp_new();
6769 TCGv t1 = tcg_temp_new();
6770 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFLL);
6771 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
6772 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6773 tcg_temp_free(t0);
6774 tcg_temp_free(t1);
6775 #else
6776 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6777 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6778 #endif
6780 static always_inline void gen_evmergelohi (DisasContext *ctx)
6782 if (unlikely(!ctx->spe_enabled)) {
6783 gen_exception(ctx, POWERPC_EXCP_APU);
6784 return;
6786 #if defined(TARGET_PPC64)
6787 TCGv t0 = tcg_temp_new();
6788 TCGv t1 = tcg_temp_new();
6789 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
6790 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
6791 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
6792 tcg_temp_free(t0);
6793 tcg_temp_free(t1);
6794 #else
6795 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6796 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6797 #endif
6799 static always_inline void gen_evsplati (DisasContext *ctx)
6801 uint64_t imm = ((int32_t)(rA(ctx->opcode) << 11)) >> 27;
6803 #if defined(TARGET_PPC64)
6804 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
6805 #else
6806 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
6807 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
6808 #endif
6810 static always_inline void gen_evsplatfi (DisasContext *ctx)
6812 uint64_t imm = rA(ctx->opcode) << 11;
6814 #if defined(TARGET_PPC64)
6815 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
6816 #else
6817 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
6818 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
6819 #endif
6822 static always_inline void gen_evsel (DisasContext *ctx)
6824 int l1 = gen_new_label();
6825 int l2 = gen_new_label();
6826 int l3 = gen_new_label();
6827 int l4 = gen_new_label();
6828 TCGv_i32 t0 = tcg_temp_local_new_i32();
6829 #if defined(TARGET_PPC64)
6830 TCGv t1 = tcg_temp_local_new();
6831 TCGv t2 = tcg_temp_local_new();
6832 #endif
6833 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 3);
6834 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
6835 #if defined(TARGET_PPC64)
6836 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF00000000ULL);
6837 #else
6838 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6839 #endif
6840 tcg_gen_br(l2);
6841 gen_set_label(l1);
6842 #if defined(TARGET_PPC64)
6843 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0xFFFFFFFF00000000ULL);
6844 #else
6845 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
6846 #endif
6847 gen_set_label(l2);
6848 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 2);
6849 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l3);
6850 #if defined(TARGET_PPC64)
6851 tcg_gen_andi_tl(t2, cpu_gpr[rA(ctx->opcode)], 0x00000000FFFFFFFFULL);
6852 #else
6853 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6854 #endif
6855 tcg_gen_br(l4);
6856 gen_set_label(l3);
6857 #if defined(TARGET_PPC64)
6858 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x00000000FFFFFFFFULL);
6859 #else
6860 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6861 #endif
6862 gen_set_label(l4);
6863 tcg_temp_free_i32(t0);
6864 #if defined(TARGET_PPC64)
6865 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t1, t2);
6866 tcg_temp_free(t1);
6867 tcg_temp_free(t2);
6868 #endif
6870 GEN_HANDLER2(evsel0, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE)
6872 gen_evsel(ctx);
6874 GEN_HANDLER2(evsel1, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE)
6876 gen_evsel(ctx);
6878 GEN_HANDLER2(evsel2, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE)
6880 gen_evsel(ctx);
6882 GEN_HANDLER2(evsel3, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE)
6884 gen_evsel(ctx);
6887 GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, PPC_SPE); ////
6888 GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, PPC_SPE);
6889 GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, PPC_SPE); ////
6890 GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, PPC_SPE);
6891 GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, PPC_SPE); ////
6892 GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, PPC_SPE); ////
6893 GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, PPC_SPE); ////
6894 GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x00000000, PPC_SPE); //
6895 GEN_SPE(speundef, evand, 0x08, 0x08, 0x00000000, PPC_SPE); ////
6896 GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, PPC_SPE); ////
6897 GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, PPC_SPE); ////
6898 GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, PPC_SPE); ////
6899 GEN_SPE(speundef, evorc, 0x0D, 0x08, 0x00000000, PPC_SPE); ////
6900 GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, PPC_SPE); ////
6901 GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, PPC_SPE); ////
6902 GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, PPC_SPE);
6903 GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, PPC_SPE); ////
6904 GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, PPC_SPE);
6905 GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, PPC_SPE); //
6906 GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, PPC_SPE);
6907 GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, PPC_SPE); ////
6908 GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, PPC_SPE); ////
6909 GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, PPC_SPE); ////
6910 GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, PPC_SPE); ////
6911 GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, PPC_SPE); ////
6913 /* SPE load and stores */
6914 static always_inline void gen_addr_spe_imm_index (DisasContext *ctx, TCGv EA, int sh)
6916 target_ulong uimm = rB(ctx->opcode);
6918 if (rA(ctx->opcode) == 0) {
6919 tcg_gen_movi_tl(EA, uimm << sh);
6920 } else {
6921 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], uimm << sh);
6922 #if defined(TARGET_PPC64)
6923 if (!ctx->sf_mode) {
6924 tcg_gen_ext32u_tl(EA, EA);
6926 #endif
6930 static always_inline void gen_op_evldd(DisasContext *ctx, TCGv addr)
6932 #if defined(TARGET_PPC64)
6933 gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6934 #else
6935 TCGv_i64 t0 = tcg_temp_new_i64();
6936 gen_qemu_ld64(ctx, t0, addr);
6937 tcg_gen_trunc_i64_i32(cpu_gpr[rD(ctx->opcode)], t0);
6938 tcg_gen_shri_i64(t0, t0, 32);
6939 tcg_gen_trunc_i64_i32(cpu_gprh[rD(ctx->opcode)], t0);
6940 tcg_temp_free_i64(t0);
6941 #endif
6944 static always_inline void gen_op_evldw(DisasContext *ctx, TCGv addr)
6946 #if defined(TARGET_PPC64)
6947 TCGv t0 = tcg_temp_new();
6948 gen_qemu_ld32u(ctx, t0, addr);
6949 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
6950 gen_addr_add(ctx, addr, addr, 4);
6951 gen_qemu_ld32u(ctx, t0, addr);
6952 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6953 tcg_temp_free(t0);
6954 #else
6955 gen_qemu_ld32u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
6956 gen_addr_add(ctx, addr, addr, 4);
6957 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6958 #endif
6961 static always_inline void gen_op_evldh(DisasContext *ctx, TCGv addr)
6963 TCGv t0 = tcg_temp_new();
6964 #if defined(TARGET_PPC64)
6965 gen_qemu_ld16u(ctx, t0, addr);
6966 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
6967 gen_addr_add(ctx, addr, addr, 2);
6968 gen_qemu_ld16u(ctx, t0, addr);
6969 tcg_gen_shli_tl(t0, t0, 32);
6970 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6971 gen_addr_add(ctx, addr, addr, 2);
6972 gen_qemu_ld16u(ctx, t0, addr);
6973 tcg_gen_shli_tl(t0, t0, 16);
6974 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6975 gen_addr_add(ctx, addr, addr, 2);
6976 gen_qemu_ld16u(ctx, t0, addr);
6977 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6978 #else
6979 gen_qemu_ld16u(ctx, t0, addr);
6980 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6981 gen_addr_add(ctx, addr, addr, 2);
6982 gen_qemu_ld16u(ctx, t0, addr);
6983 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
6984 gen_addr_add(ctx, addr, addr, 2);
6985 gen_qemu_ld16u(ctx, t0, addr);
6986 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
6987 gen_addr_add(ctx, addr, addr, 2);
6988 gen_qemu_ld16u(ctx, t0, addr);
6989 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
6990 #endif
6991 tcg_temp_free(t0);
6994 static always_inline void gen_op_evlhhesplat(DisasContext *ctx, TCGv addr)
6996 TCGv t0 = tcg_temp_new();
6997 gen_qemu_ld16u(ctx, t0, addr);
6998 #if defined(TARGET_PPC64)
6999 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
7000 tcg_gen_shli_tl(t0, t0, 16);
7001 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7002 #else
7003 tcg_gen_shli_tl(t0, t0, 16);
7004 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7005 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7006 #endif
7007 tcg_temp_free(t0);
7010 static always_inline void gen_op_evlhhousplat(DisasContext *ctx, TCGv addr)
7012 TCGv t0 = tcg_temp_new();
7013 gen_qemu_ld16u(ctx, t0, addr);
7014 #if defined(TARGET_PPC64)
7015 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7016 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7017 #else
7018 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7019 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7020 #endif
7021 tcg_temp_free(t0);
7024 static always_inline void gen_op_evlhhossplat(DisasContext *ctx, TCGv addr)
7026 TCGv t0 = tcg_temp_new();
7027 gen_qemu_ld16s(ctx, t0, addr);
7028 #if defined(TARGET_PPC64)
7029 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7030 tcg_gen_ext32u_tl(t0, t0);
7031 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7032 #else
7033 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7034 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7035 #endif
7036 tcg_temp_free(t0);
7039 static always_inline void gen_op_evlwhe(DisasContext *ctx, TCGv addr)
7041 TCGv t0 = tcg_temp_new();
7042 #if defined(TARGET_PPC64)
7043 gen_qemu_ld16u(ctx, t0, addr);
7044 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
7045 gen_addr_add(ctx, addr, addr, 2);
7046 gen_qemu_ld16u(ctx, t0, addr);
7047 tcg_gen_shli_tl(t0, t0, 16);
7048 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7049 #else
7050 gen_qemu_ld16u(ctx, t0, addr);
7051 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
7052 gen_addr_add(ctx, addr, addr, 2);
7053 gen_qemu_ld16u(ctx, t0, addr);
7054 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
7055 #endif
7056 tcg_temp_free(t0);
7059 static always_inline void gen_op_evlwhou(DisasContext *ctx, TCGv addr)
7061 #if defined(TARGET_PPC64)
7062 TCGv t0 = tcg_temp_new();
7063 gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
7064 gen_addr_add(ctx, addr, addr, 2);
7065 gen_qemu_ld16u(ctx, t0, addr);
7066 tcg_gen_shli_tl(t0, t0, 32);
7067 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7068 tcg_temp_free(t0);
7069 #else
7070 gen_qemu_ld16u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
7071 gen_addr_add(ctx, addr, addr, 2);
7072 gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
7073 #endif
7076 static always_inline void gen_op_evlwhos(DisasContext *ctx, TCGv addr)
7078 #if defined(TARGET_PPC64)
7079 TCGv t0 = tcg_temp_new();
7080 gen_qemu_ld16s(ctx, t0, addr);
7081 tcg_gen_ext32u_tl(cpu_gpr[rD(ctx->opcode)], t0);
7082 gen_addr_add(ctx, addr, addr, 2);
7083 gen_qemu_ld16s(ctx, t0, addr);
7084 tcg_gen_shli_tl(t0, t0, 32);
7085 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7086 tcg_temp_free(t0);
7087 #else
7088 gen_qemu_ld16s(ctx, cpu_gprh[rD(ctx->opcode)], addr);
7089 gen_addr_add(ctx, addr, addr, 2);
7090 gen_qemu_ld16s(ctx, cpu_gpr[rD(ctx->opcode)], addr);
7091 #endif
7094 static always_inline void gen_op_evlwwsplat(DisasContext *ctx, TCGv addr)
7096 TCGv t0 = tcg_temp_new();
7097 gen_qemu_ld32u(ctx, t0, addr);
7098 #if defined(TARGET_PPC64)
7099 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7100 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7101 #else
7102 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7103 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7104 #endif
7105 tcg_temp_free(t0);
7108 static always_inline void gen_op_evlwhsplat(DisasContext *ctx, TCGv addr)
7110 TCGv t0 = tcg_temp_new();
7111 #if defined(TARGET_PPC64)
7112 gen_qemu_ld16u(ctx, t0, addr);
7113 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
7114 tcg_gen_shli_tl(t0, t0, 32);
7115 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7116 gen_addr_add(ctx, addr, addr, 2);
7117 gen_qemu_ld16u(ctx, t0, addr);
7118 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7119 tcg_gen_shli_tl(t0, t0, 16);
7120 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7121 #else
7122 gen_qemu_ld16u(ctx, t0, addr);
7123 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
7124 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
7125 gen_addr_add(ctx, addr, addr, 2);
7126 gen_qemu_ld16u(ctx, t0, addr);
7127 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
7128 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
7129 #endif
7130 tcg_temp_free(t0);
7133 static always_inline void gen_op_evstdd(DisasContext *ctx, TCGv addr)
7135 #if defined(TARGET_PPC64)
7136 gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], addr);
7137 #else
7138 TCGv_i64 t0 = tcg_temp_new_i64();
7139 tcg_gen_concat_i32_i64(t0, cpu_gpr[rS(ctx->opcode)], cpu_gprh[rS(ctx->opcode)]);
7140 gen_qemu_st64(ctx, t0, addr);
7141 tcg_temp_free_i64(t0);
7142 #endif
7145 static always_inline void gen_op_evstdw(DisasContext *ctx, TCGv addr)
7147 #if defined(TARGET_PPC64)
7148 TCGv t0 = tcg_temp_new();
7149 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
7150 gen_qemu_st32(ctx, t0, addr);
7151 tcg_temp_free(t0);
7152 #else
7153 gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
7154 #endif
7155 gen_addr_add(ctx, addr, addr, 4);
7156 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
7159 static always_inline void gen_op_evstdh(DisasContext *ctx, TCGv addr)
7161 TCGv t0 = tcg_temp_new();
7162 #if defined(TARGET_PPC64)
7163 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
7164 #else
7165 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
7166 #endif
7167 gen_qemu_st16(ctx, t0, addr);
7168 gen_addr_add(ctx, addr, addr, 2);
7169 #if defined(TARGET_PPC64)
7170 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
7171 gen_qemu_st16(ctx, t0, addr);
7172 #else
7173 gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
7174 #endif
7175 gen_addr_add(ctx, addr, addr, 2);
7176 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
7177 gen_qemu_st16(ctx, t0, addr);
7178 tcg_temp_free(t0);
7179 gen_addr_add(ctx, addr, addr, 2);
7180 gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
7183 static always_inline void gen_op_evstwhe(DisasContext *ctx, TCGv addr)
7185 TCGv t0 = tcg_temp_new();
7186 #if defined(TARGET_PPC64)
7187 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
7188 #else
7189 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
7190 #endif
7191 gen_qemu_st16(ctx, t0, addr);
7192 gen_addr_add(ctx, addr, addr, 2);
7193 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
7194 gen_qemu_st16(ctx, t0, addr);
7195 tcg_temp_free(t0);
7198 static always_inline void gen_op_evstwho(DisasContext *ctx, TCGv addr)
7200 #if defined(TARGET_PPC64)
7201 TCGv t0 = tcg_temp_new();
7202 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
7203 gen_qemu_st16(ctx, t0, addr);
7204 tcg_temp_free(t0);
7205 #else
7206 gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
7207 #endif
7208 gen_addr_add(ctx, addr, addr, 2);
7209 gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
7212 static always_inline void gen_op_evstwwe(DisasContext *ctx, TCGv addr)
7214 #if defined(TARGET_PPC64)
7215 TCGv t0 = tcg_temp_new();
7216 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
7217 gen_qemu_st32(ctx, t0, addr);
7218 tcg_temp_free(t0);
7219 #else
7220 gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
7221 #endif
7224 static always_inline void gen_op_evstwwo(DisasContext *ctx, TCGv addr)
7226 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
7229 #define GEN_SPEOP_LDST(name, opc2, sh) \
7230 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE) \
7232 TCGv t0; \
7233 if (unlikely(!ctx->spe_enabled)) { \
7234 gen_exception(ctx, POWERPC_EXCP_APU); \
7235 return; \
7237 gen_set_access_type(ctx, ACCESS_INT); \
7238 t0 = tcg_temp_new(); \
7239 if (Rc(ctx->opcode)) { \
7240 gen_addr_spe_imm_index(ctx, t0, sh); \
7241 } else { \
7242 gen_addr_reg_index(ctx, t0); \
7244 gen_op_##name(ctx, t0); \
7245 tcg_temp_free(t0); \
7248 GEN_SPEOP_LDST(evldd, 0x00, 3);
7249 GEN_SPEOP_LDST(evldw, 0x01, 3);
7250 GEN_SPEOP_LDST(evldh, 0x02, 3);
7251 GEN_SPEOP_LDST(evlhhesplat, 0x04, 1);
7252 GEN_SPEOP_LDST(evlhhousplat, 0x06, 1);
7253 GEN_SPEOP_LDST(evlhhossplat, 0x07, 1);
7254 GEN_SPEOP_LDST(evlwhe, 0x08, 2);
7255 GEN_SPEOP_LDST(evlwhou, 0x0A, 2);
7256 GEN_SPEOP_LDST(evlwhos, 0x0B, 2);
7257 GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2);
7258 GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2);
7260 GEN_SPEOP_LDST(evstdd, 0x10, 3);
7261 GEN_SPEOP_LDST(evstdw, 0x11, 3);
7262 GEN_SPEOP_LDST(evstdh, 0x12, 3);
7263 GEN_SPEOP_LDST(evstwhe, 0x18, 2);
7264 GEN_SPEOP_LDST(evstwho, 0x1A, 2);
7265 GEN_SPEOP_LDST(evstwwe, 0x1C, 2);
7266 GEN_SPEOP_LDST(evstwwo, 0x1E, 2);
7268 /* Multiply and add - TODO */
7269 #if 0
7270 GEN_SPE(speundef, evmhessf, 0x01, 0x10, 0x00000000, PPC_SPE);
7271 GEN_SPE(speundef, evmhossf, 0x03, 0x10, 0x00000000, PPC_SPE);
7272 GEN_SPE(evmheumi, evmhesmi, 0x04, 0x10, 0x00000000, PPC_SPE);
7273 GEN_SPE(speundef, evmhesmf, 0x05, 0x10, 0x00000000, PPC_SPE);
7274 GEN_SPE(evmhoumi, evmhosmi, 0x06, 0x10, 0x00000000, PPC_SPE);
7275 GEN_SPE(speundef, evmhosmf, 0x07, 0x10, 0x00000000, PPC_SPE);
7276 GEN_SPE(speundef, evmhessfa, 0x11, 0x10, 0x00000000, PPC_SPE);
7277 GEN_SPE(speundef, evmhossfa, 0x13, 0x10, 0x00000000, PPC_SPE);
7278 GEN_SPE(evmheumia, evmhesmia, 0x14, 0x10, 0x00000000, PPC_SPE);
7279 GEN_SPE(speundef, evmhesmfa, 0x15, 0x10, 0x00000000, PPC_SPE);
7280 GEN_SPE(evmhoumia, evmhosmia, 0x16, 0x10, 0x00000000, PPC_SPE);
7281 GEN_SPE(speundef, evmhosmfa, 0x17, 0x10, 0x00000000, PPC_SPE);
7283 GEN_SPE(speundef, evmwhssf, 0x03, 0x11, 0x00000000, PPC_SPE);
7284 GEN_SPE(evmwlumi, speundef, 0x04, 0x11, 0x00000000, PPC_SPE);
7285 GEN_SPE(evmwhumi, evmwhsmi, 0x06, 0x11, 0x00000000, PPC_SPE);
7286 GEN_SPE(speundef, evmwhsmf, 0x07, 0x11, 0x00000000, PPC_SPE);
7287 GEN_SPE(speundef, evmwssf, 0x09, 0x11, 0x00000000, PPC_SPE);
7288 GEN_SPE(evmwumi, evmwsmi, 0x0C, 0x11, 0x00000000, PPC_SPE);
7289 GEN_SPE(speundef, evmwsmf, 0x0D, 0x11, 0x00000000, PPC_SPE);
7290 GEN_SPE(speundef, evmwhssfa, 0x13, 0x11, 0x00000000, PPC_SPE);
7291 GEN_SPE(evmwlumia, speundef, 0x14, 0x11, 0x00000000, PPC_SPE);
7292 GEN_SPE(evmwhumia, evmwhsmia, 0x16, 0x11, 0x00000000, PPC_SPE);
7293 GEN_SPE(speundef, evmwhsmfa, 0x17, 0x11, 0x00000000, PPC_SPE);
7294 GEN_SPE(speundef, evmwssfa, 0x19, 0x11, 0x00000000, PPC_SPE);
7295 GEN_SPE(evmwumia, evmwsmia, 0x1C, 0x11, 0x00000000, PPC_SPE);
7296 GEN_SPE(speundef, evmwsmfa, 0x1D, 0x11, 0x00000000, PPC_SPE);
7298 GEN_SPE(evadduiaaw, evaddsiaaw, 0x00, 0x13, 0x0000F800, PPC_SPE);
7299 GEN_SPE(evsubfusiaaw, evsubfssiaaw, 0x01, 0x13, 0x0000F800, PPC_SPE);
7300 GEN_SPE(evaddumiaaw, evaddsmiaaw, 0x04, 0x13, 0x0000F800, PPC_SPE);
7301 GEN_SPE(evsubfumiaaw, evsubfsmiaaw, 0x05, 0x13, 0x0000F800, PPC_SPE);
7302 GEN_SPE(evdivws, evdivwu, 0x06, 0x13, 0x00000000, PPC_SPE);
7303 GEN_SPE(evmra, speundef, 0x07, 0x13, 0x0000F800, PPC_SPE);
7305 GEN_SPE(evmheusiaaw, evmhessiaaw, 0x00, 0x14, 0x00000000, PPC_SPE);
7306 GEN_SPE(speundef, evmhessfaaw, 0x01, 0x14, 0x00000000, PPC_SPE);
7307 GEN_SPE(evmhousiaaw, evmhossiaaw, 0x02, 0x14, 0x00000000, PPC_SPE);
7308 GEN_SPE(speundef, evmhossfaaw, 0x03, 0x14, 0x00000000, PPC_SPE);
7309 GEN_SPE(evmheumiaaw, evmhesmiaaw, 0x04, 0x14, 0x00000000, PPC_SPE);
7310 GEN_SPE(speundef, evmhesmfaaw, 0x05, 0x14, 0x00000000, PPC_SPE);
7311 GEN_SPE(evmhoumiaaw, evmhosmiaaw, 0x06, 0x14, 0x00000000, PPC_SPE);
7312 GEN_SPE(speundef, evmhosmfaaw, 0x07, 0x14, 0x00000000, PPC_SPE);
7313 GEN_SPE(evmhegumiaa, evmhegsmiaa, 0x14, 0x14, 0x00000000, PPC_SPE);
7314 GEN_SPE(speundef, evmhegsmfaa, 0x15, 0x14, 0x00000000, PPC_SPE);
7315 GEN_SPE(evmhogumiaa, evmhogsmiaa, 0x16, 0x14, 0x00000000, PPC_SPE);
7316 GEN_SPE(speundef, evmhogsmfaa, 0x17, 0x14, 0x00000000, PPC_SPE);
7318 GEN_SPE(evmwlusiaaw, evmwlssiaaw, 0x00, 0x15, 0x00000000, PPC_SPE);
7319 GEN_SPE(evmwlumiaaw, evmwlsmiaaw, 0x04, 0x15, 0x00000000, PPC_SPE);
7320 GEN_SPE(speundef, evmwssfaa, 0x09, 0x15, 0x00000000, PPC_SPE);
7321 GEN_SPE(evmwumiaa, evmwsmiaa, 0x0C, 0x15, 0x00000000, PPC_SPE);
7322 GEN_SPE(speundef, evmwsmfaa, 0x0D, 0x15, 0x00000000, PPC_SPE);
7324 GEN_SPE(evmheusianw, evmhessianw, 0x00, 0x16, 0x00000000, PPC_SPE);
7325 GEN_SPE(speundef, evmhessfanw, 0x01, 0x16, 0x00000000, PPC_SPE);
7326 GEN_SPE(evmhousianw, evmhossianw, 0x02, 0x16, 0x00000000, PPC_SPE);
7327 GEN_SPE(speundef, evmhossfanw, 0x03, 0x16, 0x00000000, PPC_SPE);
7328 GEN_SPE(evmheumianw, evmhesmianw, 0x04, 0x16, 0x00000000, PPC_SPE);
7329 GEN_SPE(speundef, evmhesmfanw, 0x05, 0x16, 0x00000000, PPC_SPE);
7330 GEN_SPE(evmhoumianw, evmhosmianw, 0x06, 0x16, 0x00000000, PPC_SPE);
7331 GEN_SPE(speundef, evmhosmfanw, 0x07, 0x16, 0x00000000, PPC_SPE);
7332 GEN_SPE(evmhegumian, evmhegsmian, 0x14, 0x16, 0x00000000, PPC_SPE);
7333 GEN_SPE(speundef, evmhegsmfan, 0x15, 0x16, 0x00000000, PPC_SPE);
7334 GEN_SPE(evmhigumian, evmhigsmian, 0x16, 0x16, 0x00000000, PPC_SPE);
7335 GEN_SPE(speundef, evmhogsmfan, 0x17, 0x16, 0x00000000, PPC_SPE);
7337 GEN_SPE(evmwlusianw, evmwlssianw, 0x00, 0x17, 0x00000000, PPC_SPE);
7338 GEN_SPE(evmwlumianw, evmwlsmianw, 0x04, 0x17, 0x00000000, PPC_SPE);
7339 GEN_SPE(speundef, evmwssfan, 0x09, 0x17, 0x00000000, PPC_SPE);
7340 GEN_SPE(evmwumian, evmwsmian, 0x0C, 0x17, 0x00000000, PPC_SPE);
7341 GEN_SPE(speundef, evmwsmfan, 0x0D, 0x17, 0x00000000, PPC_SPE);
7342 #endif
7344 /*** SPE floating-point extension ***/
7345 #if defined(TARGET_PPC64)
7346 #define GEN_SPEFPUOP_CONV_32_32(name) \
7347 static always_inline void gen_##name (DisasContext *ctx) \
7349 TCGv_i32 t0; \
7350 TCGv t1; \
7351 t0 = tcg_temp_new_i32(); \
7352 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7353 gen_helper_##name(t0, t0); \
7354 t1 = tcg_temp_new(); \
7355 tcg_gen_extu_i32_tl(t1, t0); \
7356 tcg_temp_free_i32(t0); \
7357 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7358 0xFFFFFFFF00000000ULL); \
7359 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7360 tcg_temp_free(t1); \
7362 #define GEN_SPEFPUOP_CONV_32_64(name) \
7363 static always_inline void gen_##name (DisasContext *ctx) \
7365 TCGv_i32 t0; \
7366 TCGv t1; \
7367 t0 = tcg_temp_new_i32(); \
7368 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7369 t1 = tcg_temp_new(); \
7370 tcg_gen_extu_i32_tl(t1, t0); \
7371 tcg_temp_free_i32(t0); \
7372 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7373 0xFFFFFFFF00000000ULL); \
7374 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
7375 tcg_temp_free(t1); \
7377 #define GEN_SPEFPUOP_CONV_64_32(name) \
7378 static always_inline void gen_##name (DisasContext *ctx) \
7380 TCGv_i32 t0 = tcg_temp_new_i32(); \
7381 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7382 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7383 tcg_temp_free_i32(t0); \
7385 #define GEN_SPEFPUOP_CONV_64_64(name) \
7386 static always_inline void gen_##name (DisasContext *ctx) \
7388 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7390 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7391 static always_inline void gen_##name (DisasContext *ctx) \
7393 TCGv_i32 t0, t1; \
7394 TCGv_i64 t2; \
7395 if (unlikely(!ctx->spe_enabled)) { \
7396 gen_exception(ctx, POWERPC_EXCP_APU); \
7397 return; \
7399 t0 = tcg_temp_new_i32(); \
7400 t1 = tcg_temp_new_i32(); \
7401 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7402 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7403 gen_helper_##name(t0, t0, t1); \
7404 tcg_temp_free_i32(t1); \
7405 t2 = tcg_temp_new(); \
7406 tcg_gen_extu_i32_tl(t2, t0); \
7407 tcg_temp_free_i32(t0); \
7408 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
7409 0xFFFFFFFF00000000ULL); \
7410 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
7411 tcg_temp_free(t2); \
7413 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7414 static always_inline void gen_##name (DisasContext *ctx) \
7416 if (unlikely(!ctx->spe_enabled)) { \
7417 gen_exception(ctx, POWERPC_EXCP_APU); \
7418 return; \
7420 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7421 cpu_gpr[rB(ctx->opcode)]); \
7423 #define GEN_SPEFPUOP_COMP_32(name) \
7424 static always_inline void gen_##name (DisasContext *ctx) \
7426 TCGv_i32 t0, t1; \
7427 if (unlikely(!ctx->spe_enabled)) { \
7428 gen_exception(ctx, POWERPC_EXCP_APU); \
7429 return; \
7431 t0 = tcg_temp_new_i32(); \
7432 t1 = tcg_temp_new_i32(); \
7433 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7434 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7435 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7436 tcg_temp_free_i32(t0); \
7437 tcg_temp_free_i32(t1); \
7439 #define GEN_SPEFPUOP_COMP_64(name) \
7440 static always_inline void gen_##name (DisasContext *ctx) \
7442 if (unlikely(!ctx->spe_enabled)) { \
7443 gen_exception(ctx, POWERPC_EXCP_APU); \
7444 return; \
7446 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7447 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7449 #else
7450 #define GEN_SPEFPUOP_CONV_32_32(name) \
7451 static always_inline void gen_##name (DisasContext *ctx) \
7453 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7455 #define GEN_SPEFPUOP_CONV_32_64(name) \
7456 static always_inline void gen_##name (DisasContext *ctx) \
7458 TCGv_i64 t0 = tcg_temp_new_i64(); \
7459 gen_load_gpr64(t0, rB(ctx->opcode)); \
7460 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], t0); \
7461 tcg_temp_free_i64(t0); \
7463 #define GEN_SPEFPUOP_CONV_64_32(name) \
7464 static always_inline void gen_##name (DisasContext *ctx) \
7466 TCGv_i64 t0 = tcg_temp_new_i64(); \
7467 gen_helper_##name(t0, cpu_gpr[rB(ctx->opcode)]); \
7468 gen_store_gpr64(rD(ctx->opcode), t0); \
7469 tcg_temp_free_i64(t0); \
7471 #define GEN_SPEFPUOP_CONV_64_64(name) \
7472 static always_inline void gen_##name (DisasContext *ctx) \
7474 TCGv_i64 t0 = tcg_temp_new_i64(); \
7475 gen_load_gpr64(t0, rB(ctx->opcode)); \
7476 gen_helper_##name(t0, t0); \
7477 gen_store_gpr64(rD(ctx->opcode), t0); \
7478 tcg_temp_free_i64(t0); \
7480 #define GEN_SPEFPUOP_ARITH2_32_32(name) \
7481 static always_inline void gen_##name (DisasContext *ctx) \
7483 if (unlikely(!ctx->spe_enabled)) { \
7484 gen_exception(ctx, POWERPC_EXCP_APU); \
7485 return; \
7487 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], \
7488 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7490 #define GEN_SPEFPUOP_ARITH2_64_64(name) \
7491 static always_inline void gen_##name (DisasContext *ctx) \
7493 TCGv_i64 t0, t1; \
7494 if (unlikely(!ctx->spe_enabled)) { \
7495 gen_exception(ctx, POWERPC_EXCP_APU); \
7496 return; \
7498 t0 = tcg_temp_new_i64(); \
7499 t1 = tcg_temp_new_i64(); \
7500 gen_load_gpr64(t0, rA(ctx->opcode)); \
7501 gen_load_gpr64(t1, rB(ctx->opcode)); \
7502 gen_helper_##name(t0, t0, t1); \
7503 gen_store_gpr64(rD(ctx->opcode), t0); \
7504 tcg_temp_free_i64(t0); \
7505 tcg_temp_free_i64(t1); \
7507 #define GEN_SPEFPUOP_COMP_32(name) \
7508 static always_inline void gen_##name (DisasContext *ctx) \
7510 if (unlikely(!ctx->spe_enabled)) { \
7511 gen_exception(ctx, POWERPC_EXCP_APU); \
7512 return; \
7514 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], \
7515 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
7517 #define GEN_SPEFPUOP_COMP_64(name) \
7518 static always_inline void gen_##name (DisasContext *ctx) \
7520 TCGv_i64 t0, t1; \
7521 if (unlikely(!ctx->spe_enabled)) { \
7522 gen_exception(ctx, POWERPC_EXCP_APU); \
7523 return; \
7525 t0 = tcg_temp_new_i64(); \
7526 t1 = tcg_temp_new_i64(); \
7527 gen_load_gpr64(t0, rA(ctx->opcode)); \
7528 gen_load_gpr64(t1, rB(ctx->opcode)); \
7529 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], t0, t1); \
7530 tcg_temp_free_i64(t0); \
7531 tcg_temp_free_i64(t1); \
7533 #endif
7535 /* Single precision floating-point vectors operations */
7536 /* Arithmetic */
7537 GEN_SPEFPUOP_ARITH2_64_64(evfsadd);
7538 GEN_SPEFPUOP_ARITH2_64_64(evfssub);
7539 GEN_SPEFPUOP_ARITH2_64_64(evfsmul);
7540 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv);
7541 static always_inline void gen_evfsabs (DisasContext *ctx)
7543 if (unlikely(!ctx->spe_enabled)) {
7544 gen_exception(ctx, POWERPC_EXCP_APU);
7545 return;
7547 #if defined(TARGET_PPC64)
7548 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000080000000LL);
7549 #else
7550 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x80000000);
7551 tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
7552 #endif
7554 static always_inline void gen_evfsnabs (DisasContext *ctx)
7556 if (unlikely(!ctx->spe_enabled)) {
7557 gen_exception(ctx, POWERPC_EXCP_APU);
7558 return;
7560 #if defined(TARGET_PPC64)
7561 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
7562 #else
7563 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7564 tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7565 #endif
7567 static always_inline void gen_evfsneg (DisasContext *ctx)
7569 if (unlikely(!ctx->spe_enabled)) {
7570 gen_exception(ctx, POWERPC_EXCP_APU);
7571 return;
7573 #if defined(TARGET_PPC64)
7574 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
7575 #else
7576 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7577 tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7578 #endif
7581 /* Conversion */
7582 GEN_SPEFPUOP_CONV_64_64(evfscfui);
7583 GEN_SPEFPUOP_CONV_64_64(evfscfsi);
7584 GEN_SPEFPUOP_CONV_64_64(evfscfuf);
7585 GEN_SPEFPUOP_CONV_64_64(evfscfsf);
7586 GEN_SPEFPUOP_CONV_64_64(evfsctui);
7587 GEN_SPEFPUOP_CONV_64_64(evfsctsi);
7588 GEN_SPEFPUOP_CONV_64_64(evfsctuf);
7589 GEN_SPEFPUOP_CONV_64_64(evfsctsf);
7590 GEN_SPEFPUOP_CONV_64_64(evfsctuiz);
7591 GEN_SPEFPUOP_CONV_64_64(evfsctsiz);
7593 /* Comparison */
7594 GEN_SPEFPUOP_COMP_64(evfscmpgt);
7595 GEN_SPEFPUOP_COMP_64(evfscmplt);
7596 GEN_SPEFPUOP_COMP_64(evfscmpeq);
7597 GEN_SPEFPUOP_COMP_64(evfststgt);
7598 GEN_SPEFPUOP_COMP_64(evfststlt);
7599 GEN_SPEFPUOP_COMP_64(evfststeq);
7601 /* Opcodes definitions */
7602 GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, PPC_SPEFPU); //
7603 GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, PPC_SPEFPU); //
7604 GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, PPC_SPEFPU); //
7605 GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, PPC_SPEFPU); //
7606 GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, PPC_SPEFPU); //
7607 GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, PPC_SPEFPU); //
7608 GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, PPC_SPEFPU); //
7609 GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, PPC_SPEFPU); //
7610 GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, PPC_SPEFPU); //
7611 GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, PPC_SPEFPU); //
7612 GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, PPC_SPEFPU); //
7613 GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, PPC_SPEFPU); //
7614 GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, PPC_SPEFPU); //
7615 GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, PPC_SPEFPU); //
7617 /* Single precision floating-point operations */
7618 /* Arithmetic */
7619 GEN_SPEFPUOP_ARITH2_32_32(efsadd);
7620 GEN_SPEFPUOP_ARITH2_32_32(efssub);
7621 GEN_SPEFPUOP_ARITH2_32_32(efsmul);
7622 GEN_SPEFPUOP_ARITH2_32_32(efsdiv);
7623 static always_inline void gen_efsabs (DisasContext *ctx)
7625 if (unlikely(!ctx->spe_enabled)) {
7626 gen_exception(ctx, POWERPC_EXCP_APU);
7627 return;
7629 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], (target_long)~0x80000000LL);
7631 static always_inline void gen_efsnabs (DisasContext *ctx)
7633 if (unlikely(!ctx->spe_enabled)) {
7634 gen_exception(ctx, POWERPC_EXCP_APU);
7635 return;
7637 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7639 static always_inline void gen_efsneg (DisasContext *ctx)
7641 if (unlikely(!ctx->spe_enabled)) {
7642 gen_exception(ctx, POWERPC_EXCP_APU);
7643 return;
7645 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
7648 /* Conversion */
7649 GEN_SPEFPUOP_CONV_32_32(efscfui);
7650 GEN_SPEFPUOP_CONV_32_32(efscfsi);
7651 GEN_SPEFPUOP_CONV_32_32(efscfuf);
7652 GEN_SPEFPUOP_CONV_32_32(efscfsf);
7653 GEN_SPEFPUOP_CONV_32_32(efsctui);
7654 GEN_SPEFPUOP_CONV_32_32(efsctsi);
7655 GEN_SPEFPUOP_CONV_32_32(efsctuf);
7656 GEN_SPEFPUOP_CONV_32_32(efsctsf);
7657 GEN_SPEFPUOP_CONV_32_32(efsctuiz);
7658 GEN_SPEFPUOP_CONV_32_32(efsctsiz);
7659 GEN_SPEFPUOP_CONV_32_64(efscfd);
7661 /* Comparison */
7662 GEN_SPEFPUOP_COMP_32(efscmpgt);
7663 GEN_SPEFPUOP_COMP_32(efscmplt);
7664 GEN_SPEFPUOP_COMP_32(efscmpeq);
7665 GEN_SPEFPUOP_COMP_32(efststgt);
7666 GEN_SPEFPUOP_COMP_32(efststlt);
7667 GEN_SPEFPUOP_COMP_32(efststeq);
7669 /* Opcodes definitions */
7670 GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, PPC_SPEFPU); //
7671 GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, PPC_SPEFPU); //
7672 GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, PPC_SPEFPU); //
7673 GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, PPC_SPEFPU); //
7674 GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, PPC_SPEFPU); //
7675 GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, PPC_SPEFPU); //
7676 GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, PPC_SPEFPU); //
7677 GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, PPC_SPEFPU); //
7678 GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, PPC_SPEFPU); //
7679 GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, PPC_SPEFPU); //
7680 GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, PPC_SPEFPU); //
7681 GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, PPC_SPEFPU); //
7682 GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, PPC_SPEFPU); //
7683 GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, PPC_SPEFPU); //
7685 /* Double precision floating-point operations */
7686 /* Arithmetic */
7687 GEN_SPEFPUOP_ARITH2_64_64(efdadd);
7688 GEN_SPEFPUOP_ARITH2_64_64(efdsub);
7689 GEN_SPEFPUOP_ARITH2_64_64(efdmul);
7690 GEN_SPEFPUOP_ARITH2_64_64(efddiv);
7691 static always_inline void gen_efdabs (DisasContext *ctx)
7693 if (unlikely(!ctx->spe_enabled)) {
7694 gen_exception(ctx, POWERPC_EXCP_APU);
7695 return;
7697 #if defined(TARGET_PPC64)
7698 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000000000000LL);
7699 #else
7700 tcg_gen_andi_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
7701 #endif
7703 static always_inline void gen_efdnabs (DisasContext *ctx)
7705 if (unlikely(!ctx->spe_enabled)) {
7706 gen_exception(ctx, POWERPC_EXCP_APU);
7707 return;
7709 #if defined(TARGET_PPC64)
7710 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
7711 #else
7712 tcg_gen_ori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7713 #endif
7715 static always_inline void gen_efdneg (DisasContext *ctx)
7717 if (unlikely(!ctx->spe_enabled)) {
7718 gen_exception(ctx, POWERPC_EXCP_APU);
7719 return;
7721 #if defined(TARGET_PPC64)
7722 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
7723 #else
7724 tcg_gen_xori_tl(cpu_gprh[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
7725 #endif
7728 /* Conversion */
7729 GEN_SPEFPUOP_CONV_64_32(efdcfui);
7730 GEN_SPEFPUOP_CONV_64_32(efdcfsi);
7731 GEN_SPEFPUOP_CONV_64_32(efdcfuf);
7732 GEN_SPEFPUOP_CONV_64_32(efdcfsf);
7733 GEN_SPEFPUOP_CONV_32_64(efdctui);
7734 GEN_SPEFPUOP_CONV_32_64(efdctsi);
7735 GEN_SPEFPUOP_CONV_32_64(efdctuf);
7736 GEN_SPEFPUOP_CONV_32_64(efdctsf);
7737 GEN_SPEFPUOP_CONV_32_64(efdctuiz);
7738 GEN_SPEFPUOP_CONV_32_64(efdctsiz);
7739 GEN_SPEFPUOP_CONV_64_32(efdcfs);
7740 GEN_SPEFPUOP_CONV_64_64(efdcfuid);
7741 GEN_SPEFPUOP_CONV_64_64(efdcfsid);
7742 GEN_SPEFPUOP_CONV_64_64(efdctuidz);
7743 GEN_SPEFPUOP_CONV_64_64(efdctsidz);
7745 /* Comparison */
7746 GEN_SPEFPUOP_COMP_64(efdcmpgt);
7747 GEN_SPEFPUOP_COMP_64(efdcmplt);
7748 GEN_SPEFPUOP_COMP_64(efdcmpeq);
7749 GEN_SPEFPUOP_COMP_64(efdtstgt);
7750 GEN_SPEFPUOP_COMP_64(efdtstlt);
7751 GEN_SPEFPUOP_COMP_64(efdtsteq);
7753 /* Opcodes definitions */
7754 GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, PPC_SPEFPU); //
7755 GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, PPC_SPEFPU); //
7756 GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, PPC_SPEFPU); //
7757 GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, PPC_SPEFPU); //
7758 GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, PPC_SPEFPU); //
7759 GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, PPC_SPEFPU); //
7760 GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, PPC_SPEFPU); //
7761 GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, PPC_SPEFPU); //
7762 GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, PPC_SPEFPU); //
7763 GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, PPC_SPEFPU); //
7764 GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, PPC_SPEFPU); //
7765 GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, PPC_SPEFPU); //
7766 GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, PPC_SPEFPU); //
7767 GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, PPC_SPEFPU); //
7768 GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, PPC_SPEFPU); //
7769 GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, PPC_SPEFPU); //
7771 /* End opcode list */
7772 GEN_OPCODE_MARK(end);
7774 #include "translate_init.c"
7775 #include "helper_regs.h"
7777 /*****************************************************************************/
7778 /* Misc PowerPC helpers */
7779 void cpu_dump_state (CPUState *env, FILE *f,
7780 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
7781 int flags)
7783 #define RGPL 4
7784 #define RFPL 4
7786 int i;
7788 cpu_fprintf(f, "NIP " ADDRX " LR " ADDRX " CTR " ADDRX " XER %08x\n",
7789 env->nip, env->lr, env->ctr, env->xer);
7790 cpu_fprintf(f, "MSR " ADDRX " HID0 " ADDRX " HF " ADDRX " idx %d\n",
7791 env->msr, env->spr[SPR_HID0], env->hflags, env->mmu_idx);
7792 #if !defined(NO_TIMER_DUMP)
7793 cpu_fprintf(f, "TB %08x %08x "
7794 #if !defined(CONFIG_USER_ONLY)
7795 "DECR %08x"
7796 #endif
7797 "\n",
7798 cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
7799 #if !defined(CONFIG_USER_ONLY)
7800 , cpu_ppc_load_decr(env)
7801 #endif
7803 #endif
7804 for (i = 0; i < 32; i++) {
7805 if ((i & (RGPL - 1)) == 0)
7806 cpu_fprintf(f, "GPR%02d", i);
7807 cpu_fprintf(f, " " REGX, ppc_dump_gpr(env, i));
7808 if ((i & (RGPL - 1)) == (RGPL - 1))
7809 cpu_fprintf(f, "\n");
7811 cpu_fprintf(f, "CR ");
7812 for (i = 0; i < 8; i++)
7813 cpu_fprintf(f, "%01x", env->crf[i]);
7814 cpu_fprintf(f, " [");
7815 for (i = 0; i < 8; i++) {
7816 char a = '-';
7817 if (env->crf[i] & 0x08)
7818 a = 'L';
7819 else if (env->crf[i] & 0x04)
7820 a = 'G';
7821 else if (env->crf[i] & 0x02)
7822 a = 'E';
7823 cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
7825 cpu_fprintf(f, " ] RES " ADDRX "\n", env->reserve);
7826 for (i = 0; i < 32; i++) {
7827 if ((i & (RFPL - 1)) == 0)
7828 cpu_fprintf(f, "FPR%02d", i);
7829 cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
7830 if ((i & (RFPL - 1)) == (RFPL - 1))
7831 cpu_fprintf(f, "\n");
7833 cpu_fprintf(f, "FPSCR %08x\n", env->fpscr);
7834 #if !defined(CONFIG_USER_ONLY)
7835 cpu_fprintf(f, "SRR0 " ADDRX " SRR1 " ADDRX " SDR1 " ADDRX "\n",
7836 env->spr[SPR_SRR0], env->spr[SPR_SRR1], env->sdr1);
7837 #endif
7839 #undef RGPL
7840 #undef RFPL
7843 void cpu_dump_statistics (CPUState *env, FILE*f,
7844 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
7845 int flags)
7847 #if defined(DO_PPC_STATISTICS)
7848 opc_handler_t **t1, **t2, **t3, *handler;
7849 int op1, op2, op3;
7851 t1 = env->opcodes;
7852 for (op1 = 0; op1 < 64; op1++) {
7853 handler = t1[op1];
7854 if (is_indirect_opcode(handler)) {
7855 t2 = ind_table(handler);
7856 for (op2 = 0; op2 < 32; op2++) {
7857 handler = t2[op2];
7858 if (is_indirect_opcode(handler)) {
7859 t3 = ind_table(handler);
7860 for (op3 = 0; op3 < 32; op3++) {
7861 handler = t3[op3];
7862 if (handler->count == 0)
7863 continue;
7864 cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
7865 "%016llx %lld\n",
7866 op1, op2, op3, op1, (op3 << 5) | op2,
7867 handler->oname,
7868 handler->count, handler->count);
7870 } else {
7871 if (handler->count == 0)
7872 continue;
7873 cpu_fprintf(f, "%02x %02x (%02x %04d) %16s: "
7874 "%016llx %lld\n",
7875 op1, op2, op1, op2, handler->oname,
7876 handler->count, handler->count);
7879 } else {
7880 if (handler->count == 0)
7881 continue;
7882 cpu_fprintf(f, "%02x (%02x ) %16s: %016llx %lld\n",
7883 op1, op1, handler->oname,
7884 handler->count, handler->count);
7887 #endif
7890 /*****************************************************************************/
7891 static always_inline void gen_intermediate_code_internal (CPUState *env,
7892 TranslationBlock *tb,
7893 int search_pc)
7895 DisasContext ctx, *ctxp = &ctx;
7896 opc_handler_t **table, *handler;
7897 target_ulong pc_start;
7898 uint16_t *gen_opc_end;
7899 CPUBreakpoint *bp;
7900 int j, lj = -1;
7901 int num_insns;
7902 int max_insns;
7904 pc_start = tb->pc;
7905 gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
7906 ctx.nip = pc_start;
7907 ctx.tb = tb;
7908 ctx.exception = POWERPC_EXCP_NONE;
7909 ctx.spr_cb = env->spr_cb;
7910 ctx.mem_idx = env->mmu_idx;
7911 ctx.access_type = -1;
7912 ctx.le_mode = env->hflags & (1 << MSR_LE) ? 1 : 0;
7913 #if defined(TARGET_PPC64)
7914 ctx.sf_mode = msr_sf;
7915 #endif
7916 ctx.fpu_enabled = msr_fp;
7917 if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
7918 ctx.spe_enabled = msr_spe;
7919 else
7920 ctx.spe_enabled = 0;
7921 if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
7922 ctx.altivec_enabled = msr_vr;
7923 else
7924 ctx.altivec_enabled = 0;
7925 if ((env->flags & POWERPC_FLAG_SE) && msr_se)
7926 ctx.singlestep_enabled = CPU_SINGLE_STEP;
7927 else
7928 ctx.singlestep_enabled = 0;
7929 if ((env->flags & POWERPC_FLAG_BE) && msr_be)
7930 ctx.singlestep_enabled |= CPU_BRANCH_STEP;
7931 if (unlikely(env->singlestep_enabled))
7932 ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP;
7933 #if defined (DO_SINGLE_STEP) && 0
7934 /* Single step trace mode */
7935 msr_se = 1;
7936 #endif
7937 num_insns = 0;
7938 max_insns = tb->cflags & CF_COUNT_MASK;
7939 if (max_insns == 0)
7940 max_insns = CF_COUNT_MASK;
7942 gen_icount_start();
7943 /* Set env in case of segfault during code fetch */
7944 while (ctx.exception == POWERPC_EXCP_NONE && gen_opc_ptr < gen_opc_end) {
7945 if (unlikely(!TAILQ_EMPTY(&env->breakpoints))) {
7946 TAILQ_FOREACH(bp, &env->breakpoints, entry) {
7947 if (bp->pc == ctx.nip) {
7948 gen_debug_exception(ctxp);
7949 break;
7953 if (unlikely(search_pc)) {
7954 j = gen_opc_ptr - gen_opc_buf;
7955 if (lj < j) {
7956 lj++;
7957 while (lj < j)
7958 gen_opc_instr_start[lj++] = 0;
7959 gen_opc_pc[lj] = ctx.nip;
7960 gen_opc_instr_start[lj] = 1;
7961 gen_opc_icount[lj] = num_insns;
7964 #if defined PPC_DEBUG_DISAS
7965 if (loglevel & CPU_LOG_TB_IN_ASM) {
7966 fprintf(logfile, "----------------\n");
7967 fprintf(logfile, "nip=" ADDRX " super=%d ir=%d\n",
7968 ctx.nip, ctx.mem_idx, (int)msr_ir);
7970 #endif
7971 if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
7972 gen_io_start();
7973 if (unlikely(ctx.le_mode)) {
7974 ctx.opcode = bswap32(ldl_code(ctx.nip));
7975 } else {
7976 ctx.opcode = ldl_code(ctx.nip);
7978 #if defined PPC_DEBUG_DISAS
7979 if (loglevel & CPU_LOG_TB_IN_ASM) {
7980 fprintf(logfile, "translate opcode %08x (%02x %02x %02x) (%s)\n",
7981 ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
7982 opc3(ctx.opcode), little_endian ? "little" : "big");
7984 #endif
7985 ctx.nip += 4;
7986 table = env->opcodes;
7987 num_insns++;
7988 handler = table[opc1(ctx.opcode)];
7989 if (is_indirect_opcode(handler)) {
7990 table = ind_table(handler);
7991 handler = table[opc2(ctx.opcode)];
7992 if (is_indirect_opcode(handler)) {
7993 table = ind_table(handler);
7994 handler = table[opc3(ctx.opcode)];
7997 /* Is opcode *REALLY* valid ? */
7998 if (unlikely(handler->handler == &gen_invalid)) {
7999 if (loglevel != 0) {
8000 fprintf(logfile, "invalid/unsupported opcode: "
8001 "%02x - %02x - %02x (%08x) " ADDRX " %d\n",
8002 opc1(ctx.opcode), opc2(ctx.opcode),
8003 opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
8004 } else {
8005 printf("invalid/unsupported opcode: "
8006 "%02x - %02x - %02x (%08x) " ADDRX " %d\n",
8007 opc1(ctx.opcode), opc2(ctx.opcode),
8008 opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
8010 } else {
8011 if (unlikely((ctx.opcode & handler->inval) != 0)) {
8012 if (loglevel != 0) {
8013 fprintf(logfile, "invalid bits: %08x for opcode: "
8014 "%02x - %02x - %02x (%08x) " ADDRX "\n",
8015 ctx.opcode & handler->inval, opc1(ctx.opcode),
8016 opc2(ctx.opcode), opc3(ctx.opcode),
8017 ctx.opcode, ctx.nip - 4);
8018 } else {
8019 printf("invalid bits: %08x for opcode: "
8020 "%02x - %02x - %02x (%08x) " ADDRX "\n",
8021 ctx.opcode & handler->inval, opc1(ctx.opcode),
8022 opc2(ctx.opcode), opc3(ctx.opcode),
8023 ctx.opcode, ctx.nip - 4);
8025 gen_inval_exception(ctxp, POWERPC_EXCP_INVAL_INVAL);
8026 break;
8029 (*(handler->handler))(&ctx);
8030 #if defined(DO_PPC_STATISTICS)
8031 handler->count++;
8032 #endif
8033 /* Check trace mode exceptions */
8034 if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP &&
8035 (ctx.nip <= 0x100 || ctx.nip > 0xF00) &&
8036 ctx.exception != POWERPC_SYSCALL &&
8037 ctx.exception != POWERPC_EXCP_TRAP &&
8038 ctx.exception != POWERPC_EXCP_BRANCH)) {
8039 gen_exception(ctxp, POWERPC_EXCP_TRACE);
8040 } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
8041 (env->singlestep_enabled) ||
8042 num_insns >= max_insns)) {
8043 /* if we reach a page boundary or are single stepping, stop
8044 * generation
8046 break;
8048 #if defined (DO_SINGLE_STEP)
8049 break;
8050 #endif
8052 if (tb->cflags & CF_LAST_IO)
8053 gen_io_end();
8054 if (ctx.exception == POWERPC_EXCP_NONE) {
8055 gen_goto_tb(&ctx, 0, ctx.nip);
8056 } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
8057 if (unlikely(env->singlestep_enabled)) {
8058 gen_debug_exception(ctxp);
8060 /* Generate the return instruction */
8061 tcg_gen_exit_tb(0);
8063 gen_icount_end(tb, num_insns);
8064 *gen_opc_ptr = INDEX_op_end;
8065 if (unlikely(search_pc)) {
8066 j = gen_opc_ptr - gen_opc_buf;
8067 lj++;
8068 while (lj <= j)
8069 gen_opc_instr_start[lj++] = 0;
8070 } else {
8071 tb->size = ctx.nip - pc_start;
8072 tb->icount = num_insns;
8074 #if defined(DEBUG_DISAS)
8075 if (loglevel & CPU_LOG_TB_CPU) {
8076 fprintf(logfile, "---------------- excp: %04x\n", ctx.exception);
8077 cpu_dump_state(env, logfile, fprintf, 0);
8079 if (loglevel & CPU_LOG_TB_IN_ASM) {
8080 int flags;
8081 flags = env->bfd_mach;
8082 flags |= ctx.le_mode << 16;
8083 fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
8084 target_disas(logfile, pc_start, ctx.nip - pc_start, flags);
8085 fprintf(logfile, "\n");
8087 #endif
8090 void gen_intermediate_code (CPUState *env, struct TranslationBlock *tb)
8092 gen_intermediate_code_internal(env, tb, 0);
8095 void gen_intermediate_code_pc (CPUState *env, struct TranslationBlock *tb)
8097 gen_intermediate_code_internal(env, tb, 1);
8100 void gen_pc_load(CPUState *env, TranslationBlock *tb,
8101 unsigned long searched_pc, int pc_pos, void *puc)
8103 env->nip = gen_opc_pc[pc_pos];