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