]> Git Repo - qemu.git/blob - target-ppc/translate.c
target-ppc: Add VSX Rounding Instructions
[qemu.git] / target-ppc / translate.c
1 /*
2  *  PowerPC emulation for qemu: main translation routines.
3  *
4  *  Copyright (c) 2003-2007 Jocelyn Mayer
5  *  Copyright (C) 2011 Freescale Semiconductor, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include "cpu.h"
22 #include "disas/disas.h"
23 #include "tcg-op.h"
24 #include "qemu/host-utils.h"
25
26 #include "helper.h"
27 #define GEN_HELPER 1
28 #include "helper.h"
29
30 #define CPU_SINGLE_STEP 0x1
31 #define CPU_BRANCH_STEP 0x2
32 #define GDBSTUB_SINGLE_STEP 0x4
33
34 /* Include definitions for instructions classes and implementations flags */
35 //#define PPC_DEBUG_DISAS
36 //#define DO_PPC_STATISTICS
37
38 #ifdef PPC_DEBUG_DISAS
39 #  define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
40 #else
41 #  define LOG_DISAS(...) do { } while (0)
42 #endif
43 /*****************************************************************************/
44 /* Code translation helpers                                                  */
45
46 /* global register indexes */
47 static TCGv_ptr cpu_env;
48 static char cpu_reg_names[10*3 + 22*4 /* GPR */
49 #if !defined(TARGET_PPC64)
50     + 10*4 + 22*5 /* SPE GPRh */
51 #endif
52     + 10*4 + 22*5 /* FPR */
53     + 2*(10*6 + 22*7) /* AVRh, AVRl */
54     + 10*5 + 22*6 /* VSR */
55     + 8*5 /* CRF */];
56 static TCGv cpu_gpr[32];
57 #if !defined(TARGET_PPC64)
58 static TCGv cpu_gprh[32];
59 #endif
60 static TCGv_i64 cpu_fpr[32];
61 static TCGv_i64 cpu_avrh[32], cpu_avrl[32];
62 static TCGv_i64 cpu_vsr[32];
63 static TCGv_i32 cpu_crf[8];
64 static TCGv cpu_nip;
65 static TCGv cpu_msr;
66 static TCGv cpu_ctr;
67 static TCGv cpu_lr;
68 #if defined(TARGET_PPC64)
69 static TCGv cpu_cfar;
70 #endif
71 static TCGv cpu_xer, cpu_so, cpu_ov, cpu_ca;
72 static TCGv cpu_reserve;
73 static TCGv cpu_fpscr;
74 static TCGv_i32 cpu_access_type;
75
76 #include "exec/gen-icount.h"
77
78 void ppc_translate_init(void)
79 {
80     int i;
81     char* p;
82     size_t cpu_reg_names_size;
83     static int done_init = 0;
84
85     if (done_init)
86         return;
87
88     cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
89
90     p = cpu_reg_names;
91     cpu_reg_names_size = sizeof(cpu_reg_names);
92
93     for (i = 0; i < 8; i++) {
94         snprintf(p, cpu_reg_names_size, "crf%d", i);
95         cpu_crf[i] = tcg_global_mem_new_i32(TCG_AREG0,
96                                             offsetof(CPUPPCState, crf[i]), p);
97         p += 5;
98         cpu_reg_names_size -= 5;
99     }
100
101     for (i = 0; i < 32; i++) {
102         snprintf(p, cpu_reg_names_size, "r%d", i);
103         cpu_gpr[i] = tcg_global_mem_new(TCG_AREG0,
104                                         offsetof(CPUPPCState, gpr[i]), p);
105         p += (i < 10) ? 3 : 4;
106         cpu_reg_names_size -= (i < 10) ? 3 : 4;
107 #if !defined(TARGET_PPC64)
108         snprintf(p, cpu_reg_names_size, "r%dH", i);
109         cpu_gprh[i] = tcg_global_mem_new_i32(TCG_AREG0,
110                                              offsetof(CPUPPCState, gprh[i]), p);
111         p += (i < 10) ? 4 : 5;
112         cpu_reg_names_size -= (i < 10) ? 4 : 5;
113 #endif
114
115         snprintf(p, cpu_reg_names_size, "fp%d", i);
116         cpu_fpr[i] = tcg_global_mem_new_i64(TCG_AREG0,
117                                             offsetof(CPUPPCState, fpr[i]), p);
118         p += (i < 10) ? 4 : 5;
119         cpu_reg_names_size -= (i < 10) ? 4 : 5;
120
121         snprintf(p, cpu_reg_names_size, "avr%dH", i);
122 #ifdef HOST_WORDS_BIGENDIAN
123         cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
124                                              offsetof(CPUPPCState, avr[i].u64[0]), p);
125 #else
126         cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
127                                              offsetof(CPUPPCState, avr[i].u64[1]), p);
128 #endif
129         p += (i < 10) ? 6 : 7;
130         cpu_reg_names_size -= (i < 10) ? 6 : 7;
131
132         snprintf(p, cpu_reg_names_size, "avr%dL", i);
133 #ifdef HOST_WORDS_BIGENDIAN
134         cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
135                                              offsetof(CPUPPCState, avr[i].u64[1]), p);
136 #else
137         cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
138                                              offsetof(CPUPPCState, avr[i].u64[0]), p);
139 #endif
140         p += (i < 10) ? 6 : 7;
141         cpu_reg_names_size -= (i < 10) ? 6 : 7;
142         snprintf(p, cpu_reg_names_size, "vsr%d", i);
143         cpu_vsr[i] = tcg_global_mem_new_i64(TCG_AREG0,
144                                              offsetof(CPUPPCState, vsr[i]), p);
145         p += (i < 10) ? 5 : 6;
146         cpu_reg_names_size -= (i < 10) ? 5 : 6;
147     }
148
149     cpu_nip = tcg_global_mem_new(TCG_AREG0,
150                                  offsetof(CPUPPCState, nip), "nip");
151
152     cpu_msr = tcg_global_mem_new(TCG_AREG0,
153                                  offsetof(CPUPPCState, msr), "msr");
154
155     cpu_ctr = tcg_global_mem_new(TCG_AREG0,
156                                  offsetof(CPUPPCState, ctr), "ctr");
157
158     cpu_lr = tcg_global_mem_new(TCG_AREG0,
159                                 offsetof(CPUPPCState, lr), "lr");
160
161 #if defined(TARGET_PPC64)
162     cpu_cfar = tcg_global_mem_new(TCG_AREG0,
163                                   offsetof(CPUPPCState, cfar), "cfar");
164 #endif
165
166     cpu_xer = tcg_global_mem_new(TCG_AREG0,
167                                  offsetof(CPUPPCState, xer), "xer");
168     cpu_so = tcg_global_mem_new(TCG_AREG0,
169                                 offsetof(CPUPPCState, so), "SO");
170     cpu_ov = tcg_global_mem_new(TCG_AREG0,
171                                 offsetof(CPUPPCState, ov), "OV");
172     cpu_ca = tcg_global_mem_new(TCG_AREG0,
173                                 offsetof(CPUPPCState, ca), "CA");
174
175     cpu_reserve = tcg_global_mem_new(TCG_AREG0,
176                                      offsetof(CPUPPCState, reserve_addr),
177                                      "reserve_addr");
178
179     cpu_fpscr = tcg_global_mem_new(TCG_AREG0,
180                                    offsetof(CPUPPCState, fpscr), "fpscr");
181
182     cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0,
183                                              offsetof(CPUPPCState, access_type), "access_type");
184
185     done_init = 1;
186 }
187
188 /* internal defines */
189 typedef struct DisasContext {
190     struct TranslationBlock *tb;
191     target_ulong nip;
192     uint32_t opcode;
193     uint32_t exception;
194     /* Routine used to access memory */
195     int mem_idx;
196     int access_type;
197     /* Translation flags */
198     int le_mode;
199 #if defined(TARGET_PPC64)
200     int sf_mode;
201     int has_cfar;
202 #endif
203     int fpu_enabled;
204     int altivec_enabled;
205     int vsx_enabled;
206     int spe_enabled;
207     ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
208     int singlestep_enabled;
209     uint64_t insns_flags;
210     uint64_t insns_flags2;
211 } DisasContext;
212
213 /* True when active word size < size of target_long.  */
214 #ifdef TARGET_PPC64
215 # define NARROW_MODE(C)  (!(C)->sf_mode)
216 #else
217 # define NARROW_MODE(C)  0
218 #endif
219
220 struct opc_handler_t {
221     /* invalid bits for instruction 1 (Rc(opcode) == 0) */
222     uint32_t inval1;
223     /* invalid bits for instruction 2 (Rc(opcode) == 1) */
224     uint32_t inval2;
225     /* instruction type */
226     uint64_t type;
227     /* extended instruction type */
228     uint64_t type2;
229     /* handler */
230     void (*handler)(DisasContext *ctx);
231 #if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
232     const char *oname;
233 #endif
234 #if defined(DO_PPC_STATISTICS)
235     uint64_t count;
236 #endif
237 };
238
239 static inline void gen_reset_fpstatus(void)
240 {
241     gen_helper_reset_fpstatus(cpu_env);
242 }
243
244 static inline void gen_compute_fprf(TCGv_i64 arg, int set_fprf, int set_rc)
245 {
246     TCGv_i32 t0 = tcg_temp_new_i32();
247
248     if (set_fprf != 0) {
249         /* This case might be optimized later */
250         tcg_gen_movi_i32(t0, 1);
251         gen_helper_compute_fprf(t0, cpu_env, arg, t0);
252         if (unlikely(set_rc)) {
253             tcg_gen_mov_i32(cpu_crf[1], t0);
254         }
255         gen_helper_float_check_status(cpu_env);
256     } else if (unlikely(set_rc)) {
257         /* We always need to compute fpcc */
258         tcg_gen_movi_i32(t0, 0);
259         gen_helper_compute_fprf(t0, cpu_env, arg, t0);
260         tcg_gen_mov_i32(cpu_crf[1], t0);
261     }
262
263     tcg_temp_free_i32(t0);
264 }
265
266 static inline void gen_set_access_type(DisasContext *ctx, int access_type)
267 {
268     if (ctx->access_type != access_type) {
269         tcg_gen_movi_i32(cpu_access_type, access_type);
270         ctx->access_type = access_type;
271     }
272 }
273
274 static inline void gen_update_nip(DisasContext *ctx, target_ulong nip)
275 {
276     if (NARROW_MODE(ctx)) {
277         nip = (uint32_t)nip;
278     }
279     tcg_gen_movi_tl(cpu_nip, nip);
280 }
281
282 static inline void gen_exception_err(DisasContext *ctx, uint32_t excp, uint32_t error)
283 {
284     TCGv_i32 t0, t1;
285     if (ctx->exception == POWERPC_EXCP_NONE) {
286         gen_update_nip(ctx, ctx->nip);
287     }
288     t0 = tcg_const_i32(excp);
289     t1 = tcg_const_i32(error);
290     gen_helper_raise_exception_err(cpu_env, t0, t1);
291     tcg_temp_free_i32(t0);
292     tcg_temp_free_i32(t1);
293     ctx->exception = (excp);
294 }
295
296 static inline void gen_exception(DisasContext *ctx, uint32_t excp)
297 {
298     TCGv_i32 t0;
299     if (ctx->exception == POWERPC_EXCP_NONE) {
300         gen_update_nip(ctx, ctx->nip);
301     }
302     t0 = tcg_const_i32(excp);
303     gen_helper_raise_exception(cpu_env, t0);
304     tcg_temp_free_i32(t0);
305     ctx->exception = (excp);
306 }
307
308 static inline void gen_debug_exception(DisasContext *ctx)
309 {
310     TCGv_i32 t0;
311
312     if ((ctx->exception != POWERPC_EXCP_BRANCH) &&
313         (ctx->exception != POWERPC_EXCP_SYNC)) {
314         gen_update_nip(ctx, ctx->nip);
315     }
316     t0 = tcg_const_i32(EXCP_DEBUG);
317     gen_helper_raise_exception(cpu_env, t0);
318     tcg_temp_free_i32(t0);
319 }
320
321 static inline void gen_inval_exception(DisasContext *ctx, uint32_t error)
322 {
323     gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_INVAL | error);
324 }
325
326 /* Stop translation */
327 static inline void gen_stop_exception(DisasContext *ctx)
328 {
329     gen_update_nip(ctx, ctx->nip);
330     ctx->exception = POWERPC_EXCP_STOP;
331 }
332
333 /* No need to update nip here, as execution flow will change */
334 static inline void gen_sync_exception(DisasContext *ctx)
335 {
336     ctx->exception = POWERPC_EXCP_SYNC;
337 }
338
339 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type)                      \
340 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
341
342 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2)             \
343 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
344
345 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type)               \
346 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
347
348 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2)      \
349 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
350
351 typedef struct opcode_t {
352     unsigned char opc1, opc2, opc3;
353 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
354     unsigned char pad[5];
355 #else
356     unsigned char pad[1];
357 #endif
358     opc_handler_t handler;
359     const char *oname;
360 } opcode_t;
361
362 /*****************************************************************************/
363 /***                           Instruction decoding                        ***/
364 #define EXTRACT_HELPER(name, shift, nb)                                       \
365 static inline uint32_t name(uint32_t opcode)                                  \
366 {                                                                             \
367     return (opcode >> (shift)) & ((1 << (nb)) - 1);                           \
368 }
369
370 #define EXTRACT_SHELPER(name, shift, nb)                                      \
371 static inline int32_t name(uint32_t opcode)                                   \
372 {                                                                             \
373     return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1));                \
374 }
375
376 #define EXTRACT_HELPER_SPLIT(name, shift1, nb1, shift2, nb2)                  \
377 static inline uint32_t name(uint32_t opcode)                                  \
378 {                                                                             \
379     return (((opcode >> (shift1)) & ((1 << (nb1)) - 1)) << nb2) |             \
380             ((opcode >> (shift2)) & ((1 << (nb2)) - 1));                      \
381 }
382 /* Opcode part 1 */
383 EXTRACT_HELPER(opc1, 26, 6);
384 /* Opcode part 2 */
385 EXTRACT_HELPER(opc2, 1, 5);
386 /* Opcode part 3 */
387 EXTRACT_HELPER(opc3, 6, 5);
388 /* Update Cr0 flags */
389 EXTRACT_HELPER(Rc, 0, 1);
390 /* Destination */
391 EXTRACT_HELPER(rD, 21, 5);
392 /* Source */
393 EXTRACT_HELPER(rS, 21, 5);
394 /* First operand */
395 EXTRACT_HELPER(rA, 16, 5);
396 /* Second operand */
397 EXTRACT_HELPER(rB, 11, 5);
398 /* Third operand */
399 EXTRACT_HELPER(rC, 6, 5);
400 /***                               Get CRn                                 ***/
401 EXTRACT_HELPER(crfD, 23, 3);
402 EXTRACT_HELPER(crfS, 18, 3);
403 EXTRACT_HELPER(crbD, 21, 5);
404 EXTRACT_HELPER(crbA, 16, 5);
405 EXTRACT_HELPER(crbB, 11, 5);
406 /* SPR / TBL */
407 EXTRACT_HELPER(_SPR, 11, 10);
408 static inline uint32_t SPR(uint32_t opcode)
409 {
410     uint32_t sprn = _SPR(opcode);
411
412     return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
413 }
414 /***                              Get constants                            ***/
415 EXTRACT_HELPER(IMM, 12, 8);
416 /* 16 bits signed immediate value */
417 EXTRACT_SHELPER(SIMM, 0, 16);
418 /* 16 bits unsigned immediate value */
419 EXTRACT_HELPER(UIMM, 0, 16);
420 /* 5 bits signed immediate value */
421 EXTRACT_HELPER(SIMM5, 16, 5);
422 /* 5 bits signed immediate value */
423 EXTRACT_HELPER(UIMM5, 16, 5);
424 /* Bit count */
425 EXTRACT_HELPER(NB, 11, 5);
426 /* Shift count */
427 EXTRACT_HELPER(SH, 11, 5);
428 /* Vector shift count */
429 EXTRACT_HELPER(VSH, 6, 4);
430 /* Mask start */
431 EXTRACT_HELPER(MB, 6, 5);
432 /* Mask end */
433 EXTRACT_HELPER(ME, 1, 5);
434 /* Trap operand */
435 EXTRACT_HELPER(TO, 21, 5);
436
437 EXTRACT_HELPER(CRM, 12, 8);
438 EXTRACT_HELPER(SR, 16, 4);
439
440 /* mtfsf/mtfsfi */
441 EXTRACT_HELPER(FPBF, 23, 3);
442 EXTRACT_HELPER(FPIMM, 12, 4);
443 EXTRACT_HELPER(FPL, 25, 1);
444 EXTRACT_HELPER(FPFLM, 17, 8);
445 EXTRACT_HELPER(FPW, 16, 1);
446
447 /***                            Jump target decoding                       ***/
448 /* Displacement */
449 EXTRACT_SHELPER(d, 0, 16);
450 /* Immediate address */
451 static inline target_ulong LI(uint32_t opcode)
452 {
453     return (opcode >> 0) & 0x03FFFFFC;
454 }
455
456 static inline uint32_t BD(uint32_t opcode)
457 {
458     return (opcode >> 0) & 0xFFFC;
459 }
460
461 EXTRACT_HELPER(BO, 21, 5);
462 EXTRACT_HELPER(BI, 16, 5);
463 /* Absolute/relative address */
464 EXTRACT_HELPER(AA, 1, 1);
465 /* Link */
466 EXTRACT_HELPER(LK, 0, 1);
467
468 /* Create a mask between <start> and <end> bits */
469 static inline target_ulong MASK(uint32_t start, uint32_t end)
470 {
471     target_ulong ret;
472
473 #if defined(TARGET_PPC64)
474     if (likely(start == 0)) {
475         ret = UINT64_MAX << (63 - end);
476     } else if (likely(end == 63)) {
477         ret = UINT64_MAX >> start;
478     }
479 #else
480     if (likely(start == 0)) {
481         ret = UINT32_MAX << (31  - end);
482     } else if (likely(end == 31)) {
483         ret = UINT32_MAX >> start;
484     }
485 #endif
486     else {
487         ret = (((target_ulong)(-1ULL)) >> (start)) ^
488             (((target_ulong)(-1ULL) >> (end)) >> 1);
489         if (unlikely(start > end))
490             return ~ret;
491     }
492
493     return ret;
494 }
495
496 EXTRACT_HELPER_SPLIT(xT, 0, 1, 21, 5);
497 EXTRACT_HELPER_SPLIT(xS, 0, 1, 21, 5);
498 EXTRACT_HELPER_SPLIT(xA, 2, 1, 16, 5);
499 EXTRACT_HELPER_SPLIT(xB, 1, 1, 11, 5);
500 EXTRACT_HELPER_SPLIT(xC, 3, 1,  6, 5);
501 EXTRACT_HELPER(DM, 8, 2);
502 EXTRACT_HELPER(UIM, 16, 2);
503 EXTRACT_HELPER(SHW, 8, 2);
504 /*****************************************************************************/
505 /* PowerPC instructions table                                                */
506
507 #if defined(DO_PPC_STATISTICS)
508 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2)                    \
509 {                                                                             \
510     .opc1 = op1,                                                              \
511     .opc2 = op2,                                                              \
512     .opc3 = op3,                                                              \
513     .pad  = { 0, },                                                           \
514     .handler = {                                                              \
515         .inval1  = invl,                                                      \
516         .type = _typ,                                                         \
517         .type2 = _typ2,                                                       \
518         .handler = &gen_##name,                                               \
519         .oname = stringify(name),                                             \
520     },                                                                        \
521     .oname = stringify(name),                                                 \
522 }
523 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2)       \
524 {                                                                             \
525     .opc1 = op1,                                                              \
526     .opc2 = op2,                                                              \
527     .opc3 = op3,                                                              \
528     .pad  = { 0, },                                                           \
529     .handler = {                                                              \
530         .inval1  = invl1,                                                     \
531         .inval2  = invl2,                                                     \
532         .type = _typ,                                                         \
533         .type2 = _typ2,                                                       \
534         .handler = &gen_##name,                                               \
535         .oname = stringify(name),                                             \
536     },                                                                        \
537     .oname = stringify(name),                                                 \
538 }
539 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2)             \
540 {                                                                             \
541     .opc1 = op1,                                                              \
542     .opc2 = op2,                                                              \
543     .opc3 = op3,                                                              \
544     .pad  = { 0, },                                                           \
545     .handler = {                                                              \
546         .inval1  = invl,                                                      \
547         .type = _typ,                                                         \
548         .type2 = _typ2,                                                       \
549         .handler = &gen_##name,                                               \
550         .oname = onam,                                                        \
551     },                                                                        \
552     .oname = onam,                                                            \
553 }
554 #else
555 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2)                    \
556 {                                                                             \
557     .opc1 = op1,                                                              \
558     .opc2 = op2,                                                              \
559     .opc3 = op3,                                                              \
560     .pad  = { 0, },                                                           \
561     .handler = {                                                              \
562         .inval1  = invl,                                                      \
563         .type = _typ,                                                         \
564         .type2 = _typ2,                                                       \
565         .handler = &gen_##name,                                               \
566     },                                                                        \
567     .oname = stringify(name),                                                 \
568 }
569 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2)       \
570 {                                                                             \
571     .opc1 = op1,                                                              \
572     .opc2 = op2,                                                              \
573     .opc3 = op3,                                                              \
574     .pad  = { 0, },                                                           \
575     .handler = {                                                              \
576         .inval1  = invl1,                                                     \
577         .inval2  = invl2,                                                     \
578         .type = _typ,                                                         \
579         .type2 = _typ2,                                                       \
580         .handler = &gen_##name,                                               \
581     },                                                                        \
582     .oname = stringify(name),                                                 \
583 }
584 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2)             \
585 {                                                                             \
586     .opc1 = op1,                                                              \
587     .opc2 = op2,                                                              \
588     .opc3 = op3,                                                              \
589     .pad  = { 0, },                                                           \
590     .handler = {                                                              \
591         .inval1  = invl,                                                      \
592         .type = _typ,                                                         \
593         .type2 = _typ2,                                                       \
594         .handler = &gen_##name,                                               \
595     },                                                                        \
596     .oname = onam,                                                            \
597 }
598 #endif
599
600 /* SPR load/store helpers */
601 static inline void gen_load_spr(TCGv t, int reg)
602 {
603     tcg_gen_ld_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
604 }
605
606 static inline void gen_store_spr(int reg, TCGv t)
607 {
608     tcg_gen_st_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
609 }
610
611 /* Invalid instruction */
612 static void gen_invalid(DisasContext *ctx)
613 {
614     gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
615 }
616
617 static opc_handler_t invalid_handler = {
618     .inval1  = 0xFFFFFFFF,
619     .inval2  = 0xFFFFFFFF,
620     .type    = PPC_NONE,
621     .type2   = PPC_NONE,
622     .handler = gen_invalid,
623 };
624
625 /***                           Integer comparison                          ***/
626
627 static inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf)
628 {
629     TCGv t0 = tcg_temp_new();
630     TCGv_i32 t1 = tcg_temp_new_i32();
631
632     tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_so);
633
634     tcg_gen_setcond_tl((s ? TCG_COND_LT: TCG_COND_LTU), t0, arg0, arg1);
635     tcg_gen_trunc_tl_i32(t1, t0);
636     tcg_gen_shli_i32(t1, t1, CRF_LT);
637     tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
638
639     tcg_gen_setcond_tl((s ? TCG_COND_GT: TCG_COND_GTU), t0, arg0, arg1);
640     tcg_gen_trunc_tl_i32(t1, t0);
641     tcg_gen_shli_i32(t1, t1, CRF_GT);
642     tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
643
644     tcg_gen_setcond_tl(TCG_COND_EQ, t0, arg0, arg1);
645     tcg_gen_trunc_tl_i32(t1, t0);
646     tcg_gen_shli_i32(t1, t1, CRF_EQ);
647     tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
648
649     tcg_temp_free(t0);
650     tcg_temp_free_i32(t1);
651 }
652
653 static inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf)
654 {
655     TCGv t0 = tcg_const_tl(arg1);
656     gen_op_cmp(arg0, t0, s, crf);
657     tcg_temp_free(t0);
658 }
659
660 static inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf)
661 {
662     TCGv t0, t1;
663     t0 = tcg_temp_new();
664     t1 = tcg_temp_new();
665     if (s) {
666         tcg_gen_ext32s_tl(t0, arg0);
667         tcg_gen_ext32s_tl(t1, arg1);
668     } else {
669         tcg_gen_ext32u_tl(t0, arg0);
670         tcg_gen_ext32u_tl(t1, arg1);
671     }
672     gen_op_cmp(t0, t1, s, crf);
673     tcg_temp_free(t1);
674     tcg_temp_free(t0);
675 }
676
677 static inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf)
678 {
679     TCGv t0 = tcg_const_tl(arg1);
680     gen_op_cmp32(arg0, t0, s, crf);
681     tcg_temp_free(t0);
682 }
683
684 static inline void gen_set_Rc0(DisasContext *ctx, TCGv reg)
685 {
686     if (NARROW_MODE(ctx)) {
687         gen_op_cmpi32(reg, 0, 1, 0);
688     } else {
689         gen_op_cmpi(reg, 0, 1, 0);
690     }
691 }
692
693 /* cmp */
694 static void gen_cmp(DisasContext *ctx)
695 {
696     if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
697         gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
698                    1, crfD(ctx->opcode));
699     } else {
700         gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
701                      1, crfD(ctx->opcode));
702     }
703 }
704
705 /* cmpi */
706 static void gen_cmpi(DisasContext *ctx)
707 {
708     if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
709         gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
710                     1, crfD(ctx->opcode));
711     } else {
712         gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
713                       1, crfD(ctx->opcode));
714     }
715 }
716
717 /* cmpl */
718 static void gen_cmpl(DisasContext *ctx)
719 {
720     if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
721         gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
722                    0, crfD(ctx->opcode));
723     } else {
724         gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
725                      0, crfD(ctx->opcode));
726     }
727 }
728
729 /* cmpli */
730 static void gen_cmpli(DisasContext *ctx)
731 {
732     if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
733         gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
734                     0, crfD(ctx->opcode));
735     } else {
736         gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
737                       0, crfD(ctx->opcode));
738     }
739 }
740
741 /* isel (PowerPC 2.03 specification) */
742 static void gen_isel(DisasContext *ctx)
743 {
744     int l1, l2;
745     uint32_t bi = rC(ctx->opcode);
746     uint32_t mask;
747     TCGv_i32 t0;
748
749     l1 = gen_new_label();
750     l2 = gen_new_label();
751
752     mask = 1 << (3 - (bi & 0x03));
753     t0 = tcg_temp_new_i32();
754     tcg_gen_andi_i32(t0, cpu_crf[bi >> 2], mask);
755     tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
756     if (rA(ctx->opcode) == 0)
757         tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
758     else
759         tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
760     tcg_gen_br(l2);
761     gen_set_label(l1);
762     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
763     gen_set_label(l2);
764     tcg_temp_free_i32(t0);
765 }
766
767 /* cmpb: PowerPC 2.05 specification */
768 static void gen_cmpb(DisasContext *ctx)
769 {
770     gen_helper_cmpb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)],
771                     cpu_gpr[rB(ctx->opcode)]);
772 }
773
774 /***                           Integer arithmetic                          ***/
775
776 static inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0,
777                                            TCGv arg1, TCGv arg2, int sub)
778 {
779     TCGv t0 = tcg_temp_new();
780
781     tcg_gen_xor_tl(cpu_ov, arg0, arg2);
782     tcg_gen_xor_tl(t0, arg1, arg2);
783     if (sub) {
784         tcg_gen_and_tl(cpu_ov, cpu_ov, t0);
785     } else {
786         tcg_gen_andc_tl(cpu_ov, cpu_ov, t0);
787     }
788     tcg_temp_free(t0);
789     if (NARROW_MODE(ctx)) {
790         tcg_gen_ext32s_tl(cpu_ov, cpu_ov);
791     }
792     tcg_gen_shri_tl(cpu_ov, cpu_ov, TARGET_LONG_BITS - 1);
793     tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
794 }
795
796 /* Common add function */
797 static inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1,
798                                     TCGv arg2, bool add_ca, bool compute_ca,
799                                     bool compute_ov, bool compute_rc0)
800 {
801     TCGv t0 = ret;
802
803     if (compute_ca || compute_ov) {
804         t0 = tcg_temp_new();
805     }
806
807     if (compute_ca) {
808         if (NARROW_MODE(ctx)) {
809             /* Caution: a non-obvious corner case of the spec is that we
810                must produce the *entire* 64-bit addition, but produce the
811                carry into bit 32.  */
812             TCGv t1 = tcg_temp_new();
813             tcg_gen_xor_tl(t1, arg1, arg2);        /* add without carry */
814             tcg_gen_add_tl(t0, arg1, arg2);
815             if (add_ca) {
816                 tcg_gen_add_tl(t0, t0, cpu_ca);
817             }
818             tcg_gen_xor_tl(cpu_ca, t0, t1);        /* bits changed w/ carry */
819             tcg_temp_free(t1);
820             tcg_gen_shri_tl(cpu_ca, cpu_ca, 32);   /* extract bit 32 */
821             tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
822         } else {
823             TCGv zero = tcg_const_tl(0);
824             if (add_ca) {
825                 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, cpu_ca, zero);
826                 tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, arg2, zero);
827             } else {
828                 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, arg2, zero);
829             }
830             tcg_temp_free(zero);
831         }
832     } else {
833         tcg_gen_add_tl(t0, arg1, arg2);
834         if (add_ca) {
835             tcg_gen_add_tl(t0, t0, cpu_ca);
836         }
837     }
838
839     if (compute_ov) {
840         gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0);
841     }
842     if (unlikely(compute_rc0)) {
843         gen_set_Rc0(ctx, t0);
844     }
845
846     if (!TCGV_EQUAL(t0, ret)) {
847         tcg_gen_mov_tl(ret, t0);
848         tcg_temp_free(t0);
849     }
850 }
851 /* Add functions with two operands */
852 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov)         \
853 static void glue(gen_, name)(DisasContext *ctx)                               \
854 {                                                                             \
855     gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)],                           \
856                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],      \
857                      add_ca, compute_ca, compute_ov, Rc(ctx->opcode));        \
858 }
859 /* Add functions with one operand and one immediate */
860 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val,                        \
861                                 add_ca, compute_ca, compute_ov)               \
862 static void glue(gen_, name)(DisasContext *ctx)                               \
863 {                                                                             \
864     TCGv t0 = tcg_const_tl(const_val);                                        \
865     gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)],                           \
866                      cpu_gpr[rA(ctx->opcode)], t0,                            \
867                      add_ca, compute_ca, compute_ov, Rc(ctx->opcode));        \
868     tcg_temp_free(t0);                                                        \
869 }
870
871 /* add  add.  addo  addo. */
872 GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
873 GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
874 /* addc  addc.  addco  addco. */
875 GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
876 GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
877 /* adde  adde.  addeo  addeo. */
878 GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
879 GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
880 /* addme  addme.  addmeo  addmeo.  */
881 GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
882 GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
883 /* addze  addze.  addzeo  addzeo.*/
884 GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
885 GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
886 /* addi */
887 static void gen_addi(DisasContext *ctx)
888 {
889     target_long simm = SIMM(ctx->opcode);
890
891     if (rA(ctx->opcode) == 0) {
892         /* li case */
893         tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm);
894     } else {
895         tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
896                         cpu_gpr[rA(ctx->opcode)], simm);
897     }
898 }
899 /* addic  addic.*/
900 static inline void gen_op_addic(DisasContext *ctx, bool compute_rc0)
901 {
902     TCGv c = tcg_const_tl(SIMM(ctx->opcode));
903     gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
904                      c, 0, 1, 0, compute_rc0);
905     tcg_temp_free(c);
906 }
907
908 static void gen_addic(DisasContext *ctx)
909 {
910     gen_op_addic(ctx, 0);
911 }
912
913 static void gen_addic_(DisasContext *ctx)
914 {
915     gen_op_addic(ctx, 1);
916 }
917
918 /* addis */
919 static void gen_addis(DisasContext *ctx)
920 {
921     target_long simm = SIMM(ctx->opcode);
922
923     if (rA(ctx->opcode) == 0) {
924         /* lis case */
925         tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16);
926     } else {
927         tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
928                         cpu_gpr[rA(ctx->opcode)], simm << 16);
929     }
930 }
931
932 static inline void gen_op_arith_divw(DisasContext *ctx, TCGv ret, TCGv arg1,
933                                      TCGv arg2, int sign, int compute_ov)
934 {
935     int l1 = gen_new_label();
936     int l2 = gen_new_label();
937     TCGv_i32 t0 = tcg_temp_local_new_i32();
938     TCGv_i32 t1 = tcg_temp_local_new_i32();
939
940     tcg_gen_trunc_tl_i32(t0, arg1);
941     tcg_gen_trunc_tl_i32(t1, arg2);
942     tcg_gen_brcondi_i32(TCG_COND_EQ, t1, 0, l1);
943     if (sign) {
944         int l3 = gen_new_label();
945         tcg_gen_brcondi_i32(TCG_COND_NE, t1, -1, l3);
946         tcg_gen_brcondi_i32(TCG_COND_EQ, t0, INT32_MIN, l1);
947         gen_set_label(l3);
948         tcg_gen_div_i32(t0, t0, t1);
949     } else {
950         tcg_gen_divu_i32(t0, t0, t1);
951     }
952     if (compute_ov) {
953         tcg_gen_movi_tl(cpu_ov, 0);
954     }
955     tcg_gen_br(l2);
956     gen_set_label(l1);
957     if (sign) {
958         tcg_gen_sari_i32(t0, t0, 31);
959     } else {
960         tcg_gen_movi_i32(t0, 0);
961     }
962     if (compute_ov) {
963         tcg_gen_movi_tl(cpu_ov, 1);
964         tcg_gen_movi_tl(cpu_so, 1);
965     }
966     gen_set_label(l2);
967     tcg_gen_extu_i32_tl(ret, t0);
968     tcg_temp_free_i32(t0);
969     tcg_temp_free_i32(t1);
970     if (unlikely(Rc(ctx->opcode) != 0))
971         gen_set_Rc0(ctx, ret);
972 }
973 /* Div functions */
974 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov)                      \
975 static void glue(gen_, name)(DisasContext *ctx)                                       \
976 {                                                                             \
977     gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)],                          \
978                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],      \
979                      sign, compute_ov);                                       \
980 }
981 /* divwu  divwu.  divwuo  divwuo.   */
982 GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0);
983 GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1);
984 /* divw  divw.  divwo  divwo.   */
985 GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0);
986 GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1);
987 #if defined(TARGET_PPC64)
988 static inline void gen_op_arith_divd(DisasContext *ctx, TCGv ret, TCGv arg1,
989                                      TCGv arg2, int sign, int compute_ov)
990 {
991     int l1 = gen_new_label();
992     int l2 = gen_new_label();
993
994     tcg_gen_brcondi_i64(TCG_COND_EQ, arg2, 0, l1);
995     if (sign) {
996         int l3 = gen_new_label();
997         tcg_gen_brcondi_i64(TCG_COND_NE, arg2, -1, l3);
998         tcg_gen_brcondi_i64(TCG_COND_EQ, arg1, INT64_MIN, l1);
999         gen_set_label(l3);
1000         tcg_gen_div_i64(ret, arg1, arg2);
1001     } else {
1002         tcg_gen_divu_i64(ret, arg1, arg2);
1003     }
1004     if (compute_ov) {
1005         tcg_gen_movi_tl(cpu_ov, 0);
1006     }
1007     tcg_gen_br(l2);
1008     gen_set_label(l1);
1009     if (sign) {
1010         tcg_gen_sari_i64(ret, arg1, 63);
1011     } else {
1012         tcg_gen_movi_i64(ret, 0);
1013     }
1014     if (compute_ov) {
1015         tcg_gen_movi_tl(cpu_ov, 1);
1016         tcg_gen_movi_tl(cpu_so, 1);
1017     }
1018     gen_set_label(l2);
1019     if (unlikely(Rc(ctx->opcode) != 0))
1020         gen_set_Rc0(ctx, ret);
1021 }
1022 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov)                      \
1023 static void glue(gen_, name)(DisasContext *ctx)                                       \
1024 {                                                                             \
1025     gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)],                          \
1026                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],     \
1027                       sign, compute_ov);                                      \
1028 }
1029 /* divwu  divwu.  divwuo  divwuo.   */
1030 GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0);
1031 GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1);
1032 /* divw  divw.  divwo  divwo.   */
1033 GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0);
1034 GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1);
1035 #endif
1036
1037 /* mulhw  mulhw. */
1038 static void gen_mulhw(DisasContext *ctx)
1039 {
1040     TCGv_i32 t0 = tcg_temp_new_i32();
1041     TCGv_i32 t1 = tcg_temp_new_i32();
1042
1043     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1044     tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1045     tcg_gen_muls2_i32(t0, t1, t0, t1);
1046     tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1047     tcg_temp_free_i32(t0);
1048     tcg_temp_free_i32(t1);
1049     if (unlikely(Rc(ctx->opcode) != 0))
1050         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1051 }
1052
1053 /* mulhwu  mulhwu.  */
1054 static void gen_mulhwu(DisasContext *ctx)
1055 {
1056     TCGv_i32 t0 = tcg_temp_new_i32();
1057     TCGv_i32 t1 = tcg_temp_new_i32();
1058
1059     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1060     tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1061     tcg_gen_mulu2_i32(t0, t1, t0, t1);
1062     tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1063     tcg_temp_free_i32(t0);
1064     tcg_temp_free_i32(t1);
1065     if (unlikely(Rc(ctx->opcode) != 0))
1066         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1067 }
1068
1069 /* mullw  mullw. */
1070 static void gen_mullw(DisasContext *ctx)
1071 {
1072     tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1073                    cpu_gpr[rB(ctx->opcode)]);
1074     tcg_gen_ext32s_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)]);
1075     if (unlikely(Rc(ctx->opcode) != 0))
1076         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1077 }
1078
1079 /* mullwo  mullwo. */
1080 static void gen_mullwo(DisasContext *ctx)
1081 {
1082     TCGv_i32 t0 = tcg_temp_new_i32();
1083     TCGv_i32 t1 = tcg_temp_new_i32();
1084
1085     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1086     tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1087     tcg_gen_muls2_i32(t0, t1, t0, t1);
1088     tcg_gen_ext_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
1089
1090     tcg_gen_sari_i32(t0, t0, 31);
1091     tcg_gen_setcond_i32(TCG_COND_NE, t0, t0, t1);
1092     tcg_gen_extu_i32_tl(cpu_ov, t0);
1093     tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
1094
1095     tcg_temp_free_i32(t0);
1096     tcg_temp_free_i32(t1);
1097     if (unlikely(Rc(ctx->opcode) != 0))
1098         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1099 }
1100
1101 /* mulli */
1102 static void gen_mulli(DisasContext *ctx)
1103 {
1104     tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1105                     SIMM(ctx->opcode));
1106 }
1107
1108 #if defined(TARGET_PPC64)
1109 /* mulhd  mulhd. */
1110 static void gen_mulhd(DisasContext *ctx)
1111 {
1112     TCGv lo = tcg_temp_new();
1113     tcg_gen_muls2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1114                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1115     tcg_temp_free(lo);
1116     if (unlikely(Rc(ctx->opcode) != 0)) {
1117         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1118     }
1119 }
1120
1121 /* mulhdu  mulhdu. */
1122 static void gen_mulhdu(DisasContext *ctx)
1123 {
1124     TCGv lo = tcg_temp_new();
1125     tcg_gen_mulu2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1126                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1127     tcg_temp_free(lo);
1128     if (unlikely(Rc(ctx->opcode) != 0)) {
1129         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1130     }
1131 }
1132
1133 /* mulld  mulld. */
1134 static void gen_mulld(DisasContext *ctx)
1135 {
1136     tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1137                    cpu_gpr[rB(ctx->opcode)]);
1138     if (unlikely(Rc(ctx->opcode) != 0))
1139         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1140 }
1141
1142 /* mulldo  mulldo. */
1143 static void gen_mulldo(DisasContext *ctx)
1144 {
1145     gen_helper_mulldo(cpu_gpr[rD(ctx->opcode)], cpu_env,
1146                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1147     if (unlikely(Rc(ctx->opcode) != 0)) {
1148         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1149     }
1150 }
1151 #endif
1152
1153 /* Common subf function */
1154 static inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1,
1155                                      TCGv arg2, bool add_ca, bool compute_ca,
1156                                      bool compute_ov, bool compute_rc0)
1157 {
1158     TCGv t0 = ret;
1159
1160     if (compute_ca || compute_ov) {
1161         t0 = tcg_temp_new();
1162     }
1163
1164     if (compute_ca) {
1165         /* dest = ~arg1 + arg2 [+ ca].  */
1166         if (NARROW_MODE(ctx)) {
1167             /* Caution: a non-obvious corner case of the spec is that we
1168                must produce the *entire* 64-bit addition, but produce the
1169                carry into bit 32.  */
1170             TCGv inv1 = tcg_temp_new();
1171             TCGv t1 = tcg_temp_new();
1172             tcg_gen_not_tl(inv1, arg1);
1173             if (add_ca) {
1174                 tcg_gen_add_tl(t0, arg2, cpu_ca);
1175             } else {
1176                 tcg_gen_addi_tl(t0, arg2, 1);
1177             }
1178             tcg_gen_xor_tl(t1, arg2, inv1);         /* add without carry */
1179             tcg_gen_add_tl(t0, t0, inv1);
1180             tcg_gen_xor_tl(cpu_ca, t0, t1);         /* bits changes w/ carry */
1181             tcg_temp_free(t1);
1182             tcg_gen_shri_tl(cpu_ca, cpu_ca, 32);    /* extract bit 32 */
1183             tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
1184         } else if (add_ca) {
1185             TCGv zero, inv1 = tcg_temp_new();
1186             tcg_gen_not_tl(inv1, arg1);
1187             zero = tcg_const_tl(0);
1188             tcg_gen_add2_tl(t0, cpu_ca, arg2, zero, cpu_ca, zero);
1189             tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, inv1, zero);
1190             tcg_temp_free(zero);
1191             tcg_temp_free(inv1);
1192         } else {
1193             tcg_gen_setcond_tl(TCG_COND_GEU, cpu_ca, arg2, arg1);
1194             tcg_gen_sub_tl(t0, arg2, arg1);
1195         }
1196     } else if (add_ca) {
1197         /* Since we're ignoring carry-out, we can simplify the
1198            standard ~arg1 + arg2 + ca to arg2 - arg1 + ca - 1.  */
1199         tcg_gen_sub_tl(t0, arg2, arg1);
1200         tcg_gen_add_tl(t0, t0, cpu_ca);
1201         tcg_gen_subi_tl(t0, t0, 1);
1202     } else {
1203         tcg_gen_sub_tl(t0, arg2, arg1);
1204     }
1205
1206     if (compute_ov) {
1207         gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1);
1208     }
1209     if (unlikely(compute_rc0)) {
1210         gen_set_Rc0(ctx, t0);
1211     }
1212
1213     if (!TCGV_EQUAL(t0, ret)) {
1214         tcg_gen_mov_tl(ret, t0);
1215         tcg_temp_free(t0);
1216     }
1217 }
1218 /* Sub functions with Two operands functions */
1219 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov)        \
1220 static void glue(gen_, name)(DisasContext *ctx)                               \
1221 {                                                                             \
1222     gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)],                          \
1223                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],     \
1224                       add_ca, compute_ca, compute_ov, Rc(ctx->opcode));       \
1225 }
1226 /* Sub functions with one operand and one immediate */
1227 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val,                       \
1228                                 add_ca, compute_ca, compute_ov)               \
1229 static void glue(gen_, name)(DisasContext *ctx)                               \
1230 {                                                                             \
1231     TCGv t0 = tcg_const_tl(const_val);                                        \
1232     gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)],                          \
1233                       cpu_gpr[rA(ctx->opcode)], t0,                           \
1234                       add_ca, compute_ca, compute_ov, Rc(ctx->opcode));       \
1235     tcg_temp_free(t0);                                                        \
1236 }
1237 /* subf  subf.  subfo  subfo. */
1238 GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
1239 GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
1240 /* subfc  subfc.  subfco  subfco. */
1241 GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
1242 GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
1243 /* subfe  subfe.  subfeo  subfo. */
1244 GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
1245 GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
1246 /* subfme  subfme.  subfmeo  subfmeo.  */
1247 GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
1248 GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
1249 /* subfze  subfze.  subfzeo  subfzeo.*/
1250 GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
1251 GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
1252
1253 /* subfic */
1254 static void gen_subfic(DisasContext *ctx)
1255 {
1256     TCGv c = tcg_const_tl(SIMM(ctx->opcode));
1257     gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1258                       c, 0, 1, 0, 0);
1259     tcg_temp_free(c);
1260 }
1261
1262 /* neg neg. nego nego. */
1263 static inline void gen_op_arith_neg(DisasContext *ctx, bool compute_ov)
1264 {
1265     TCGv zero = tcg_const_tl(0);
1266     gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1267                       zero, 0, 0, compute_ov, Rc(ctx->opcode));
1268     tcg_temp_free(zero);
1269 }
1270
1271 static void gen_neg(DisasContext *ctx)
1272 {
1273     gen_op_arith_neg(ctx, 0);
1274 }
1275
1276 static void gen_nego(DisasContext *ctx)
1277 {
1278     gen_op_arith_neg(ctx, 1);
1279 }
1280
1281 /***                            Integer logical                            ***/
1282 #define GEN_LOGICAL2(name, tcg_op, opc, type)                                 \
1283 static void glue(gen_, name)(DisasContext *ctx)                                       \
1284 {                                                                             \
1285     tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)],                \
1286        cpu_gpr[rB(ctx->opcode)]);                                             \
1287     if (unlikely(Rc(ctx->opcode) != 0))                                       \
1288         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);                           \
1289 }
1290
1291 #define GEN_LOGICAL1(name, tcg_op, opc, type)                                 \
1292 static void glue(gen_, name)(DisasContext *ctx)                                       \
1293 {                                                                             \
1294     tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);               \
1295     if (unlikely(Rc(ctx->opcode) != 0))                                       \
1296         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);                           \
1297 }
1298
1299 /* and & and. */
1300 GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER);
1301 /* andc & andc. */
1302 GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER);
1303
1304 /* andi. */
1305 static void gen_andi_(DisasContext *ctx)
1306 {
1307     tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode));
1308     gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1309 }
1310
1311 /* andis. */
1312 static void gen_andis_(DisasContext *ctx)
1313 {
1314     tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16);
1315     gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1316 }
1317
1318 /* cntlzw */
1319 static void gen_cntlzw(DisasContext *ctx)
1320 {
1321     gen_helper_cntlzw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1322     if (unlikely(Rc(ctx->opcode) != 0))
1323         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1324 }
1325 /* eqv & eqv. */
1326 GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER);
1327 /* extsb & extsb. */
1328 GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER);
1329 /* extsh & extsh. */
1330 GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER);
1331 /* nand & nand. */
1332 GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER);
1333 /* nor & nor. */
1334 GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
1335
1336 /* or & or. */
1337 static void gen_or(DisasContext *ctx)
1338 {
1339     int rs, ra, rb;
1340
1341     rs = rS(ctx->opcode);
1342     ra = rA(ctx->opcode);
1343     rb = rB(ctx->opcode);
1344     /* Optimisation for mr. ri case */
1345     if (rs != ra || rs != rb) {
1346         if (rs != rb)
1347             tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]);
1348         else
1349             tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]);
1350         if (unlikely(Rc(ctx->opcode) != 0))
1351             gen_set_Rc0(ctx, cpu_gpr[ra]);
1352     } else if (unlikely(Rc(ctx->opcode) != 0)) {
1353         gen_set_Rc0(ctx, cpu_gpr[rs]);
1354 #if defined(TARGET_PPC64)
1355     } else {
1356         int prio = 0;
1357
1358         switch (rs) {
1359         case 1:
1360             /* Set process priority to low */
1361             prio = 2;
1362             break;
1363         case 6:
1364             /* Set process priority to medium-low */
1365             prio = 3;
1366             break;
1367         case 2:
1368             /* Set process priority to normal */
1369             prio = 4;
1370             break;
1371 #if !defined(CONFIG_USER_ONLY)
1372         case 31:
1373             if (ctx->mem_idx > 0) {
1374                 /* Set process priority to very low */
1375                 prio = 1;
1376             }
1377             break;
1378         case 5:
1379             if (ctx->mem_idx > 0) {
1380                 /* Set process priority to medium-hight */
1381                 prio = 5;
1382             }
1383             break;
1384         case 3:
1385             if (ctx->mem_idx > 0) {
1386                 /* Set process priority to high */
1387                 prio = 6;
1388             }
1389             break;
1390         case 7:
1391             if (ctx->mem_idx > 1) {
1392                 /* Set process priority to very high */
1393                 prio = 7;
1394             }
1395             break;
1396 #endif
1397         default:
1398             /* nop */
1399             break;
1400         }
1401         if (prio) {
1402             TCGv t0 = tcg_temp_new();
1403             gen_load_spr(t0, SPR_PPR);
1404             tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL);
1405             tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50);
1406             gen_store_spr(SPR_PPR, t0);
1407             tcg_temp_free(t0);
1408         }
1409 #endif
1410     }
1411 }
1412 /* orc & orc. */
1413 GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER);
1414
1415 /* xor & xor. */
1416 static void gen_xor(DisasContext *ctx)
1417 {
1418     /* Optimisation for "set to zero" case */
1419     if (rS(ctx->opcode) != rB(ctx->opcode))
1420         tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1421     else
1422         tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
1423     if (unlikely(Rc(ctx->opcode) != 0))
1424         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1425 }
1426
1427 /* ori */
1428 static void gen_ori(DisasContext *ctx)
1429 {
1430     target_ulong uimm = UIMM(ctx->opcode);
1431
1432     if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1433         /* NOP */
1434         /* XXX: should handle special NOPs for POWER series */
1435         return;
1436     }
1437     tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1438 }
1439
1440 /* oris */
1441 static void gen_oris(DisasContext *ctx)
1442 {
1443     target_ulong uimm = UIMM(ctx->opcode);
1444
1445     if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1446         /* NOP */
1447         return;
1448     }
1449     tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1450 }
1451
1452 /* xori */
1453 static void gen_xori(DisasContext *ctx)
1454 {
1455     target_ulong uimm = UIMM(ctx->opcode);
1456
1457     if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1458         /* NOP */
1459         return;
1460     }
1461     tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
1462 }
1463
1464 /* xoris */
1465 static void gen_xoris(DisasContext *ctx)
1466 {
1467     target_ulong uimm = UIMM(ctx->opcode);
1468
1469     if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1470         /* NOP */
1471         return;
1472     }
1473     tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
1474 }
1475
1476 /* popcntb : PowerPC 2.03 specification */
1477 static void gen_popcntb(DisasContext *ctx)
1478 {
1479     gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1480 }
1481
1482 static void gen_popcntw(DisasContext *ctx)
1483 {
1484     gen_helper_popcntw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1485 }
1486
1487 #if defined(TARGET_PPC64)
1488 /* popcntd: PowerPC 2.06 specification */
1489 static void gen_popcntd(DisasContext *ctx)
1490 {
1491     gen_helper_popcntd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1492 }
1493 #endif
1494
1495 /* prtyw: PowerPC 2.05 specification */
1496 static void gen_prtyw(DisasContext *ctx)
1497 {
1498     TCGv ra = cpu_gpr[rA(ctx->opcode)];
1499     TCGv rs = cpu_gpr[rS(ctx->opcode)];
1500     TCGv t0 = tcg_temp_new();
1501     tcg_gen_shri_tl(t0, rs, 16);
1502     tcg_gen_xor_tl(ra, rs, t0);
1503     tcg_gen_shri_tl(t0, ra, 8);
1504     tcg_gen_xor_tl(ra, ra, t0);
1505     tcg_gen_andi_tl(ra, ra, (target_ulong)0x100000001ULL);
1506     tcg_temp_free(t0);
1507 }
1508
1509 #if defined(TARGET_PPC64)
1510 /* prtyd: PowerPC 2.05 specification */
1511 static void gen_prtyd(DisasContext *ctx)
1512 {
1513     TCGv ra = cpu_gpr[rA(ctx->opcode)];
1514     TCGv rs = cpu_gpr[rS(ctx->opcode)];
1515     TCGv t0 = tcg_temp_new();
1516     tcg_gen_shri_tl(t0, rs, 32);
1517     tcg_gen_xor_tl(ra, rs, t0);
1518     tcg_gen_shri_tl(t0, ra, 16);
1519     tcg_gen_xor_tl(ra, ra, t0);
1520     tcg_gen_shri_tl(t0, ra, 8);
1521     tcg_gen_xor_tl(ra, ra, t0);
1522     tcg_gen_andi_tl(ra, ra, 1);
1523     tcg_temp_free(t0);
1524 }
1525 #endif
1526
1527 #if defined(TARGET_PPC64)
1528 /* extsw & extsw. */
1529 GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B);
1530
1531 /* cntlzd */
1532 static void gen_cntlzd(DisasContext *ctx)
1533 {
1534     gen_helper_cntlzd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1535     if (unlikely(Rc(ctx->opcode) != 0))
1536         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1537 }
1538 #endif
1539
1540 /***                             Integer rotate                            ***/
1541
1542 /* rlwimi & rlwimi. */
1543 static void gen_rlwimi(DisasContext *ctx)
1544 {
1545     uint32_t mb, me, sh;
1546
1547     mb = MB(ctx->opcode);
1548     me = ME(ctx->opcode);
1549     sh = SH(ctx->opcode);
1550     if (likely(sh == 0 && mb == 0 && me == 31)) {
1551         tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1552     } else {
1553         target_ulong mask;
1554         TCGv t1;
1555         TCGv t0 = tcg_temp_new();
1556 #if defined(TARGET_PPC64)
1557         TCGv_i32 t2 = tcg_temp_new_i32();
1558         tcg_gen_trunc_i64_i32(t2, cpu_gpr[rS(ctx->opcode)]);
1559         tcg_gen_rotli_i32(t2, t2, sh);
1560         tcg_gen_extu_i32_i64(t0, t2);
1561         tcg_temp_free_i32(t2);
1562 #else
1563         tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1564 #endif
1565 #if defined(TARGET_PPC64)
1566         mb += 32;
1567         me += 32;
1568 #endif
1569         mask = MASK(mb, me);
1570         t1 = tcg_temp_new();
1571         tcg_gen_andi_tl(t0, t0, mask);
1572         tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1573         tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1574         tcg_temp_free(t0);
1575         tcg_temp_free(t1);
1576     }
1577     if (unlikely(Rc(ctx->opcode) != 0))
1578         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1579 }
1580
1581 /* rlwinm & rlwinm. */
1582 static void gen_rlwinm(DisasContext *ctx)
1583 {
1584     uint32_t mb, me, sh;
1585
1586     sh = SH(ctx->opcode);
1587     mb = MB(ctx->opcode);
1588     me = ME(ctx->opcode);
1589
1590     if (likely(mb == 0 && me == (31 - sh))) {
1591         if (likely(sh == 0)) {
1592             tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1593         } else {
1594             TCGv t0 = tcg_temp_new();
1595             tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1596             tcg_gen_shli_tl(t0, t0, sh);
1597             tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1598             tcg_temp_free(t0);
1599         }
1600     } else if (likely(sh != 0 && me == 31 && sh == (32 - mb))) {
1601         TCGv t0 = tcg_temp_new();
1602         tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1603         tcg_gen_shri_tl(t0, t0, mb);
1604         tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1605         tcg_temp_free(t0);
1606     } else {
1607         TCGv t0 = tcg_temp_new();
1608 #if defined(TARGET_PPC64)
1609         TCGv_i32 t1 = tcg_temp_new_i32();
1610         tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1611         tcg_gen_rotli_i32(t1, t1, sh);
1612         tcg_gen_extu_i32_i64(t0, t1);
1613         tcg_temp_free_i32(t1);
1614 #else
1615         tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1616 #endif
1617 #if defined(TARGET_PPC64)
1618         mb += 32;
1619         me += 32;
1620 #endif
1621         tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1622         tcg_temp_free(t0);
1623     }
1624     if (unlikely(Rc(ctx->opcode) != 0))
1625         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1626 }
1627
1628 /* rlwnm & rlwnm. */
1629 static void gen_rlwnm(DisasContext *ctx)
1630 {
1631     uint32_t mb, me;
1632     TCGv t0;
1633 #if defined(TARGET_PPC64)
1634     TCGv_i32 t1, t2;
1635 #endif
1636
1637     mb = MB(ctx->opcode);
1638     me = ME(ctx->opcode);
1639     t0 = tcg_temp_new();
1640     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1f);
1641 #if defined(TARGET_PPC64)
1642     t1 = tcg_temp_new_i32();
1643     t2 = tcg_temp_new_i32();
1644     tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1645     tcg_gen_trunc_i64_i32(t2, t0);
1646     tcg_gen_rotl_i32(t1, t1, t2);
1647     tcg_gen_extu_i32_i64(t0, t1);
1648     tcg_temp_free_i32(t1);
1649     tcg_temp_free_i32(t2);
1650 #else
1651     tcg_gen_rotl_i32(t0, cpu_gpr[rS(ctx->opcode)], t0);
1652 #endif
1653     if (unlikely(mb != 0 || me != 31)) {
1654 #if defined(TARGET_PPC64)
1655         mb += 32;
1656         me += 32;
1657 #endif
1658         tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1659     } else {
1660         tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1661     }
1662     tcg_temp_free(t0);
1663     if (unlikely(Rc(ctx->opcode) != 0))
1664         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1665 }
1666
1667 #if defined(TARGET_PPC64)
1668 #define GEN_PPC64_R2(name, opc1, opc2)                                        \
1669 static void glue(gen_, name##0)(DisasContext *ctx)                            \
1670 {                                                                             \
1671     gen_##name(ctx, 0);                                                       \
1672 }                                                                             \
1673                                                                               \
1674 static void glue(gen_, name##1)(DisasContext *ctx)                            \
1675 {                                                                             \
1676     gen_##name(ctx, 1);                                                       \
1677 }
1678 #define GEN_PPC64_R4(name, opc1, opc2)                                        \
1679 static void glue(gen_, name##0)(DisasContext *ctx)                            \
1680 {                                                                             \
1681     gen_##name(ctx, 0, 0);                                                    \
1682 }                                                                             \
1683                                                                               \
1684 static void glue(gen_, name##1)(DisasContext *ctx)                            \
1685 {                                                                             \
1686     gen_##name(ctx, 0, 1);                                                    \
1687 }                                                                             \
1688                                                                               \
1689 static void glue(gen_, name##2)(DisasContext *ctx)                            \
1690 {                                                                             \
1691     gen_##name(ctx, 1, 0);                                                    \
1692 }                                                                             \
1693                                                                               \
1694 static void glue(gen_, name##3)(DisasContext *ctx)                            \
1695 {                                                                             \
1696     gen_##name(ctx, 1, 1);                                                    \
1697 }
1698
1699 static inline void gen_rldinm(DisasContext *ctx, uint32_t mb, uint32_t me,
1700                               uint32_t sh)
1701 {
1702     if (likely(sh != 0 && mb == 0 && me == (63 - sh))) {
1703         tcg_gen_shli_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
1704     } else if (likely(sh != 0 && me == 63 && sh == (64 - mb))) {
1705         tcg_gen_shri_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], mb);
1706     } else {
1707         TCGv t0 = tcg_temp_new();
1708         tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1709         if (likely(mb == 0 && me == 63)) {
1710             tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1711         } else {
1712             tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1713         }
1714         tcg_temp_free(t0);
1715     }
1716     if (unlikely(Rc(ctx->opcode) != 0))
1717         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1718 }
1719 /* rldicl - rldicl. */
1720 static inline void gen_rldicl(DisasContext *ctx, int mbn, int shn)
1721 {
1722     uint32_t sh, mb;
1723
1724     sh = SH(ctx->opcode) | (shn << 5);
1725     mb = MB(ctx->opcode) | (mbn << 5);
1726     gen_rldinm(ctx, mb, 63, sh);
1727 }
1728 GEN_PPC64_R4(rldicl, 0x1E, 0x00);
1729 /* rldicr - rldicr. */
1730 static inline void gen_rldicr(DisasContext *ctx, int men, int shn)
1731 {
1732     uint32_t sh, me;
1733
1734     sh = SH(ctx->opcode) | (shn << 5);
1735     me = MB(ctx->opcode) | (men << 5);
1736     gen_rldinm(ctx, 0, me, sh);
1737 }
1738 GEN_PPC64_R4(rldicr, 0x1E, 0x02);
1739 /* rldic - rldic. */
1740 static inline void gen_rldic(DisasContext *ctx, int mbn, int shn)
1741 {
1742     uint32_t sh, mb;
1743
1744     sh = SH(ctx->opcode) | (shn << 5);
1745     mb = MB(ctx->opcode) | (mbn << 5);
1746     gen_rldinm(ctx, mb, 63 - sh, sh);
1747 }
1748 GEN_PPC64_R4(rldic, 0x1E, 0x04);
1749
1750 static inline void gen_rldnm(DisasContext *ctx, uint32_t mb, uint32_t me)
1751 {
1752     TCGv t0;
1753
1754     t0 = tcg_temp_new();
1755     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
1756     tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1757     if (unlikely(mb != 0 || me != 63)) {
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 /* rldcl - rldcl. */
1768 static inline void gen_rldcl(DisasContext *ctx, int mbn)
1769 {
1770     uint32_t mb;
1771
1772     mb = MB(ctx->opcode) | (mbn << 5);
1773     gen_rldnm(ctx, mb, 63);
1774 }
1775 GEN_PPC64_R2(rldcl, 0x1E, 0x08);
1776 /* rldcr - rldcr. */
1777 static inline void gen_rldcr(DisasContext *ctx, int men)
1778 {
1779     uint32_t me;
1780
1781     me = MB(ctx->opcode) | (men << 5);
1782     gen_rldnm(ctx, 0, me);
1783 }
1784 GEN_PPC64_R2(rldcr, 0x1E, 0x09);
1785 /* rldimi - rldimi. */
1786 static inline void gen_rldimi(DisasContext *ctx, int mbn, int shn)
1787 {
1788     uint32_t sh, mb, me;
1789
1790     sh = SH(ctx->opcode) | (shn << 5);
1791     mb = MB(ctx->opcode) | (mbn << 5);
1792     me = 63 - sh;
1793     if (unlikely(sh == 0 && mb == 0)) {
1794         tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1795     } else {
1796         TCGv t0, t1;
1797         target_ulong mask;
1798
1799         t0 = tcg_temp_new();
1800         tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
1801         t1 = tcg_temp_new();
1802         mask = MASK(mb, me);
1803         tcg_gen_andi_tl(t0, t0, mask);
1804         tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1805         tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1806         tcg_temp_free(t0);
1807         tcg_temp_free(t1);
1808     }
1809     if (unlikely(Rc(ctx->opcode) != 0))
1810         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1811 }
1812 GEN_PPC64_R4(rldimi, 0x1E, 0x06);
1813 #endif
1814
1815 /***                             Integer shift                             ***/
1816
1817 /* slw & slw. */
1818 static void gen_slw(DisasContext *ctx)
1819 {
1820     TCGv t0, t1;
1821
1822     t0 = tcg_temp_new();
1823     /* AND rS with a mask that is 0 when rB >= 0x20 */
1824 #if defined(TARGET_PPC64)
1825     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
1826     tcg_gen_sari_tl(t0, t0, 0x3f);
1827 #else
1828     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
1829     tcg_gen_sari_tl(t0, t0, 0x1f);
1830 #endif
1831     tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1832     t1 = tcg_temp_new();
1833     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
1834     tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1835     tcg_temp_free(t1);
1836     tcg_temp_free(t0);
1837     tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
1838     if (unlikely(Rc(ctx->opcode) != 0))
1839         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1840 }
1841
1842 /* sraw & sraw. */
1843 static void gen_sraw(DisasContext *ctx)
1844 {
1845     gen_helper_sraw(cpu_gpr[rA(ctx->opcode)], cpu_env,
1846                     cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1847     if (unlikely(Rc(ctx->opcode) != 0))
1848         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1849 }
1850
1851 /* srawi & srawi. */
1852 static void gen_srawi(DisasContext *ctx)
1853 {
1854     int sh = SH(ctx->opcode);
1855     TCGv dst = cpu_gpr[rA(ctx->opcode)];
1856     TCGv src = cpu_gpr[rS(ctx->opcode)];
1857     if (sh == 0) {
1858         tcg_gen_mov_tl(dst, src);
1859         tcg_gen_movi_tl(cpu_ca, 0);
1860     } else {
1861         TCGv t0;
1862         tcg_gen_ext32s_tl(dst, src);
1863         tcg_gen_andi_tl(cpu_ca, dst, (1ULL << sh) - 1);
1864         t0 = tcg_temp_new();
1865         tcg_gen_sari_tl(t0, dst, TARGET_LONG_BITS - 1);
1866         tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
1867         tcg_temp_free(t0);
1868         tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
1869         tcg_gen_sari_tl(dst, dst, sh);
1870     }
1871     if (unlikely(Rc(ctx->opcode) != 0)) {
1872         gen_set_Rc0(ctx, dst);
1873     }
1874 }
1875
1876 /* srw & srw. */
1877 static void gen_srw(DisasContext *ctx)
1878 {
1879     TCGv t0, t1;
1880
1881     t0 = tcg_temp_new();
1882     /* AND rS with a mask that is 0 when rB >= 0x20 */
1883 #if defined(TARGET_PPC64)
1884     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
1885     tcg_gen_sari_tl(t0, t0, 0x3f);
1886 #else
1887     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
1888     tcg_gen_sari_tl(t0, t0, 0x1f);
1889 #endif
1890     tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1891     tcg_gen_ext32u_tl(t0, t0);
1892     t1 = tcg_temp_new();
1893     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
1894     tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1895     tcg_temp_free(t1);
1896     tcg_temp_free(t0);
1897     if (unlikely(Rc(ctx->opcode) != 0))
1898         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1899 }
1900
1901 #if defined(TARGET_PPC64)
1902 /* sld & sld. */
1903 static void gen_sld(DisasContext *ctx)
1904 {
1905     TCGv t0, t1;
1906
1907     t0 = tcg_temp_new();
1908     /* AND rS with a mask that is 0 when rB >= 0x40 */
1909     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
1910     tcg_gen_sari_tl(t0, t0, 0x3f);
1911     tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1912     t1 = tcg_temp_new();
1913     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
1914     tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1915     tcg_temp_free(t1);
1916     tcg_temp_free(t0);
1917     if (unlikely(Rc(ctx->opcode) != 0))
1918         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1919 }
1920
1921 /* srad & srad. */
1922 static void gen_srad(DisasContext *ctx)
1923 {
1924     gen_helper_srad(cpu_gpr[rA(ctx->opcode)], cpu_env,
1925                     cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1926     if (unlikely(Rc(ctx->opcode) != 0))
1927         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1928 }
1929 /* sradi & sradi. */
1930 static inline void gen_sradi(DisasContext *ctx, int n)
1931 {
1932     int sh = SH(ctx->opcode) + (n << 5);
1933     TCGv dst = cpu_gpr[rA(ctx->opcode)];
1934     TCGv src = cpu_gpr[rS(ctx->opcode)];
1935     if (sh == 0) {
1936         tcg_gen_mov_tl(dst, src);
1937         tcg_gen_movi_tl(cpu_ca, 0);
1938     } else {
1939         TCGv t0;
1940         tcg_gen_andi_tl(cpu_ca, src, (1ULL << sh) - 1);
1941         t0 = tcg_temp_new();
1942         tcg_gen_sari_tl(t0, src, TARGET_LONG_BITS - 1);
1943         tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
1944         tcg_temp_free(t0);
1945         tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
1946         tcg_gen_sari_tl(dst, src, sh);
1947     }
1948     if (unlikely(Rc(ctx->opcode) != 0)) {
1949         gen_set_Rc0(ctx, dst);
1950     }
1951 }
1952
1953 static void gen_sradi0(DisasContext *ctx)
1954 {
1955     gen_sradi(ctx, 0);
1956 }
1957
1958 static void gen_sradi1(DisasContext *ctx)
1959 {
1960     gen_sradi(ctx, 1);
1961 }
1962
1963 /* srd & srd. */
1964 static void gen_srd(DisasContext *ctx)
1965 {
1966     TCGv t0, t1;
1967
1968     t0 = tcg_temp_new();
1969     /* AND rS with a mask that is 0 when rB >= 0x40 */
1970     tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
1971     tcg_gen_sari_tl(t0, t0, 0x3f);
1972     tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1973     t1 = tcg_temp_new();
1974     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
1975     tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1976     tcg_temp_free(t1);
1977     tcg_temp_free(t0);
1978     if (unlikely(Rc(ctx->opcode) != 0))
1979         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1980 }
1981 #endif
1982
1983 /***                       Floating-Point arithmetic                       ***/
1984 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type)           \
1985 static void gen_f##name(DisasContext *ctx)                                    \
1986 {                                                                             \
1987     if (unlikely(!ctx->fpu_enabled)) {                                        \
1988         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
1989         return;                                                               \
1990     }                                                                         \
1991     /* NIP cannot be restored if the memory exception comes from an helper */ \
1992     gen_update_nip(ctx, ctx->nip - 4);                                        \
1993     gen_reset_fpstatus();                                                     \
1994     gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env,                       \
1995                      cpu_fpr[rA(ctx->opcode)],                                \
1996                      cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);     \
1997     if (isfloat) {                                                            \
1998         gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,                    \
1999                         cpu_fpr[rD(ctx->opcode)]);                            \
2000     }                                                                         \
2001     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf,                      \
2002                      Rc(ctx->opcode) != 0);                                   \
2003 }
2004
2005 #define GEN_FLOAT_ACB(name, op2, set_fprf, type)                              \
2006 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type);                     \
2007 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
2008
2009 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type)     \
2010 static void gen_f##name(DisasContext *ctx)                                    \
2011 {                                                                             \
2012     if (unlikely(!ctx->fpu_enabled)) {                                        \
2013         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
2014         return;                                                               \
2015     }                                                                         \
2016     /* NIP cannot be restored if the memory exception comes from an helper */ \
2017     gen_update_nip(ctx, ctx->nip - 4);                                        \
2018     gen_reset_fpstatus();                                                     \
2019     gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env,                       \
2020                      cpu_fpr[rA(ctx->opcode)],                                \
2021                      cpu_fpr[rB(ctx->opcode)]);                               \
2022     if (isfloat) {                                                            \
2023         gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,                    \
2024                         cpu_fpr[rD(ctx->opcode)]);                            \
2025     }                                                                         \
2026     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)],                                \
2027                      set_fprf, Rc(ctx->opcode) != 0);                         \
2028 }
2029 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type)                        \
2030 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type);               \
2031 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2032
2033 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type)     \
2034 static void gen_f##name(DisasContext *ctx)                                    \
2035 {                                                                             \
2036     if (unlikely(!ctx->fpu_enabled)) {                                        \
2037         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
2038         return;                                                               \
2039     }                                                                         \
2040     /* NIP cannot be restored if the memory exception comes from an helper */ \
2041     gen_update_nip(ctx, ctx->nip - 4);                                        \
2042     gen_reset_fpstatus();                                                     \
2043     gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env,                       \
2044                      cpu_fpr[rA(ctx->opcode)],                                \
2045                      cpu_fpr[rC(ctx->opcode)]);                               \
2046     if (isfloat) {                                                            \
2047         gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,                    \
2048                         cpu_fpr[rD(ctx->opcode)]);                            \
2049     }                                                                         \
2050     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)],                                \
2051                      set_fprf, Rc(ctx->opcode) != 0);                         \
2052 }
2053 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type)                        \
2054 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type);               \
2055 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
2056
2057 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type)                           \
2058 static void gen_f##name(DisasContext *ctx)                                    \
2059 {                                                                             \
2060     if (unlikely(!ctx->fpu_enabled)) {                                        \
2061         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
2062         return;                                                               \
2063     }                                                                         \
2064     /* NIP cannot be restored if the memory exception comes from an helper */ \
2065     gen_update_nip(ctx, ctx->nip - 4);                                        \
2066     gen_reset_fpstatus();                                                     \
2067     gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env,                     \
2068                        cpu_fpr[rB(ctx->opcode)]);                             \
2069     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)],                                \
2070                      set_fprf, Rc(ctx->opcode) != 0);                         \
2071 }
2072
2073 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type)                          \
2074 static void gen_f##name(DisasContext *ctx)                                    \
2075 {                                                                             \
2076     if (unlikely(!ctx->fpu_enabled)) {                                        \
2077         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
2078         return;                                                               \
2079     }                                                                         \
2080     /* NIP cannot be restored if the memory exception comes from an helper */ \
2081     gen_update_nip(ctx, ctx->nip - 4);                                        \
2082     gen_reset_fpstatus();                                                     \
2083     gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env,                     \
2084                        cpu_fpr[rB(ctx->opcode)]);                             \
2085     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)],                                \
2086                      set_fprf, Rc(ctx->opcode) != 0);                         \
2087 }
2088
2089 /* fadd - fadds */
2090 GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT);
2091 /* fdiv - fdivs */
2092 GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT);
2093 /* fmul - fmuls */
2094 GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT);
2095
2096 /* fre */
2097 GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT);
2098
2099 /* fres */
2100 GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES);
2101
2102 /* frsqrte */
2103 GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE);
2104
2105 /* frsqrtes */
2106 static void gen_frsqrtes(DisasContext *ctx)
2107 {
2108     if (unlikely(!ctx->fpu_enabled)) {
2109         gen_exception(ctx, POWERPC_EXCP_FPU);
2110         return;
2111     }
2112     /* NIP cannot be restored if the memory exception comes from an helper */
2113     gen_update_nip(ctx, ctx->nip - 4);
2114     gen_reset_fpstatus();
2115     gen_helper_frsqrte(cpu_fpr[rD(ctx->opcode)], cpu_env,
2116                        cpu_fpr[rB(ctx->opcode)]);
2117     gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,
2118                     cpu_fpr[rD(ctx->opcode)]);
2119     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2120 }
2121
2122 /* fsel */
2123 _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL);
2124 /* fsub - fsubs */
2125 GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT);
2126 /* Optional: */
2127
2128 /* fsqrt */
2129 static void gen_fsqrt(DisasContext *ctx)
2130 {
2131     if (unlikely(!ctx->fpu_enabled)) {
2132         gen_exception(ctx, POWERPC_EXCP_FPU);
2133         return;
2134     }
2135     /* NIP cannot be restored if the memory exception comes from an helper */
2136     gen_update_nip(ctx, ctx->nip - 4);
2137     gen_reset_fpstatus();
2138     gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_env,
2139                      cpu_fpr[rB(ctx->opcode)]);
2140     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2141 }
2142
2143 static void gen_fsqrts(DisasContext *ctx)
2144 {
2145     if (unlikely(!ctx->fpu_enabled)) {
2146         gen_exception(ctx, POWERPC_EXCP_FPU);
2147         return;
2148     }
2149     /* NIP cannot be restored if the memory exception comes from an helper */
2150     gen_update_nip(ctx, ctx->nip - 4);
2151     gen_reset_fpstatus();
2152     gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_env,
2153                      cpu_fpr[rB(ctx->opcode)]);
2154     gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,
2155                     cpu_fpr[rD(ctx->opcode)]);
2156     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
2157 }
2158
2159 /***                     Floating-Point multiply-and-add                   ***/
2160 /* fmadd - fmadds */
2161 GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT);
2162 /* fmsub - fmsubs */
2163 GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT);
2164 /* fnmadd - fnmadds */
2165 GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT);
2166 /* fnmsub - fnmsubs */
2167 GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT);
2168
2169 /***                     Floating-Point round & convert                    ***/
2170 /* fctiw */
2171 GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT);
2172 /* fctiwz */
2173 GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT);
2174 /* frsp */
2175 GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT);
2176 #if defined(TARGET_PPC64)
2177 /* fcfid */
2178 GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B);
2179 /* fctid */
2180 GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B);
2181 /* fctidz */
2182 GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B);
2183 #endif
2184
2185 /* frin */
2186 GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT);
2187 /* friz */
2188 GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT);
2189 /* frip */
2190 GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT);
2191 /* frim */
2192 GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT);
2193
2194 /***                         Floating-Point compare                        ***/
2195
2196 /* fcmpo */
2197 static void gen_fcmpo(DisasContext *ctx)
2198 {
2199     TCGv_i32 crf;
2200     if (unlikely(!ctx->fpu_enabled)) {
2201         gen_exception(ctx, POWERPC_EXCP_FPU);
2202         return;
2203     }
2204     /* NIP cannot be restored if the memory exception comes from an helper */
2205     gen_update_nip(ctx, ctx->nip - 4);
2206     gen_reset_fpstatus();
2207     crf = tcg_const_i32(crfD(ctx->opcode));
2208     gen_helper_fcmpo(cpu_env, cpu_fpr[rA(ctx->opcode)],
2209                      cpu_fpr[rB(ctx->opcode)], crf);
2210     tcg_temp_free_i32(crf);
2211     gen_helper_float_check_status(cpu_env);
2212 }
2213
2214 /* fcmpu */
2215 static void gen_fcmpu(DisasContext *ctx)
2216 {
2217     TCGv_i32 crf;
2218     if (unlikely(!ctx->fpu_enabled)) {
2219         gen_exception(ctx, POWERPC_EXCP_FPU);
2220         return;
2221     }
2222     /* NIP cannot be restored if the memory exception comes from an helper */
2223     gen_update_nip(ctx, ctx->nip - 4);
2224     gen_reset_fpstatus();
2225     crf = tcg_const_i32(crfD(ctx->opcode));
2226     gen_helper_fcmpu(cpu_env, cpu_fpr[rA(ctx->opcode)],
2227                      cpu_fpr[rB(ctx->opcode)], crf);
2228     tcg_temp_free_i32(crf);
2229     gen_helper_float_check_status(cpu_env);
2230 }
2231
2232 /***                         Floating-point move                           ***/
2233 /* fabs */
2234 /* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2235 static void gen_fabs(DisasContext *ctx)
2236 {
2237     if (unlikely(!ctx->fpu_enabled)) {
2238         gen_exception(ctx, POWERPC_EXCP_FPU);
2239         return;
2240     }
2241     tcg_gen_andi_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)],
2242                      ~(1ULL << 63));
2243     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2244 }
2245
2246 /* fmr  - fmr. */
2247 /* XXX: beware that fmr never checks for NaNs nor update FPSCR */
2248 static void gen_fmr(DisasContext *ctx)
2249 {
2250     if (unlikely(!ctx->fpu_enabled)) {
2251         gen_exception(ctx, POWERPC_EXCP_FPU);
2252         return;
2253     }
2254     tcg_gen_mov_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2255     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2256 }
2257
2258 /* fnabs */
2259 /* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2260 static void gen_fnabs(DisasContext *ctx)
2261 {
2262     if (unlikely(!ctx->fpu_enabled)) {
2263         gen_exception(ctx, POWERPC_EXCP_FPU);
2264         return;
2265     }
2266     tcg_gen_ori_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)],
2267                     1ULL << 63);
2268     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2269 }
2270
2271 /* fneg */
2272 /* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2273 static void gen_fneg(DisasContext *ctx)
2274 {
2275     if (unlikely(!ctx->fpu_enabled)) {
2276         gen_exception(ctx, POWERPC_EXCP_FPU);
2277         return;
2278     }
2279     tcg_gen_xori_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)],
2280                      1ULL << 63);
2281     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2282 }
2283
2284 /* fcpsgn: PowerPC 2.05 specification */
2285 /* XXX: beware that fcpsgn never checks for NaNs nor update FPSCR */
2286 static void gen_fcpsgn(DisasContext *ctx)
2287 {
2288     if (unlikely(!ctx->fpu_enabled)) {
2289         gen_exception(ctx, POWERPC_EXCP_FPU);
2290         return;
2291     }
2292     tcg_gen_deposit_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rA(ctx->opcode)],
2293                         cpu_fpr[rB(ctx->opcode)], 0, 63);
2294     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2295 }
2296
2297 /***                  Floating-Point status & ctrl register                ***/
2298
2299 /* mcrfs */
2300 static void gen_mcrfs(DisasContext *ctx)
2301 {
2302     TCGv tmp = tcg_temp_new();
2303     int bfa;
2304
2305     if (unlikely(!ctx->fpu_enabled)) {
2306         gen_exception(ctx, POWERPC_EXCP_FPU);
2307         return;
2308     }
2309     bfa = 4 * (7 - crfS(ctx->opcode));
2310     tcg_gen_shri_tl(tmp, cpu_fpscr, bfa);
2311     tcg_gen_trunc_tl_i32(cpu_crf[crfD(ctx->opcode)], tmp);
2312     tcg_temp_free(tmp);
2313     tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], 0xf);
2314     tcg_gen_andi_tl(cpu_fpscr, cpu_fpscr, ~(0xF << bfa));
2315 }
2316
2317 /* mffs */
2318 static void gen_mffs(DisasContext *ctx)
2319 {
2320     if (unlikely(!ctx->fpu_enabled)) {
2321         gen_exception(ctx, POWERPC_EXCP_FPU);
2322         return;
2323     }
2324     gen_reset_fpstatus();
2325     tcg_gen_extu_tl_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpscr);
2326     gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
2327 }
2328
2329 /* mtfsb0 */
2330 static void gen_mtfsb0(DisasContext *ctx)
2331 {
2332     uint8_t crb;
2333
2334     if (unlikely(!ctx->fpu_enabled)) {
2335         gen_exception(ctx, POWERPC_EXCP_FPU);
2336         return;
2337     }
2338     crb = 31 - crbD(ctx->opcode);
2339     gen_reset_fpstatus();
2340     if (likely(crb != FPSCR_FEX && crb != FPSCR_VX)) {
2341         TCGv_i32 t0;
2342         /* NIP cannot be restored if the memory exception comes from an helper */
2343         gen_update_nip(ctx, ctx->nip - 4);
2344         t0 = tcg_const_i32(crb);
2345         gen_helper_fpscr_clrbit(cpu_env, t0);
2346         tcg_temp_free_i32(t0);
2347     }
2348     if (unlikely(Rc(ctx->opcode) != 0)) {
2349         tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2350         tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
2351     }
2352 }
2353
2354 /* mtfsb1 */
2355 static void gen_mtfsb1(DisasContext *ctx)
2356 {
2357     uint8_t crb;
2358
2359     if (unlikely(!ctx->fpu_enabled)) {
2360         gen_exception(ctx, POWERPC_EXCP_FPU);
2361         return;
2362     }
2363     crb = 31 - crbD(ctx->opcode);
2364     gen_reset_fpstatus();
2365     /* XXX: we pretend we can only do IEEE floating-point computations */
2366     if (likely(crb != FPSCR_FEX && crb != FPSCR_VX && crb != FPSCR_NI)) {
2367         TCGv_i32 t0;
2368         /* NIP cannot be restored if the memory exception comes from an helper */
2369         gen_update_nip(ctx, ctx->nip - 4);
2370         t0 = tcg_const_i32(crb);
2371         gen_helper_fpscr_setbit(cpu_env, t0);
2372         tcg_temp_free_i32(t0);
2373     }
2374     if (unlikely(Rc(ctx->opcode) != 0)) {
2375         tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2376         tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
2377     }
2378     /* We can raise a differed exception */
2379     gen_helper_float_check_status(cpu_env);
2380 }
2381
2382 /* mtfsf */
2383 static void gen_mtfsf(DisasContext *ctx)
2384 {
2385     TCGv_i32 t0;
2386     int flm, l, w;
2387
2388     if (unlikely(!ctx->fpu_enabled)) {
2389         gen_exception(ctx, POWERPC_EXCP_FPU);
2390         return;
2391     }
2392     flm = FPFLM(ctx->opcode);
2393     l = FPL(ctx->opcode);
2394     w = FPW(ctx->opcode);
2395     if (unlikely(w & !(ctx->insns_flags2 & PPC2_ISA205))) {
2396         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2397         return;
2398     }
2399     /* NIP cannot be restored if the memory exception comes from an helper */
2400     gen_update_nip(ctx, ctx->nip - 4);
2401     gen_reset_fpstatus();
2402     if (l) {
2403         t0 = tcg_const_i32((ctx->insns_flags2 & PPC2_ISA205) ? 0xffff : 0xff);
2404     } else {
2405         t0 = tcg_const_i32(flm << (w * 8));
2406     }
2407     gen_helper_store_fpscr(cpu_env, cpu_fpr[rB(ctx->opcode)], t0);
2408     tcg_temp_free_i32(t0);
2409     if (unlikely(Rc(ctx->opcode) != 0)) {
2410         tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2411         tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
2412     }
2413     /* We can raise a differed exception */
2414     gen_helper_float_check_status(cpu_env);
2415 }
2416
2417 /* mtfsfi */
2418 static void gen_mtfsfi(DisasContext *ctx)
2419 {
2420     int bf, sh, w;
2421     TCGv_i64 t0;
2422     TCGv_i32 t1;
2423
2424     if (unlikely(!ctx->fpu_enabled)) {
2425         gen_exception(ctx, POWERPC_EXCP_FPU);
2426         return;
2427     }
2428     w = FPW(ctx->opcode);
2429     bf = FPBF(ctx->opcode);
2430     if (unlikely(w & !(ctx->insns_flags2 & PPC2_ISA205))) {
2431         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2432         return;
2433     }
2434     sh = (8 * w) + 7 - bf;
2435     /* NIP cannot be restored if the memory exception comes from an helper */
2436     gen_update_nip(ctx, ctx->nip - 4);
2437     gen_reset_fpstatus();
2438     t0 = tcg_const_i64(((uint64_t)FPIMM(ctx->opcode)) << (4 * sh));
2439     t1 = tcg_const_i32(1 << sh);
2440     gen_helper_store_fpscr(cpu_env, t0, t1);
2441     tcg_temp_free_i64(t0);
2442     tcg_temp_free_i32(t1);
2443     if (unlikely(Rc(ctx->opcode) != 0)) {
2444         tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2445         tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
2446     }
2447     /* We can raise a differed exception */
2448     gen_helper_float_check_status(cpu_env);
2449 }
2450
2451 /***                           Addressing modes                            ***/
2452 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
2453 static inline void gen_addr_imm_index(DisasContext *ctx, TCGv EA,
2454                                       target_long maskl)
2455 {
2456     target_long simm = SIMM(ctx->opcode);
2457
2458     simm &= ~maskl;
2459     if (rA(ctx->opcode) == 0) {
2460         if (NARROW_MODE(ctx)) {
2461             simm = (uint32_t)simm;
2462         }
2463         tcg_gen_movi_tl(EA, simm);
2464     } else if (likely(simm != 0)) {
2465         tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm);
2466         if (NARROW_MODE(ctx)) {
2467             tcg_gen_ext32u_tl(EA, EA);
2468         }
2469     } else {
2470         if (NARROW_MODE(ctx)) {
2471             tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2472         } else {
2473             tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2474         }
2475     }
2476 }
2477
2478 static inline void gen_addr_reg_index(DisasContext *ctx, TCGv EA)
2479 {
2480     if (rA(ctx->opcode) == 0) {
2481         if (NARROW_MODE(ctx)) {
2482             tcg_gen_ext32u_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2483         } else {
2484             tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2485         }
2486     } else {
2487         tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
2488         if (NARROW_MODE(ctx)) {
2489             tcg_gen_ext32u_tl(EA, EA);
2490         }
2491     }
2492 }
2493
2494 static inline void gen_addr_register(DisasContext *ctx, TCGv EA)
2495 {
2496     if (rA(ctx->opcode) == 0) {
2497         tcg_gen_movi_tl(EA, 0);
2498     } else if (NARROW_MODE(ctx)) {
2499         tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2500     } else {
2501         tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2502     }
2503 }
2504
2505 static inline void gen_addr_add(DisasContext *ctx, TCGv ret, TCGv arg1,
2506                                 target_long val)
2507 {
2508     tcg_gen_addi_tl(ret, arg1, val);
2509     if (NARROW_MODE(ctx)) {
2510         tcg_gen_ext32u_tl(ret, ret);
2511     }
2512 }
2513
2514 static inline void gen_check_align(DisasContext *ctx, TCGv EA, int mask)
2515 {
2516     int l1 = gen_new_label();
2517     TCGv t0 = tcg_temp_new();
2518     TCGv_i32 t1, t2;
2519     /* NIP cannot be restored if the memory exception comes from an helper */
2520     gen_update_nip(ctx, ctx->nip - 4);
2521     tcg_gen_andi_tl(t0, EA, mask);
2522     tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2523     t1 = tcg_const_i32(POWERPC_EXCP_ALIGN);
2524     t2 = tcg_const_i32(0);
2525     gen_helper_raise_exception_err(cpu_env, t1, t2);
2526     tcg_temp_free_i32(t1);
2527     tcg_temp_free_i32(t2);
2528     gen_set_label(l1);
2529     tcg_temp_free(t0);
2530 }
2531
2532 /***                             Integer load                              ***/
2533 static inline void gen_qemu_ld8u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2534 {
2535     tcg_gen_qemu_ld8u(arg1, arg2, ctx->mem_idx);
2536 }
2537
2538 static inline void gen_qemu_ld8s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2539 {
2540     tcg_gen_qemu_ld8s(arg1, arg2, ctx->mem_idx);
2541 }
2542
2543 static inline void gen_qemu_ld16u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2544 {
2545     tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2546     if (unlikely(ctx->le_mode)) {
2547         tcg_gen_bswap16_tl(arg1, arg1);
2548     }
2549 }
2550
2551 static inline void gen_qemu_ld16s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2552 {
2553     if (unlikely(ctx->le_mode)) {
2554         tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2555         tcg_gen_bswap16_tl(arg1, arg1);
2556         tcg_gen_ext16s_tl(arg1, arg1);
2557     } else {
2558         tcg_gen_qemu_ld16s(arg1, arg2, ctx->mem_idx);
2559     }
2560 }
2561
2562 static inline void gen_qemu_ld32u(DisasContext *ctx, TCGv arg1, TCGv arg2)
2563 {
2564     tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2565     if (unlikely(ctx->le_mode)) {
2566         tcg_gen_bswap32_tl(arg1, arg1);
2567     }
2568 }
2569
2570 static void gen_qemu_ld32u_i64(DisasContext *ctx, TCGv_i64 val, TCGv addr)
2571 {
2572     TCGv tmp = tcg_temp_new();
2573     gen_qemu_ld32u(ctx, tmp, addr);
2574     tcg_gen_extu_tl_i64(val, tmp);
2575     tcg_temp_free(tmp);
2576 }
2577
2578 static inline void gen_qemu_ld32s(DisasContext *ctx, TCGv arg1, TCGv arg2)
2579 {
2580     if (unlikely(ctx->le_mode)) {
2581         tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2582         tcg_gen_bswap32_tl(arg1, arg1);
2583         tcg_gen_ext32s_tl(arg1, arg1);
2584     } else
2585         tcg_gen_qemu_ld32s(arg1, arg2, ctx->mem_idx);
2586 }
2587
2588 static inline void gen_qemu_ld64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
2589 {
2590     tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx);
2591     if (unlikely(ctx->le_mode)) {
2592         tcg_gen_bswap64_i64(arg1, arg1);
2593     }
2594 }
2595
2596 static inline void gen_qemu_st8(DisasContext *ctx, TCGv arg1, TCGv arg2)
2597 {
2598     tcg_gen_qemu_st8(arg1, arg2, ctx->mem_idx);
2599 }
2600
2601 static inline void gen_qemu_st16(DisasContext *ctx, TCGv arg1, TCGv arg2)
2602 {
2603     if (unlikely(ctx->le_mode)) {
2604         TCGv t0 = tcg_temp_new();
2605         tcg_gen_ext16u_tl(t0, arg1);
2606         tcg_gen_bswap16_tl(t0, t0);
2607         tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
2608         tcg_temp_free(t0);
2609     } else {
2610         tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
2611     }
2612 }
2613
2614 static inline void gen_qemu_st32(DisasContext *ctx, TCGv arg1, TCGv arg2)
2615 {
2616     if (unlikely(ctx->le_mode)) {
2617         TCGv t0 = tcg_temp_new();
2618         tcg_gen_ext32u_tl(t0, arg1);
2619         tcg_gen_bswap32_tl(t0, t0);
2620         tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
2621         tcg_temp_free(t0);
2622     } else {
2623         tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
2624     }
2625 }
2626
2627 static void gen_qemu_st32_i64(DisasContext *ctx, TCGv_i64 val, TCGv addr)
2628 {
2629     TCGv tmp = tcg_temp_new();
2630     tcg_gen_trunc_i64_tl(tmp, val);
2631     gen_qemu_st32(ctx, tmp, addr);
2632     tcg_temp_free(tmp);
2633 }
2634
2635 static inline void gen_qemu_st64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
2636 {
2637     if (unlikely(ctx->le_mode)) {
2638         TCGv_i64 t0 = tcg_temp_new_i64();
2639         tcg_gen_bswap64_i64(t0, arg1);
2640         tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx);
2641         tcg_temp_free_i64(t0);
2642     } else
2643         tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx);
2644 }
2645
2646 #define GEN_LD(name, ldop, opc, type)                                         \
2647 static void glue(gen_, name)(DisasContext *ctx)                                       \
2648 {                                                                             \
2649     TCGv EA;                                                                  \
2650     gen_set_access_type(ctx, ACCESS_INT);                                     \
2651     EA = tcg_temp_new();                                                      \
2652     gen_addr_imm_index(ctx, EA, 0);                                           \
2653     gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA);                       \
2654     tcg_temp_free(EA);                                                        \
2655 }
2656
2657 #define GEN_LDU(name, ldop, opc, type)                                        \
2658 static void glue(gen_, name##u)(DisasContext *ctx)                                    \
2659 {                                                                             \
2660     TCGv EA;                                                                  \
2661     if (unlikely(rA(ctx->opcode) == 0 ||                                      \
2662                  rA(ctx->opcode) == rD(ctx->opcode))) {                       \
2663         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
2664         return;                                                               \
2665     }                                                                         \
2666     gen_set_access_type(ctx, ACCESS_INT);                                     \
2667     EA = tcg_temp_new();                                                      \
2668     if (type == PPC_64B)                                                      \
2669         gen_addr_imm_index(ctx, EA, 0x03);                                    \
2670     else                                                                      \
2671         gen_addr_imm_index(ctx, EA, 0);                                       \
2672     gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA);                       \
2673     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
2674     tcg_temp_free(EA);                                                        \
2675 }
2676
2677 #define GEN_LDUX(name, ldop, opc2, opc3, type)                                \
2678 static void glue(gen_, name##ux)(DisasContext *ctx)                                   \
2679 {                                                                             \
2680     TCGv EA;                                                                  \
2681     if (unlikely(rA(ctx->opcode) == 0 ||                                      \
2682                  rA(ctx->opcode) == rD(ctx->opcode))) {                       \
2683         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
2684         return;                                                               \
2685     }                                                                         \
2686     gen_set_access_type(ctx, ACCESS_INT);                                     \
2687     EA = tcg_temp_new();                                                      \
2688     gen_addr_reg_index(ctx, EA);                                              \
2689     gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA);                       \
2690     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
2691     tcg_temp_free(EA);                                                        \
2692 }
2693
2694 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2)                        \
2695 static void glue(gen_, name##x)(DisasContext *ctx)                            \
2696 {                                                                             \
2697     TCGv EA;                                                                  \
2698     gen_set_access_type(ctx, ACCESS_INT);                                     \
2699     EA = tcg_temp_new();                                                      \
2700     gen_addr_reg_index(ctx, EA);                                              \
2701     gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA);                       \
2702     tcg_temp_free(EA);                                                        \
2703 }
2704 #define GEN_LDX(name, ldop, opc2, opc3, type)                                 \
2705     GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE)
2706
2707 #define GEN_LDS(name, ldop, op, type)                                         \
2708 GEN_LD(name, ldop, op | 0x20, type);                                          \
2709 GEN_LDU(name, ldop, op | 0x21, type);                                         \
2710 GEN_LDUX(name, ldop, 0x17, op | 0x01, type);                                  \
2711 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
2712
2713 /* lbz lbzu lbzux lbzx */
2714 GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER);
2715 /* lha lhau lhaux lhax */
2716 GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER);
2717 /* lhz lhzu lhzux lhzx */
2718 GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER);
2719 /* lwz lwzu lwzux lwzx */
2720 GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER);
2721 #if defined(TARGET_PPC64)
2722 /* lwaux */
2723 GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B);
2724 /* lwax */
2725 GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B);
2726 /* ldux */
2727 GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B);
2728 /* ldx */
2729 GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B);
2730
2731 static void gen_ld(DisasContext *ctx)
2732 {
2733     TCGv EA;
2734     if (Rc(ctx->opcode)) {
2735         if (unlikely(rA(ctx->opcode) == 0 ||
2736                      rA(ctx->opcode) == rD(ctx->opcode))) {
2737             gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2738             return;
2739         }
2740     }
2741     gen_set_access_type(ctx, ACCESS_INT);
2742     EA = tcg_temp_new();
2743     gen_addr_imm_index(ctx, EA, 0x03);
2744     if (ctx->opcode & 0x02) {
2745         /* lwa (lwau is undefined) */
2746         gen_qemu_ld32s(ctx, cpu_gpr[rD(ctx->opcode)], EA);
2747     } else {
2748         /* ld - ldu */
2749         gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], EA);
2750     }
2751     if (Rc(ctx->opcode))
2752         tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2753     tcg_temp_free(EA);
2754 }
2755
2756 /* lq */
2757 static void gen_lq(DisasContext *ctx)
2758 {
2759 #if defined(CONFIG_USER_ONLY)
2760     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2761 #else
2762     int ra, rd;
2763     TCGv EA;
2764
2765     /* Restore CPU state */
2766     if (unlikely(ctx->mem_idx == 0)) {
2767         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2768         return;
2769     }
2770     ra = rA(ctx->opcode);
2771     rd = rD(ctx->opcode);
2772     if (unlikely((rd & 1) || rd == ra)) {
2773         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2774         return;
2775     }
2776     if (unlikely(ctx->le_mode)) {
2777         /* Little-endian mode is not handled */
2778         gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2779         return;
2780     }
2781     gen_set_access_type(ctx, ACCESS_INT);
2782     EA = tcg_temp_new();
2783     gen_addr_imm_index(ctx, EA, 0x0F);
2784     gen_qemu_ld64(ctx, cpu_gpr[rd], EA);
2785     gen_addr_add(ctx, EA, EA, 8);
2786     gen_qemu_ld64(ctx, cpu_gpr[rd+1], EA);
2787     tcg_temp_free(EA);
2788 #endif
2789 }
2790 #endif
2791
2792 /***                              Integer store                            ***/
2793 #define GEN_ST(name, stop, opc, type)                                         \
2794 static void glue(gen_, name)(DisasContext *ctx)                                       \
2795 {                                                                             \
2796     TCGv EA;                                                                  \
2797     gen_set_access_type(ctx, ACCESS_INT);                                     \
2798     EA = tcg_temp_new();                                                      \
2799     gen_addr_imm_index(ctx, EA, 0);                                           \
2800     gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA);                       \
2801     tcg_temp_free(EA);                                                        \
2802 }
2803
2804 #define GEN_STU(name, stop, opc, type)                                        \
2805 static void glue(gen_, stop##u)(DisasContext *ctx)                                    \
2806 {                                                                             \
2807     TCGv EA;                                                                  \
2808     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2809         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
2810         return;                                                               \
2811     }                                                                         \
2812     gen_set_access_type(ctx, ACCESS_INT);                                     \
2813     EA = tcg_temp_new();                                                      \
2814     if (type == PPC_64B)                                                      \
2815         gen_addr_imm_index(ctx, EA, 0x03);                                    \
2816     else                                                                      \
2817         gen_addr_imm_index(ctx, EA, 0);                                       \
2818     gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA);                       \
2819     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
2820     tcg_temp_free(EA);                                                        \
2821 }
2822
2823 #define GEN_STUX(name, stop, opc2, opc3, type)                                \
2824 static void glue(gen_, name##ux)(DisasContext *ctx)                                   \
2825 {                                                                             \
2826     TCGv EA;                                                                  \
2827     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
2828         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
2829         return;                                                               \
2830     }                                                                         \
2831     gen_set_access_type(ctx, ACCESS_INT);                                     \
2832     EA = tcg_temp_new();                                                      \
2833     gen_addr_reg_index(ctx, EA);                                              \
2834     gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA);                       \
2835     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
2836     tcg_temp_free(EA);                                                        \
2837 }
2838
2839 #define GEN_STX_E(name, stop, opc2, opc3, type, type2)                        \
2840 static void glue(gen_, name##x)(DisasContext *ctx)                            \
2841 {                                                                             \
2842     TCGv EA;                                                                  \
2843     gen_set_access_type(ctx, ACCESS_INT);                                     \
2844     EA = tcg_temp_new();                                                      \
2845     gen_addr_reg_index(ctx, EA);                                              \
2846     gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA);                       \
2847     tcg_temp_free(EA);                                                        \
2848 }
2849 #define GEN_STX(name, stop, opc2, opc3, type)                                 \
2850     GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE)
2851
2852 #define GEN_STS(name, stop, op, type)                                         \
2853 GEN_ST(name, stop, op | 0x20, type);                                          \
2854 GEN_STU(name, stop, op | 0x21, type);                                         \
2855 GEN_STUX(name, stop, 0x17, op | 0x01, type);                                  \
2856 GEN_STX(name, stop, 0x17, op | 0x00, type)
2857
2858 /* stb stbu stbux stbx */
2859 GEN_STS(stb, st8, 0x06, PPC_INTEGER);
2860 /* sth sthu sthux sthx */
2861 GEN_STS(sth, st16, 0x0C, PPC_INTEGER);
2862 /* stw stwu stwux stwx */
2863 GEN_STS(stw, st32, 0x04, PPC_INTEGER);
2864 #if defined(TARGET_PPC64)
2865 GEN_STUX(std, st64, 0x15, 0x05, PPC_64B);
2866 GEN_STX(std, st64, 0x15, 0x04, PPC_64B);
2867
2868 static void gen_std(DisasContext *ctx)
2869 {
2870     int rs;
2871     TCGv EA;
2872
2873     rs = rS(ctx->opcode);
2874     if ((ctx->opcode & 0x3) == 0x2) {
2875 #if defined(CONFIG_USER_ONLY)
2876         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2877 #else
2878         /* stq */
2879         if (unlikely(ctx->mem_idx == 0)) {
2880             gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
2881             return;
2882         }
2883         if (unlikely(rs & 1)) {
2884             gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2885             return;
2886         }
2887         if (unlikely(ctx->le_mode)) {
2888             /* Little-endian mode is not handled */
2889             gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
2890             return;
2891         }
2892         gen_set_access_type(ctx, ACCESS_INT);
2893         EA = tcg_temp_new();
2894         gen_addr_imm_index(ctx, EA, 0x03);
2895         gen_qemu_st64(ctx, cpu_gpr[rs], EA);
2896         gen_addr_add(ctx, EA, EA, 8);
2897         gen_qemu_st64(ctx, cpu_gpr[rs+1], EA);
2898         tcg_temp_free(EA);
2899 #endif
2900     } else {
2901         /* std / stdu */
2902         if (Rc(ctx->opcode)) {
2903             if (unlikely(rA(ctx->opcode) == 0)) {
2904                 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2905                 return;
2906             }
2907         }
2908         gen_set_access_type(ctx, ACCESS_INT);
2909         EA = tcg_temp_new();
2910         gen_addr_imm_index(ctx, EA, 0x03);
2911         gen_qemu_st64(ctx, cpu_gpr[rs], EA);
2912         if (Rc(ctx->opcode))
2913             tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2914         tcg_temp_free(EA);
2915     }
2916 }
2917 #endif
2918 /***                Integer load and store with byte reverse               ***/
2919 /* lhbrx */
2920 static inline void gen_qemu_ld16ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2921 {
2922     tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2923     if (likely(!ctx->le_mode)) {
2924         tcg_gen_bswap16_tl(arg1, arg1);
2925     }
2926 }
2927 GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER);
2928
2929 /* lwbrx */
2930 static inline void gen_qemu_ld32ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2931 {
2932     tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2933     if (likely(!ctx->le_mode)) {
2934         tcg_gen_bswap32_tl(arg1, arg1);
2935     }
2936 }
2937 GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER);
2938
2939 #if defined(TARGET_PPC64)
2940 /* ldbrx */
2941 static inline void gen_qemu_ld64ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2942 {
2943     tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx);
2944     if (likely(!ctx->le_mode)) {
2945         tcg_gen_bswap64_tl(arg1, arg1);
2946     }
2947 }
2948 GEN_LDX_E(ldbr, ld64ur, 0x14, 0x10, PPC_NONE, PPC2_DBRX);
2949 #endif  /* TARGET_PPC64 */
2950
2951 /* sthbrx */
2952 static inline void gen_qemu_st16r(DisasContext *ctx, TCGv arg1, TCGv arg2)
2953 {
2954     if (likely(!ctx->le_mode)) {
2955         TCGv t0 = tcg_temp_new();
2956         tcg_gen_ext16u_tl(t0, arg1);
2957         tcg_gen_bswap16_tl(t0, t0);
2958         tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
2959         tcg_temp_free(t0);
2960     } else {
2961         tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
2962     }
2963 }
2964 GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER);
2965
2966 /* stwbrx */
2967 static inline void gen_qemu_st32r(DisasContext *ctx, TCGv arg1, TCGv arg2)
2968 {
2969     if (likely(!ctx->le_mode)) {
2970         TCGv t0 = tcg_temp_new();
2971         tcg_gen_ext32u_tl(t0, arg1);
2972         tcg_gen_bswap32_tl(t0, t0);
2973         tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
2974         tcg_temp_free(t0);
2975     } else {
2976         tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
2977     }
2978 }
2979 GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER);
2980
2981 #if defined(TARGET_PPC64)
2982 /* stdbrx */
2983 static inline void gen_qemu_st64r(DisasContext *ctx, TCGv arg1, TCGv arg2)
2984 {
2985     if (likely(!ctx->le_mode)) {
2986         TCGv t0 = tcg_temp_new();
2987         tcg_gen_bswap64_tl(t0, arg1);
2988         tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx);
2989         tcg_temp_free(t0);
2990     } else {
2991         tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx);
2992     }
2993 }
2994 GEN_STX_E(stdbr, st64r, 0x14, 0x14, PPC_NONE, PPC2_DBRX);
2995 #endif  /* TARGET_PPC64 */
2996
2997 /***                    Integer load and store multiple                    ***/
2998
2999 /* lmw */
3000 static void gen_lmw(DisasContext *ctx)
3001 {
3002     TCGv t0;
3003     TCGv_i32 t1;
3004     gen_set_access_type(ctx, ACCESS_INT);
3005     /* NIP cannot be restored if the memory exception comes from an helper */
3006     gen_update_nip(ctx, ctx->nip - 4);
3007     t0 = tcg_temp_new();
3008     t1 = tcg_const_i32(rD(ctx->opcode));
3009     gen_addr_imm_index(ctx, t0, 0);
3010     gen_helper_lmw(cpu_env, t0, t1);
3011     tcg_temp_free(t0);
3012     tcg_temp_free_i32(t1);
3013 }
3014
3015 /* stmw */
3016 static void gen_stmw(DisasContext *ctx)
3017 {
3018     TCGv t0;
3019     TCGv_i32 t1;
3020     gen_set_access_type(ctx, ACCESS_INT);
3021     /* NIP cannot be restored if the memory exception comes from an helper */
3022     gen_update_nip(ctx, ctx->nip - 4);
3023     t0 = tcg_temp_new();
3024     t1 = tcg_const_i32(rS(ctx->opcode));
3025     gen_addr_imm_index(ctx, t0, 0);
3026     gen_helper_stmw(cpu_env, t0, t1);
3027     tcg_temp_free(t0);
3028     tcg_temp_free_i32(t1);
3029 }
3030
3031 /***                    Integer load and store strings                     ***/
3032
3033 /* lswi */
3034 /* PowerPC32 specification says we must generate an exception if
3035  * rA is in the range of registers to be loaded.
3036  * In an other hand, IBM says this is valid, but rA won't be loaded.
3037  * For now, I'll follow the spec...
3038  */
3039 static void gen_lswi(DisasContext *ctx)
3040 {
3041     TCGv t0;
3042     TCGv_i32 t1, t2;
3043     int nb = NB(ctx->opcode);
3044     int start = rD(ctx->opcode);
3045     int ra = rA(ctx->opcode);
3046     int nr;
3047
3048     if (nb == 0)
3049         nb = 32;
3050     nr = nb / 4;
3051     if (unlikely(((start + nr) > 32  &&
3052                   start <= ra && (start + nr - 32) > ra) ||
3053                  ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) {
3054         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
3055         return;
3056     }
3057     gen_set_access_type(ctx, ACCESS_INT);
3058     /* NIP cannot be restored if the memory exception comes from an helper */
3059     gen_update_nip(ctx, ctx->nip - 4);
3060     t0 = tcg_temp_new();
3061     gen_addr_register(ctx, t0);
3062     t1 = tcg_const_i32(nb);
3063     t2 = tcg_const_i32(start);
3064     gen_helper_lsw(cpu_env, t0, t1, t2);
3065     tcg_temp_free(t0);
3066     tcg_temp_free_i32(t1);
3067     tcg_temp_free_i32(t2);
3068 }
3069
3070 /* lswx */
3071 static void gen_lswx(DisasContext *ctx)
3072 {
3073     TCGv t0;
3074     TCGv_i32 t1, t2, t3;
3075     gen_set_access_type(ctx, ACCESS_INT);
3076     /* NIP cannot be restored if the memory exception comes from an helper */
3077     gen_update_nip(ctx, ctx->nip - 4);
3078     t0 = tcg_temp_new();
3079     gen_addr_reg_index(ctx, t0);
3080     t1 = tcg_const_i32(rD(ctx->opcode));
3081     t2 = tcg_const_i32(rA(ctx->opcode));
3082     t3 = tcg_const_i32(rB(ctx->opcode));
3083     gen_helper_lswx(cpu_env, t0, t1, t2, t3);
3084     tcg_temp_free(t0);
3085     tcg_temp_free_i32(t1);
3086     tcg_temp_free_i32(t2);
3087     tcg_temp_free_i32(t3);
3088 }
3089
3090 /* stswi */
3091 static void gen_stswi(DisasContext *ctx)
3092 {
3093     TCGv t0;
3094     TCGv_i32 t1, t2;
3095     int nb = NB(ctx->opcode);
3096     gen_set_access_type(ctx, ACCESS_INT);
3097     /* NIP cannot be restored if the memory exception comes from an helper */
3098     gen_update_nip(ctx, ctx->nip - 4);
3099     t0 = tcg_temp_new();
3100     gen_addr_register(ctx, t0);
3101     if (nb == 0)
3102         nb = 32;
3103     t1 = tcg_const_i32(nb);
3104     t2 = tcg_const_i32(rS(ctx->opcode));
3105     gen_helper_stsw(cpu_env, t0, t1, t2);
3106     tcg_temp_free(t0);
3107     tcg_temp_free_i32(t1);
3108     tcg_temp_free_i32(t2);
3109 }
3110
3111 /* stswx */
3112 static void gen_stswx(DisasContext *ctx)
3113 {
3114     TCGv t0;
3115     TCGv_i32 t1, t2;
3116     gen_set_access_type(ctx, ACCESS_INT);
3117     /* NIP cannot be restored if the memory exception comes from an helper */
3118     gen_update_nip(ctx, ctx->nip - 4);
3119     t0 = tcg_temp_new();
3120     gen_addr_reg_index(ctx, t0);
3121     t1 = tcg_temp_new_i32();
3122     tcg_gen_trunc_tl_i32(t1, cpu_xer);
3123     tcg_gen_andi_i32(t1, t1, 0x7F);
3124     t2 = tcg_const_i32(rS(ctx->opcode));
3125     gen_helper_stsw(cpu_env, t0, t1, t2);
3126     tcg_temp_free(t0);
3127     tcg_temp_free_i32(t1);
3128     tcg_temp_free_i32(t2);
3129 }
3130
3131 /***                        Memory synchronisation                         ***/
3132 /* eieio */
3133 static void gen_eieio(DisasContext *ctx)
3134 {
3135 }
3136
3137 /* isync */
3138 static void gen_isync(DisasContext *ctx)
3139 {
3140     gen_stop_exception(ctx);
3141 }
3142
3143 /* lwarx */
3144 static void gen_lwarx(DisasContext *ctx)
3145 {
3146     TCGv t0;
3147     TCGv gpr = cpu_gpr[rD(ctx->opcode)];
3148     gen_set_access_type(ctx, ACCESS_RES);
3149     t0 = tcg_temp_local_new();
3150     gen_addr_reg_index(ctx, t0);
3151     gen_check_align(ctx, t0, 0x03);
3152     gen_qemu_ld32u(ctx, gpr, t0);
3153     tcg_gen_mov_tl(cpu_reserve, t0);
3154     tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUPPCState, reserve_val));
3155     tcg_temp_free(t0);
3156 }
3157
3158 #if defined(CONFIG_USER_ONLY)
3159 static void gen_conditional_store (DisasContext *ctx, TCGv EA,
3160                                    int reg, int size)
3161 {
3162     TCGv t0 = tcg_temp_new();
3163     uint32_t save_exception = ctx->exception;
3164
3165     tcg_gen_st_tl(EA, cpu_env, offsetof(CPUPPCState, reserve_ea));
3166     tcg_gen_movi_tl(t0, (size << 5) | reg);
3167     tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, reserve_info));
3168     tcg_temp_free(t0);
3169     gen_update_nip(ctx, ctx->nip-4);
3170     ctx->exception = POWERPC_EXCP_BRANCH;
3171     gen_exception(ctx, POWERPC_EXCP_STCX);
3172     ctx->exception = save_exception;
3173 }
3174 #endif
3175
3176 /* stwcx. */
3177 static void gen_stwcx_(DisasContext *ctx)
3178 {
3179     TCGv t0;
3180     gen_set_access_type(ctx, ACCESS_RES);
3181     t0 = tcg_temp_local_new();
3182     gen_addr_reg_index(ctx, t0);
3183     gen_check_align(ctx, t0, 0x03);
3184 #if defined(CONFIG_USER_ONLY)
3185     gen_conditional_store(ctx, t0, rS(ctx->opcode), 4);
3186 #else
3187     {
3188         int l1;
3189
3190         tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
3191         l1 = gen_new_label();
3192         tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3193         tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3194         gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3195         gen_set_label(l1);
3196         tcg_gen_movi_tl(cpu_reserve, -1);
3197     }
3198 #endif
3199     tcg_temp_free(t0);
3200 }
3201
3202 #if defined(TARGET_PPC64)
3203 /* ldarx */
3204 static void gen_ldarx(DisasContext *ctx)
3205 {
3206     TCGv t0;
3207     TCGv gpr = cpu_gpr[rD(ctx->opcode)];
3208     gen_set_access_type(ctx, ACCESS_RES);
3209     t0 = tcg_temp_local_new();
3210     gen_addr_reg_index(ctx, t0);
3211     gen_check_align(ctx, t0, 0x07);
3212     gen_qemu_ld64(ctx, gpr, t0);
3213     tcg_gen_mov_tl(cpu_reserve, t0);
3214     tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUPPCState, reserve_val));
3215     tcg_temp_free(t0);
3216 }
3217
3218 /* stdcx. */
3219 static void gen_stdcx_(DisasContext *ctx)
3220 {
3221     TCGv t0;
3222     gen_set_access_type(ctx, ACCESS_RES);
3223     t0 = tcg_temp_local_new();
3224     gen_addr_reg_index(ctx, t0);
3225     gen_check_align(ctx, t0, 0x07);
3226 #if defined(CONFIG_USER_ONLY)
3227     gen_conditional_store(ctx, t0, rS(ctx->opcode), 8);
3228 #else
3229     {
3230         int l1;
3231         tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
3232         l1 = gen_new_label();
3233         tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3234         tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3235         gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3236         gen_set_label(l1);
3237         tcg_gen_movi_tl(cpu_reserve, -1);
3238     }
3239 #endif
3240     tcg_temp_free(t0);
3241 }
3242 #endif /* defined(TARGET_PPC64) */
3243
3244 /* sync */
3245 static void gen_sync(DisasContext *ctx)
3246 {
3247 }
3248
3249 /* wait */
3250 static void gen_wait(DisasContext *ctx)
3251 {
3252     TCGv_i32 t0 = tcg_temp_new_i32();
3253     tcg_gen_st_i32(t0, cpu_env,
3254                    -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
3255     tcg_temp_free_i32(t0);
3256     /* Stop translation, as the CPU is supposed to sleep from now */
3257     gen_exception_err(ctx, EXCP_HLT, 1);
3258 }
3259
3260 /***                         Floating-point load                           ***/
3261 #define GEN_LDF(name, ldop, opc, type)                                        \
3262 static void glue(gen_, name)(DisasContext *ctx)                                       \
3263 {                                                                             \
3264     TCGv EA;                                                                  \
3265     if (unlikely(!ctx->fpu_enabled)) {                                        \
3266         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3267         return;                                                               \
3268     }                                                                         \
3269     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3270     EA = tcg_temp_new();                                                      \
3271     gen_addr_imm_index(ctx, EA, 0);                                           \
3272     gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA);                       \
3273     tcg_temp_free(EA);                                                        \
3274 }
3275
3276 #define GEN_LDUF(name, ldop, opc, type)                                       \
3277 static void glue(gen_, name##u)(DisasContext *ctx)                                    \
3278 {                                                                             \
3279     TCGv EA;                                                                  \
3280     if (unlikely(!ctx->fpu_enabled)) {                                        \
3281         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3282         return;                                                               \
3283     }                                                                         \
3284     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
3285         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
3286         return;                                                               \
3287     }                                                                         \
3288     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3289     EA = tcg_temp_new();                                                      \
3290     gen_addr_imm_index(ctx, EA, 0);                                           \
3291     gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA);                       \
3292     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
3293     tcg_temp_free(EA);                                                        \
3294 }
3295
3296 #define GEN_LDUXF(name, ldop, opc, type)                                      \
3297 static void glue(gen_, name##ux)(DisasContext *ctx)                                   \
3298 {                                                                             \
3299     TCGv EA;                                                                  \
3300     if (unlikely(!ctx->fpu_enabled)) {                                        \
3301         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3302         return;                                                               \
3303     }                                                                         \
3304     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
3305         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
3306         return;                                                               \
3307     }                                                                         \
3308     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3309     EA = tcg_temp_new();                                                      \
3310     gen_addr_reg_index(ctx, EA);                                              \
3311     gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA);                       \
3312     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
3313     tcg_temp_free(EA);                                                        \
3314 }
3315
3316 #define GEN_LDXF(name, ldop, opc2, opc3, type)                                \
3317 static void glue(gen_, name##x)(DisasContext *ctx)                                    \
3318 {                                                                             \
3319     TCGv EA;                                                                  \
3320     if (unlikely(!ctx->fpu_enabled)) {                                        \
3321         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3322         return;                                                               \
3323     }                                                                         \
3324     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3325     EA = tcg_temp_new();                                                      \
3326     gen_addr_reg_index(ctx, EA);                                              \
3327     gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA);                       \
3328     tcg_temp_free(EA);                                                        \
3329 }
3330
3331 #define GEN_LDFS(name, ldop, op, type)                                        \
3332 GEN_LDF(name, ldop, op | 0x20, type);                                         \
3333 GEN_LDUF(name, ldop, op | 0x21, type);                                        \
3334 GEN_LDUXF(name, ldop, op | 0x01, type);                                       \
3335 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3336
3337 static inline void gen_qemu_ld32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3338 {
3339     TCGv t0 = tcg_temp_new();
3340     TCGv_i32 t1 = tcg_temp_new_i32();
3341     gen_qemu_ld32u(ctx, t0, arg2);
3342     tcg_gen_trunc_tl_i32(t1, t0);
3343     tcg_temp_free(t0);
3344     gen_helper_float32_to_float64(arg1, cpu_env, t1);
3345     tcg_temp_free_i32(t1);
3346 }
3347
3348  /* lfd lfdu lfdux lfdx */
3349 GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT);
3350  /* lfs lfsu lfsux lfsx */
3351 GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT);
3352
3353 /* lfdp */
3354 static void gen_lfdp(DisasContext *ctx)
3355 {
3356     TCGv EA;
3357     if (unlikely(!ctx->fpu_enabled)) {
3358         gen_exception(ctx, POWERPC_EXCP_FPU);
3359         return;
3360     }
3361     gen_set_access_type(ctx, ACCESS_FLOAT);
3362     EA = tcg_temp_new();
3363     gen_addr_imm_index(ctx, EA, 0);                                           \
3364     if (unlikely(ctx->le_mode)) {
3365         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3366         tcg_gen_addi_tl(EA, EA, 8);
3367         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3368     } else {
3369         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3370         tcg_gen_addi_tl(EA, EA, 8);
3371         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3372     }
3373     tcg_temp_free(EA);
3374 }
3375
3376 /* lfdpx */
3377 static void gen_lfdpx(DisasContext *ctx)
3378 {
3379     TCGv EA;
3380     if (unlikely(!ctx->fpu_enabled)) {
3381         gen_exception(ctx, POWERPC_EXCP_FPU);
3382         return;
3383     }
3384     gen_set_access_type(ctx, ACCESS_FLOAT);
3385     EA = tcg_temp_new();
3386     gen_addr_reg_index(ctx, EA);
3387     if (unlikely(ctx->le_mode)) {
3388         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3389         tcg_gen_addi_tl(EA, EA, 8);
3390         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3391     } else {
3392         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3393         tcg_gen_addi_tl(EA, EA, 8);
3394         gen_qemu_ld64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3395     }
3396     tcg_temp_free(EA);
3397 }
3398
3399 /* lfiwax */
3400 static void gen_lfiwax(DisasContext *ctx)
3401 {
3402     TCGv EA;
3403     TCGv t0;
3404     if (unlikely(!ctx->fpu_enabled)) {
3405         gen_exception(ctx, POWERPC_EXCP_FPU);
3406         return;
3407     }
3408     gen_set_access_type(ctx, ACCESS_FLOAT);
3409     EA = tcg_temp_new();
3410     t0 = tcg_temp_new();
3411     gen_addr_reg_index(ctx, EA);
3412     gen_qemu_ld32s(ctx, t0, EA);
3413     tcg_gen_ext_tl_i64(cpu_fpr[rD(ctx->opcode)], t0);
3414     tcg_temp_free(EA);
3415     tcg_temp_free(t0);
3416 }
3417
3418 /***                         Floating-point store                          ***/
3419 #define GEN_STF(name, stop, opc, type)                                        \
3420 static void glue(gen_, name)(DisasContext *ctx)                                       \
3421 {                                                                             \
3422     TCGv EA;                                                                  \
3423     if (unlikely(!ctx->fpu_enabled)) {                                        \
3424         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3425         return;                                                               \
3426     }                                                                         \
3427     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3428     EA = tcg_temp_new();                                                      \
3429     gen_addr_imm_index(ctx, EA, 0);                                           \
3430     gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA);                       \
3431     tcg_temp_free(EA);                                                        \
3432 }
3433
3434 #define GEN_STUF(name, stop, opc, type)                                       \
3435 static void glue(gen_, name##u)(DisasContext *ctx)                                    \
3436 {                                                                             \
3437     TCGv EA;                                                                  \
3438     if (unlikely(!ctx->fpu_enabled)) {                                        \
3439         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3440         return;                                                               \
3441     }                                                                         \
3442     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
3443         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
3444         return;                                                               \
3445     }                                                                         \
3446     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3447     EA = tcg_temp_new();                                                      \
3448     gen_addr_imm_index(ctx, EA, 0);                                           \
3449     gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA);                       \
3450     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
3451     tcg_temp_free(EA);                                                        \
3452 }
3453
3454 #define GEN_STUXF(name, stop, opc, type)                                      \
3455 static void glue(gen_, name##ux)(DisasContext *ctx)                                   \
3456 {                                                                             \
3457     TCGv EA;                                                                  \
3458     if (unlikely(!ctx->fpu_enabled)) {                                        \
3459         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3460         return;                                                               \
3461     }                                                                         \
3462     if (unlikely(rA(ctx->opcode) == 0)) {                                     \
3463         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);                   \
3464         return;                                                               \
3465     }                                                                         \
3466     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3467     EA = tcg_temp_new();                                                      \
3468     gen_addr_reg_index(ctx, EA);                                              \
3469     gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA);                       \
3470     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);                             \
3471     tcg_temp_free(EA);                                                        \
3472 }
3473
3474 #define GEN_STXF(name, stop, opc2, opc3, type)                                \
3475 static void glue(gen_, name##x)(DisasContext *ctx)                                    \
3476 {                                                                             \
3477     TCGv EA;                                                                  \
3478     if (unlikely(!ctx->fpu_enabled)) {                                        \
3479         gen_exception(ctx, POWERPC_EXCP_FPU);                                 \
3480         return;                                                               \
3481     }                                                                         \
3482     gen_set_access_type(ctx, ACCESS_FLOAT);                                   \
3483     EA = tcg_temp_new();                                                      \
3484     gen_addr_reg_index(ctx, EA);                                              \
3485     gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA);                       \
3486     tcg_temp_free(EA);                                                        \
3487 }
3488
3489 #define GEN_STFS(name, stop, op, type)                                        \
3490 GEN_STF(name, stop, op | 0x20, type);                                         \
3491 GEN_STUF(name, stop, op | 0x21, type);                                        \
3492 GEN_STUXF(name, stop, op | 0x01, type);                                       \
3493 GEN_STXF(name, stop, 0x17, op | 0x00, type)
3494
3495 static inline void gen_qemu_st32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3496 {
3497     TCGv_i32 t0 = tcg_temp_new_i32();
3498     TCGv t1 = tcg_temp_new();
3499     gen_helper_float64_to_float32(t0, cpu_env, arg1);
3500     tcg_gen_extu_i32_tl(t1, t0);
3501     tcg_temp_free_i32(t0);
3502     gen_qemu_st32(ctx, t1, arg2);
3503     tcg_temp_free(t1);
3504 }
3505
3506 /* stfd stfdu stfdux stfdx */
3507 GEN_STFS(stfd, st64, 0x16, PPC_FLOAT);
3508 /* stfs stfsu stfsux stfsx */
3509 GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT);
3510
3511 /* stfdp */
3512 static void gen_stfdp(DisasContext *ctx)
3513 {
3514     TCGv EA;
3515     if (unlikely(!ctx->fpu_enabled)) {
3516         gen_exception(ctx, POWERPC_EXCP_FPU);
3517         return;
3518     }
3519     gen_set_access_type(ctx, ACCESS_FLOAT);
3520     EA = tcg_temp_new();
3521     gen_addr_imm_index(ctx, EA, 0);                                           \
3522     if (unlikely(ctx->le_mode)) {
3523         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3524         tcg_gen_addi_tl(EA, EA, 8);
3525         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3526     } else {
3527         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3528         tcg_gen_addi_tl(EA, EA, 8);
3529         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3530     }
3531     tcg_temp_free(EA);
3532 }
3533
3534 /* stfdpx */
3535 static void gen_stfdpx(DisasContext *ctx)
3536 {
3537     TCGv EA;
3538     if (unlikely(!ctx->fpu_enabled)) {
3539         gen_exception(ctx, POWERPC_EXCP_FPU);
3540         return;
3541     }
3542     gen_set_access_type(ctx, ACCESS_FLOAT);
3543     EA = tcg_temp_new();
3544     gen_addr_reg_index(ctx, EA);
3545     if (unlikely(ctx->le_mode)) {
3546         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3547         tcg_gen_addi_tl(EA, EA, 8);
3548         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3549     } else {
3550         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode)], EA);
3551         tcg_gen_addi_tl(EA, EA, 8);
3552         gen_qemu_st64(ctx, cpu_fpr[rD(ctx->opcode) + 1], EA);
3553     }
3554     tcg_temp_free(EA);
3555 }
3556
3557 /* Optional: */
3558 static inline void gen_qemu_st32fiw(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
3559 {
3560     TCGv t0 = tcg_temp_new();
3561     tcg_gen_trunc_i64_tl(t0, arg1),
3562     gen_qemu_st32(ctx, t0, arg2);
3563     tcg_temp_free(t0);
3564 }
3565 /* stfiwx */
3566 GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX);
3567
3568 static inline void gen_update_cfar(DisasContext *ctx, target_ulong nip)
3569 {
3570 #if defined(TARGET_PPC64)
3571     if (ctx->has_cfar)
3572         tcg_gen_movi_tl(cpu_cfar, nip);
3573 #endif
3574 }
3575
3576 /***                                Branch                                 ***/
3577 static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
3578 {
3579     TranslationBlock *tb;
3580     tb = ctx->tb;
3581     if (NARROW_MODE(ctx)) {
3582         dest = (uint32_t) dest;
3583     }
3584     if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) &&
3585         likely(!ctx->singlestep_enabled)) {
3586         tcg_gen_goto_tb(n);
3587         tcg_gen_movi_tl(cpu_nip, dest & ~3);
3588         tcg_gen_exit_tb((uintptr_t)tb + n);
3589     } else {
3590         tcg_gen_movi_tl(cpu_nip, dest & ~3);
3591         if (unlikely(ctx->singlestep_enabled)) {
3592             if ((ctx->singlestep_enabled &
3593                 (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) &&
3594                 (ctx->exception == POWERPC_EXCP_BRANCH ||
3595                  ctx->exception == POWERPC_EXCP_TRACE)) {
3596                 target_ulong tmp = ctx->nip;
3597                 ctx->nip = dest;
3598                 gen_exception(ctx, POWERPC_EXCP_TRACE);
3599                 ctx->nip = tmp;
3600             }
3601             if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) {
3602                 gen_debug_exception(ctx);
3603             }
3604         }
3605         tcg_gen_exit_tb(0);
3606     }
3607 }
3608
3609 static inline void gen_setlr(DisasContext *ctx, target_ulong nip)
3610 {
3611     if (NARROW_MODE(ctx)) {
3612         nip = (uint32_t)nip;
3613     }
3614     tcg_gen_movi_tl(cpu_lr, nip);
3615 }
3616
3617 /* b ba bl bla */
3618 static void gen_b(DisasContext *ctx)
3619 {
3620     target_ulong li, target;
3621
3622     ctx->exception = POWERPC_EXCP_BRANCH;
3623     /* sign extend LI */
3624     li = LI(ctx->opcode);
3625     li = (li ^ 0x02000000) - 0x02000000;
3626     if (likely(AA(ctx->opcode) == 0)) {
3627         target = ctx->nip + li - 4;
3628     } else {
3629         target = li;
3630     }
3631     if (LK(ctx->opcode)) {
3632         gen_setlr(ctx, ctx->nip);
3633     }
3634     gen_update_cfar(ctx, ctx->nip);
3635     gen_goto_tb(ctx, 0, target);
3636 }
3637
3638 #define BCOND_IM  0
3639 #define BCOND_LR  1
3640 #define BCOND_CTR 2
3641
3642 static inline void gen_bcond(DisasContext *ctx, int type)
3643 {
3644     uint32_t bo = BO(ctx->opcode);
3645     int l1;
3646     TCGv target;
3647
3648     ctx->exception = POWERPC_EXCP_BRANCH;
3649     if (type == BCOND_LR || type == BCOND_CTR) {
3650         target = tcg_temp_local_new();
3651         if (type == BCOND_CTR)
3652             tcg_gen_mov_tl(target, cpu_ctr);
3653         else
3654             tcg_gen_mov_tl(target, cpu_lr);
3655     } else {
3656         TCGV_UNUSED(target);
3657     }
3658     if (LK(ctx->opcode))
3659         gen_setlr(ctx, ctx->nip);
3660     l1 = gen_new_label();
3661     if ((bo & 0x4) == 0) {
3662         /* Decrement and test CTR */
3663         TCGv temp = tcg_temp_new();
3664         if (unlikely(type == BCOND_CTR)) {
3665             gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
3666             return;
3667         }
3668         tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);
3669         if (NARROW_MODE(ctx)) {
3670             tcg_gen_ext32u_tl(temp, cpu_ctr);
3671         } else {
3672             tcg_gen_mov_tl(temp, cpu_ctr);
3673         }
3674         if (bo & 0x2) {
3675             tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1);
3676         } else {
3677             tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1);
3678         }
3679         tcg_temp_free(temp);
3680     }
3681     if ((bo & 0x10) == 0) {
3682         /* Test CR */
3683         uint32_t bi = BI(ctx->opcode);
3684         uint32_t mask = 1 << (3 - (bi & 0x03));
3685         TCGv_i32 temp = tcg_temp_new_i32();
3686
3687         if (bo & 0x8) {
3688             tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3689             tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1);
3690         } else {
3691             tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3692             tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1);
3693         }
3694         tcg_temp_free_i32(temp);
3695     }
3696     gen_update_cfar(ctx, ctx->nip);
3697     if (type == BCOND_IM) {
3698         target_ulong li = (target_long)((int16_t)(BD(ctx->opcode)));
3699         if (likely(AA(ctx->opcode) == 0)) {
3700             gen_goto_tb(ctx, 0, ctx->nip + li - 4);
3701         } else {
3702             gen_goto_tb(ctx, 0, li);
3703         }
3704         gen_set_label(l1);
3705         gen_goto_tb(ctx, 1, ctx->nip);
3706     } else {
3707         if (NARROW_MODE(ctx)) {
3708             tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
3709         } else {
3710             tcg_gen_andi_tl(cpu_nip, target, ~3);
3711         }
3712         tcg_gen_exit_tb(0);
3713         gen_set_label(l1);
3714         gen_update_nip(ctx, ctx->nip);
3715         tcg_gen_exit_tb(0);
3716     }
3717 }
3718
3719 static void gen_bc(DisasContext *ctx)
3720 {
3721     gen_bcond(ctx, BCOND_IM);
3722 }
3723
3724 static void gen_bcctr(DisasContext *ctx)
3725 {
3726     gen_bcond(ctx, BCOND_CTR);
3727 }
3728
3729 static void gen_bclr(DisasContext *ctx)
3730 {
3731     gen_bcond(ctx, BCOND_LR);
3732 }
3733
3734 /***                      Condition register logical                       ***/
3735 #define GEN_CRLOGIC(name, tcg_op, opc)                                        \
3736 static void glue(gen_, name)(DisasContext *ctx)                                       \
3737 {                                                                             \
3738     uint8_t bitmask;                                                          \
3739     int sh;                                                                   \
3740     TCGv_i32 t0, t1;                                                          \
3741     sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03);             \
3742     t0 = tcg_temp_new_i32();                                                  \
3743     if (sh > 0)                                                               \
3744         tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh);            \
3745     else if (sh < 0)                                                          \
3746         tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh);           \
3747     else                                                                      \
3748         tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]);                 \
3749     t1 = tcg_temp_new_i32();                                                  \
3750     sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03);             \
3751     if (sh > 0)                                                               \
3752         tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh);            \
3753     else if (sh < 0)                                                          \
3754         tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh);           \
3755     else                                                                      \
3756         tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]);                 \
3757     tcg_op(t0, t0, t1);                                                       \
3758     bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03));                          \
3759     tcg_gen_andi_i32(t0, t0, bitmask);                                        \
3760     tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask);          \
3761     tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1);                  \
3762     tcg_temp_free_i32(t0);                                                    \
3763     tcg_temp_free_i32(t1);                                                    \
3764 }
3765
3766 /* crand */
3767 GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08);
3768 /* crandc */
3769 GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04);
3770 /* creqv */
3771 GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09);
3772 /* crnand */
3773 GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07);
3774 /* crnor */
3775 GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01);
3776 /* cror */
3777 GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E);
3778 /* crorc */
3779 GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D);
3780 /* crxor */
3781 GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06);
3782
3783 /* mcrf */
3784 static void gen_mcrf(DisasContext *ctx)
3785 {
3786     tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]);
3787 }
3788
3789 /***                           System linkage                              ***/
3790
3791 /* rfi (mem_idx only) */
3792 static void gen_rfi(DisasContext *ctx)
3793 {
3794 #if defined(CONFIG_USER_ONLY)
3795     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3796 #else
3797     /* Restore CPU state */
3798     if (unlikely(!ctx->mem_idx)) {
3799         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3800         return;
3801     }
3802     gen_update_cfar(ctx, ctx->nip);
3803     gen_helper_rfi(cpu_env);
3804     gen_sync_exception(ctx);
3805 #endif
3806 }
3807
3808 #if defined(TARGET_PPC64)
3809 static void gen_rfid(DisasContext *ctx)
3810 {
3811 #if defined(CONFIG_USER_ONLY)
3812     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3813 #else
3814     /* Restore CPU state */
3815     if (unlikely(!ctx->mem_idx)) {
3816         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3817         return;
3818     }
3819     gen_update_cfar(ctx, ctx->nip);
3820     gen_helper_rfid(cpu_env);
3821     gen_sync_exception(ctx);
3822 #endif
3823 }
3824
3825 static void gen_hrfid(DisasContext *ctx)
3826 {
3827 #if defined(CONFIG_USER_ONLY)
3828     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3829 #else
3830     /* Restore CPU state */
3831     if (unlikely(ctx->mem_idx <= 1)) {
3832         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
3833         return;
3834     }
3835     gen_helper_hrfid(cpu_env);
3836     gen_sync_exception(ctx);
3837 #endif
3838 }
3839 #endif
3840
3841 /* sc */
3842 #if defined(CONFIG_USER_ONLY)
3843 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3844 #else
3845 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3846 #endif
3847 static void gen_sc(DisasContext *ctx)
3848 {
3849     uint32_t lev;
3850
3851     lev = (ctx->opcode >> 5) & 0x7F;
3852     gen_exception_err(ctx, POWERPC_SYSCALL, lev);
3853 }
3854
3855 /***                                Trap                                   ***/
3856
3857 /* tw */
3858 static void gen_tw(DisasContext *ctx)
3859 {
3860     TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3861     /* Update the nip since this might generate a trap exception */
3862     gen_update_nip(ctx, ctx->nip);
3863     gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3864                   t0);
3865     tcg_temp_free_i32(t0);
3866 }
3867
3868 /* twi */
3869 static void gen_twi(DisasContext *ctx)
3870 {
3871     TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3872     TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3873     /* Update the nip since this might generate a trap exception */
3874     gen_update_nip(ctx, ctx->nip);
3875     gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
3876     tcg_temp_free(t0);
3877     tcg_temp_free_i32(t1);
3878 }
3879
3880 #if defined(TARGET_PPC64)
3881 /* td */
3882 static void gen_td(DisasContext *ctx)
3883 {
3884     TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
3885     /* Update the nip since this might generate a trap exception */
3886     gen_update_nip(ctx, ctx->nip);
3887     gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3888                   t0);
3889     tcg_temp_free_i32(t0);
3890 }
3891
3892 /* tdi */
3893 static void gen_tdi(DisasContext *ctx)
3894 {
3895     TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3896     TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
3897     /* Update the nip since this might generate a trap exception */
3898     gen_update_nip(ctx, ctx->nip);
3899     gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
3900     tcg_temp_free(t0);
3901     tcg_temp_free_i32(t1);
3902 }
3903 #endif
3904
3905 /***                          Processor control                            ***/
3906
3907 static void gen_read_xer(TCGv dst)
3908 {
3909     TCGv t0 = tcg_temp_new();
3910     TCGv t1 = tcg_temp_new();
3911     TCGv t2 = tcg_temp_new();
3912     tcg_gen_mov_tl(dst, cpu_xer);
3913     tcg_gen_shli_tl(t0, cpu_so, XER_SO);
3914     tcg_gen_shli_tl(t1, cpu_ov, XER_OV);
3915     tcg_gen_shli_tl(t2, cpu_ca, XER_CA);
3916     tcg_gen_or_tl(t0, t0, t1);
3917     tcg_gen_or_tl(dst, dst, t2);
3918     tcg_gen_or_tl(dst, dst, t0);
3919     tcg_temp_free(t0);
3920     tcg_temp_free(t1);
3921     tcg_temp_free(t2);
3922 }
3923
3924 static void gen_write_xer(TCGv src)
3925 {
3926     tcg_gen_andi_tl(cpu_xer, src,
3927                     ~((1u << XER_SO) | (1u << XER_OV) | (1u << XER_CA)));
3928     tcg_gen_shri_tl(cpu_so, src, XER_SO);
3929     tcg_gen_shri_tl(cpu_ov, src, XER_OV);
3930     tcg_gen_shri_tl(cpu_ca, src, XER_CA);
3931     tcg_gen_andi_tl(cpu_so, cpu_so, 1);
3932     tcg_gen_andi_tl(cpu_ov, cpu_ov, 1);
3933     tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
3934 }
3935
3936 /* mcrxr */
3937 static void gen_mcrxr(DisasContext *ctx)
3938 {
3939     TCGv_i32 t0 = tcg_temp_new_i32();
3940     TCGv_i32 t1 = tcg_temp_new_i32();
3941     TCGv_i32 dst = cpu_crf[crfD(ctx->opcode)];
3942
3943     tcg_gen_trunc_tl_i32(t0, cpu_so);
3944     tcg_gen_trunc_tl_i32(t1, cpu_ov);
3945     tcg_gen_trunc_tl_i32(dst, cpu_ca);
3946     tcg_gen_shri_i32(t0, t0, 2);
3947     tcg_gen_shri_i32(t1, t1, 1);
3948     tcg_gen_or_i32(dst, dst, t0);
3949     tcg_gen_or_i32(dst, dst, t1);
3950     tcg_temp_free_i32(t0);
3951     tcg_temp_free_i32(t1);
3952
3953     tcg_gen_movi_tl(cpu_so, 0);
3954     tcg_gen_movi_tl(cpu_ov, 0);
3955     tcg_gen_movi_tl(cpu_ca, 0);
3956 }
3957
3958 /* mfcr mfocrf */
3959 static void gen_mfcr(DisasContext *ctx)
3960 {
3961     uint32_t crm, crn;
3962
3963     if (likely(ctx->opcode & 0x00100000)) {
3964         crm = CRM(ctx->opcode);
3965         if (likely(crm && ((crm & (crm - 1)) == 0))) {
3966             crn = ctz32 (crm);
3967             tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
3968             tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)],
3969                             cpu_gpr[rD(ctx->opcode)], crn * 4);
3970         }
3971     } else {
3972         TCGv_i32 t0 = tcg_temp_new_i32();
3973         tcg_gen_mov_i32(t0, cpu_crf[0]);
3974         tcg_gen_shli_i32(t0, t0, 4);
3975         tcg_gen_or_i32(t0, t0, cpu_crf[1]);
3976         tcg_gen_shli_i32(t0, t0, 4);
3977         tcg_gen_or_i32(t0, t0, cpu_crf[2]);
3978         tcg_gen_shli_i32(t0, t0, 4);
3979         tcg_gen_or_i32(t0, t0, cpu_crf[3]);
3980         tcg_gen_shli_i32(t0, t0, 4);
3981         tcg_gen_or_i32(t0, t0, cpu_crf[4]);
3982         tcg_gen_shli_i32(t0, t0, 4);
3983         tcg_gen_or_i32(t0, t0, cpu_crf[5]);
3984         tcg_gen_shli_i32(t0, t0, 4);
3985         tcg_gen_or_i32(t0, t0, cpu_crf[6]);
3986         tcg_gen_shli_i32(t0, t0, 4);
3987         tcg_gen_or_i32(t0, t0, cpu_crf[7]);
3988         tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
3989         tcg_temp_free_i32(t0);
3990     }
3991 }
3992
3993 /* mfmsr */
3994 static void gen_mfmsr(DisasContext *ctx)
3995 {
3996 #if defined(CONFIG_USER_ONLY)
3997     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
3998 #else
3999     if (unlikely(!ctx->mem_idx)) {
4000         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4001         return;
4002     }
4003     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_msr);
4004 #endif
4005 }
4006
4007 static void spr_noaccess(void *opaque, int gprn, int sprn)
4008 {
4009 #if 0
4010     sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
4011     printf("ERROR: try to access SPR %d !\n", sprn);
4012 #endif
4013 }
4014 #define SPR_NOACCESS (&spr_noaccess)
4015
4016 /* mfspr */
4017 static inline void gen_op_mfspr(DisasContext *ctx)
4018 {
4019     void (*read_cb)(void *opaque, int gprn, int sprn);
4020     uint32_t sprn = SPR(ctx->opcode);
4021
4022 #if !defined(CONFIG_USER_ONLY)
4023     if (ctx->mem_idx == 2)
4024         read_cb = ctx->spr_cb[sprn].hea_read;
4025     else if (ctx->mem_idx)
4026         read_cb = ctx->spr_cb[sprn].oea_read;
4027     else
4028 #endif
4029         read_cb = ctx->spr_cb[sprn].uea_read;
4030     if (likely(read_cb != NULL)) {
4031         if (likely(read_cb != SPR_NOACCESS)) {
4032             (*read_cb)(ctx, rD(ctx->opcode), sprn);
4033         } else {
4034             /* Privilege exception */
4035             /* This is a hack to avoid warnings when running Linux:
4036              * this OS breaks the PowerPC virtualisation model,
4037              * allowing userland application to read the PVR
4038              */
4039             if (sprn != SPR_PVR) {
4040                 qemu_log("Trying to read privileged spr %d (0x%03x) at "
4041                          TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4042                 printf("Trying to read privileged spr %d (0x%03x) at "
4043                        TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4044             }
4045             gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4046         }
4047     } else {
4048         /* Not defined */
4049         qemu_log("Trying to read invalid spr %d (0x%03x) at "
4050                  TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4051         printf("Trying to read invalid spr %d (0x%03x) at "
4052                TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4053         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
4054     }
4055 }
4056
4057 static void gen_mfspr(DisasContext *ctx)
4058 {
4059     gen_op_mfspr(ctx);
4060 }
4061
4062 /* mftb */
4063 static void gen_mftb(DisasContext *ctx)
4064 {
4065     gen_op_mfspr(ctx);
4066 }
4067
4068 /* mtcrf mtocrf*/
4069 static void gen_mtcrf(DisasContext *ctx)
4070 {
4071     uint32_t crm, crn;
4072
4073     crm = CRM(ctx->opcode);
4074     if (likely((ctx->opcode & 0x00100000))) {
4075         if (crm && ((crm & (crm - 1)) == 0)) {
4076             TCGv_i32 temp = tcg_temp_new_i32();
4077             crn = ctz32 (crm);
4078             tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
4079             tcg_gen_shri_i32(temp, temp, crn * 4);
4080             tcg_gen_andi_i32(cpu_crf[7 - crn], temp, 0xf);
4081             tcg_temp_free_i32(temp);
4082         }
4083     } else {
4084         TCGv_i32 temp = tcg_temp_new_i32();
4085         tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
4086         for (crn = 0 ; crn < 8 ; crn++) {
4087             if (crm & (1 << crn)) {
4088                     tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
4089                     tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
4090             }
4091         }
4092         tcg_temp_free_i32(temp);
4093     }
4094 }
4095
4096 /* mtmsr */
4097 #if defined(TARGET_PPC64)
4098 static void gen_mtmsrd(DisasContext *ctx)
4099 {
4100 #if defined(CONFIG_USER_ONLY)
4101     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4102 #else
4103     if (unlikely(!ctx->mem_idx)) {
4104         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4105         return;
4106     }
4107     if (ctx->opcode & 0x00010000) {
4108         /* Special form that does not need any synchronisation */
4109         TCGv t0 = tcg_temp_new();
4110         tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
4111         tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
4112         tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
4113         tcg_temp_free(t0);
4114     } else {
4115         /* XXX: we need to update nip before the store
4116          *      if we enter power saving mode, we will exit the loop
4117          *      directly from ppc_store_msr
4118          */
4119         gen_update_nip(ctx, ctx->nip);
4120         gen_helper_store_msr(cpu_env, cpu_gpr[rS(ctx->opcode)]);
4121         /* Must stop the translation as machine state (may have) changed */
4122         /* Note that mtmsr is not always defined as context-synchronizing */
4123         gen_stop_exception(ctx);
4124     }
4125 #endif
4126 }
4127 #endif
4128
4129 static void gen_mtmsr(DisasContext *ctx)
4130 {
4131 #if defined(CONFIG_USER_ONLY)
4132     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4133 #else
4134     if (unlikely(!ctx->mem_idx)) {
4135         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4136         return;
4137     }
4138     if (ctx->opcode & 0x00010000) {
4139         /* Special form that does not need any synchronisation */
4140         TCGv t0 = tcg_temp_new();
4141         tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
4142         tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
4143         tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
4144         tcg_temp_free(t0);
4145     } else {
4146         TCGv msr = tcg_temp_new();
4147
4148         /* XXX: we need to update nip before the store
4149          *      if we enter power saving mode, we will exit the loop
4150          *      directly from ppc_store_msr
4151          */
4152         gen_update_nip(ctx, ctx->nip);
4153 #if defined(TARGET_PPC64)
4154         tcg_gen_deposit_tl(msr, cpu_msr, cpu_gpr[rS(ctx->opcode)], 0, 32);
4155 #else
4156         tcg_gen_mov_tl(msr, cpu_gpr[rS(ctx->opcode)]);
4157 #endif
4158         gen_helper_store_msr(cpu_env, msr);
4159         /* Must stop the translation as machine state (may have) changed */
4160         /* Note that mtmsr is not always defined as context-synchronizing */
4161         gen_stop_exception(ctx);
4162     }
4163 #endif
4164 }
4165
4166 /* mtspr */
4167 static void gen_mtspr(DisasContext *ctx)
4168 {
4169     void (*write_cb)(void *opaque, int sprn, int gprn);
4170     uint32_t sprn = SPR(ctx->opcode);
4171
4172 #if !defined(CONFIG_USER_ONLY)
4173     if (ctx->mem_idx == 2)
4174         write_cb = ctx->spr_cb[sprn].hea_write;
4175     else if (ctx->mem_idx)
4176         write_cb = ctx->spr_cb[sprn].oea_write;
4177     else
4178 #endif
4179         write_cb = ctx->spr_cb[sprn].uea_write;
4180     if (likely(write_cb != NULL)) {
4181         if (likely(write_cb != SPR_NOACCESS)) {
4182             (*write_cb)(ctx, sprn, rS(ctx->opcode));
4183         } else {
4184             /* Privilege exception */
4185             qemu_log("Trying to write privileged spr %d (0x%03x) at "
4186                      TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4187             printf("Trying to write privileged spr %d (0x%03x) at "
4188                    TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4189             gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4190         }
4191     } else {
4192         /* Not defined */
4193         qemu_log("Trying to write invalid spr %d (0x%03x) at "
4194                  TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4195         printf("Trying to write invalid spr %d (0x%03x) at "
4196                TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4197         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
4198     }
4199 }
4200
4201 /***                         Cache management                              ***/
4202
4203 /* dcbf */
4204 static void gen_dcbf(DisasContext *ctx)
4205 {
4206     /* XXX: specification says this is treated as a load by the MMU */
4207     TCGv t0;
4208     gen_set_access_type(ctx, ACCESS_CACHE);
4209     t0 = tcg_temp_new();
4210     gen_addr_reg_index(ctx, t0);
4211     gen_qemu_ld8u(ctx, t0, t0);
4212     tcg_temp_free(t0);
4213 }
4214
4215 /* dcbi (Supervisor only) */
4216 static void gen_dcbi(DisasContext *ctx)
4217 {
4218 #if defined(CONFIG_USER_ONLY)
4219     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4220 #else
4221     TCGv EA, val;
4222     if (unlikely(!ctx->mem_idx)) {
4223         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4224         return;
4225     }
4226     EA = tcg_temp_new();
4227     gen_set_access_type(ctx, ACCESS_CACHE);
4228     gen_addr_reg_index(ctx, EA);
4229     val = tcg_temp_new();
4230     /* XXX: specification says this should be treated as a store by the MMU */
4231     gen_qemu_ld8u(ctx, val, EA);
4232     gen_qemu_st8(ctx, val, EA);
4233     tcg_temp_free(val);
4234     tcg_temp_free(EA);
4235 #endif
4236 }
4237
4238 /* dcdst */
4239 static void gen_dcbst(DisasContext *ctx)
4240 {
4241     /* XXX: specification say this is treated as a load by the MMU */
4242     TCGv t0;
4243     gen_set_access_type(ctx, ACCESS_CACHE);
4244     t0 = tcg_temp_new();
4245     gen_addr_reg_index(ctx, t0);
4246     gen_qemu_ld8u(ctx, t0, t0);
4247     tcg_temp_free(t0);
4248 }
4249
4250 /* dcbt */
4251 static void gen_dcbt(DisasContext *ctx)
4252 {
4253     /* interpreted as no-op */
4254     /* XXX: specification say this is treated as a load by the MMU
4255      *      but does not generate any exception
4256      */
4257 }
4258
4259 /* dcbtst */
4260 static void gen_dcbtst(DisasContext *ctx)
4261 {
4262     /* interpreted as no-op */
4263     /* XXX: specification say this is treated as a load by the MMU
4264      *      but does not generate any exception
4265      */
4266 }
4267
4268 /* dcbz */
4269 static void gen_dcbz(DisasContext *ctx)
4270 {
4271     TCGv tcgv_addr;
4272     TCGv_i32 tcgv_is_dcbzl;
4273     int is_dcbzl = ctx->opcode & 0x00200000 ? 1 : 0;
4274
4275     gen_set_access_type(ctx, ACCESS_CACHE);
4276     /* NIP cannot be restored if the memory exception comes from an helper */
4277     gen_update_nip(ctx, ctx->nip - 4);
4278     tcgv_addr = tcg_temp_new();
4279     tcgv_is_dcbzl = tcg_const_i32(is_dcbzl);
4280
4281     gen_addr_reg_index(ctx, tcgv_addr);
4282     gen_helper_dcbz(cpu_env, tcgv_addr, tcgv_is_dcbzl);
4283
4284     tcg_temp_free(tcgv_addr);
4285     tcg_temp_free_i32(tcgv_is_dcbzl);
4286 }
4287
4288 /* dst / dstt */
4289 static void gen_dst(DisasContext *ctx)
4290 {
4291     if (rA(ctx->opcode) == 0) {
4292         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
4293     } else {
4294         /* interpreted as no-op */
4295     }
4296 }
4297
4298 /* dstst /dststt */
4299 static void gen_dstst(DisasContext *ctx)
4300 {
4301     if (rA(ctx->opcode) == 0) {
4302         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
4303     } else {
4304         /* interpreted as no-op */
4305     }
4306
4307 }
4308
4309 /* dss / dssall */
4310 static void gen_dss(DisasContext *ctx)
4311 {
4312     /* interpreted as no-op */
4313 }
4314
4315 /* icbi */
4316 static void gen_icbi(DisasContext *ctx)
4317 {
4318     TCGv t0;
4319     gen_set_access_type(ctx, ACCESS_CACHE);
4320     /* NIP cannot be restored if the memory exception comes from an helper */
4321     gen_update_nip(ctx, ctx->nip - 4);
4322     t0 = tcg_temp_new();
4323     gen_addr_reg_index(ctx, t0);
4324     gen_helper_icbi(cpu_env, t0);
4325     tcg_temp_free(t0);
4326 }
4327
4328 /* Optional: */
4329 /* dcba */
4330 static void gen_dcba(DisasContext *ctx)
4331 {
4332     /* interpreted as no-op */
4333     /* XXX: specification say this is treated as a store by the MMU
4334      *      but does not generate any exception
4335      */
4336 }
4337
4338 /***                    Segment register manipulation                      ***/
4339 /* Supervisor only: */
4340
4341 /* mfsr */
4342 static void gen_mfsr(DisasContext *ctx)
4343 {
4344 #if defined(CONFIG_USER_ONLY)
4345     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4346 #else
4347     TCGv t0;
4348     if (unlikely(!ctx->mem_idx)) {
4349         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4350         return;
4351     }
4352     t0 = tcg_const_tl(SR(ctx->opcode));
4353     gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
4354     tcg_temp_free(t0);
4355 #endif
4356 }
4357
4358 /* mfsrin */
4359 static void gen_mfsrin(DisasContext *ctx)
4360 {
4361 #if defined(CONFIG_USER_ONLY)
4362     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4363 #else
4364     TCGv t0;
4365     if (unlikely(!ctx->mem_idx)) {
4366         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4367         return;
4368     }
4369     t0 = tcg_temp_new();
4370     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4371     tcg_gen_andi_tl(t0, t0, 0xF);
4372     gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
4373     tcg_temp_free(t0);
4374 #endif
4375 }
4376
4377 /* mtsr */
4378 static void gen_mtsr(DisasContext *ctx)
4379 {
4380 #if defined(CONFIG_USER_ONLY)
4381     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4382 #else
4383     TCGv t0;
4384     if (unlikely(!ctx->mem_idx)) {
4385         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4386         return;
4387     }
4388     t0 = tcg_const_tl(SR(ctx->opcode));
4389     gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
4390     tcg_temp_free(t0);
4391 #endif
4392 }
4393
4394 /* mtsrin */
4395 static void gen_mtsrin(DisasContext *ctx)
4396 {
4397 #if defined(CONFIG_USER_ONLY)
4398     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4399 #else
4400     TCGv t0;
4401     if (unlikely(!ctx->mem_idx)) {
4402         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4403         return;
4404     }
4405     t0 = tcg_temp_new();
4406     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4407     tcg_gen_andi_tl(t0, t0, 0xF);
4408     gen_helper_store_sr(cpu_env, t0, cpu_gpr[rD(ctx->opcode)]);
4409     tcg_temp_free(t0);
4410 #endif
4411 }
4412
4413 #if defined(TARGET_PPC64)
4414 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
4415
4416 /* mfsr */
4417 static void gen_mfsr_64b(DisasContext *ctx)
4418 {
4419 #if defined(CONFIG_USER_ONLY)
4420     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4421 #else
4422     TCGv t0;
4423     if (unlikely(!ctx->mem_idx)) {
4424         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4425         return;
4426     }
4427     t0 = tcg_const_tl(SR(ctx->opcode));
4428     gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
4429     tcg_temp_free(t0);
4430 #endif
4431 }
4432
4433 /* mfsrin */
4434 static void gen_mfsrin_64b(DisasContext *ctx)
4435 {
4436 #if defined(CONFIG_USER_ONLY)
4437     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4438 #else
4439     TCGv t0;
4440     if (unlikely(!ctx->mem_idx)) {
4441         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4442         return;
4443     }
4444     t0 = tcg_temp_new();
4445     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4446     tcg_gen_andi_tl(t0, t0, 0xF);
4447     gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
4448     tcg_temp_free(t0);
4449 #endif
4450 }
4451
4452 /* mtsr */
4453 static void gen_mtsr_64b(DisasContext *ctx)
4454 {
4455 #if defined(CONFIG_USER_ONLY)
4456     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4457 #else
4458     TCGv t0;
4459     if (unlikely(!ctx->mem_idx)) {
4460         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4461         return;
4462     }
4463     t0 = tcg_const_tl(SR(ctx->opcode));
4464     gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
4465     tcg_temp_free(t0);
4466 #endif
4467 }
4468
4469 /* mtsrin */
4470 static void gen_mtsrin_64b(DisasContext *ctx)
4471 {
4472 #if defined(CONFIG_USER_ONLY)
4473     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4474 #else
4475     TCGv t0;
4476     if (unlikely(!ctx->mem_idx)) {
4477         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4478         return;
4479     }
4480     t0 = tcg_temp_new();
4481     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4482     tcg_gen_andi_tl(t0, t0, 0xF);
4483     gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
4484     tcg_temp_free(t0);
4485 #endif
4486 }
4487
4488 /* slbmte */
4489 static void gen_slbmte(DisasContext *ctx)
4490 {
4491 #if defined(CONFIG_USER_ONLY)
4492     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4493 #else
4494     if (unlikely(!ctx->mem_idx)) {
4495         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4496         return;
4497     }
4498     gen_helper_store_slb(cpu_env, cpu_gpr[rB(ctx->opcode)],
4499                          cpu_gpr[rS(ctx->opcode)]);
4500 #endif
4501 }
4502
4503 static void gen_slbmfee(DisasContext *ctx)
4504 {
4505 #if defined(CONFIG_USER_ONLY)
4506     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4507 #else
4508     if (unlikely(!ctx->mem_idx)) {
4509         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4510         return;
4511     }
4512     gen_helper_load_slb_esid(cpu_gpr[rS(ctx->opcode)], cpu_env,
4513                              cpu_gpr[rB(ctx->opcode)]);
4514 #endif
4515 }
4516
4517 static void gen_slbmfev(DisasContext *ctx)
4518 {
4519 #if defined(CONFIG_USER_ONLY)
4520     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4521 #else
4522     if (unlikely(!ctx->mem_idx)) {
4523         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4524         return;
4525     }
4526     gen_helper_load_slb_vsid(cpu_gpr[rS(ctx->opcode)], cpu_env,
4527                              cpu_gpr[rB(ctx->opcode)]);
4528 #endif
4529 }
4530 #endif /* defined(TARGET_PPC64) */
4531
4532 /***                      Lookaside buffer management                      ***/
4533 /* Optional & mem_idx only: */
4534
4535 /* tlbia */
4536 static void gen_tlbia(DisasContext *ctx)
4537 {
4538 #if defined(CONFIG_USER_ONLY)
4539     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4540 #else
4541     if (unlikely(!ctx->mem_idx)) {
4542         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4543         return;
4544     }
4545     gen_helper_tlbia(cpu_env);
4546 #endif
4547 }
4548
4549 /* tlbiel */
4550 static void gen_tlbiel(DisasContext *ctx)
4551 {
4552 #if defined(CONFIG_USER_ONLY)
4553     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4554 #else
4555     if (unlikely(!ctx->mem_idx)) {
4556         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4557         return;
4558     }
4559     gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
4560 #endif
4561 }
4562
4563 /* tlbie */
4564 static void gen_tlbie(DisasContext *ctx)
4565 {
4566 #if defined(CONFIG_USER_ONLY)
4567     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4568 #else
4569     if (unlikely(!ctx->mem_idx)) {
4570         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4571         return;
4572     }
4573     if (NARROW_MODE(ctx)) {
4574         TCGv t0 = tcg_temp_new();
4575         tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
4576         gen_helper_tlbie(cpu_env, t0);
4577         tcg_temp_free(t0);
4578     } else {
4579         gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
4580     }
4581 #endif
4582 }
4583
4584 /* tlbsync */
4585 static void gen_tlbsync(DisasContext *ctx)
4586 {
4587 #if defined(CONFIG_USER_ONLY)
4588     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4589 #else
4590     if (unlikely(!ctx->mem_idx)) {
4591         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4592         return;
4593     }
4594     /* This has no effect: it should ensure that all previous
4595      * tlbie have completed
4596      */
4597     gen_stop_exception(ctx);
4598 #endif
4599 }
4600
4601 #if defined(TARGET_PPC64)
4602 /* slbia */
4603 static void gen_slbia(DisasContext *ctx)
4604 {
4605 #if defined(CONFIG_USER_ONLY)
4606     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4607 #else
4608     if (unlikely(!ctx->mem_idx)) {
4609         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4610         return;
4611     }
4612     gen_helper_slbia(cpu_env);
4613 #endif
4614 }
4615
4616 /* slbie */
4617 static void gen_slbie(DisasContext *ctx)
4618 {
4619 #if defined(CONFIG_USER_ONLY)
4620     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4621 #else
4622     if (unlikely(!ctx->mem_idx)) {
4623         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4624         return;
4625     }
4626     gen_helper_slbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
4627 #endif
4628 }
4629 #endif
4630
4631 /***                              External control                         ***/
4632 /* Optional: */
4633
4634 /* eciwx */
4635 static void gen_eciwx(DisasContext *ctx)
4636 {
4637     TCGv t0;
4638     /* Should check EAR[E] ! */
4639     gen_set_access_type(ctx, ACCESS_EXT);
4640     t0 = tcg_temp_new();
4641     gen_addr_reg_index(ctx, t0);
4642     gen_check_align(ctx, t0, 0x03);
4643     gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0);
4644     tcg_temp_free(t0);
4645 }
4646
4647 /* ecowx */
4648 static void gen_ecowx(DisasContext *ctx)
4649 {
4650     TCGv t0;
4651     /* Should check EAR[E] ! */
4652     gen_set_access_type(ctx, ACCESS_EXT);
4653     t0 = tcg_temp_new();
4654     gen_addr_reg_index(ctx, t0);
4655     gen_check_align(ctx, t0, 0x03);
4656     gen_qemu_st32(ctx, cpu_gpr[rD(ctx->opcode)], t0);
4657     tcg_temp_free(t0);
4658 }
4659
4660 /* PowerPC 601 specific instructions */
4661
4662 /* abs - abs. */
4663 static void gen_abs(DisasContext *ctx)
4664 {
4665     int l1 = gen_new_label();
4666     int l2 = gen_new_label();
4667     tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l1);
4668     tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4669     tcg_gen_br(l2);
4670     gen_set_label(l1);
4671     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4672     gen_set_label(l2);
4673     if (unlikely(Rc(ctx->opcode) != 0))
4674         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4675 }
4676
4677 /* abso - abso. */
4678 static void gen_abso(DisasContext *ctx)
4679 {
4680     int l1 = gen_new_label();
4681     int l2 = gen_new_label();
4682     int l3 = gen_new_label();
4683     /* Start with XER OV disabled, the most likely case */
4684     tcg_gen_movi_tl(cpu_ov, 0);
4685     tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l2);
4686     tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[rA(ctx->opcode)], 0x80000000, l1);
4687     tcg_gen_movi_tl(cpu_ov, 1);
4688     tcg_gen_movi_tl(cpu_so, 1);
4689     tcg_gen_br(l2);
4690     gen_set_label(l1);
4691     tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4692     tcg_gen_br(l3);
4693     gen_set_label(l2);
4694     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4695     gen_set_label(l3);
4696     if (unlikely(Rc(ctx->opcode) != 0))
4697         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4698 }
4699
4700 /* clcs */
4701 static void gen_clcs(DisasContext *ctx)
4702 {
4703     TCGv_i32 t0 = tcg_const_i32(rA(ctx->opcode));
4704     gen_helper_clcs(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
4705     tcg_temp_free_i32(t0);
4706     /* Rc=1 sets CR0 to an undefined state */
4707 }
4708
4709 /* div - div. */
4710 static void gen_div(DisasContext *ctx)
4711 {
4712     gen_helper_div(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4713                    cpu_gpr[rB(ctx->opcode)]);
4714     if (unlikely(Rc(ctx->opcode) != 0))
4715         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4716 }
4717
4718 /* divo - divo. */
4719 static void gen_divo(DisasContext *ctx)
4720 {
4721     gen_helper_divo(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4722                     cpu_gpr[rB(ctx->opcode)]);
4723     if (unlikely(Rc(ctx->opcode) != 0))
4724         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4725 }
4726
4727 /* divs - divs. */
4728 static void gen_divs(DisasContext *ctx)
4729 {
4730     gen_helper_divs(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4731                     cpu_gpr[rB(ctx->opcode)]);
4732     if (unlikely(Rc(ctx->opcode) != 0))
4733         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4734 }
4735
4736 /* divso - divso. */
4737 static void gen_divso(DisasContext *ctx)
4738 {
4739     gen_helper_divso(cpu_gpr[rD(ctx->opcode)], cpu_env,
4740                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4741     if (unlikely(Rc(ctx->opcode) != 0))
4742         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4743 }
4744
4745 /* doz - doz. */
4746 static void gen_doz(DisasContext *ctx)
4747 {
4748     int l1 = gen_new_label();
4749     int l2 = gen_new_label();
4750     tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4751     tcg_gen_sub_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4752     tcg_gen_br(l2);
4753     gen_set_label(l1);
4754     tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4755     gen_set_label(l2);
4756     if (unlikely(Rc(ctx->opcode) != 0))
4757         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4758 }
4759
4760 /* dozo - dozo. */
4761 static void gen_dozo(DisasContext *ctx)
4762 {
4763     int l1 = gen_new_label();
4764     int l2 = gen_new_label();
4765     TCGv t0 = tcg_temp_new();
4766     TCGv t1 = tcg_temp_new();
4767     TCGv t2 = tcg_temp_new();
4768     /* Start with XER OV disabled, the most likely case */
4769     tcg_gen_movi_tl(cpu_ov, 0);
4770     tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4771     tcg_gen_sub_tl(t0, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4772     tcg_gen_xor_tl(t1, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4773     tcg_gen_xor_tl(t2, cpu_gpr[rA(ctx->opcode)], t0);
4774     tcg_gen_andc_tl(t1, t1, t2);
4775     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
4776     tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
4777     tcg_gen_movi_tl(cpu_ov, 1);
4778     tcg_gen_movi_tl(cpu_so, 1);
4779     tcg_gen_br(l2);
4780     gen_set_label(l1);
4781     tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4782     gen_set_label(l2);
4783     tcg_temp_free(t0);
4784     tcg_temp_free(t1);
4785     tcg_temp_free(t2);
4786     if (unlikely(Rc(ctx->opcode) != 0))
4787         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4788 }
4789
4790 /* dozi */
4791 static void gen_dozi(DisasContext *ctx)
4792 {
4793     target_long simm = SIMM(ctx->opcode);
4794     int l1 = gen_new_label();
4795     int l2 = gen_new_label();
4796     tcg_gen_brcondi_tl(TCG_COND_LT, cpu_gpr[rA(ctx->opcode)], simm, l1);
4797     tcg_gen_subfi_tl(cpu_gpr[rD(ctx->opcode)], simm, cpu_gpr[rA(ctx->opcode)]);
4798     tcg_gen_br(l2);
4799     gen_set_label(l1);
4800     tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4801     gen_set_label(l2);
4802     if (unlikely(Rc(ctx->opcode) != 0))
4803         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4804 }
4805
4806 /* lscbx - lscbx. */
4807 static void gen_lscbx(DisasContext *ctx)
4808 {
4809     TCGv t0 = tcg_temp_new();
4810     TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
4811     TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
4812     TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
4813
4814     gen_addr_reg_index(ctx, t0);
4815     /* NIP cannot be restored if the memory exception comes from an helper */
4816     gen_update_nip(ctx, ctx->nip - 4);
4817     gen_helper_lscbx(t0, cpu_env, t0, t1, t2, t3);
4818     tcg_temp_free_i32(t1);
4819     tcg_temp_free_i32(t2);
4820     tcg_temp_free_i32(t3);
4821     tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F);
4822     tcg_gen_or_tl(cpu_xer, cpu_xer, t0);
4823     if (unlikely(Rc(ctx->opcode) != 0))
4824         gen_set_Rc0(ctx, t0);
4825     tcg_temp_free(t0);
4826 }
4827
4828 /* maskg - maskg. */
4829 static void gen_maskg(DisasContext *ctx)
4830 {
4831     int l1 = gen_new_label();
4832     TCGv t0 = tcg_temp_new();
4833     TCGv t1 = tcg_temp_new();
4834     TCGv t2 = tcg_temp_new();
4835     TCGv t3 = tcg_temp_new();
4836     tcg_gen_movi_tl(t3, 0xFFFFFFFF);
4837     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4838     tcg_gen_andi_tl(t1, cpu_gpr[rS(ctx->opcode)], 0x1F);
4839     tcg_gen_addi_tl(t2, t0, 1);
4840     tcg_gen_shr_tl(t2, t3, t2);
4841     tcg_gen_shr_tl(t3, t3, t1);
4842     tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], t2, t3);
4843     tcg_gen_brcond_tl(TCG_COND_GE, t0, t1, l1);
4844     tcg_gen_neg_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4845     gen_set_label(l1);
4846     tcg_temp_free(t0);
4847     tcg_temp_free(t1);
4848     tcg_temp_free(t2);
4849     tcg_temp_free(t3);
4850     if (unlikely(Rc(ctx->opcode) != 0))
4851         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4852 }
4853
4854 /* maskir - maskir. */
4855 static void gen_maskir(DisasContext *ctx)
4856 {
4857     TCGv t0 = tcg_temp_new();
4858     TCGv t1 = tcg_temp_new();
4859     tcg_gen_and_tl(t0, cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4860     tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4861     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4862     tcg_temp_free(t0);
4863     tcg_temp_free(t1);
4864     if (unlikely(Rc(ctx->opcode) != 0))
4865         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4866 }
4867
4868 /* mul - mul. */
4869 static void gen_mul(DisasContext *ctx)
4870 {
4871     TCGv_i64 t0 = tcg_temp_new_i64();
4872     TCGv_i64 t1 = tcg_temp_new_i64();
4873     TCGv t2 = tcg_temp_new();
4874     tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4875     tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4876     tcg_gen_mul_i64(t0, t0, t1);
4877     tcg_gen_trunc_i64_tl(t2, t0);
4878     gen_store_spr(SPR_MQ, t2);
4879     tcg_gen_shri_i64(t1, t0, 32);
4880     tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4881     tcg_temp_free_i64(t0);
4882     tcg_temp_free_i64(t1);
4883     tcg_temp_free(t2);
4884     if (unlikely(Rc(ctx->opcode) != 0))
4885         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4886 }
4887
4888 /* mulo - mulo. */
4889 static void gen_mulo(DisasContext *ctx)
4890 {
4891     int l1 = gen_new_label();
4892     TCGv_i64 t0 = tcg_temp_new_i64();
4893     TCGv_i64 t1 = tcg_temp_new_i64();
4894     TCGv t2 = tcg_temp_new();
4895     /* Start with XER OV disabled, the most likely case */
4896     tcg_gen_movi_tl(cpu_ov, 0);
4897     tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4898     tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4899     tcg_gen_mul_i64(t0, t0, t1);
4900     tcg_gen_trunc_i64_tl(t2, t0);
4901     gen_store_spr(SPR_MQ, t2);
4902     tcg_gen_shri_i64(t1, t0, 32);
4903     tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4904     tcg_gen_ext32s_i64(t1, t0);
4905     tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
4906     tcg_gen_movi_tl(cpu_ov, 1);
4907     tcg_gen_movi_tl(cpu_so, 1);
4908     gen_set_label(l1);
4909     tcg_temp_free_i64(t0);
4910     tcg_temp_free_i64(t1);
4911     tcg_temp_free(t2);
4912     if (unlikely(Rc(ctx->opcode) != 0))
4913         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4914 }
4915
4916 /* nabs - nabs. */
4917 static void gen_nabs(DisasContext *ctx)
4918 {
4919     int l1 = gen_new_label();
4920     int l2 = gen_new_label();
4921     tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4922     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4923     tcg_gen_br(l2);
4924     gen_set_label(l1);
4925     tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4926     gen_set_label(l2);
4927     if (unlikely(Rc(ctx->opcode) != 0))
4928         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4929 }
4930
4931 /* nabso - nabso. */
4932 static void gen_nabso(DisasContext *ctx)
4933 {
4934     int l1 = gen_new_label();
4935     int l2 = gen_new_label();
4936     tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4937     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4938     tcg_gen_br(l2);
4939     gen_set_label(l1);
4940     tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4941     gen_set_label(l2);
4942     /* nabs never overflows */
4943     tcg_gen_movi_tl(cpu_ov, 0);
4944     if (unlikely(Rc(ctx->opcode) != 0))
4945         gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
4946 }
4947
4948 /* rlmi - rlmi. */
4949 static void gen_rlmi(DisasContext *ctx)
4950 {
4951     uint32_t mb = MB(ctx->opcode);
4952     uint32_t me = ME(ctx->opcode);
4953     TCGv t0 = tcg_temp_new();
4954     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4955     tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4956     tcg_gen_andi_tl(t0, t0, MASK(mb, me));
4957     tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me));
4958     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0);
4959     tcg_temp_free(t0);
4960     if (unlikely(Rc(ctx->opcode) != 0))
4961         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4962 }
4963
4964 /* rrib - rrib. */
4965 static void gen_rrib(DisasContext *ctx)
4966 {
4967     TCGv t0 = tcg_temp_new();
4968     TCGv t1 = tcg_temp_new();
4969     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4970     tcg_gen_movi_tl(t1, 0x80000000);
4971     tcg_gen_shr_tl(t1, t1, t0);
4972     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4973     tcg_gen_and_tl(t0, t0, t1);
4974     tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1);
4975     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4976     tcg_temp_free(t0);
4977     tcg_temp_free(t1);
4978     if (unlikely(Rc(ctx->opcode) != 0))
4979         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4980 }
4981
4982 /* sle - sle. */
4983 static void gen_sle(DisasContext *ctx)
4984 {
4985     TCGv t0 = tcg_temp_new();
4986     TCGv t1 = tcg_temp_new();
4987     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4988     tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4989     tcg_gen_subfi_tl(t1, 32, t1);
4990     tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4991     tcg_gen_or_tl(t1, t0, t1);
4992     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4993     gen_store_spr(SPR_MQ, t1);
4994     tcg_temp_free(t0);
4995     tcg_temp_free(t1);
4996     if (unlikely(Rc(ctx->opcode) != 0))
4997         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
4998 }
4999
5000 /* sleq - sleq. */
5001 static void gen_sleq(DisasContext *ctx)
5002 {
5003     TCGv t0 = tcg_temp_new();
5004     TCGv t1 = tcg_temp_new();
5005     TCGv t2 = tcg_temp_new();
5006     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
5007     tcg_gen_movi_tl(t2, 0xFFFFFFFF);
5008     tcg_gen_shl_tl(t2, t2, t0);
5009     tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
5010     gen_load_spr(t1, SPR_MQ);
5011     gen_store_spr(SPR_MQ, t0);
5012     tcg_gen_and_tl(t0, t0, t2);
5013     tcg_gen_andc_tl(t1, t1, t2);
5014     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5015     tcg_temp_free(t0);
5016     tcg_temp_free(t1);
5017     tcg_temp_free(t2);
5018     if (unlikely(Rc(ctx->opcode) != 0))
5019         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5020 }
5021
5022 /* sliq - sliq. */
5023 static void gen_sliq(DisasContext *ctx)
5024 {
5025     int sh = SH(ctx->opcode);
5026     TCGv t0 = tcg_temp_new();
5027     TCGv t1 = tcg_temp_new();
5028     tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5029     tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
5030     tcg_gen_or_tl(t1, t0, t1);
5031     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5032     gen_store_spr(SPR_MQ, t1);
5033     tcg_temp_free(t0);
5034     tcg_temp_free(t1);
5035     if (unlikely(Rc(ctx->opcode) != 0))
5036         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5037 }
5038
5039 /* slliq - slliq. */
5040 static void gen_slliq(DisasContext *ctx)
5041 {
5042     int sh = SH(ctx->opcode);
5043     TCGv t0 = tcg_temp_new();
5044     TCGv t1 = tcg_temp_new();
5045     tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5046     gen_load_spr(t1, SPR_MQ);
5047     gen_store_spr(SPR_MQ, t0);
5048     tcg_gen_andi_tl(t0, t0,  (0xFFFFFFFFU << sh));
5049     tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh));
5050     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5051     tcg_temp_free(t0);
5052     tcg_temp_free(t1);
5053     if (unlikely(Rc(ctx->opcode) != 0))
5054         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5055 }
5056
5057 /* sllq - sllq. */
5058 static void gen_sllq(DisasContext *ctx)
5059 {
5060     int l1 = gen_new_label();
5061     int l2 = gen_new_label();
5062     TCGv t0 = tcg_temp_local_new();
5063     TCGv t1 = tcg_temp_local_new();
5064     TCGv t2 = tcg_temp_local_new();
5065     tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5066     tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5067     tcg_gen_shl_tl(t1, t1, t2);
5068     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5069     tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5070     gen_load_spr(t0, SPR_MQ);
5071     tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5072     tcg_gen_br(l2);
5073     gen_set_label(l1);
5074     tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5075     gen_load_spr(t2, SPR_MQ);
5076     tcg_gen_andc_tl(t1, t2, t1);
5077     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5078     gen_set_label(l2);
5079     tcg_temp_free(t0);
5080     tcg_temp_free(t1);
5081     tcg_temp_free(t2);
5082     if (unlikely(Rc(ctx->opcode) != 0))
5083         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5084 }
5085
5086 /* slq - slq. */
5087 static void gen_slq(DisasContext *ctx)
5088 {
5089     int l1 = gen_new_label();
5090     TCGv t0 = tcg_temp_new();
5091     TCGv t1 = tcg_temp_new();
5092     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5093     tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5094     tcg_gen_subfi_tl(t1, 32, t1);
5095     tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5096     tcg_gen_or_tl(t1, t0, t1);
5097     gen_store_spr(SPR_MQ, t1);
5098     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
5099     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5100     tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
5101     tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
5102     gen_set_label(l1);
5103     tcg_temp_free(t0);
5104     tcg_temp_free(t1);
5105     if (unlikely(Rc(ctx->opcode) != 0))
5106         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5107 }
5108
5109 /* sraiq - sraiq. */
5110 static void gen_sraiq(DisasContext *ctx)
5111 {
5112     int sh = SH(ctx->opcode);
5113     int l1 = gen_new_label();
5114     TCGv t0 = tcg_temp_new();
5115     TCGv t1 = tcg_temp_new();
5116     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5117     tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
5118     tcg_gen_or_tl(t0, t0, t1);
5119     gen_store_spr(SPR_MQ, t0);
5120     tcg_gen_movi_tl(cpu_ca, 0);
5121     tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
5122     tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
5123     tcg_gen_movi_tl(cpu_ca, 1);
5124     gen_set_label(l1);
5125     tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
5126     tcg_temp_free(t0);
5127     tcg_temp_free(t1);
5128     if (unlikely(Rc(ctx->opcode) != 0))
5129         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5130 }
5131
5132 /* sraq - sraq. */
5133 static void gen_sraq(DisasContext *ctx)
5134 {
5135     int l1 = gen_new_label();
5136     int l2 = gen_new_label();
5137     TCGv t0 = tcg_temp_new();
5138     TCGv t1 = tcg_temp_local_new();
5139     TCGv t2 = tcg_temp_local_new();
5140     tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5141     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5142     tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2);
5143     tcg_gen_subfi_tl(t2, 32, t2);
5144     tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2);
5145     tcg_gen_or_tl(t0, t0, t2);
5146     gen_store_spr(SPR_MQ, t0);
5147     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5148     tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1);
5149     tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]);
5150     tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31);
5151     gen_set_label(l1);
5152     tcg_temp_free(t0);
5153     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1);
5154     tcg_gen_movi_tl(cpu_ca, 0);
5155     tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
5156     tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2);
5157     tcg_gen_movi_tl(cpu_ca, 1);
5158     gen_set_label(l2);
5159     tcg_temp_free(t1);
5160     tcg_temp_free(t2);
5161     if (unlikely(Rc(ctx->opcode) != 0))
5162         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5163 }
5164
5165 /* sre - sre. */
5166 static void gen_sre(DisasContext *ctx)
5167 {
5168     TCGv t0 = tcg_temp_new();
5169     TCGv t1 = tcg_temp_new();
5170     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5171     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5172     tcg_gen_subfi_tl(t1, 32, t1);
5173     tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5174     tcg_gen_or_tl(t1, t0, t1);
5175     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5176     gen_store_spr(SPR_MQ, t1);
5177     tcg_temp_free(t0);
5178     tcg_temp_free(t1);
5179     if (unlikely(Rc(ctx->opcode) != 0))
5180         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5181 }
5182
5183 /* srea - srea. */
5184 static void gen_srea(DisasContext *ctx)
5185 {
5186     TCGv t0 = tcg_temp_new();
5187     TCGv t1 = tcg_temp_new();
5188     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5189     tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5190     gen_store_spr(SPR_MQ, t0);
5191     tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1);
5192     tcg_temp_free(t0);
5193     tcg_temp_free(t1);
5194     if (unlikely(Rc(ctx->opcode) != 0))
5195         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5196 }
5197
5198 /* sreq */
5199 static void gen_sreq(DisasContext *ctx)
5200 {
5201     TCGv t0 = tcg_temp_new();
5202     TCGv t1 = tcg_temp_new();
5203     TCGv t2 = tcg_temp_new();
5204     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
5205     tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5206     tcg_gen_shr_tl(t1, t1, t0);
5207     tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
5208     gen_load_spr(t2, SPR_MQ);
5209     gen_store_spr(SPR_MQ, t0);
5210     tcg_gen_and_tl(t0, t0, t1);
5211     tcg_gen_andc_tl(t2, t2, t1);
5212     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5213     tcg_temp_free(t0);
5214     tcg_temp_free(t1);
5215     tcg_temp_free(t2);
5216     if (unlikely(Rc(ctx->opcode) != 0))
5217         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5218 }
5219
5220 /* sriq */
5221 static void gen_sriq(DisasContext *ctx)
5222 {
5223     int sh = SH(ctx->opcode);
5224     TCGv t0 = tcg_temp_new();
5225     TCGv t1 = tcg_temp_new();
5226     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5227     tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
5228     tcg_gen_or_tl(t1, t0, t1);
5229     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5230     gen_store_spr(SPR_MQ, t1);
5231     tcg_temp_free(t0);
5232     tcg_temp_free(t1);
5233     if (unlikely(Rc(ctx->opcode) != 0))
5234         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5235 }
5236
5237 /* srliq */
5238 static void gen_srliq(DisasContext *ctx)
5239 {
5240     int sh = SH(ctx->opcode);
5241     TCGv t0 = tcg_temp_new();
5242     TCGv t1 = tcg_temp_new();
5243     tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5244     gen_load_spr(t1, SPR_MQ);
5245     gen_store_spr(SPR_MQ, t0);
5246     tcg_gen_andi_tl(t0, t0,  (0xFFFFFFFFU >> sh));
5247     tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh));
5248     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5249     tcg_temp_free(t0);
5250     tcg_temp_free(t1);
5251     if (unlikely(Rc(ctx->opcode) != 0))
5252         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5253 }
5254
5255 /* srlq */
5256 static void gen_srlq(DisasContext *ctx)
5257 {
5258     int l1 = gen_new_label();
5259     int l2 = gen_new_label();
5260     TCGv t0 = tcg_temp_local_new();
5261     TCGv t1 = tcg_temp_local_new();
5262     TCGv t2 = tcg_temp_local_new();
5263     tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5264     tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5265     tcg_gen_shr_tl(t2, t1, t2);
5266     tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5267     tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5268     gen_load_spr(t0, SPR_MQ);
5269     tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5270     tcg_gen_br(l2);
5271     gen_set_label(l1);
5272     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5273     tcg_gen_and_tl(t0, t0, t2);
5274     gen_load_spr(t1, SPR_MQ);
5275     tcg_gen_andc_tl(t1, t1, t2);
5276     tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5277     gen_set_label(l2);
5278     tcg_temp_free(t0);
5279     tcg_temp_free(t1);
5280     tcg_temp_free(t2);
5281     if (unlikely(Rc(ctx->opcode) != 0))
5282         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5283 }
5284
5285 /* srq */
5286 static void gen_srq(DisasContext *ctx)
5287 {
5288     int l1 = gen_new_label();
5289     TCGv t0 = tcg_temp_new();
5290     TCGv t1 = tcg_temp_new();
5291     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5292     tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5293     tcg_gen_subfi_tl(t1, 32, t1);
5294     tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5295     tcg_gen_or_tl(t1, t0, t1);
5296     gen_store_spr(SPR_MQ, t1);
5297     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
5298     tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5299     tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5300     tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
5301     gen_set_label(l1);
5302     tcg_temp_free(t0);
5303     tcg_temp_free(t1);
5304     if (unlikely(Rc(ctx->opcode) != 0))
5305         gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
5306 }
5307
5308 /* PowerPC 602 specific instructions */
5309
5310 /* dsa  */
5311 static void gen_dsa(DisasContext *ctx)
5312 {
5313     /* XXX: TODO */
5314     gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5315 }
5316
5317 /* esa */
5318 static void gen_esa(DisasContext *ctx)
5319 {
5320     /* XXX: TODO */
5321     gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5322 }
5323
5324 /* mfrom */
5325 static void gen_mfrom(DisasContext *ctx)
5326 {
5327 #if defined(CONFIG_USER_ONLY)
5328     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5329 #else
5330     if (unlikely(!ctx->mem_idx)) {
5331         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5332         return;
5333     }
5334     gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
5335 #endif
5336 }
5337
5338 /* 602 - 603 - G2 TLB management */
5339
5340 /* tlbld */
5341 static void gen_tlbld_6xx(DisasContext *ctx)
5342 {
5343 #if defined(CONFIG_USER_ONLY)
5344     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5345 #else
5346     if (unlikely(!ctx->mem_idx)) {
5347         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5348         return;
5349     }
5350     gen_helper_6xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
5351 #endif
5352 }
5353
5354 /* tlbli */
5355 static void gen_tlbli_6xx(DisasContext *ctx)
5356 {
5357 #if defined(CONFIG_USER_ONLY)
5358     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5359 #else
5360     if (unlikely(!ctx->mem_idx)) {
5361         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5362         return;
5363     }
5364     gen_helper_6xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
5365 #endif
5366 }
5367
5368 /* 74xx TLB management */
5369
5370 /* tlbld */
5371 static void gen_tlbld_74xx(DisasContext *ctx)
5372 {
5373 #if defined(CONFIG_USER_ONLY)
5374     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5375 #else
5376     if (unlikely(!ctx->mem_idx)) {
5377         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5378         return;
5379     }
5380     gen_helper_74xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
5381 #endif
5382 }
5383
5384 /* tlbli */
5385 static void gen_tlbli_74xx(DisasContext *ctx)
5386 {
5387 #if defined(CONFIG_USER_ONLY)
5388     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5389 #else
5390     if (unlikely(!ctx->mem_idx)) {
5391         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5392         return;
5393     }
5394     gen_helper_74xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
5395 #endif
5396 }
5397
5398 /* POWER instructions not in PowerPC 601 */
5399
5400 /* clf */
5401 static void gen_clf(DisasContext *ctx)
5402 {
5403     /* Cache line flush: implemented as no-op */
5404 }
5405
5406 /* cli */
5407 static void gen_cli(DisasContext *ctx)
5408 {
5409     /* Cache line invalidate: privileged and treated as no-op */
5410 #if defined(CONFIG_USER_ONLY)
5411     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5412 #else
5413     if (unlikely(!ctx->mem_idx)) {
5414         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5415         return;
5416     }
5417 #endif
5418 }
5419
5420 /* dclst */
5421 static void gen_dclst(DisasContext *ctx)
5422 {
5423     /* Data cache line store: treated as no-op */
5424 }
5425
5426 static void gen_mfsri(DisasContext *ctx)
5427 {
5428 #if defined(CONFIG_USER_ONLY)
5429     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5430 #else
5431     int ra = rA(ctx->opcode);
5432     int rd = rD(ctx->opcode);
5433     TCGv t0;
5434     if (unlikely(!ctx->mem_idx)) {
5435         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5436         return;
5437     }
5438     t0 = tcg_temp_new();
5439     gen_addr_reg_index(ctx, t0);
5440     tcg_gen_shri_tl(t0, t0, 28);
5441     tcg_gen_andi_tl(t0, t0, 0xF);
5442     gen_helper_load_sr(cpu_gpr[rd], cpu_env, t0);
5443     tcg_temp_free(t0);
5444     if (ra != 0 && ra != rd)
5445         tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rd]);
5446 #endif
5447 }
5448
5449 static void gen_rac(DisasContext *ctx)
5450 {
5451 #if defined(CONFIG_USER_ONLY)
5452     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5453 #else
5454     TCGv t0;
5455     if (unlikely(!ctx->mem_idx)) {
5456         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5457         return;
5458     }
5459     t0 = tcg_temp_new();
5460     gen_addr_reg_index(ctx, t0);
5461     gen_helper_rac(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
5462     tcg_temp_free(t0);
5463 #endif
5464 }
5465
5466 static void gen_rfsvc(DisasContext *ctx)
5467 {
5468 #if defined(CONFIG_USER_ONLY)
5469     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5470 #else
5471     if (unlikely(!ctx->mem_idx)) {
5472         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5473         return;
5474     }
5475     gen_helper_rfsvc(cpu_env);
5476     gen_sync_exception(ctx);
5477 #endif
5478 }
5479
5480 /* svc is not implemented for now */
5481
5482 /* POWER2 specific instructions */
5483 /* Quad manipulation (load/store two floats at a time) */
5484
5485 /* lfq */
5486 static void gen_lfq(DisasContext *ctx)
5487 {
5488     int rd = rD(ctx->opcode);
5489     TCGv t0;
5490     gen_set_access_type(ctx, ACCESS_FLOAT);
5491     t0 = tcg_temp_new();
5492     gen_addr_imm_index(ctx, t0, 0);
5493     gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5494     gen_addr_add(ctx, t0, t0, 8);
5495     gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5496     tcg_temp_free(t0);
5497 }
5498
5499 /* lfqu */
5500 static void gen_lfqu(DisasContext *ctx)
5501 {
5502     int ra = rA(ctx->opcode);
5503     int rd = rD(ctx->opcode);
5504     TCGv t0, t1;
5505     gen_set_access_type(ctx, ACCESS_FLOAT);
5506     t0 = tcg_temp_new();
5507     t1 = tcg_temp_new();
5508     gen_addr_imm_index(ctx, t0, 0);
5509     gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5510     gen_addr_add(ctx, t1, t0, 8);
5511     gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5512     if (ra != 0)
5513         tcg_gen_mov_tl(cpu_gpr[ra], t0);
5514     tcg_temp_free(t0);
5515     tcg_temp_free(t1);
5516 }
5517
5518 /* lfqux */
5519 static void gen_lfqux(DisasContext *ctx)
5520 {
5521     int ra = rA(ctx->opcode);
5522     int rd = rD(ctx->opcode);
5523     gen_set_access_type(ctx, ACCESS_FLOAT);
5524     TCGv t0, t1;
5525     t0 = tcg_temp_new();
5526     gen_addr_reg_index(ctx, t0);
5527     gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5528     t1 = tcg_temp_new();
5529     gen_addr_add(ctx, t1, t0, 8);
5530     gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5531     tcg_temp_free(t1);
5532     if (ra != 0)
5533         tcg_gen_mov_tl(cpu_gpr[ra], t0);
5534     tcg_temp_free(t0);
5535 }
5536
5537 /* lfqx */
5538 static void gen_lfqx(DisasContext *ctx)
5539 {
5540     int rd = rD(ctx->opcode);
5541     TCGv t0;
5542     gen_set_access_type(ctx, ACCESS_FLOAT);
5543     t0 = tcg_temp_new();
5544     gen_addr_reg_index(ctx, t0);
5545     gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5546     gen_addr_add(ctx, t0, t0, 8);
5547     gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5548     tcg_temp_free(t0);
5549 }
5550
5551 /* stfq */
5552 static void gen_stfq(DisasContext *ctx)
5553 {
5554     int rd = rD(ctx->opcode);
5555     TCGv t0;
5556     gen_set_access_type(ctx, ACCESS_FLOAT);
5557     t0 = tcg_temp_new();
5558     gen_addr_imm_index(ctx, t0, 0);
5559     gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5560     gen_addr_add(ctx, t0, t0, 8);
5561     gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5562     tcg_temp_free(t0);
5563 }
5564
5565 /* stfqu */
5566 static void gen_stfqu(DisasContext *ctx)
5567 {
5568     int ra = rA(ctx->opcode);
5569     int rd = rD(ctx->opcode);
5570     TCGv t0, t1;
5571     gen_set_access_type(ctx, ACCESS_FLOAT);
5572     t0 = tcg_temp_new();
5573     gen_addr_imm_index(ctx, t0, 0);
5574     gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5575     t1 = tcg_temp_new();
5576     gen_addr_add(ctx, t1, t0, 8);
5577     gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5578     tcg_temp_free(t1);
5579     if (ra != 0)
5580         tcg_gen_mov_tl(cpu_gpr[ra], t0);
5581     tcg_temp_free(t0);
5582 }
5583
5584 /* stfqux */
5585 static void gen_stfqux(DisasContext *ctx)
5586 {
5587     int ra = rA(ctx->opcode);
5588     int rd = rD(ctx->opcode);
5589     TCGv t0, t1;
5590     gen_set_access_type(ctx, ACCESS_FLOAT);
5591     t0 = tcg_temp_new();
5592     gen_addr_reg_index(ctx, t0);
5593     gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5594     t1 = tcg_temp_new();
5595     gen_addr_add(ctx, t1, t0, 8);
5596     gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5597     tcg_temp_free(t1);
5598     if (ra != 0)
5599         tcg_gen_mov_tl(cpu_gpr[ra], t0);
5600     tcg_temp_free(t0);
5601 }
5602
5603 /* stfqx */
5604 static void gen_stfqx(DisasContext *ctx)
5605 {
5606     int rd = rD(ctx->opcode);
5607     TCGv t0;
5608     gen_set_access_type(ctx, ACCESS_FLOAT);
5609     t0 = tcg_temp_new();
5610     gen_addr_reg_index(ctx, t0);
5611     gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5612     gen_addr_add(ctx, t0, t0, 8);
5613     gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
5614     tcg_temp_free(t0);
5615 }
5616
5617 /* BookE specific instructions */
5618
5619 /* XXX: not implemented on 440 ? */
5620 static void gen_mfapidi(DisasContext *ctx)
5621 {
5622     /* XXX: TODO */
5623     gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5624 }
5625
5626 /* XXX: not implemented on 440 ? */
5627 static void gen_tlbiva(DisasContext *ctx)
5628 {
5629 #if defined(CONFIG_USER_ONLY)
5630     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5631 #else
5632     TCGv t0;
5633     if (unlikely(!ctx->mem_idx)) {
5634         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5635         return;
5636     }
5637     t0 = tcg_temp_new();
5638     gen_addr_reg_index(ctx, t0);
5639     gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
5640     tcg_temp_free(t0);
5641 #endif
5642 }
5643
5644 /* All 405 MAC instructions are translated here */
5645 static inline void gen_405_mulladd_insn(DisasContext *ctx, int opc2, int opc3,
5646                                         int ra, int rb, int rt, int Rc)
5647 {
5648     TCGv t0, t1;
5649
5650     t0 = tcg_temp_local_new();
5651     t1 = tcg_temp_local_new();
5652
5653     switch (opc3 & 0x0D) {
5654     case 0x05:
5655         /* macchw    - macchw.    - macchwo   - macchwo.   */
5656         /* macchws   - macchws.   - macchwso  - macchwso.  */
5657         /* nmacchw   - nmacchw.   - nmacchwo  - nmacchwo.  */
5658         /* nmacchws  - nmacchws.  - nmacchwso - nmacchwso. */
5659         /* mulchw - mulchw. */
5660         tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5661         tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5662         tcg_gen_ext16s_tl(t1, t1);
5663         break;
5664     case 0x04:
5665         /* macchwu   - macchwu.   - macchwuo  - macchwuo.  */
5666         /* macchwsu  - macchwsu.  - macchwsuo - macchwsuo. */
5667         /* mulchwu - mulchwu. */
5668         tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5669         tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5670         tcg_gen_ext16u_tl(t1, t1);
5671         break;
5672     case 0x01:
5673         /* machhw    - machhw.    - machhwo   - machhwo.   */
5674         /* machhws   - machhws.   - machhwso  - machhwso.  */
5675         /* nmachhw   - nmachhw.   - nmachhwo  - nmachhwo.  */
5676         /* nmachhws  - nmachhws.  - nmachhwso - nmachhwso. */
5677         /* mulhhw - mulhhw. */
5678         tcg_gen_sari_tl(t0, cpu_gpr[ra], 16);
5679         tcg_gen_ext16s_tl(t0, t0);
5680         tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5681         tcg_gen_ext16s_tl(t1, t1);
5682         break;
5683     case 0x00:
5684         /* machhwu   - machhwu.   - machhwuo  - machhwuo.  */
5685         /* machhwsu  - machhwsu.  - machhwsuo - machhwsuo. */
5686         /* mulhhwu - mulhhwu. */
5687         tcg_gen_shri_tl(t0, cpu_gpr[ra], 16);
5688         tcg_gen_ext16u_tl(t0, t0);
5689         tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5690         tcg_gen_ext16u_tl(t1, t1);
5691         break;
5692     case 0x0D:
5693         /* maclhw    - maclhw.    - maclhwo   - maclhwo.   */
5694         /* maclhws   - maclhws.   - maclhwso  - maclhwso.  */
5695         /* nmaclhw   - nmaclhw.   - nmaclhwo  - nmaclhwo.  */
5696         /* nmaclhws  - nmaclhws.  - nmaclhwso - nmaclhwso. */
5697         /* mullhw - mullhw. */
5698         tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5699         tcg_gen_ext16s_tl(t1, cpu_gpr[rb]);
5700         break;
5701     case 0x0C:
5702         /* maclhwu   - maclhwu.   - maclhwuo  - maclhwuo.  */
5703         /* maclhwsu  - maclhwsu.  - maclhwsuo - maclhwsuo. */
5704         /* mullhwu - mullhwu. */
5705         tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5706         tcg_gen_ext16u_tl(t1, cpu_gpr[rb]);
5707         break;
5708     }
5709     if (opc2 & 0x04) {
5710         /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5711         tcg_gen_mul_tl(t1, t0, t1);
5712         if (opc2 & 0x02) {
5713             /* nmultiply-and-accumulate (0x0E) */
5714             tcg_gen_sub_tl(t0, cpu_gpr[rt], t1);
5715         } else {
5716             /* multiply-and-accumulate (0x0C) */
5717             tcg_gen_add_tl(t0, cpu_gpr[rt], t1);
5718         }
5719
5720         if (opc3 & 0x12) {
5721             /* Check overflow and/or saturate */
5722             int l1 = gen_new_label();
5723
5724             if (opc3 & 0x10) {
5725                 /* Start with XER OV disabled, the most likely case */
5726                 tcg_gen_movi_tl(cpu_ov, 0);
5727             }
5728             if (opc3 & 0x01) {
5729                 /* Signed */
5730                 tcg_gen_xor_tl(t1, cpu_gpr[rt], t1);
5731                 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1);
5732                 tcg_gen_xor_tl(t1, cpu_gpr[rt], t0);
5733                 tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1);
5734                 if (opc3 & 0x02) {
5735                     /* Saturate */
5736                     tcg_gen_sari_tl(t0, cpu_gpr[rt], 31);
5737                     tcg_gen_xori_tl(t0, t0, 0x7fffffff);
5738                 }
5739             } else {
5740                 /* Unsigned */
5741                 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
5742                 if (opc3 & 0x02) {
5743                     /* Saturate */
5744                     tcg_gen_movi_tl(t0, UINT32_MAX);
5745                 }
5746             }
5747             if (opc3 & 0x10) {
5748                 /* Check overflow */
5749                 tcg_gen_movi_tl(cpu_ov, 1);
5750                 tcg_gen_movi_tl(cpu_so, 1);
5751             }
5752             gen_set_label(l1);
5753             tcg_gen_mov_tl(cpu_gpr[rt], t0);
5754         }
5755     } else {
5756         tcg_gen_mul_tl(cpu_gpr[rt], t0, t1);
5757     }
5758     tcg_temp_free(t0);
5759     tcg_temp_free(t1);
5760     if (unlikely(Rc) != 0) {
5761         /* Update Rc0 */
5762         gen_set_Rc0(ctx, cpu_gpr[rt]);
5763     }
5764 }
5765
5766 #define GEN_MAC_HANDLER(name, opc2, opc3)                                     \
5767 static void glue(gen_, name)(DisasContext *ctx)                               \
5768 {                                                                             \
5769     gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode),   \
5770                          rD(ctx->opcode), Rc(ctx->opcode));                   \
5771 }
5772
5773 /* macchw    - macchw.    */
5774 GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
5775 /* macchwo   - macchwo.   */
5776 GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
5777 /* macchws   - macchws.   */
5778 GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
5779 /* macchwso  - macchwso.  */
5780 GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
5781 /* macchwsu  - macchwsu.  */
5782 GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
5783 /* macchwsuo - macchwsuo. */
5784 GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
5785 /* macchwu   - macchwu.   */
5786 GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
5787 /* macchwuo  - macchwuo.  */
5788 GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
5789 /* machhw    - machhw.    */
5790 GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
5791 /* machhwo   - machhwo.   */
5792 GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
5793 /* machhws   - machhws.   */
5794 GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
5795 /* machhwso  - machhwso.  */
5796 GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
5797 /* machhwsu  - machhwsu.  */
5798 GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
5799 /* machhwsuo - machhwsuo. */
5800 GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
5801 /* machhwu   - machhwu.   */
5802 GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
5803 /* machhwuo  - machhwuo.  */
5804 GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
5805 /* maclhw    - maclhw.    */
5806 GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
5807 /* maclhwo   - maclhwo.   */
5808 GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
5809 /* maclhws   - maclhws.   */
5810 GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
5811 /* maclhwso  - maclhwso.  */
5812 GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
5813 /* maclhwu   - maclhwu.   */
5814 GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
5815 /* maclhwuo  - maclhwuo.  */
5816 GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
5817 /* maclhwsu  - maclhwsu.  */
5818 GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
5819 /* maclhwsuo - maclhwsuo. */
5820 GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
5821 /* nmacchw   - nmacchw.   */
5822 GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
5823 /* nmacchwo  - nmacchwo.  */
5824 GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
5825 /* nmacchws  - nmacchws.  */
5826 GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
5827 /* nmacchwso - nmacchwso. */
5828 GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
5829 /* nmachhw   - nmachhw.   */
5830 GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
5831 /* nmachhwo  - nmachhwo.  */
5832 GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
5833 /* nmachhws  - nmachhws.  */
5834 GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
5835 /* nmachhwso - nmachhwso. */
5836 GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
5837 /* nmaclhw   - nmaclhw.   */
5838 GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
5839 /* nmaclhwo  - nmaclhwo.  */
5840 GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
5841 /* nmaclhws  - nmaclhws.  */
5842 GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
5843 /* nmaclhwso - nmaclhwso. */
5844 GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
5845
5846 /* mulchw  - mulchw.  */
5847 GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
5848 /* mulchwu - mulchwu. */
5849 GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
5850 /* mulhhw  - mulhhw.  */
5851 GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
5852 /* mulhhwu - mulhhwu. */
5853 GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
5854 /* mullhw  - mullhw.  */
5855 GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
5856 /* mullhwu - mullhwu. */
5857 GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
5858
5859 /* mfdcr */
5860 static void gen_mfdcr(DisasContext *ctx)
5861 {
5862 #if defined(CONFIG_USER_ONLY)
5863     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5864 #else
5865     TCGv dcrn;
5866     if (unlikely(!ctx->mem_idx)) {
5867         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5868         return;
5869     }
5870     /* NIP cannot be restored if the memory exception comes from an helper */
5871     gen_update_nip(ctx, ctx->nip - 4);
5872     dcrn = tcg_const_tl(SPR(ctx->opcode));
5873     gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env, dcrn);
5874     tcg_temp_free(dcrn);
5875 #endif
5876 }
5877
5878 /* mtdcr */
5879 static void gen_mtdcr(DisasContext *ctx)
5880 {
5881 #if defined(CONFIG_USER_ONLY)
5882     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5883 #else
5884     TCGv dcrn;
5885     if (unlikely(!ctx->mem_idx)) {
5886         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5887         return;
5888     }
5889     /* NIP cannot be restored if the memory exception comes from an helper */
5890     gen_update_nip(ctx, ctx->nip - 4);
5891     dcrn = tcg_const_tl(SPR(ctx->opcode));
5892     gen_helper_store_dcr(cpu_env, dcrn, cpu_gpr[rS(ctx->opcode)]);
5893     tcg_temp_free(dcrn);
5894 #endif
5895 }
5896
5897 /* mfdcrx */
5898 /* XXX: not implemented on 440 ? */
5899 static void gen_mfdcrx(DisasContext *ctx)
5900 {
5901 #if defined(CONFIG_USER_ONLY)
5902     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5903 #else
5904     if (unlikely(!ctx->mem_idx)) {
5905         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5906         return;
5907     }
5908     /* NIP cannot be restored if the memory exception comes from an helper */
5909     gen_update_nip(ctx, ctx->nip - 4);
5910     gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5911                         cpu_gpr[rA(ctx->opcode)]);
5912     /* Note: Rc update flag set leads to undefined state of Rc0 */
5913 #endif
5914 }
5915
5916 /* mtdcrx */
5917 /* XXX: not implemented on 440 ? */
5918 static void gen_mtdcrx(DisasContext *ctx)
5919 {
5920 #if defined(CONFIG_USER_ONLY)
5921     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5922 #else
5923     if (unlikely(!ctx->mem_idx)) {
5924         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
5925         return;
5926     }
5927     /* NIP cannot be restored if the memory exception comes from an helper */
5928     gen_update_nip(ctx, ctx->nip - 4);
5929     gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
5930                          cpu_gpr[rS(ctx->opcode)]);
5931     /* Note: Rc update flag set leads to undefined state of Rc0 */
5932 #endif
5933 }
5934
5935 /* mfdcrux (PPC 460) : user-mode access to DCR */
5936 static void gen_mfdcrux(DisasContext *ctx)
5937 {
5938     /* NIP cannot be restored if the memory exception comes from an helper */
5939     gen_update_nip(ctx, ctx->nip - 4);
5940     gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5941                         cpu_gpr[rA(ctx->opcode)]);
5942     /* Note: Rc update flag set leads to undefined state of Rc0 */
5943 }
5944
5945 /* mtdcrux (PPC 460) : user-mode access to DCR */
5946 static void gen_mtdcrux(DisasContext *ctx)
5947 {
5948     /* NIP cannot be restored if the memory exception comes from an helper */
5949     gen_update_nip(ctx, ctx->nip - 4);
5950     gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
5951                          cpu_gpr[rS(ctx->opcode)]);
5952     /* Note: Rc update flag set leads to undefined state of Rc0 */
5953 }
5954
5955 /* dccci */
5956 static void gen_dccci(DisasContext *ctx)
5957 {
5958 #if defined(CONFIG_USER_ONLY)
5959     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5960 #else
5961     if (unlikely(!ctx->mem_idx)) {
5962         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5963         return;
5964     }
5965     /* interpreted as no-op */
5966 #endif
5967 }
5968
5969 /* dcread */
5970 static void gen_dcread(DisasContext *ctx)
5971 {
5972 #if defined(CONFIG_USER_ONLY)
5973     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5974 #else
5975     TCGv EA, val;
5976     if (unlikely(!ctx->mem_idx)) {
5977         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5978         return;
5979     }
5980     gen_set_access_type(ctx, ACCESS_CACHE);
5981     EA = tcg_temp_new();
5982     gen_addr_reg_index(ctx, EA);
5983     val = tcg_temp_new();
5984     gen_qemu_ld32u(ctx, val, EA);
5985     tcg_temp_free(val);
5986     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA);
5987     tcg_temp_free(EA);
5988 #endif
5989 }
5990
5991 /* icbt */
5992 static void gen_icbt_40x(DisasContext *ctx)
5993 {
5994     /* interpreted as no-op */
5995     /* XXX: specification say this is treated as a load by the MMU
5996      *      but does not generate any exception
5997      */
5998 }
5999
6000 /* iccci */
6001 static void gen_iccci(DisasContext *ctx)
6002 {
6003 #if defined(CONFIG_USER_ONLY)
6004     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6005 #else
6006     if (unlikely(!ctx->mem_idx)) {
6007         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6008         return;
6009     }
6010     /* interpreted as no-op */
6011 #endif
6012 }
6013
6014 /* icread */
6015 static void gen_icread(DisasContext *ctx)
6016 {
6017 #if defined(CONFIG_USER_ONLY)
6018     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6019 #else
6020     if (unlikely(!ctx->mem_idx)) {
6021         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6022         return;
6023     }
6024     /* interpreted as no-op */
6025 #endif
6026 }
6027
6028 /* rfci (mem_idx only) */
6029 static void gen_rfci_40x(DisasContext *ctx)
6030 {
6031 #if defined(CONFIG_USER_ONLY)
6032     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6033 #else
6034     if (unlikely(!ctx->mem_idx)) {
6035         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6036         return;
6037     }
6038     /* Restore CPU state */
6039     gen_helper_40x_rfci(cpu_env);
6040     gen_sync_exception(ctx);
6041 #endif
6042 }
6043
6044 static void gen_rfci(DisasContext *ctx)
6045 {
6046 #if defined(CONFIG_USER_ONLY)
6047     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6048 #else
6049     if (unlikely(!ctx->mem_idx)) {
6050         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6051         return;
6052     }
6053     /* Restore CPU state */
6054     gen_helper_rfci(cpu_env);
6055     gen_sync_exception(ctx);
6056 #endif
6057 }
6058
6059 /* BookE specific */
6060
6061 /* XXX: not implemented on 440 ? */
6062 static void gen_rfdi(DisasContext *ctx)
6063 {
6064 #if defined(CONFIG_USER_ONLY)
6065     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6066 #else
6067     if (unlikely(!ctx->mem_idx)) {
6068         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6069         return;
6070     }
6071     /* Restore CPU state */
6072     gen_helper_rfdi(cpu_env);
6073     gen_sync_exception(ctx);
6074 #endif
6075 }
6076
6077 /* XXX: not implemented on 440 ? */
6078 static void gen_rfmci(DisasContext *ctx)
6079 {
6080 #if defined(CONFIG_USER_ONLY)
6081     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6082 #else
6083     if (unlikely(!ctx->mem_idx)) {
6084         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6085         return;
6086     }
6087     /* Restore CPU state */
6088     gen_helper_rfmci(cpu_env);
6089     gen_sync_exception(ctx);
6090 #endif
6091 }
6092
6093 /* TLB management - PowerPC 405 implementation */
6094
6095 /* tlbre */
6096 static void gen_tlbre_40x(DisasContext *ctx)
6097 {
6098 #if defined(CONFIG_USER_ONLY)
6099     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6100 #else
6101     if (unlikely(!ctx->mem_idx)) {
6102         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6103         return;
6104     }
6105     switch (rB(ctx->opcode)) {
6106     case 0:
6107         gen_helper_4xx_tlbre_hi(cpu_gpr[rD(ctx->opcode)], cpu_env,
6108                                 cpu_gpr[rA(ctx->opcode)]);
6109         break;
6110     case 1:
6111         gen_helper_4xx_tlbre_lo(cpu_gpr[rD(ctx->opcode)], cpu_env,
6112                                 cpu_gpr[rA(ctx->opcode)]);
6113         break;
6114     default:
6115         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6116         break;
6117     }
6118 #endif
6119 }
6120
6121 /* tlbsx - tlbsx. */
6122 static void gen_tlbsx_40x(DisasContext *ctx)
6123 {
6124 #if defined(CONFIG_USER_ONLY)
6125     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6126 #else
6127     TCGv t0;
6128     if (unlikely(!ctx->mem_idx)) {
6129         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6130         return;
6131     }
6132     t0 = tcg_temp_new();
6133     gen_addr_reg_index(ctx, t0);
6134     gen_helper_4xx_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
6135     tcg_temp_free(t0);
6136     if (Rc(ctx->opcode)) {
6137         int l1 = gen_new_label();
6138         tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
6139         tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
6140         tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
6141         gen_set_label(l1);
6142     }
6143 #endif
6144 }
6145
6146 /* tlbwe */
6147 static void gen_tlbwe_40x(DisasContext *ctx)
6148 {
6149 #if defined(CONFIG_USER_ONLY)
6150     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6151 #else
6152     if (unlikely(!ctx->mem_idx)) {
6153         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6154         return;
6155     }
6156     switch (rB(ctx->opcode)) {
6157     case 0:
6158         gen_helper_4xx_tlbwe_hi(cpu_env, cpu_gpr[rA(ctx->opcode)],
6159                                 cpu_gpr[rS(ctx->opcode)]);
6160         break;
6161     case 1:
6162         gen_helper_4xx_tlbwe_lo(cpu_env, cpu_gpr[rA(ctx->opcode)],
6163                                 cpu_gpr[rS(ctx->opcode)]);
6164         break;
6165     default:
6166         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6167         break;
6168     }
6169 #endif
6170 }
6171
6172 /* TLB management - PowerPC 440 implementation */
6173
6174 /* tlbre */
6175 static void gen_tlbre_440(DisasContext *ctx)
6176 {
6177 #if defined(CONFIG_USER_ONLY)
6178     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6179 #else
6180     if (unlikely(!ctx->mem_idx)) {
6181         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6182         return;
6183     }
6184     switch (rB(ctx->opcode)) {
6185     case 0:
6186     case 1:
6187     case 2:
6188         {
6189             TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
6190             gen_helper_440_tlbre(cpu_gpr[rD(ctx->opcode)], cpu_env,
6191                                  t0, cpu_gpr[rA(ctx->opcode)]);
6192             tcg_temp_free_i32(t0);
6193         }
6194         break;
6195     default:
6196         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6197         break;
6198     }
6199 #endif
6200 }
6201
6202 /* tlbsx - tlbsx. */
6203 static void gen_tlbsx_440(DisasContext *ctx)
6204 {
6205 #if defined(CONFIG_USER_ONLY)
6206     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6207 #else
6208     TCGv t0;
6209     if (unlikely(!ctx->mem_idx)) {
6210         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6211         return;
6212     }
6213     t0 = tcg_temp_new();
6214     gen_addr_reg_index(ctx, t0);
6215     gen_helper_440_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
6216     tcg_temp_free(t0);
6217     if (Rc(ctx->opcode)) {
6218         int l1 = gen_new_label();
6219         tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
6220         tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
6221         tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
6222         gen_set_label(l1);
6223     }
6224 #endif
6225 }
6226
6227 /* tlbwe */
6228 static void gen_tlbwe_440(DisasContext *ctx)
6229 {
6230 #if defined(CONFIG_USER_ONLY)
6231     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6232 #else
6233     if (unlikely(!ctx->mem_idx)) {
6234         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6235         return;
6236     }
6237     switch (rB(ctx->opcode)) {
6238     case 0:
6239     case 1:
6240     case 2:
6241         {
6242             TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
6243             gen_helper_440_tlbwe(cpu_env, t0, cpu_gpr[rA(ctx->opcode)],
6244                                  cpu_gpr[rS(ctx->opcode)]);
6245             tcg_temp_free_i32(t0);
6246         }
6247         break;
6248     default:
6249         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6250         break;
6251     }
6252 #endif
6253 }
6254
6255 /* TLB management - PowerPC BookE 2.06 implementation */
6256
6257 /* tlbre */
6258 static void gen_tlbre_booke206(DisasContext *ctx)
6259 {
6260 #if defined(CONFIG_USER_ONLY)
6261     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6262 #else
6263     if (unlikely(!ctx->mem_idx)) {
6264         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6265         return;
6266     }
6267
6268     gen_helper_booke206_tlbre(cpu_env);
6269 #endif
6270 }
6271
6272 /* tlbsx - tlbsx. */
6273 static void gen_tlbsx_booke206(DisasContext *ctx)
6274 {
6275 #if defined(CONFIG_USER_ONLY)
6276     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6277 #else
6278     TCGv t0;
6279     if (unlikely(!ctx->mem_idx)) {
6280         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6281         return;
6282     }
6283
6284     if (rA(ctx->opcode)) {
6285         t0 = tcg_temp_new();
6286         tcg_gen_mov_tl(t0, cpu_gpr[rD(ctx->opcode)]);
6287     } else {
6288         t0 = tcg_const_tl(0);
6289     }
6290
6291     tcg_gen_add_tl(t0, t0, cpu_gpr[rB(ctx->opcode)]);
6292     gen_helper_booke206_tlbsx(cpu_env, t0);
6293 #endif
6294 }
6295
6296 /* tlbwe */
6297 static void gen_tlbwe_booke206(DisasContext *ctx)
6298 {
6299 #if defined(CONFIG_USER_ONLY)
6300     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6301 #else
6302     if (unlikely(!ctx->mem_idx)) {
6303         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6304         return;
6305     }
6306     gen_update_nip(ctx, ctx->nip - 4);
6307     gen_helper_booke206_tlbwe(cpu_env);
6308 #endif
6309 }
6310
6311 static void gen_tlbivax_booke206(DisasContext *ctx)
6312 {
6313 #if defined(CONFIG_USER_ONLY)
6314     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6315 #else
6316     TCGv t0;
6317     if (unlikely(!ctx->mem_idx)) {
6318         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6319         return;
6320     }
6321
6322     t0 = tcg_temp_new();
6323     gen_addr_reg_index(ctx, t0);
6324
6325     gen_helper_booke206_tlbivax(cpu_env, t0);
6326 #endif
6327 }
6328
6329 static void gen_tlbilx_booke206(DisasContext *ctx)
6330 {
6331 #if defined(CONFIG_USER_ONLY)
6332     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6333 #else
6334     TCGv t0;
6335     if (unlikely(!ctx->mem_idx)) {
6336         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6337         return;
6338     }
6339
6340     t0 = tcg_temp_new();
6341     gen_addr_reg_index(ctx, t0);
6342
6343     switch((ctx->opcode >> 21) & 0x3) {
6344     case 0:
6345         gen_helper_booke206_tlbilx0(cpu_env, t0);
6346         break;
6347     case 1:
6348         gen_helper_booke206_tlbilx1(cpu_env, t0);
6349         break;
6350     case 3:
6351         gen_helper_booke206_tlbilx3(cpu_env, t0);
6352         break;
6353     default:
6354         gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6355         break;
6356     }
6357
6358     tcg_temp_free(t0);
6359 #endif
6360 }
6361
6362
6363 /* wrtee */
6364 static void gen_wrtee(DisasContext *ctx)
6365 {
6366 #if defined(CONFIG_USER_ONLY)
6367     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6368 #else
6369     TCGv t0;
6370     if (unlikely(!ctx->mem_idx)) {
6371         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6372         return;
6373     }
6374     t0 = tcg_temp_new();
6375     tcg_gen_andi_tl(t0, cpu_gpr[rD(ctx->opcode)], (1 << MSR_EE));
6376     tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6377     tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
6378     tcg_temp_free(t0);
6379     /* Stop translation to have a chance to raise an exception
6380      * if we just set msr_ee to 1
6381      */
6382     gen_stop_exception(ctx);
6383 #endif
6384 }
6385
6386 /* wrteei */
6387 static void gen_wrteei(DisasContext *ctx)
6388 {
6389 #if defined(CONFIG_USER_ONLY)
6390     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6391 #else
6392     if (unlikely(!ctx->mem_idx)) {
6393         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6394         return;
6395     }
6396     if (ctx->opcode & 0x00008000) {
6397         tcg_gen_ori_tl(cpu_msr, cpu_msr, (1 << MSR_EE));
6398         /* Stop translation to have a chance to raise an exception */
6399         gen_stop_exception(ctx);
6400     } else {
6401         tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6402     }
6403 #endif
6404 }
6405
6406 /* PowerPC 440 specific instructions */
6407
6408 /* dlmzb */
6409 static void gen_dlmzb(DisasContext *ctx)
6410 {
6411     TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode));
6412     gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_env,
6413                      cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
6414     tcg_temp_free_i32(t0);
6415 }
6416
6417 /* mbar replaces eieio on 440 */
6418 static void gen_mbar(DisasContext *ctx)
6419 {
6420     /* interpreted as no-op */
6421 }
6422
6423 /* msync replaces sync on 440 */
6424 static void gen_msync_4xx(DisasContext *ctx)
6425 {
6426     /* interpreted as no-op */
6427 }
6428
6429 /* icbt */
6430 static void gen_icbt_440(DisasContext *ctx)
6431 {
6432     /* interpreted as no-op */
6433     /* XXX: specification say this is treated as a load by the MMU
6434      *      but does not generate any exception
6435      */
6436 }
6437
6438 /* Embedded.Processor Control */
6439
6440 static void gen_msgclr(DisasContext *ctx)
6441 {
6442 #if defined(CONFIG_USER_ONLY)
6443     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6444 #else
6445     if (unlikely(ctx->mem_idx == 0)) {
6446         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6447         return;
6448     }
6449
6450     gen_helper_msgclr(cpu_env, cpu_gpr[rB(ctx->opcode)]);
6451 #endif
6452 }
6453
6454 static void gen_msgsnd(DisasContext *ctx)
6455 {
6456 #if defined(CONFIG_USER_ONLY)
6457     gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6458 #else
6459     if (unlikely(ctx->mem_idx == 0)) {
6460         gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6461         return;
6462     }
6463
6464     gen_helper_msgsnd(cpu_gpr[rB(ctx->opcode)]);
6465 #endif
6466 }
6467
6468 /***                      Altivec vector extension                         ***/
6469 /* Altivec registers moves */
6470
6471 static inline TCGv_ptr gen_avr_ptr(int reg)
6472 {
6473     TCGv_ptr r = tcg_temp_new_ptr();
6474     tcg_gen_addi_ptr(r, cpu_env, offsetof(CPUPPCState, avr[reg]));
6475     return r;
6476 }
6477
6478 #define GEN_VR_LDX(name, opc2, opc3)                                          \
6479 static void glue(gen_, name)(DisasContext *ctx)                                       \
6480 {                                                                             \
6481     TCGv EA;                                                                  \
6482     if (unlikely(!ctx->altivec_enabled)) {                                    \
6483         gen_exception(ctx, POWERPC_EXCP_VPU);                                 \
6484         return;                                                               \
6485     }                                                                         \
6486     gen_set_access_type(ctx, ACCESS_INT);                                     \
6487     EA = tcg_temp_new();                                                      \
6488     gen_addr_reg_index(ctx, EA);                                              \
6489     tcg_gen_andi_tl(EA, EA, ~0xf);                                            \
6490     if (ctx->le_mode) {                                                       \
6491         gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA);                    \
6492         tcg_gen_addi_tl(EA, EA, 8);                                           \
6493         gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA);                    \
6494     } else {                                                                  \
6495         gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA);                    \
6496         tcg_gen_addi_tl(EA, EA, 8);                                           \
6497         gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA);                    \
6498     }                                                                         \
6499     tcg_temp_free(EA);                                                        \
6500 }
6501
6502 #define GEN_VR_STX(name, opc2, opc3)                                          \
6503 static void gen_st##name(DisasContext *ctx)                                   \
6504 {                                                                             \
6505     TCGv EA;                                                                  \
6506     if (unlikely(!ctx->altivec_enabled)) {                                    \
6507         gen_exception(ctx, POWERPC_EXCP_VPU);                                 \
6508         return;                                                               \
6509     }                                                                         \
6510     gen_set_access_type(ctx, ACCESS_INT);                                     \
6511     EA = tcg_temp_new();                                                      \
6512     gen_addr_reg_index(ctx, EA);                                              \
6513     tcg_gen_andi_tl(EA, EA, ~0xf);                                            \
6514     if (ctx->le_mode) {                                                       \
6515         gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA);                    \
6516         tcg_gen_addi_tl(EA, EA, 8);                                           \
6517         gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA);                    \
6518     } else {                                                                  \
6519         gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA);                    \
6520         tcg_gen_addi_tl(EA, EA, 8);                                           \
6521         gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA);                    \
6522     }                                                                         \
6523     tcg_temp_free(EA);                                                        \
6524 }
6525
6526 #define GEN_VR_LVE(name, opc2, opc3)                                    \
6527 static void gen_lve##name(DisasContext *ctx)                            \
6528     {                                                                   \
6529         TCGv EA;                                                        \
6530         TCGv_ptr rs;                                                    \
6531         if (unlikely(!ctx->altivec_enabled)) {                          \
6532             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6533             return;                                                     \
6534         }                                                               \
6535         gen_set_access_type(ctx, ACCESS_INT);                           \
6536         EA = tcg_temp_new();                                            \
6537         gen_addr_reg_index(ctx, EA);                                    \
6538         rs = gen_avr_ptr(rS(ctx->opcode));                              \
6539         gen_helper_lve##name(cpu_env, rs, EA);                          \
6540         tcg_temp_free(EA);                                              \
6541         tcg_temp_free_ptr(rs);                                          \
6542     }
6543
6544 #define GEN_VR_STVE(name, opc2, opc3)                                   \
6545 static void gen_stve##name(DisasContext *ctx)                           \
6546     {                                                                   \
6547         TCGv EA;                                                        \
6548         TCGv_ptr rs;                                                    \
6549         if (unlikely(!ctx->altivec_enabled)) {                          \
6550             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6551             return;                                                     \
6552         }                                                               \
6553         gen_set_access_type(ctx, ACCESS_INT);                           \
6554         EA = tcg_temp_new();                                            \
6555         gen_addr_reg_index(ctx, EA);                                    \
6556         rs = gen_avr_ptr(rS(ctx->opcode));                              \
6557         gen_helper_stve##name(cpu_env, rs, EA);                         \
6558         tcg_temp_free(EA);                                              \
6559         tcg_temp_free_ptr(rs);                                          \
6560     }
6561
6562 GEN_VR_LDX(lvx, 0x07, 0x03);
6563 /* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
6564 GEN_VR_LDX(lvxl, 0x07, 0x0B);
6565
6566 GEN_VR_LVE(bx, 0x07, 0x00);
6567 GEN_VR_LVE(hx, 0x07, 0x01);
6568 GEN_VR_LVE(wx, 0x07, 0x02);
6569
6570 GEN_VR_STX(svx, 0x07, 0x07);
6571 /* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
6572 GEN_VR_STX(svxl, 0x07, 0x0F);
6573
6574 GEN_VR_STVE(bx, 0x07, 0x04);
6575 GEN_VR_STVE(hx, 0x07, 0x05);
6576 GEN_VR_STVE(wx, 0x07, 0x06);
6577
6578 static void gen_lvsl(DisasContext *ctx)
6579 {
6580     TCGv_ptr rd;
6581     TCGv EA;
6582     if (unlikely(!ctx->altivec_enabled)) {
6583         gen_exception(ctx, POWERPC_EXCP_VPU);
6584         return;
6585     }
6586     EA = tcg_temp_new();
6587     gen_addr_reg_index(ctx, EA);
6588     rd = gen_avr_ptr(rD(ctx->opcode));
6589     gen_helper_lvsl(rd, EA);
6590     tcg_temp_free(EA);
6591     tcg_temp_free_ptr(rd);
6592 }
6593
6594 static void gen_lvsr(DisasContext *ctx)
6595 {
6596     TCGv_ptr rd;
6597     TCGv EA;
6598     if (unlikely(!ctx->altivec_enabled)) {
6599         gen_exception(ctx, POWERPC_EXCP_VPU);
6600         return;
6601     }
6602     EA = tcg_temp_new();
6603     gen_addr_reg_index(ctx, EA);
6604     rd = gen_avr_ptr(rD(ctx->opcode));
6605     gen_helper_lvsr(rd, EA);
6606     tcg_temp_free(EA);
6607     tcg_temp_free_ptr(rd);
6608 }
6609
6610 static void gen_mfvscr(DisasContext *ctx)
6611 {
6612     TCGv_i32 t;
6613     if (unlikely(!ctx->altivec_enabled)) {
6614         gen_exception(ctx, POWERPC_EXCP_VPU);
6615         return;
6616     }
6617     tcg_gen_movi_i64(cpu_avrh[rD(ctx->opcode)], 0);
6618     t = tcg_temp_new_i32();
6619     tcg_gen_ld_i32(t, cpu_env, offsetof(CPUPPCState, vscr));
6620     tcg_gen_extu_i32_i64(cpu_avrl[rD(ctx->opcode)], t);
6621     tcg_temp_free_i32(t);
6622 }
6623
6624 static void gen_mtvscr(DisasContext *ctx)
6625 {
6626     TCGv_ptr p;
6627     if (unlikely(!ctx->altivec_enabled)) {
6628         gen_exception(ctx, POWERPC_EXCP_VPU);
6629         return;
6630     }
6631     p = gen_avr_ptr(rD(ctx->opcode));
6632     gen_helper_mtvscr(cpu_env, p);
6633     tcg_temp_free_ptr(p);
6634 }
6635
6636 /* Logical operations */
6637 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3)                        \
6638 static void glue(gen_, name)(DisasContext *ctx)                                 \
6639 {                                                                       \
6640     if (unlikely(!ctx->altivec_enabled)) {                              \
6641         gen_exception(ctx, POWERPC_EXCP_VPU);                           \
6642         return;                                                         \
6643     }                                                                   \
6644     tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6645     tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6646 }
6647
6648 GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16);
6649 GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17);
6650 GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18);
6651 GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19);
6652 GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20);
6653
6654 #define GEN_VXFORM(name, opc2, opc3)                                    \
6655 static void glue(gen_, name)(DisasContext *ctx)                                 \
6656 {                                                                       \
6657     TCGv_ptr ra, rb, rd;                                                \
6658     if (unlikely(!ctx->altivec_enabled)) {                              \
6659         gen_exception(ctx, POWERPC_EXCP_VPU);                           \
6660         return;                                                         \
6661     }                                                                   \
6662     ra = gen_avr_ptr(rA(ctx->opcode));                                  \
6663     rb = gen_avr_ptr(rB(ctx->opcode));                                  \
6664     rd = gen_avr_ptr(rD(ctx->opcode));                                  \
6665     gen_helper_##name (rd, ra, rb);                                     \
6666     tcg_temp_free_ptr(ra);                                              \
6667     tcg_temp_free_ptr(rb);                                              \
6668     tcg_temp_free_ptr(rd);                                              \
6669 }
6670
6671 #define GEN_VXFORM_ENV(name, opc2, opc3)                                \
6672 static void glue(gen_, name)(DisasContext *ctx)                         \
6673 {                                                                       \
6674     TCGv_ptr ra, rb, rd;                                                \
6675     if (unlikely(!ctx->altivec_enabled)) {                              \
6676         gen_exception(ctx, POWERPC_EXCP_VPU);                           \
6677         return;                                                         \
6678     }                                                                   \
6679     ra = gen_avr_ptr(rA(ctx->opcode));                                  \
6680     rb = gen_avr_ptr(rB(ctx->opcode));                                  \
6681     rd = gen_avr_ptr(rD(ctx->opcode));                                  \
6682     gen_helper_##name(cpu_env, rd, ra, rb);                             \
6683     tcg_temp_free_ptr(ra);                                              \
6684     tcg_temp_free_ptr(rb);                                              \
6685     tcg_temp_free_ptr(rd);                                              \
6686 }
6687
6688 GEN_VXFORM(vaddubm, 0, 0);
6689 GEN_VXFORM(vadduhm, 0, 1);
6690 GEN_VXFORM(vadduwm, 0, 2);
6691 GEN_VXFORM(vsububm, 0, 16);
6692 GEN_VXFORM(vsubuhm, 0, 17);
6693 GEN_VXFORM(vsubuwm, 0, 18);
6694 GEN_VXFORM(vmaxub, 1, 0);
6695 GEN_VXFORM(vmaxuh, 1, 1);
6696 GEN_VXFORM(vmaxuw, 1, 2);
6697 GEN_VXFORM(vmaxsb, 1, 4);
6698 GEN_VXFORM(vmaxsh, 1, 5);
6699 GEN_VXFORM(vmaxsw, 1, 6);
6700 GEN_VXFORM(vminub, 1, 8);
6701 GEN_VXFORM(vminuh, 1, 9);
6702 GEN_VXFORM(vminuw, 1, 10);
6703 GEN_VXFORM(vminsb, 1, 12);
6704 GEN_VXFORM(vminsh, 1, 13);
6705 GEN_VXFORM(vminsw, 1, 14);
6706 GEN_VXFORM(vavgub, 1, 16);
6707 GEN_VXFORM(vavguh, 1, 17);
6708 GEN_VXFORM(vavguw, 1, 18);
6709 GEN_VXFORM(vavgsb, 1, 20);
6710 GEN_VXFORM(vavgsh, 1, 21);
6711 GEN_VXFORM(vavgsw, 1, 22);
6712 GEN_VXFORM(vmrghb, 6, 0);
6713 GEN_VXFORM(vmrghh, 6, 1);
6714 GEN_VXFORM(vmrghw, 6, 2);
6715 GEN_VXFORM(vmrglb, 6, 4);
6716 GEN_VXFORM(vmrglh, 6, 5);
6717 GEN_VXFORM(vmrglw, 6, 6);
6718 GEN_VXFORM(vmuloub, 4, 0);
6719 GEN_VXFORM(vmulouh, 4, 1);
6720 GEN_VXFORM(vmulosb, 4, 4);
6721 GEN_VXFORM(vmulosh, 4, 5);
6722 GEN_VXFORM(vmuleub, 4, 8);
6723 GEN_VXFORM(vmuleuh, 4, 9);
6724 GEN_VXFORM(vmulesb, 4, 12);
6725 GEN_VXFORM(vmulesh, 4, 13);
6726 GEN_VXFORM(vslb, 2, 4);
6727 GEN_VXFORM(vslh, 2, 5);
6728 GEN_VXFORM(vslw, 2, 6);
6729 GEN_VXFORM(vsrb, 2, 8);
6730 GEN_VXFORM(vsrh, 2, 9);
6731 GEN_VXFORM(vsrw, 2, 10);
6732 GEN_VXFORM(vsrab, 2, 12);
6733 GEN_VXFORM(vsrah, 2, 13);
6734 GEN_VXFORM(vsraw, 2, 14);
6735 GEN_VXFORM(vslo, 6, 16);
6736 GEN_VXFORM(vsro, 6, 17);
6737 GEN_VXFORM(vaddcuw, 0, 6);
6738 GEN_VXFORM(vsubcuw, 0, 22);
6739 GEN_VXFORM_ENV(vaddubs, 0, 8);
6740 GEN_VXFORM_ENV(vadduhs, 0, 9);
6741 GEN_VXFORM_ENV(vadduws, 0, 10);
6742 GEN_VXFORM_ENV(vaddsbs, 0, 12);
6743 GEN_VXFORM_ENV(vaddshs, 0, 13);
6744 GEN_VXFORM_ENV(vaddsws, 0, 14);
6745 GEN_VXFORM_ENV(vsububs, 0, 24);
6746 GEN_VXFORM_ENV(vsubuhs, 0, 25);
6747 GEN_VXFORM_ENV(vsubuws, 0, 26);
6748 GEN_VXFORM_ENV(vsubsbs, 0, 28);
6749 GEN_VXFORM_ENV(vsubshs, 0, 29);
6750 GEN_VXFORM_ENV(vsubsws, 0, 30);
6751 GEN_VXFORM(vrlb, 2, 0);
6752 GEN_VXFORM(vrlh, 2, 1);
6753 GEN_VXFORM(vrlw, 2, 2);
6754 GEN_VXFORM(vsl, 2, 7);
6755 GEN_VXFORM(vsr, 2, 11);
6756 GEN_VXFORM_ENV(vpkuhum, 7, 0);
6757 GEN_VXFORM_ENV(vpkuwum, 7, 1);
6758 GEN_VXFORM_ENV(vpkuhus, 7, 2);
6759 GEN_VXFORM_ENV(vpkuwus, 7, 3);
6760 GEN_VXFORM_ENV(vpkshus, 7, 4);
6761 GEN_VXFORM_ENV(vpkswus, 7, 5);
6762 GEN_VXFORM_ENV(vpkshss, 7, 6);
6763 GEN_VXFORM_ENV(vpkswss, 7, 7);
6764 GEN_VXFORM(vpkpx, 7, 12);
6765 GEN_VXFORM_ENV(vsum4ubs, 4, 24);
6766 GEN_VXFORM_ENV(vsum4sbs, 4, 28);
6767 GEN_VXFORM_ENV(vsum4shs, 4, 25);
6768 GEN_VXFORM_ENV(vsum2sws, 4, 26);
6769 GEN_VXFORM_ENV(vsumsws, 4, 30);
6770 GEN_VXFORM_ENV(vaddfp, 5, 0);
6771 GEN_VXFORM_ENV(vsubfp, 5, 1);
6772 GEN_VXFORM_ENV(vmaxfp, 5, 16);
6773 GEN_VXFORM_ENV(vminfp, 5, 17);
6774
6775 #define GEN_VXRFORM1(opname, name, str, opc2, opc3)                     \
6776 static void glue(gen_, name)(DisasContext *ctx)                         \
6777     {                                                                   \
6778         TCGv_ptr ra, rb, rd;                                            \
6779         if (unlikely(!ctx->altivec_enabled)) {                          \
6780             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6781             return;                                                     \
6782         }                                                               \
6783         ra = gen_avr_ptr(rA(ctx->opcode));                              \
6784         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6785         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6786         gen_helper_##opname(cpu_env, rd, ra, rb);                       \
6787         tcg_temp_free_ptr(ra);                                          \
6788         tcg_temp_free_ptr(rb);                                          \
6789         tcg_temp_free_ptr(rd);                                          \
6790     }
6791
6792 #define GEN_VXRFORM(name, opc2, opc3)                                \
6793     GEN_VXRFORM1(name, name, #name, opc2, opc3)                      \
6794     GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6795
6796 GEN_VXRFORM(vcmpequb, 3, 0)
6797 GEN_VXRFORM(vcmpequh, 3, 1)
6798 GEN_VXRFORM(vcmpequw, 3, 2)
6799 GEN_VXRFORM(vcmpgtsb, 3, 12)
6800 GEN_VXRFORM(vcmpgtsh, 3, 13)
6801 GEN_VXRFORM(vcmpgtsw, 3, 14)
6802 GEN_VXRFORM(vcmpgtub, 3, 8)
6803 GEN_VXRFORM(vcmpgtuh, 3, 9)
6804 GEN_VXRFORM(vcmpgtuw, 3, 10)
6805 GEN_VXRFORM(vcmpeqfp, 3, 3)
6806 GEN_VXRFORM(vcmpgefp, 3, 7)
6807 GEN_VXRFORM(vcmpgtfp, 3, 11)
6808 GEN_VXRFORM(vcmpbfp, 3, 15)
6809
6810 #define GEN_VXFORM_SIMM(name, opc2, opc3)                               \
6811 static void glue(gen_, name)(DisasContext *ctx)                         \
6812     {                                                                   \
6813         TCGv_ptr rd;                                                    \
6814         TCGv_i32 simm;                                                  \
6815         if (unlikely(!ctx->altivec_enabled)) {                          \
6816             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6817             return;                                                     \
6818         }                                                               \
6819         simm = tcg_const_i32(SIMM5(ctx->opcode));                       \
6820         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6821         gen_helper_##name (rd, simm);                                   \
6822         tcg_temp_free_i32(simm);                                        \
6823         tcg_temp_free_ptr(rd);                                          \
6824     }
6825
6826 GEN_VXFORM_SIMM(vspltisb, 6, 12);
6827 GEN_VXFORM_SIMM(vspltish, 6, 13);
6828 GEN_VXFORM_SIMM(vspltisw, 6, 14);
6829
6830 #define GEN_VXFORM_NOA(name, opc2, opc3)                                \
6831 static void glue(gen_, name)(DisasContext *ctx)                                 \
6832     {                                                                   \
6833         TCGv_ptr rb, rd;                                                \
6834         if (unlikely(!ctx->altivec_enabled)) {                          \
6835             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6836             return;                                                     \
6837         }                                                               \
6838         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6839         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6840         gen_helper_##name (rd, rb);                                     \
6841         tcg_temp_free_ptr(rb);                                          \
6842         tcg_temp_free_ptr(rd);                                         \
6843     }
6844
6845 #define GEN_VXFORM_NOA_ENV(name, opc2, opc3)                            \
6846 static void glue(gen_, name)(DisasContext *ctx)                         \
6847     {                                                                   \
6848         TCGv_ptr rb, rd;                                                \
6849                                                                         \
6850         if (unlikely(!ctx->altivec_enabled)) {                          \
6851             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6852             return;                                                     \
6853         }                                                               \
6854         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6855         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6856         gen_helper_##name(cpu_env, rd, rb);                             \
6857         tcg_temp_free_ptr(rb);                                          \
6858         tcg_temp_free_ptr(rd);                                          \
6859     }
6860
6861 GEN_VXFORM_NOA(vupkhsb, 7, 8);
6862 GEN_VXFORM_NOA(vupkhsh, 7, 9);
6863 GEN_VXFORM_NOA(vupklsb, 7, 10);
6864 GEN_VXFORM_NOA(vupklsh, 7, 11);
6865 GEN_VXFORM_NOA(vupkhpx, 7, 13);
6866 GEN_VXFORM_NOA(vupklpx, 7, 15);
6867 GEN_VXFORM_NOA_ENV(vrefp, 5, 4);
6868 GEN_VXFORM_NOA_ENV(vrsqrtefp, 5, 5);
6869 GEN_VXFORM_NOA_ENV(vexptefp, 5, 6);
6870 GEN_VXFORM_NOA_ENV(vlogefp, 5, 7);
6871 GEN_VXFORM_NOA_ENV(vrfim, 5, 8);
6872 GEN_VXFORM_NOA_ENV(vrfin, 5, 9);
6873 GEN_VXFORM_NOA_ENV(vrfip, 5, 10);
6874 GEN_VXFORM_NOA_ENV(vrfiz, 5, 11);
6875
6876 #define GEN_VXFORM_SIMM(name, opc2, opc3)                               \
6877 static void glue(gen_, name)(DisasContext *ctx)                                 \
6878     {                                                                   \
6879         TCGv_ptr rd;                                                    \
6880         TCGv_i32 simm;                                                  \
6881         if (unlikely(!ctx->altivec_enabled)) {                          \
6882             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6883             return;                                                     \
6884         }                                                               \
6885         simm = tcg_const_i32(SIMM5(ctx->opcode));                       \
6886         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6887         gen_helper_##name (rd, simm);                                   \
6888         tcg_temp_free_i32(simm);                                        \
6889         tcg_temp_free_ptr(rd);                                          \
6890     }
6891
6892 #define GEN_VXFORM_UIMM(name, opc2, opc3)                               \
6893 static void glue(gen_, name)(DisasContext *ctx)                                 \
6894     {                                                                   \
6895         TCGv_ptr rb, rd;                                                \
6896         TCGv_i32 uimm;                                                  \
6897         if (unlikely(!ctx->altivec_enabled)) {                          \
6898             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6899             return;                                                     \
6900         }                                                               \
6901         uimm = tcg_const_i32(UIMM5(ctx->opcode));                       \
6902         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6903         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6904         gen_helper_##name (rd, rb, uimm);                               \
6905         tcg_temp_free_i32(uimm);                                        \
6906         tcg_temp_free_ptr(rb);                                          \
6907         tcg_temp_free_ptr(rd);                                          \
6908     }
6909
6910 #define GEN_VXFORM_UIMM_ENV(name, opc2, opc3)                           \
6911 static void glue(gen_, name)(DisasContext *ctx)                         \
6912     {                                                                   \
6913         TCGv_ptr rb, rd;                                                \
6914         TCGv_i32 uimm;                                                  \
6915                                                                         \
6916         if (unlikely(!ctx->altivec_enabled)) {                          \
6917             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6918             return;                                                     \
6919         }                                                               \
6920         uimm = tcg_const_i32(UIMM5(ctx->opcode));                       \
6921         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6922         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6923         gen_helper_##name(cpu_env, rd, rb, uimm);                       \
6924         tcg_temp_free_i32(uimm);                                        \
6925         tcg_temp_free_ptr(rb);                                          \
6926         tcg_temp_free_ptr(rd);                                          \
6927     }
6928
6929 GEN_VXFORM_UIMM(vspltb, 6, 8);
6930 GEN_VXFORM_UIMM(vsplth, 6, 9);
6931 GEN_VXFORM_UIMM(vspltw, 6, 10);
6932 GEN_VXFORM_UIMM_ENV(vcfux, 5, 12);
6933 GEN_VXFORM_UIMM_ENV(vcfsx, 5, 13);
6934 GEN_VXFORM_UIMM_ENV(vctuxs, 5, 14);
6935 GEN_VXFORM_UIMM_ENV(vctsxs, 5, 15);
6936
6937 static void gen_vsldoi(DisasContext *ctx)
6938 {
6939     TCGv_ptr ra, rb, rd;
6940     TCGv_i32 sh;
6941     if (unlikely(!ctx->altivec_enabled)) {
6942         gen_exception(ctx, POWERPC_EXCP_VPU);
6943         return;
6944     }
6945     ra = gen_avr_ptr(rA(ctx->opcode));
6946     rb = gen_avr_ptr(rB(ctx->opcode));
6947     rd = gen_avr_ptr(rD(ctx->opcode));
6948     sh = tcg_const_i32(VSH(ctx->opcode));
6949     gen_helper_vsldoi (rd, ra, rb, sh);
6950     tcg_temp_free_ptr(ra);
6951     tcg_temp_free_ptr(rb);
6952     tcg_temp_free_ptr(rd);
6953     tcg_temp_free_i32(sh);
6954 }
6955
6956 #define GEN_VAFORM_PAIRED(name0, name1, opc2)                           \
6957 static void glue(gen_, name0##_##name1)(DisasContext *ctx)              \
6958     {                                                                   \
6959         TCGv_ptr ra, rb, rc, rd;                                        \
6960         if (unlikely(!ctx->altivec_enabled)) {                          \
6961             gen_exception(ctx, POWERPC_EXCP_VPU);                       \
6962             return;                                                     \
6963         }                                                               \
6964         ra = gen_avr_ptr(rA(ctx->opcode));                              \
6965         rb = gen_avr_ptr(rB(ctx->opcode));                              \
6966         rc = gen_avr_ptr(rC(ctx->opcode));                              \
6967         rd = gen_avr_ptr(rD(ctx->opcode));                              \
6968         if (Rc(ctx->opcode)) {                                          \
6969             gen_helper_##name1(cpu_env, rd, ra, rb, rc);                \
6970         } else {                                                        \
6971             gen_helper_##name0(cpu_env, rd, ra, rb, rc);                \
6972         }                                                               \
6973         tcg_temp_free_ptr(ra);                                          \
6974         tcg_temp_free_ptr(rb);                                          \
6975         tcg_temp_free_ptr(rc);                                          \
6976         tcg_temp_free_ptr(rd);                                          \
6977     }
6978
6979 GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16)
6980
6981 static void gen_vmladduhm(DisasContext *ctx)
6982 {
6983     TCGv_ptr ra, rb, rc, rd;
6984     if (unlikely(!ctx->altivec_enabled)) {
6985         gen_exception(ctx, POWERPC_EXCP_VPU);
6986         return;
6987     }
6988     ra = gen_avr_ptr(rA(ctx->opcode));
6989     rb = gen_avr_ptr(rB(ctx->opcode));
6990     rc = gen_avr_ptr(rC(ctx->opcode));
6991     rd = gen_avr_ptr(rD(ctx->opcode));
6992     gen_helper_vmladduhm(rd, ra, rb, rc);
6993     tcg_temp_free_ptr(ra);
6994     tcg_temp_free_ptr(rb);
6995     tcg_temp_free_ptr(rc);
6996     tcg_temp_free_ptr(rd);
6997 }
6998
6999 GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18)
7000 GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19)
7001 GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20)
7002 GEN_VAFORM_PAIRED(vsel, vperm, 21)
7003 GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23)
7004
7005 /***                           VSX extension                               ***/
7006
7007 static inline TCGv_i64 cpu_vsrh(int n)
7008 {
7009     if (n < 32) {
7010         return cpu_fpr[n];
7011     } else {
7012         return cpu_avrh[n-32];
7013     }
7014 }
7015
7016 static inline TCGv_i64 cpu_vsrl(int n)
7017 {
7018     if (n < 32) {
7019         return cpu_vsr[n];
7020     } else {
7021         return cpu_avrl[n-32];
7022     }
7023 }
7024
7025 static void gen_lxsdx(DisasContext *ctx)
7026 {
7027     TCGv EA;
7028     if (unlikely(!ctx->vsx_enabled)) {
7029         gen_exception(ctx, POWERPC_EXCP_VSXU);
7030         return;
7031     }
7032     gen_set_access_type(ctx, ACCESS_INT);
7033     EA = tcg_temp_new();
7034     gen_addr_reg_index(ctx, EA);
7035     gen_qemu_ld64(ctx, cpu_vsrh(xT(ctx->opcode)), EA);
7036     /* NOTE: cpu_vsrl is undefined */
7037     tcg_temp_free(EA);
7038 }
7039
7040 static void gen_lxvd2x(DisasContext *ctx)
7041 {
7042     TCGv EA;
7043     if (unlikely(!ctx->vsx_enabled)) {
7044         gen_exception(ctx, POWERPC_EXCP_VSXU);
7045         return;
7046     }
7047     gen_set_access_type(ctx, ACCESS_INT);
7048     EA = tcg_temp_new();
7049     gen_addr_reg_index(ctx, EA);
7050     gen_qemu_ld64(ctx, cpu_vsrh(xT(ctx->opcode)), EA);
7051     tcg_gen_addi_tl(EA, EA, 8);
7052     gen_qemu_ld64(ctx, cpu_vsrl(xT(ctx->opcode)), EA);
7053     tcg_temp_free(EA);
7054 }
7055
7056 static void gen_lxvdsx(DisasContext *ctx)
7057 {
7058     TCGv EA;
7059     if (unlikely(!ctx->vsx_enabled)) {
7060         gen_exception(ctx, POWERPC_EXCP_VSXU);
7061         return;
7062     }
7063     gen_set_access_type(ctx, ACCESS_INT);
7064     EA = tcg_temp_new();
7065     gen_addr_reg_index(ctx, EA);
7066     gen_qemu_ld64(ctx, cpu_vsrh(xT(ctx->opcode)), EA);
7067     tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), cpu_vsrh(xT(ctx->opcode)));
7068     tcg_temp_free(EA);
7069 }
7070
7071 static void gen_lxvw4x(DisasContext *ctx)
7072 {
7073     TCGv EA;
7074     TCGv_i64 tmp;
7075     TCGv_i64 xth = cpu_vsrh(xT(ctx->opcode));
7076     TCGv_i64 xtl = cpu_vsrl(xT(ctx->opcode));
7077     if (unlikely(!ctx->vsx_enabled)) {
7078         gen_exception(ctx, POWERPC_EXCP_VSXU);
7079         return;
7080     }
7081     gen_set_access_type(ctx, ACCESS_INT);
7082     EA = tcg_temp_new();
7083     tmp = tcg_temp_new_i64();
7084
7085     gen_addr_reg_index(ctx, EA);
7086     gen_qemu_ld32u_i64(ctx, tmp, EA);
7087     tcg_gen_addi_tl(EA, EA, 4);
7088     gen_qemu_ld32u_i64(ctx, xth, EA);
7089     tcg_gen_deposit_i64(xth, xth, tmp, 32, 32);
7090
7091     tcg_gen_addi_tl(EA, EA, 4);
7092     gen_qemu_ld32u_i64(ctx, tmp, EA);
7093     tcg_gen_addi_tl(EA, EA, 4);
7094     gen_qemu_ld32u_i64(ctx, xtl, EA);
7095     tcg_gen_deposit_i64(xtl, xtl, tmp, 32, 32);
7096
7097     tcg_temp_free(EA);
7098     tcg_temp_free_i64(tmp);
7099 }
7100
7101 static void gen_stxsdx(DisasContext *ctx)
7102 {
7103     TCGv EA;
7104     if (unlikely(!ctx->vsx_enabled)) {
7105         gen_exception(ctx, POWERPC_EXCP_VSXU);
7106         return;
7107     }
7108     gen_set_access_type(ctx, ACCESS_INT);
7109     EA = tcg_temp_new();
7110     gen_addr_reg_index(ctx, EA);
7111     gen_qemu_st64(ctx, cpu_vsrh(xS(ctx->opcode)), EA);
7112     tcg_temp_free(EA);
7113 }
7114
7115 static void gen_stxvd2x(DisasContext *ctx)
7116 {
7117     TCGv EA;
7118     if (unlikely(!ctx->vsx_enabled)) {
7119         gen_exception(ctx, POWERPC_EXCP_VSXU);
7120         return;
7121     }
7122     gen_set_access_type(ctx, ACCESS_INT);
7123     EA = tcg_temp_new();
7124     gen_addr_reg_index(ctx, EA);
7125     gen_qemu_st64(ctx, cpu_vsrh(xS(ctx->opcode)), EA);
7126     tcg_gen_addi_tl(EA, EA, 8);
7127     gen_qemu_st64(ctx, cpu_vsrl(xS(ctx->opcode)), EA);
7128     tcg_temp_free(EA);
7129 }
7130
7131 static void gen_stxvw4x(DisasContext *ctx)
7132 {
7133     TCGv_i64 tmp;
7134     TCGv EA;
7135     if (unlikely(!ctx->vsx_enabled)) {
7136         gen_exception(ctx, POWERPC_EXCP_VSXU);
7137         return;
7138     }
7139     gen_set_access_type(ctx, ACCESS_INT);
7140     EA = tcg_temp_new();
7141     gen_addr_reg_index(ctx, EA);
7142     tmp = tcg_temp_new_i64();
7143
7144     tcg_gen_shri_i64(tmp, cpu_vsrh(xS(ctx->opcode)), 32);
7145     gen_qemu_st32_i64(ctx, tmp, EA);
7146     tcg_gen_addi_tl(EA, EA, 4);
7147     gen_qemu_st32_i64(ctx, cpu_vsrh(xS(ctx->opcode)), EA);
7148
7149     tcg_gen_shri_i64(tmp, cpu_vsrl(xS(ctx->opcode)), 32);
7150     tcg_gen_addi_tl(EA, EA, 4);
7151     gen_qemu_st32_i64(ctx, tmp, EA);
7152     tcg_gen_addi_tl(EA, EA, 4);
7153     gen_qemu_st32_i64(ctx, cpu_vsrl(xS(ctx->opcode)), EA);
7154
7155     tcg_temp_free(EA);
7156     tcg_temp_free_i64(tmp);
7157 }
7158
7159 static void gen_xxpermdi(DisasContext *ctx)
7160 {
7161     if (unlikely(!ctx->vsx_enabled)) {
7162         gen_exception(ctx, POWERPC_EXCP_VSXU);
7163         return;
7164     }
7165
7166     if ((DM(ctx->opcode) & 2) == 0) {
7167         tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), cpu_vsrh(xA(ctx->opcode)));
7168     } else {
7169         tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), cpu_vsrl(xA(ctx->opcode)));
7170     }
7171     if ((DM(ctx->opcode) & 1) == 0) {
7172         tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), cpu_vsrh(xB(ctx->opcode)));
7173     } else {
7174         tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), cpu_vsrl(xB(ctx->opcode)));
7175     }
7176 }
7177
7178 #define OP_ABS 1
7179 #define OP_NABS 2
7180 #define OP_NEG 3
7181 #define OP_CPSGN 4
7182 #define SGN_MASK_DP  0x8000000000000000ul
7183 #define SGN_MASK_SP 0x8000000080000000ul
7184
7185 #define VSX_SCALAR_MOVE(name, op, sgn_mask)                       \
7186 static void glue(gen_, name)(DisasContext * ctx)                  \
7187     {                                                             \
7188         TCGv_i64 xb, sgm;                                         \
7189         if (unlikely(!ctx->vsx_enabled)) {                        \
7190             gen_exception(ctx, POWERPC_EXCP_VSXU);                \
7191             return;                                               \
7192         }                                                         \
7193         xb = tcg_temp_new_i64();                                  \
7194         sgm = tcg_temp_new_i64();                                 \
7195         tcg_gen_mov_i64(xb, cpu_vsrh(xB(ctx->opcode)));           \
7196         tcg_gen_movi_i64(sgm, sgn_mask);                          \
7197         switch (op) {                                             \
7198             case OP_ABS: {                                        \
7199                 tcg_gen_andc_i64(xb, xb, sgm);                    \
7200                 break;                                            \
7201             }                                                     \
7202             case OP_NABS: {                                       \
7203                 tcg_gen_or_i64(xb, xb, sgm);                      \
7204                 break;                                            \
7205             }                                                     \
7206             case OP_NEG: {                                        \
7207                 tcg_gen_xor_i64(xb, xb, sgm);                     \
7208                 break;                                            \
7209             }                                                     \
7210             case OP_CPSGN: {                                      \
7211                 TCGv_i64 xa = tcg_temp_new_i64();                 \
7212                 tcg_gen_mov_i64(xa, cpu_vsrh(xA(ctx->opcode)));   \
7213                 tcg_gen_and_i64(xa, xa, sgm);                     \
7214                 tcg_gen_andc_i64(xb, xb, sgm);                    \
7215                 tcg_gen_or_i64(xb, xb, xa);                       \
7216                 tcg_temp_free_i64(xa);                            \
7217                 break;                                            \
7218             }                                                     \
7219         }                                                         \
7220         tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), xb);           \
7221         tcg_temp_free_i64(xb);                                    \
7222         tcg_temp_free_i64(sgm);                                   \
7223     }
7224
7225 VSX_SCALAR_MOVE(xsabsdp, OP_ABS, SGN_MASK_DP)
7226 VSX_SCALAR_MOVE(xsnabsdp, OP_NABS, SGN_MASK_DP)
7227 VSX_SCALAR_MOVE(xsnegdp, OP_NEG, SGN_MASK_DP)
7228 VSX_SCALAR_MOVE(xscpsgndp, OP_CPSGN, SGN_MASK_DP)
7229
7230 #define VSX_VECTOR_MOVE(name, op, sgn_mask)                      \
7231 static void glue(gen_, name)(DisasContext * ctx)                 \
7232     {                                                            \
7233         TCGv_i64 xbh, xbl, sgm;                                  \
7234         if (unlikely(!ctx->vsx_enabled)) {                       \
7235             gen_exception(ctx, POWERPC_EXCP_VSXU);               \
7236             return;                                              \
7237         }                                                        \
7238         xbh = tcg_temp_new_i64();                                \
7239         xbl = tcg_temp_new_i64();                                \
7240         sgm = tcg_temp_new_i64();                                \
7241         tcg_gen_mov_i64(xbh, cpu_vsrh(xB(ctx->opcode)));         \
7242         tcg_gen_mov_i64(xbl, cpu_vsrl(xB(ctx->opcode)));         \
7243         tcg_gen_movi_i64(sgm, sgn_mask);                         \
7244         switch (op) {                                            \
7245             case OP_ABS: {                                       \
7246                 tcg_gen_andc_i64(xbh, xbh, sgm);                 \
7247                 tcg_gen_andc_i64(xbl, xbl, sgm);                 \
7248                 break;                                           \
7249             }                                                    \
7250             case OP_NABS: {                                      \
7251                 tcg_gen_or_i64(xbh, xbh, sgm);                   \
7252                 tcg_gen_or_i64(xbl, xbl, sgm);                   \
7253                 break;                                           \
7254             }                                                    \
7255             case OP_NEG: {                                       \
7256                 tcg_gen_xor_i64(xbh, xbh, sgm);                  \
7257                 tcg_gen_xor_i64(xbl, xbl, sgm);                  \
7258                 break;                                           \
7259             }                                                    \
7260             case OP_CPSGN: {                                     \
7261                 TCGv_i64 xah = tcg_temp_new_i64();               \
7262                 TCGv_i64 xal = tcg_temp_new_i64();               \
7263                 tcg_gen_mov_i64(xah, cpu_vsrh(xA(ctx->opcode))); \
7264                 tcg_gen_mov_i64(xal, cpu_vsrl(xA(ctx->opcode))); \
7265                 tcg_gen_and_i64(xah, xah, sgm);                  \
7266                 tcg_gen_and_i64(xal, xal, sgm);                  \
7267                 tcg_gen_andc_i64(xbh, xbh, sgm);                 \
7268                 tcg_gen_andc_i64(xbl, xbl, sgm);                 \
7269                 tcg_gen_or_i64(xbh, xbh, xah);                   \
7270                 tcg_gen_or_i64(xbl, xbl, xal);                   \
7271                 tcg_temp_free_i64(xah);                          \
7272                 tcg_temp_free_i64(xal);                          \
7273                 break;                                           \
7274             }                                                    \
7275         }                                                        \
7276         tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), xbh);         \
7277         tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), xbl);         \
7278         tcg_temp_free_i64(xbh);                                  \
7279         tcg_temp_free_i64(xbl);                                  \
7280         tcg_temp_free_i64(sgm);                                  \
7281     }
7282
7283 VSX_VECTOR_MOVE(xvabsdp, OP_ABS, SGN_MASK_DP)
7284 VSX_VECTOR_MOVE(xvnabsdp, OP_NABS, SGN_MASK_DP)
7285 VSX_VECTOR_MOVE(xvnegdp, OP_NEG, SGN_MASK_DP)
7286 VSX_VECTOR_MOVE(xvcpsgndp, OP_CPSGN, SGN_MASK_DP)
7287 VSX_VECTOR_MOVE(xvabssp, OP_ABS, SGN_MASK_SP)
7288 VSX_VECTOR_MOVE(xvnabssp, OP_NABS, SGN_MASK_SP)
7289 VSX_VECTOR_MOVE(xvnegsp, OP_NEG, SGN_MASK_SP)
7290 VSX_VECTOR_MOVE(xvcpsgnsp, OP_CPSGN, SGN_MASK_SP)
7291
7292 #define GEN_VSX_HELPER_2(name, op1, op2, inval, type)                         \
7293 static void gen_##name(DisasContext * ctx)                                    \
7294 {                                                                             \
7295     TCGv_i32 opc;                                                             \
7296     if (unlikely(!ctx->vsx_enabled)) {                                        \
7297         gen_exception(ctx, POWERPC_EXCP_VSXU);                                \
7298         return;                                                               \
7299     }                                                                         \
7300     /* NIP cannot be restored if the memory exception comes from an helper */ \
7301     gen_update_nip(ctx, ctx->nip - 4);                                        \
7302     opc = tcg_const_i32(ctx->opcode);                                         \
7303     gen_helper_##name(cpu_env, opc);                                          \
7304     tcg_temp_free_i32(opc);                                                   \
7305 }
7306
7307 GEN_VSX_HELPER_2(xsadddp, 0x00, 0x04, 0, PPC2_VSX)
7308 GEN_VSX_HELPER_2(xssubdp, 0x00, 0x05, 0, PPC2_VSX)
7309 GEN_VSX_HELPER_2(xsmuldp, 0x00, 0x06, 0, PPC2_VSX)
7310 GEN_VSX_HELPER_2(xsdivdp, 0x00, 0x07, 0, PPC2_VSX)
7311 GEN_VSX_HELPER_2(xsredp, 0x14, 0x05, 0, PPC2_VSX)
7312 GEN_VSX_HELPER_2(xssqrtdp, 0x16, 0x04, 0, PPC2_VSX)
7313 GEN_VSX_HELPER_2(xsrsqrtedp, 0x14, 0x04, 0, PPC2_VSX)
7314 GEN_VSX_HELPER_2(xstdivdp, 0x14, 0x07, 0, PPC2_VSX)
7315 GEN_VSX_HELPER_2(xstsqrtdp, 0x14, 0x06, 0, PPC2_VSX)
7316 GEN_VSX_HELPER_2(xsmaddadp, 0x04, 0x04, 0, PPC2_VSX)
7317 GEN_VSX_HELPER_2(xsmaddmdp, 0x04, 0x05, 0, PPC2_VSX)
7318 GEN_VSX_HELPER_2(xsmsubadp, 0x04, 0x06, 0, PPC2_VSX)
7319 GEN_VSX_HELPER_2(xsmsubmdp, 0x04, 0x07, 0, PPC2_VSX)
7320 GEN_VSX_HELPER_2(xsnmaddadp, 0x04, 0x14, 0, PPC2_VSX)
7321 GEN_VSX_HELPER_2(xsnmaddmdp, 0x04, 0x15, 0, PPC2_VSX)
7322 GEN_VSX_HELPER_2(xsnmsubadp, 0x04, 0x16, 0, PPC2_VSX)
7323 GEN_VSX_HELPER_2(xsnmsubmdp, 0x04, 0x17, 0, PPC2_VSX)
7324 GEN_VSX_HELPER_2(xscmpodp, 0x0C, 0x05, 0, PPC2_VSX)
7325 GEN_VSX_HELPER_2(xscmpudp, 0x0C, 0x04, 0, PPC2_VSX)
7326 GEN_VSX_HELPER_2(xsmaxdp, 0x00, 0x14, 0, PPC2_VSX)
7327 GEN_VSX_HELPER_2(xsmindp, 0x00, 0x15, 0, PPC2_VSX)
7328 GEN_VSX_HELPER_2(xscvdpsp, 0x12, 0x10, 0, PPC2_VSX)
7329 GEN_VSX_HELPER_2(xscvspdp, 0x12, 0x14, 0, PPC2_VSX)
7330 GEN_VSX_HELPER_2(xscvdpsxds, 0x10, 0x15, 0, PPC2_VSX)
7331 GEN_VSX_HELPER_2(xscvdpsxws, 0x10, 0x05, 0, PPC2_VSX)
7332 GEN_VSX_HELPER_2(xscvdpuxds, 0x10, 0x14, 0, PPC2_VSX)
7333 GEN_VSX_HELPER_2(xscvdpuxws, 0x10, 0x04, 0, PPC2_VSX)
7334 GEN_VSX_HELPER_2(xscvsxddp, 0x10, 0x17, 0, PPC2_VSX)
7335 GEN_VSX_HELPER_2(xscvuxddp, 0x10, 0x16, 0, PPC2_VSX)
7336 GEN_VSX_HELPER_2(xsrdpi, 0x12, 0x04, 0, PPC2_VSX)
7337 GEN_VSX_HELPER_2(xsrdpic, 0x16, 0x06, 0, PPC2_VSX)
7338 GEN_VSX_HELPER_2(xsrdpim, 0x12, 0x07, 0, PPC2_VSX)
7339 GEN_VSX_HELPER_2(xsrdpip, 0x12, 0x06, 0, PPC2_VSX)
7340 GEN_VSX_HELPER_2(xsrdpiz, 0x12, 0x05, 0, PPC2_VSX)
7341
7342 GEN_VSX_HELPER_2(xvadddp, 0x00, 0x0C, 0, PPC2_VSX)
7343 GEN_VSX_HELPER_2(xvsubdp, 0x00, 0x0D, 0, PPC2_VSX)
7344 GEN_VSX_HELPER_2(xvmuldp, 0x00, 0x0E, 0, PPC2_VSX)
7345 GEN_VSX_HELPER_2(xvdivdp, 0x00, 0x0F, 0, PPC2_VSX)
7346 GEN_VSX_HELPER_2(xvredp, 0x14, 0x0D, 0, PPC2_VSX)
7347 GEN_VSX_HELPER_2(xvsqrtdp, 0x16, 0x0C, 0, PPC2_VSX)
7348 GEN_VSX_HELPER_2(xvrsqrtedp, 0x14, 0x0C, 0, PPC2_VSX)
7349 GEN_VSX_HELPER_2(xvtdivdp, 0x14, 0x0F, 0, PPC2_VSX)
7350 GEN_VSX_HELPER_2(xvtsqrtdp, 0x14, 0x0E, 0, PPC2_VSX)
7351 GEN_VSX_HELPER_2(xvmaddadp, 0x04, 0x0C, 0, PPC2_VSX)
7352 GEN_VSX_HELPER_2(xvmaddmdp, 0x04, 0x0D, 0, PPC2_VSX)
7353 GEN_VSX_HELPER_2(xvmsubadp, 0x04, 0x0E, 0, PPC2_VSX)
7354 GEN_VSX_HELPER_2(xvmsubmdp, 0x04, 0x0F, 0, PPC2_VSX)
7355 GEN_VSX_HELPER_2(xvnmaddadp, 0x04, 0x1C, 0, PPC2_VSX)
7356 GEN_VSX_HELPER_2(xvnmaddmdp, 0x04, 0x1D, 0, PPC2_VSX)
7357 GEN_VSX_HELPER_2(xvnmsubadp, 0x04, 0x1E, 0, PPC2_VSX)
7358 GEN_VSX_HELPER_2(xvnmsubmdp, 0x04, 0x1F, 0, PPC2_VSX)
7359 GEN_VSX_HELPER_2(xvmaxdp, 0x00, 0x1C, 0, PPC2_VSX)
7360 GEN_VSX_HELPER_2(xvmindp, 0x00, 0x1D, 0, PPC2_VSX)
7361 GEN_VSX_HELPER_2(xvcmpeqdp, 0x0C, 0x0C, 0, PPC2_VSX)
7362 GEN_VSX_HELPER_2(xvcmpgtdp, 0x0C, 0x0D, 0, PPC2_VSX)
7363 GEN_VSX_HELPER_2(xvcmpgedp, 0x0C, 0x0E, 0, PPC2_VSX)
7364 GEN_VSX_HELPER_2(xvcvdpsp, 0x12, 0x18, 0, PPC2_VSX)
7365 GEN_VSX_HELPER_2(xvcvdpsxds, 0x10, 0x1D, 0, PPC2_VSX)
7366 GEN_VSX_HELPER_2(xvcvdpsxws, 0x10, 0x0D, 0, PPC2_VSX)
7367 GEN_VSX_HELPER_2(xvcvdpuxds, 0x10, 0x1C, 0, PPC2_VSX)
7368 GEN_VSX_HELPER_2(xvcvdpuxws, 0x10, 0x0C, 0, PPC2_VSX)
7369 GEN_VSX_HELPER_2(xvcvsxddp, 0x10, 0x1F, 0, PPC2_VSX)
7370 GEN_VSX_HELPER_2(xvcvuxddp, 0x10, 0x1E, 0, PPC2_VSX)
7371 GEN_VSX_HELPER_2(xvcvsxwdp, 0x10, 0x0F, 0, PPC2_VSX)
7372 GEN_VSX_HELPER_2(xvcvuxwdp, 0x10, 0x0E, 0, PPC2_VSX)
7373 GEN_VSX_HELPER_2(xvrdpi, 0x12, 0x0C, 0, PPC2_VSX)
7374 GEN_VSX_HELPER_2(xvrdpic, 0x16, 0x0E, 0, PPC2_VSX)
7375 GEN_VSX_HELPER_2(xvrdpim, 0x12, 0x0F, 0, PPC2_VSX)
7376 GEN_VSX_HELPER_2(xvrdpip, 0x12, 0x0E, 0, PPC2_VSX)
7377 GEN_VSX_HELPER_2(xvrdpiz, 0x12, 0x0D, 0, PPC2_VSX)
7378
7379 GEN_VSX_HELPER_2(xvaddsp, 0x00, 0x08, 0, PPC2_VSX)
7380 GEN_VSX_HELPER_2(xvsubsp, 0x00, 0x09, 0, PPC2_VSX)
7381 GEN_VSX_HELPER_2(xvmulsp, 0x00, 0x0A, 0, PPC2_VSX)
7382 GEN_VSX_HELPER_2(xvdivsp, 0x00, 0x0B, 0, PPC2_VSX)
7383 GEN_VSX_HELPER_2(xvresp, 0x14, 0x09, 0, PPC2_VSX)
7384 GEN_VSX_HELPER_2(xvsqrtsp, 0x16, 0x08, 0, PPC2_VSX)
7385 GEN_VSX_HELPER_2(xvrsqrtesp, 0x14, 0x08, 0, PPC2_VSX)
7386 GEN_VSX_HELPER_2(xvtdivsp, 0x14, 0x0B, 0, PPC2_VSX)
7387 GEN_VSX_HELPER_2(xvtsqrtsp, 0x14, 0x0A, 0, PPC2_VSX)
7388 GEN_VSX_HELPER_2(xvmaddasp, 0x04, 0x08, 0, PPC2_VSX)
7389 GEN_VSX_HELPER_2(xvmaddmsp, 0x04, 0x09, 0, PPC2_VSX)
7390 GEN_VSX_HELPER_2(xvmsubasp, 0x04, 0x0A, 0, PPC2_VSX)
7391 GEN_VSX_HELPER_2(xvmsubmsp, 0x04, 0x0B, 0, PPC2_VSX)
7392 GEN_VSX_HELPER_2(xvnmaddasp, 0x04, 0x18, 0, PPC2_VSX)
7393 GEN_VSX_HELPER_2(xvnmaddmsp, 0x04, 0x19, 0, PPC2_VSX)
7394 GEN_VSX_HELPER_2(xvnmsubasp, 0x04, 0x1A, 0, PPC2_VSX)
7395 GEN_VSX_HELPER_2(xvnmsubmsp, 0x04, 0x1B, 0, PPC2_VSX)
7396 GEN_VSX_HELPER_2(xvmaxsp, 0x00, 0x18, 0, PPC2_VSX)
7397 GEN_VSX_HELPER_2(xvminsp, 0x00, 0x19, 0, PPC2_VSX)
7398 GEN_VSX_HELPER_2(xvcmpeqsp, 0x0C, 0x08, 0, PPC2_VSX)
7399 GEN_VSX_HELPER_2(xvcmpgtsp, 0x0C, 0x09, 0, PPC2_VSX)
7400 GEN_VSX_HELPER_2(xvcmpgesp, 0x0C, 0x0A, 0, PPC2_VSX)
7401 GEN_VSX_HELPER_2(xvcvspdp, 0x12, 0x1C, 0, PPC2_VSX)
7402 GEN_VSX_HELPER_2(xvcvspsxds, 0x10, 0x19, 0, PPC2_VSX)
7403 GEN_VSX_HELPER_2(xvcvspsxws, 0x10, 0x09, 0, PPC2_VSX)
7404 GEN_VSX_HELPER_2(xvcvspuxds, 0x10, 0x18, 0, PPC2_VSX)
7405 GEN_VSX_HELPER_2(xvcvspuxws, 0x10, 0x08, 0, PPC2_VSX)
7406 GEN_VSX_HELPER_2(xvcvsxdsp, 0x10, 0x1B, 0, PPC2_VSX)
7407 GEN_VSX_HELPER_2(xvcvuxdsp, 0x10, 0x1A, 0, PPC2_VSX)
7408 GEN_VSX_HELPER_2(xvcvsxwsp, 0x10, 0x0B, 0, PPC2_VSX)
7409 GEN_VSX_HELPER_2(xvcvuxwsp, 0x10, 0x0A, 0, PPC2_VSX)
7410 GEN_VSX_HELPER_2(xvrspi, 0x12, 0x08, 0, PPC2_VSX)
7411 GEN_VSX_HELPER_2(xvrspic, 0x16, 0x0A, 0, PPC2_VSX)
7412 GEN_VSX_HELPER_2(xvrspim, 0x12, 0x0B, 0, PPC2_VSX)
7413 GEN_VSX_HELPER_2(xvrspip, 0x12, 0x0A, 0, PPC2_VSX)
7414 GEN_VSX_HELPER_2(xvrspiz, 0x12, 0x09, 0, PPC2_VSX)
7415
7416 #define VSX_LOGICAL(name, tcg_op)                                    \
7417 static void glue(gen_, name)(DisasContext * ctx)                     \
7418     {                                                                \
7419         if (unlikely(!ctx->vsx_enabled)) {                           \
7420             gen_exception(ctx, POWERPC_EXCP_VSXU);                   \
7421             return;                                                  \
7422         }                                                            \
7423         tcg_op(cpu_vsrh(xT(ctx->opcode)), cpu_vsrh(xA(ctx->opcode)), \
7424             cpu_vsrh(xB(ctx->opcode)));                              \
7425         tcg_op(cpu_vsrl(xT(ctx->opcode)), cpu_vsrl(xA(ctx->opcode)), \
7426             cpu_vsrl(xB(ctx->opcode)));                              \
7427     }
7428
7429 VSX_LOGICAL(xxland, tcg_gen_and_i64)
7430 VSX_LOGICAL(xxlandc, tcg_gen_andc_i64)
7431 VSX_LOGICAL(xxlor, tcg_gen_or_i64)
7432 VSX_LOGICAL(xxlxor, tcg_gen_xor_i64)
7433 VSX_LOGICAL(xxlnor, tcg_gen_nor_i64)
7434
7435 #define VSX_XXMRG(name, high)                               \
7436 static void glue(gen_, name)(DisasContext * ctx)            \
7437     {                                                       \
7438         TCGv_i64 a0, a1, b0, b1;                            \
7439         if (unlikely(!ctx->vsx_enabled)) {                  \
7440             gen_exception(ctx, POWERPC_EXCP_VSXU);          \
7441             return;                                         \
7442         }                                                   \
7443         a0 = tcg_temp_new_i64();                            \
7444         a1 = tcg_temp_new_i64();                            \
7445         b0 = tcg_temp_new_i64();                            \
7446         b1 = tcg_temp_new_i64();                            \
7447         if (high) {                                         \
7448             tcg_gen_mov_i64(a0, cpu_vsrh(xA(ctx->opcode))); \
7449             tcg_gen_mov_i64(a1, cpu_vsrh(xA(ctx->opcode))); \
7450             tcg_gen_mov_i64(b0, cpu_vsrh(xB(ctx->opcode))); \
7451             tcg_gen_mov_i64(b1, cpu_vsrh(xB(ctx->opcode))); \
7452         } else {                                            \
7453             tcg_gen_mov_i64(a0, cpu_vsrl(xA(ctx->opcode))); \
7454             tcg_gen_mov_i64(a1, cpu_vsrl(xA(ctx->opcode))); \
7455             tcg_gen_mov_i64(b0, cpu_vsrl(xB(ctx->opcode))); \
7456             tcg_gen_mov_i64(b1, cpu_vsrl(xB(ctx->opcode))); \
7457         }                                                   \
7458         tcg_gen_shri_i64(a0, a0, 32);                       \
7459         tcg_gen_shri_i64(b0, b0, 32);                       \
7460         tcg_gen_deposit_i64(cpu_vsrh(xT(ctx->opcode)),      \
7461                             b0, a0, 32, 32);                \
7462         tcg_gen_deposit_i64(cpu_vsrl(xT(ctx->opcode)),      \
7463                             b1, a1, 32, 32);                \
7464         tcg_temp_free_i64(a0);                              \
7465         tcg_temp_free_i64(a1);                              \
7466         tcg_temp_free_i64(b0);                              \
7467         tcg_temp_free_i64(b1);                              \
7468     }
7469
7470 VSX_XXMRG(xxmrghw, 1)
7471 VSX_XXMRG(xxmrglw, 0)
7472
7473 static void gen_xxsel(DisasContext * ctx)
7474 {
7475     TCGv_i64 a, b, c;
7476     if (unlikely(!ctx->vsx_enabled)) {
7477         gen_exception(ctx, POWERPC_EXCP_VSXU);
7478         return;
7479     }
7480     a = tcg_temp_new_i64();
7481     b = tcg_temp_new_i64();
7482     c = tcg_temp_new_i64();
7483
7484     tcg_gen_mov_i64(a, cpu_vsrh(xA(ctx->opcode)));
7485     tcg_gen_mov_i64(b, cpu_vsrh(xB(ctx->opcode)));
7486     tcg_gen_mov_i64(c, cpu_vsrh(xC(ctx->opcode)));
7487
7488     tcg_gen_and_i64(b, b, c);
7489     tcg_gen_andc_i64(a, a, c);
7490     tcg_gen_or_i64(cpu_vsrh(xT(ctx->opcode)), a, b);
7491
7492     tcg_gen_mov_i64(a, cpu_vsrl(xA(ctx->opcode)));
7493     tcg_gen_mov_i64(b, cpu_vsrl(xB(ctx->opcode)));
7494     tcg_gen_mov_i64(c, cpu_vsrl(xC(ctx->opcode)));
7495
7496     tcg_gen_and_i64(b, b, c);
7497     tcg_gen_andc_i64(a, a, c);
7498     tcg_gen_or_i64(cpu_vsrl(xT(ctx->opcode)), a, b);
7499
7500     tcg_temp_free_i64(a);
7501     tcg_temp_free_i64(b);
7502     tcg_temp_free_i64(c);
7503 }
7504
7505 static void gen_xxspltw(DisasContext *ctx)
7506 {
7507     TCGv_i64 b, b2;
7508     TCGv_i64 vsr = (UIM(ctx->opcode) & 2) ?
7509                    cpu_vsrl(xB(ctx->opcode)) :
7510                    cpu_vsrh(xB(ctx->opcode));
7511
7512     if (unlikely(!ctx->vsx_enabled)) {
7513         gen_exception(ctx, POWERPC_EXCP_VSXU);
7514         return;
7515     }
7516
7517     b = tcg_temp_new_i64();
7518     b2 = tcg_temp_new_i64();
7519
7520     if (UIM(ctx->opcode) & 1) {
7521         tcg_gen_ext32u_i64(b, vsr);
7522     } else {
7523         tcg_gen_shri_i64(b, vsr, 32);
7524     }
7525
7526     tcg_gen_shli_i64(b2, b, 32);
7527     tcg_gen_or_i64(cpu_vsrh(xT(ctx->opcode)), b, b2);
7528     tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), cpu_vsrh(xT(ctx->opcode)));
7529
7530     tcg_temp_free_i64(b);
7531     tcg_temp_free_i64(b2);
7532 }
7533
7534 static void gen_xxsldwi(DisasContext *ctx)
7535 {
7536     TCGv_i64 xth, xtl;
7537     if (unlikely(!ctx->vsx_enabled)) {
7538         gen_exception(ctx, POWERPC_EXCP_VSXU);
7539         return;
7540     }
7541     xth = tcg_temp_new_i64();
7542     xtl = tcg_temp_new_i64();
7543
7544     switch (SHW(ctx->opcode)) {
7545         case 0: {
7546             tcg_gen_mov_i64(xth, cpu_vsrh(xA(ctx->opcode)));
7547             tcg_gen_mov_i64(xtl, cpu_vsrl(xA(ctx->opcode)));
7548             break;
7549         }
7550         case 1: {
7551             TCGv_i64 t0 = tcg_temp_new_i64();
7552             tcg_gen_mov_i64(xth, cpu_vsrh(xA(ctx->opcode)));
7553             tcg_gen_shli_i64(xth, xth, 32);
7554             tcg_gen_mov_i64(t0, cpu_vsrl(xA(ctx->opcode)));
7555             tcg_gen_shri_i64(t0, t0, 32);
7556             tcg_gen_or_i64(xth, xth, t0);
7557             tcg_gen_mov_i64(xtl, cpu_vsrl(xA(ctx->opcode)));
7558             tcg_gen_shli_i64(xtl, xtl, 32);
7559             tcg_gen_mov_i64(t0, cpu_vsrh(xB(ctx->opcode)));
7560             tcg_gen_shri_i64(t0, t0, 32);
7561             tcg_gen_or_i64(xtl, xtl, t0);
7562             tcg_temp_free_i64(t0);
7563             break;
7564         }
7565         case 2: {
7566             tcg_gen_mov_i64(xth, cpu_vsrl(xA(ctx->opcode)));
7567             tcg_gen_mov_i64(xtl, cpu_vsrh(xB(ctx->opcode)));
7568             break;
7569         }
7570         case 3: {
7571             TCGv_i64 t0 = tcg_temp_new_i64();
7572             tcg_gen_mov_i64(xth, cpu_vsrl(xA(ctx->opcode)));
7573             tcg_gen_shli_i64(xth, xth, 32);
7574             tcg_gen_mov_i64(t0, cpu_vsrh(xB(ctx->opcode)));
7575             tcg_gen_shri_i64(t0, t0, 32);
7576             tcg_gen_or_i64(xth, xth, t0);
7577             tcg_gen_mov_i64(xtl, cpu_vsrh(xB(ctx->opcode)));
7578             tcg_gen_shli_i64(xtl, xtl, 32);
7579             tcg_gen_mov_i64(t0, cpu_vsrl(xB(ctx->opcode)));
7580             tcg_gen_shri_i64(t0, t0, 32);
7581             tcg_gen_or_i64(xtl, xtl, t0);
7582             tcg_temp_free_i64(t0);
7583             break;
7584         }
7585     }
7586
7587     tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), xth);
7588     tcg_gen_mov_i64(cpu_vsrl(xT(ctx->opcode)), xtl);
7589
7590     tcg_temp_free_i64(xth);
7591     tcg_temp_free_i64(xtl);
7592 }
7593
7594
7595 /***                           SPE extension                               ***/
7596 /* Register moves */
7597
7598 static inline void gen_evmra(DisasContext *ctx)
7599 {
7600
7601     if (unlikely(!ctx->spe_enabled)) {
7602         gen_exception(ctx, POWERPC_EXCP_SPEU);
7603         return;
7604     }
7605
7606 #if defined(TARGET_PPC64)
7607     /* rD := rA */
7608     tcg_gen_mov_i64(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
7609
7610     /* spe_acc := rA */
7611     tcg_gen_st_i64(cpu_gpr[rA(ctx->opcode)],
7612                    cpu_env,
7613                    offsetof(CPUPPCState, spe_acc));
7614 #else
7615     TCGv_i64 tmp = tcg_temp_new_i64();
7616
7617     /* tmp := rA_lo + rA_hi << 32 */
7618     tcg_gen_concat_i32_i64(tmp, cpu_gpr[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7619
7620     /* spe_acc := tmp */
7621     tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
7622     tcg_temp_free_i64(tmp);
7623
7624     /* rD := rA */
7625     tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
7626     tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7627 #endif
7628 }
7629
7630 static inline void gen_load_gpr64(TCGv_i64 t, int reg)
7631 {
7632 #if defined(TARGET_PPC64)
7633     tcg_gen_mov_i64(t, cpu_gpr[reg]);
7634 #else
7635     tcg_gen_concat_i32_i64(t, cpu_gpr[reg], cpu_gprh[reg]);
7636 #endif
7637 }
7638
7639 static inline void gen_store_gpr64(int reg, TCGv_i64 t)
7640 {
7641 #if defined(TARGET_PPC64)
7642     tcg_gen_mov_i64(cpu_gpr[reg], t);
7643 #else
7644     TCGv_i64 tmp = tcg_temp_new_i64();
7645     tcg_gen_trunc_i64_i32(cpu_gpr[reg], t);
7646     tcg_gen_shri_i64(tmp, t, 32);
7647     tcg_gen_trunc_i64_i32(cpu_gprh[reg], tmp);
7648     tcg_temp_free_i64(tmp);
7649 #endif
7650 }
7651
7652 #define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type)         \
7653 static void glue(gen_, name0##_##name1)(DisasContext *ctx)                    \
7654 {                                                                             \
7655     if (Rc(ctx->opcode))                                                      \
7656         gen_##name1(ctx);                                                     \
7657     else                                                                      \
7658         gen_##name0(ctx);                                                     \
7659 }
7660
7661 /* Handler for undefined SPE opcodes */
7662 static inline void gen_speundef(DisasContext *ctx)
7663 {
7664     gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
7665 }
7666
7667 /* SPE logic */
7668 #if defined(TARGET_PPC64)
7669 #define GEN_SPEOP_LOGIC2(name, tcg_op)                                        \
7670 static inline void gen_##name(DisasContext *ctx)                              \
7671 {                                                                             \
7672     if (unlikely(!ctx->spe_enabled)) {                                        \
7673         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7674         return;                                                               \
7675     }                                                                         \
7676     tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],                \
7677            cpu_gpr[rB(ctx->opcode)]);                                         \
7678 }
7679 #else
7680 #define GEN_SPEOP_LOGIC2(name, tcg_op)                                        \
7681 static inline void gen_##name(DisasContext *ctx)                              \
7682 {                                                                             \
7683     if (unlikely(!ctx->spe_enabled)) {                                        \
7684         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7685         return;                                                               \
7686     }                                                                         \
7687     tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],                \
7688            cpu_gpr[rB(ctx->opcode)]);                                         \
7689     tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)],              \
7690            cpu_gprh[rB(ctx->opcode)]);                                        \
7691 }
7692 #endif
7693
7694 GEN_SPEOP_LOGIC2(evand, tcg_gen_and_tl);
7695 GEN_SPEOP_LOGIC2(evandc, tcg_gen_andc_tl);
7696 GEN_SPEOP_LOGIC2(evxor, tcg_gen_xor_tl);
7697 GEN_SPEOP_LOGIC2(evor, tcg_gen_or_tl);
7698 GEN_SPEOP_LOGIC2(evnor, tcg_gen_nor_tl);
7699 GEN_SPEOP_LOGIC2(eveqv, tcg_gen_eqv_tl);
7700 GEN_SPEOP_LOGIC2(evorc, tcg_gen_orc_tl);
7701 GEN_SPEOP_LOGIC2(evnand, tcg_gen_nand_tl);
7702
7703 /* SPE logic immediate */
7704 #if defined(TARGET_PPC64)
7705 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi)                               \
7706 static inline void gen_##name(DisasContext *ctx)                              \
7707 {                                                                             \
7708     if (unlikely(!ctx->spe_enabled)) {                                        \
7709         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7710         return;                                                               \
7711     }                                                                         \
7712     TCGv_i32 t0 = tcg_temp_local_new_i32();                                   \
7713     TCGv_i32 t1 = tcg_temp_local_new_i32();                                   \
7714     TCGv_i64 t2 = tcg_temp_local_new_i64();                                   \
7715     tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]);                      \
7716     tcg_opi(t0, t0, rB(ctx->opcode));                                         \
7717     tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32);                       \
7718     tcg_gen_trunc_i64_i32(t1, t2);                                            \
7719     tcg_temp_free_i64(t2);                                                    \
7720     tcg_opi(t1, t1, rB(ctx->opcode));                                         \
7721     tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);                 \
7722     tcg_temp_free_i32(t0);                                                    \
7723     tcg_temp_free_i32(t1);                                                    \
7724 }
7725 #else
7726 #define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi)                               \
7727 static inline void gen_##name(DisasContext *ctx)                              \
7728 {                                                                             \
7729     if (unlikely(!ctx->spe_enabled)) {                                        \
7730         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7731         return;                                                               \
7732     }                                                                         \
7733     tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],               \
7734             rB(ctx->opcode));                                                 \
7735     tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)],             \
7736             rB(ctx->opcode));                                                 \
7737 }
7738 #endif
7739 GEN_SPEOP_TCG_LOGIC_IMM2(evslwi, tcg_gen_shli_i32);
7740 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu, tcg_gen_shri_i32);
7741 GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis, tcg_gen_sari_i32);
7742 GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi, tcg_gen_rotli_i32);
7743
7744 /* SPE arithmetic */
7745 #if defined(TARGET_PPC64)
7746 #define GEN_SPEOP_ARITH1(name, tcg_op)                                        \
7747 static inline void gen_##name(DisasContext *ctx)                              \
7748 {                                                                             \
7749     if (unlikely(!ctx->spe_enabled)) {                                        \
7750         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7751         return;                                                               \
7752     }                                                                         \
7753     TCGv_i32 t0 = tcg_temp_local_new_i32();                                   \
7754     TCGv_i32 t1 = tcg_temp_local_new_i32();                                   \
7755     TCGv_i64 t2 = tcg_temp_local_new_i64();                                   \
7756     tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]);                      \
7757     tcg_op(t0, t0);                                                           \
7758     tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32);                       \
7759     tcg_gen_trunc_i64_i32(t1, t2);                                            \
7760     tcg_temp_free_i64(t2);                                                    \
7761     tcg_op(t1, t1);                                                           \
7762     tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);                 \
7763     tcg_temp_free_i32(t0);                                                    \
7764     tcg_temp_free_i32(t1);                                                    \
7765 }
7766 #else
7767 #define GEN_SPEOP_ARITH1(name, tcg_op)                                        \
7768 static inline void gen_##name(DisasContext *ctx)                              \
7769 {                                                                             \
7770     if (unlikely(!ctx->spe_enabled)) {                                        \
7771         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7772         return;                                                               \
7773     }                                                                         \
7774     tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);               \
7775     tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);             \
7776 }
7777 #endif
7778
7779 static inline void gen_op_evabs(TCGv_i32 ret, TCGv_i32 arg1)
7780 {
7781     int l1 = gen_new_label();
7782     int l2 = gen_new_label();
7783
7784     tcg_gen_brcondi_i32(TCG_COND_GE, arg1, 0, l1);
7785     tcg_gen_neg_i32(ret, arg1);
7786     tcg_gen_br(l2);
7787     gen_set_label(l1);
7788     tcg_gen_mov_i32(ret, arg1);
7789     gen_set_label(l2);
7790 }
7791 GEN_SPEOP_ARITH1(evabs, gen_op_evabs);
7792 GEN_SPEOP_ARITH1(evneg, tcg_gen_neg_i32);
7793 GEN_SPEOP_ARITH1(evextsb, tcg_gen_ext8s_i32);
7794 GEN_SPEOP_ARITH1(evextsh, tcg_gen_ext16s_i32);
7795 static inline void gen_op_evrndw(TCGv_i32 ret, TCGv_i32 arg1)
7796 {
7797     tcg_gen_addi_i32(ret, arg1, 0x8000);
7798     tcg_gen_ext16u_i32(ret, ret);
7799 }
7800 GEN_SPEOP_ARITH1(evrndw, gen_op_evrndw);
7801 GEN_SPEOP_ARITH1(evcntlsw, gen_helper_cntlsw32);
7802 GEN_SPEOP_ARITH1(evcntlzw, gen_helper_cntlzw32);
7803
7804 #if defined(TARGET_PPC64)
7805 #define GEN_SPEOP_ARITH2(name, tcg_op)                                        \
7806 static inline void gen_##name(DisasContext *ctx)                              \
7807 {                                                                             \
7808     if (unlikely(!ctx->spe_enabled)) {                                        \
7809         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7810         return;                                                               \
7811     }                                                                         \
7812     TCGv_i32 t0 = tcg_temp_local_new_i32();                                   \
7813     TCGv_i32 t1 = tcg_temp_local_new_i32();                                   \
7814     TCGv_i32 t2 = tcg_temp_local_new_i32();                                   \
7815     TCGv_i64 t3 = tcg_temp_local_new_i64();                                   \
7816     tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]);                      \
7817     tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]);                      \
7818     tcg_op(t0, t0, t2);                                                       \
7819     tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32);                       \
7820     tcg_gen_trunc_i64_i32(t1, t3);                                            \
7821     tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32);                       \
7822     tcg_gen_trunc_i64_i32(t2, t3);                                            \
7823     tcg_temp_free_i64(t3);                                                    \
7824     tcg_op(t1, t1, t2);                                                       \
7825     tcg_temp_free_i32(t2);                                                    \
7826     tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);                 \
7827     tcg_temp_free_i32(t0);                                                    \
7828     tcg_temp_free_i32(t1);                                                    \
7829 }
7830 #else
7831 #define GEN_SPEOP_ARITH2(name, tcg_op)                                        \
7832 static inline void gen_##name(DisasContext *ctx)                              \
7833 {                                                                             \
7834     if (unlikely(!ctx->spe_enabled)) {                                        \
7835         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7836         return;                                                               \
7837     }                                                                         \
7838     tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],                \
7839            cpu_gpr[rB(ctx->opcode)]);                                         \
7840     tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)],              \
7841            cpu_gprh[rB(ctx->opcode)]);                                        \
7842 }
7843 #endif
7844
7845 static inline void gen_op_evsrwu(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
7846 {
7847     TCGv_i32 t0;
7848     int l1, l2;
7849
7850     l1 = gen_new_label();
7851     l2 = gen_new_label();
7852     t0 = tcg_temp_local_new_i32();
7853     /* No error here: 6 bits are used */
7854     tcg_gen_andi_i32(t0, arg2, 0x3F);
7855     tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7856     tcg_gen_shr_i32(ret, arg1, t0);
7857     tcg_gen_br(l2);
7858     gen_set_label(l1);
7859     tcg_gen_movi_i32(ret, 0);
7860     gen_set_label(l2);
7861     tcg_temp_free_i32(t0);
7862 }
7863 GEN_SPEOP_ARITH2(evsrwu, gen_op_evsrwu);
7864 static inline void gen_op_evsrws(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
7865 {
7866     TCGv_i32 t0;
7867     int l1, l2;
7868
7869     l1 = gen_new_label();
7870     l2 = gen_new_label();
7871     t0 = tcg_temp_local_new_i32();
7872     /* No error here: 6 bits are used */
7873     tcg_gen_andi_i32(t0, arg2, 0x3F);
7874     tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7875     tcg_gen_sar_i32(ret, arg1, t0);
7876     tcg_gen_br(l2);
7877     gen_set_label(l1);
7878     tcg_gen_movi_i32(ret, 0);
7879     gen_set_label(l2);
7880     tcg_temp_free_i32(t0);
7881 }
7882 GEN_SPEOP_ARITH2(evsrws, gen_op_evsrws);
7883 static inline void gen_op_evslw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
7884 {
7885     TCGv_i32 t0;
7886     int l1, l2;
7887
7888     l1 = gen_new_label();
7889     l2 = gen_new_label();
7890     t0 = tcg_temp_local_new_i32();
7891     /* No error here: 6 bits are used */
7892     tcg_gen_andi_i32(t0, arg2, 0x3F);
7893     tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7894     tcg_gen_shl_i32(ret, arg1, t0);
7895     tcg_gen_br(l2);
7896     gen_set_label(l1);
7897     tcg_gen_movi_i32(ret, 0);
7898     gen_set_label(l2);
7899     tcg_temp_free_i32(t0);
7900 }
7901 GEN_SPEOP_ARITH2(evslw, gen_op_evslw);
7902 static inline void gen_op_evrlw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
7903 {
7904     TCGv_i32 t0 = tcg_temp_new_i32();
7905     tcg_gen_andi_i32(t0, arg2, 0x1F);
7906     tcg_gen_rotl_i32(ret, arg1, t0);
7907     tcg_temp_free_i32(t0);
7908 }
7909 GEN_SPEOP_ARITH2(evrlw, gen_op_evrlw);
7910 static inline void gen_evmergehi(DisasContext *ctx)
7911 {
7912     if (unlikely(!ctx->spe_enabled)) {
7913         gen_exception(ctx, POWERPC_EXCP_SPEU);
7914         return;
7915     }
7916 #if defined(TARGET_PPC64)
7917     TCGv t0 = tcg_temp_new();
7918     TCGv t1 = tcg_temp_new();
7919     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
7920     tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
7921     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
7922     tcg_temp_free(t0);
7923     tcg_temp_free(t1);
7924 #else
7925     tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
7926     tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7927 #endif
7928 }
7929 GEN_SPEOP_ARITH2(evaddw, tcg_gen_add_i32);
7930 static inline void gen_op_evsubf(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
7931 {
7932     tcg_gen_sub_i32(ret, arg2, arg1);
7933 }
7934 GEN_SPEOP_ARITH2(evsubfw, gen_op_evsubf);
7935
7936 /* SPE arithmetic immediate */
7937 #if defined(TARGET_PPC64)
7938 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op)                                    \
7939 static inline void gen_##name(DisasContext *ctx)                              \
7940 {                                                                             \
7941     if (unlikely(!ctx->spe_enabled)) {                                        \
7942         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7943         return;                                                               \
7944     }                                                                         \
7945     TCGv_i32 t0 = tcg_temp_local_new_i32();                                   \
7946     TCGv_i32 t1 = tcg_temp_local_new_i32();                                   \
7947     TCGv_i64 t2 = tcg_temp_local_new_i64();                                   \
7948     tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]);                      \
7949     tcg_op(t0, t0, rA(ctx->opcode));                                          \
7950     tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32);                       \
7951     tcg_gen_trunc_i64_i32(t1, t2);                                            \
7952     tcg_temp_free_i64(t2);                                                    \
7953     tcg_op(t1, t1, rA(ctx->opcode));                                          \
7954     tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);                 \
7955     tcg_temp_free_i32(t0);                                                    \
7956     tcg_temp_free_i32(t1);                                                    \
7957 }
7958 #else
7959 #define GEN_SPEOP_ARITH_IMM2(name, tcg_op)                                    \
7960 static inline void gen_##name(DisasContext *ctx)                              \
7961 {                                                                             \
7962     if (unlikely(!ctx->spe_enabled)) {                                        \
7963         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7964         return;                                                               \
7965     }                                                                         \
7966     tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],                \
7967            rA(ctx->opcode));                                                  \
7968     tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)],              \
7969            rA(ctx->opcode));                                                  \
7970 }
7971 #endif
7972 GEN_SPEOP_ARITH_IMM2(evaddiw, tcg_gen_addi_i32);
7973 GEN_SPEOP_ARITH_IMM2(evsubifw, tcg_gen_subi_i32);
7974
7975 /* SPE comparison */
7976 #if defined(TARGET_PPC64)
7977 #define GEN_SPEOP_COMP(name, tcg_cond)                                        \
7978 static inline void gen_##name(DisasContext *ctx)                              \
7979 {                                                                             \
7980     if (unlikely(!ctx->spe_enabled)) {                                        \
7981         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
7982         return;                                                               \
7983     }                                                                         \
7984     int l1 = gen_new_label();                                                 \
7985     int l2 = gen_new_label();                                                 \
7986     int l3 = gen_new_label();                                                 \
7987     int l4 = gen_new_label();                                                 \
7988     TCGv_i32 t0 = tcg_temp_local_new_i32();                                   \
7989     TCGv_i32 t1 = tcg_temp_local_new_i32();                                   \
7990     TCGv_i64 t2 = tcg_temp_local_new_i64();                                   \
7991     tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]);                      \
7992     tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]);                      \
7993     tcg_gen_brcond_i32(tcg_cond, t0, t1, l1);                                 \
7994     tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0);                          \
7995     tcg_gen_br(l2);                                                           \
7996     gen_set_label(l1);                                                        \
7997     tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)],                              \
7998                      CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL);                  \
7999     gen_set_label(l2);                                                        \
8000     tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32);                       \
8001     tcg_gen_trunc_i64_i32(t0, t2);                                            \
8002     tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32);                       \
8003     tcg_gen_trunc_i64_i32(t1, t2);                                            \
8004     tcg_temp_free_i64(t2);                                                    \
8005     tcg_gen_brcond_i32(tcg_cond, t0, t1, l3);                                 \
8006     tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)],  \
8007                      ~(CRF_CH | CRF_CH_AND_CL));                              \
8008     tcg_gen_br(l4);                                                           \
8009     gen_set_label(l3);                                                        \
8010     tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)],   \
8011                     CRF_CH | CRF_CH_OR_CL);                                   \
8012     gen_set_label(l4);                                                        \
8013     tcg_temp_free_i32(t0);                                                    \
8014     tcg_temp_free_i32(t1);                                                    \
8015 }
8016 #else
8017 #define GEN_SPEOP_COMP(name, tcg_cond)                                        \
8018 static inline void gen_##name(DisasContext *ctx)                              \
8019 {                                                                             \
8020     if (unlikely(!ctx->spe_enabled)) {                                        \
8021         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8022         return;                                                               \
8023     }                                                                         \
8024     int l1 = gen_new_label();                                                 \
8025     int l2 = gen_new_label();                                                 \
8026     int l3 = gen_new_label();                                                 \
8027     int l4 = gen_new_label();                                                 \
8028                                                                               \
8029     tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)],                    \
8030                        cpu_gpr[rB(ctx->opcode)], l1);                         \
8031     tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0);                           \
8032     tcg_gen_br(l2);                                                           \
8033     gen_set_label(l1);                                                        \
8034     tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)],                              \
8035                      CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL);                  \
8036     gen_set_label(l2);                                                        \
8037     tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)],                   \
8038                        cpu_gprh[rB(ctx->opcode)], l3);                        \
8039     tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)],  \
8040                      ~(CRF_CH | CRF_CH_AND_CL));                              \
8041     tcg_gen_br(l4);                                                           \
8042     gen_set_label(l3);                                                        \
8043     tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)],   \
8044                     CRF_CH | CRF_CH_OR_CL);                                   \
8045     gen_set_label(l4);                                                        \
8046 }
8047 #endif
8048 GEN_SPEOP_COMP(evcmpgtu, TCG_COND_GTU);
8049 GEN_SPEOP_COMP(evcmpgts, TCG_COND_GT);
8050 GEN_SPEOP_COMP(evcmpltu, TCG_COND_LTU);
8051 GEN_SPEOP_COMP(evcmplts, TCG_COND_LT);
8052 GEN_SPEOP_COMP(evcmpeq, TCG_COND_EQ);
8053
8054 /* SPE misc */
8055 static inline void gen_brinc(DisasContext *ctx)
8056 {
8057     /* Note: brinc is usable even if SPE is disabled */
8058     gen_helper_brinc(cpu_gpr[rD(ctx->opcode)],
8059                      cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
8060 }
8061 static inline void gen_evmergelo(DisasContext *ctx)
8062 {
8063     if (unlikely(!ctx->spe_enabled)) {
8064         gen_exception(ctx, POWERPC_EXCP_SPEU);
8065         return;
8066     }
8067 #if defined(TARGET_PPC64)
8068     TCGv t0 = tcg_temp_new();
8069     TCGv t1 = tcg_temp_new();
8070     tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
8071     tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
8072     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
8073     tcg_temp_free(t0);
8074     tcg_temp_free(t1);
8075 #else
8076     tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8077     tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
8078 #endif
8079 }
8080 static inline void gen_evmergehilo(DisasContext *ctx)
8081 {
8082     if (unlikely(!ctx->spe_enabled)) {
8083         gen_exception(ctx, POWERPC_EXCP_SPEU);
8084         return;
8085     }
8086 #if defined(TARGET_PPC64)
8087     TCGv t0 = tcg_temp_new();
8088     TCGv t1 = tcg_temp_new();
8089     tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
8090     tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
8091     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
8092     tcg_temp_free(t0);
8093     tcg_temp_free(t1);
8094 #else
8095     tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
8096     tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
8097 #endif
8098 }
8099 static inline void gen_evmergelohi(DisasContext *ctx)
8100 {
8101     if (unlikely(!ctx->spe_enabled)) {
8102         gen_exception(ctx, POWERPC_EXCP_SPEU);
8103         return;
8104     }
8105 #if defined(TARGET_PPC64)
8106     TCGv t0 = tcg_temp_new();
8107     TCGv t1 = tcg_temp_new();
8108     tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
8109     tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
8110     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
8111     tcg_temp_free(t0);
8112     tcg_temp_free(t1);
8113 #else
8114     if (rD(ctx->opcode) == rA(ctx->opcode)) {
8115         TCGv_i32 tmp = tcg_temp_new_i32();
8116         tcg_gen_mov_i32(tmp, cpu_gpr[rA(ctx->opcode)]);
8117         tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
8118         tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], tmp);
8119         tcg_temp_free_i32(tmp);
8120     } else {
8121         tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
8122         tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8123     }
8124 #endif
8125 }
8126 static inline void gen_evsplati(DisasContext *ctx)
8127 {
8128     uint64_t imm = ((int32_t)(rA(ctx->opcode) << 27)) >> 27;
8129
8130 #if defined(TARGET_PPC64)
8131     tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
8132 #else
8133     tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
8134     tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
8135 #endif
8136 }
8137 static inline void gen_evsplatfi(DisasContext *ctx)
8138 {
8139     uint64_t imm = rA(ctx->opcode) << 27;
8140
8141 #if defined(TARGET_PPC64)
8142     tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
8143 #else
8144     tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
8145     tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
8146 #endif
8147 }
8148
8149 static inline void gen_evsel(DisasContext *ctx)
8150 {
8151     int l1 = gen_new_label();
8152     int l2 = gen_new_label();
8153     int l3 = gen_new_label();
8154     int l4 = gen_new_label();
8155     TCGv_i32 t0 = tcg_temp_local_new_i32();
8156 #if defined(TARGET_PPC64)
8157     TCGv t1 = tcg_temp_local_new();
8158     TCGv t2 = tcg_temp_local_new();
8159 #endif
8160     tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 3);
8161     tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
8162 #if defined(TARGET_PPC64)
8163     tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF00000000ULL);
8164 #else
8165     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
8166 #endif
8167     tcg_gen_br(l2);
8168     gen_set_label(l1);
8169 #if defined(TARGET_PPC64)
8170     tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0xFFFFFFFF00000000ULL);
8171 #else
8172     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
8173 #endif
8174     gen_set_label(l2);
8175     tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 2);
8176     tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l3);
8177 #if defined(TARGET_PPC64)
8178     tcg_gen_ext32u_tl(t2, cpu_gpr[rA(ctx->opcode)]);
8179 #else
8180     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8181 #endif
8182     tcg_gen_br(l4);
8183     gen_set_label(l3);
8184 #if defined(TARGET_PPC64)
8185     tcg_gen_ext32u_tl(t2, cpu_gpr[rB(ctx->opcode)]);
8186 #else
8187     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
8188 #endif
8189     gen_set_label(l4);
8190     tcg_temp_free_i32(t0);
8191 #if defined(TARGET_PPC64)
8192     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t1, t2);
8193     tcg_temp_free(t1);
8194     tcg_temp_free(t2);
8195 #endif
8196 }
8197
8198 static void gen_evsel0(DisasContext *ctx)
8199 {
8200     gen_evsel(ctx);
8201 }
8202
8203 static void gen_evsel1(DisasContext *ctx)
8204 {
8205     gen_evsel(ctx);
8206 }
8207
8208 static void gen_evsel2(DisasContext *ctx)
8209 {
8210     gen_evsel(ctx);
8211 }
8212
8213 static void gen_evsel3(DisasContext *ctx)
8214 {
8215     gen_evsel(ctx);
8216 }
8217
8218 /* Multiply */
8219
8220 static inline void gen_evmwumi(DisasContext *ctx)
8221 {
8222     TCGv_i64 t0, t1;
8223
8224     if (unlikely(!ctx->spe_enabled)) {
8225         gen_exception(ctx, POWERPC_EXCP_SPEU);
8226         return;
8227     }
8228
8229     t0 = tcg_temp_new_i64();
8230     t1 = tcg_temp_new_i64();
8231
8232     /* t0 := rA; t1 := rB */
8233 #if defined(TARGET_PPC64)
8234     tcg_gen_ext32u_tl(t0, cpu_gpr[rA(ctx->opcode)]);
8235     tcg_gen_ext32u_tl(t1, cpu_gpr[rB(ctx->opcode)]);
8236 #else
8237     tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
8238     tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
8239 #endif
8240
8241     tcg_gen_mul_i64(t0, t0, t1);  /* t0 := rA * rB */
8242
8243     gen_store_gpr64(rD(ctx->opcode), t0); /* rD := t0 */
8244
8245     tcg_temp_free_i64(t0);
8246     tcg_temp_free_i64(t1);
8247 }
8248
8249 static inline void gen_evmwumia(DisasContext *ctx)
8250 {
8251     TCGv_i64 tmp;
8252
8253     if (unlikely(!ctx->spe_enabled)) {
8254         gen_exception(ctx, POWERPC_EXCP_SPEU);
8255         return;
8256     }
8257
8258     gen_evmwumi(ctx);            /* rD := rA * rB */
8259
8260     tmp = tcg_temp_new_i64();
8261
8262     /* acc := rD */
8263     gen_load_gpr64(tmp, rD(ctx->opcode));
8264     tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
8265     tcg_temp_free_i64(tmp);
8266 }
8267
8268 static inline void gen_evmwumiaa(DisasContext *ctx)
8269 {
8270     TCGv_i64 acc;
8271     TCGv_i64 tmp;
8272
8273     if (unlikely(!ctx->spe_enabled)) {
8274         gen_exception(ctx, POWERPC_EXCP_SPEU);
8275         return;
8276     }
8277
8278     gen_evmwumi(ctx);           /* rD := rA * rB */
8279
8280     acc = tcg_temp_new_i64();
8281     tmp = tcg_temp_new_i64();
8282
8283     /* tmp := rD */
8284     gen_load_gpr64(tmp, rD(ctx->opcode));
8285
8286     /* Load acc */
8287     tcg_gen_ld_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
8288
8289     /* acc := tmp + acc */
8290     tcg_gen_add_i64(acc, acc, tmp);
8291
8292     /* Store acc */
8293     tcg_gen_st_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
8294
8295     /* rD := acc */
8296     gen_store_gpr64(rD(ctx->opcode), acc);
8297
8298     tcg_temp_free_i64(acc);
8299     tcg_temp_free_i64(tmp);
8300 }
8301
8302 static inline void gen_evmwsmi(DisasContext *ctx)
8303 {
8304     TCGv_i64 t0, t1;
8305
8306     if (unlikely(!ctx->spe_enabled)) {
8307         gen_exception(ctx, POWERPC_EXCP_SPEU);
8308         return;
8309     }
8310
8311     t0 = tcg_temp_new_i64();
8312     t1 = tcg_temp_new_i64();
8313
8314     /* t0 := rA; t1 := rB */
8315 #if defined(TARGET_PPC64)
8316     tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]);
8317     tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]);
8318 #else
8319     tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
8320     tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
8321 #endif
8322
8323     tcg_gen_mul_i64(t0, t0, t1);  /* t0 := rA * rB */
8324
8325     gen_store_gpr64(rD(ctx->opcode), t0); /* rD := t0 */
8326
8327     tcg_temp_free_i64(t0);
8328     tcg_temp_free_i64(t1);
8329 }
8330
8331 static inline void gen_evmwsmia(DisasContext *ctx)
8332 {
8333     TCGv_i64 tmp;
8334
8335     gen_evmwsmi(ctx);            /* rD := rA * rB */
8336
8337     tmp = tcg_temp_new_i64();
8338
8339     /* acc := rD */
8340     gen_load_gpr64(tmp, rD(ctx->opcode));
8341     tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
8342
8343     tcg_temp_free_i64(tmp);
8344 }
8345
8346 static inline void gen_evmwsmiaa(DisasContext *ctx)
8347 {
8348     TCGv_i64 acc = tcg_temp_new_i64();
8349     TCGv_i64 tmp = tcg_temp_new_i64();
8350
8351     gen_evmwsmi(ctx);           /* rD := rA * rB */
8352
8353     acc = tcg_temp_new_i64();
8354     tmp = tcg_temp_new_i64();
8355
8356     /* tmp := rD */
8357     gen_load_gpr64(tmp, rD(ctx->opcode));
8358
8359     /* Load acc */
8360     tcg_gen_ld_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
8361
8362     /* acc := tmp + acc */
8363     tcg_gen_add_i64(acc, acc, tmp);
8364
8365     /* Store acc */
8366     tcg_gen_st_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
8367
8368     /* rD := acc */
8369     gen_store_gpr64(rD(ctx->opcode), acc);
8370
8371     tcg_temp_free_i64(acc);
8372     tcg_temp_free_i64(tmp);
8373 }
8374
8375 GEN_SPE(evaddw,      speundef,    0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
8376 GEN_SPE(evaddiw,     speundef,    0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
8377 GEN_SPE(evsubfw,     speundef,    0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
8378 GEN_SPE(evsubifw,    speundef,    0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
8379 GEN_SPE(evabs,       evneg,       0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
8380 GEN_SPE(evextsb,     evextsh,     0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
8381 GEN_SPE(evrndw,      evcntlzw,    0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
8382 GEN_SPE(evcntlsw,    brinc,       0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE); //
8383 GEN_SPE(evmra,       speundef,    0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE);
8384 GEN_SPE(speundef,    evand,       0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE); ////
8385 GEN_SPE(evandc,      speundef,    0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
8386 GEN_SPE(evxor,       evor,        0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
8387 GEN_SPE(evnor,       eveqv,       0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
8388 GEN_SPE(evmwumi,     evmwsmi,     0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE);
8389 GEN_SPE(evmwumia,    evmwsmia,    0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE);
8390 GEN_SPE(evmwumiaa,   evmwsmiaa,   0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE);
8391 GEN_SPE(speundef,    evorc,       0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE); ////
8392 GEN_SPE(evnand,      speundef,    0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
8393 GEN_SPE(evsrwu,      evsrws,      0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
8394 GEN_SPE(evsrwiu,     evsrwis,     0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE);
8395 GEN_SPE(evslw,       speundef,    0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
8396 GEN_SPE(evslwi,      speundef,    0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
8397 GEN_SPE(evrlw,       evsplati,    0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE); //
8398 GEN_SPE(evrlwi,      evsplatfi,   0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE);
8399 GEN_SPE(evmergehi,   evmergelo,   0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
8400 GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
8401 GEN_SPE(evcmpgtu,    evcmpgts,    0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE); ////
8402 GEN_SPE(evcmpltu,    evcmplts,    0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE); ////
8403 GEN_SPE(evcmpeq,     speundef,    0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE); ////
8404
8405 /* SPE load and stores */
8406 static inline void gen_addr_spe_imm_index(DisasContext *ctx, TCGv EA, int sh)
8407 {
8408     target_ulong uimm = rB(ctx->opcode);
8409
8410     if (rA(ctx->opcode) == 0) {
8411         tcg_gen_movi_tl(EA, uimm << sh);
8412     } else {
8413         tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], uimm << sh);
8414         if (NARROW_MODE(ctx)) {
8415             tcg_gen_ext32u_tl(EA, EA);
8416         }
8417     }
8418 }
8419
8420 static inline void gen_op_evldd(DisasContext *ctx, TCGv addr)
8421 {
8422 #if defined(TARGET_PPC64)
8423     gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], addr);
8424 #else
8425     TCGv_i64 t0 = tcg_temp_new_i64();
8426     gen_qemu_ld64(ctx, t0, addr);
8427     tcg_gen_trunc_i64_i32(cpu_gpr[rD(ctx->opcode)], t0);
8428     tcg_gen_shri_i64(t0, t0, 32);
8429     tcg_gen_trunc_i64_i32(cpu_gprh[rD(ctx->opcode)], t0);
8430     tcg_temp_free_i64(t0);
8431 #endif
8432 }
8433
8434 static inline void gen_op_evldw(DisasContext *ctx, TCGv addr)
8435 {
8436 #if defined(TARGET_PPC64)
8437     TCGv t0 = tcg_temp_new();
8438     gen_qemu_ld32u(ctx, t0, addr);
8439     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
8440     gen_addr_add(ctx, addr, addr, 4);
8441     gen_qemu_ld32u(ctx, t0, addr);
8442     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8443     tcg_temp_free(t0);
8444 #else
8445     gen_qemu_ld32u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
8446     gen_addr_add(ctx, addr, addr, 4);
8447     gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
8448 #endif
8449 }
8450
8451 static inline void gen_op_evldh(DisasContext *ctx, TCGv addr)
8452 {
8453     TCGv t0 = tcg_temp_new();
8454 #if defined(TARGET_PPC64)
8455     gen_qemu_ld16u(ctx, t0, addr);
8456     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
8457     gen_addr_add(ctx, addr, addr, 2);
8458     gen_qemu_ld16u(ctx, t0, addr);
8459     tcg_gen_shli_tl(t0, t0, 32);
8460     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8461     gen_addr_add(ctx, addr, addr, 2);
8462     gen_qemu_ld16u(ctx, t0, addr);
8463     tcg_gen_shli_tl(t0, t0, 16);
8464     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8465     gen_addr_add(ctx, addr, addr, 2);
8466     gen_qemu_ld16u(ctx, t0, addr);
8467     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8468 #else
8469     gen_qemu_ld16u(ctx, t0, addr);
8470     tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
8471     gen_addr_add(ctx, addr, addr, 2);
8472     gen_qemu_ld16u(ctx, t0, addr);
8473     tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
8474     gen_addr_add(ctx, addr, addr, 2);
8475     gen_qemu_ld16u(ctx, t0, addr);
8476     tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
8477     gen_addr_add(ctx, addr, addr, 2);
8478     gen_qemu_ld16u(ctx, t0, addr);
8479     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8480 #endif
8481     tcg_temp_free(t0);
8482 }
8483
8484 static inline void gen_op_evlhhesplat(DisasContext *ctx, TCGv addr)
8485 {
8486     TCGv t0 = tcg_temp_new();
8487     gen_qemu_ld16u(ctx, t0, addr);
8488 #if defined(TARGET_PPC64)
8489     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
8490     tcg_gen_shli_tl(t0, t0, 16);
8491     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8492 #else
8493     tcg_gen_shli_tl(t0, t0, 16);
8494     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
8495     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
8496 #endif
8497     tcg_temp_free(t0);
8498 }
8499
8500 static inline void gen_op_evlhhousplat(DisasContext *ctx, TCGv addr)
8501 {
8502     TCGv t0 = tcg_temp_new();
8503     gen_qemu_ld16u(ctx, t0, addr);
8504 #if defined(TARGET_PPC64)
8505     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
8506     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8507 #else
8508     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
8509     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
8510 #endif
8511     tcg_temp_free(t0);
8512 }
8513
8514 static inline void gen_op_evlhhossplat(DisasContext *ctx, TCGv addr)
8515 {
8516     TCGv t0 = tcg_temp_new();
8517     gen_qemu_ld16s(ctx, t0, addr);
8518 #if defined(TARGET_PPC64)
8519     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
8520     tcg_gen_ext32u_tl(t0, t0);
8521     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8522 #else
8523     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
8524     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
8525 #endif
8526     tcg_temp_free(t0);
8527 }
8528
8529 static inline void gen_op_evlwhe(DisasContext *ctx, TCGv addr)
8530 {
8531     TCGv t0 = tcg_temp_new();
8532 #if defined(TARGET_PPC64)
8533     gen_qemu_ld16u(ctx, t0, addr);
8534     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
8535     gen_addr_add(ctx, addr, addr, 2);
8536     gen_qemu_ld16u(ctx, t0, addr);
8537     tcg_gen_shli_tl(t0, t0, 16);
8538     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8539 #else
8540     gen_qemu_ld16u(ctx, t0, addr);
8541     tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
8542     gen_addr_add(ctx, addr, addr, 2);
8543     gen_qemu_ld16u(ctx, t0, addr);
8544     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
8545 #endif
8546     tcg_temp_free(t0);
8547 }
8548
8549 static inline void gen_op_evlwhou(DisasContext *ctx, TCGv addr)
8550 {
8551 #if defined(TARGET_PPC64)
8552     TCGv t0 = tcg_temp_new();
8553     gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
8554     gen_addr_add(ctx, addr, addr, 2);
8555     gen_qemu_ld16u(ctx, t0, addr);
8556     tcg_gen_shli_tl(t0, t0, 32);
8557     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8558     tcg_temp_free(t0);
8559 #else
8560     gen_qemu_ld16u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
8561     gen_addr_add(ctx, addr, addr, 2);
8562     gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
8563 #endif
8564 }
8565
8566 static inline void gen_op_evlwhos(DisasContext *ctx, TCGv addr)
8567 {
8568 #if defined(TARGET_PPC64)
8569     TCGv t0 = tcg_temp_new();
8570     gen_qemu_ld16s(ctx, t0, addr);
8571     tcg_gen_ext32u_tl(cpu_gpr[rD(ctx->opcode)], t0);
8572     gen_addr_add(ctx, addr, addr, 2);
8573     gen_qemu_ld16s(ctx, t0, addr);
8574     tcg_gen_shli_tl(t0, t0, 32);
8575     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8576     tcg_temp_free(t0);
8577 #else
8578     gen_qemu_ld16s(ctx, cpu_gprh[rD(ctx->opcode)], addr);
8579     gen_addr_add(ctx, addr, addr, 2);
8580     gen_qemu_ld16s(ctx, cpu_gpr[rD(ctx->opcode)], addr);
8581 #endif
8582 }
8583
8584 static inline void gen_op_evlwwsplat(DisasContext *ctx, TCGv addr)
8585 {
8586     TCGv t0 = tcg_temp_new();
8587     gen_qemu_ld32u(ctx, t0, addr);
8588 #if defined(TARGET_PPC64)
8589     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
8590     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8591 #else
8592     tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
8593     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
8594 #endif
8595     tcg_temp_free(t0);
8596 }
8597
8598 static inline void gen_op_evlwhsplat(DisasContext *ctx, TCGv addr)
8599 {
8600     TCGv t0 = tcg_temp_new();
8601 #if defined(TARGET_PPC64)
8602     gen_qemu_ld16u(ctx, t0, addr);
8603     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
8604     tcg_gen_shli_tl(t0, t0, 32);
8605     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8606     gen_addr_add(ctx, addr, addr, 2);
8607     gen_qemu_ld16u(ctx, t0, addr);
8608     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8609     tcg_gen_shli_tl(t0, t0, 16);
8610     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
8611 #else
8612     gen_qemu_ld16u(ctx, t0, addr);
8613     tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
8614     tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
8615     gen_addr_add(ctx, addr, addr, 2);
8616     gen_qemu_ld16u(ctx, t0, addr);
8617     tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
8618     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
8619 #endif
8620     tcg_temp_free(t0);
8621 }
8622
8623 static inline void gen_op_evstdd(DisasContext *ctx, TCGv addr)
8624 {
8625 #if defined(TARGET_PPC64)
8626     gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], addr);
8627 #else
8628     TCGv_i64 t0 = tcg_temp_new_i64();
8629     tcg_gen_concat_i32_i64(t0, cpu_gpr[rS(ctx->opcode)], cpu_gprh[rS(ctx->opcode)]);
8630     gen_qemu_st64(ctx, t0, addr);
8631     tcg_temp_free_i64(t0);
8632 #endif
8633 }
8634
8635 static inline void gen_op_evstdw(DisasContext *ctx, TCGv addr)
8636 {
8637 #if defined(TARGET_PPC64)
8638     TCGv t0 = tcg_temp_new();
8639     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
8640     gen_qemu_st32(ctx, t0, addr);
8641     tcg_temp_free(t0);
8642 #else
8643     gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
8644 #endif
8645     gen_addr_add(ctx, addr, addr, 4);
8646     gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
8647 }
8648
8649 static inline void gen_op_evstdh(DisasContext *ctx, TCGv addr)
8650 {
8651     TCGv t0 = tcg_temp_new();
8652 #if defined(TARGET_PPC64)
8653     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
8654 #else
8655     tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
8656 #endif
8657     gen_qemu_st16(ctx, t0, addr);
8658     gen_addr_add(ctx, addr, addr, 2);
8659 #if defined(TARGET_PPC64)
8660     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
8661     gen_qemu_st16(ctx, t0, addr);
8662 #else
8663     gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
8664 #endif
8665     gen_addr_add(ctx, addr, addr, 2);
8666     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
8667     gen_qemu_st16(ctx, t0, addr);
8668     tcg_temp_free(t0);
8669     gen_addr_add(ctx, addr, addr, 2);
8670     gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
8671 }
8672
8673 static inline void gen_op_evstwhe(DisasContext *ctx, TCGv addr)
8674 {
8675     TCGv t0 = tcg_temp_new();
8676 #if defined(TARGET_PPC64)
8677     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
8678 #else
8679     tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
8680 #endif
8681     gen_qemu_st16(ctx, t0, addr);
8682     gen_addr_add(ctx, addr, addr, 2);
8683     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
8684     gen_qemu_st16(ctx, t0, addr);
8685     tcg_temp_free(t0);
8686 }
8687
8688 static inline void gen_op_evstwho(DisasContext *ctx, TCGv addr)
8689 {
8690 #if defined(TARGET_PPC64)
8691     TCGv t0 = tcg_temp_new();
8692     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
8693     gen_qemu_st16(ctx, t0, addr);
8694     tcg_temp_free(t0);
8695 #else
8696     gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
8697 #endif
8698     gen_addr_add(ctx, addr, addr, 2);
8699     gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
8700 }
8701
8702 static inline void gen_op_evstwwe(DisasContext *ctx, TCGv addr)
8703 {
8704 #if defined(TARGET_PPC64)
8705     TCGv t0 = tcg_temp_new();
8706     tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
8707     gen_qemu_st32(ctx, t0, addr);
8708     tcg_temp_free(t0);
8709 #else
8710     gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
8711 #endif
8712 }
8713
8714 static inline void gen_op_evstwwo(DisasContext *ctx, TCGv addr)
8715 {
8716     gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
8717 }
8718
8719 #define GEN_SPEOP_LDST(name, opc2, sh)                                        \
8720 static void glue(gen_, name)(DisasContext *ctx)                                       \
8721 {                                                                             \
8722     TCGv t0;                                                                  \
8723     if (unlikely(!ctx->spe_enabled)) {                                        \
8724         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8725         return;                                                               \
8726     }                                                                         \
8727     gen_set_access_type(ctx, ACCESS_INT);                                     \
8728     t0 = tcg_temp_new();                                                      \
8729     if (Rc(ctx->opcode)) {                                                    \
8730         gen_addr_spe_imm_index(ctx, t0, sh);                                  \
8731     } else {                                                                  \
8732         gen_addr_reg_index(ctx, t0);                                          \
8733     }                                                                         \
8734     gen_op_##name(ctx, t0);                                                   \
8735     tcg_temp_free(t0);                                                        \
8736 }
8737
8738 GEN_SPEOP_LDST(evldd, 0x00, 3);
8739 GEN_SPEOP_LDST(evldw, 0x01, 3);
8740 GEN_SPEOP_LDST(evldh, 0x02, 3);
8741 GEN_SPEOP_LDST(evlhhesplat, 0x04, 1);
8742 GEN_SPEOP_LDST(evlhhousplat, 0x06, 1);
8743 GEN_SPEOP_LDST(evlhhossplat, 0x07, 1);
8744 GEN_SPEOP_LDST(evlwhe, 0x08, 2);
8745 GEN_SPEOP_LDST(evlwhou, 0x0A, 2);
8746 GEN_SPEOP_LDST(evlwhos, 0x0B, 2);
8747 GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2);
8748 GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2);
8749
8750 GEN_SPEOP_LDST(evstdd, 0x10, 3);
8751 GEN_SPEOP_LDST(evstdw, 0x11, 3);
8752 GEN_SPEOP_LDST(evstdh, 0x12, 3);
8753 GEN_SPEOP_LDST(evstwhe, 0x18, 2);
8754 GEN_SPEOP_LDST(evstwho, 0x1A, 2);
8755 GEN_SPEOP_LDST(evstwwe, 0x1C, 2);
8756 GEN_SPEOP_LDST(evstwwo, 0x1E, 2);
8757
8758 /* Multiply and add - TODO */
8759 #if 0
8760 GEN_SPE(speundef,       evmhessf,      0x01, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);//
8761 GEN_SPE(speundef,       evmhossf,      0x03, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8762 GEN_SPE(evmheumi,       evmhesmi,      0x04, 0x10, 0x00000000, 0x00000000, PPC_SPE);
8763 GEN_SPE(speundef,       evmhesmf,      0x05, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8764 GEN_SPE(evmhoumi,       evmhosmi,      0x06, 0x10, 0x00000000, 0x00000000, PPC_SPE);
8765 GEN_SPE(speundef,       evmhosmf,      0x07, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8766 GEN_SPE(speundef,       evmhessfa,     0x11, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8767 GEN_SPE(speundef,       evmhossfa,     0x13, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8768 GEN_SPE(evmheumia,      evmhesmia,     0x14, 0x10, 0x00000000, 0x00000000, PPC_SPE);
8769 GEN_SPE(speundef,       evmhesmfa,     0x15, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8770 GEN_SPE(evmhoumia,      evmhosmia,     0x16, 0x10, 0x00000000, 0x00000000, PPC_SPE);
8771 GEN_SPE(speundef,       evmhosmfa,     0x17, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8772
8773 GEN_SPE(speundef,       evmwhssf,      0x03, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8774 GEN_SPE(evmwlumi,       speundef,      0x04, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE);
8775 GEN_SPE(evmwhumi,       evmwhsmi,      0x06, 0x11, 0x00000000, 0x00000000, PPC_SPE);
8776 GEN_SPE(speundef,       evmwhsmf,      0x07, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8777 GEN_SPE(speundef,       evmwssf,       0x09, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8778 GEN_SPE(speundef,       evmwsmf,       0x0D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8779 GEN_SPE(speundef,       evmwhssfa,     0x13, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8780 GEN_SPE(evmwlumia,      speundef,      0x14, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE);
8781 GEN_SPE(evmwhumia,      evmwhsmia,     0x16, 0x11, 0x00000000, 0x00000000, PPC_SPE);
8782 GEN_SPE(speundef,       evmwhsmfa,     0x17, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8783 GEN_SPE(speundef,       evmwssfa,      0x19, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8784 GEN_SPE(speundef,       evmwsmfa,      0x1D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8785
8786 GEN_SPE(evadduiaaw,     evaddsiaaw,    0x00, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
8787 GEN_SPE(evsubfusiaaw,   evsubfssiaaw,  0x01, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
8788 GEN_SPE(evaddumiaaw,    evaddsmiaaw,   0x04, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
8789 GEN_SPE(evsubfumiaaw,   evsubfsmiaaw,  0x05, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
8790 GEN_SPE(evdivws,        evdivwu,       0x06, 0x13, 0x00000000, 0x00000000, PPC_SPE);
8791
8792 GEN_SPE(evmheusiaaw,    evmhessiaaw,   0x00, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8793 GEN_SPE(speundef,       evmhessfaaw,   0x01, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8794 GEN_SPE(evmhousiaaw,    evmhossiaaw,   0x02, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8795 GEN_SPE(speundef,       evmhossfaaw,   0x03, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8796 GEN_SPE(evmheumiaaw,    evmhesmiaaw,   0x04, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8797 GEN_SPE(speundef,       evmhesmfaaw,   0x05, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8798 GEN_SPE(evmhoumiaaw,    evmhosmiaaw,   0x06, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8799 GEN_SPE(speundef,       evmhosmfaaw,   0x07, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8800 GEN_SPE(evmhegumiaa,    evmhegsmiaa,   0x14, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8801 GEN_SPE(speundef,       evmhegsmfaa,   0x15, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8802 GEN_SPE(evmhogumiaa,    evmhogsmiaa,   0x16, 0x14, 0x00000000, 0x00000000, PPC_SPE);
8803 GEN_SPE(speundef,       evmhogsmfaa,   0x17, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8804
8805 GEN_SPE(evmwlusiaaw,    evmwlssiaaw,   0x00, 0x15, 0x00000000, 0x00000000, PPC_SPE);
8806 GEN_SPE(evmwlumiaaw,    evmwlsmiaaw,   0x04, 0x15, 0x00000000, 0x00000000, PPC_SPE);
8807 GEN_SPE(speundef,       evmwssfaa,     0x09, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8808 GEN_SPE(speundef,       evmwsmfaa,     0x0D, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8809
8810 GEN_SPE(evmheusianw,    evmhessianw,   0x00, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8811 GEN_SPE(speundef,       evmhessfanw,   0x01, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8812 GEN_SPE(evmhousianw,    evmhossianw,   0x02, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8813 GEN_SPE(speundef,       evmhossfanw,   0x03, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8814 GEN_SPE(evmheumianw,    evmhesmianw,   0x04, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8815 GEN_SPE(speundef,       evmhesmfanw,   0x05, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8816 GEN_SPE(evmhoumianw,    evmhosmianw,   0x06, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8817 GEN_SPE(speundef,       evmhosmfanw,   0x07, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8818 GEN_SPE(evmhegumian,    evmhegsmian,   0x14, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8819 GEN_SPE(speundef,       evmhegsmfan,   0x15, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8820 GEN_SPE(evmhigumian,    evmhigsmian,   0x16, 0x16, 0x00000000, 0x00000000, PPC_SPE);
8821 GEN_SPE(speundef,       evmhogsmfan,   0x17, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8822
8823 GEN_SPE(evmwlusianw,    evmwlssianw,   0x00, 0x17, 0x00000000, 0x00000000, PPC_SPE);
8824 GEN_SPE(evmwlumianw,    evmwlsmianw,   0x04, 0x17, 0x00000000, 0x00000000, PPC_SPE);
8825 GEN_SPE(speundef,       evmwssfan,     0x09, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8826 GEN_SPE(evmwumian,      evmwsmian,     0x0C, 0x17, 0x00000000, 0x00000000, PPC_SPE);
8827 GEN_SPE(speundef,       evmwsmfan,     0x0D, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE);
8828 #endif
8829
8830 /***                      SPE floating-point extension                     ***/
8831 #if defined(TARGET_PPC64)
8832 #define GEN_SPEFPUOP_CONV_32_32(name)                                         \
8833 static inline void gen_##name(DisasContext *ctx)                              \
8834 {                                                                             \
8835     TCGv_i32 t0;                                                              \
8836     TCGv t1;                                                                  \
8837     t0 = tcg_temp_new_i32();                                                  \
8838     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]);                       \
8839     gen_helper_##name(t0, cpu_env, t0);                                       \
8840     t1 = tcg_temp_new();                                                      \
8841     tcg_gen_extu_i32_tl(t1, t0);                                              \
8842     tcg_temp_free_i32(t0);                                                    \
8843     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)],       \
8844                     0xFFFFFFFF00000000ULL);                                   \
8845     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1);    \
8846     tcg_temp_free(t1);                                                        \
8847 }
8848 #define GEN_SPEFPUOP_CONV_32_64(name)                                         \
8849 static inline void gen_##name(DisasContext *ctx)                              \
8850 {                                                                             \
8851     TCGv_i32 t0;                                                              \
8852     TCGv t1;                                                                  \
8853     t0 = tcg_temp_new_i32();                                                  \
8854     gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]);                 \
8855     t1 = tcg_temp_new();                                                      \
8856     tcg_gen_extu_i32_tl(t1, t0);                                              \
8857     tcg_temp_free_i32(t0);                                                    \
8858     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)],       \
8859                     0xFFFFFFFF00000000ULL);                                   \
8860     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1);    \
8861     tcg_temp_free(t1);                                                        \
8862 }
8863 #define GEN_SPEFPUOP_CONV_64_32(name)                                         \
8864 static inline void gen_##name(DisasContext *ctx)                              \
8865 {                                                                             \
8866     TCGv_i32 t0 = tcg_temp_new_i32();                                         \
8867     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]);                       \
8868     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);                 \
8869     tcg_temp_free_i32(t0);                                                    \
8870 }
8871 #define GEN_SPEFPUOP_CONV_64_64(name)                                         \
8872 static inline void gen_##name(DisasContext *ctx)                              \
8873 {                                                                             \
8874     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env,                      \
8875                       cpu_gpr[rB(ctx->opcode)]);                              \
8876 }
8877 #define GEN_SPEFPUOP_ARITH2_32_32(name)                                       \
8878 static inline void gen_##name(DisasContext *ctx)                              \
8879 {                                                                             \
8880     TCGv_i32 t0, t1;                                                          \
8881     TCGv_i64 t2;                                                              \
8882     if (unlikely(!ctx->spe_enabled)) {                                        \
8883         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8884         return;                                                               \
8885     }                                                                         \
8886     t0 = tcg_temp_new_i32();                                                  \
8887     t1 = tcg_temp_new_i32();                                                  \
8888     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);                       \
8889     tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);                       \
8890     gen_helper_##name(t0, cpu_env, t0, t1);                                   \
8891     tcg_temp_free_i32(t1);                                                    \
8892     t2 = tcg_temp_new();                                                      \
8893     tcg_gen_extu_i32_tl(t2, t0);                                              \
8894     tcg_temp_free_i32(t0);                                                    \
8895     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)],       \
8896                     0xFFFFFFFF00000000ULL);                                   \
8897     tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2);    \
8898     tcg_temp_free(t2);                                                        \
8899 }
8900 #define GEN_SPEFPUOP_ARITH2_64_64(name)                                       \
8901 static inline void gen_##name(DisasContext *ctx)                              \
8902 {                                                                             \
8903     if (unlikely(!ctx->spe_enabled)) {                                        \
8904         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8905         return;                                                               \
8906     }                                                                         \
8907     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env,                      \
8908                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);    \
8909 }
8910 #define GEN_SPEFPUOP_COMP_32(name)                                            \
8911 static inline void gen_##name(DisasContext *ctx)                              \
8912 {                                                                             \
8913     TCGv_i32 t0, t1;                                                          \
8914     if (unlikely(!ctx->spe_enabled)) {                                        \
8915         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8916         return;                                                               \
8917     }                                                                         \
8918     t0 = tcg_temp_new_i32();                                                  \
8919     t1 = tcg_temp_new_i32();                                                  \
8920     tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);                       \
8921     tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);                       \
8922     gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1);           \
8923     tcg_temp_free_i32(t0);                                                    \
8924     tcg_temp_free_i32(t1);                                                    \
8925 }
8926 #define GEN_SPEFPUOP_COMP_64(name)                                            \
8927 static inline void gen_##name(DisasContext *ctx)                              \
8928 {                                                                             \
8929     if (unlikely(!ctx->spe_enabled)) {                                        \
8930         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8931         return;                                                               \
8932     }                                                                         \
8933     gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env,                    \
8934                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);    \
8935 }
8936 #else
8937 #define GEN_SPEFPUOP_CONV_32_32(name)                                         \
8938 static inline void gen_##name(DisasContext *ctx)                              \
8939 {                                                                             \
8940     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env,                      \
8941                       cpu_gpr[rB(ctx->opcode)]);                              \
8942 }
8943 #define GEN_SPEFPUOP_CONV_32_64(name)                                         \
8944 static inline void gen_##name(DisasContext *ctx)                              \
8945 {                                                                             \
8946     TCGv_i64 t0 = tcg_temp_new_i64();                                         \
8947     gen_load_gpr64(t0, rB(ctx->opcode));                                      \
8948     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);                 \
8949     tcg_temp_free_i64(t0);                                                    \
8950 }
8951 #define GEN_SPEFPUOP_CONV_64_32(name)                                         \
8952 static inline void gen_##name(DisasContext *ctx)                              \
8953 {                                                                             \
8954     TCGv_i64 t0 = tcg_temp_new_i64();                                         \
8955     gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]);                 \
8956     gen_store_gpr64(rD(ctx->opcode), t0);                                     \
8957     tcg_temp_free_i64(t0);                                                    \
8958 }
8959 #define GEN_SPEFPUOP_CONV_64_64(name)                                         \
8960 static inline void gen_##name(DisasContext *ctx)                              \
8961 {                                                                             \
8962     TCGv_i64 t0 = tcg_temp_new_i64();                                         \
8963     gen_load_gpr64(t0, rB(ctx->opcode));                                      \
8964     gen_helper_##name(t0, cpu_env, t0);                                       \
8965     gen_store_gpr64(rD(ctx->opcode), t0);                                     \
8966     tcg_temp_free_i64(t0);                                                    \
8967 }
8968 #define GEN_SPEFPUOP_ARITH2_32_32(name)                                       \
8969 static inline void gen_##name(DisasContext *ctx)                              \
8970 {                                                                             \
8971     if (unlikely(!ctx->spe_enabled)) {                                        \
8972         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8973         return;                                                               \
8974     }                                                                         \
8975     gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env,                      \
8976                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);    \
8977 }
8978 #define GEN_SPEFPUOP_ARITH2_64_64(name)                                       \
8979 static inline void gen_##name(DisasContext *ctx)                              \
8980 {                                                                             \
8981     TCGv_i64 t0, t1;                                                          \
8982     if (unlikely(!ctx->spe_enabled)) {                                        \
8983         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
8984         return;                                                               \
8985     }                                                                         \
8986     t0 = tcg_temp_new_i64();                                                  \
8987     t1 = tcg_temp_new_i64();                                                  \
8988     gen_load_gpr64(t0, rA(ctx->opcode));                                      \
8989     gen_load_gpr64(t1, rB(ctx->opcode));                                      \
8990     gen_helper_##name(t0, cpu_env, t0, t1);                                   \
8991     gen_store_gpr64(rD(ctx->opcode), t0);                                     \
8992     tcg_temp_free_i64(t0);                                                    \
8993     tcg_temp_free_i64(t1);                                                    \
8994 }
8995 #define GEN_SPEFPUOP_COMP_32(name)                                            \
8996 static inline void gen_##name(DisasContext *ctx)                              \
8997 {                                                                             \
8998     if (unlikely(!ctx->spe_enabled)) {                                        \
8999         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
9000         return;                                                               \
9001     }                                                                         \
9002     gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env,                    \
9003                       cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);    \
9004 }
9005 #define GEN_SPEFPUOP_COMP_64(name)                                            \
9006 static inline void gen_##name(DisasContext *ctx)                              \
9007 {                                                                             \
9008     TCGv_i64 t0, t1;                                                          \
9009     if (unlikely(!ctx->spe_enabled)) {                                        \
9010         gen_exception(ctx, POWERPC_EXCP_SPEU);                                \
9011         return;                                                               \
9012     }                                                                         \
9013     t0 = tcg_temp_new_i64();                                                  \
9014     t1 = tcg_temp_new_i64();                                                  \
9015     gen_load_gpr64(t0, rA(ctx->opcode));                                      \
9016     gen_load_gpr64(t1, rB(ctx->opcode));                                      \
9017     gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1);           \
9018     tcg_temp_free_i64(t0);                                                    \
9019     tcg_temp_free_i64(t1);                                                    \
9020 }
9021 #endif
9022
9023 /* Single precision floating-point vectors operations */
9024 /* Arithmetic */
9025 GEN_SPEFPUOP_ARITH2_64_64(evfsadd);
9026 GEN_SPEFPUOP_ARITH2_64_64(evfssub);
9027 GEN_SPEFPUOP_ARITH2_64_64(evfsmul);
9028 GEN_SPEFPUOP_ARITH2_64_64(evfsdiv);
9029 static inline void gen_evfsabs(DisasContext *ctx)
9030 {
9031     if (unlikely(!ctx->spe_enabled)) {
9032         gen_exception(ctx, POWERPC_EXCP_SPEU);
9033         return;
9034     }
9035 #if defined(TARGET_PPC64)
9036     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000080000000LL);
9037 #else
9038     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x80000000);
9039     tcg_gen_andi_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
9040 #endif
9041 }
9042 static inline void gen_evfsnabs(DisasContext *ctx)
9043 {
9044     if (unlikely(!ctx->spe_enabled)) {
9045         gen_exception(ctx, POWERPC_EXCP_SPEU);
9046         return;
9047     }
9048 #if defined(TARGET_PPC64)
9049     tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
9050 #else
9051     tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
9052     tcg_gen_ori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
9053 #endif
9054 }
9055 static inline void gen_evfsneg(DisasContext *ctx)
9056 {
9057     if (unlikely(!ctx->spe_enabled)) {
9058         gen_exception(ctx, POWERPC_EXCP_SPEU);
9059         return;
9060     }
9061 #if defined(TARGET_PPC64)
9062     tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
9063 #else
9064     tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
9065     tcg_gen_xori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
9066 #endif
9067 }
9068
9069 /* Conversion */
9070 GEN_SPEFPUOP_CONV_64_64(evfscfui);
9071 GEN_SPEFPUOP_CONV_64_64(evfscfsi);
9072 GEN_SPEFPUOP_CONV_64_64(evfscfuf);
9073 GEN_SPEFPUOP_CONV_64_64(evfscfsf);
9074 GEN_SPEFPUOP_CONV_64_64(evfsctui);
9075 GEN_SPEFPUOP_CONV_64_64(evfsctsi);
9076 GEN_SPEFPUOP_CONV_64_64(evfsctuf);
9077 GEN_SPEFPUOP_CONV_64_64(evfsctsf);
9078 GEN_SPEFPUOP_CONV_64_64(evfsctuiz);
9079 GEN_SPEFPUOP_CONV_64_64(evfsctsiz);
9080
9081 /* Comparison */
9082 GEN_SPEFPUOP_COMP_64(evfscmpgt);
9083 GEN_SPEFPUOP_COMP_64(evfscmplt);
9084 GEN_SPEFPUOP_COMP_64(evfscmpeq);
9085 GEN_SPEFPUOP_COMP_64(evfststgt);
9086 GEN_SPEFPUOP_COMP_64(evfststlt);
9087 GEN_SPEFPUOP_COMP_64(evfststeq);
9088
9089 /* Opcodes definitions */
9090 GEN_SPE(evfsadd,   evfssub,   0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
9091 GEN_SPE(evfsabs,   evfsnabs,  0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE); //
9092 GEN_SPE(evfsneg,   speundef,  0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9093 GEN_SPE(evfsmul,   evfsdiv,   0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
9094 GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
9095 GEN_SPE(evfscmpeq, speundef,  0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9096 GEN_SPE(evfscfui,  evfscfsi,  0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9097 GEN_SPE(evfscfuf,  evfscfsf,  0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9098 GEN_SPE(evfsctui,  evfsctsi,  0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9099 GEN_SPE(evfsctuf,  evfsctsf,  0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9100 GEN_SPE(evfsctuiz, speundef,  0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9101 GEN_SPE(evfsctsiz, speundef,  0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9102 GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
9103 GEN_SPE(evfststeq, speundef,  0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9104
9105 /* Single precision floating-point operations */
9106 /* Arithmetic */
9107 GEN_SPEFPUOP_ARITH2_32_32(efsadd);
9108 GEN_SPEFPUOP_ARITH2_32_32(efssub);
9109 GEN_SPEFPUOP_ARITH2_32_32(efsmul);
9110 GEN_SPEFPUOP_ARITH2_32_32(efsdiv);
9111 static inline void gen_efsabs(DisasContext *ctx)
9112 {
9113     if (unlikely(!ctx->spe_enabled)) {
9114         gen_exception(ctx, POWERPC_EXCP_SPEU);
9115         return;
9116     }
9117     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], (target_long)~0x80000000LL);
9118 }
9119 static inline void gen_efsnabs(DisasContext *ctx)
9120 {
9121     if (unlikely(!ctx->spe_enabled)) {
9122         gen_exception(ctx, POWERPC_EXCP_SPEU);
9123         return;
9124     }
9125     tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
9126 }
9127 static inline void gen_efsneg(DisasContext *ctx)
9128 {
9129     if (unlikely(!ctx->spe_enabled)) {
9130         gen_exception(ctx, POWERPC_EXCP_SPEU);
9131         return;
9132     }
9133     tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
9134 }
9135
9136 /* Conversion */
9137 GEN_SPEFPUOP_CONV_32_32(efscfui);
9138 GEN_SPEFPUOP_CONV_32_32(efscfsi);
9139 GEN_SPEFPUOP_CONV_32_32(efscfuf);
9140 GEN_SPEFPUOP_CONV_32_32(efscfsf);
9141 GEN_SPEFPUOP_CONV_32_32(efsctui);
9142 GEN_SPEFPUOP_CONV_32_32(efsctsi);
9143 GEN_SPEFPUOP_CONV_32_32(efsctuf);
9144 GEN_SPEFPUOP_CONV_32_32(efsctsf);
9145 GEN_SPEFPUOP_CONV_32_32(efsctuiz);
9146 GEN_SPEFPUOP_CONV_32_32(efsctsiz);
9147 GEN_SPEFPUOP_CONV_32_64(efscfd);
9148
9149 /* Comparison */
9150 GEN_SPEFPUOP_COMP_32(efscmpgt);
9151 GEN_SPEFPUOP_COMP_32(efscmplt);
9152 GEN_SPEFPUOP_COMP_32(efscmpeq);
9153 GEN_SPEFPUOP_COMP_32(efststgt);
9154 GEN_SPEFPUOP_COMP_32(efststlt);
9155 GEN_SPEFPUOP_COMP_32(efststeq);
9156
9157 /* Opcodes definitions */
9158 GEN_SPE(efsadd,   efssub,   0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
9159 GEN_SPE(efsabs,   efsnabs,  0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE); //
9160 GEN_SPE(efsneg,   speundef, 0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9161 GEN_SPE(efsmul,   efsdiv,   0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
9162 GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
9163 GEN_SPE(efscmpeq, efscfd,   0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE); //
9164 GEN_SPE(efscfui,  efscfsi,  0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9165 GEN_SPE(efscfuf,  efscfsf,  0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9166 GEN_SPE(efsctui,  efsctsi,  0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9167 GEN_SPE(efsctuf,  efsctsf,  0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
9168 GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9169 GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9170 GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
9171 GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
9172
9173 /* Double precision floating-point operations */
9174 /* Arithmetic */
9175 GEN_SPEFPUOP_ARITH2_64_64(efdadd);
9176 GEN_SPEFPUOP_ARITH2_64_64(efdsub);
9177 GEN_SPEFPUOP_ARITH2_64_64(efdmul);
9178 GEN_SPEFPUOP_ARITH2_64_64(efddiv);
9179 static inline void gen_efdabs(DisasContext *ctx)
9180 {
9181     if (unlikely(!ctx->spe_enabled)) {
9182         gen_exception(ctx, POWERPC_EXCP_SPEU);
9183         return;
9184     }
9185 #if defined(TARGET_PPC64)
9186     tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000000000000LL);
9187 #else
9188     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
9189     tcg_gen_andi_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
9190 #endif
9191 }
9192 static inline void gen_efdnabs(DisasContext *ctx)
9193 {
9194     if (unlikely(!ctx->spe_enabled)) {
9195         gen_exception(ctx, POWERPC_EXCP_SPEU);
9196         return;
9197     }
9198 #if defined(TARGET_PPC64)
9199     tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
9200 #else
9201     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
9202     tcg_gen_ori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
9203 #endif
9204 }
9205 static inline void gen_efdneg(DisasContext *ctx)
9206 {
9207     if (unlikely(!ctx->spe_enabled)) {
9208         gen_exception(ctx, POWERPC_EXCP_SPEU);
9209         return;
9210     }
9211 #if defined(TARGET_PPC64)
9212     tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
9213 #else
9214     tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
9215     tcg_gen_xori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
9216 #endif
9217 }
9218
9219 /* Conversion */
9220 GEN_SPEFPUOP_CONV_64_32(efdcfui);
9221 GEN_SPEFPUOP_CONV_64_32(efdcfsi);
9222 GEN_SPEFPUOP_CONV_64_32(efdcfuf);
9223 GEN_SPEFPUOP_CONV_64_32(efdcfsf);
9224 GEN_SPEFPUOP_CONV_32_64(efdctui);
9225 GEN_SPEFPUOP_CONV_32_64(efdctsi);
9226 GEN_SPEFPUOP_CONV_32_64(efdctuf);
9227 GEN_SPEFPUOP_CONV_32_64(efdctsf);
9228 GEN_SPEFPUOP_CONV_32_64(efdctuiz);
9229 GEN_SPEFPUOP_CONV_32_64(efdctsiz);
9230 GEN_SPEFPUOP_CONV_64_32(efdcfs);
9231 GEN_SPEFPUOP_CONV_64_64(efdcfuid);
9232 GEN_SPEFPUOP_CONV_64_64(efdcfsid);
9233 GEN_SPEFPUOP_CONV_64_64(efdctuidz);
9234 GEN_SPEFPUOP_CONV_64_64(efdctsidz);
9235
9236 /* Comparison */
9237 GEN_SPEFPUOP_COMP_64(efdcmpgt);
9238 GEN_SPEFPUOP_COMP_64(efdcmplt);
9239 GEN_SPEFPUOP_COMP_64(efdcmpeq);
9240 GEN_SPEFPUOP_COMP_64(efdtstgt);
9241 GEN_SPEFPUOP_COMP_64(efdtstlt);
9242 GEN_SPEFPUOP_COMP_64(efdtsteq);
9243
9244 /* Opcodes definitions */
9245 GEN_SPE(efdadd,    efdsub,    0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE); //
9246 GEN_SPE(efdcfuid,  efdcfsid,  0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9247 GEN_SPE(efdabs,    efdnabs,   0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE); //
9248 GEN_SPE(efdneg,    speundef,  0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
9249 GEN_SPE(efdmul,    efddiv,    0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE); //
9250 GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9251 GEN_SPE(efdcmpgt,  efdcmplt,  0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE); //
9252 GEN_SPE(efdcmpeq,  efdcfs,    0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE); //
9253 GEN_SPE(efdcfui,   efdcfsi,   0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9254 GEN_SPE(efdcfuf,   efdcfsf,   0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9255 GEN_SPE(efdctui,   efdctsi,   0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9256 GEN_SPE(efdctuf,   efdctsf,   0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
9257 GEN_SPE(efdctuiz,  speundef,  0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
9258 GEN_SPE(efdctsiz,  speundef,  0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
9259 GEN_SPE(efdtstgt,  efdtstlt,  0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE); //
9260 GEN_SPE(efdtsteq,  speundef,  0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
9261
9262 static opcode_t opcodes[] = {
9263 GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE),
9264 GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER),
9265 GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
9266 GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER),
9267 GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
9268 GEN_HANDLER_E(cmpb, 0x1F, 0x1C, 0x0F, 0x00000001, PPC_NONE, PPC2_ISA205),
9269 GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL),
9270 GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9271 GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9272 GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9273 GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9274 GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER),
9275 GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER),
9276 GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER),
9277 GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER),
9278 GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9279 #if defined(TARGET_PPC64)
9280 GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B),
9281 #endif
9282 GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER),
9283 GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER),
9284 GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9285 GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9286 GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9287 GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER),
9288 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER),
9289 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER),
9290 GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9291 GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9292 GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9293 GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9294 GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB),
9295 GEN_HANDLER(popcntw, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD),
9296 GEN_HANDLER_E(prtyw, 0x1F, 0x1A, 0x04, 0x0000F801, PPC_NONE, PPC2_ISA205),
9297 #if defined(TARGET_PPC64)
9298 GEN_HANDLER(popcntd, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD),
9299 GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B),
9300 GEN_HANDLER_E(prtyd, 0x1F, 0x1A, 0x05, 0x0000F801, PPC_NONE, PPC2_ISA205),
9301 #endif
9302 GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9303 GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9304 GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9305 GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER),
9306 GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER),
9307 GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER),
9308 GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER),
9309 #if defined(TARGET_PPC64)
9310 GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B),
9311 GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B),
9312 GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B),
9313 GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B),
9314 GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B),
9315 #endif
9316 GEN_HANDLER(frsqrtes, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES),
9317 GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT),
9318 GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT),
9319 GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT),
9320 GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT),
9321 GEN_HANDLER(fabs, 0x3F, 0x08, 0x08, 0x001F0000, PPC_FLOAT),
9322 GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT),
9323 GEN_HANDLER(fnabs, 0x3F, 0x08, 0x04, 0x001F0000, PPC_FLOAT),
9324 GEN_HANDLER(fneg, 0x3F, 0x08, 0x01, 0x001F0000, PPC_FLOAT),
9325 GEN_HANDLER_E(fcpsgn, 0x3F, 0x08, 0x00, 0x00000000, PPC_NONE, PPC2_ISA205),
9326 GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT),
9327 GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT),
9328 GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT),
9329 GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT),
9330 GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x00000000, PPC_FLOAT),
9331 GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006e0800, PPC_FLOAT),
9332 #if defined(TARGET_PPC64)
9333 GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B),
9334 GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX),
9335 GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B),
9336 #endif
9337 GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9338 GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
9339 GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING),
9340 GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING),
9341 GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING),
9342 GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING),
9343 GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO),
9344 GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM),
9345 GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES),
9346 GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES),
9347 #if defined(TARGET_PPC64)
9348 GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B),
9349 GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B),
9350 #endif
9351 GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC),
9352 GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT),
9353 GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
9354 GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
9355 GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW),
9356 GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW),
9357 GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER),
9358 GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW),
9359 #if defined(TARGET_PPC64)
9360 GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B),
9361 GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H),
9362 #endif
9363 GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW),
9364 GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW),
9365 GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
9366 #if defined(TARGET_PPC64)
9367 GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B),
9368 GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B),
9369 #endif
9370 GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC),
9371 GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC),
9372 GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC),
9373 GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC),
9374 GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB),
9375 GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC),
9376 #if defined(TARGET_PPC64)
9377 GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B),
9378 #endif
9379 GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC),
9380 GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC),
9381 GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE),
9382 GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE),
9383 GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE),
9384 GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE),
9385 GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE),
9386 GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ),
9387 GEN_HANDLER(dst, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC),
9388 GEN_HANDLER(dstst, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC),
9389 GEN_HANDLER(dss, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC),
9390 GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI),
9391 GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA),
9392 GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT),
9393 GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT),
9394 GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT),
9395 GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT),
9396 #if defined(TARGET_PPC64)
9397 GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B),
9398 GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
9399              PPC_SEGMENT_64B),
9400 GEN_HANDLER2(mtsr_64b, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B),
9401 GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
9402              PPC_SEGMENT_64B),
9403 GEN_HANDLER2(slbmte, "slbmte", 0x1F, 0x12, 0x0C, 0x001F0001, PPC_SEGMENT_64B),
9404 GEN_HANDLER2(slbmfee, "slbmfee", 0x1F, 0x13, 0x1C, 0x001F0001, PPC_SEGMENT_64B),
9405 GEN_HANDLER2(slbmfev, "slbmfev", 0x1F, 0x13, 0x1A, 0x001F0001, PPC_SEGMENT_64B),
9406 #endif
9407 GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA),
9408 GEN_HANDLER(tlbiel, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE),
9409 GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE),
9410 GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC),
9411 #if defined(TARGET_PPC64)
9412 GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI),
9413 GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI),
9414 #endif
9415 GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN),
9416 GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN),
9417 GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR),
9418 GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR),
9419 GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR),
9420 GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR),
9421 GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR),
9422 GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR),
9423 GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR),
9424 GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR),
9425 GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR),
9426 GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
9427 GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR),
9428 GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR),
9429 GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR),
9430 GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR),
9431 GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR),
9432 GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR),
9433 GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR),
9434 GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
9435 GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR),
9436 GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR),
9437 GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR),
9438 GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR),
9439 GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR),
9440 GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR),
9441 GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR),
9442 GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR),
9443 GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR),
9444 GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR),
9445 GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR),
9446 GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR),
9447 GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR),
9448 GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR),
9449 GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR),
9450 GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR),
9451 GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC),
9452 GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC),
9453 GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC),
9454 GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB),
9455 GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB),
9456 GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB),
9457 GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB),
9458 GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER),
9459 GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER),
9460 GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER),
9461 GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER),
9462 GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER),
9463 GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER),
9464 GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
9465 GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
9466 GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2),
9467 GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2),
9468 GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
9469 GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
9470 GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2),
9471 GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2),
9472 GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI),
9473 GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA),
9474 GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR),
9475 GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR),
9476 GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX),
9477 GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX),
9478 GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX),
9479 GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX),
9480 GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON),
9481 GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON),
9482 GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT),
9483 GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON),
9484 GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON),
9485 GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP),
9486 GEN_HANDLER_E(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE, PPC2_BOOKE206),
9487 GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI),
9488 GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI),
9489 GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB),
9490 GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB),
9491 GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB),
9492 GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE),
9493 GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE),
9494 GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE),
9495 GEN_HANDLER2_E(tlbre_booke206, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
9496                PPC_NONE, PPC2_BOOKE206),
9497 GEN_HANDLER2_E(tlbsx_booke206, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
9498                PPC_NONE, PPC2_BOOKE206),
9499 GEN_HANDLER2_E(tlbwe_booke206, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
9500                PPC_NONE, PPC2_BOOKE206),
9501 GEN_HANDLER2_E(tlbivax_booke206, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
9502                PPC_NONE, PPC2_BOOKE206),
9503 GEN_HANDLER2_E(tlbilx_booke206, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
9504                PPC_NONE, PPC2_BOOKE206),
9505 GEN_HANDLER2_E(msgsnd, "msgsnd", 0x1F, 0x0E, 0x06, 0x03ff0001,
9506                PPC_NONE, PPC2_PRCNTL),
9507 GEN_HANDLER2_E(msgclr, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001,
9508                PPC_NONE, PPC2_PRCNTL),
9509 GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE),
9510 GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE),
9511 GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC),
9512 GEN_HANDLER_E(mbar, 0x1F, 0x16, 0x1a, 0x001FF801,
9513               PPC_BOOKE, PPC2_BOOKE206),
9514 GEN_HANDLER(msync_4xx, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE),
9515 GEN_HANDLER2_E(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
9516                PPC_BOOKE, PPC2_BOOKE206),
9517 GEN_HANDLER(lvsl, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC),
9518 GEN_HANDLER(lvsr, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC),
9519 GEN_HANDLER(mfvscr, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC),
9520 GEN_HANDLER(mtvscr, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC),
9521 GEN_HANDLER(vsldoi, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC),
9522 GEN_HANDLER(vmladduhm, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC),
9523 GEN_HANDLER2(evsel0, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE),
9524 GEN_HANDLER2(evsel1, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE),
9525 GEN_HANDLER2(evsel2, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE),
9526 GEN_HANDLER2(evsel3, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE),
9527
9528 #undef GEN_INT_ARITH_ADD
9529 #undef GEN_INT_ARITH_ADD_CONST
9530 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov)         \
9531 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
9532 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val,                        \
9533                                 add_ca, compute_ca, compute_ov)               \
9534 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
9535 GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
9536 GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
9537 GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
9538 GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
9539 GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
9540 GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
9541 GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
9542 GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
9543 GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
9544 GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
9545
9546 #undef GEN_INT_ARITH_DIVW
9547 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov)                      \
9548 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
9549 GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0),
9550 GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1),
9551 GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0),
9552 GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1),
9553
9554 #if defined(TARGET_PPC64)
9555 #undef GEN_INT_ARITH_DIVD
9556 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov)                      \
9557 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
9558 GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0),
9559 GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1),
9560 GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0),
9561 GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1),
9562
9563 #undef GEN_INT_ARITH_MUL_HELPER
9564 #define GEN_INT_ARITH_MUL_HELPER(name, opc3)                                  \
9565 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
9566 GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00),
9567 GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02),
9568 GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17),
9569 #endif
9570
9571 #undef GEN_INT_ARITH_SUBF
9572 #undef GEN_INT_ARITH_SUBF_CONST
9573 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov)        \
9574 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
9575 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val,                       \
9576                                 add_ca, compute_ca, compute_ov)               \
9577 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
9578 GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
9579 GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
9580 GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
9581 GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
9582 GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
9583 GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
9584 GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
9585 GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
9586 GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
9587 GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
9588
9589 #undef GEN_LOGICAL1
9590 #undef GEN_LOGICAL2
9591 #define GEN_LOGICAL2(name, tcg_op, opc, type)                                 \
9592 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
9593 #define GEN_LOGICAL1(name, tcg_op, opc, type)                                 \
9594 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
9595 GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER),
9596 GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER),
9597 GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER),
9598 GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER),
9599 GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER),
9600 GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER),
9601 GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER),
9602 GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER),
9603 #if defined(TARGET_PPC64)
9604 GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B),
9605 #endif
9606
9607 #if defined(TARGET_PPC64)
9608 #undef GEN_PPC64_R2
9609 #undef GEN_PPC64_R4
9610 #define GEN_PPC64_R2(name, opc1, opc2)                                        \
9611 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
9612 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000,   \
9613              PPC_64B)
9614 #define GEN_PPC64_R4(name, opc1, opc2)                                        \
9615 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
9616 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000,   \
9617              PPC_64B),                                                        \
9618 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000,   \
9619              PPC_64B),                                                        \
9620 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000,   \
9621              PPC_64B)
9622 GEN_PPC64_R4(rldicl, 0x1E, 0x00),
9623 GEN_PPC64_R4(rldicr, 0x1E, 0x02),
9624 GEN_PPC64_R4(rldic, 0x1E, 0x04),
9625 GEN_PPC64_R2(rldcl, 0x1E, 0x08),
9626 GEN_PPC64_R2(rldcr, 0x1E, 0x09),
9627 GEN_PPC64_R4(rldimi, 0x1E, 0x06),
9628 #endif
9629
9630 #undef _GEN_FLOAT_ACB
9631 #undef GEN_FLOAT_ACB
9632 #undef _GEN_FLOAT_AB
9633 #undef GEN_FLOAT_AB
9634 #undef _GEN_FLOAT_AC
9635 #undef GEN_FLOAT_AC
9636 #undef GEN_FLOAT_B
9637 #undef GEN_FLOAT_BS
9638 #define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type)           \
9639 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type)
9640 #define GEN_FLOAT_ACB(name, op2, set_fprf, type)                              \
9641 _GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type),                     \
9642 _GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type)
9643 #define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type)     \
9644 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
9645 #define GEN_FLOAT_AB(name, op2, inval, set_fprf, type)                        \
9646 _GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type),               \
9647 _GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
9648 #define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type)     \
9649 GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
9650 #define GEN_FLOAT_AC(name, op2, inval, set_fprf, type)                        \
9651 _GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type),               \
9652 _GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
9653 #define GEN_FLOAT_B(name, op2, op3, set_fprf, type)                           \
9654 GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type)
9655 #define GEN_FLOAT_BS(name, op1, op2, set_fprf, type)                          \
9656 GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type)
9657
9658 GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT),
9659 GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT),
9660 GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT),
9661 GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT),
9662 GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES),
9663 GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE),
9664 _GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL),
9665 GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT),
9666 GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT),
9667 GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT),
9668 GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT),
9669 GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT),
9670 GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT),
9671 GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT),
9672 GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT),
9673 #if defined(TARGET_PPC64)
9674 GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B),
9675 GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B),
9676 GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B),
9677 #endif
9678 GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT),
9679 GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT),
9680 GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT),
9681 GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT),
9682
9683 #undef GEN_LD
9684 #undef GEN_LDU
9685 #undef GEN_LDUX
9686 #undef GEN_LDX_E
9687 #undef GEN_LDS
9688 #define GEN_LD(name, ldop, opc, type)                                         \
9689 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9690 #define GEN_LDU(name, ldop, opc, type)                                        \
9691 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
9692 #define GEN_LDUX(name, ldop, opc2, opc3, type)                                \
9693 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
9694 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2)                        \
9695 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
9696 #define GEN_LDS(name, ldop, op, type)                                         \
9697 GEN_LD(name, ldop, op | 0x20, type)                                           \
9698 GEN_LDU(name, ldop, op | 0x21, type)                                          \
9699 GEN_LDUX(name, ldop, 0x17, op | 0x01, type)                                   \
9700 GEN_LDX(name, ldop, 0x17, op | 0x00, type)
9701
9702 GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER)
9703 GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER)
9704 GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER)
9705 GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER)
9706 #if defined(TARGET_PPC64)
9707 GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B)
9708 GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B)
9709 GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B)
9710 GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B)
9711 GEN_LDX_E(ldbr, ld64ur, 0x14, 0x10, PPC_NONE, PPC2_DBRX)
9712 #endif
9713 GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER)
9714 GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER)
9715
9716 #undef GEN_ST
9717 #undef GEN_STU
9718 #undef GEN_STUX
9719 #undef GEN_STX_E
9720 #undef GEN_STS
9721 #define GEN_ST(name, stop, opc, type)                                         \
9722 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9723 #define GEN_STU(name, stop, opc, type)                                        \
9724 GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
9725 #define GEN_STUX(name, stop, opc2, opc3, type)                                \
9726 GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
9727 #define GEN_STX_E(name, stop, opc2, opc3, type, type2)                        \
9728 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
9729 #define GEN_STS(name, stop, op, type)                                         \
9730 GEN_ST(name, stop, op | 0x20, type)                                           \
9731 GEN_STU(name, stop, op | 0x21, type)                                          \
9732 GEN_STUX(name, stop, 0x17, op | 0x01, type)                                   \
9733 GEN_STX(name, stop, 0x17, op | 0x00, type)
9734
9735 GEN_STS(stb, st8, 0x06, PPC_INTEGER)
9736 GEN_STS(sth, st16, 0x0C, PPC_INTEGER)
9737 GEN_STS(stw, st32, 0x04, PPC_INTEGER)
9738 #if defined(TARGET_PPC64)
9739 GEN_STUX(std, st64, 0x15, 0x05, PPC_64B)
9740 GEN_STX(std, st64, 0x15, 0x04, PPC_64B)
9741 GEN_STX_E(stdbr, st64r, 0x14, 0x14, PPC_NONE, PPC2_DBRX)
9742 #endif
9743 GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER)
9744 GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER)
9745
9746 #undef GEN_LDF
9747 #undef GEN_LDUF
9748 #undef GEN_LDUXF
9749 #undef GEN_LDXF
9750 #undef GEN_LDFS
9751 #define GEN_LDF(name, ldop, opc, type)                                        \
9752 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9753 #define GEN_LDUF(name, ldop, opc, type)                                       \
9754 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
9755 #define GEN_LDUXF(name, ldop, opc, type)                                      \
9756 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
9757 #define GEN_LDXF(name, ldop, opc2, opc3, type)                                \
9758 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
9759 #define GEN_LDFS(name, ldop, op, type)                                        \
9760 GEN_LDF(name, ldop, op | 0x20, type)                                          \
9761 GEN_LDUF(name, ldop, op | 0x21, type)                                         \
9762 GEN_LDUXF(name, ldop, op | 0x01, type)                                        \
9763 GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
9764
9765 GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT)
9766 GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT)
9767 GEN_HANDLER_E(lfiwax, 0x1f, 0x17, 0x1a, 0x00000001, PPC_NONE, PPC2_ISA205),
9768 GEN_HANDLER_E(lfdp, 0x39, 0xFF, 0xFF, 0x00200003, PPC_NONE, PPC2_ISA205),
9769 GEN_HANDLER_E(lfdpx, 0x1F, 0x17, 0x18, 0x00200001, PPC_NONE, PPC2_ISA205),
9770
9771 #undef GEN_STF
9772 #undef GEN_STUF
9773 #undef GEN_STUXF
9774 #undef GEN_STXF
9775 #undef GEN_STFS
9776 #define GEN_STF(name, stop, opc, type)                                        \
9777 GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
9778 #define GEN_STUF(name, stop, opc, type)                                       \
9779 GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
9780 #define GEN_STUXF(name, stop, opc, type)                                      \
9781 GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
9782 #define GEN_STXF(name, stop, opc2, opc3, type)                                \
9783 GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
9784 #define GEN_STFS(name, stop, op, type)                                        \
9785 GEN_STF(name, stop, op | 0x20, type)                                          \
9786 GEN_STUF(name, stop, op | 0x21, type)                                         \
9787 GEN_STUXF(name, stop, op | 0x01, type)                                        \
9788 GEN_STXF(name, stop, 0x17, op | 0x00, type)
9789
9790 GEN_STFS(stfd, st64, 0x16, PPC_FLOAT)
9791 GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT)
9792 GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX)
9793 GEN_HANDLER_E(stfdp, 0x3D, 0xFF, 0xFF, 0x00200003, PPC_NONE, PPC2_ISA205),
9794 GEN_HANDLER_E(stfdpx, 0x1F, 0x17, 0x1C, 0x00200001, PPC_NONE, PPC2_ISA205),
9795
9796 #undef GEN_CRLOGIC
9797 #define GEN_CRLOGIC(name, tcg_op, opc)                                        \
9798 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
9799 GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08),
9800 GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04),
9801 GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09),
9802 GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07),
9803 GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01),
9804 GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E),
9805 GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D),
9806 GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06),
9807
9808 #undef GEN_MAC_HANDLER
9809 #define GEN_MAC_HANDLER(name, opc2, opc3)                                     \
9810 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
9811 GEN_MAC_HANDLER(macchw, 0x0C, 0x05),
9812 GEN_MAC_HANDLER(macchwo, 0x0C, 0x15),
9813 GEN_MAC_HANDLER(macchws, 0x0C, 0x07),
9814 GEN_MAC_HANDLER(macchwso, 0x0C, 0x17),
9815 GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06),
9816 GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16),
9817 GEN_MAC_HANDLER(macchwu, 0x0C, 0x04),
9818 GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14),
9819 GEN_MAC_HANDLER(machhw, 0x0C, 0x01),
9820 GEN_MAC_HANDLER(machhwo, 0x0C, 0x11),
9821 GEN_MAC_HANDLER(machhws, 0x0C, 0x03),
9822 GEN_MAC_HANDLER(machhwso, 0x0C, 0x13),
9823 GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02),
9824 GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12),
9825 GEN_MAC_HANDLER(machhwu, 0x0C, 0x00),
9826 GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10),
9827 GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D),
9828 GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D),
9829 GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F),
9830 GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F),
9831 GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C),
9832 GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C),
9833 GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E),
9834 GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E),
9835 GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05),
9836 GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15),
9837 GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07),
9838 GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17),
9839 GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01),
9840 GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11),
9841 GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03),
9842 GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13),
9843 GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D),
9844 GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D),
9845 GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F),
9846 GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F),
9847 GEN_MAC_HANDLER(mulchw, 0x08, 0x05),
9848 GEN_MAC_HANDLER(mulchwu, 0x08, 0x04),
9849 GEN_MAC_HANDLER(mulhhw, 0x08, 0x01),
9850 GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00),
9851 GEN_MAC_HANDLER(mullhw, 0x08, 0x0D),
9852 GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C),
9853
9854 #undef GEN_VR_LDX
9855 #undef GEN_VR_STX
9856 #undef GEN_VR_LVE
9857 #undef GEN_VR_STVE
9858 #define GEN_VR_LDX(name, opc2, opc3)                                          \
9859 GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9860 #define GEN_VR_STX(name, opc2, opc3)                                          \
9861 GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9862 #define GEN_VR_LVE(name, opc2, opc3)                                    \
9863     GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9864 #define GEN_VR_STVE(name, opc2, opc3)                                   \
9865     GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9866 GEN_VR_LDX(lvx, 0x07, 0x03),
9867 GEN_VR_LDX(lvxl, 0x07, 0x0B),
9868 GEN_VR_LVE(bx, 0x07, 0x00),
9869 GEN_VR_LVE(hx, 0x07, 0x01),
9870 GEN_VR_LVE(wx, 0x07, 0x02),
9871 GEN_VR_STX(svx, 0x07, 0x07),
9872 GEN_VR_STX(svxl, 0x07, 0x0F),
9873 GEN_VR_STVE(bx, 0x07, 0x04),
9874 GEN_VR_STVE(hx, 0x07, 0x05),
9875 GEN_VR_STVE(wx, 0x07, 0x06),
9876
9877 #undef GEN_VX_LOGICAL
9878 #define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3)                        \
9879 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9880 GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16),
9881 GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17),
9882 GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18),
9883 GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19),
9884 GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20),
9885
9886 #undef GEN_VXFORM
9887 #define GEN_VXFORM(name, opc2, opc3)                                    \
9888 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9889 GEN_VXFORM(vaddubm, 0, 0),
9890 GEN_VXFORM(vadduhm, 0, 1),
9891 GEN_VXFORM(vadduwm, 0, 2),
9892 GEN_VXFORM(vsububm, 0, 16),
9893 GEN_VXFORM(vsubuhm, 0, 17),
9894 GEN_VXFORM(vsubuwm, 0, 18),
9895 GEN_VXFORM(vmaxub, 1, 0),
9896 GEN_VXFORM(vmaxuh, 1, 1),
9897 GEN_VXFORM(vmaxuw, 1, 2),
9898 GEN_VXFORM(vmaxsb, 1, 4),
9899 GEN_VXFORM(vmaxsh, 1, 5),
9900 GEN_VXFORM(vmaxsw, 1, 6),
9901 GEN_VXFORM(vminub, 1, 8),
9902 GEN_VXFORM(vminuh, 1, 9),
9903 GEN_VXFORM(vminuw, 1, 10),
9904 GEN_VXFORM(vminsb, 1, 12),
9905 GEN_VXFORM(vminsh, 1, 13),
9906 GEN_VXFORM(vminsw, 1, 14),
9907 GEN_VXFORM(vavgub, 1, 16),
9908 GEN_VXFORM(vavguh, 1, 17),
9909 GEN_VXFORM(vavguw, 1, 18),
9910 GEN_VXFORM(vavgsb, 1, 20),
9911 GEN_VXFORM(vavgsh, 1, 21),
9912 GEN_VXFORM(vavgsw, 1, 22),
9913 GEN_VXFORM(vmrghb, 6, 0),
9914 GEN_VXFORM(vmrghh, 6, 1),
9915 GEN_VXFORM(vmrghw, 6, 2),
9916 GEN_VXFORM(vmrglb, 6, 4),
9917 GEN_VXFORM(vmrglh, 6, 5),
9918 GEN_VXFORM(vmrglw, 6, 6),
9919 GEN_VXFORM(vmuloub, 4, 0),
9920 GEN_VXFORM(vmulouh, 4, 1),
9921 GEN_VXFORM(vmulosb, 4, 4),
9922 GEN_VXFORM(vmulosh, 4, 5),
9923 GEN_VXFORM(vmuleub, 4, 8),
9924 GEN_VXFORM(vmuleuh, 4, 9),
9925 GEN_VXFORM(vmulesb, 4, 12),
9926 GEN_VXFORM(vmulesh, 4, 13),
9927 GEN_VXFORM(vslb, 2, 4),
9928 GEN_VXFORM(vslh, 2, 5),
9929 GEN_VXFORM(vslw, 2, 6),
9930 GEN_VXFORM(vsrb, 2, 8),
9931 GEN_VXFORM(vsrh, 2, 9),
9932 GEN_VXFORM(vsrw, 2, 10),
9933 GEN_VXFORM(vsrab, 2, 12),
9934 GEN_VXFORM(vsrah, 2, 13),
9935 GEN_VXFORM(vsraw, 2, 14),
9936 GEN_VXFORM(vslo, 6, 16),
9937 GEN_VXFORM(vsro, 6, 17),
9938 GEN_VXFORM(vaddcuw, 0, 6),
9939 GEN_VXFORM(vsubcuw, 0, 22),
9940 GEN_VXFORM(vaddubs, 0, 8),
9941 GEN_VXFORM(vadduhs, 0, 9),
9942 GEN_VXFORM(vadduws, 0, 10),
9943 GEN_VXFORM(vaddsbs, 0, 12),
9944 GEN_VXFORM(vaddshs, 0, 13),
9945 GEN_VXFORM(vaddsws, 0, 14),
9946 GEN_VXFORM(vsububs, 0, 24),
9947 GEN_VXFORM(vsubuhs, 0, 25),
9948 GEN_VXFORM(vsubuws, 0, 26),
9949 GEN_VXFORM(vsubsbs, 0, 28),
9950 GEN_VXFORM(vsubshs, 0, 29),
9951 GEN_VXFORM(vsubsws, 0, 30),
9952 GEN_VXFORM(vrlb, 2, 0),
9953 GEN_VXFORM(vrlh, 2, 1),
9954 GEN_VXFORM(vrlw, 2, 2),
9955 GEN_VXFORM(vsl, 2, 7),
9956 GEN_VXFORM(vsr, 2, 11),
9957 GEN_VXFORM(vpkuhum, 7, 0),
9958 GEN_VXFORM(vpkuwum, 7, 1),
9959 GEN_VXFORM(vpkuhus, 7, 2),
9960 GEN_VXFORM(vpkuwus, 7, 3),
9961 GEN_VXFORM(vpkshus, 7, 4),
9962 GEN_VXFORM(vpkswus, 7, 5),
9963 GEN_VXFORM(vpkshss, 7, 6),
9964 GEN_VXFORM(vpkswss, 7, 7),
9965 GEN_VXFORM(vpkpx, 7, 12),
9966 GEN_VXFORM(vsum4ubs, 4, 24),
9967 GEN_VXFORM(vsum4sbs, 4, 28),
9968 GEN_VXFORM(vsum4shs, 4, 25),
9969 GEN_VXFORM(vsum2sws, 4, 26),
9970 GEN_VXFORM(vsumsws, 4, 30),
9971 GEN_VXFORM(vaddfp, 5, 0),
9972 GEN_VXFORM(vsubfp, 5, 1),
9973 GEN_VXFORM(vmaxfp, 5, 16),
9974 GEN_VXFORM(vminfp, 5, 17),
9975
9976 #undef GEN_VXRFORM1
9977 #undef GEN_VXRFORM
9978 #define GEN_VXRFORM1(opname, name, str, opc2, opc3)                     \
9979     GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC),
9980 #define GEN_VXRFORM(name, opc2, opc3)                                \
9981     GEN_VXRFORM1(name, name, #name, opc2, opc3)                      \
9982     GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
9983 GEN_VXRFORM(vcmpequb, 3, 0)
9984 GEN_VXRFORM(vcmpequh, 3, 1)
9985 GEN_VXRFORM(vcmpequw, 3, 2)
9986 GEN_VXRFORM(vcmpgtsb, 3, 12)
9987 GEN_VXRFORM(vcmpgtsh, 3, 13)
9988 GEN_VXRFORM(vcmpgtsw, 3, 14)
9989 GEN_VXRFORM(vcmpgtub, 3, 8)
9990 GEN_VXRFORM(vcmpgtuh, 3, 9)
9991 GEN_VXRFORM(vcmpgtuw, 3, 10)
9992 GEN_VXRFORM(vcmpeqfp, 3, 3)
9993 GEN_VXRFORM(vcmpgefp, 3, 7)
9994 GEN_VXRFORM(vcmpgtfp, 3, 11)
9995 GEN_VXRFORM(vcmpbfp, 3, 15)
9996
9997 #undef GEN_VXFORM_SIMM
9998 #define GEN_VXFORM_SIMM(name, opc2, opc3)                               \
9999     GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
10000 GEN_VXFORM_SIMM(vspltisb, 6, 12),
10001 GEN_VXFORM_SIMM(vspltish, 6, 13),
10002 GEN_VXFORM_SIMM(vspltisw, 6, 14),
10003
10004 #undef GEN_VXFORM_NOA
10005 #define GEN_VXFORM_NOA(name, opc2, opc3)                                \
10006     GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC)
10007 GEN_VXFORM_NOA(vupkhsb, 7, 8),
10008 GEN_VXFORM_NOA(vupkhsh, 7, 9),
10009 GEN_VXFORM_NOA(vupklsb, 7, 10),
10010 GEN_VXFORM_NOA(vupklsh, 7, 11),
10011 GEN_VXFORM_NOA(vupkhpx, 7, 13),
10012 GEN_VXFORM_NOA(vupklpx, 7, 15),
10013 GEN_VXFORM_NOA(vrefp, 5, 4),
10014 GEN_VXFORM_NOA(vrsqrtefp, 5, 5),
10015 GEN_VXFORM_NOA(vexptefp, 5, 6),
10016 GEN_VXFORM_NOA(vlogefp, 5, 7),
10017 GEN_VXFORM_NOA(vrfim, 5, 8),
10018 GEN_VXFORM_NOA(vrfin, 5, 9),
10019 GEN_VXFORM_NOA(vrfip, 5, 10),
10020 GEN_VXFORM_NOA(vrfiz, 5, 11),
10021
10022 #undef GEN_VXFORM_UIMM
10023 #define GEN_VXFORM_UIMM(name, opc2, opc3)                               \
10024     GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
10025 GEN_VXFORM_UIMM(vspltb, 6, 8),
10026 GEN_VXFORM_UIMM(vsplth, 6, 9),
10027 GEN_VXFORM_UIMM(vspltw, 6, 10),
10028 GEN_VXFORM_UIMM(vcfux, 5, 12),
10029 GEN_VXFORM_UIMM(vcfsx, 5, 13),
10030 GEN_VXFORM_UIMM(vctuxs, 5, 14),
10031 GEN_VXFORM_UIMM(vctsxs, 5, 15),
10032
10033 #undef GEN_VAFORM_PAIRED
10034 #define GEN_VAFORM_PAIRED(name0, name1, opc2)                           \
10035     GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC)
10036 GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16),
10037 GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18),
10038 GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19),
10039 GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20),
10040 GEN_VAFORM_PAIRED(vsel, vperm, 21),
10041 GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23),
10042
10043 GEN_HANDLER_E(lxsdx, 0x1F, 0x0C, 0x12, 0, PPC_NONE, PPC2_VSX),
10044 GEN_HANDLER_E(lxvd2x, 0x1F, 0x0C, 0x1A, 0, PPC_NONE, PPC2_VSX),
10045 GEN_HANDLER_E(lxvdsx, 0x1F, 0x0C, 0x0A, 0, PPC_NONE, PPC2_VSX),
10046 GEN_HANDLER_E(lxvw4x, 0x1F, 0x0C, 0x18, 0, PPC_NONE, PPC2_VSX),
10047
10048 GEN_HANDLER_E(stxsdx, 0x1F, 0xC, 0x16, 0, PPC_NONE, PPC2_VSX),
10049 GEN_HANDLER_E(stxvd2x, 0x1F, 0xC, 0x1E, 0, PPC_NONE, PPC2_VSX),
10050 GEN_HANDLER_E(stxvw4x, 0x1F, 0xC, 0x1C, 0, PPC_NONE, PPC2_VSX),
10051
10052 #undef GEN_XX2FORM
10053 #define GEN_XX2FORM(name, opc2, opc3, fl2)                           \
10054 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0, opc3, 0, PPC_NONE, fl2), \
10055 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 1, opc3, 0, PPC_NONE, fl2)
10056
10057 #undef GEN_XX3FORM
10058 #define GEN_XX3FORM(name, opc2, opc3, fl2)                           \
10059 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0, opc3, 0, PPC_NONE, fl2), \
10060 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 1, opc3, 0, PPC_NONE, fl2), \
10061 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 2, opc3, 0, PPC_NONE, fl2), \
10062 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 3, opc3, 0, PPC_NONE, fl2)
10063
10064 #undef GEN_XX3_RC_FORM
10065 #define GEN_XX3_RC_FORM(name, opc2, opc3, fl2)                          \
10066 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x00, opc3 | 0x00, 0, PPC_NONE, fl2), \
10067 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x01, opc3 | 0x00, 0, PPC_NONE, fl2), \
10068 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x02, opc3 | 0x00, 0, PPC_NONE, fl2), \
10069 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x03, opc3 | 0x00, 0, PPC_NONE, fl2), \
10070 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x00, opc3 | 0x10, 0, PPC_NONE, fl2), \
10071 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x01, opc3 | 0x10, 0, PPC_NONE, fl2), \
10072 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x02, opc3 | 0x10, 0, PPC_NONE, fl2), \
10073 GEN_HANDLER2_E(name, #name, 0x3C, opc2 | 0x03, opc3 | 0x10, 0, PPC_NONE, fl2)
10074
10075 #undef GEN_XX3FORM_DM
10076 #define GEN_XX3FORM_DM(name, opc2, opc3) \
10077 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x00, opc3|0x00, 0, PPC_NONE, PPC2_VSX),\
10078 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x01, opc3|0x00, 0, PPC_NONE, PPC2_VSX),\
10079 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x02, opc3|0x00, 0, PPC_NONE, PPC2_VSX),\
10080 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x03, opc3|0x00, 0, PPC_NONE, PPC2_VSX),\
10081 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x00, opc3|0x04, 0, PPC_NONE, PPC2_VSX),\
10082 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x01, opc3|0x04, 0, PPC_NONE, PPC2_VSX),\
10083 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x02, opc3|0x04, 0, PPC_NONE, PPC2_VSX),\
10084 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x03, opc3|0x04, 0, PPC_NONE, PPC2_VSX),\
10085 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x00, opc3|0x08, 0, PPC_NONE, PPC2_VSX),\
10086 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x01, opc3|0x08, 0, PPC_NONE, PPC2_VSX),\
10087 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x02, opc3|0x08, 0, PPC_NONE, PPC2_VSX),\
10088 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x03, opc3|0x08, 0, PPC_NONE, PPC2_VSX),\
10089 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x00, opc3|0x0C, 0, PPC_NONE, PPC2_VSX),\
10090 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x01, opc3|0x0C, 0, PPC_NONE, PPC2_VSX),\
10091 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x02, opc3|0x0C, 0, PPC_NONE, PPC2_VSX),\
10092 GEN_HANDLER2_E(name, #name, 0x3C, opc2|0x03, opc3|0x0C, 0, PPC_NONE, PPC2_VSX)
10093
10094 GEN_XX2FORM(xsabsdp, 0x12, 0x15, PPC2_VSX),
10095 GEN_XX2FORM(xsnabsdp, 0x12, 0x16, PPC2_VSX),
10096 GEN_XX2FORM(xsnegdp, 0x12, 0x17, PPC2_VSX),
10097 GEN_XX3FORM(xscpsgndp, 0x00, 0x16, PPC2_VSX),
10098
10099 GEN_XX2FORM(xvabsdp, 0x12, 0x1D, PPC2_VSX),
10100 GEN_XX2FORM(xvnabsdp, 0x12, 0x1E, PPC2_VSX),
10101 GEN_XX2FORM(xvnegdp, 0x12, 0x1F, PPC2_VSX),
10102 GEN_XX3FORM(xvcpsgndp, 0x00, 0x1E, PPC2_VSX),
10103 GEN_XX2FORM(xvabssp, 0x12, 0x19, PPC2_VSX),
10104 GEN_XX2FORM(xvnabssp, 0x12, 0x1A, PPC2_VSX),
10105 GEN_XX2FORM(xvnegsp, 0x12, 0x1B, PPC2_VSX),
10106 GEN_XX3FORM(xvcpsgnsp, 0x00, 0x1A, PPC2_VSX),
10107
10108 GEN_XX3FORM(xsadddp, 0x00, 0x04, PPC2_VSX),
10109 GEN_XX3FORM(xssubdp, 0x00, 0x05, PPC2_VSX),
10110 GEN_XX3FORM(xsmuldp, 0x00, 0x06, PPC2_VSX),
10111 GEN_XX3FORM(xsdivdp, 0x00, 0x07, PPC2_VSX),
10112 GEN_XX2FORM(xsredp,  0x14, 0x05, PPC2_VSX),
10113 GEN_XX2FORM(xssqrtdp,  0x16, 0x04, PPC2_VSX),
10114 GEN_XX2FORM(xsrsqrtedp,  0x14, 0x04, PPC2_VSX),
10115 GEN_XX3FORM(xstdivdp,  0x14, 0x07, PPC2_VSX),
10116 GEN_XX2FORM(xstsqrtdp,  0x14, 0x06, PPC2_VSX),
10117 GEN_XX3FORM(xsmaddadp, 0x04, 0x04, PPC2_VSX),
10118 GEN_XX3FORM(xsmaddmdp, 0x04, 0x05, PPC2_VSX),
10119 GEN_XX3FORM(xsmsubadp, 0x04, 0x06, PPC2_VSX),
10120 GEN_XX3FORM(xsmsubmdp, 0x04, 0x07, PPC2_VSX),
10121 GEN_XX3FORM(xsnmaddadp, 0x04, 0x14, PPC2_VSX),
10122 GEN_XX3FORM(xsnmaddmdp, 0x04, 0x15, PPC2_VSX),
10123 GEN_XX3FORM(xsnmsubadp, 0x04, 0x16, PPC2_VSX),
10124 GEN_XX3FORM(xsnmsubmdp, 0x04, 0x17, PPC2_VSX),
10125 GEN_XX2FORM(xscmpodp,  0x0C, 0x05, PPC2_VSX),
10126 GEN_XX2FORM(xscmpudp,  0x0C, 0x04, PPC2_VSX),
10127 GEN_XX3FORM(xsmaxdp, 0x00, 0x14, PPC2_VSX),
10128 GEN_XX3FORM(xsmindp, 0x00, 0x15, PPC2_VSX),
10129 GEN_XX2FORM(xscvdpsp, 0x12, 0x10, PPC2_VSX),
10130 GEN_XX2FORM(xscvspdp, 0x12, 0x14, PPC2_VSX),
10131 GEN_XX2FORM(xscvdpsxds, 0x10, 0x15, PPC2_VSX),
10132 GEN_XX2FORM(xscvdpsxws, 0x10, 0x05, PPC2_VSX),
10133 GEN_XX2FORM(xscvdpuxds, 0x10, 0x14, PPC2_VSX),
10134 GEN_XX2FORM(xscvdpuxws, 0x10, 0x04, PPC2_VSX),
10135 GEN_XX2FORM(xscvsxddp, 0x10, 0x17, PPC2_VSX),
10136 GEN_XX2FORM(xscvuxddp, 0x10, 0x16, PPC2_VSX),
10137 GEN_XX2FORM(xsrdpi, 0x12, 0x04, PPC2_VSX),
10138 GEN_XX2FORM(xsrdpic, 0x16, 0x06, PPC2_VSX),
10139 GEN_XX2FORM(xsrdpim, 0x12, 0x07, PPC2_VSX),
10140 GEN_XX2FORM(xsrdpip, 0x12, 0x06, PPC2_VSX),
10141 GEN_XX2FORM(xsrdpiz, 0x12, 0x05, PPC2_VSX),
10142
10143 GEN_XX3FORM(xvadddp, 0x00, 0x0C, PPC2_VSX),
10144 GEN_XX3FORM(xvsubdp, 0x00, 0x0D, PPC2_VSX),
10145 GEN_XX3FORM(xvmuldp, 0x00, 0x0E, PPC2_VSX),
10146 GEN_XX3FORM(xvdivdp, 0x00, 0x0F, PPC2_VSX),
10147 GEN_XX2FORM(xvredp,  0x14, 0x0D, PPC2_VSX),
10148 GEN_XX2FORM(xvsqrtdp,  0x16, 0x0C, PPC2_VSX),
10149 GEN_XX2FORM(xvrsqrtedp,  0x14, 0x0C, PPC2_VSX),
10150 GEN_XX3FORM(xvtdivdp, 0x14, 0x0F, PPC2_VSX),
10151 GEN_XX2FORM(xvtsqrtdp, 0x14, 0x0E, PPC2_VSX),
10152 GEN_XX3FORM(xvmaddadp, 0x04, 0x0C, PPC2_VSX),
10153 GEN_XX3FORM(xvmaddmdp, 0x04, 0x0D, PPC2_VSX),
10154 GEN_XX3FORM(xvmsubadp, 0x04, 0x0E, PPC2_VSX),
10155 GEN_XX3FORM(xvmsubmdp, 0x04, 0x0F, PPC2_VSX),
10156 GEN_XX3FORM(xvnmaddadp, 0x04, 0x1C, PPC2_VSX),
10157 GEN_XX3FORM(xvnmaddmdp, 0x04, 0x1D, PPC2_VSX),
10158 GEN_XX3FORM(xvnmsubadp, 0x04, 0x1E, PPC2_VSX),
10159 GEN_XX3FORM(xvnmsubmdp, 0x04, 0x1F, PPC2_VSX),
10160 GEN_XX3FORM(xvmaxdp, 0x00, 0x1C, PPC2_VSX),
10161 GEN_XX3FORM(xvmindp, 0x00, 0x1D, PPC2_VSX),
10162 GEN_XX3_RC_FORM(xvcmpeqdp, 0x0C, 0x0C, PPC2_VSX),
10163 GEN_XX3_RC_FORM(xvcmpgtdp, 0x0C, 0x0D, PPC2_VSX),
10164 GEN_XX3_RC_FORM(xvcmpgedp, 0x0C, 0x0E, PPC2_VSX),
10165 GEN_XX2FORM(xvcvdpsp, 0x12, 0x18, PPC2_VSX),
10166 GEN_XX2FORM(xvcvdpsxds, 0x10, 0x1D, PPC2_VSX),
10167 GEN_XX2FORM(xvcvdpsxws, 0x10, 0x0D, PPC2_VSX),
10168 GEN_XX2FORM(xvcvdpuxds, 0x10, 0x1C, PPC2_VSX),
10169 GEN_XX2FORM(xvcvdpuxws, 0x10, 0x0C, PPC2_VSX),
10170 GEN_XX2FORM(xvcvsxddp, 0x10, 0x1F, PPC2_VSX),
10171 GEN_XX2FORM(xvcvuxddp, 0x10, 0x1E, PPC2_VSX),
10172 GEN_XX2FORM(xvcvsxwdp, 0x10, 0x0F, PPC2_VSX),
10173 GEN_XX2FORM(xvcvuxwdp, 0x10, 0x0E, PPC2_VSX),
10174 GEN_XX2FORM(xvrdpi, 0x12, 0x0C, PPC2_VSX),
10175 GEN_XX2FORM(xvrdpic, 0x16, 0x0E, PPC2_VSX),
10176 GEN_XX2FORM(xvrdpim, 0x12, 0x0F, PPC2_VSX),
10177 GEN_XX2FORM(xvrdpip, 0x12, 0x0E, PPC2_VSX),
10178 GEN_XX2FORM(xvrdpiz, 0x12, 0x0D, PPC2_VSX),
10179
10180 GEN_XX3FORM(xvaddsp, 0x00, 0x08, PPC2_VSX),
10181 GEN_XX3FORM(xvsubsp, 0x00, 0x09, PPC2_VSX),
10182 GEN_XX3FORM(xvmulsp, 0x00, 0x0A, PPC2_VSX),
10183 GEN_XX3FORM(xvdivsp, 0x00, 0x0B, PPC2_VSX),
10184 GEN_XX2FORM(xvresp, 0x14, 0x09, PPC2_VSX),
10185 GEN_XX2FORM(xvsqrtsp, 0x16, 0x08, PPC2_VSX),
10186 GEN_XX2FORM(xvrsqrtesp, 0x14, 0x08, PPC2_VSX),
10187 GEN_XX3FORM(xvtdivsp, 0x14, 0x0B, PPC2_VSX),
10188 GEN_XX2FORM(xvtsqrtsp, 0x14, 0x0A, PPC2_VSX),
10189 GEN_XX3FORM(xvmaddasp, 0x04, 0x08, PPC2_VSX),
10190 GEN_XX3FORM(xvmaddmsp, 0x04, 0x09, PPC2_VSX),
10191 GEN_XX3FORM(xvmsubasp, 0x04, 0x0A, PPC2_VSX),
10192 GEN_XX3FORM(xvmsubmsp, 0x04, 0x0B, PPC2_VSX),
10193 GEN_XX3FORM(xvnmaddasp, 0x04, 0x18, PPC2_VSX),
10194 GEN_XX3FORM(xvnmaddmsp, 0x04, 0x19, PPC2_VSX),
10195 GEN_XX3FORM(xvnmsubasp, 0x04, 0x1A, PPC2_VSX),
10196 GEN_XX3FORM(xvnmsubmsp, 0x04, 0x1B, PPC2_VSX),
10197 GEN_XX3FORM(xvmaxsp, 0x00, 0x18, PPC2_VSX),
10198 GEN_XX3FORM(xvminsp, 0x00, 0x19, PPC2_VSX),
10199 GEN_XX3_RC_FORM(xvcmpeqsp, 0x0C, 0x08, PPC2_VSX),
10200 GEN_XX3_RC_FORM(xvcmpgtsp, 0x0C, 0x09, PPC2_VSX),
10201 GEN_XX3_RC_FORM(xvcmpgesp, 0x0C, 0x0A, PPC2_VSX),
10202 GEN_XX2FORM(xvcvspdp, 0x12, 0x1C, PPC2_VSX),
10203 GEN_XX2FORM(xvcvspsxds, 0x10, 0x19, PPC2_VSX),
10204 GEN_XX2FORM(xvcvspsxws, 0x10, 0x09, PPC2_VSX),
10205 GEN_XX2FORM(xvcvspuxds, 0x10, 0x18, PPC2_VSX),
10206 GEN_XX2FORM(xvcvspuxws, 0x10, 0x08, PPC2_VSX),
10207 GEN_XX2FORM(xvcvsxdsp, 0x10, 0x1B, PPC2_VSX),
10208 GEN_XX2FORM(xvcvuxdsp, 0x10, 0x1A, PPC2_VSX),
10209 GEN_XX2FORM(xvcvsxwsp, 0x10, 0x0B, PPC2_VSX),
10210 GEN_XX2FORM(xvcvuxwsp, 0x10, 0x0A, PPC2_VSX),
10211 GEN_XX2FORM(xvrspi, 0x12, 0x08, PPC2_VSX),
10212 GEN_XX2FORM(xvrspic, 0x16, 0x0A, PPC2_VSX),
10213 GEN_XX2FORM(xvrspim, 0x12, 0x0B, PPC2_VSX),
10214 GEN_XX2FORM(xvrspip, 0x12, 0x0A, PPC2_VSX),
10215 GEN_XX2FORM(xvrspiz, 0x12, 0x09, PPC2_VSX),
10216
10217 #undef VSX_LOGICAL
10218 #define VSX_LOGICAL(name, opc2, opc3, fl2) \
10219 GEN_XX3FORM(name, opc2, opc3, fl2)
10220
10221 VSX_LOGICAL(xxland, 0x8, 0x10, PPC2_VSX),
10222 VSX_LOGICAL(xxlandc, 0x8, 0x11, PPC2_VSX),
10223 VSX_LOGICAL(xxlor, 0x8, 0x12, PPC2_VSX),
10224 VSX_LOGICAL(xxlxor, 0x8, 0x13, PPC2_VSX),
10225 VSX_LOGICAL(xxlnor, 0x8, 0x14, PPC2_VSX),
10226 GEN_XX3FORM(xxmrghw, 0x08, 0x02, PPC2_VSX),
10227 GEN_XX3FORM(xxmrglw, 0x08, 0x06, PPC2_VSX),
10228 GEN_XX2FORM(xxspltw, 0x08, 0x0A, PPC2_VSX),
10229 GEN_XX3FORM_DM(xxsldwi, 0x08, 0x00),
10230
10231 #define GEN_XXSEL_ROW(opc3) \
10232 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x18, opc3, 0, PPC_NONE, PPC2_VSX), \
10233 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x19, opc3, 0, PPC_NONE, PPC2_VSX), \
10234 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1A, opc3, 0, PPC_NONE, PPC2_VSX), \
10235 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1B, opc3, 0, PPC_NONE, PPC2_VSX), \
10236 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1C, opc3, 0, PPC_NONE, PPC2_VSX), \
10237 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1D, opc3, 0, PPC_NONE, PPC2_VSX), \
10238 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1E, opc3, 0, PPC_NONE, PPC2_VSX), \
10239 GEN_HANDLER2_E(xxsel, "xxsel", 0x3C, 0x1F, opc3, 0, PPC_NONE, PPC2_VSX), \
10240
10241 GEN_XXSEL_ROW(0x00)
10242 GEN_XXSEL_ROW(0x01)
10243 GEN_XXSEL_ROW(0x02)
10244 GEN_XXSEL_ROW(0x03)
10245 GEN_XXSEL_ROW(0x04)
10246 GEN_XXSEL_ROW(0x05)
10247 GEN_XXSEL_ROW(0x06)
10248 GEN_XXSEL_ROW(0x07)
10249 GEN_XXSEL_ROW(0x08)
10250 GEN_XXSEL_ROW(0x09)
10251 GEN_XXSEL_ROW(0x0A)
10252 GEN_XXSEL_ROW(0x0B)
10253 GEN_XXSEL_ROW(0x0C)
10254 GEN_XXSEL_ROW(0x0D)
10255 GEN_XXSEL_ROW(0x0E)
10256 GEN_XXSEL_ROW(0x0F)
10257 GEN_XXSEL_ROW(0x10)
10258 GEN_XXSEL_ROW(0x11)
10259 GEN_XXSEL_ROW(0x12)
10260 GEN_XXSEL_ROW(0x13)
10261 GEN_XXSEL_ROW(0x14)
10262 GEN_XXSEL_ROW(0x15)
10263 GEN_XXSEL_ROW(0x16)
10264 GEN_XXSEL_ROW(0x17)
10265 GEN_XXSEL_ROW(0x18)
10266 GEN_XXSEL_ROW(0x19)
10267 GEN_XXSEL_ROW(0x1A)
10268 GEN_XXSEL_ROW(0x1B)
10269 GEN_XXSEL_ROW(0x1C)
10270 GEN_XXSEL_ROW(0x1D)
10271 GEN_XXSEL_ROW(0x1E)
10272 GEN_XXSEL_ROW(0x1F)
10273
10274 GEN_XX3FORM_DM(xxpermdi, 0x08, 0x01),
10275
10276 #undef GEN_SPE
10277 #define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type) \
10278     GEN_OPCODE_DUAL(name0##_##name1, 0x04, opc2, opc3, inval0, inval1, type, PPC_NONE)
10279 GEN_SPE(evaddw,      speundef,    0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10280 GEN_SPE(evaddiw,     speundef,    0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10281 GEN_SPE(evsubfw,     speundef,    0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10282 GEN_SPE(evsubifw,    speundef,    0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10283 GEN_SPE(evabs,       evneg,       0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
10284 GEN_SPE(evextsb,     evextsh,     0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
10285 GEN_SPE(evrndw,      evcntlzw,    0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
10286 GEN_SPE(evcntlsw,    brinc,       0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE),
10287 GEN_SPE(evmra,       speundef,    0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE),
10288 GEN_SPE(speundef,    evand,       0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE),
10289 GEN_SPE(evandc,      speundef,    0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10290 GEN_SPE(evxor,       evor,        0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10291 GEN_SPE(evnor,       eveqv,       0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10292 GEN_SPE(evmwumi,     evmwsmi,     0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE),
10293 GEN_SPE(evmwumia,    evmwsmia,    0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE),
10294 GEN_SPE(evmwumiaa,   evmwsmiaa,   0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE),
10295 GEN_SPE(speundef,    evorc,       0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE),
10296 GEN_SPE(evnand,      speundef,    0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10297 GEN_SPE(evsrwu,      evsrws,      0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10298 GEN_SPE(evsrwiu,     evsrwis,     0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10299 GEN_SPE(evslw,       speundef,    0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10300 GEN_SPE(evslwi,      speundef,    0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
10301 GEN_SPE(evrlw,       evsplati,    0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE),
10302 GEN_SPE(evrlwi,      evsplatfi,   0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE),
10303 GEN_SPE(evmergehi,   evmergelo,   0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10304 GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE),
10305 GEN_SPE(evcmpgtu,    evcmpgts,    0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE),
10306 GEN_SPE(evcmpltu,    evcmplts,    0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE),
10307 GEN_SPE(evcmpeq,     speundef,    0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE),
10308
10309 GEN_SPE(evfsadd,     evfssub,     0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
10310 GEN_SPE(evfsabs,     evfsnabs,    0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE),
10311 GEN_SPE(evfsneg,     speundef,    0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE),
10312 GEN_SPE(evfsmul,     evfsdiv,     0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
10313 GEN_SPE(evfscmpgt,   evfscmplt,   0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
10314 GEN_SPE(evfscmpeq,   speundef,    0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10315 GEN_SPE(evfscfui,    evfscfsi,    0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10316 GEN_SPE(evfscfuf,    evfscfsf,    0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10317 GEN_SPE(evfsctui,    evfsctsi,    0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10318 GEN_SPE(evfsctuf,    evfsctsf,    0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10319 GEN_SPE(evfsctuiz,   speundef,    0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10320 GEN_SPE(evfsctsiz,   speundef,    0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10321 GEN_SPE(evfststgt,   evfststlt,   0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
10322 GEN_SPE(evfststeq,   speundef,    0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10323
10324 GEN_SPE(efsadd,      efssub,      0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
10325 GEN_SPE(efsabs,      efsnabs,     0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE),
10326 GEN_SPE(efsneg,      speundef,    0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE),
10327 GEN_SPE(efsmul,      efsdiv,      0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
10328 GEN_SPE(efscmpgt,    efscmplt,    0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
10329 GEN_SPE(efscmpeq,    efscfd,      0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE),
10330 GEN_SPE(efscfui,     efscfsi,     0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10331 GEN_SPE(efscfuf,     efscfsf,     0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10332 GEN_SPE(efsctui,     efsctsi,     0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10333 GEN_SPE(efsctuf,     efsctsf,     0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
10334 GEN_SPE(efsctuiz,    speundef,    0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10335 GEN_SPE(efsctsiz,    speundef,    0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10336 GEN_SPE(efststgt,    efststlt,    0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
10337 GEN_SPE(efststeq,    speundef,    0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
10338
10339 GEN_SPE(efdadd,      efdsub,      0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE),
10340 GEN_SPE(efdcfuid,    efdcfsid,    0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10341 GEN_SPE(efdabs,      efdnabs,     0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE),
10342 GEN_SPE(efdneg,      speundef,    0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE),
10343 GEN_SPE(efdmul,      efddiv,      0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE),
10344 GEN_SPE(efdctuidz,   efdctsidz,   0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10345 GEN_SPE(efdcmpgt,    efdcmplt,    0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE),
10346 GEN_SPE(efdcmpeq,    efdcfs,      0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE),
10347 GEN_SPE(efdcfui,     efdcfsi,     0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10348 GEN_SPE(efdcfuf,     efdcfsf,     0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10349 GEN_SPE(efdctui,     efdctsi,     0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10350 GEN_SPE(efdctuf,     efdctsf,     0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
10351 GEN_SPE(efdctuiz,    speundef,    0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
10352 GEN_SPE(efdctsiz,    speundef,    0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
10353 GEN_SPE(efdtstgt,    efdtstlt,    0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE),
10354 GEN_SPE(efdtsteq,    speundef,    0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
10355
10356 #undef GEN_SPEOP_LDST
10357 #define GEN_SPEOP_LDST(name, opc2, sh)                                        \
10358 GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE)
10359 GEN_SPEOP_LDST(evldd, 0x00, 3),
10360 GEN_SPEOP_LDST(evldw, 0x01, 3),
10361 GEN_SPEOP_LDST(evldh, 0x02, 3),
10362 GEN_SPEOP_LDST(evlhhesplat, 0x04, 1),
10363 GEN_SPEOP_LDST(evlhhousplat, 0x06, 1),
10364 GEN_SPEOP_LDST(evlhhossplat, 0x07, 1),
10365 GEN_SPEOP_LDST(evlwhe, 0x08, 2),
10366 GEN_SPEOP_LDST(evlwhou, 0x0A, 2),
10367 GEN_SPEOP_LDST(evlwhos, 0x0B, 2),
10368 GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2),
10369 GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2),
10370
10371 GEN_SPEOP_LDST(evstdd, 0x10, 3),
10372 GEN_SPEOP_LDST(evstdw, 0x11, 3),
10373 GEN_SPEOP_LDST(evstdh, 0x12, 3),
10374 GEN_SPEOP_LDST(evstwhe, 0x18, 2),
10375 GEN_SPEOP_LDST(evstwho, 0x1A, 2),
10376 GEN_SPEOP_LDST(evstwwe, 0x1C, 2),
10377 GEN_SPEOP_LDST(evstwwo, 0x1E, 2),
10378 };
10379
10380 #include "helper_regs.h"
10381 #include "translate_init.c"
10382
10383 /*****************************************************************************/
10384 /* Misc PowerPC helpers */
10385 void ppc_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
10386                         int flags)
10387 {
10388 #define RGPL  4
10389 #define RFPL  4
10390
10391     PowerPCCPU *cpu = POWERPC_CPU(cs);
10392     CPUPPCState *env = &cpu->env;
10393     int i;
10394
10395     cpu_fprintf(f, "NIP " TARGET_FMT_lx "   LR " TARGET_FMT_lx " CTR "
10396                 TARGET_FMT_lx " XER " TARGET_FMT_lx "\n",
10397                 env->nip, env->lr, env->ctr, cpu_read_xer(env));
10398     cpu_fprintf(f, "MSR " TARGET_FMT_lx " HID0 " TARGET_FMT_lx "  HF "
10399                 TARGET_FMT_lx " idx %d\n", env->msr, env->spr[SPR_HID0],
10400                 env->hflags, env->mmu_idx);
10401 #if !defined(NO_TIMER_DUMP)
10402     cpu_fprintf(f, "TB %08" PRIu32 " %08" PRIu64
10403 #if !defined(CONFIG_USER_ONLY)
10404                 " DECR %08" PRIu32
10405 #endif
10406                 "\n",
10407                 cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
10408 #if !defined(CONFIG_USER_ONLY)
10409                 , cpu_ppc_load_decr(env)
10410 #endif
10411                 );
10412 #endif
10413     for (i = 0; i < 32; i++) {
10414         if ((i & (RGPL - 1)) == 0)
10415             cpu_fprintf(f, "GPR%02d", i);
10416         cpu_fprintf(f, " %016" PRIx64, ppc_dump_gpr(env, i));
10417         if ((i & (RGPL - 1)) == (RGPL - 1))
10418             cpu_fprintf(f, "\n");
10419     }
10420     cpu_fprintf(f, "CR ");
10421     for (i = 0; i < 8; i++)
10422         cpu_fprintf(f, "%01x", env->crf[i]);
10423     cpu_fprintf(f, "  [");
10424     for (i = 0; i < 8; i++) {
10425         char a = '-';
10426         if (env->crf[i] & 0x08)
10427             a = 'L';
10428         else if (env->crf[i] & 0x04)
10429             a = 'G';
10430         else if (env->crf[i] & 0x02)
10431             a = 'E';
10432         cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
10433     }
10434     cpu_fprintf(f, " ]             RES " TARGET_FMT_lx "\n",
10435                 env->reserve_addr);
10436     for (i = 0; i < 32; i++) {
10437         if ((i & (RFPL - 1)) == 0)
10438             cpu_fprintf(f, "FPR%02d", i);
10439         cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
10440         if ((i & (RFPL - 1)) == (RFPL - 1))
10441             cpu_fprintf(f, "\n");
10442     }
10443     cpu_fprintf(f, "FPSCR " TARGET_FMT_lx "\n", env->fpscr);
10444 #if !defined(CONFIG_USER_ONLY)
10445     cpu_fprintf(f, " SRR0 " TARGET_FMT_lx "  SRR1 " TARGET_FMT_lx
10446                    "    PVR " TARGET_FMT_lx " VRSAVE " TARGET_FMT_lx "\n",
10447                 env->spr[SPR_SRR0], env->spr[SPR_SRR1],
10448                 env->spr[SPR_PVR], env->spr[SPR_VRSAVE]);
10449
10450     cpu_fprintf(f, "SPRG0 " TARGET_FMT_lx " SPRG1 " TARGET_FMT_lx
10451                    "  SPRG2 " TARGET_FMT_lx "  SPRG3 " TARGET_FMT_lx "\n",
10452                 env->spr[SPR_SPRG0], env->spr[SPR_SPRG1],
10453                 env->spr[SPR_SPRG2], env->spr[SPR_SPRG3]);
10454
10455     cpu_fprintf(f, "SPRG4 " TARGET_FMT_lx " SPRG5 " TARGET_FMT_lx
10456                    "  SPRG6 " TARGET_FMT_lx "  SPRG7 " TARGET_FMT_lx "\n",
10457                 env->spr[SPR_SPRG4], env->spr[SPR_SPRG5],
10458                 env->spr[SPR_SPRG6], env->spr[SPR_SPRG7]);
10459
10460     if (env->excp_model == POWERPC_EXCP_BOOKE) {
10461         cpu_fprintf(f, "CSRR0 " TARGET_FMT_lx " CSRR1 " TARGET_FMT_lx
10462                        " MCSRR0 " TARGET_FMT_lx " MCSRR1 " TARGET_FMT_lx "\n",
10463                     env->spr[SPR_BOOKE_CSRR0], env->spr[SPR_BOOKE_CSRR1],
10464                     env->spr[SPR_BOOKE_MCSRR0], env->spr[SPR_BOOKE_MCSRR1]);
10465
10466         cpu_fprintf(f, "  TCR " TARGET_FMT_lx "   TSR " TARGET_FMT_lx
10467                        "    ESR " TARGET_FMT_lx "   DEAR " TARGET_FMT_lx "\n",
10468                     env->spr[SPR_BOOKE_TCR], env->spr[SPR_BOOKE_TSR],
10469                     env->spr[SPR_BOOKE_ESR], env->spr[SPR_BOOKE_DEAR]);
10470
10471         cpu_fprintf(f, "  PIR " TARGET_FMT_lx " DECAR " TARGET_FMT_lx
10472                        "   IVPR " TARGET_FMT_lx "   EPCR " TARGET_FMT_lx "\n",
10473                     env->spr[SPR_BOOKE_PIR], env->spr[SPR_BOOKE_DECAR],
10474                     env->spr[SPR_BOOKE_IVPR], env->spr[SPR_BOOKE_EPCR]);
10475
10476         cpu_fprintf(f, " MCSR " TARGET_FMT_lx " SPRG8 " TARGET_FMT_lx
10477                        "    EPR " TARGET_FMT_lx "\n",
10478                     env->spr[SPR_BOOKE_MCSR], env->spr[SPR_BOOKE_SPRG8],
10479                     env->spr[SPR_BOOKE_EPR]);
10480
10481         /* FSL-specific */
10482         cpu_fprintf(f, " MCAR " TARGET_FMT_lx "  PID1 " TARGET_FMT_lx
10483                        "   PID2 " TARGET_FMT_lx "    SVR " TARGET_FMT_lx "\n",
10484                     env->spr[SPR_Exxx_MCAR], env->spr[SPR_BOOKE_PID1],
10485                     env->spr[SPR_BOOKE_PID2], env->spr[SPR_E500_SVR]);
10486
10487         /*
10488          * IVORs are left out as they are large and do not change often --
10489          * they can be read with "p $ivor0", "p $ivor1", etc.
10490          */
10491     }
10492
10493 #if defined(TARGET_PPC64)
10494     if (env->flags & POWERPC_FLAG_CFAR) {
10495         cpu_fprintf(f, " CFAR " TARGET_FMT_lx"\n", env->cfar);
10496     }
10497 #endif
10498
10499     switch (env->mmu_model) {
10500     case POWERPC_MMU_32B:
10501     case POWERPC_MMU_601:
10502     case POWERPC_MMU_SOFT_6xx:
10503     case POWERPC_MMU_SOFT_74xx:
10504 #if defined(TARGET_PPC64)
10505     case POWERPC_MMU_64B:
10506     case POWERPC_MMU_2_06:
10507     case POWERPC_MMU_2_06a:
10508     case POWERPC_MMU_2_06d:
10509 #endif
10510         cpu_fprintf(f, " SDR1 " TARGET_FMT_lx "   DAR " TARGET_FMT_lx
10511                        "  DSISR " TARGET_FMT_lx "\n", env->spr[SPR_SDR1],
10512                     env->spr[SPR_DAR], env->spr[SPR_DSISR]);
10513         break;
10514     case POWERPC_MMU_BOOKE206:
10515         cpu_fprintf(f, " MAS0 " TARGET_FMT_lx "  MAS1 " TARGET_FMT_lx
10516                        "   MAS2 " TARGET_FMT_lx "   MAS3 " TARGET_FMT_lx "\n",
10517                     env->spr[SPR_BOOKE_MAS0], env->spr[SPR_BOOKE_MAS1],
10518                     env->spr[SPR_BOOKE_MAS2], env->spr[SPR_BOOKE_MAS3]);
10519
10520         cpu_fprintf(f, " MAS4 " TARGET_FMT_lx "  MAS6 " TARGET_FMT_lx
10521                        "   MAS7 " TARGET_FMT_lx "    PID " TARGET_FMT_lx "\n",
10522                     env->spr[SPR_BOOKE_MAS4], env->spr[SPR_BOOKE_MAS6],
10523                     env->spr[SPR_BOOKE_MAS7], env->spr[SPR_BOOKE_PID]);
10524
10525         cpu_fprintf(f, "MMUCFG " TARGET_FMT_lx " TLB0CFG " TARGET_FMT_lx
10526                        " TLB1CFG " TARGET_FMT_lx "\n",
10527                     env->spr[SPR_MMUCFG], env->spr[SPR_BOOKE_TLB0CFG],
10528                     env->spr[SPR_BOOKE_TLB1CFG]);
10529         break;
10530     default:
10531         break;
10532     }
10533 #endif
10534
10535 #undef RGPL
10536 #undef RFPL
10537 }
10538
10539 void ppc_cpu_dump_statistics(CPUState *cs, FILE*f,
10540                              fprintf_function cpu_fprintf, int flags)
10541 {
10542 #if defined(DO_PPC_STATISTICS)
10543     PowerPCCPU *cpu = POWERPC_CPU(cs);
10544     opc_handler_t **t1, **t2, **t3, *handler;
10545     int op1, op2, op3;
10546
10547     t1 = cpu->env.opcodes;
10548     for (op1 = 0; op1 < 64; op1++) {
10549         handler = t1[op1];
10550         if (is_indirect_opcode(handler)) {
10551             t2 = ind_table(handler);
10552             for (op2 = 0; op2 < 32; op2++) {
10553                 handler = t2[op2];
10554                 if (is_indirect_opcode(handler)) {
10555                     t3 = ind_table(handler);
10556                     for (op3 = 0; op3 < 32; op3++) {
10557                         handler = t3[op3];
10558                         if (handler->count == 0)
10559                             continue;
10560                         cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
10561                                     "%016" PRIx64 " %" PRId64 "\n",
10562                                     op1, op2, op3, op1, (op3 << 5) | op2,
10563                                     handler->oname,
10564                                     handler->count, handler->count);
10565                     }
10566                 } else {
10567                     if (handler->count == 0)
10568                         continue;
10569                     cpu_fprintf(f, "%02x %02x    (%02x %04d) %16s: "
10570                                 "%016" PRIx64 " %" PRId64 "\n",
10571                                 op1, op2, op1, op2, handler->oname,
10572                                 handler->count, handler->count);
10573                 }
10574             }
10575         } else {
10576             if (handler->count == 0)
10577                 continue;
10578             cpu_fprintf(f, "%02x       (%02x     ) %16s: %016" PRIx64
10579                         " %" PRId64 "\n",
10580                         op1, op1, handler->oname,
10581                         handler->count, handler->count);
10582         }
10583     }
10584 #endif
10585 }
10586
10587 /*****************************************************************************/
10588 static inline void gen_intermediate_code_internal(PowerPCCPU *cpu,
10589                                                   TranslationBlock *tb,
10590                                                   bool search_pc)
10591 {
10592     CPUState *cs = CPU(cpu);
10593     CPUPPCState *env = &cpu->env;
10594     DisasContext ctx, *ctxp = &ctx;
10595     opc_handler_t **table, *handler;
10596     target_ulong pc_start;
10597     uint16_t *gen_opc_end;
10598     CPUBreakpoint *bp;
10599     int j, lj = -1;
10600     int num_insns;
10601     int max_insns;
10602
10603     pc_start = tb->pc;
10604     gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
10605     ctx.nip = pc_start;
10606     ctx.tb = tb;
10607     ctx.exception = POWERPC_EXCP_NONE;
10608     ctx.spr_cb = env->spr_cb;
10609     ctx.mem_idx = env->mmu_idx;
10610     ctx.insns_flags = env->insns_flags;
10611     ctx.insns_flags2 = env->insns_flags2;
10612     ctx.access_type = -1;
10613     ctx.le_mode = env->hflags & (1 << MSR_LE) ? 1 : 0;
10614 #if defined(TARGET_PPC64)
10615     ctx.sf_mode = msr_is_64bit(env, env->msr);
10616     ctx.has_cfar = !!(env->flags & POWERPC_FLAG_CFAR);
10617 #endif
10618     ctx.fpu_enabled = msr_fp;
10619     if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
10620         ctx.spe_enabled = msr_spe;
10621     else
10622         ctx.spe_enabled = 0;
10623     if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
10624         ctx.altivec_enabled = msr_vr;
10625     else
10626         ctx.altivec_enabled = 0;
10627     if ((env->flags & POWERPC_FLAG_VSX) && msr_vsx) {
10628         ctx.vsx_enabled = msr_vsx;
10629     } else {
10630         ctx.vsx_enabled = 0;
10631     }
10632     if ((env->flags & POWERPC_FLAG_SE) && msr_se)
10633         ctx.singlestep_enabled = CPU_SINGLE_STEP;
10634     else
10635         ctx.singlestep_enabled = 0;
10636     if ((env->flags & POWERPC_FLAG_BE) && msr_be)
10637         ctx.singlestep_enabled |= CPU_BRANCH_STEP;
10638     if (unlikely(cs->singlestep_enabled)) {
10639         ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP;
10640     }
10641 #if defined (DO_SINGLE_STEP) && 0
10642     /* Single step trace mode */
10643     msr_se = 1;
10644 #endif
10645     num_insns = 0;
10646     max_insns = tb->cflags & CF_COUNT_MASK;
10647     if (max_insns == 0)
10648         max_insns = CF_COUNT_MASK;
10649
10650     gen_tb_start();
10651     /* Set env in case of segfault during code fetch */
10652     while (ctx.exception == POWERPC_EXCP_NONE
10653             && tcg_ctx.gen_opc_ptr < gen_opc_end) {
10654         if (unlikely(!QTAILQ_EMPTY(&env->breakpoints))) {
10655             QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
10656                 if (bp->pc == ctx.nip) {
10657                     gen_debug_exception(ctxp);
10658                     break;
10659                 }
10660             }
10661         }
10662         if (unlikely(search_pc)) {
10663             j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
10664             if (lj < j) {
10665                 lj++;
10666                 while (lj < j)
10667                     tcg_ctx.gen_opc_instr_start[lj++] = 0;
10668             }
10669             tcg_ctx.gen_opc_pc[lj] = ctx.nip;
10670             tcg_ctx.gen_opc_instr_start[lj] = 1;
10671             tcg_ctx.gen_opc_icount[lj] = num_insns;
10672         }
10673         LOG_DISAS("----------------\n");
10674         LOG_DISAS("nip=" TARGET_FMT_lx " super=%d ir=%d\n",
10675                   ctx.nip, ctx.mem_idx, (int)msr_ir);
10676         if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
10677             gen_io_start();
10678         if (unlikely(ctx.le_mode)) {
10679             ctx.opcode = bswap32(cpu_ldl_code(env, ctx.nip));
10680         } else {
10681             ctx.opcode = cpu_ldl_code(env, ctx.nip);
10682         }
10683         LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
10684                     ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
10685                     opc3(ctx.opcode), ctx.le_mode ? "little" : "big");
10686         if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
10687             tcg_gen_debug_insn_start(ctx.nip);
10688         }
10689         ctx.nip += 4;
10690         table = env->opcodes;
10691         num_insns++;
10692         handler = table[opc1(ctx.opcode)];
10693         if (is_indirect_opcode(handler)) {
10694             table = ind_table(handler);
10695             handler = table[opc2(ctx.opcode)];
10696             if (is_indirect_opcode(handler)) {
10697                 table = ind_table(handler);
10698                 handler = table[opc3(ctx.opcode)];
10699             }
10700         }
10701         /* Is opcode *REALLY* valid ? */
10702         if (unlikely(handler->handler == &gen_invalid)) {
10703             if (qemu_log_enabled()) {
10704                 qemu_log("invalid/unsupported opcode: "
10705                          "%02x - %02x - %02x (%08x) " TARGET_FMT_lx " %d\n",
10706                          opc1(ctx.opcode), opc2(ctx.opcode),
10707                          opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
10708             }
10709         } else {
10710             uint32_t inval;
10711
10712             if (unlikely(handler->type & (PPC_SPE | PPC_SPE_SINGLE | PPC_SPE_DOUBLE) && Rc(ctx.opcode))) {
10713                 inval = handler->inval2;
10714             } else {
10715                 inval = handler->inval1;
10716             }
10717
10718             if (unlikely((ctx.opcode & inval) != 0)) {
10719                 if (qemu_log_enabled()) {
10720                     qemu_log("invalid bits: %08x for opcode: "
10721                              "%02x - %02x - %02x (%08x) " TARGET_FMT_lx "\n",
10722                              ctx.opcode & inval, opc1(ctx.opcode),
10723                              opc2(ctx.opcode), opc3(ctx.opcode),
10724                              ctx.opcode, ctx.nip - 4);
10725                 }
10726                 gen_inval_exception(ctxp, POWERPC_EXCP_INVAL_INVAL);
10727                 break;
10728             }
10729         }
10730         (*(handler->handler))(&ctx);
10731 #if defined(DO_PPC_STATISTICS)
10732         handler->count++;
10733 #endif
10734         /* Check trace mode exceptions */
10735         if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP &&
10736                      (ctx.nip <= 0x100 || ctx.nip > 0xF00) &&
10737                      ctx.exception != POWERPC_SYSCALL &&
10738                      ctx.exception != POWERPC_EXCP_TRAP &&
10739                      ctx.exception != POWERPC_EXCP_BRANCH)) {
10740             gen_exception(ctxp, POWERPC_EXCP_TRACE);
10741         } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
10742                             (cs->singlestep_enabled) ||
10743                             singlestep ||
10744                             num_insns >= max_insns)) {
10745             /* if we reach a page boundary or are single stepping, stop
10746              * generation
10747              */
10748             break;
10749         }
10750     }
10751     if (tb->cflags & CF_LAST_IO)
10752         gen_io_end();
10753     if (ctx.exception == POWERPC_EXCP_NONE) {
10754         gen_goto_tb(&ctx, 0, ctx.nip);
10755     } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
10756         if (unlikely(cs->singlestep_enabled)) {
10757             gen_debug_exception(ctxp);
10758         }
10759         /* Generate the return instruction */
10760         tcg_gen_exit_tb(0);
10761     }
10762     gen_tb_end(tb, num_insns);
10763     *tcg_ctx.gen_opc_ptr = INDEX_op_end;
10764     if (unlikely(search_pc)) {
10765         j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
10766         lj++;
10767         while (lj <= j)
10768             tcg_ctx.gen_opc_instr_start[lj++] = 0;
10769     } else {
10770         tb->size = ctx.nip - pc_start;
10771         tb->icount = num_insns;
10772     }
10773 #if defined(DEBUG_DISAS)
10774     if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
10775         int flags;
10776         flags = env->bfd_mach;
10777         flags |= ctx.le_mode << 16;
10778         qemu_log("IN: %s\n", lookup_symbol(pc_start));
10779         log_target_disas(env, pc_start, ctx.nip - pc_start, flags);
10780         qemu_log("\n");
10781     }
10782 #endif
10783 }
10784
10785 void gen_intermediate_code (CPUPPCState *env, struct TranslationBlock *tb)
10786 {
10787     gen_intermediate_code_internal(ppc_env_get_cpu(env), tb, false);
10788 }
10789
10790 void gen_intermediate_code_pc (CPUPPCState *env, struct TranslationBlock *tb)
10791 {
10792     gen_intermediate_code_internal(ppc_env_get_cpu(env), tb, true);
10793 }
10794
10795 void restore_state_to_opc(CPUPPCState *env, TranslationBlock *tb, int pc_pos)
10796 {
10797     env->nip = tcg_ctx.gen_opc_pc[pc_pos];
10798 }
This page took 0.64409 seconds and 4 git commands to generate.