]> Git Repo - qemu.git/blame - target-ppc/translate.c
target-ppc: Use NARROW_MODE macro for addresses
[qemu.git] / target-ppc / translate.c
CommitLineData
79aceca5 1/*
3fc6c082 2 * PowerPC emulation for qemu: main translation routines.
5fafdf24 3 *
76a66253 4 * Copyright (c) 2003-2007 Jocelyn Mayer
90dc8812 5 * Copyright (C) 2011 Freescale Semiconductor, Inc.
79aceca5
FB
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
8167ee88 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
79aceca5 19 */
c6a1c22b 20
79aceca5 21#include "cpu.h"
76cad711 22#include "disas/disas.h"
57fec1fe 23#include "tcg-op.h"
1de7afc9 24#include "qemu/host-utils.h"
79aceca5 25
a7812ae4
PB
26#include "helper.h"
27#define GEN_HELPER 1
28#include "helper.h"
29
8cbcb4fa
AJ
30#define CPU_SINGLE_STEP 0x1
31#define CPU_BRANCH_STEP 0x2
32#define GDBSTUB_SINGLE_STEP 0x4
33
a750fc0b 34/* Include definitions for instructions classes and implementations flags */
9fddaa0c 35//#define PPC_DEBUG_DISAS
76a66253 36//#define DO_PPC_STATISTICS
79aceca5 37
d12d51d5 38#ifdef PPC_DEBUG_DISAS
93fcfe39 39# define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
d12d51d5
AL
40#else
41# define LOG_DISAS(...) do { } while (0)
42#endif
a750fc0b
JM
43/*****************************************************************************/
44/* Code translation helpers */
c53be334 45
f78fb44e 46/* global register indexes */
a7812ae4 47static TCGv_ptr cpu_env;
1d542695 48static char cpu_reg_names[10*3 + 22*4 /* GPR */
f78fb44e 49#if !defined(TARGET_PPC64)
1d542695 50 + 10*4 + 22*5 /* SPE GPRh */
f78fb44e 51#endif
a5e26afa 52 + 10*4 + 22*5 /* FPR */
47e4661c
AJ
53 + 2*(10*6 + 22*7) /* AVRh, AVRl */
54 + 8*5 /* CRF */];
f78fb44e
AJ
55static TCGv cpu_gpr[32];
56#if !defined(TARGET_PPC64)
57static TCGv cpu_gprh[32];
58#endif
a7812ae4
PB
59static TCGv_i64 cpu_fpr[32];
60static TCGv_i64 cpu_avrh[32], cpu_avrl[32];
61static TCGv_i32 cpu_crf[8];
bd568f18 62static TCGv cpu_nip;
6527f6ea 63static TCGv cpu_msr;
cfdcd37a
AJ
64static TCGv cpu_ctr;
65static TCGv cpu_lr;
697ab892
DG
66#if defined(TARGET_PPC64)
67static TCGv cpu_cfar;
68#endif
da91a00f 69static TCGv cpu_xer, cpu_so, cpu_ov, cpu_ca;
cf360a32 70static TCGv cpu_reserve;
30304420 71static TCGv cpu_fpscr;
a7859e89 72static TCGv_i32 cpu_access_type;
f78fb44e 73
022c62cb 74#include "exec/gen-icount.h"
2e70f6ef
PB
75
76void ppc_translate_init(void)
77{
f78fb44e
AJ
78 int i;
79 char* p;
2dc766da 80 size_t cpu_reg_names_size;
b2437bf2 81 static int done_init = 0;
f78fb44e 82
2e70f6ef
PB
83 if (done_init)
84 return;
f78fb44e 85
a7812ae4 86 cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
a7812ae4 87
f78fb44e 88 p = cpu_reg_names;
2dc766da 89 cpu_reg_names_size = sizeof(cpu_reg_names);
47e4661c
AJ
90
91 for (i = 0; i < 8; i++) {
2dc766da 92 snprintf(p, cpu_reg_names_size, "crf%d", i);
a7812ae4 93 cpu_crf[i] = tcg_global_mem_new_i32(TCG_AREG0,
1328c2bf 94 offsetof(CPUPPCState, crf[i]), p);
47e4661c 95 p += 5;
2dc766da 96 cpu_reg_names_size -= 5;
47e4661c
AJ
97 }
98
f78fb44e 99 for (i = 0; i < 32; i++) {
2dc766da 100 snprintf(p, cpu_reg_names_size, "r%d", i);
a7812ae4 101 cpu_gpr[i] = tcg_global_mem_new(TCG_AREG0,
1328c2bf 102 offsetof(CPUPPCState, gpr[i]), p);
f78fb44e 103 p += (i < 10) ? 3 : 4;
2dc766da 104 cpu_reg_names_size -= (i < 10) ? 3 : 4;
f78fb44e 105#if !defined(TARGET_PPC64)
2dc766da 106 snprintf(p, cpu_reg_names_size, "r%dH", i);
a7812ae4 107 cpu_gprh[i] = tcg_global_mem_new_i32(TCG_AREG0,
1328c2bf 108 offsetof(CPUPPCState, gprh[i]), p);
f78fb44e 109 p += (i < 10) ? 4 : 5;
2dc766da 110 cpu_reg_names_size -= (i < 10) ? 4 : 5;
f78fb44e 111#endif
1d542695 112
2dc766da 113 snprintf(p, cpu_reg_names_size, "fp%d", i);
a7812ae4 114 cpu_fpr[i] = tcg_global_mem_new_i64(TCG_AREG0,
1328c2bf 115 offsetof(CPUPPCState, fpr[i]), p);
ec1ac72d 116 p += (i < 10) ? 4 : 5;
2dc766da 117 cpu_reg_names_size -= (i < 10) ? 4 : 5;
a5e26afa 118
2dc766da 119 snprintf(p, cpu_reg_names_size, "avr%dH", i);
e2542fe2 120#ifdef HOST_WORDS_BIGENDIAN
fe1e5c53 121 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
1328c2bf 122 offsetof(CPUPPCState, avr[i].u64[0]), p);
fe1e5c53 123#else
a7812ae4 124 cpu_avrh[i] = tcg_global_mem_new_i64(TCG_AREG0,
1328c2bf 125 offsetof(CPUPPCState, avr[i].u64[1]), p);
fe1e5c53 126#endif
1d542695 127 p += (i < 10) ? 6 : 7;
2dc766da 128 cpu_reg_names_size -= (i < 10) ? 6 : 7;
ec1ac72d 129
2dc766da 130 snprintf(p, cpu_reg_names_size, "avr%dL", i);
e2542fe2 131#ifdef HOST_WORDS_BIGENDIAN
fe1e5c53 132 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
1328c2bf 133 offsetof(CPUPPCState, avr[i].u64[1]), p);
fe1e5c53 134#else
a7812ae4 135 cpu_avrl[i] = tcg_global_mem_new_i64(TCG_AREG0,
1328c2bf 136 offsetof(CPUPPCState, avr[i].u64[0]), p);
fe1e5c53 137#endif
1d542695 138 p += (i < 10) ? 6 : 7;
2dc766da 139 cpu_reg_names_size -= (i < 10) ? 6 : 7;
f78fb44e 140 }
f10dc08e 141
a7812ae4 142 cpu_nip = tcg_global_mem_new(TCG_AREG0,
1328c2bf 143 offsetof(CPUPPCState, nip), "nip");
bd568f18 144
6527f6ea 145 cpu_msr = tcg_global_mem_new(TCG_AREG0,
1328c2bf 146 offsetof(CPUPPCState, msr), "msr");
6527f6ea 147
a7812ae4 148 cpu_ctr = tcg_global_mem_new(TCG_AREG0,
1328c2bf 149 offsetof(CPUPPCState, ctr), "ctr");
cfdcd37a 150
a7812ae4 151 cpu_lr = tcg_global_mem_new(TCG_AREG0,
1328c2bf 152 offsetof(CPUPPCState, lr), "lr");
cfdcd37a 153
697ab892
DG
154#if defined(TARGET_PPC64)
155 cpu_cfar = tcg_global_mem_new(TCG_AREG0,
1328c2bf 156 offsetof(CPUPPCState, cfar), "cfar");
697ab892
DG
157#endif
158
a7812ae4 159 cpu_xer = tcg_global_mem_new(TCG_AREG0,
1328c2bf 160 offsetof(CPUPPCState, xer), "xer");
da91a00f
RH
161 cpu_so = tcg_global_mem_new(TCG_AREG0,
162 offsetof(CPUPPCState, so), "SO");
163 cpu_ov = tcg_global_mem_new(TCG_AREG0,
164 offsetof(CPUPPCState, ov), "OV");
165 cpu_ca = tcg_global_mem_new(TCG_AREG0,
166 offsetof(CPUPPCState, ca), "CA");
3d7b417e 167
cf360a32 168 cpu_reserve = tcg_global_mem_new(TCG_AREG0,
1328c2bf 169 offsetof(CPUPPCState, reserve_addr),
18b21a2f 170 "reserve_addr");
cf360a32 171
30304420
DG
172 cpu_fpscr = tcg_global_mem_new(TCG_AREG0,
173 offsetof(CPUPPCState, fpscr), "fpscr");
e1571908 174
a7859e89 175 cpu_access_type = tcg_global_mem_new_i32(TCG_AREG0,
1328c2bf 176 offsetof(CPUPPCState, access_type), "access_type");
a7859e89 177
f10dc08e 178 /* register helpers */
a7812ae4 179#define GEN_HELPER 2
f10dc08e
AJ
180#include "helper.h"
181
2e70f6ef
PB
182 done_init = 1;
183}
184
79aceca5
FB
185/* internal defines */
186typedef struct DisasContext {
187 struct TranslationBlock *tb;
0fa85d43 188 target_ulong nip;
79aceca5 189 uint32_t opcode;
9a64fbe4 190 uint32_t exception;
3cc62370
FB
191 /* Routine used to access memory */
192 int mem_idx;
76db3ba4 193 int access_type;
3cc62370 194 /* Translation flags */
76db3ba4 195 int le_mode;
d9bce9d9
JM
196#if defined(TARGET_PPC64)
197 int sf_mode;
697ab892 198 int has_cfar;
9a64fbe4 199#endif
3cc62370 200 int fpu_enabled;
a9d9eb8f 201 int altivec_enabled;
0487d6a8 202 int spe_enabled;
c227f099 203 ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
ea4e754f 204 int singlestep_enabled;
79aceca5
FB
205} DisasContext;
206
79482e5a
RH
207/* True when active word size < size of target_long. */
208#ifdef TARGET_PPC64
209# define NARROW_MODE(C) (!(C)->sf_mode)
210#else
211# define NARROW_MODE(C) 0
212#endif
213
c227f099 214struct opc_handler_t {
70560da7
FC
215 /* invalid bits for instruction 1 (Rc(opcode) == 0) */
216 uint32_t inval1;
217 /* invalid bits for instruction 2 (Rc(opcode) == 1) */
218 uint32_t inval2;
9a64fbe4 219 /* instruction type */
0487d6a8 220 uint64_t type;
a5858d7a
AG
221 /* extended instruction type */
222 uint64_t type2;
79aceca5
FB
223 /* handler */
224 void (*handler)(DisasContext *ctx);
a750fc0b 225#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
b55266b5 226 const char *oname;
a750fc0b
JM
227#endif
228#if defined(DO_PPC_STATISTICS)
76a66253
JM
229 uint64_t count;
230#endif
3fc6c082 231};
79aceca5 232
636aa200 233static inline void gen_reset_fpstatus(void)
7c58044c 234{
8e703949 235 gen_helper_reset_fpstatus(cpu_env);
7c58044c
JM
236}
237
636aa200 238static inline void gen_compute_fprf(TCGv_i64 arg, int set_fprf, int set_rc)
7c58044c 239{
0f2f39c2 240 TCGv_i32 t0 = tcg_temp_new_i32();
af12906f 241
7c58044c
JM
242 if (set_fprf != 0) {
243 /* This case might be optimized later */
0f2f39c2 244 tcg_gen_movi_i32(t0, 1);
8e703949 245 gen_helper_compute_fprf(t0, cpu_env, arg, t0);
a7812ae4 246 if (unlikely(set_rc)) {
0f2f39c2 247 tcg_gen_mov_i32(cpu_crf[1], t0);
a7812ae4 248 }
8e703949 249 gen_helper_float_check_status(cpu_env);
7c58044c
JM
250 } else if (unlikely(set_rc)) {
251 /* We always need to compute fpcc */
0f2f39c2 252 tcg_gen_movi_i32(t0, 0);
8e703949 253 gen_helper_compute_fprf(t0, cpu_env, arg, t0);
0f2f39c2 254 tcg_gen_mov_i32(cpu_crf[1], t0);
7c58044c 255 }
af12906f 256
0f2f39c2 257 tcg_temp_free_i32(t0);
7c58044c
JM
258}
259
636aa200 260static inline void gen_set_access_type(DisasContext *ctx, int access_type)
a7859e89 261{
76db3ba4
AJ
262 if (ctx->access_type != access_type) {
263 tcg_gen_movi_i32(cpu_access_type, access_type);
264 ctx->access_type = access_type;
265 }
a7859e89
AJ
266}
267
636aa200 268static inline void gen_update_nip(DisasContext *ctx, target_ulong nip)
d9bce9d9 269{
e0c8f9ce
RH
270 if (NARROW_MODE(ctx)) {
271 nip = (uint32_t)nip;
272 }
273 tcg_gen_movi_tl(cpu_nip, nip);
d9bce9d9
JM
274}
275
636aa200 276static inline void gen_exception_err(DisasContext *ctx, uint32_t excp, uint32_t error)
e06fcd75
AJ
277{
278 TCGv_i32 t0, t1;
279 if (ctx->exception == POWERPC_EXCP_NONE) {
280 gen_update_nip(ctx, ctx->nip);
281 }
282 t0 = tcg_const_i32(excp);
283 t1 = tcg_const_i32(error);
e5f17ac6 284 gen_helper_raise_exception_err(cpu_env, t0, t1);
e06fcd75
AJ
285 tcg_temp_free_i32(t0);
286 tcg_temp_free_i32(t1);
287 ctx->exception = (excp);
288}
e1833e1f 289
636aa200 290static inline void gen_exception(DisasContext *ctx, uint32_t excp)
e06fcd75
AJ
291{
292 TCGv_i32 t0;
293 if (ctx->exception == POWERPC_EXCP_NONE) {
294 gen_update_nip(ctx, ctx->nip);
295 }
296 t0 = tcg_const_i32(excp);
e5f17ac6 297 gen_helper_raise_exception(cpu_env, t0);
e06fcd75
AJ
298 tcg_temp_free_i32(t0);
299 ctx->exception = (excp);
300}
e1833e1f 301
636aa200 302static inline void gen_debug_exception(DisasContext *ctx)
e06fcd75
AJ
303{
304 TCGv_i32 t0;
5518f3a6 305
ee2b3994
SB
306 if ((ctx->exception != POWERPC_EXCP_BRANCH) &&
307 (ctx->exception != POWERPC_EXCP_SYNC)) {
5518f3a6 308 gen_update_nip(ctx, ctx->nip);
ee2b3994 309 }
e06fcd75 310 t0 = tcg_const_i32(EXCP_DEBUG);
e5f17ac6 311 gen_helper_raise_exception(cpu_env, t0);
e06fcd75
AJ
312 tcg_temp_free_i32(t0);
313}
9a64fbe4 314
636aa200 315static inline void gen_inval_exception(DisasContext *ctx, uint32_t error)
e06fcd75
AJ
316{
317 gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_INVAL | error);
318}
a9d9eb8f 319
f24e5695 320/* Stop translation */
636aa200 321static inline void gen_stop_exception(DisasContext *ctx)
3fc6c082 322{
d9bce9d9 323 gen_update_nip(ctx, ctx->nip);
e1833e1f 324 ctx->exception = POWERPC_EXCP_STOP;
3fc6c082
FB
325}
326
f24e5695 327/* No need to update nip here, as execution flow will change */
636aa200 328static inline void gen_sync_exception(DisasContext *ctx)
2be0071f 329{
e1833e1f 330 ctx->exception = POWERPC_EXCP_SYNC;
2be0071f
FB
331}
332
79aceca5 333#define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
a5858d7a
AG
334GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
335
336#define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \
337GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
79aceca5 338
c7697e1f 339#define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
a5858d7a
AG
340GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
341
342#define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \
343GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
c7697e1f 344
c227f099 345typedef struct opcode_t {
79aceca5 346 unsigned char opc1, opc2, opc3;
1235fc06 347#if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
18fba28c
FB
348 unsigned char pad[5];
349#else
350 unsigned char pad[1];
351#endif
c227f099 352 opc_handler_t handler;
b55266b5 353 const char *oname;
c227f099 354} opcode_t;
79aceca5 355
a750fc0b 356/*****************************************************************************/
79aceca5
FB
357/*** Instruction decoding ***/
358#define EXTRACT_HELPER(name, shift, nb) \
636aa200 359static inline uint32_t name(uint32_t opcode) \
79aceca5
FB
360{ \
361 return (opcode >> (shift)) & ((1 << (nb)) - 1); \
362}
363
364#define EXTRACT_SHELPER(name, shift, nb) \
636aa200 365static inline int32_t name(uint32_t opcode) \
79aceca5 366{ \
18fba28c 367 return (int16_t)((opcode >> (shift)) & ((1 << (nb)) - 1)); \
79aceca5
FB
368}
369
370/* Opcode part 1 */
371EXTRACT_HELPER(opc1, 26, 6);
372/* Opcode part 2 */
373EXTRACT_HELPER(opc2, 1, 5);
374/* Opcode part 3 */
375EXTRACT_HELPER(opc3, 6, 5);
376/* Update Cr0 flags */
377EXTRACT_HELPER(Rc, 0, 1);
378/* Destination */
379EXTRACT_HELPER(rD, 21, 5);
380/* Source */
381EXTRACT_HELPER(rS, 21, 5);
382/* First operand */
383EXTRACT_HELPER(rA, 16, 5);
384/* Second operand */
385EXTRACT_HELPER(rB, 11, 5);
386/* Third operand */
387EXTRACT_HELPER(rC, 6, 5);
388/*** Get CRn ***/
389EXTRACT_HELPER(crfD, 23, 3);
390EXTRACT_HELPER(crfS, 18, 3);
391EXTRACT_HELPER(crbD, 21, 5);
392EXTRACT_HELPER(crbA, 16, 5);
393EXTRACT_HELPER(crbB, 11, 5);
394/* SPR / TBL */
3fc6c082 395EXTRACT_HELPER(_SPR, 11, 10);
636aa200 396static inline uint32_t SPR(uint32_t opcode)
3fc6c082
FB
397{
398 uint32_t sprn = _SPR(opcode);
399
400 return ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
401}
79aceca5
FB
402/*** Get constants ***/
403EXTRACT_HELPER(IMM, 12, 8);
404/* 16 bits signed immediate value */
405EXTRACT_SHELPER(SIMM, 0, 16);
406/* 16 bits unsigned immediate value */
407EXTRACT_HELPER(UIMM, 0, 16);
21d21583
AJ
408/* 5 bits signed immediate value */
409EXTRACT_HELPER(SIMM5, 16, 5);
27a4edb3
AJ
410/* 5 bits signed immediate value */
411EXTRACT_HELPER(UIMM5, 16, 5);
79aceca5
FB
412/* Bit count */
413EXTRACT_HELPER(NB, 11, 5);
414/* Shift count */
415EXTRACT_HELPER(SH, 11, 5);
cd633b10
AJ
416/* Vector shift count */
417EXTRACT_HELPER(VSH, 6, 4);
79aceca5
FB
418/* Mask start */
419EXTRACT_HELPER(MB, 6, 5);
420/* Mask end */
421EXTRACT_HELPER(ME, 1, 5);
fb0eaffc
FB
422/* Trap operand */
423EXTRACT_HELPER(TO, 21, 5);
79aceca5
FB
424
425EXTRACT_HELPER(CRM, 12, 8);
426EXTRACT_HELPER(FM, 17, 8);
427EXTRACT_HELPER(SR, 16, 4);
e4bb997e 428EXTRACT_HELPER(FPIMM, 12, 4);
fb0eaffc 429
79aceca5
FB
430/*** Jump target decoding ***/
431/* Displacement */
432EXTRACT_SHELPER(d, 0, 16);
433/* Immediate address */
636aa200 434static inline target_ulong LI(uint32_t opcode)
79aceca5
FB
435{
436 return (opcode >> 0) & 0x03FFFFFC;
437}
438
636aa200 439static inline uint32_t BD(uint32_t opcode)
79aceca5
FB
440{
441 return (opcode >> 0) & 0xFFFC;
442}
443
444EXTRACT_HELPER(BO, 21, 5);
445EXTRACT_HELPER(BI, 16, 5);
446/* Absolute/relative address */
447EXTRACT_HELPER(AA, 1, 1);
448/* Link */
449EXTRACT_HELPER(LK, 0, 1);
450
451/* Create a mask between <start> and <end> bits */
636aa200 452static inline target_ulong MASK(uint32_t start, uint32_t end)
79aceca5 453{
76a66253 454 target_ulong ret;
79aceca5 455
76a66253
JM
456#if defined(TARGET_PPC64)
457 if (likely(start == 0)) {
6f2d8978 458 ret = UINT64_MAX << (63 - end);
76a66253 459 } else if (likely(end == 63)) {
6f2d8978 460 ret = UINT64_MAX >> start;
76a66253
JM
461 }
462#else
463 if (likely(start == 0)) {
6f2d8978 464 ret = UINT32_MAX << (31 - end);
76a66253 465 } else if (likely(end == 31)) {
6f2d8978 466 ret = UINT32_MAX >> start;
76a66253
JM
467 }
468#endif
469 else {
470 ret = (((target_ulong)(-1ULL)) >> (start)) ^
471 (((target_ulong)(-1ULL) >> (end)) >> 1);
472 if (unlikely(start > end))
473 return ~ret;
474 }
79aceca5
FB
475
476 return ret;
477}
478
a750fc0b 479/*****************************************************************************/
a750fc0b 480/* PowerPC instructions table */
933dc6eb 481
76a66253 482#if defined(DO_PPC_STATISTICS)
a5858d7a 483#define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 484{ \
79aceca5
FB
485 .opc1 = op1, \
486 .opc2 = op2, \
487 .opc3 = op3, \
18fba28c 488 .pad = { 0, }, \
79aceca5 489 .handler = { \
70560da7
FC
490 .inval1 = invl, \
491 .type = _typ, \
492 .type2 = _typ2, \
493 .handler = &gen_##name, \
494 .oname = stringify(name), \
495 }, \
496 .oname = stringify(name), \
497}
498#define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
499{ \
500 .opc1 = op1, \
501 .opc2 = op2, \
502 .opc3 = op3, \
503 .pad = { 0, }, \
504 .handler = { \
505 .inval1 = invl1, \
506 .inval2 = invl2, \
9a64fbe4 507 .type = _typ, \
a5858d7a 508 .type2 = _typ2, \
79aceca5 509 .handler = &gen_##name, \
76a66253 510 .oname = stringify(name), \
79aceca5 511 }, \
3fc6c082 512 .oname = stringify(name), \
79aceca5 513}
a5858d7a 514#define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 515{ \
c7697e1f
JM
516 .opc1 = op1, \
517 .opc2 = op2, \
518 .opc3 = op3, \
519 .pad = { 0, }, \
520 .handler = { \
70560da7 521 .inval1 = invl, \
c7697e1f 522 .type = _typ, \
a5858d7a 523 .type2 = _typ2, \
c7697e1f
JM
524 .handler = &gen_##name, \
525 .oname = onam, \
526 }, \
527 .oname = onam, \
528}
76a66253 529#else
a5858d7a 530#define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 531{ \
c7697e1f
JM
532 .opc1 = op1, \
533 .opc2 = op2, \
534 .opc3 = op3, \
535 .pad = { 0, }, \
536 .handler = { \
70560da7
FC
537 .inval1 = invl, \
538 .type = _typ, \
539 .type2 = _typ2, \
540 .handler = &gen_##name, \
541 }, \
542 .oname = stringify(name), \
543}
544#define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
545{ \
546 .opc1 = op1, \
547 .opc2 = op2, \
548 .opc3 = op3, \
549 .pad = { 0, }, \
550 .handler = { \
551 .inval1 = invl1, \
552 .inval2 = invl2, \
c7697e1f 553 .type = _typ, \
a5858d7a 554 .type2 = _typ2, \
c7697e1f 555 .handler = &gen_##name, \
5c55ff99
BS
556 }, \
557 .oname = stringify(name), \
558}
a5858d7a 559#define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99
BS
560{ \
561 .opc1 = op1, \
562 .opc2 = op2, \
563 .opc3 = op3, \
564 .pad = { 0, }, \
565 .handler = { \
70560da7 566 .inval1 = invl, \
5c55ff99 567 .type = _typ, \
a5858d7a 568 .type2 = _typ2, \
5c55ff99
BS
569 .handler = &gen_##name, \
570 }, \
571 .oname = onam, \
572}
573#endif
2e610050 574
5c55ff99 575/* SPR load/store helpers */
636aa200 576static inline void gen_load_spr(TCGv t, int reg)
5c55ff99 577{
1328c2bf 578 tcg_gen_ld_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
5c55ff99 579}
2e610050 580
636aa200 581static inline void gen_store_spr(int reg, TCGv t)
5c55ff99 582{
1328c2bf 583 tcg_gen_st_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
5c55ff99 584}
2e610050 585
54623277 586/* Invalid instruction */
99e300ef 587static void gen_invalid(DisasContext *ctx)
9a64fbe4 588{
e06fcd75 589 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
9a64fbe4
FB
590}
591
c227f099 592static opc_handler_t invalid_handler = {
70560da7
FC
593 .inval1 = 0xFFFFFFFF,
594 .inval2 = 0xFFFFFFFF,
9a64fbe4 595 .type = PPC_NONE,
a5858d7a 596 .type2 = PPC_NONE,
79aceca5
FB
597 .handler = gen_invalid,
598};
599
e1571908
AJ
600/*** Integer comparison ***/
601
636aa200 602static inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf)
e1571908 603{
2fdcb629
RH
604 TCGv t0 = tcg_temp_new();
605 TCGv_i32 t1 = tcg_temp_new_i32();
e1571908 606
da91a00f 607 tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_so);
e1571908 608
2fdcb629
RH
609 tcg_gen_setcond_tl((s ? TCG_COND_LT: TCG_COND_LTU), t0, arg0, arg1);
610 tcg_gen_trunc_tl_i32(t1, t0);
611 tcg_gen_shli_i32(t1, t1, CRF_LT);
612 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
613
614 tcg_gen_setcond_tl((s ? TCG_COND_GT: TCG_COND_GTU), t0, arg0, arg1);
615 tcg_gen_trunc_tl_i32(t1, t0);
616 tcg_gen_shli_i32(t1, t1, CRF_GT);
617 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
618
619 tcg_gen_setcond_tl(TCG_COND_EQ, t0, arg0, arg1);
620 tcg_gen_trunc_tl_i32(t1, t0);
621 tcg_gen_shli_i32(t1, t1, CRF_EQ);
622 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
623
624 tcg_temp_free(t0);
625 tcg_temp_free_i32(t1);
e1571908
AJ
626}
627
636aa200 628static inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf)
e1571908 629{
2fdcb629 630 TCGv t0 = tcg_const_tl(arg1);
ea363694
AJ
631 gen_op_cmp(arg0, t0, s, crf);
632 tcg_temp_free(t0);
e1571908
AJ
633}
634
636aa200 635static inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf)
e1571908 636{
ea363694 637 TCGv t0, t1;
2fdcb629
RH
638 t0 = tcg_temp_new();
639 t1 = tcg_temp_new();
e1571908 640 if (s) {
ea363694
AJ
641 tcg_gen_ext32s_tl(t0, arg0);
642 tcg_gen_ext32s_tl(t1, arg1);
e1571908 643 } else {
ea363694
AJ
644 tcg_gen_ext32u_tl(t0, arg0);
645 tcg_gen_ext32u_tl(t1, arg1);
e1571908 646 }
ea363694
AJ
647 gen_op_cmp(t0, t1, s, crf);
648 tcg_temp_free(t1);
649 tcg_temp_free(t0);
e1571908
AJ
650}
651
636aa200 652static inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf)
e1571908 653{
2fdcb629 654 TCGv t0 = tcg_const_tl(arg1);
ea363694
AJ
655 gen_op_cmp32(arg0, t0, s, crf);
656 tcg_temp_free(t0);
e1571908 657}
e1571908 658
636aa200 659static inline void gen_set_Rc0(DisasContext *ctx, TCGv reg)
e1571908 660{
02765534 661 if (NARROW_MODE(ctx)) {
e1571908 662 gen_op_cmpi32(reg, 0, 1, 0);
02765534 663 } else {
e1571908 664 gen_op_cmpi(reg, 0, 1, 0);
02765534 665 }
e1571908
AJ
666}
667
668/* cmp */
99e300ef 669static void gen_cmp(DisasContext *ctx)
e1571908 670{
02765534 671 if (NARROW_MODE(ctx) || !(ctx->opcode & 0x00200000)) {
e1571908
AJ
672 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
673 1, crfD(ctx->opcode));
02765534 674 } else {
e1571908
AJ
675 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
676 1, crfD(ctx->opcode));
02765534 677 }
e1571908
AJ
678}
679
680/* cmpi */
99e300ef 681static void gen_cmpi(DisasContext *ctx)
e1571908 682{
02765534 683 if (NARROW_MODE(ctx) || !(ctx->opcode & 0x00200000)) {
e1571908
AJ
684 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
685 1, crfD(ctx->opcode));
02765534 686 } else {
e1571908
AJ
687 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
688 1, crfD(ctx->opcode));
02765534 689 }
e1571908
AJ
690}
691
692/* cmpl */
99e300ef 693static void gen_cmpl(DisasContext *ctx)
e1571908 694{
02765534 695 if (NARROW_MODE(ctx) || !(ctx->opcode & 0x00200000)) {
e1571908
AJ
696 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
697 0, crfD(ctx->opcode));
02765534 698 } else {
e1571908
AJ
699 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
700 0, crfD(ctx->opcode));
02765534 701 }
e1571908
AJ
702}
703
704/* cmpli */
99e300ef 705static void gen_cmpli(DisasContext *ctx)
e1571908 706{
02765534 707 if (NARROW_MODE(ctx) || !(ctx->opcode & 0x00200000)) {
e1571908
AJ
708 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
709 0, crfD(ctx->opcode));
02765534 710 } else {
e1571908
AJ
711 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
712 0, crfD(ctx->opcode));
02765534 713 }
e1571908
AJ
714}
715
716/* isel (PowerPC 2.03 specification) */
99e300ef 717static void gen_isel(DisasContext *ctx)
e1571908
AJ
718{
719 int l1, l2;
720 uint32_t bi = rC(ctx->opcode);
721 uint32_t mask;
a7812ae4 722 TCGv_i32 t0;
e1571908
AJ
723
724 l1 = gen_new_label();
725 l2 = gen_new_label();
726
727 mask = 1 << (3 - (bi & 0x03));
a7812ae4 728 t0 = tcg_temp_new_i32();
fea0c503
AJ
729 tcg_gen_andi_i32(t0, cpu_crf[bi >> 2], mask);
730 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
e1571908
AJ
731 if (rA(ctx->opcode) == 0)
732 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
733 else
734 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
735 tcg_gen_br(l2);
736 gen_set_label(l1);
737 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
738 gen_set_label(l2);
a7812ae4 739 tcg_temp_free_i32(t0);
e1571908
AJ
740}
741
79aceca5 742/*** Integer arithmetic ***/
79aceca5 743
636aa200
BS
744static inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0,
745 TCGv arg1, TCGv arg2, int sub)
74637406 746{
ffe30937 747 TCGv t0 = tcg_temp_new();
79aceca5 748
ffe30937 749 tcg_gen_xor_tl(cpu_ov, arg0, arg1);
74637406 750 tcg_gen_xor_tl(t0, arg1, arg2);
ffe30937
RH
751 if (sub) {
752 tcg_gen_and_tl(cpu_ov, cpu_ov, t0);
753 } else {
754 tcg_gen_andc_tl(cpu_ov, cpu_ov, t0);
755 }
756 tcg_temp_free(t0);
02765534 757 if (NARROW_MODE(ctx)) {
ffe30937
RH
758 tcg_gen_ext32s_tl(cpu_ov, cpu_ov);
759 }
ffe30937
RH
760 tcg_gen_shri_tl(cpu_ov, cpu_ov, TARGET_LONG_BITS - 1);
761 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
79aceca5
FB
762}
763
74637406 764/* Common add function */
636aa200 765static inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1,
b5a73f8d
RH
766 TCGv arg2, bool add_ca, bool compute_ca,
767 bool compute_ov, bool compute_rc0)
74637406 768{
b5a73f8d 769 TCGv t0 = ret;
d9bce9d9 770
b5a73f8d
RH
771 if (((compute_ca && add_ca) || compute_ov)
772 && (TCGV_EQUAL(ret, arg1) || TCGV_EQUAL(ret, arg2))) {
146de60d 773 t0 = tcg_temp_new();
74637406 774 }
79aceca5 775
da91a00f 776 if (compute_ca) {
79482e5a
RH
777 if (NARROW_MODE(ctx)) {
778 TCGv t1 = tcg_temp_new();
779 tcg_gen_ext32u_tl(t1, arg2);
780 tcg_gen_ext32u_tl(t0, arg1);
781 tcg_gen_add_tl(t0, t0, t1);
782 tcg_temp_free(t1);
783 if (add_ca) {
784 tcg_gen_add_tl(t0, t0, cpu_ca);
785 }
786 tcg_gen_shri_tl(cpu_ca, t0, 32);
b5a73f8d 787 } else {
79482e5a
RH
788 TCGv zero = tcg_const_tl(0);
789 if (add_ca) {
790 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, cpu_ca, zero);
791 tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, arg2, zero);
792 } else {
793 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, arg2, zero);
794 }
795 tcg_temp_free(zero);
b5a73f8d 796 }
b5a73f8d
RH
797 } else {
798 tcg_gen_add_tl(t0, arg1, arg2);
799 if (add_ca) {
800 tcg_gen_add_tl(t0, t0, cpu_ca);
801 }
da91a00f 802 }
79aceca5 803
74637406
AJ
804 if (compute_ov) {
805 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0);
806 }
b5a73f8d 807 if (unlikely(compute_rc0)) {
74637406 808 gen_set_Rc0(ctx, t0);
b5a73f8d 809 }
74637406 810
a7812ae4 811 if (!TCGV_EQUAL(t0, ret)) {
74637406
AJ
812 tcg_gen_mov_tl(ret, t0);
813 tcg_temp_free(t0);
814 }
39dd32ee 815}
74637406
AJ
816/* Add functions with two operands */
817#define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
b5a73f8d 818static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
819{ \
820 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
821 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
b5a73f8d 822 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
823}
824/* Add functions with one operand and one immediate */
825#define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
826 add_ca, compute_ca, compute_ov) \
b5a73f8d 827static void glue(gen_, name)(DisasContext *ctx) \
74637406 828{ \
b5a73f8d 829 TCGv t0 = tcg_const_tl(const_val); \
74637406
AJ
830 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
831 cpu_gpr[rA(ctx->opcode)], t0, \
b5a73f8d 832 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
833 tcg_temp_free(t0); \
834}
835
836/* add add. addo addo. */
837GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
838GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
839/* addc addc. addco addco. */
840GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
841GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
842/* adde adde. addeo addeo. */
843GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
844GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
845/* addme addme. addmeo addmeo. */
846GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
847GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
848/* addze addze. addzeo addzeo.*/
849GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
850GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
851/* addi */
99e300ef 852static void gen_addi(DisasContext *ctx)
d9bce9d9 853{
74637406
AJ
854 target_long simm = SIMM(ctx->opcode);
855
856 if (rA(ctx->opcode) == 0) {
857 /* li case */
858 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm);
859 } else {
b5a73f8d
RH
860 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
861 cpu_gpr[rA(ctx->opcode)], simm);
74637406 862 }
d9bce9d9 863}
74637406 864/* addic addic.*/
b5a73f8d 865static inline void gen_op_addic(DisasContext *ctx, bool compute_rc0)
d9bce9d9 866{
b5a73f8d
RH
867 TCGv c = tcg_const_tl(SIMM(ctx->opcode));
868 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
869 c, 0, 1, 0, compute_rc0);
870 tcg_temp_free(c);
d9bce9d9 871}
99e300ef
BS
872
873static void gen_addic(DisasContext *ctx)
d9bce9d9 874{
b5a73f8d 875 gen_op_addic(ctx, 0);
d9bce9d9 876}
e8eaa2c0
BS
877
878static void gen_addic_(DisasContext *ctx)
d9bce9d9 879{
b5a73f8d 880 gen_op_addic(ctx, 1);
d9bce9d9 881}
99e300ef 882
54623277 883/* addis */
99e300ef 884static void gen_addis(DisasContext *ctx)
d9bce9d9 885{
74637406
AJ
886 target_long simm = SIMM(ctx->opcode);
887
888 if (rA(ctx->opcode) == 0) {
889 /* lis case */
890 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16);
891 } else {
b5a73f8d
RH
892 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
893 cpu_gpr[rA(ctx->opcode)], simm << 16);
74637406 894 }
d9bce9d9 895}
74637406 896
636aa200
BS
897static inline void gen_op_arith_divw(DisasContext *ctx, TCGv ret, TCGv arg1,
898 TCGv arg2, int sign, int compute_ov)
d9bce9d9 899{
2ef1b120
AJ
900 int l1 = gen_new_label();
901 int l2 = gen_new_label();
a7812ae4
PB
902 TCGv_i32 t0 = tcg_temp_local_new_i32();
903 TCGv_i32 t1 = tcg_temp_local_new_i32();
74637406 904
2ef1b120
AJ
905 tcg_gen_trunc_tl_i32(t0, arg1);
906 tcg_gen_trunc_tl_i32(t1, arg2);
907 tcg_gen_brcondi_i32(TCG_COND_EQ, t1, 0, l1);
74637406 908 if (sign) {
2ef1b120
AJ
909 int l3 = gen_new_label();
910 tcg_gen_brcondi_i32(TCG_COND_NE, t1, -1, l3);
911 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, INT32_MIN, l1);
74637406 912 gen_set_label(l3);
2ef1b120 913 tcg_gen_div_i32(t0, t0, t1);
74637406 914 } else {
2ef1b120 915 tcg_gen_divu_i32(t0, t0, t1);
74637406
AJ
916 }
917 if (compute_ov) {
da91a00f 918 tcg_gen_movi_tl(cpu_ov, 0);
74637406
AJ
919 }
920 tcg_gen_br(l2);
921 gen_set_label(l1);
922 if (sign) {
2ef1b120 923 tcg_gen_sari_i32(t0, t0, 31);
74637406
AJ
924 } else {
925 tcg_gen_movi_i32(t0, 0);
926 }
927 if (compute_ov) {
da91a00f
RH
928 tcg_gen_movi_tl(cpu_ov, 1);
929 tcg_gen_movi_tl(cpu_so, 1);
74637406
AJ
930 }
931 gen_set_label(l2);
2ef1b120 932 tcg_gen_extu_i32_tl(ret, t0);
a7812ae4
PB
933 tcg_temp_free_i32(t0);
934 tcg_temp_free_i32(t1);
74637406
AJ
935 if (unlikely(Rc(ctx->opcode) != 0))
936 gen_set_Rc0(ctx, ret);
d9bce9d9 937}
74637406
AJ
938/* Div functions */
939#define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
99e300ef 940static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
941{ \
942 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
943 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
944 sign, compute_ov); \
945}
946/* divwu divwu. divwuo divwuo. */
947GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0);
948GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1);
949/* divw divw. divwo divwo. */
950GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0);
951GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1);
d9bce9d9 952#if defined(TARGET_PPC64)
636aa200
BS
953static inline void gen_op_arith_divd(DisasContext *ctx, TCGv ret, TCGv arg1,
954 TCGv arg2, int sign, int compute_ov)
d9bce9d9 955{
2ef1b120
AJ
956 int l1 = gen_new_label();
957 int l2 = gen_new_label();
74637406
AJ
958
959 tcg_gen_brcondi_i64(TCG_COND_EQ, arg2, 0, l1);
960 if (sign) {
2ef1b120 961 int l3 = gen_new_label();
74637406
AJ
962 tcg_gen_brcondi_i64(TCG_COND_NE, arg2, -1, l3);
963 tcg_gen_brcondi_i64(TCG_COND_EQ, arg1, INT64_MIN, l1);
964 gen_set_label(l3);
74637406
AJ
965 tcg_gen_div_i64(ret, arg1, arg2);
966 } else {
967 tcg_gen_divu_i64(ret, arg1, arg2);
968 }
969 if (compute_ov) {
da91a00f 970 tcg_gen_movi_tl(cpu_ov, 0);
74637406
AJ
971 }
972 tcg_gen_br(l2);
973 gen_set_label(l1);
974 if (sign) {
975 tcg_gen_sari_i64(ret, arg1, 63);
976 } else {
977 tcg_gen_movi_i64(ret, 0);
978 }
979 if (compute_ov) {
da91a00f
RH
980 tcg_gen_movi_tl(cpu_ov, 1);
981 tcg_gen_movi_tl(cpu_so, 1);
74637406
AJ
982 }
983 gen_set_label(l2);
984 if (unlikely(Rc(ctx->opcode) != 0))
985 gen_set_Rc0(ctx, ret);
d9bce9d9 986}
74637406 987#define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
99e300ef 988static void glue(gen_, name)(DisasContext *ctx) \
74637406 989{ \
2ef1b120
AJ
990 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
991 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
992 sign, compute_ov); \
74637406
AJ
993}
994/* divwu divwu. divwuo divwuo. */
995GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0);
996GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1);
997/* divw divw. divwo divwo. */
998GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0);
999GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1);
d9bce9d9 1000#endif
74637406
AJ
1001
1002/* mulhw mulhw. */
99e300ef 1003static void gen_mulhw(DisasContext *ctx)
d9bce9d9 1004{
23ad1d5d
RH
1005 TCGv_i32 t0 = tcg_temp_new_i32();
1006 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1007
23ad1d5d
RH
1008 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1009 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1010 tcg_gen_muls2_i32(t0, t1, t0, t1);
1011 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1012 tcg_temp_free_i32(t0);
1013 tcg_temp_free_i32(t1);
74637406
AJ
1014 if (unlikely(Rc(ctx->opcode) != 0))
1015 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1016}
99e300ef 1017
54623277 1018/* mulhwu mulhwu. */
99e300ef 1019static void gen_mulhwu(DisasContext *ctx)
d9bce9d9 1020{
23ad1d5d
RH
1021 TCGv_i32 t0 = tcg_temp_new_i32();
1022 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1023
23ad1d5d
RH
1024 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1025 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1026 tcg_gen_mulu2_i32(t0, t1, t0, t1);
1027 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1028 tcg_temp_free_i32(t0);
1029 tcg_temp_free_i32(t1);
74637406
AJ
1030 if (unlikely(Rc(ctx->opcode) != 0))
1031 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1032}
99e300ef 1033
54623277 1034/* mullw mullw. */
99e300ef 1035static void gen_mullw(DisasContext *ctx)
d9bce9d9 1036{
74637406
AJ
1037 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1038 cpu_gpr[rB(ctx->opcode)]);
1e4c090f 1039 tcg_gen_ext32s_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)]);
74637406
AJ
1040 if (unlikely(Rc(ctx->opcode) != 0))
1041 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1042}
99e300ef 1043
54623277 1044/* mullwo mullwo. */
99e300ef 1045static void gen_mullwo(DisasContext *ctx)
d9bce9d9 1046{
e4a2c846
RH
1047 TCGv_i32 t0 = tcg_temp_new_i32();
1048 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1049
e4a2c846
RH
1050 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1051 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1052 tcg_gen_muls2_i32(t0, t1, t0, t1);
1053 tcg_gen_ext_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
1054
1055 tcg_gen_sari_i32(t0, t0, 31);
1056 tcg_gen_setcond_i32(TCG_COND_NE, t0, t0, t1);
1057 tcg_gen_extu_i32_tl(cpu_ov, t0);
1058 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
1059
1060 tcg_temp_free_i32(t0);
1061 tcg_temp_free_i32(t1);
74637406
AJ
1062 if (unlikely(Rc(ctx->opcode) != 0))
1063 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1064}
99e300ef 1065
54623277 1066/* mulli */
99e300ef 1067static void gen_mulli(DisasContext *ctx)
d9bce9d9 1068{
74637406
AJ
1069 tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1070 SIMM(ctx->opcode));
d9bce9d9 1071}
23ad1d5d 1072
d9bce9d9 1073#if defined(TARGET_PPC64)
74637406 1074/* mulhd mulhd. */
23ad1d5d
RH
1075static void gen_mulhd(DisasContext *ctx)
1076{
1077 TCGv lo = tcg_temp_new();
1078 tcg_gen_muls2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1079 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1080 tcg_temp_free(lo);
1081 if (unlikely(Rc(ctx->opcode) != 0)) {
1082 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1083 }
1084}
1085
74637406 1086/* mulhdu mulhdu. */
23ad1d5d
RH
1087static void gen_mulhdu(DisasContext *ctx)
1088{
1089 TCGv lo = tcg_temp_new();
1090 tcg_gen_mulu2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1091 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1092 tcg_temp_free(lo);
1093 if (unlikely(Rc(ctx->opcode) != 0)) {
1094 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1095 }
1096}
99e300ef 1097
54623277 1098/* mulld mulld. */
99e300ef 1099static void gen_mulld(DisasContext *ctx)
d9bce9d9 1100{
74637406
AJ
1101 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1102 cpu_gpr[rB(ctx->opcode)]);
1103 if (unlikely(Rc(ctx->opcode) != 0))
1104 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1105}
d15f74fb 1106
74637406 1107/* mulldo mulldo. */
d15f74fb
BS
1108static void gen_mulldo(DisasContext *ctx)
1109{
1110 gen_helper_mulldo(cpu_gpr[rD(ctx->opcode)], cpu_env,
1111 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1112 if (unlikely(Rc(ctx->opcode) != 0)) {
1113 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1114 }
1115}
d9bce9d9 1116#endif
74637406 1117
74637406 1118/* Common subf function */
636aa200 1119static inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1,
b5a73f8d
RH
1120 TCGv arg2, bool add_ca, bool compute_ca,
1121 bool compute_ov, bool compute_rc0)
79aceca5 1122{
b5a73f8d 1123 TCGv t0 = ret;
79aceca5 1124
79482e5a 1125 if (compute_ov && (TCGV_EQUAL(ret, arg1) || TCGV_EQUAL(ret, arg2))) {
b5a73f8d 1126 t0 = tcg_temp_new();
da91a00f 1127 }
74637406 1128
79482e5a
RH
1129 if (compute_ca) {
1130 /* dest = ~arg1 + arg2 [+ ca]. */
1131 if (NARROW_MODE(ctx)) {
1132 TCGv inv1 = tcg_temp_new();
1133 tcg_gen_not_tl(inv1, arg1);
1134 tcg_gen_ext32u_tl(t0, arg2);
1135 tcg_gen_ext32u_tl(inv1, inv1);
1136 if (add_ca) {
1137 tcg_gen_add_tl(t0, t0, cpu_ca);
1138 } else {
1139 tcg_gen_addi_tl(t0, t0, 1);
1140 }
1141 tcg_gen_add_tl(t0, t0, inv1);
1142 tcg_gen_shri_tl(cpu_ca, t0, 32);
1143 } else if (add_ca) {
08f4a0f7
RH
1144 TCGv zero, inv1 = tcg_temp_new();
1145 tcg_gen_not_tl(inv1, arg1);
b5a73f8d
RH
1146 zero = tcg_const_tl(0);
1147 tcg_gen_add2_tl(t0, cpu_ca, arg2, zero, cpu_ca, zero);
08f4a0f7 1148 tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, inv1, zero);
b5a73f8d 1149 tcg_temp_free(zero);
08f4a0f7 1150 tcg_temp_free(inv1);
b5a73f8d 1151 } else {
79482e5a 1152 tcg_gen_setcond_tl(TCG_COND_GEU, cpu_ca, arg2, arg1);
b5a73f8d 1153 tcg_gen_sub_tl(t0, arg2, arg1);
b5a73f8d 1154 }
79482e5a
RH
1155 } else if (add_ca) {
1156 /* Since we're ignoring carry-out, we can simplify the
1157 standard ~arg1 + arg2 + ca to arg2 - arg1 + ca - 1. */
1158 tcg_gen_sub_tl(t0, arg2, arg1);
1159 tcg_gen_add_tl(t0, t0, cpu_ca);
1160 tcg_gen_subi_tl(t0, t0, 1);
79aceca5 1161 } else {
b5a73f8d 1162 tcg_gen_sub_tl(t0, arg2, arg1);
74637406 1163 }
b5a73f8d 1164
74637406
AJ
1165 if (compute_ov) {
1166 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1);
1167 }
b5a73f8d 1168 if (unlikely(compute_rc0)) {
74637406 1169 gen_set_Rc0(ctx, t0);
b5a73f8d 1170 }
74637406 1171
a7812ae4 1172 if (!TCGV_EQUAL(t0, ret)) {
74637406
AJ
1173 tcg_gen_mov_tl(ret, t0);
1174 tcg_temp_free(t0);
79aceca5 1175 }
79aceca5 1176}
74637406
AJ
1177/* Sub functions with Two operands functions */
1178#define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
b5a73f8d 1179static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
1180{ \
1181 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1182 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
b5a73f8d 1183 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
1184}
1185/* Sub functions with one operand and one immediate */
1186#define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1187 add_ca, compute_ca, compute_ov) \
b5a73f8d 1188static void glue(gen_, name)(DisasContext *ctx) \
74637406 1189{ \
b5a73f8d 1190 TCGv t0 = tcg_const_tl(const_val); \
74637406
AJ
1191 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1192 cpu_gpr[rA(ctx->opcode)], t0, \
b5a73f8d 1193 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
1194 tcg_temp_free(t0); \
1195}
1196/* subf subf. subfo subfo. */
1197GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
1198GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
1199/* subfc subfc. subfco subfco. */
1200GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
1201GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
1202/* subfe subfe. subfeo subfo. */
1203GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
1204GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
1205/* subfme subfme. subfmeo subfmeo. */
1206GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
1207GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
1208/* subfze subfze. subfzeo subfzeo.*/
1209GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
1210GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
99e300ef 1211
54623277 1212/* subfic */
99e300ef 1213static void gen_subfic(DisasContext *ctx)
79aceca5 1214{
b5a73f8d
RH
1215 TCGv c = tcg_const_tl(SIMM(ctx->opcode));
1216 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1217 c, 0, 1, 0, 0);
1218 tcg_temp_free(c);
79aceca5
FB
1219}
1220
fd3f0081
RH
1221/* neg neg. nego nego. */
1222static inline void gen_op_arith_neg(DisasContext *ctx, bool compute_ov)
1223{
1224 TCGv zero = tcg_const_tl(0);
1225 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1226 zero, 0, 0, compute_ov, Rc(ctx->opcode));
1227 tcg_temp_free(zero);
1228}
1229
1230static void gen_neg(DisasContext *ctx)
1231{
1232 gen_op_arith_neg(ctx, 0);
1233}
1234
1235static void gen_nego(DisasContext *ctx)
1236{
1237 gen_op_arith_neg(ctx, 1);
1238}
1239
79aceca5 1240/*** Integer logical ***/
26d67362 1241#define GEN_LOGICAL2(name, tcg_op, opc, type) \
99e300ef 1242static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 1243{ \
26d67362
AJ
1244 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1245 cpu_gpr[rB(ctx->opcode)]); \
76a66253 1246 if (unlikely(Rc(ctx->opcode) != 0)) \
26d67362 1247 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
79aceca5 1248}
79aceca5 1249
26d67362 1250#define GEN_LOGICAL1(name, tcg_op, opc, type) \
99e300ef 1251static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 1252{ \
26d67362 1253 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
76a66253 1254 if (unlikely(Rc(ctx->opcode) != 0)) \
26d67362 1255 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
79aceca5
FB
1256}
1257
1258/* and & and. */
26d67362 1259GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER);
79aceca5 1260/* andc & andc. */
26d67362 1261GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER);
e8eaa2c0 1262
54623277 1263/* andi. */
e8eaa2c0 1264static void gen_andi_(DisasContext *ctx)
79aceca5 1265{
26d67362
AJ
1266 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode));
1267 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1268}
e8eaa2c0 1269
54623277 1270/* andis. */
e8eaa2c0 1271static void gen_andis_(DisasContext *ctx)
79aceca5 1272{
26d67362
AJ
1273 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16);
1274 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1275}
99e300ef 1276
54623277 1277/* cntlzw */
99e300ef 1278static void gen_cntlzw(DisasContext *ctx)
26d67362 1279{
a7812ae4 1280 gen_helper_cntlzw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
26d67362 1281 if (unlikely(Rc(ctx->opcode) != 0))
2e31f5d3 1282 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
26d67362 1283}
79aceca5 1284/* eqv & eqv. */
26d67362 1285GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER);
79aceca5 1286/* extsb & extsb. */
26d67362 1287GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER);
79aceca5 1288/* extsh & extsh. */
26d67362 1289GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER);
79aceca5 1290/* nand & nand. */
26d67362 1291GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER);
79aceca5 1292/* nor & nor. */
26d67362 1293GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
99e300ef 1294
54623277 1295/* or & or. */
99e300ef 1296static void gen_or(DisasContext *ctx)
9a64fbe4 1297{
76a66253
JM
1298 int rs, ra, rb;
1299
1300 rs = rS(ctx->opcode);
1301 ra = rA(ctx->opcode);
1302 rb = rB(ctx->opcode);
1303 /* Optimisation for mr. ri case */
1304 if (rs != ra || rs != rb) {
26d67362
AJ
1305 if (rs != rb)
1306 tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]);
1307 else
1308 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]);
76a66253 1309 if (unlikely(Rc(ctx->opcode) != 0))
26d67362 1310 gen_set_Rc0(ctx, cpu_gpr[ra]);
76a66253 1311 } else if (unlikely(Rc(ctx->opcode) != 0)) {
26d67362 1312 gen_set_Rc0(ctx, cpu_gpr[rs]);
c80f84e3
JM
1313#if defined(TARGET_PPC64)
1314 } else {
26d67362
AJ
1315 int prio = 0;
1316
c80f84e3
JM
1317 switch (rs) {
1318 case 1:
1319 /* Set process priority to low */
26d67362 1320 prio = 2;
c80f84e3
JM
1321 break;
1322 case 6:
1323 /* Set process priority to medium-low */
26d67362 1324 prio = 3;
c80f84e3
JM
1325 break;
1326 case 2:
1327 /* Set process priority to normal */
26d67362 1328 prio = 4;
c80f84e3 1329 break;
be147d08
JM
1330#if !defined(CONFIG_USER_ONLY)
1331 case 31:
76db3ba4 1332 if (ctx->mem_idx > 0) {
be147d08 1333 /* Set process priority to very low */
26d67362 1334 prio = 1;
be147d08
JM
1335 }
1336 break;
1337 case 5:
76db3ba4 1338 if (ctx->mem_idx > 0) {
be147d08 1339 /* Set process priority to medium-hight */
26d67362 1340 prio = 5;
be147d08
JM
1341 }
1342 break;
1343 case 3:
76db3ba4 1344 if (ctx->mem_idx > 0) {
be147d08 1345 /* Set process priority to high */
26d67362 1346 prio = 6;
be147d08
JM
1347 }
1348 break;
be147d08 1349 case 7:
76db3ba4 1350 if (ctx->mem_idx > 1) {
be147d08 1351 /* Set process priority to very high */
26d67362 1352 prio = 7;
be147d08
JM
1353 }
1354 break;
be147d08 1355#endif
c80f84e3
JM
1356 default:
1357 /* nop */
1358 break;
1359 }
26d67362 1360 if (prio) {
a7812ae4 1361 TCGv t0 = tcg_temp_new();
54cdcae6 1362 gen_load_spr(t0, SPR_PPR);
ea363694
AJ
1363 tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL);
1364 tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50);
54cdcae6 1365 gen_store_spr(SPR_PPR, t0);
ea363694 1366 tcg_temp_free(t0);
26d67362 1367 }
c80f84e3 1368#endif
9a64fbe4 1369 }
9a64fbe4 1370}
79aceca5 1371/* orc & orc. */
26d67362 1372GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER);
99e300ef 1373
54623277 1374/* xor & xor. */
99e300ef 1375static void gen_xor(DisasContext *ctx)
9a64fbe4 1376{
9a64fbe4 1377 /* Optimisation for "set to zero" case */
26d67362 1378 if (rS(ctx->opcode) != rB(ctx->opcode))
312179c4 1379 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
1380 else
1381 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
76a66253 1382 if (unlikely(Rc(ctx->opcode) != 0))
26d67362 1383 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
9a64fbe4 1384}
99e300ef 1385
54623277 1386/* ori */
99e300ef 1387static void gen_ori(DisasContext *ctx)
79aceca5 1388{
76a66253 1389 target_ulong uimm = UIMM(ctx->opcode);
79aceca5 1390
9a64fbe4
FB
1391 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1392 /* NOP */
76a66253 1393 /* XXX: should handle special NOPs for POWER series */
9a64fbe4 1394 return;
76a66253 1395 }
26d67362 1396 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
79aceca5 1397}
99e300ef 1398
54623277 1399/* oris */
99e300ef 1400static void gen_oris(DisasContext *ctx)
79aceca5 1401{
76a66253 1402 target_ulong uimm = UIMM(ctx->opcode);
79aceca5 1403
9a64fbe4
FB
1404 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1405 /* NOP */
1406 return;
76a66253 1407 }
26d67362 1408 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
79aceca5 1409}
99e300ef 1410
54623277 1411/* xori */
99e300ef 1412static void gen_xori(DisasContext *ctx)
79aceca5 1413{
76a66253 1414 target_ulong uimm = UIMM(ctx->opcode);
9a64fbe4
FB
1415
1416 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1417 /* NOP */
1418 return;
1419 }
26d67362 1420 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
79aceca5 1421}
99e300ef 1422
54623277 1423/* xoris */
99e300ef 1424static void gen_xoris(DisasContext *ctx)
79aceca5 1425{
76a66253 1426 target_ulong uimm = UIMM(ctx->opcode);
9a64fbe4
FB
1427
1428 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1429 /* NOP */
1430 return;
1431 }
26d67362 1432 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
79aceca5 1433}
99e300ef 1434
54623277 1435/* popcntb : PowerPC 2.03 specification */
99e300ef 1436static void gen_popcntb(DisasContext *ctx)
d9bce9d9 1437{
eaabeef2
DG
1438 gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1439}
1440
1441static void gen_popcntw(DisasContext *ctx)
1442{
1443 gen_helper_popcntw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1444}
1445
d9bce9d9 1446#if defined(TARGET_PPC64)
eaabeef2
DG
1447/* popcntd: PowerPC 2.06 specification */
1448static void gen_popcntd(DisasContext *ctx)
1449{
1450 gen_helper_popcntd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
d9bce9d9 1451}
eaabeef2 1452#endif
d9bce9d9
JM
1453
1454#if defined(TARGET_PPC64)
1455/* extsw & extsw. */
26d67362 1456GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B);
99e300ef 1457
54623277 1458/* cntlzd */
99e300ef 1459static void gen_cntlzd(DisasContext *ctx)
26d67362 1460{
a7812ae4 1461 gen_helper_cntlzd(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
26d67362
AJ
1462 if (unlikely(Rc(ctx->opcode) != 0))
1463 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1464}
d9bce9d9
JM
1465#endif
1466
79aceca5 1467/*** Integer rotate ***/
99e300ef 1468
54623277 1469/* rlwimi & rlwimi. */
99e300ef 1470static void gen_rlwimi(DisasContext *ctx)
79aceca5 1471{
76a66253 1472 uint32_t mb, me, sh;
79aceca5
FB
1473
1474 mb = MB(ctx->opcode);
1475 me = ME(ctx->opcode);
76a66253 1476 sh = SH(ctx->opcode);
d03ef511
AJ
1477 if (likely(sh == 0 && mb == 0 && me == 31)) {
1478 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1479 } else {
d03ef511 1480 target_ulong mask;
a7812ae4
PB
1481 TCGv t1;
1482 TCGv t0 = tcg_temp_new();
54843a58 1483#if defined(TARGET_PPC64)
a7812ae4
PB
1484 TCGv_i32 t2 = tcg_temp_new_i32();
1485 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rS(ctx->opcode)]);
1486 tcg_gen_rotli_i32(t2, t2, sh);
1487 tcg_gen_extu_i32_i64(t0, t2);
1488 tcg_temp_free_i32(t2);
54843a58
AJ
1489#else
1490 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1491#endif
76a66253 1492#if defined(TARGET_PPC64)
d03ef511
AJ
1493 mb += 32;
1494 me += 32;
76a66253 1495#endif
d03ef511 1496 mask = MASK(mb, me);
a7812ae4 1497 t1 = tcg_temp_new();
d03ef511
AJ
1498 tcg_gen_andi_tl(t0, t0, mask);
1499 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1500 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1501 tcg_temp_free(t0);
1502 tcg_temp_free(t1);
1503 }
76a66253 1504 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1505 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1506}
99e300ef 1507
54623277 1508/* rlwinm & rlwinm. */
99e300ef 1509static void gen_rlwinm(DisasContext *ctx)
79aceca5
FB
1510{
1511 uint32_t mb, me, sh;
3b46e624 1512
79aceca5
FB
1513 sh = SH(ctx->opcode);
1514 mb = MB(ctx->opcode);
1515 me = ME(ctx->opcode);
d03ef511
AJ
1516
1517 if (likely(mb == 0 && me == (31 - sh))) {
1518 if (likely(sh == 0)) {
1519 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1520 } else {
a7812ae4 1521 TCGv t0 = tcg_temp_new();
d03ef511
AJ
1522 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1523 tcg_gen_shli_tl(t0, t0, sh);
1524 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1525 tcg_temp_free(t0);
79aceca5 1526 }
d03ef511 1527 } else if (likely(sh != 0 && me == 31 && sh == (32 - mb))) {
a7812ae4 1528 TCGv t0 = tcg_temp_new();
d03ef511
AJ
1529 tcg_gen_ext32u_tl(t0, cpu_gpr[rS(ctx->opcode)]);
1530 tcg_gen_shri_tl(t0, t0, mb);
1531 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], t0);
1532 tcg_temp_free(t0);
1533 } else {
a7812ae4 1534 TCGv t0 = tcg_temp_new();
54843a58 1535#if defined(TARGET_PPC64)
a7812ae4 1536 TCGv_i32 t1 = tcg_temp_new_i32();
54843a58
AJ
1537 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1538 tcg_gen_rotli_i32(t1, t1, sh);
1539 tcg_gen_extu_i32_i64(t0, t1);
a7812ae4 1540 tcg_temp_free_i32(t1);
54843a58
AJ
1541#else
1542 tcg_gen_rotli_i32(t0, cpu_gpr[rS(ctx->opcode)], sh);
1543#endif
76a66253 1544#if defined(TARGET_PPC64)
d03ef511
AJ
1545 mb += 32;
1546 me += 32;
76a66253 1547#endif
d03ef511
AJ
1548 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1549 tcg_temp_free(t0);
1550 }
76a66253 1551 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1552 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1553}
99e300ef 1554
54623277 1555/* rlwnm & rlwnm. */
99e300ef 1556static void gen_rlwnm(DisasContext *ctx)
79aceca5
FB
1557{
1558 uint32_t mb, me;
54843a58
AJ
1559 TCGv t0;
1560#if defined(TARGET_PPC64)
a7812ae4 1561 TCGv_i32 t1, t2;
54843a58 1562#endif
79aceca5
FB
1563
1564 mb = MB(ctx->opcode);
1565 me = ME(ctx->opcode);
a7812ae4 1566 t0 = tcg_temp_new();
d03ef511 1567 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1f);
54843a58 1568#if defined(TARGET_PPC64)
a7812ae4
PB
1569 t1 = tcg_temp_new_i32();
1570 t2 = tcg_temp_new_i32();
54843a58
AJ
1571 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rS(ctx->opcode)]);
1572 tcg_gen_trunc_i64_i32(t2, t0);
1573 tcg_gen_rotl_i32(t1, t1, t2);
1574 tcg_gen_extu_i32_i64(t0, t1);
a7812ae4
PB
1575 tcg_temp_free_i32(t1);
1576 tcg_temp_free_i32(t2);
54843a58
AJ
1577#else
1578 tcg_gen_rotl_i32(t0, cpu_gpr[rS(ctx->opcode)], t0);
1579#endif
76a66253
JM
1580 if (unlikely(mb != 0 || me != 31)) {
1581#if defined(TARGET_PPC64)
1582 mb += 32;
1583 me += 32;
1584#endif
54843a58 1585 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
d03ef511 1586 } else {
54843a58 1587 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
79aceca5 1588 }
54843a58 1589 tcg_temp_free(t0);
76a66253 1590 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1591 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5
FB
1592}
1593
d9bce9d9
JM
1594#if defined(TARGET_PPC64)
1595#define GEN_PPC64_R2(name, opc1, opc2) \
e8eaa2c0 1596static void glue(gen_, name##0)(DisasContext *ctx) \
d9bce9d9
JM
1597{ \
1598 gen_##name(ctx, 0); \
1599} \
e8eaa2c0
BS
1600 \
1601static void glue(gen_, name##1)(DisasContext *ctx) \
d9bce9d9
JM
1602{ \
1603 gen_##name(ctx, 1); \
1604}
1605#define GEN_PPC64_R4(name, opc1, opc2) \
e8eaa2c0 1606static void glue(gen_, name##0)(DisasContext *ctx) \
d9bce9d9
JM
1607{ \
1608 gen_##name(ctx, 0, 0); \
1609} \
e8eaa2c0
BS
1610 \
1611static void glue(gen_, name##1)(DisasContext *ctx) \
d9bce9d9
JM
1612{ \
1613 gen_##name(ctx, 0, 1); \
1614} \
e8eaa2c0
BS
1615 \
1616static void glue(gen_, name##2)(DisasContext *ctx) \
d9bce9d9
JM
1617{ \
1618 gen_##name(ctx, 1, 0); \
1619} \
e8eaa2c0
BS
1620 \
1621static void glue(gen_, name##3)(DisasContext *ctx) \
d9bce9d9
JM
1622{ \
1623 gen_##name(ctx, 1, 1); \
1624}
51789c41 1625
636aa200
BS
1626static inline void gen_rldinm(DisasContext *ctx, uint32_t mb, uint32_t me,
1627 uint32_t sh)
51789c41 1628{
d03ef511
AJ
1629 if (likely(sh != 0 && mb == 0 && me == (63 - sh))) {
1630 tcg_gen_shli_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
1631 } else if (likely(sh != 0 && me == 63 && sh == (64 - mb))) {
1632 tcg_gen_shri_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], mb);
1633 } else {
a7812ae4 1634 TCGv t0 = tcg_temp_new();
54843a58 1635 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
d03ef511 1636 if (likely(mb == 0 && me == 63)) {
54843a58 1637 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
d03ef511
AJ
1638 } else {
1639 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
51789c41 1640 }
d03ef511 1641 tcg_temp_free(t0);
51789c41 1642 }
51789c41 1643 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1644 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
51789c41 1645}
d9bce9d9 1646/* rldicl - rldicl. */
636aa200 1647static inline void gen_rldicl(DisasContext *ctx, int mbn, int shn)
d9bce9d9 1648{
51789c41 1649 uint32_t sh, mb;
d9bce9d9 1650
9d53c753
JM
1651 sh = SH(ctx->opcode) | (shn << 5);
1652 mb = MB(ctx->opcode) | (mbn << 5);
51789c41 1653 gen_rldinm(ctx, mb, 63, sh);
d9bce9d9 1654}
51789c41 1655GEN_PPC64_R4(rldicl, 0x1E, 0x00);
d9bce9d9 1656/* rldicr - rldicr. */
636aa200 1657static inline void gen_rldicr(DisasContext *ctx, int men, int shn)
d9bce9d9 1658{
51789c41 1659 uint32_t sh, me;
d9bce9d9 1660
9d53c753
JM
1661 sh = SH(ctx->opcode) | (shn << 5);
1662 me = MB(ctx->opcode) | (men << 5);
51789c41 1663 gen_rldinm(ctx, 0, me, sh);
d9bce9d9 1664}
51789c41 1665GEN_PPC64_R4(rldicr, 0x1E, 0x02);
d9bce9d9 1666/* rldic - rldic. */
636aa200 1667static inline void gen_rldic(DisasContext *ctx, int mbn, int shn)
d9bce9d9 1668{
51789c41 1669 uint32_t sh, mb;
d9bce9d9 1670
9d53c753
JM
1671 sh = SH(ctx->opcode) | (shn << 5);
1672 mb = MB(ctx->opcode) | (mbn << 5);
51789c41
JM
1673 gen_rldinm(ctx, mb, 63 - sh, sh);
1674}
1675GEN_PPC64_R4(rldic, 0x1E, 0x04);
1676
636aa200 1677static inline void gen_rldnm(DisasContext *ctx, uint32_t mb, uint32_t me)
51789c41 1678{
54843a58 1679 TCGv t0;
d03ef511
AJ
1680
1681 mb = MB(ctx->opcode);
1682 me = ME(ctx->opcode);
a7812ae4 1683 t0 = tcg_temp_new();
d03ef511 1684 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3f);
54843a58 1685 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
51789c41 1686 if (unlikely(mb != 0 || me != 63)) {
54843a58
AJ
1687 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], t0, MASK(mb, me));
1688 } else {
1689 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
1690 }
1691 tcg_temp_free(t0);
51789c41 1692 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1693 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
d9bce9d9 1694}
51789c41 1695
d9bce9d9 1696/* rldcl - rldcl. */
636aa200 1697static inline void gen_rldcl(DisasContext *ctx, int mbn)
d9bce9d9 1698{
51789c41 1699 uint32_t mb;
d9bce9d9 1700
9d53c753 1701 mb = MB(ctx->opcode) | (mbn << 5);
51789c41 1702 gen_rldnm(ctx, mb, 63);
d9bce9d9 1703}
36081602 1704GEN_PPC64_R2(rldcl, 0x1E, 0x08);
d9bce9d9 1705/* rldcr - rldcr. */
636aa200 1706static inline void gen_rldcr(DisasContext *ctx, int men)
d9bce9d9 1707{
51789c41 1708 uint32_t me;
d9bce9d9 1709
9d53c753 1710 me = MB(ctx->opcode) | (men << 5);
51789c41 1711 gen_rldnm(ctx, 0, me);
d9bce9d9 1712}
36081602 1713GEN_PPC64_R2(rldcr, 0x1E, 0x09);
d9bce9d9 1714/* rldimi - rldimi. */
636aa200 1715static inline void gen_rldimi(DisasContext *ctx, int mbn, int shn)
d9bce9d9 1716{
271a916e 1717 uint32_t sh, mb, me;
d9bce9d9 1718
9d53c753
JM
1719 sh = SH(ctx->opcode) | (shn << 5);
1720 mb = MB(ctx->opcode) | (mbn << 5);
271a916e 1721 me = 63 - sh;
d03ef511
AJ
1722 if (unlikely(sh == 0 && mb == 0)) {
1723 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1724 } else {
1725 TCGv t0, t1;
1726 target_ulong mask;
1727
a7812ae4 1728 t0 = tcg_temp_new();
54843a58 1729 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
a7812ae4 1730 t1 = tcg_temp_new();
d03ef511
AJ
1731 mask = MASK(mb, me);
1732 tcg_gen_andi_tl(t0, t0, mask);
1733 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], ~mask);
1734 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1735 tcg_temp_free(t0);
1736 tcg_temp_free(t1);
51789c41 1737 }
51789c41 1738 if (unlikely(Rc(ctx->opcode) != 0))
d03ef511 1739 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
d9bce9d9 1740}
36081602 1741GEN_PPC64_R4(rldimi, 0x1E, 0x06);
d9bce9d9
JM
1742#endif
1743
79aceca5 1744/*** Integer shift ***/
99e300ef 1745
54623277 1746/* slw & slw. */
99e300ef 1747static void gen_slw(DisasContext *ctx)
26d67362 1748{
7fd6bf7d 1749 TCGv t0, t1;
26d67362 1750
7fd6bf7d
AJ
1751 t0 = tcg_temp_new();
1752 /* AND rS with a mask that is 0 when rB >= 0x20 */
1753#if defined(TARGET_PPC64)
1754 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
1755 tcg_gen_sari_tl(t0, t0, 0x3f);
1756#else
1757 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
1758 tcg_gen_sari_tl(t0, t0, 0x1f);
1759#endif
1760 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1761 t1 = tcg_temp_new();
1762 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
1763 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1764 tcg_temp_free(t1);
fea0c503 1765 tcg_temp_free(t0);
7fd6bf7d 1766 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
26d67362
AJ
1767 if (unlikely(Rc(ctx->opcode) != 0))
1768 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1769}
99e300ef 1770
54623277 1771/* sraw & sraw. */
99e300ef 1772static void gen_sraw(DisasContext *ctx)
26d67362 1773{
d15f74fb 1774 gen_helper_sraw(cpu_gpr[rA(ctx->opcode)], cpu_env,
a7812ae4 1775 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
1776 if (unlikely(Rc(ctx->opcode) != 0))
1777 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1778}
99e300ef 1779
54623277 1780/* srawi & srawi. */
99e300ef 1781static void gen_srawi(DisasContext *ctx)
79aceca5 1782{
26d67362 1783 int sh = SH(ctx->opcode);
ba4af3e4
RH
1784 TCGv dst = cpu_gpr[rA(ctx->opcode)];
1785 TCGv src = cpu_gpr[rS(ctx->opcode)];
1786 if (sh == 0) {
1787 tcg_gen_mov_tl(dst, src);
da91a00f 1788 tcg_gen_movi_tl(cpu_ca, 0);
26d67362 1789 } else {
ba4af3e4
RH
1790 TCGv t0;
1791 tcg_gen_ext32s_tl(dst, src);
1792 tcg_gen_andi_tl(cpu_ca, dst, (1ULL << sh) - 1);
1793 t0 = tcg_temp_new();
1794 tcg_gen_sari_tl(t0, dst, TARGET_LONG_BITS - 1);
1795 tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
1796 tcg_temp_free(t0);
1797 tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
1798 tcg_gen_sari_tl(dst, dst, sh);
1799 }
1800 if (unlikely(Rc(ctx->opcode) != 0)) {
1801 gen_set_Rc0(ctx, dst);
d9bce9d9 1802 }
79aceca5 1803}
99e300ef 1804
54623277 1805/* srw & srw. */
99e300ef 1806static void gen_srw(DisasContext *ctx)
26d67362 1807{
fea0c503 1808 TCGv t0, t1;
d9bce9d9 1809
7fd6bf7d
AJ
1810 t0 = tcg_temp_new();
1811 /* AND rS with a mask that is 0 when rB >= 0x20 */
1812#if defined(TARGET_PPC64)
1813 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
1814 tcg_gen_sari_tl(t0, t0, 0x3f);
1815#else
1816 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
1817 tcg_gen_sari_tl(t0, t0, 0x1f);
1818#endif
1819 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1820 tcg_gen_ext32u_tl(t0, t0);
a7812ae4 1821 t1 = tcg_temp_new();
7fd6bf7d
AJ
1822 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
1823 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
fea0c503 1824 tcg_temp_free(t1);
fea0c503 1825 tcg_temp_free(t0);
26d67362
AJ
1826 if (unlikely(Rc(ctx->opcode) != 0))
1827 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1828}
54623277 1829
d9bce9d9
JM
1830#if defined(TARGET_PPC64)
1831/* sld & sld. */
99e300ef 1832static void gen_sld(DisasContext *ctx)
26d67362 1833{
7fd6bf7d 1834 TCGv t0, t1;
26d67362 1835
7fd6bf7d
AJ
1836 t0 = tcg_temp_new();
1837 /* AND rS with a mask that is 0 when rB >= 0x40 */
1838 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
1839 tcg_gen_sari_tl(t0, t0, 0x3f);
1840 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1841 t1 = tcg_temp_new();
1842 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
1843 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1844 tcg_temp_free(t1);
fea0c503 1845 tcg_temp_free(t0);
26d67362
AJ
1846 if (unlikely(Rc(ctx->opcode) != 0))
1847 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1848}
99e300ef 1849
54623277 1850/* srad & srad. */
99e300ef 1851static void gen_srad(DisasContext *ctx)
26d67362 1852{
d15f74fb 1853 gen_helper_srad(cpu_gpr[rA(ctx->opcode)], cpu_env,
a7812ae4 1854 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
1855 if (unlikely(Rc(ctx->opcode) != 0))
1856 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1857}
d9bce9d9 1858/* sradi & sradi. */
636aa200 1859static inline void gen_sradi(DisasContext *ctx, int n)
d9bce9d9 1860{
26d67362 1861 int sh = SH(ctx->opcode) + (n << 5);
ba4af3e4
RH
1862 TCGv dst = cpu_gpr[rA(ctx->opcode)];
1863 TCGv src = cpu_gpr[rS(ctx->opcode)];
1864 if (sh == 0) {
1865 tcg_gen_mov_tl(dst, src);
da91a00f 1866 tcg_gen_movi_tl(cpu_ca, 0);
26d67362 1867 } else {
ba4af3e4
RH
1868 TCGv t0;
1869 tcg_gen_andi_tl(cpu_ca, src, (1ULL << sh) - 1);
1870 t0 = tcg_temp_new();
1871 tcg_gen_sari_tl(t0, src, TARGET_LONG_BITS - 1);
1872 tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
1873 tcg_temp_free(t0);
1874 tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
1875 tcg_gen_sari_tl(dst, src, sh);
1876 }
1877 if (unlikely(Rc(ctx->opcode) != 0)) {
1878 gen_set_Rc0(ctx, dst);
d9bce9d9 1879 }
d9bce9d9 1880}
e8eaa2c0
BS
1881
1882static void gen_sradi0(DisasContext *ctx)
d9bce9d9
JM
1883{
1884 gen_sradi(ctx, 0);
1885}
e8eaa2c0
BS
1886
1887static void gen_sradi1(DisasContext *ctx)
d9bce9d9
JM
1888{
1889 gen_sradi(ctx, 1);
1890}
99e300ef 1891
54623277 1892/* srd & srd. */
99e300ef 1893static void gen_srd(DisasContext *ctx)
26d67362 1894{
7fd6bf7d 1895 TCGv t0, t1;
26d67362 1896
7fd6bf7d
AJ
1897 t0 = tcg_temp_new();
1898 /* AND rS with a mask that is 0 when rB >= 0x40 */
1899 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
1900 tcg_gen_sari_tl(t0, t0, 0x3f);
1901 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
1902 t1 = tcg_temp_new();
1903 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
1904 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
1905 tcg_temp_free(t1);
fea0c503 1906 tcg_temp_free(t0);
26d67362
AJ
1907 if (unlikely(Rc(ctx->opcode) != 0))
1908 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1909}
d9bce9d9 1910#endif
79aceca5
FB
1911
1912/*** Floating-Point arithmetic ***/
7c58044c 1913#define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
99e300ef 1914static void gen_f##name(DisasContext *ctx) \
9a64fbe4 1915{ \
76a66253 1916 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 1917 gen_exception(ctx, POWERPC_EXCP_FPU); \
3cc62370
FB
1918 return; \
1919 } \
eb44b959
AJ
1920 /* NIP cannot be restored if the memory exception comes from an helper */ \
1921 gen_update_nip(ctx, ctx->nip - 4); \
7c58044c 1922 gen_reset_fpstatus(); \
8e703949
BS
1923 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1924 cpu_fpr[rA(ctx->opcode)], \
af12906f 1925 cpu_fpr[rC(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]); \
4ecc3190 1926 if (isfloat) { \
8e703949
BS
1927 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1928 cpu_fpr[rD(ctx->opcode)]); \
4ecc3190 1929 } \
af12906f
AJ
1930 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], set_fprf, \
1931 Rc(ctx->opcode) != 0); \
9a64fbe4
FB
1932}
1933
7c58044c
JM
1934#define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
1935_GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type); \
1936_GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type);
9a64fbe4 1937
7c58044c 1938#define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
99e300ef 1939static void gen_f##name(DisasContext *ctx) \
9a64fbe4 1940{ \
76a66253 1941 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 1942 gen_exception(ctx, POWERPC_EXCP_FPU); \
3cc62370
FB
1943 return; \
1944 } \
eb44b959
AJ
1945 /* NIP cannot be restored if the memory exception comes from an helper */ \
1946 gen_update_nip(ctx, ctx->nip - 4); \
7c58044c 1947 gen_reset_fpstatus(); \
8e703949
BS
1948 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1949 cpu_fpr[rA(ctx->opcode)], \
af12906f 1950 cpu_fpr[rB(ctx->opcode)]); \
4ecc3190 1951 if (isfloat) { \
8e703949
BS
1952 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1953 cpu_fpr[rD(ctx->opcode)]); \
4ecc3190 1954 } \
af12906f
AJ
1955 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
1956 set_fprf, Rc(ctx->opcode) != 0); \
9a64fbe4 1957}
7c58044c
JM
1958#define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
1959_GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
1960_GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
9a64fbe4 1961
7c58044c 1962#define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
99e300ef 1963static void gen_f##name(DisasContext *ctx) \
9a64fbe4 1964{ \
76a66253 1965 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 1966 gen_exception(ctx, POWERPC_EXCP_FPU); \
3cc62370
FB
1967 return; \
1968 } \
eb44b959
AJ
1969 /* NIP cannot be restored if the memory exception comes from an helper */ \
1970 gen_update_nip(ctx, ctx->nip - 4); \
7c58044c 1971 gen_reset_fpstatus(); \
8e703949
BS
1972 gen_helper_f##op(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1973 cpu_fpr[rA(ctx->opcode)], \
1974 cpu_fpr[rC(ctx->opcode)]); \
4ecc3190 1975 if (isfloat) { \
8e703949
BS
1976 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1977 cpu_fpr[rD(ctx->opcode)]); \
4ecc3190 1978 } \
af12906f
AJ
1979 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
1980 set_fprf, Rc(ctx->opcode) != 0); \
9a64fbe4 1981}
7c58044c
JM
1982#define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
1983_GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type); \
1984_GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type);
9a64fbe4 1985
7c58044c 1986#define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
99e300ef 1987static void gen_f##name(DisasContext *ctx) \
9a64fbe4 1988{ \
76a66253 1989 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 1990 gen_exception(ctx, POWERPC_EXCP_FPU); \
3cc62370
FB
1991 return; \
1992 } \
eb44b959
AJ
1993 /* NIP cannot be restored if the memory exception comes from an helper */ \
1994 gen_update_nip(ctx, ctx->nip - 4); \
7c58044c 1995 gen_reset_fpstatus(); \
8e703949
BS
1996 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env, \
1997 cpu_fpr[rB(ctx->opcode)]); \
af12906f
AJ
1998 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
1999 set_fprf, Rc(ctx->opcode) != 0); \
79aceca5
FB
2000}
2001
7c58044c 2002#define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
99e300ef 2003static void gen_f##name(DisasContext *ctx) \
9a64fbe4 2004{ \
76a66253 2005 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 2006 gen_exception(ctx, POWERPC_EXCP_FPU); \
3cc62370
FB
2007 return; \
2008 } \
eb44b959
AJ
2009 /* NIP cannot be restored if the memory exception comes from an helper */ \
2010 gen_update_nip(ctx, ctx->nip - 4); \
7c58044c 2011 gen_reset_fpstatus(); \
8e703949
BS
2012 gen_helper_f##name(cpu_fpr[rD(ctx->opcode)], cpu_env, \
2013 cpu_fpr[rB(ctx->opcode)]); \
af12906f
AJ
2014 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], \
2015 set_fprf, Rc(ctx->opcode) != 0); \
79aceca5
FB
2016}
2017
9a64fbe4 2018/* fadd - fadds */
7c58044c 2019GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT);
4ecc3190 2020/* fdiv - fdivs */
7c58044c 2021GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT);
4ecc3190 2022/* fmul - fmuls */
7c58044c 2023GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT);
79aceca5 2024
d7e4b87e 2025/* fre */
7c58044c 2026GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT);
d7e4b87e 2027
a750fc0b 2028/* fres */
7c58044c 2029GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES);
79aceca5 2030
a750fc0b 2031/* frsqrte */
7c58044c
JM
2032GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE);
2033
2034/* frsqrtes */
99e300ef 2035static void gen_frsqrtes(DisasContext *ctx)
7c58044c 2036{
af12906f 2037 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2038 gen_exception(ctx, POWERPC_EXCP_FPU);
af12906f
AJ
2039 return;
2040 }
eb44b959
AJ
2041 /* NIP cannot be restored if the memory exception comes from an helper */
2042 gen_update_nip(ctx, ctx->nip - 4);
af12906f 2043 gen_reset_fpstatus();
8e703949
BS
2044 gen_helper_frsqrte(cpu_fpr[rD(ctx->opcode)], cpu_env,
2045 cpu_fpr[rB(ctx->opcode)]);
2046 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,
2047 cpu_fpr[rD(ctx->opcode)]);
af12906f 2048 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
7c58044c 2049}
79aceca5 2050
a750fc0b 2051/* fsel */
7c58044c 2052_GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL);
4ecc3190 2053/* fsub - fsubs */
7c58044c 2054GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT);
79aceca5 2055/* Optional: */
99e300ef 2056
54623277 2057/* fsqrt */
99e300ef 2058static void gen_fsqrt(DisasContext *ctx)
c7d344af 2059{
76a66253 2060 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2061 gen_exception(ctx, POWERPC_EXCP_FPU);
c7d344af
FB
2062 return;
2063 }
eb44b959
AJ
2064 /* NIP cannot be restored if the memory exception comes from an helper */
2065 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2066 gen_reset_fpstatus();
8e703949
BS
2067 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_env,
2068 cpu_fpr[rB(ctx->opcode)]);
af12906f 2069 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
c7d344af 2070}
79aceca5 2071
99e300ef 2072static void gen_fsqrts(DisasContext *ctx)
79aceca5 2073{
76a66253 2074 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2075 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2076 return;
2077 }
eb44b959
AJ
2078 /* NIP cannot be restored if the memory exception comes from an helper */
2079 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2080 gen_reset_fpstatus();
8e703949
BS
2081 gen_helper_fsqrt(cpu_fpr[rD(ctx->opcode)], cpu_env,
2082 cpu_fpr[rB(ctx->opcode)]);
2083 gen_helper_frsp(cpu_fpr[rD(ctx->opcode)], cpu_env,
2084 cpu_fpr[rD(ctx->opcode)]);
af12906f 2085 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 1, Rc(ctx->opcode) != 0);
79aceca5
FB
2086}
2087
2088/*** Floating-Point multiply-and-add ***/
4ecc3190 2089/* fmadd - fmadds */
7c58044c 2090GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT);
4ecc3190 2091/* fmsub - fmsubs */
7c58044c 2092GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT);
4ecc3190 2093/* fnmadd - fnmadds */
7c58044c 2094GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT);
4ecc3190 2095/* fnmsub - fnmsubs */
7c58044c 2096GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT);
79aceca5
FB
2097
2098/*** Floating-Point round & convert ***/
2099/* fctiw */
7c58044c 2100GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT);
79aceca5 2101/* fctiwz */
7c58044c 2102GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT);
79aceca5 2103/* frsp */
7c58044c 2104GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT);
426613db
JM
2105#if defined(TARGET_PPC64)
2106/* fcfid */
7c58044c 2107GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B);
426613db 2108/* fctid */
7c58044c 2109GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B);
426613db 2110/* fctidz */
7c58044c 2111GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B);
426613db 2112#endif
79aceca5 2113
d7e4b87e 2114/* frin */
7c58044c 2115GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT);
d7e4b87e 2116/* friz */
7c58044c 2117GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT);
d7e4b87e 2118/* frip */
7c58044c 2119GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT);
d7e4b87e 2120/* frim */
7c58044c 2121GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT);
d7e4b87e 2122
79aceca5 2123/*** Floating-Point compare ***/
99e300ef 2124
54623277 2125/* fcmpo */
99e300ef 2126static void gen_fcmpo(DisasContext *ctx)
79aceca5 2127{
330c483b 2128 TCGv_i32 crf;
76a66253 2129 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2130 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2131 return;
2132 }
eb44b959
AJ
2133 /* NIP cannot be restored if the memory exception comes from an helper */
2134 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2135 gen_reset_fpstatus();
9a819377 2136 crf = tcg_const_i32(crfD(ctx->opcode));
8e703949
BS
2137 gen_helper_fcmpo(cpu_env, cpu_fpr[rA(ctx->opcode)],
2138 cpu_fpr[rB(ctx->opcode)], crf);
330c483b 2139 tcg_temp_free_i32(crf);
8e703949 2140 gen_helper_float_check_status(cpu_env);
79aceca5
FB
2141}
2142
2143/* fcmpu */
99e300ef 2144static void gen_fcmpu(DisasContext *ctx)
79aceca5 2145{
330c483b 2146 TCGv_i32 crf;
76a66253 2147 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2148 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2149 return;
2150 }
eb44b959
AJ
2151 /* NIP cannot be restored if the memory exception comes from an helper */
2152 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2153 gen_reset_fpstatus();
9a819377 2154 crf = tcg_const_i32(crfD(ctx->opcode));
8e703949
BS
2155 gen_helper_fcmpu(cpu_env, cpu_fpr[rA(ctx->opcode)],
2156 cpu_fpr[rB(ctx->opcode)], crf);
330c483b 2157 tcg_temp_free_i32(crf);
8e703949 2158 gen_helper_float_check_status(cpu_env);
79aceca5
FB
2159}
2160
9a64fbe4
FB
2161/*** Floating-point move ***/
2162/* fabs */
7c58044c
JM
2163/* XXX: beware that fabs never checks for NaNs nor update FPSCR */
2164GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT);
9a64fbe4
FB
2165
2166/* fmr - fmr. */
7c58044c 2167/* XXX: beware that fmr never checks for NaNs nor update FPSCR */
99e300ef 2168static void gen_fmr(DisasContext *ctx)
9a64fbe4 2169{
76a66253 2170 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2171 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2172 return;
2173 }
af12906f
AJ
2174 tcg_gen_mov_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpr[rB(ctx->opcode)]);
2175 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
9a64fbe4
FB
2176}
2177
2178/* fnabs */
7c58044c
JM
2179/* XXX: beware that fnabs never checks for NaNs nor update FPSCR */
2180GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT);
9a64fbe4 2181/* fneg */
7c58044c
JM
2182/* XXX: beware that fneg never checks for NaNs nor update FPSCR */
2183GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT);
9a64fbe4 2184
79aceca5 2185/*** Floating-Point status & ctrl register ***/
99e300ef 2186
54623277 2187/* mcrfs */
99e300ef 2188static void gen_mcrfs(DisasContext *ctx)
79aceca5 2189{
30304420 2190 TCGv tmp = tcg_temp_new();
7c58044c
JM
2191 int bfa;
2192
76a66253 2193 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2194 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2195 return;
2196 }
7c58044c 2197 bfa = 4 * (7 - crfS(ctx->opcode));
30304420
DG
2198 tcg_gen_shri_tl(tmp, cpu_fpscr, bfa);
2199 tcg_gen_trunc_tl_i32(cpu_crf[crfD(ctx->opcode)], tmp);
2200 tcg_temp_free(tmp);
e1571908 2201 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], 0xf);
30304420 2202 tcg_gen_andi_tl(cpu_fpscr, cpu_fpscr, ~(0xF << bfa));
79aceca5
FB
2203}
2204
2205/* mffs */
99e300ef 2206static void gen_mffs(DisasContext *ctx)
79aceca5 2207{
76a66253 2208 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2209 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2210 return;
2211 }
7c58044c 2212 gen_reset_fpstatus();
30304420 2213 tcg_gen_extu_tl_i64(cpu_fpr[rD(ctx->opcode)], cpu_fpscr);
af12906f 2214 gen_compute_fprf(cpu_fpr[rD(ctx->opcode)], 0, Rc(ctx->opcode) != 0);
79aceca5
FB
2215}
2216
2217/* mtfsb0 */
99e300ef 2218static void gen_mtfsb0(DisasContext *ctx)
79aceca5 2219{
fb0eaffc 2220 uint8_t crb;
3b46e624 2221
76a66253 2222 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2223 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2224 return;
2225 }
6e35d524 2226 crb = 31 - crbD(ctx->opcode);
7c58044c 2227 gen_reset_fpstatus();
6e35d524 2228 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX)) {
eb44b959
AJ
2229 TCGv_i32 t0;
2230 /* NIP cannot be restored if the memory exception comes from an helper */
2231 gen_update_nip(ctx, ctx->nip - 4);
2232 t0 = tcg_const_i32(crb);
8e703949 2233 gen_helper_fpscr_clrbit(cpu_env, t0);
6e35d524
AJ
2234 tcg_temp_free_i32(t0);
2235 }
7c58044c 2236 if (unlikely(Rc(ctx->opcode) != 0)) {
30304420
DG
2237 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2238 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
7c58044c 2239 }
79aceca5
FB
2240}
2241
2242/* mtfsb1 */
99e300ef 2243static void gen_mtfsb1(DisasContext *ctx)
79aceca5 2244{
fb0eaffc 2245 uint8_t crb;
3b46e624 2246
76a66253 2247 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2248 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2249 return;
2250 }
6e35d524 2251 crb = 31 - crbD(ctx->opcode);
7c58044c
JM
2252 gen_reset_fpstatus();
2253 /* XXX: we pretend we can only do IEEE floating-point computations */
af12906f 2254 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX && crb != FPSCR_NI)) {
eb44b959
AJ
2255 TCGv_i32 t0;
2256 /* NIP cannot be restored if the memory exception comes from an helper */
2257 gen_update_nip(ctx, ctx->nip - 4);
2258 t0 = tcg_const_i32(crb);
8e703949 2259 gen_helper_fpscr_setbit(cpu_env, t0);
0f2f39c2 2260 tcg_temp_free_i32(t0);
af12906f 2261 }
7c58044c 2262 if (unlikely(Rc(ctx->opcode) != 0)) {
30304420
DG
2263 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2264 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
7c58044c
JM
2265 }
2266 /* We can raise a differed exception */
8e703949 2267 gen_helper_float_check_status(cpu_env);
79aceca5
FB
2268}
2269
2270/* mtfsf */
99e300ef 2271static void gen_mtfsf(DisasContext *ctx)
79aceca5 2272{
0f2f39c2 2273 TCGv_i32 t0;
4911012d 2274 int L = ctx->opcode & 0x02000000;
af12906f 2275
76a66253 2276 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2277 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2278 return;
2279 }
eb44b959
AJ
2280 /* NIP cannot be restored if the memory exception comes from an helper */
2281 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2282 gen_reset_fpstatus();
4911012d
BS
2283 if (L)
2284 t0 = tcg_const_i32(0xff);
2285 else
2286 t0 = tcg_const_i32(FM(ctx->opcode));
8e703949 2287 gen_helper_store_fpscr(cpu_env, cpu_fpr[rB(ctx->opcode)], t0);
0f2f39c2 2288 tcg_temp_free_i32(t0);
7c58044c 2289 if (unlikely(Rc(ctx->opcode) != 0)) {
30304420
DG
2290 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2291 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
7c58044c
JM
2292 }
2293 /* We can raise a differed exception */
8e703949 2294 gen_helper_float_check_status(cpu_env);
79aceca5
FB
2295}
2296
2297/* mtfsfi */
99e300ef 2298static void gen_mtfsfi(DisasContext *ctx)
79aceca5 2299{
7c58044c 2300 int bf, sh;
0f2f39c2
AJ
2301 TCGv_i64 t0;
2302 TCGv_i32 t1;
7c58044c 2303
76a66253 2304 if (unlikely(!ctx->fpu_enabled)) {
e06fcd75 2305 gen_exception(ctx, POWERPC_EXCP_FPU);
3cc62370
FB
2306 return;
2307 }
7c58044c
JM
2308 bf = crbD(ctx->opcode) >> 2;
2309 sh = 7 - bf;
eb44b959
AJ
2310 /* NIP cannot be restored if the memory exception comes from an helper */
2311 gen_update_nip(ctx, ctx->nip - 4);
7c58044c 2312 gen_reset_fpstatus();
0f2f39c2 2313 t0 = tcg_const_i64(FPIMM(ctx->opcode) << (4 * sh));
af12906f 2314 t1 = tcg_const_i32(1 << sh);
8e703949 2315 gen_helper_store_fpscr(cpu_env, t0, t1);
0f2f39c2
AJ
2316 tcg_temp_free_i64(t0);
2317 tcg_temp_free_i32(t1);
7c58044c 2318 if (unlikely(Rc(ctx->opcode) != 0)) {
30304420
DG
2319 tcg_gen_trunc_tl_i32(cpu_crf[1], cpu_fpscr);
2320 tcg_gen_shri_i32(cpu_crf[1], cpu_crf[1], FPSCR_OX);
7c58044c
JM
2321 }
2322 /* We can raise a differed exception */
8e703949 2323 gen_helper_float_check_status(cpu_env);
79aceca5
FB
2324}
2325
76a66253
JM
2326/*** Addressing modes ***/
2327/* Register indirect with immediate index : EA = (rA|0) + SIMM */
636aa200
BS
2328static inline void gen_addr_imm_index(DisasContext *ctx, TCGv EA,
2329 target_long maskl)
76a66253
JM
2330{
2331 target_long simm = SIMM(ctx->opcode);
2332
be147d08 2333 simm &= ~maskl;
76db3ba4 2334 if (rA(ctx->opcode) == 0) {
c791fe84
RH
2335 if (NARROW_MODE(ctx)) {
2336 simm = (uint32_t)simm;
2337 }
e2be8d8d 2338 tcg_gen_movi_tl(EA, simm);
76db3ba4 2339 } else if (likely(simm != 0)) {
e2be8d8d 2340 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm);
c791fe84 2341 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2342 tcg_gen_ext32u_tl(EA, EA);
2343 }
76db3ba4 2344 } else {
c791fe84 2345 if (NARROW_MODE(ctx)) {
76db3ba4 2346 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
c791fe84
RH
2347 } else {
2348 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2349 }
76db3ba4 2350 }
76a66253
JM
2351}
2352
636aa200 2353static inline void gen_addr_reg_index(DisasContext *ctx, TCGv EA)
76a66253 2354{
76db3ba4 2355 if (rA(ctx->opcode) == 0) {
c791fe84 2356 if (NARROW_MODE(ctx)) {
76db3ba4 2357 tcg_gen_ext32u_tl(EA, cpu_gpr[rB(ctx->opcode)]);
c791fe84
RH
2358 } else {
2359 tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2360 }
76db3ba4 2361 } else {
e2be8d8d 2362 tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
c791fe84 2363 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2364 tcg_gen_ext32u_tl(EA, EA);
2365 }
76db3ba4 2366 }
76a66253
JM
2367}
2368
636aa200 2369static inline void gen_addr_register(DisasContext *ctx, TCGv EA)
76a66253 2370{
76db3ba4 2371 if (rA(ctx->opcode) == 0) {
e2be8d8d 2372 tcg_gen_movi_tl(EA, 0);
c791fe84
RH
2373 } else if (NARROW_MODE(ctx)) {
2374 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
76db3ba4 2375 } else {
c791fe84 2376 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
76db3ba4
AJ
2377 }
2378}
2379
636aa200
BS
2380static inline void gen_addr_add(DisasContext *ctx, TCGv ret, TCGv arg1,
2381 target_long val)
76db3ba4
AJ
2382{
2383 tcg_gen_addi_tl(ret, arg1, val);
c791fe84 2384 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2385 tcg_gen_ext32u_tl(ret, ret);
2386 }
76a66253
JM
2387}
2388
636aa200 2389static inline void gen_check_align(DisasContext *ctx, TCGv EA, int mask)
cf360a32
AJ
2390{
2391 int l1 = gen_new_label();
2392 TCGv t0 = tcg_temp_new();
2393 TCGv_i32 t1, t2;
2394 /* NIP cannot be restored if the memory exception comes from an helper */
2395 gen_update_nip(ctx, ctx->nip - 4);
2396 tcg_gen_andi_tl(t0, EA, mask);
2397 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2398 t1 = tcg_const_i32(POWERPC_EXCP_ALIGN);
2399 t2 = tcg_const_i32(0);
e5f17ac6 2400 gen_helper_raise_exception_err(cpu_env, t1, t2);
cf360a32
AJ
2401 tcg_temp_free_i32(t1);
2402 tcg_temp_free_i32(t2);
2403 gen_set_label(l1);
2404 tcg_temp_free(t0);
2405}
2406
7863667f 2407/*** Integer load ***/
636aa200 2408static inline void gen_qemu_ld8u(DisasContext *ctx, TCGv arg1, TCGv arg2)
76db3ba4
AJ
2409{
2410 tcg_gen_qemu_ld8u(arg1, arg2, ctx->mem_idx);
2411}
2412
636aa200 2413static inline void gen_qemu_ld8s(DisasContext *ctx, TCGv arg1, TCGv arg2)
76db3ba4
AJ
2414{
2415 tcg_gen_qemu_ld8s(arg1, arg2, ctx->mem_idx);
2416}
2417
636aa200 2418static inline void gen_qemu_ld16u(DisasContext *ctx, TCGv arg1, TCGv arg2)
76db3ba4
AJ
2419{
2420 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2421 if (unlikely(ctx->le_mode)) {
fa3966a3 2422 tcg_gen_bswap16_tl(arg1, arg1);
76db3ba4 2423 }
b61f2753
AJ
2424}
2425
636aa200 2426static inline void gen_qemu_ld16s(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2427{
76db3ba4 2428 if (unlikely(ctx->le_mode)) {
76db3ba4 2429 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
fa3966a3 2430 tcg_gen_bswap16_tl(arg1, arg1);
76db3ba4 2431 tcg_gen_ext16s_tl(arg1, arg1);
76db3ba4
AJ
2432 } else {
2433 tcg_gen_qemu_ld16s(arg1, arg2, ctx->mem_idx);
2434 }
b61f2753
AJ
2435}
2436
636aa200 2437static inline void gen_qemu_ld32u(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2438{
76db3ba4
AJ
2439 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2440 if (unlikely(ctx->le_mode)) {
fa3966a3 2441 tcg_gen_bswap32_tl(arg1, arg1);
76db3ba4 2442 }
b61f2753
AJ
2443}
2444
76db3ba4 2445#if defined(TARGET_PPC64)
636aa200 2446static inline void gen_qemu_ld32s(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2447{
a457e7ee 2448 if (unlikely(ctx->le_mode)) {
76db3ba4 2449 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
fa3966a3
AJ
2450 tcg_gen_bswap32_tl(arg1, arg1);
2451 tcg_gen_ext32s_tl(arg1, arg1);
b61f2753 2452 } else
76db3ba4 2453 tcg_gen_qemu_ld32s(arg1, arg2, ctx->mem_idx);
b61f2753 2454}
76db3ba4 2455#endif
b61f2753 2456
636aa200 2457static inline void gen_qemu_ld64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
b61f2753 2458{
76db3ba4
AJ
2459 tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx);
2460 if (unlikely(ctx->le_mode)) {
66896cb8 2461 tcg_gen_bswap64_i64(arg1, arg1);
76db3ba4 2462 }
b61f2753
AJ
2463}
2464
636aa200 2465static inline void gen_qemu_st8(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2466{
76db3ba4 2467 tcg_gen_qemu_st8(arg1, arg2, ctx->mem_idx);
b61f2753
AJ
2468}
2469
636aa200 2470static inline void gen_qemu_st16(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2471{
76db3ba4 2472 if (unlikely(ctx->le_mode)) {
76db3ba4
AJ
2473 TCGv t0 = tcg_temp_new();
2474 tcg_gen_ext16u_tl(t0, arg1);
fa3966a3 2475 tcg_gen_bswap16_tl(t0, t0);
76db3ba4
AJ
2476 tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
2477 tcg_temp_free(t0);
76db3ba4
AJ
2478 } else {
2479 tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
2480 }
b61f2753
AJ
2481}
2482
636aa200 2483static inline void gen_qemu_st32(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2484{
76db3ba4 2485 if (unlikely(ctx->le_mode)) {
fa3966a3
AJ
2486 TCGv t0 = tcg_temp_new();
2487 tcg_gen_ext32u_tl(t0, arg1);
2488 tcg_gen_bswap32_tl(t0, t0);
76db3ba4
AJ
2489 tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
2490 tcg_temp_free(t0);
76db3ba4
AJ
2491 } else {
2492 tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
2493 }
b61f2753
AJ
2494}
2495
636aa200 2496static inline void gen_qemu_st64(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
b61f2753 2497{
76db3ba4 2498 if (unlikely(ctx->le_mode)) {
a7812ae4 2499 TCGv_i64 t0 = tcg_temp_new_i64();
66896cb8 2500 tcg_gen_bswap64_i64(t0, arg1);
76db3ba4 2501 tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx);
a7812ae4 2502 tcg_temp_free_i64(t0);
b61f2753 2503 } else
76db3ba4 2504 tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx);
b61f2753
AJ
2505}
2506
0c8aacd4 2507#define GEN_LD(name, ldop, opc, type) \
99e300ef 2508static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 2509{ \
76db3ba4
AJ
2510 TCGv EA; \
2511 gen_set_access_type(ctx, ACCESS_INT); \
2512 EA = tcg_temp_new(); \
2513 gen_addr_imm_index(ctx, EA, 0); \
2514 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753 2515 tcg_temp_free(EA); \
79aceca5
FB
2516}
2517
0c8aacd4 2518#define GEN_LDU(name, ldop, opc, type) \
99e300ef 2519static void glue(gen_, name##u)(DisasContext *ctx) \
79aceca5 2520{ \
b61f2753 2521 TCGv EA; \
76a66253
JM
2522 if (unlikely(rA(ctx->opcode) == 0 || \
2523 rA(ctx->opcode) == rD(ctx->opcode))) { \
e06fcd75 2524 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2525 return; \
9a64fbe4 2526 } \
76db3ba4 2527 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2528 EA = tcg_temp_new(); \
9d53c753 2529 if (type == PPC_64B) \
76db3ba4 2530 gen_addr_imm_index(ctx, EA, 0x03); \
9d53c753 2531 else \
76db3ba4
AJ
2532 gen_addr_imm_index(ctx, EA, 0); \
2533 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753
AJ
2534 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2535 tcg_temp_free(EA); \
79aceca5
FB
2536}
2537
0c8aacd4 2538#define GEN_LDUX(name, ldop, opc2, opc3, type) \
99e300ef 2539static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 2540{ \
b61f2753 2541 TCGv EA; \
76a66253
JM
2542 if (unlikely(rA(ctx->opcode) == 0 || \
2543 rA(ctx->opcode) == rD(ctx->opcode))) { \
e06fcd75 2544 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2545 return; \
9a64fbe4 2546 } \
76db3ba4 2547 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2548 EA = tcg_temp_new(); \
76db3ba4
AJ
2549 gen_addr_reg_index(ctx, EA); \
2550 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753
AJ
2551 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2552 tcg_temp_free(EA); \
79aceca5
FB
2553}
2554
cd6e9320 2555#define GEN_LDX_E(name, ldop, opc2, opc3, type, type2) \
99e300ef 2556static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 2557{ \
76db3ba4
AJ
2558 TCGv EA; \
2559 gen_set_access_type(ctx, ACCESS_INT); \
2560 EA = tcg_temp_new(); \
2561 gen_addr_reg_index(ctx, EA); \
2562 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753 2563 tcg_temp_free(EA); \
79aceca5 2564}
cd6e9320
TH
2565#define GEN_LDX(name, ldop, opc2, opc3, type) \
2566 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE)
79aceca5 2567
0c8aacd4
AJ
2568#define GEN_LDS(name, ldop, op, type) \
2569GEN_LD(name, ldop, op | 0x20, type); \
2570GEN_LDU(name, ldop, op | 0x21, type); \
2571GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2572GEN_LDX(name, ldop, 0x17, op | 0x00, type)
79aceca5
FB
2573
2574/* lbz lbzu lbzux lbzx */
0c8aacd4 2575GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER);
79aceca5 2576/* lha lhau lhaux lhax */
0c8aacd4 2577GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER);
79aceca5 2578/* lhz lhzu lhzux lhzx */
0c8aacd4 2579GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER);
79aceca5 2580/* lwz lwzu lwzux lwzx */
0c8aacd4 2581GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER);
d9bce9d9 2582#if defined(TARGET_PPC64)
d9bce9d9 2583/* lwaux */
0c8aacd4 2584GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B);
d9bce9d9 2585/* lwax */
0c8aacd4 2586GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B);
d9bce9d9 2587/* ldux */
0c8aacd4 2588GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B);
d9bce9d9 2589/* ldx */
0c8aacd4 2590GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B);
99e300ef
BS
2591
2592static void gen_ld(DisasContext *ctx)
d9bce9d9 2593{
b61f2753 2594 TCGv EA;
d9bce9d9
JM
2595 if (Rc(ctx->opcode)) {
2596 if (unlikely(rA(ctx->opcode) == 0 ||
2597 rA(ctx->opcode) == rD(ctx->opcode))) {
e06fcd75 2598 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
d9bce9d9
JM
2599 return;
2600 }
2601 }
76db3ba4 2602 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2603 EA = tcg_temp_new();
76db3ba4 2604 gen_addr_imm_index(ctx, EA, 0x03);
d9bce9d9
JM
2605 if (ctx->opcode & 0x02) {
2606 /* lwa (lwau is undefined) */
76db3ba4 2607 gen_qemu_ld32s(ctx, cpu_gpr[rD(ctx->opcode)], EA);
d9bce9d9
JM
2608 } else {
2609 /* ld - ldu */
76db3ba4 2610 gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], EA);
d9bce9d9 2611 }
d9bce9d9 2612 if (Rc(ctx->opcode))
b61f2753
AJ
2613 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2614 tcg_temp_free(EA);
d9bce9d9 2615}
99e300ef 2616
54623277 2617/* lq */
99e300ef 2618static void gen_lq(DisasContext *ctx)
be147d08
JM
2619{
2620#if defined(CONFIG_USER_ONLY)
e06fcd75 2621 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2622#else
2623 int ra, rd;
b61f2753 2624 TCGv EA;
be147d08
JM
2625
2626 /* Restore CPU state */
76db3ba4 2627 if (unlikely(ctx->mem_idx == 0)) {
e06fcd75 2628 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2629 return;
2630 }
2631 ra = rA(ctx->opcode);
2632 rd = rD(ctx->opcode);
2633 if (unlikely((rd & 1) || rd == ra)) {
e06fcd75 2634 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
be147d08
JM
2635 return;
2636 }
76db3ba4 2637 if (unlikely(ctx->le_mode)) {
be147d08 2638 /* Little-endian mode is not handled */
e06fcd75 2639 gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
be147d08
JM
2640 return;
2641 }
76db3ba4 2642 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2643 EA = tcg_temp_new();
76db3ba4
AJ
2644 gen_addr_imm_index(ctx, EA, 0x0F);
2645 gen_qemu_ld64(ctx, cpu_gpr[rd], EA);
2646 gen_addr_add(ctx, EA, EA, 8);
2647 gen_qemu_ld64(ctx, cpu_gpr[rd+1], EA);
b61f2753 2648 tcg_temp_free(EA);
be147d08
JM
2649#endif
2650}
d9bce9d9 2651#endif
79aceca5
FB
2652
2653/*** Integer store ***/
0c8aacd4 2654#define GEN_ST(name, stop, opc, type) \
99e300ef 2655static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 2656{ \
76db3ba4
AJ
2657 TCGv EA; \
2658 gen_set_access_type(ctx, ACCESS_INT); \
2659 EA = tcg_temp_new(); \
2660 gen_addr_imm_index(ctx, EA, 0); \
2661 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753 2662 tcg_temp_free(EA); \
79aceca5
FB
2663}
2664
0c8aacd4 2665#define GEN_STU(name, stop, opc, type) \
99e300ef 2666static void glue(gen_, stop##u)(DisasContext *ctx) \
79aceca5 2667{ \
b61f2753 2668 TCGv EA; \
76a66253 2669 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 2670 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2671 return; \
9a64fbe4 2672 } \
76db3ba4 2673 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2674 EA = tcg_temp_new(); \
9d53c753 2675 if (type == PPC_64B) \
76db3ba4 2676 gen_addr_imm_index(ctx, EA, 0x03); \
9d53c753 2677 else \
76db3ba4
AJ
2678 gen_addr_imm_index(ctx, EA, 0); \
2679 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753
AJ
2680 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2681 tcg_temp_free(EA); \
79aceca5
FB
2682}
2683
0c8aacd4 2684#define GEN_STUX(name, stop, opc2, opc3, type) \
99e300ef 2685static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 2686{ \
b61f2753 2687 TCGv EA; \
76a66253 2688 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 2689 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2690 return; \
9a64fbe4 2691 } \
76db3ba4 2692 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2693 EA = tcg_temp_new(); \
76db3ba4
AJ
2694 gen_addr_reg_index(ctx, EA); \
2695 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753
AJ
2696 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2697 tcg_temp_free(EA); \
79aceca5
FB
2698}
2699
cd6e9320
TH
2700#define GEN_STX_E(name, stop, opc2, opc3, type, type2) \
2701static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 2702{ \
76db3ba4
AJ
2703 TCGv EA; \
2704 gen_set_access_type(ctx, ACCESS_INT); \
2705 EA = tcg_temp_new(); \
2706 gen_addr_reg_index(ctx, EA); \
2707 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753 2708 tcg_temp_free(EA); \
79aceca5 2709}
cd6e9320
TH
2710#define GEN_STX(name, stop, opc2, opc3, type) \
2711 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE)
79aceca5 2712
0c8aacd4
AJ
2713#define GEN_STS(name, stop, op, type) \
2714GEN_ST(name, stop, op | 0x20, type); \
2715GEN_STU(name, stop, op | 0x21, type); \
2716GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2717GEN_STX(name, stop, 0x17, op | 0x00, type)
79aceca5
FB
2718
2719/* stb stbu stbux stbx */
0c8aacd4 2720GEN_STS(stb, st8, 0x06, PPC_INTEGER);
79aceca5 2721/* sth sthu sthux sthx */
0c8aacd4 2722GEN_STS(sth, st16, 0x0C, PPC_INTEGER);
79aceca5 2723/* stw stwu stwux stwx */
0c8aacd4 2724GEN_STS(stw, st32, 0x04, PPC_INTEGER);
d9bce9d9 2725#if defined(TARGET_PPC64)
0c8aacd4
AJ
2726GEN_STUX(std, st64, 0x15, 0x05, PPC_64B);
2727GEN_STX(std, st64, 0x15, 0x04, PPC_64B);
99e300ef
BS
2728
2729static void gen_std(DisasContext *ctx)
d9bce9d9 2730{
be147d08 2731 int rs;
b61f2753 2732 TCGv EA;
be147d08
JM
2733
2734 rs = rS(ctx->opcode);
2735 if ((ctx->opcode & 0x3) == 0x2) {
2736#if defined(CONFIG_USER_ONLY)
e06fcd75 2737 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2738#else
2739 /* stq */
76db3ba4 2740 if (unlikely(ctx->mem_idx == 0)) {
e06fcd75 2741 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2742 return;
2743 }
2744 if (unlikely(rs & 1)) {
e06fcd75 2745 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
d9bce9d9
JM
2746 return;
2747 }
76db3ba4 2748 if (unlikely(ctx->le_mode)) {
be147d08 2749 /* Little-endian mode is not handled */
e06fcd75 2750 gen_exception_err(ctx, POWERPC_EXCP_ALIGN, POWERPC_EXCP_ALIGN_LE);
be147d08
JM
2751 return;
2752 }
76db3ba4 2753 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2754 EA = tcg_temp_new();
76db3ba4
AJ
2755 gen_addr_imm_index(ctx, EA, 0x03);
2756 gen_qemu_st64(ctx, cpu_gpr[rs], EA);
2757 gen_addr_add(ctx, EA, EA, 8);
2758 gen_qemu_st64(ctx, cpu_gpr[rs+1], EA);
b61f2753 2759 tcg_temp_free(EA);
be147d08
JM
2760#endif
2761 } else {
2762 /* std / stdu */
2763 if (Rc(ctx->opcode)) {
2764 if (unlikely(rA(ctx->opcode) == 0)) {
e06fcd75 2765 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
be147d08
JM
2766 return;
2767 }
2768 }
76db3ba4 2769 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2770 EA = tcg_temp_new();
76db3ba4
AJ
2771 gen_addr_imm_index(ctx, EA, 0x03);
2772 gen_qemu_st64(ctx, cpu_gpr[rs], EA);
be147d08 2773 if (Rc(ctx->opcode))
b61f2753
AJ
2774 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2775 tcg_temp_free(EA);
d9bce9d9 2776 }
d9bce9d9
JM
2777}
2778#endif
79aceca5
FB
2779/*** Integer load and store with byte reverse ***/
2780/* lhbrx */
86178a57 2781static inline void gen_qemu_ld16ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2782{
76db3ba4
AJ
2783 tcg_gen_qemu_ld16u(arg1, arg2, ctx->mem_idx);
2784 if (likely(!ctx->le_mode)) {
fa3966a3 2785 tcg_gen_bswap16_tl(arg1, arg1);
76db3ba4 2786 }
b61f2753 2787}
0c8aacd4 2788GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER);
b61f2753 2789
79aceca5 2790/* lwbrx */
86178a57 2791static inline void gen_qemu_ld32ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2792{
76db3ba4
AJ
2793 tcg_gen_qemu_ld32u(arg1, arg2, ctx->mem_idx);
2794 if (likely(!ctx->le_mode)) {
fa3966a3 2795 tcg_gen_bswap32_tl(arg1, arg1);
76db3ba4 2796 }
b61f2753 2797}
0c8aacd4 2798GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER);
b61f2753 2799
cd6e9320
TH
2800#if defined(TARGET_PPC64)
2801/* ldbrx */
2802static inline void gen_qemu_ld64ur(DisasContext *ctx, TCGv arg1, TCGv arg2)
2803{
2804 tcg_gen_qemu_ld64(arg1, arg2, ctx->mem_idx);
2805 if (likely(!ctx->le_mode)) {
2806 tcg_gen_bswap64_tl(arg1, arg1);
2807 }
2808}
2809GEN_LDX_E(ldbr, ld64ur, 0x14, 0x10, PPC_NONE, PPC2_DBRX);
2810#endif /* TARGET_PPC64 */
2811
79aceca5 2812/* sthbrx */
86178a57 2813static inline void gen_qemu_st16r(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2814{
76db3ba4 2815 if (likely(!ctx->le_mode)) {
76db3ba4
AJ
2816 TCGv t0 = tcg_temp_new();
2817 tcg_gen_ext16u_tl(t0, arg1);
fa3966a3 2818 tcg_gen_bswap16_tl(t0, t0);
76db3ba4
AJ
2819 tcg_gen_qemu_st16(t0, arg2, ctx->mem_idx);
2820 tcg_temp_free(t0);
76db3ba4
AJ
2821 } else {
2822 tcg_gen_qemu_st16(arg1, arg2, ctx->mem_idx);
2823 }
b61f2753 2824}
0c8aacd4 2825GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER);
b61f2753 2826
79aceca5 2827/* stwbrx */
86178a57 2828static inline void gen_qemu_st32r(DisasContext *ctx, TCGv arg1, TCGv arg2)
b61f2753 2829{
76db3ba4 2830 if (likely(!ctx->le_mode)) {
fa3966a3
AJ
2831 TCGv t0 = tcg_temp_new();
2832 tcg_gen_ext32u_tl(t0, arg1);
2833 tcg_gen_bswap32_tl(t0, t0);
76db3ba4
AJ
2834 tcg_gen_qemu_st32(t0, arg2, ctx->mem_idx);
2835 tcg_temp_free(t0);
76db3ba4
AJ
2836 } else {
2837 tcg_gen_qemu_st32(arg1, arg2, ctx->mem_idx);
2838 }
b61f2753 2839}
0c8aacd4 2840GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER);
79aceca5 2841
cd6e9320
TH
2842#if defined(TARGET_PPC64)
2843/* stdbrx */
2844static inline void gen_qemu_st64r(DisasContext *ctx, TCGv arg1, TCGv arg2)
2845{
2846 if (likely(!ctx->le_mode)) {
2847 TCGv t0 = tcg_temp_new();
2848 tcg_gen_bswap64_tl(t0, arg1);
2849 tcg_gen_qemu_st64(t0, arg2, ctx->mem_idx);
2850 tcg_temp_free(t0);
2851 } else {
2852 tcg_gen_qemu_st64(arg1, arg2, ctx->mem_idx);
2853 }
2854}
2855GEN_STX_E(stdbr, st64r, 0x14, 0x14, PPC_NONE, PPC2_DBRX);
2856#endif /* TARGET_PPC64 */
2857
79aceca5 2858/*** Integer load and store multiple ***/
99e300ef 2859
54623277 2860/* lmw */
99e300ef 2861static void gen_lmw(DisasContext *ctx)
79aceca5 2862{
76db3ba4
AJ
2863 TCGv t0;
2864 TCGv_i32 t1;
2865 gen_set_access_type(ctx, ACCESS_INT);
76a66253 2866 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 2867 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
2868 t0 = tcg_temp_new();
2869 t1 = tcg_const_i32(rD(ctx->opcode));
2870 gen_addr_imm_index(ctx, t0, 0);
2f5a189c 2871 gen_helper_lmw(cpu_env, t0, t1);
ff4a62cd
AJ
2872 tcg_temp_free(t0);
2873 tcg_temp_free_i32(t1);
79aceca5
FB
2874}
2875
2876/* stmw */
99e300ef 2877static void gen_stmw(DisasContext *ctx)
79aceca5 2878{
76db3ba4
AJ
2879 TCGv t0;
2880 TCGv_i32 t1;
2881 gen_set_access_type(ctx, ACCESS_INT);
76a66253 2882 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 2883 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
2884 t0 = tcg_temp_new();
2885 t1 = tcg_const_i32(rS(ctx->opcode));
2886 gen_addr_imm_index(ctx, t0, 0);
2f5a189c 2887 gen_helper_stmw(cpu_env, t0, t1);
ff4a62cd
AJ
2888 tcg_temp_free(t0);
2889 tcg_temp_free_i32(t1);
79aceca5
FB
2890}
2891
2892/*** Integer load and store strings ***/
54623277 2893
79aceca5 2894/* lswi */
3fc6c082 2895/* PowerPC32 specification says we must generate an exception if
9a64fbe4
FB
2896 * rA is in the range of registers to be loaded.
2897 * In an other hand, IBM says this is valid, but rA won't be loaded.
2898 * For now, I'll follow the spec...
2899 */
99e300ef 2900static void gen_lswi(DisasContext *ctx)
79aceca5 2901{
dfbc799d
AJ
2902 TCGv t0;
2903 TCGv_i32 t1, t2;
79aceca5
FB
2904 int nb = NB(ctx->opcode);
2905 int start = rD(ctx->opcode);
9a64fbe4 2906 int ra = rA(ctx->opcode);
79aceca5
FB
2907 int nr;
2908
2909 if (nb == 0)
2910 nb = 32;
2911 nr = nb / 4;
76a66253
JM
2912 if (unlikely(((start + nr) > 32 &&
2913 start <= ra && (start + nr - 32) > ra) ||
2914 ((start + nr) <= 32 && start <= ra && (start + nr) > ra))) {
e06fcd75 2915 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
9fddaa0c 2916 return;
297d8e62 2917 }
76db3ba4 2918 gen_set_access_type(ctx, ACCESS_INT);
8dd4983c 2919 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 2920 gen_update_nip(ctx, ctx->nip - 4);
dfbc799d 2921 t0 = tcg_temp_new();
76db3ba4 2922 gen_addr_register(ctx, t0);
dfbc799d
AJ
2923 t1 = tcg_const_i32(nb);
2924 t2 = tcg_const_i32(start);
2f5a189c 2925 gen_helper_lsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2926 tcg_temp_free(t0);
2927 tcg_temp_free_i32(t1);
2928 tcg_temp_free_i32(t2);
79aceca5
FB
2929}
2930
2931/* lswx */
99e300ef 2932static void gen_lswx(DisasContext *ctx)
79aceca5 2933{
76db3ba4
AJ
2934 TCGv t0;
2935 TCGv_i32 t1, t2, t3;
2936 gen_set_access_type(ctx, ACCESS_INT);
76a66253 2937 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 2938 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
2939 t0 = tcg_temp_new();
2940 gen_addr_reg_index(ctx, t0);
2941 t1 = tcg_const_i32(rD(ctx->opcode));
2942 t2 = tcg_const_i32(rA(ctx->opcode));
2943 t3 = tcg_const_i32(rB(ctx->opcode));
2f5a189c 2944 gen_helper_lswx(cpu_env, t0, t1, t2, t3);
dfbc799d
AJ
2945 tcg_temp_free(t0);
2946 tcg_temp_free_i32(t1);
2947 tcg_temp_free_i32(t2);
2948 tcg_temp_free_i32(t3);
79aceca5
FB
2949}
2950
2951/* stswi */
99e300ef 2952static void gen_stswi(DisasContext *ctx)
79aceca5 2953{
76db3ba4
AJ
2954 TCGv t0;
2955 TCGv_i32 t1, t2;
4b3686fa 2956 int nb = NB(ctx->opcode);
76db3ba4 2957 gen_set_access_type(ctx, ACCESS_INT);
76a66253 2958 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 2959 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
2960 t0 = tcg_temp_new();
2961 gen_addr_register(ctx, t0);
4b3686fa
FB
2962 if (nb == 0)
2963 nb = 32;
dfbc799d 2964 t1 = tcg_const_i32(nb);
76db3ba4 2965 t2 = tcg_const_i32(rS(ctx->opcode));
2f5a189c 2966 gen_helper_stsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2967 tcg_temp_free(t0);
2968 tcg_temp_free_i32(t1);
2969 tcg_temp_free_i32(t2);
79aceca5
FB
2970}
2971
2972/* stswx */
99e300ef 2973static void gen_stswx(DisasContext *ctx)
79aceca5 2974{
76db3ba4
AJ
2975 TCGv t0;
2976 TCGv_i32 t1, t2;
2977 gen_set_access_type(ctx, ACCESS_INT);
8dd4983c 2978 /* NIP cannot be restored if the memory exception comes from an helper */
5fafdf24 2979 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
2980 t0 = tcg_temp_new();
2981 gen_addr_reg_index(ctx, t0);
2982 t1 = tcg_temp_new_i32();
dfbc799d
AJ
2983 tcg_gen_trunc_tl_i32(t1, cpu_xer);
2984 tcg_gen_andi_i32(t1, t1, 0x7F);
76db3ba4 2985 t2 = tcg_const_i32(rS(ctx->opcode));
2f5a189c 2986 gen_helper_stsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2987 tcg_temp_free(t0);
2988 tcg_temp_free_i32(t1);
2989 tcg_temp_free_i32(t2);
79aceca5
FB
2990}
2991
2992/*** Memory synchronisation ***/
2993/* eieio */
99e300ef 2994static void gen_eieio(DisasContext *ctx)
79aceca5 2995{
79aceca5
FB
2996}
2997
2998/* isync */
99e300ef 2999static void gen_isync(DisasContext *ctx)
79aceca5 3000{
e06fcd75 3001 gen_stop_exception(ctx);
79aceca5
FB
3002}
3003
111bfab3 3004/* lwarx */
99e300ef 3005static void gen_lwarx(DisasContext *ctx)
79aceca5 3006{
76db3ba4 3007 TCGv t0;
18b21a2f 3008 TCGv gpr = cpu_gpr[rD(ctx->opcode)];
76db3ba4
AJ
3009 gen_set_access_type(ctx, ACCESS_RES);
3010 t0 = tcg_temp_local_new();
3011 gen_addr_reg_index(ctx, t0);
cf360a32 3012 gen_check_align(ctx, t0, 0x03);
18b21a2f 3013 gen_qemu_ld32u(ctx, gpr, t0);
cf360a32 3014 tcg_gen_mov_tl(cpu_reserve, t0);
1328c2bf 3015 tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUPPCState, reserve_val));
cf360a32 3016 tcg_temp_free(t0);
79aceca5
FB
3017}
3018
4425265b
NF
3019#if defined(CONFIG_USER_ONLY)
3020static void gen_conditional_store (DisasContext *ctx, TCGv EA,
3021 int reg, int size)
3022{
3023 TCGv t0 = tcg_temp_new();
3024 uint32_t save_exception = ctx->exception;
3025
1328c2bf 3026 tcg_gen_st_tl(EA, cpu_env, offsetof(CPUPPCState, reserve_ea));
4425265b 3027 tcg_gen_movi_tl(t0, (size << 5) | reg);
1328c2bf 3028 tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, reserve_info));
4425265b
NF
3029 tcg_temp_free(t0);
3030 gen_update_nip(ctx, ctx->nip-4);
3031 ctx->exception = POWERPC_EXCP_BRANCH;
3032 gen_exception(ctx, POWERPC_EXCP_STCX);
3033 ctx->exception = save_exception;
3034}
3035#endif
3036
79aceca5 3037/* stwcx. */
e8eaa2c0 3038static void gen_stwcx_(DisasContext *ctx)
79aceca5 3039{
76db3ba4
AJ
3040 TCGv t0;
3041 gen_set_access_type(ctx, ACCESS_RES);
3042 t0 = tcg_temp_local_new();
3043 gen_addr_reg_index(ctx, t0);
cf360a32 3044 gen_check_align(ctx, t0, 0x03);
4425265b
NF
3045#if defined(CONFIG_USER_ONLY)
3046 gen_conditional_store(ctx, t0, rS(ctx->opcode), 4);
3047#else
3048 {
3049 int l1;
3050
da91a00f 3051 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
4425265b
NF
3052 l1 = gen_new_label();
3053 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3054 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3055 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3056 gen_set_label(l1);
3057 tcg_gen_movi_tl(cpu_reserve, -1);
3058 }
3059#endif
cf360a32 3060 tcg_temp_free(t0);
79aceca5
FB
3061}
3062
426613db 3063#if defined(TARGET_PPC64)
426613db 3064/* ldarx */
99e300ef 3065static void gen_ldarx(DisasContext *ctx)
426613db 3066{
76db3ba4 3067 TCGv t0;
18b21a2f 3068 TCGv gpr = cpu_gpr[rD(ctx->opcode)];
76db3ba4
AJ
3069 gen_set_access_type(ctx, ACCESS_RES);
3070 t0 = tcg_temp_local_new();
3071 gen_addr_reg_index(ctx, t0);
cf360a32 3072 gen_check_align(ctx, t0, 0x07);
18b21a2f 3073 gen_qemu_ld64(ctx, gpr, t0);
cf360a32 3074 tcg_gen_mov_tl(cpu_reserve, t0);
1328c2bf 3075 tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUPPCState, reserve_val));
cf360a32 3076 tcg_temp_free(t0);
426613db
JM
3077}
3078
3079/* stdcx. */
e8eaa2c0 3080static void gen_stdcx_(DisasContext *ctx)
426613db 3081{
76db3ba4
AJ
3082 TCGv t0;
3083 gen_set_access_type(ctx, ACCESS_RES);
3084 t0 = tcg_temp_local_new();
3085 gen_addr_reg_index(ctx, t0);
cf360a32 3086 gen_check_align(ctx, t0, 0x07);
4425265b
NF
3087#if defined(CONFIG_USER_ONLY)
3088 gen_conditional_store(ctx, t0, rS(ctx->opcode), 8);
3089#else
3090 {
3091 int l1;
da91a00f 3092 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
4425265b
NF
3093 l1 = gen_new_label();
3094 tcg_gen_brcond_tl(TCG_COND_NE, t0, cpu_reserve, l1);
3095 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 1 << CRF_EQ);
3096 gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], t0);
3097 gen_set_label(l1);
3098 tcg_gen_movi_tl(cpu_reserve, -1);
3099 }
3100#endif
cf360a32 3101 tcg_temp_free(t0);
426613db
JM
3102}
3103#endif /* defined(TARGET_PPC64) */
3104
79aceca5 3105/* sync */
99e300ef 3106static void gen_sync(DisasContext *ctx)
79aceca5 3107{
79aceca5
FB
3108}
3109
0db1b20e 3110/* wait */
99e300ef 3111static void gen_wait(DisasContext *ctx)
0db1b20e 3112{
931ff272 3113 TCGv_i32 t0 = tcg_temp_new_i32();
259186a7
AF
3114 tcg_gen_st_i32(t0, cpu_env,
3115 -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
931ff272 3116 tcg_temp_free_i32(t0);
0db1b20e 3117 /* Stop translation, as the CPU is supposed to sleep from now */
e06fcd75 3118 gen_exception_err(ctx, EXCP_HLT, 1);
0db1b20e
JM
3119}
3120
79aceca5 3121/*** Floating-point load ***/
a0d7d5a7 3122#define GEN_LDF(name, ldop, opc, type) \
99e300ef 3123static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 3124{ \
a0d7d5a7 3125 TCGv EA; \
76a66253 3126 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3127 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3128 return; \
3129 } \
76db3ba4 3130 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3131 EA = tcg_temp_new(); \
76db3ba4
AJ
3132 gen_addr_imm_index(ctx, EA, 0); \
3133 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
a0d7d5a7 3134 tcg_temp_free(EA); \
79aceca5
FB
3135}
3136
a0d7d5a7 3137#define GEN_LDUF(name, ldop, opc, type) \
99e300ef 3138static void glue(gen_, name##u)(DisasContext *ctx) \
79aceca5 3139{ \
a0d7d5a7 3140 TCGv EA; \
76a66253 3141 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3142 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3143 return; \
3144 } \
76a66253 3145 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 3146 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 3147 return; \
9a64fbe4 3148 } \
76db3ba4 3149 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3150 EA = tcg_temp_new(); \
76db3ba4
AJ
3151 gen_addr_imm_index(ctx, EA, 0); \
3152 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
a0d7d5a7
AJ
3153 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3154 tcg_temp_free(EA); \
79aceca5
FB
3155}
3156
a0d7d5a7 3157#define GEN_LDUXF(name, ldop, opc, type) \
99e300ef 3158static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 3159{ \
a0d7d5a7 3160 TCGv EA; \
76a66253 3161 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3162 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3163 return; \
3164 } \
76a66253 3165 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 3166 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 3167 return; \
9a64fbe4 3168 } \
76db3ba4 3169 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3170 EA = tcg_temp_new(); \
76db3ba4
AJ
3171 gen_addr_reg_index(ctx, EA); \
3172 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
a0d7d5a7
AJ
3173 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3174 tcg_temp_free(EA); \
79aceca5
FB
3175}
3176
a0d7d5a7 3177#define GEN_LDXF(name, ldop, opc2, opc3, type) \
99e300ef 3178static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 3179{ \
a0d7d5a7 3180 TCGv EA; \
76a66253 3181 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3182 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3183 return; \
3184 } \
76db3ba4 3185 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3186 EA = tcg_temp_new(); \
76db3ba4
AJ
3187 gen_addr_reg_index(ctx, EA); \
3188 gen_qemu_##ldop(ctx, cpu_fpr[rD(ctx->opcode)], EA); \
a0d7d5a7 3189 tcg_temp_free(EA); \
79aceca5
FB
3190}
3191
a0d7d5a7
AJ
3192#define GEN_LDFS(name, ldop, op, type) \
3193GEN_LDF(name, ldop, op | 0x20, type); \
3194GEN_LDUF(name, ldop, op | 0x21, type); \
3195GEN_LDUXF(name, ldop, op | 0x01, type); \
3196GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
3197
636aa200 3198static inline void gen_qemu_ld32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
a0d7d5a7
AJ
3199{
3200 TCGv t0 = tcg_temp_new();
3201 TCGv_i32 t1 = tcg_temp_new_i32();
76db3ba4 3202 gen_qemu_ld32u(ctx, t0, arg2);
a0d7d5a7
AJ
3203 tcg_gen_trunc_tl_i32(t1, t0);
3204 tcg_temp_free(t0);
8e703949 3205 gen_helper_float32_to_float64(arg1, cpu_env, t1);
a0d7d5a7
AJ
3206 tcg_temp_free_i32(t1);
3207}
79aceca5 3208
a0d7d5a7
AJ
3209 /* lfd lfdu lfdux lfdx */
3210GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT);
3211 /* lfs lfsu lfsux lfsx */
3212GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT);
79aceca5
FB
3213
3214/*** Floating-point store ***/
a0d7d5a7 3215#define GEN_STF(name, stop, opc, type) \
99e300ef 3216static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 3217{ \
a0d7d5a7 3218 TCGv EA; \
76a66253 3219 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3220 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3221 return; \
3222 } \
76db3ba4 3223 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3224 EA = tcg_temp_new(); \
76db3ba4
AJ
3225 gen_addr_imm_index(ctx, EA, 0); \
3226 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
a0d7d5a7 3227 tcg_temp_free(EA); \
79aceca5
FB
3228}
3229
a0d7d5a7 3230#define GEN_STUF(name, stop, opc, type) \
99e300ef 3231static void glue(gen_, name##u)(DisasContext *ctx) \
79aceca5 3232{ \
a0d7d5a7 3233 TCGv EA; \
76a66253 3234 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3235 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3236 return; \
3237 } \
76a66253 3238 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 3239 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 3240 return; \
9a64fbe4 3241 } \
76db3ba4 3242 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3243 EA = tcg_temp_new(); \
76db3ba4
AJ
3244 gen_addr_imm_index(ctx, EA, 0); \
3245 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
a0d7d5a7
AJ
3246 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3247 tcg_temp_free(EA); \
79aceca5
FB
3248}
3249
a0d7d5a7 3250#define GEN_STUXF(name, stop, opc, type) \
99e300ef 3251static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 3252{ \
a0d7d5a7 3253 TCGv EA; \
76a66253 3254 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3255 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3256 return; \
3257 } \
76a66253 3258 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 3259 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 3260 return; \
9a64fbe4 3261 } \
76db3ba4 3262 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3263 EA = tcg_temp_new(); \
76db3ba4
AJ
3264 gen_addr_reg_index(ctx, EA); \
3265 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
a0d7d5a7
AJ
3266 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
3267 tcg_temp_free(EA); \
79aceca5
FB
3268}
3269
a0d7d5a7 3270#define GEN_STXF(name, stop, opc2, opc3, type) \
99e300ef 3271static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 3272{ \
a0d7d5a7 3273 TCGv EA; \
76a66253 3274 if (unlikely(!ctx->fpu_enabled)) { \
e06fcd75 3275 gen_exception(ctx, POWERPC_EXCP_FPU); \
4ecc3190
FB
3276 return; \
3277 } \
76db3ba4 3278 gen_set_access_type(ctx, ACCESS_FLOAT); \
a0d7d5a7 3279 EA = tcg_temp_new(); \
76db3ba4
AJ
3280 gen_addr_reg_index(ctx, EA); \
3281 gen_qemu_##stop(ctx, cpu_fpr[rS(ctx->opcode)], EA); \
a0d7d5a7 3282 tcg_temp_free(EA); \
79aceca5
FB
3283}
3284
a0d7d5a7
AJ
3285#define GEN_STFS(name, stop, op, type) \
3286GEN_STF(name, stop, op | 0x20, type); \
3287GEN_STUF(name, stop, op | 0x21, type); \
3288GEN_STUXF(name, stop, op | 0x01, type); \
3289GEN_STXF(name, stop, 0x17, op | 0x00, type)
3290
636aa200 3291static inline void gen_qemu_st32fs(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
a0d7d5a7
AJ
3292{
3293 TCGv_i32 t0 = tcg_temp_new_i32();
3294 TCGv t1 = tcg_temp_new();
8e703949 3295 gen_helper_float64_to_float32(t0, cpu_env, arg1);
a0d7d5a7
AJ
3296 tcg_gen_extu_i32_tl(t1, t0);
3297 tcg_temp_free_i32(t0);
76db3ba4 3298 gen_qemu_st32(ctx, t1, arg2);
a0d7d5a7
AJ
3299 tcg_temp_free(t1);
3300}
79aceca5
FB
3301
3302/* stfd stfdu stfdux stfdx */
a0d7d5a7 3303GEN_STFS(stfd, st64, 0x16, PPC_FLOAT);
79aceca5 3304/* stfs stfsu stfsux stfsx */
a0d7d5a7 3305GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT);
79aceca5
FB
3306
3307/* Optional: */
636aa200 3308static inline void gen_qemu_st32fiw(DisasContext *ctx, TCGv_i64 arg1, TCGv arg2)
a0d7d5a7
AJ
3309{
3310 TCGv t0 = tcg_temp_new();
3311 tcg_gen_trunc_i64_tl(t0, arg1),
76db3ba4 3312 gen_qemu_st32(ctx, t0, arg2);
a0d7d5a7
AJ
3313 tcg_temp_free(t0);
3314}
79aceca5 3315/* stfiwx */
a0d7d5a7 3316GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX);
79aceca5 3317
697ab892
DG
3318static inline void gen_update_cfar(DisasContext *ctx, target_ulong nip)
3319{
3320#if defined(TARGET_PPC64)
3321 if (ctx->has_cfar)
3322 tcg_gen_movi_tl(cpu_cfar, nip);
3323#endif
3324}
3325
79aceca5 3326/*** Branch ***/
636aa200 3327static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
c1942362
FB
3328{
3329 TranslationBlock *tb;
3330 tb = ctx->tb;
e0c8f9ce 3331 if (NARROW_MODE(ctx)) {
a2ffb812 3332 dest = (uint32_t) dest;
e0c8f9ce 3333 }
57fec1fe 3334 if ((tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK) &&
8cbcb4fa 3335 likely(!ctx->singlestep_enabled)) {
57fec1fe 3336 tcg_gen_goto_tb(n);
a2ffb812 3337 tcg_gen_movi_tl(cpu_nip, dest & ~3);
4b4a72e5 3338 tcg_gen_exit_tb((tcg_target_long)tb + n);
c1942362 3339 } else {
a2ffb812 3340 tcg_gen_movi_tl(cpu_nip, dest & ~3);
8cbcb4fa
AJ
3341 if (unlikely(ctx->singlestep_enabled)) {
3342 if ((ctx->singlestep_enabled &
bdc4e053 3343 (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) &&
f0cc4aa8
JG
3344 (ctx->exception == POWERPC_EXCP_BRANCH ||
3345 ctx->exception == POWERPC_EXCP_TRACE)) {
8cbcb4fa
AJ
3346 target_ulong tmp = ctx->nip;
3347 ctx->nip = dest;
e06fcd75 3348 gen_exception(ctx, POWERPC_EXCP_TRACE);
8cbcb4fa
AJ
3349 ctx->nip = tmp;
3350 }
3351 if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) {
e06fcd75 3352 gen_debug_exception(ctx);
8cbcb4fa
AJ
3353 }
3354 }
57fec1fe 3355 tcg_gen_exit_tb(0);
c1942362 3356 }
c53be334
FB
3357}
3358
636aa200 3359static inline void gen_setlr(DisasContext *ctx, target_ulong nip)
e1833e1f 3360{
e0c8f9ce
RH
3361 if (NARROW_MODE(ctx)) {
3362 nip = (uint32_t)nip;
3363 }
3364 tcg_gen_movi_tl(cpu_lr, nip);
e1833e1f
JM
3365}
3366
79aceca5 3367/* b ba bl bla */
99e300ef 3368static void gen_b(DisasContext *ctx)
79aceca5 3369{
76a66253 3370 target_ulong li, target;
38a64f9d 3371
8cbcb4fa 3372 ctx->exception = POWERPC_EXCP_BRANCH;
38a64f9d 3373 /* sign extend LI */
e0c8f9ce
RH
3374 li = LI(ctx->opcode);
3375 li = (li ^ 0x02000000) - 0x02000000;
3376 if (likely(AA(ctx->opcode) == 0)) {
046d6672 3377 target = ctx->nip + li - 4;
e0c8f9ce 3378 } else {
9a64fbe4 3379 target = li;
e0c8f9ce
RH
3380 }
3381 if (LK(ctx->opcode)) {
e1833e1f 3382 gen_setlr(ctx, ctx->nip);
e0c8f9ce 3383 }
697ab892 3384 gen_update_cfar(ctx, ctx->nip);
c1942362 3385 gen_goto_tb(ctx, 0, target);
79aceca5
FB
3386}
3387
e98a6e40
FB
3388#define BCOND_IM 0
3389#define BCOND_LR 1
3390#define BCOND_CTR 2
3391
636aa200 3392static inline void gen_bcond(DisasContext *ctx, int type)
d9bce9d9 3393{
d9bce9d9 3394 uint32_t bo = BO(ctx->opcode);
05f92404 3395 int l1;
a2ffb812 3396 TCGv target;
e98a6e40 3397
8cbcb4fa 3398 ctx->exception = POWERPC_EXCP_BRANCH;
a2ffb812 3399 if (type == BCOND_LR || type == BCOND_CTR) {
a7812ae4 3400 target = tcg_temp_local_new();
a2ffb812
AJ
3401 if (type == BCOND_CTR)
3402 tcg_gen_mov_tl(target, cpu_ctr);
3403 else
3404 tcg_gen_mov_tl(target, cpu_lr);
d2e9fd8f 3405 } else {
3406 TCGV_UNUSED(target);
e98a6e40 3407 }
e1833e1f
JM
3408 if (LK(ctx->opcode))
3409 gen_setlr(ctx, ctx->nip);
a2ffb812
AJ
3410 l1 = gen_new_label();
3411 if ((bo & 0x4) == 0) {
3412 /* Decrement and test CTR */
a7812ae4 3413 TCGv temp = tcg_temp_new();
a2ffb812 3414 if (unlikely(type == BCOND_CTR)) {
e06fcd75 3415 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
a2ffb812
AJ
3416 return;
3417 }
3418 tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);
e0c8f9ce 3419 if (NARROW_MODE(ctx)) {
a2ffb812 3420 tcg_gen_ext32u_tl(temp, cpu_ctr);
e0c8f9ce 3421 } else {
a2ffb812 3422 tcg_gen_mov_tl(temp, cpu_ctr);
e0c8f9ce 3423 }
a2ffb812
AJ
3424 if (bo & 0x2) {
3425 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1);
3426 } else {
3427 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1);
e98a6e40 3428 }
a7812ae4 3429 tcg_temp_free(temp);
a2ffb812
AJ
3430 }
3431 if ((bo & 0x10) == 0) {
3432 /* Test CR */
3433 uint32_t bi = BI(ctx->opcode);
3434 uint32_t mask = 1 << (3 - (bi & 0x03));
a7812ae4 3435 TCGv_i32 temp = tcg_temp_new_i32();
a2ffb812 3436
d9bce9d9 3437 if (bo & 0x8) {
a2ffb812
AJ
3438 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3439 tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1);
d9bce9d9 3440 } else {
a2ffb812
AJ
3441 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3442 tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1);
d9bce9d9 3443 }
a7812ae4 3444 tcg_temp_free_i32(temp);
d9bce9d9 3445 }
697ab892 3446 gen_update_cfar(ctx, ctx->nip);
e98a6e40 3447 if (type == BCOND_IM) {
a2ffb812
AJ
3448 target_ulong li = (target_long)((int16_t)(BD(ctx->opcode)));
3449 if (likely(AA(ctx->opcode) == 0)) {
3450 gen_goto_tb(ctx, 0, ctx->nip + li - 4);
3451 } else {
3452 gen_goto_tb(ctx, 0, li);
3453 }
c53be334 3454 gen_set_label(l1);
c1942362 3455 gen_goto_tb(ctx, 1, ctx->nip);
e98a6e40 3456 } else {
e0c8f9ce 3457 if (NARROW_MODE(ctx)) {
a2ffb812 3458 tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
e0c8f9ce 3459 } else {
a2ffb812 3460 tcg_gen_andi_tl(cpu_nip, target, ~3);
e0c8f9ce 3461 }
a2ffb812
AJ
3462 tcg_gen_exit_tb(0);
3463 gen_set_label(l1);
e0c8f9ce 3464 gen_update_nip(ctx, ctx->nip);
57fec1fe 3465 tcg_gen_exit_tb(0);
08e46e54 3466 }
e98a6e40
FB
3467}
3468
99e300ef 3469static void gen_bc(DisasContext *ctx)
3b46e624 3470{
e98a6e40
FB
3471 gen_bcond(ctx, BCOND_IM);
3472}
3473
99e300ef 3474static void gen_bcctr(DisasContext *ctx)
3b46e624 3475{
e98a6e40
FB
3476 gen_bcond(ctx, BCOND_CTR);
3477}
3478
99e300ef 3479static void gen_bclr(DisasContext *ctx)
3b46e624 3480{
e98a6e40
FB
3481 gen_bcond(ctx, BCOND_LR);
3482}
79aceca5
FB
3483
3484/*** Condition register logical ***/
e1571908 3485#define GEN_CRLOGIC(name, tcg_op, opc) \
99e300ef 3486static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 3487{ \
fc0d441e
JM
3488 uint8_t bitmask; \
3489 int sh; \
a7812ae4 3490 TCGv_i32 t0, t1; \
fc0d441e 3491 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
a7812ae4 3492 t0 = tcg_temp_new_i32(); \
fc0d441e 3493 if (sh > 0) \
fea0c503 3494 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
fc0d441e 3495 else if (sh < 0) \
fea0c503 3496 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
e1571908 3497 else \
fea0c503 3498 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
a7812ae4 3499 t1 = tcg_temp_new_i32(); \
fc0d441e
JM
3500 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3501 if (sh > 0) \
fea0c503 3502 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
fc0d441e 3503 else if (sh < 0) \
fea0c503 3504 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
e1571908 3505 else \
fea0c503
AJ
3506 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3507 tcg_op(t0, t0, t1); \
fc0d441e 3508 bitmask = 1 << (3 - (crbD(ctx->opcode) & 0x03)); \
fea0c503
AJ
3509 tcg_gen_andi_i32(t0, t0, bitmask); \
3510 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3511 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
a7812ae4
PB
3512 tcg_temp_free_i32(t0); \
3513 tcg_temp_free_i32(t1); \
79aceca5
FB
3514}
3515
3516/* crand */
e1571908 3517GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08);
79aceca5 3518/* crandc */
e1571908 3519GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04);
79aceca5 3520/* creqv */
e1571908 3521GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09);
79aceca5 3522/* crnand */
e1571908 3523GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07);
79aceca5 3524/* crnor */
e1571908 3525GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01);
79aceca5 3526/* cror */
e1571908 3527GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E);
79aceca5 3528/* crorc */
e1571908 3529GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D);
79aceca5 3530/* crxor */
e1571908 3531GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06);
99e300ef 3532
54623277 3533/* mcrf */
99e300ef 3534static void gen_mcrf(DisasContext *ctx)
79aceca5 3535{
47e4661c 3536 tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]);
79aceca5
FB
3537}
3538
3539/*** System linkage ***/
99e300ef 3540
54623277 3541/* rfi (mem_idx only) */
99e300ef 3542static void gen_rfi(DisasContext *ctx)
79aceca5 3543{
9a64fbe4 3544#if defined(CONFIG_USER_ONLY)
e06fcd75 3545 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9a64fbe4
FB
3546#else
3547 /* Restore CPU state */
76db3ba4 3548 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3549 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9fddaa0c 3550 return;
9a64fbe4 3551 }
697ab892 3552 gen_update_cfar(ctx, ctx->nip);
e5f17ac6 3553 gen_helper_rfi(cpu_env);
e06fcd75 3554 gen_sync_exception(ctx);
9a64fbe4 3555#endif
79aceca5
FB
3556}
3557
426613db 3558#if defined(TARGET_PPC64)
99e300ef 3559static void gen_rfid(DisasContext *ctx)
426613db
JM
3560{
3561#if defined(CONFIG_USER_ONLY)
e06fcd75 3562 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db
JM
3563#else
3564 /* Restore CPU state */
76db3ba4 3565 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3566 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db
JM
3567 return;
3568 }
697ab892 3569 gen_update_cfar(ctx, ctx->nip);
e5f17ac6 3570 gen_helper_rfid(cpu_env);
e06fcd75 3571 gen_sync_exception(ctx);
426613db
JM
3572#endif
3573}
426613db 3574
99e300ef 3575static void gen_hrfid(DisasContext *ctx)
be147d08
JM
3576{
3577#if defined(CONFIG_USER_ONLY)
e06fcd75 3578 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
3579#else
3580 /* Restore CPU state */
76db3ba4 3581 if (unlikely(ctx->mem_idx <= 1)) {
e06fcd75 3582 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
3583 return;
3584 }
e5f17ac6 3585 gen_helper_hrfid(cpu_env);
e06fcd75 3586 gen_sync_exception(ctx);
be147d08
JM
3587#endif
3588}
3589#endif
3590
79aceca5 3591/* sc */
417bf010
JM
3592#if defined(CONFIG_USER_ONLY)
3593#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3594#else
3595#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3596#endif
99e300ef 3597static void gen_sc(DisasContext *ctx)
79aceca5 3598{
e1833e1f
JM
3599 uint32_t lev;
3600
3601 lev = (ctx->opcode >> 5) & 0x7F;
e06fcd75 3602 gen_exception_err(ctx, POWERPC_SYSCALL, lev);
79aceca5
FB
3603}
3604
3605/*** Trap ***/
99e300ef 3606
54623277 3607/* tw */
99e300ef 3608static void gen_tw(DisasContext *ctx)
79aceca5 3609{
cab3bee2 3610 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
db9a231d
AJ
3611 /* Update the nip since this might generate a trap exception */
3612 gen_update_nip(ctx, ctx->nip);
e5f17ac6
BS
3613 gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3614 t0);
cab3bee2 3615 tcg_temp_free_i32(t0);
79aceca5
FB
3616}
3617
3618/* twi */
99e300ef 3619static void gen_twi(DisasContext *ctx)
79aceca5 3620{
cab3bee2
AJ
3621 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3622 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
db9a231d
AJ
3623 /* Update the nip since this might generate a trap exception */
3624 gen_update_nip(ctx, ctx->nip);
e5f17ac6 3625 gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
cab3bee2
AJ
3626 tcg_temp_free(t0);
3627 tcg_temp_free_i32(t1);
79aceca5
FB
3628}
3629
d9bce9d9
JM
3630#if defined(TARGET_PPC64)
3631/* td */
99e300ef 3632static void gen_td(DisasContext *ctx)
d9bce9d9 3633{
cab3bee2 3634 TCGv_i32 t0 = tcg_const_i32(TO(ctx->opcode));
db9a231d
AJ
3635 /* Update the nip since this might generate a trap exception */
3636 gen_update_nip(ctx, ctx->nip);
e5f17ac6
BS
3637 gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3638 t0);
cab3bee2 3639 tcg_temp_free_i32(t0);
d9bce9d9
JM
3640}
3641
3642/* tdi */
99e300ef 3643static void gen_tdi(DisasContext *ctx)
d9bce9d9 3644{
cab3bee2
AJ
3645 TCGv t0 = tcg_const_tl(SIMM(ctx->opcode));
3646 TCGv_i32 t1 = tcg_const_i32(TO(ctx->opcode));
db9a231d
AJ
3647 /* Update the nip since this might generate a trap exception */
3648 gen_update_nip(ctx, ctx->nip);
e5f17ac6 3649 gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
cab3bee2
AJ
3650 tcg_temp_free(t0);
3651 tcg_temp_free_i32(t1);
d9bce9d9
JM
3652}
3653#endif
3654
79aceca5 3655/*** Processor control ***/
99e300ef 3656
da91a00f
RH
3657static void gen_read_xer(TCGv dst)
3658{
3659 TCGv t0 = tcg_temp_new();
3660 TCGv t1 = tcg_temp_new();
3661 TCGv t2 = tcg_temp_new();
3662 tcg_gen_mov_tl(dst, cpu_xer);
3663 tcg_gen_shli_tl(t0, cpu_so, XER_SO);
3664 tcg_gen_shli_tl(t1, cpu_ov, XER_OV);
3665 tcg_gen_shli_tl(t2, cpu_ca, XER_CA);
3666 tcg_gen_or_tl(t0, t0, t1);
3667 tcg_gen_or_tl(dst, dst, t2);
3668 tcg_gen_or_tl(dst, dst, t0);
3669 tcg_temp_free(t0);
3670 tcg_temp_free(t1);
3671 tcg_temp_free(t2);
3672}
3673
3674static void gen_write_xer(TCGv src)
3675{
3676 tcg_gen_andi_tl(cpu_xer, src,
3677 ~((1u << XER_SO) | (1u << XER_OV) | (1u << XER_CA)));
3678 tcg_gen_shri_tl(cpu_so, src, XER_SO);
3679 tcg_gen_shri_tl(cpu_ov, src, XER_OV);
3680 tcg_gen_shri_tl(cpu_ca, src, XER_CA);
3681 tcg_gen_andi_tl(cpu_so, cpu_so, 1);
3682 tcg_gen_andi_tl(cpu_ov, cpu_ov, 1);
3683 tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
3684}
3685
54623277 3686/* mcrxr */
99e300ef 3687static void gen_mcrxr(DisasContext *ctx)
79aceca5 3688{
da91a00f
RH
3689 TCGv_i32 t0 = tcg_temp_new_i32();
3690 TCGv_i32 t1 = tcg_temp_new_i32();
3691 TCGv_i32 dst = cpu_crf[crfD(ctx->opcode)];
3692
3693 tcg_gen_trunc_tl_i32(t0, cpu_so);
3694 tcg_gen_trunc_tl_i32(t1, cpu_ov);
3695 tcg_gen_trunc_tl_i32(dst, cpu_ca);
3696 tcg_gen_shri_i32(t0, t0, 2);
3697 tcg_gen_shri_i32(t1, t1, 1);
3698 tcg_gen_or_i32(dst, dst, t0);
3699 tcg_gen_or_i32(dst, dst, t1);
3700 tcg_temp_free_i32(t0);
3701 tcg_temp_free_i32(t1);
3702
3703 tcg_gen_movi_tl(cpu_so, 0);
3704 tcg_gen_movi_tl(cpu_ov, 0);
3705 tcg_gen_movi_tl(cpu_ca, 0);
79aceca5
FB
3706}
3707
0cfe11ea 3708/* mfcr mfocrf */
99e300ef 3709static void gen_mfcr(DisasContext *ctx)
79aceca5 3710{
76a66253 3711 uint32_t crm, crn;
3b46e624 3712
76a66253
JM
3713 if (likely(ctx->opcode & 0x00100000)) {
3714 crm = CRM(ctx->opcode);
8dd640e4 3715 if (likely(crm && ((crm & (crm - 1)) == 0))) {
0cfe11ea 3716 crn = ctz32 (crm);
e1571908 3717 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
0497d2f4
AJ
3718 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)],
3719 cpu_gpr[rD(ctx->opcode)], crn * 4);
76a66253 3720 }
d9bce9d9 3721 } else {
651721b2
AJ
3722 TCGv_i32 t0 = tcg_temp_new_i32();
3723 tcg_gen_mov_i32(t0, cpu_crf[0]);
3724 tcg_gen_shli_i32(t0, t0, 4);
3725 tcg_gen_or_i32(t0, t0, cpu_crf[1]);
3726 tcg_gen_shli_i32(t0, t0, 4);
3727 tcg_gen_or_i32(t0, t0, cpu_crf[2]);
3728 tcg_gen_shli_i32(t0, t0, 4);
3729 tcg_gen_or_i32(t0, t0, cpu_crf[3]);
3730 tcg_gen_shli_i32(t0, t0, 4);
3731 tcg_gen_or_i32(t0, t0, cpu_crf[4]);
3732 tcg_gen_shli_i32(t0, t0, 4);
3733 tcg_gen_or_i32(t0, t0, cpu_crf[5]);
3734 tcg_gen_shli_i32(t0, t0, 4);
3735 tcg_gen_or_i32(t0, t0, cpu_crf[6]);
3736 tcg_gen_shli_i32(t0, t0, 4);
3737 tcg_gen_or_i32(t0, t0, cpu_crf[7]);
3738 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
3739 tcg_temp_free_i32(t0);
d9bce9d9 3740 }
79aceca5
FB
3741}
3742
3743/* mfmsr */
99e300ef 3744static void gen_mfmsr(DisasContext *ctx)
79aceca5 3745{
9a64fbe4 3746#if defined(CONFIG_USER_ONLY)
e06fcd75 3747 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 3748#else
76db3ba4 3749 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3750 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 3751 return;
9a64fbe4 3752 }
6527f6ea 3753 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_msr);
9a64fbe4 3754#endif
79aceca5
FB
3755}
3756
7b13448f 3757static void spr_noaccess(void *opaque, int gprn, int sprn)
3fc6c082 3758{
7b13448f 3759#if 0
3fc6c082
FB
3760 sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
3761 printf("ERROR: try to access SPR %d !\n", sprn);
7b13448f 3762#endif
3fc6c082
FB
3763}
3764#define SPR_NOACCESS (&spr_noaccess)
3fc6c082 3765
79aceca5 3766/* mfspr */
636aa200 3767static inline void gen_op_mfspr(DisasContext *ctx)
79aceca5 3768{
45d827d2 3769 void (*read_cb)(void *opaque, int gprn, int sprn);
79aceca5
FB
3770 uint32_t sprn = SPR(ctx->opcode);
3771
3fc6c082 3772#if !defined(CONFIG_USER_ONLY)
76db3ba4 3773 if (ctx->mem_idx == 2)
be147d08 3774 read_cb = ctx->spr_cb[sprn].hea_read;
76db3ba4 3775 else if (ctx->mem_idx)
3fc6c082
FB
3776 read_cb = ctx->spr_cb[sprn].oea_read;
3777 else
9a64fbe4 3778#endif
3fc6c082 3779 read_cb = ctx->spr_cb[sprn].uea_read;
76a66253
JM
3780 if (likely(read_cb != NULL)) {
3781 if (likely(read_cb != SPR_NOACCESS)) {
45d827d2 3782 (*read_cb)(ctx, rD(ctx->opcode), sprn);
3fc6c082
FB
3783 } else {
3784 /* Privilege exception */
9fceefa7
JM
3785 /* This is a hack to avoid warnings when running Linux:
3786 * this OS breaks the PowerPC virtualisation model,
3787 * allowing userland application to read the PVR
3788 */
3789 if (sprn != SPR_PVR) {
93fcfe39 3790 qemu_log("Trying to read privileged spr %d %03x at "
90e189ec
BS
3791 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip);
3792 printf("Trying to read privileged spr %d %03x at "
3793 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip);
f24e5695 3794 }
e06fcd75 3795 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
79aceca5 3796 }
3fc6c082
FB
3797 } else {
3798 /* Not defined */
93fcfe39 3799 qemu_log("Trying to read invalid spr %d %03x at "
90e189ec
BS
3800 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip);
3801 printf("Trying to read invalid spr %d %03x at " TARGET_FMT_lx "\n",
077fc206 3802 sprn, sprn, ctx->nip);
e06fcd75 3803 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
79aceca5 3804 }
79aceca5
FB
3805}
3806
99e300ef 3807static void gen_mfspr(DisasContext *ctx)
79aceca5 3808{
3fc6c082 3809 gen_op_mfspr(ctx);
76a66253 3810}
3fc6c082
FB
3811
3812/* mftb */
99e300ef 3813static void gen_mftb(DisasContext *ctx)
3fc6c082
FB
3814{
3815 gen_op_mfspr(ctx);
79aceca5
FB
3816}
3817
0cfe11ea 3818/* mtcrf mtocrf*/
99e300ef 3819static void gen_mtcrf(DisasContext *ctx)
79aceca5 3820{
76a66253 3821 uint32_t crm, crn;
3b46e624 3822
76a66253 3823 crm = CRM(ctx->opcode);
8dd640e4 3824 if (likely((ctx->opcode & 0x00100000))) {
3825 if (crm && ((crm & (crm - 1)) == 0)) {
3826 TCGv_i32 temp = tcg_temp_new_i32();
0cfe11ea 3827 crn = ctz32 (crm);
8dd640e4 3828 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
0cfe11ea
AJ
3829 tcg_gen_shri_i32(temp, temp, crn * 4);
3830 tcg_gen_andi_i32(cpu_crf[7 - crn], temp, 0xf);
8dd640e4 3831 tcg_temp_free_i32(temp);
3832 }
76a66253 3833 } else {
651721b2
AJ
3834 TCGv_i32 temp = tcg_temp_new_i32();
3835 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
3836 for (crn = 0 ; crn < 8 ; crn++) {
3837 if (crm & (1 << crn)) {
3838 tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
3839 tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
3840 }
3841 }
a7812ae4 3842 tcg_temp_free_i32(temp);
76a66253 3843 }
79aceca5
FB
3844}
3845
3846/* mtmsr */
426613db 3847#if defined(TARGET_PPC64)
99e300ef 3848static void gen_mtmsrd(DisasContext *ctx)
426613db
JM
3849{
3850#if defined(CONFIG_USER_ONLY)
e06fcd75 3851 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
426613db 3852#else
76db3ba4 3853 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3854 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
426613db
JM
3855 return;
3856 }
be147d08
JM
3857 if (ctx->opcode & 0x00010000) {
3858 /* Special form that does not need any synchronisation */
6527f6ea
AJ
3859 TCGv t0 = tcg_temp_new();
3860 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
3861 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
3862 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3863 tcg_temp_free(t0);
be147d08 3864 } else {
056b05f8
JM
3865 /* XXX: we need to update nip before the store
3866 * if we enter power saving mode, we will exit the loop
3867 * directly from ppc_store_msr
3868 */
be147d08 3869 gen_update_nip(ctx, ctx->nip);
e5f17ac6 3870 gen_helper_store_msr(cpu_env, cpu_gpr[rS(ctx->opcode)]);
be147d08
JM
3871 /* Must stop the translation as machine state (may have) changed */
3872 /* Note that mtmsr is not always defined as context-synchronizing */
e06fcd75 3873 gen_stop_exception(ctx);
be147d08 3874 }
426613db
JM
3875#endif
3876}
3877#endif
3878
99e300ef 3879static void gen_mtmsr(DisasContext *ctx)
79aceca5 3880{
9a64fbe4 3881#if defined(CONFIG_USER_ONLY)
e06fcd75 3882 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 3883#else
76db3ba4 3884 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3885 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 3886 return;
9a64fbe4 3887 }
be147d08
JM
3888 if (ctx->opcode & 0x00010000) {
3889 /* Special form that does not need any synchronisation */
6527f6ea
AJ
3890 TCGv t0 = tcg_temp_new();
3891 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
3892 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~((1 << MSR_RI) | (1 << MSR_EE)));
3893 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3894 tcg_temp_free(t0);
be147d08 3895 } else {
8018dc63
AG
3896 TCGv msr = tcg_temp_new();
3897
056b05f8
JM
3898 /* XXX: we need to update nip before the store
3899 * if we enter power saving mode, we will exit the loop
3900 * directly from ppc_store_msr
3901 */
be147d08 3902 gen_update_nip(ctx, ctx->nip);
d9bce9d9 3903#if defined(TARGET_PPC64)
8018dc63
AG
3904 tcg_gen_deposit_tl(msr, cpu_msr, cpu_gpr[rS(ctx->opcode)], 0, 32);
3905#else
3906 tcg_gen_mov_tl(msr, cpu_gpr[rS(ctx->opcode)]);
d9bce9d9 3907#endif
e5f17ac6 3908 gen_helper_store_msr(cpu_env, msr);
be147d08 3909 /* Must stop the translation as machine state (may have) changed */
6527f6ea 3910 /* Note that mtmsr is not always defined as context-synchronizing */
e06fcd75 3911 gen_stop_exception(ctx);
be147d08 3912 }
9a64fbe4 3913#endif
79aceca5
FB
3914}
3915
3916/* mtspr */
99e300ef 3917static void gen_mtspr(DisasContext *ctx)
79aceca5 3918{
45d827d2 3919 void (*write_cb)(void *opaque, int sprn, int gprn);
79aceca5
FB
3920 uint32_t sprn = SPR(ctx->opcode);
3921
3fc6c082 3922#if !defined(CONFIG_USER_ONLY)
76db3ba4 3923 if (ctx->mem_idx == 2)
be147d08 3924 write_cb = ctx->spr_cb[sprn].hea_write;
76db3ba4 3925 else if (ctx->mem_idx)
3fc6c082
FB
3926 write_cb = ctx->spr_cb[sprn].oea_write;
3927 else
9a64fbe4 3928#endif
3fc6c082 3929 write_cb = ctx->spr_cb[sprn].uea_write;
76a66253
JM
3930 if (likely(write_cb != NULL)) {
3931 if (likely(write_cb != SPR_NOACCESS)) {
45d827d2 3932 (*write_cb)(ctx, sprn, rS(ctx->opcode));
3fc6c082
FB
3933 } else {
3934 /* Privilege exception */
93fcfe39 3935 qemu_log("Trying to write privileged spr %d %03x at "
90e189ec
BS
3936 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip);
3937 printf("Trying to write privileged spr %d %03x at " TARGET_FMT_lx
3938 "\n", sprn, sprn, ctx->nip);
e06fcd75 3939 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253 3940 }
3fc6c082
FB
3941 } else {
3942 /* Not defined */
93fcfe39 3943 qemu_log("Trying to write invalid spr %d %03x at "
90e189ec
BS
3944 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip);
3945 printf("Trying to write invalid spr %d %03x at " TARGET_FMT_lx "\n",
077fc206 3946 sprn, sprn, ctx->nip);
e06fcd75 3947 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_SPR);
79aceca5 3948 }
79aceca5
FB
3949}
3950
3951/*** Cache management ***/
99e300ef 3952
54623277 3953/* dcbf */
99e300ef 3954static void gen_dcbf(DisasContext *ctx)
79aceca5 3955{
dac454af 3956 /* XXX: specification says this is treated as a load by the MMU */
76db3ba4
AJ
3957 TCGv t0;
3958 gen_set_access_type(ctx, ACCESS_CACHE);
3959 t0 = tcg_temp_new();
3960 gen_addr_reg_index(ctx, t0);
3961 gen_qemu_ld8u(ctx, t0, t0);
fea0c503 3962 tcg_temp_free(t0);
79aceca5
FB
3963}
3964
3965/* dcbi (Supervisor only) */
99e300ef 3966static void gen_dcbi(DisasContext *ctx)
79aceca5 3967{
a541f297 3968#if defined(CONFIG_USER_ONLY)
e06fcd75 3969 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a541f297 3970#else
b61f2753 3971 TCGv EA, val;
76db3ba4 3972 if (unlikely(!ctx->mem_idx)) {
e06fcd75 3973 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9fddaa0c 3974 return;
9a64fbe4 3975 }
a7812ae4 3976 EA = tcg_temp_new();
76db3ba4
AJ
3977 gen_set_access_type(ctx, ACCESS_CACHE);
3978 gen_addr_reg_index(ctx, EA);
a7812ae4 3979 val = tcg_temp_new();
76a66253 3980 /* XXX: specification says this should be treated as a store by the MMU */
76db3ba4
AJ
3981 gen_qemu_ld8u(ctx, val, EA);
3982 gen_qemu_st8(ctx, val, EA);
b61f2753
AJ
3983 tcg_temp_free(val);
3984 tcg_temp_free(EA);
a541f297 3985#endif
79aceca5
FB
3986}
3987
3988/* dcdst */
99e300ef 3989static void gen_dcbst(DisasContext *ctx)
79aceca5 3990{
76a66253 3991 /* XXX: specification say this is treated as a load by the MMU */
76db3ba4
AJ
3992 TCGv t0;
3993 gen_set_access_type(ctx, ACCESS_CACHE);
3994 t0 = tcg_temp_new();
3995 gen_addr_reg_index(ctx, t0);
3996 gen_qemu_ld8u(ctx, t0, t0);
fea0c503 3997 tcg_temp_free(t0);
79aceca5
FB
3998}
3999
4000/* dcbt */
99e300ef 4001static void gen_dcbt(DisasContext *ctx)
79aceca5 4002{
0db1b20e 4003 /* interpreted as no-op */
76a66253
JM
4004 /* XXX: specification say this is treated as a load by the MMU
4005 * but does not generate any exception
4006 */
79aceca5
FB
4007}
4008
4009/* dcbtst */
99e300ef 4010static void gen_dcbtst(DisasContext *ctx)
79aceca5 4011{
0db1b20e 4012 /* interpreted as no-op */
76a66253
JM
4013 /* XXX: specification say this is treated as a load by the MMU
4014 * but does not generate any exception
4015 */
79aceca5
FB
4016}
4017
4018/* dcbz */
99e300ef 4019static void gen_dcbz(DisasContext *ctx)
79aceca5 4020{
8e33944f
AG
4021 TCGv tcgv_addr;
4022 TCGv_i32 tcgv_is_dcbzl;
4023 int is_dcbzl = ctx->opcode & 0x00200000 ? 1 : 0;
d63001d1 4024
76db3ba4 4025 gen_set_access_type(ctx, ACCESS_CACHE);
799a8c8d
AJ
4026 /* NIP cannot be restored if the memory exception comes from an helper */
4027 gen_update_nip(ctx, ctx->nip - 4);
8e33944f
AG
4028 tcgv_addr = tcg_temp_new();
4029 tcgv_is_dcbzl = tcg_const_i32(is_dcbzl);
4030
4031 gen_addr_reg_index(ctx, tcgv_addr);
4032 gen_helper_dcbz(cpu_env, tcgv_addr, tcgv_is_dcbzl);
4033
4034 tcg_temp_free(tcgv_addr);
4035 tcg_temp_free_i32(tcgv_is_dcbzl);
79aceca5
FB
4036}
4037
ae1c1a3d 4038/* dst / dstt */
99e300ef 4039static void gen_dst(DisasContext *ctx)
ae1c1a3d
AJ
4040{
4041 if (rA(ctx->opcode) == 0) {
4042 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
4043 } else {
4044 /* interpreted as no-op */
4045 }
4046}
4047
4048/* dstst /dststt */
99e300ef 4049static void gen_dstst(DisasContext *ctx)
ae1c1a3d
AJ
4050{
4051 if (rA(ctx->opcode) == 0) {
4052 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
4053 } else {
4054 /* interpreted as no-op */
4055 }
4056
4057}
4058
4059/* dss / dssall */
99e300ef 4060static void gen_dss(DisasContext *ctx)
ae1c1a3d
AJ
4061{
4062 /* interpreted as no-op */
4063}
4064
79aceca5 4065/* icbi */
99e300ef 4066static void gen_icbi(DisasContext *ctx)
79aceca5 4067{
76db3ba4
AJ
4068 TCGv t0;
4069 gen_set_access_type(ctx, ACCESS_CACHE);
30032c94
JM
4070 /* NIP cannot be restored if the memory exception comes from an helper */
4071 gen_update_nip(ctx, ctx->nip - 4);
76db3ba4
AJ
4072 t0 = tcg_temp_new();
4073 gen_addr_reg_index(ctx, t0);
2f5a189c 4074 gen_helper_icbi(cpu_env, t0);
37d269df 4075 tcg_temp_free(t0);
79aceca5
FB
4076}
4077
4078/* Optional: */
4079/* dcba */
99e300ef 4080static void gen_dcba(DisasContext *ctx)
79aceca5 4081{
0db1b20e
JM
4082 /* interpreted as no-op */
4083 /* XXX: specification say this is treated as a store by the MMU
4084 * but does not generate any exception
4085 */
79aceca5
FB
4086}
4087
4088/*** Segment register manipulation ***/
4089/* Supervisor only: */
99e300ef 4090
54623277 4091/* mfsr */
99e300ef 4092static void gen_mfsr(DisasContext *ctx)
79aceca5 4093{
9a64fbe4 4094#if defined(CONFIG_USER_ONLY)
e06fcd75 4095 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 4096#else
74d37793 4097 TCGv t0;
76db3ba4 4098 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4099 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 4100 return;
9a64fbe4 4101 }
74d37793 4102 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4103 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4104 tcg_temp_free(t0);
9a64fbe4 4105#endif
79aceca5
FB
4106}
4107
4108/* mfsrin */
99e300ef 4109static void gen_mfsrin(DisasContext *ctx)
79aceca5 4110{
9a64fbe4 4111#if defined(CONFIG_USER_ONLY)
e06fcd75 4112 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 4113#else
74d37793 4114 TCGv t0;
76db3ba4 4115 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4116 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 4117 return;
9a64fbe4 4118 }
74d37793
AJ
4119 t0 = tcg_temp_new();
4120 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4121 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4122 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4123 tcg_temp_free(t0);
9a64fbe4 4124#endif
79aceca5
FB
4125}
4126
4127/* mtsr */
99e300ef 4128static void gen_mtsr(DisasContext *ctx)
79aceca5 4129{
9a64fbe4 4130#if defined(CONFIG_USER_ONLY)
e06fcd75 4131 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 4132#else
74d37793 4133 TCGv t0;
76db3ba4 4134 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4135 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 4136 return;
9a64fbe4 4137 }
74d37793 4138 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4139 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4140 tcg_temp_free(t0);
9a64fbe4 4141#endif
79aceca5
FB
4142}
4143
4144/* mtsrin */
99e300ef 4145static void gen_mtsrin(DisasContext *ctx)
79aceca5 4146{
9a64fbe4 4147#if defined(CONFIG_USER_ONLY)
e06fcd75 4148 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9a64fbe4 4149#else
74d37793 4150 TCGv t0;
76db3ba4 4151 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4152 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
9fddaa0c 4153 return;
9a64fbe4 4154 }
74d37793
AJ
4155 t0 = tcg_temp_new();
4156 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4157 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4158 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rD(ctx->opcode)]);
74d37793 4159 tcg_temp_free(t0);
9a64fbe4 4160#endif
79aceca5
FB
4161}
4162
12de9a39
JM
4163#if defined(TARGET_PPC64)
4164/* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
e8eaa2c0 4165
54623277 4166/* mfsr */
e8eaa2c0 4167static void gen_mfsr_64b(DisasContext *ctx)
12de9a39
JM
4168{
4169#if defined(CONFIG_USER_ONLY)
e06fcd75 4170 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39 4171#else
74d37793 4172 TCGv t0;
76db3ba4 4173 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4174 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39
JM
4175 return;
4176 }
74d37793 4177 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4178 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4179 tcg_temp_free(t0);
12de9a39
JM
4180#endif
4181}
4182
4183/* mfsrin */
e8eaa2c0 4184static void gen_mfsrin_64b(DisasContext *ctx)
12de9a39
JM
4185{
4186#if defined(CONFIG_USER_ONLY)
e06fcd75 4187 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39 4188#else
74d37793 4189 TCGv t0;
76db3ba4 4190 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4191 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39
JM
4192 return;
4193 }
74d37793
AJ
4194 t0 = tcg_temp_new();
4195 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4196 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4197 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4198 tcg_temp_free(t0);
12de9a39
JM
4199#endif
4200}
4201
4202/* mtsr */
e8eaa2c0 4203static void gen_mtsr_64b(DisasContext *ctx)
12de9a39
JM
4204{
4205#if defined(CONFIG_USER_ONLY)
e06fcd75 4206 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39 4207#else
74d37793 4208 TCGv t0;
76db3ba4 4209 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4210 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39
JM
4211 return;
4212 }
74d37793 4213 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4214 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4215 tcg_temp_free(t0);
12de9a39
JM
4216#endif
4217}
4218
4219/* mtsrin */
e8eaa2c0 4220static void gen_mtsrin_64b(DisasContext *ctx)
12de9a39
JM
4221{
4222#if defined(CONFIG_USER_ONLY)
e06fcd75 4223 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39 4224#else
74d37793 4225 TCGv t0;
76db3ba4 4226 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4227 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
12de9a39
JM
4228 return;
4229 }
74d37793
AJ
4230 t0 = tcg_temp_new();
4231 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4232 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4233 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4234 tcg_temp_free(t0);
12de9a39
JM
4235#endif
4236}
f6b868fc
BS
4237
4238/* slbmte */
e8eaa2c0 4239static void gen_slbmte(DisasContext *ctx)
f6b868fc
BS
4240{
4241#if defined(CONFIG_USER_ONLY)
4242 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4243#else
4244 if (unlikely(!ctx->mem_idx)) {
4245 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4246 return;
4247 }
c6c7cf05
BS
4248 gen_helper_store_slb(cpu_env, cpu_gpr[rB(ctx->opcode)],
4249 cpu_gpr[rS(ctx->opcode)]);
f6b868fc
BS
4250#endif
4251}
4252
efdef95f
DG
4253static void gen_slbmfee(DisasContext *ctx)
4254{
4255#if defined(CONFIG_USER_ONLY)
4256 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4257#else
4258 if (unlikely(!ctx->mem_idx)) {
4259 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4260 return;
4261 }
c6c7cf05 4262 gen_helper_load_slb_esid(cpu_gpr[rS(ctx->opcode)], cpu_env,
efdef95f
DG
4263 cpu_gpr[rB(ctx->opcode)]);
4264#endif
4265}
4266
4267static void gen_slbmfev(DisasContext *ctx)
4268{
4269#if defined(CONFIG_USER_ONLY)
4270 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4271#else
4272 if (unlikely(!ctx->mem_idx)) {
4273 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4274 return;
4275 }
c6c7cf05 4276 gen_helper_load_slb_vsid(cpu_gpr[rS(ctx->opcode)], cpu_env,
efdef95f
DG
4277 cpu_gpr[rB(ctx->opcode)]);
4278#endif
4279}
12de9a39
JM
4280#endif /* defined(TARGET_PPC64) */
4281
79aceca5 4282/*** Lookaside buffer management ***/
76db3ba4 4283/* Optional & mem_idx only: */
99e300ef 4284
54623277 4285/* tlbia */
99e300ef 4286static void gen_tlbia(DisasContext *ctx)
79aceca5 4287{
9a64fbe4 4288#if defined(CONFIG_USER_ONLY)
e06fcd75 4289 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9a64fbe4 4290#else
76db3ba4 4291 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4292 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9fddaa0c 4293 return;
9a64fbe4 4294 }
c6c7cf05 4295 gen_helper_tlbia(cpu_env);
9a64fbe4 4296#endif
79aceca5
FB
4297}
4298
bf14b1ce 4299/* tlbiel */
99e300ef 4300static void gen_tlbiel(DisasContext *ctx)
bf14b1ce
BS
4301{
4302#if defined(CONFIG_USER_ONLY)
4303 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4304#else
4305 if (unlikely(!ctx->mem_idx)) {
4306 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
4307 return;
4308 }
c6c7cf05 4309 gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
bf14b1ce
BS
4310#endif
4311}
4312
79aceca5 4313/* tlbie */
99e300ef 4314static void gen_tlbie(DisasContext *ctx)
79aceca5 4315{
9a64fbe4 4316#if defined(CONFIG_USER_ONLY)
e06fcd75 4317 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9a64fbe4 4318#else
76db3ba4 4319 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4320 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9fddaa0c 4321 return;
9a64fbe4 4322 }
d9bce9d9 4323#if defined(TARGET_PPC64)
74d37793
AJ
4324 if (!ctx->sf_mode) {
4325 TCGv t0 = tcg_temp_new();
4326 tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
c6c7cf05 4327 gen_helper_tlbie(cpu_env, t0);
74d37793
AJ
4328 tcg_temp_free(t0);
4329 } else
d9bce9d9 4330#endif
c6c7cf05 4331 gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9a64fbe4 4332#endif
79aceca5
FB
4333}
4334
4335/* tlbsync */
99e300ef 4336static void gen_tlbsync(DisasContext *ctx)
79aceca5 4337{
9a64fbe4 4338#if defined(CONFIG_USER_ONLY)
e06fcd75 4339 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9a64fbe4 4340#else
76db3ba4 4341 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4342 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
9fddaa0c 4343 return;
9a64fbe4
FB
4344 }
4345 /* This has no effect: it should ensure that all previous
4346 * tlbie have completed
4347 */
e06fcd75 4348 gen_stop_exception(ctx);
9a64fbe4 4349#endif
79aceca5
FB
4350}
4351
426613db
JM
4352#if defined(TARGET_PPC64)
4353/* slbia */
99e300ef 4354static void gen_slbia(DisasContext *ctx)
426613db
JM
4355{
4356#if defined(CONFIG_USER_ONLY)
e06fcd75 4357 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db 4358#else
76db3ba4 4359 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4360 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db
JM
4361 return;
4362 }
c6c7cf05 4363 gen_helper_slbia(cpu_env);
426613db
JM
4364#endif
4365}
4366
4367/* slbie */
99e300ef 4368static void gen_slbie(DisasContext *ctx)
426613db
JM
4369{
4370#if defined(CONFIG_USER_ONLY)
e06fcd75 4371 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db 4372#else
76db3ba4 4373 if (unlikely(!ctx->mem_idx)) {
e06fcd75 4374 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
426613db
JM
4375 return;
4376 }
c6c7cf05 4377 gen_helper_slbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
426613db
JM
4378#endif
4379}
4380#endif
4381
79aceca5
FB
4382/*** External control ***/
4383/* Optional: */
99e300ef 4384
54623277 4385/* eciwx */
99e300ef 4386static void gen_eciwx(DisasContext *ctx)
79aceca5 4387{
76db3ba4 4388 TCGv t0;
fa407c03 4389 /* Should check EAR[E] ! */
76db3ba4
AJ
4390 gen_set_access_type(ctx, ACCESS_EXT);
4391 t0 = tcg_temp_new();
4392 gen_addr_reg_index(ctx, t0);
fa407c03 4393 gen_check_align(ctx, t0, 0x03);
76db3ba4 4394 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0);
fa407c03 4395 tcg_temp_free(t0);
76a66253
JM
4396}
4397
4398/* ecowx */
99e300ef 4399static void gen_ecowx(DisasContext *ctx)
76a66253 4400{
76db3ba4 4401 TCGv t0;
fa407c03 4402 /* Should check EAR[E] ! */
76db3ba4
AJ
4403 gen_set_access_type(ctx, ACCESS_EXT);
4404 t0 = tcg_temp_new();
4405 gen_addr_reg_index(ctx, t0);
fa407c03 4406 gen_check_align(ctx, t0, 0x03);
76db3ba4 4407 gen_qemu_st32(ctx, cpu_gpr[rD(ctx->opcode)], t0);
fa407c03 4408 tcg_temp_free(t0);
76a66253
JM
4409}
4410
4411/* PowerPC 601 specific instructions */
99e300ef 4412
54623277 4413/* abs - abs. */
99e300ef 4414static void gen_abs(DisasContext *ctx)
76a66253 4415{
22e0e173
AJ
4416 int l1 = gen_new_label();
4417 int l2 = gen_new_label();
4418 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l1);
4419 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4420 tcg_gen_br(l2);
4421 gen_set_label(l1);
4422 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4423 gen_set_label(l2);
76a66253 4424 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4425 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4426}
4427
4428/* abso - abso. */
99e300ef 4429static void gen_abso(DisasContext *ctx)
76a66253 4430{
22e0e173
AJ
4431 int l1 = gen_new_label();
4432 int l2 = gen_new_label();
4433 int l3 = gen_new_label();
4434 /* Start with XER OV disabled, the most likely case */
da91a00f 4435 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4436 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l2);
4437 tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[rA(ctx->opcode)], 0x80000000, l1);
da91a00f
RH
4438 tcg_gen_movi_tl(cpu_ov, 1);
4439 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4440 tcg_gen_br(l2);
4441 gen_set_label(l1);
4442 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4443 tcg_gen_br(l3);
4444 gen_set_label(l2);
4445 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4446 gen_set_label(l3);
76a66253 4447 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4448 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4449}
4450
4451/* clcs */
99e300ef 4452static void gen_clcs(DisasContext *ctx)
76a66253 4453{
22e0e173 4454 TCGv_i32 t0 = tcg_const_i32(rA(ctx->opcode));
d523dd00 4455 gen_helper_clcs(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
22e0e173 4456 tcg_temp_free_i32(t0);
c7697e1f 4457 /* Rc=1 sets CR0 to an undefined state */
76a66253
JM
4458}
4459
4460/* div - div. */
99e300ef 4461static void gen_div(DisasContext *ctx)
76a66253 4462{
d15f74fb
BS
4463 gen_helper_div(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4464 cpu_gpr[rB(ctx->opcode)]);
76a66253 4465 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4466 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4467}
4468
4469/* divo - divo. */
99e300ef 4470static void gen_divo(DisasContext *ctx)
76a66253 4471{
d15f74fb
BS
4472 gen_helper_divo(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4473 cpu_gpr[rB(ctx->opcode)]);
76a66253 4474 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4475 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4476}
4477
4478/* divs - divs. */
99e300ef 4479static void gen_divs(DisasContext *ctx)
76a66253 4480{
d15f74fb
BS
4481 gen_helper_divs(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4482 cpu_gpr[rB(ctx->opcode)]);
76a66253 4483 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4484 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4485}
4486
4487/* divso - divso. */
99e300ef 4488static void gen_divso(DisasContext *ctx)
76a66253 4489{
d15f74fb
BS
4490 gen_helper_divso(cpu_gpr[rD(ctx->opcode)], cpu_env,
4491 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
76a66253 4492 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4493 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4494}
4495
4496/* doz - doz. */
99e300ef 4497static void gen_doz(DisasContext *ctx)
76a66253 4498{
22e0e173
AJ
4499 int l1 = gen_new_label();
4500 int l2 = gen_new_label();
4501 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4502 tcg_gen_sub_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4503 tcg_gen_br(l2);
4504 gen_set_label(l1);
4505 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4506 gen_set_label(l2);
76a66253 4507 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4508 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4509}
4510
4511/* dozo - dozo. */
99e300ef 4512static void gen_dozo(DisasContext *ctx)
76a66253 4513{
22e0e173
AJ
4514 int l1 = gen_new_label();
4515 int l2 = gen_new_label();
4516 TCGv t0 = tcg_temp_new();
4517 TCGv t1 = tcg_temp_new();
4518 TCGv t2 = tcg_temp_new();
4519 /* Start with XER OV disabled, the most likely case */
da91a00f 4520 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4521 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4522 tcg_gen_sub_tl(t0, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4523 tcg_gen_xor_tl(t1, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4524 tcg_gen_xor_tl(t2, cpu_gpr[rA(ctx->opcode)], t0);
4525 tcg_gen_andc_tl(t1, t1, t2);
4526 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
4527 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
da91a00f
RH
4528 tcg_gen_movi_tl(cpu_ov, 1);
4529 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4530 tcg_gen_br(l2);
4531 gen_set_label(l1);
4532 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4533 gen_set_label(l2);
4534 tcg_temp_free(t0);
4535 tcg_temp_free(t1);
4536 tcg_temp_free(t2);
76a66253 4537 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4538 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4539}
4540
4541/* dozi */
99e300ef 4542static void gen_dozi(DisasContext *ctx)
76a66253 4543{
22e0e173
AJ
4544 target_long simm = SIMM(ctx->opcode);
4545 int l1 = gen_new_label();
4546 int l2 = gen_new_label();
4547 tcg_gen_brcondi_tl(TCG_COND_LT, cpu_gpr[rA(ctx->opcode)], simm, l1);
4548 tcg_gen_subfi_tl(cpu_gpr[rD(ctx->opcode)], simm, cpu_gpr[rA(ctx->opcode)]);
4549 tcg_gen_br(l2);
4550 gen_set_label(l1);
4551 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4552 gen_set_label(l2);
4553 if (unlikely(Rc(ctx->opcode) != 0))
4554 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4555}
4556
76a66253 4557/* lscbx - lscbx. */
99e300ef 4558static void gen_lscbx(DisasContext *ctx)
76a66253 4559{
bdb4b689
AJ
4560 TCGv t0 = tcg_temp_new();
4561 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
4562 TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
4563 TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
76a66253 4564
76db3ba4 4565 gen_addr_reg_index(ctx, t0);
76a66253 4566 /* NIP cannot be restored if the memory exception comes from an helper */
d9bce9d9 4567 gen_update_nip(ctx, ctx->nip - 4);
2f5a189c 4568 gen_helper_lscbx(t0, cpu_env, t0, t1, t2, t3);
bdb4b689
AJ
4569 tcg_temp_free_i32(t1);
4570 tcg_temp_free_i32(t2);
4571 tcg_temp_free_i32(t3);
3d7b417e 4572 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F);
bdb4b689 4573 tcg_gen_or_tl(cpu_xer, cpu_xer, t0);
76a66253 4574 if (unlikely(Rc(ctx->opcode) != 0))
bdb4b689
AJ
4575 gen_set_Rc0(ctx, t0);
4576 tcg_temp_free(t0);
76a66253
JM
4577}
4578
4579/* maskg - maskg. */
99e300ef 4580static void gen_maskg(DisasContext *ctx)
76a66253 4581{
22e0e173
AJ
4582 int l1 = gen_new_label();
4583 TCGv t0 = tcg_temp_new();
4584 TCGv t1 = tcg_temp_new();
4585 TCGv t2 = tcg_temp_new();
4586 TCGv t3 = tcg_temp_new();
4587 tcg_gen_movi_tl(t3, 0xFFFFFFFF);
4588 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4589 tcg_gen_andi_tl(t1, cpu_gpr[rS(ctx->opcode)], 0x1F);
4590 tcg_gen_addi_tl(t2, t0, 1);
4591 tcg_gen_shr_tl(t2, t3, t2);
4592 tcg_gen_shr_tl(t3, t3, t1);
4593 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], t2, t3);
4594 tcg_gen_brcond_tl(TCG_COND_GE, t0, t1, l1);
4595 tcg_gen_neg_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4596 gen_set_label(l1);
4597 tcg_temp_free(t0);
4598 tcg_temp_free(t1);
4599 tcg_temp_free(t2);
4600 tcg_temp_free(t3);
76a66253 4601 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4602 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4603}
4604
4605/* maskir - maskir. */
99e300ef 4606static void gen_maskir(DisasContext *ctx)
76a66253 4607{
22e0e173
AJ
4608 TCGv t0 = tcg_temp_new();
4609 TCGv t1 = tcg_temp_new();
4610 tcg_gen_and_tl(t0, cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4611 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4612 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4613 tcg_temp_free(t0);
4614 tcg_temp_free(t1);
76a66253 4615 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4616 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4617}
4618
4619/* mul - mul. */
99e300ef 4620static void gen_mul(DisasContext *ctx)
76a66253 4621{
22e0e173
AJ
4622 TCGv_i64 t0 = tcg_temp_new_i64();
4623 TCGv_i64 t1 = tcg_temp_new_i64();
4624 TCGv t2 = tcg_temp_new();
4625 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4626 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4627 tcg_gen_mul_i64(t0, t0, t1);
4628 tcg_gen_trunc_i64_tl(t2, t0);
4629 gen_store_spr(SPR_MQ, t2);
4630 tcg_gen_shri_i64(t1, t0, 32);
4631 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4632 tcg_temp_free_i64(t0);
4633 tcg_temp_free_i64(t1);
4634 tcg_temp_free(t2);
76a66253 4635 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4636 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4637}
4638
4639/* mulo - mulo. */
99e300ef 4640static void gen_mulo(DisasContext *ctx)
76a66253 4641{
22e0e173
AJ
4642 int l1 = gen_new_label();
4643 TCGv_i64 t0 = tcg_temp_new_i64();
4644 TCGv_i64 t1 = tcg_temp_new_i64();
4645 TCGv t2 = tcg_temp_new();
4646 /* Start with XER OV disabled, the most likely case */
da91a00f 4647 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4648 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4649 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4650 tcg_gen_mul_i64(t0, t0, t1);
4651 tcg_gen_trunc_i64_tl(t2, t0);
4652 gen_store_spr(SPR_MQ, t2);
4653 tcg_gen_shri_i64(t1, t0, 32);
4654 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4655 tcg_gen_ext32s_i64(t1, t0);
4656 tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
da91a00f
RH
4657 tcg_gen_movi_tl(cpu_ov, 1);
4658 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4659 gen_set_label(l1);
4660 tcg_temp_free_i64(t0);
4661 tcg_temp_free_i64(t1);
4662 tcg_temp_free(t2);
76a66253 4663 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4664 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4665}
4666
4667/* nabs - nabs. */
99e300ef 4668static void gen_nabs(DisasContext *ctx)
76a66253 4669{
22e0e173
AJ
4670 int l1 = gen_new_label();
4671 int l2 = gen_new_label();
4672 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4673 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4674 tcg_gen_br(l2);
4675 gen_set_label(l1);
4676 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4677 gen_set_label(l2);
76a66253 4678 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4679 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4680}
4681
4682/* nabso - nabso. */
99e300ef 4683static void gen_nabso(DisasContext *ctx)
76a66253 4684{
22e0e173
AJ
4685 int l1 = gen_new_label();
4686 int l2 = gen_new_label();
4687 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4688 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
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 gen_set_label(l2);
4693 /* nabs never overflows */
da91a00f 4694 tcg_gen_movi_tl(cpu_ov, 0);
76a66253 4695 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4696 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4697}
4698
4699/* rlmi - rlmi. */
99e300ef 4700static void gen_rlmi(DisasContext *ctx)
76a66253 4701{
7487953d
AJ
4702 uint32_t mb = MB(ctx->opcode);
4703 uint32_t me = ME(ctx->opcode);
4704 TCGv t0 = tcg_temp_new();
4705 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4706 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4707 tcg_gen_andi_tl(t0, t0, MASK(mb, me));
4708 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me));
4709 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0);
4710 tcg_temp_free(t0);
76a66253 4711 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4712 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4713}
4714
4715/* rrib - rrib. */
99e300ef 4716static void gen_rrib(DisasContext *ctx)
76a66253 4717{
7487953d
AJ
4718 TCGv t0 = tcg_temp_new();
4719 TCGv t1 = tcg_temp_new();
4720 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4721 tcg_gen_movi_tl(t1, 0x80000000);
4722 tcg_gen_shr_tl(t1, t1, t0);
4723 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4724 tcg_gen_and_tl(t0, t0, t1);
4725 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1);
4726 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4727 tcg_temp_free(t0);
4728 tcg_temp_free(t1);
76a66253 4729 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4730 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4731}
4732
4733/* sle - sle. */
99e300ef 4734static void gen_sle(DisasContext *ctx)
76a66253 4735{
7487953d
AJ
4736 TCGv t0 = tcg_temp_new();
4737 TCGv t1 = tcg_temp_new();
4738 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4739 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4740 tcg_gen_subfi_tl(t1, 32, t1);
4741 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4742 tcg_gen_or_tl(t1, t0, t1);
4743 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4744 gen_store_spr(SPR_MQ, t1);
4745 tcg_temp_free(t0);
4746 tcg_temp_free(t1);
76a66253 4747 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4748 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4749}
4750
4751/* sleq - sleq. */
99e300ef 4752static void gen_sleq(DisasContext *ctx)
76a66253 4753{
7487953d
AJ
4754 TCGv t0 = tcg_temp_new();
4755 TCGv t1 = tcg_temp_new();
4756 TCGv t2 = tcg_temp_new();
4757 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4758 tcg_gen_movi_tl(t2, 0xFFFFFFFF);
4759 tcg_gen_shl_tl(t2, t2, t0);
4760 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4761 gen_load_spr(t1, SPR_MQ);
4762 gen_store_spr(SPR_MQ, t0);
4763 tcg_gen_and_tl(t0, t0, t2);
4764 tcg_gen_andc_tl(t1, t1, t2);
4765 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4766 tcg_temp_free(t0);
4767 tcg_temp_free(t1);
4768 tcg_temp_free(t2);
76a66253 4769 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4770 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4771}
4772
4773/* sliq - sliq. */
99e300ef 4774static void gen_sliq(DisasContext *ctx)
76a66253 4775{
7487953d
AJ
4776 int sh = SH(ctx->opcode);
4777 TCGv t0 = tcg_temp_new();
4778 TCGv t1 = tcg_temp_new();
4779 tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4780 tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4781 tcg_gen_or_tl(t1, t0, t1);
4782 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4783 gen_store_spr(SPR_MQ, t1);
4784 tcg_temp_free(t0);
4785 tcg_temp_free(t1);
76a66253 4786 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4787 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4788}
4789
4790/* slliq - slliq. */
99e300ef 4791static void gen_slliq(DisasContext *ctx)
76a66253 4792{
7487953d
AJ
4793 int sh = SH(ctx->opcode);
4794 TCGv t0 = tcg_temp_new();
4795 TCGv t1 = tcg_temp_new();
4796 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4797 gen_load_spr(t1, SPR_MQ);
4798 gen_store_spr(SPR_MQ, t0);
4799 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU << sh));
4800 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh));
4801 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4802 tcg_temp_free(t0);
4803 tcg_temp_free(t1);
76a66253 4804 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4805 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4806}
4807
4808/* sllq - sllq. */
99e300ef 4809static void gen_sllq(DisasContext *ctx)
76a66253 4810{
7487953d
AJ
4811 int l1 = gen_new_label();
4812 int l2 = gen_new_label();
4813 TCGv t0 = tcg_temp_local_new();
4814 TCGv t1 = tcg_temp_local_new();
4815 TCGv t2 = tcg_temp_local_new();
4816 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4817 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4818 tcg_gen_shl_tl(t1, t1, t2);
4819 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4820 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4821 gen_load_spr(t0, SPR_MQ);
4822 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4823 tcg_gen_br(l2);
4824 gen_set_label(l1);
4825 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4826 gen_load_spr(t2, SPR_MQ);
4827 tcg_gen_andc_tl(t1, t2, t1);
4828 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4829 gen_set_label(l2);
4830 tcg_temp_free(t0);
4831 tcg_temp_free(t1);
4832 tcg_temp_free(t2);
76a66253 4833 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4834 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4835}
4836
4837/* slq - slq. */
99e300ef 4838static void gen_slq(DisasContext *ctx)
76a66253 4839{
7487953d
AJ
4840 int l1 = gen_new_label();
4841 TCGv t0 = tcg_temp_new();
4842 TCGv t1 = tcg_temp_new();
4843 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4844 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4845 tcg_gen_subfi_tl(t1, 32, t1);
4846 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4847 tcg_gen_or_tl(t1, t0, t1);
4848 gen_store_spr(SPR_MQ, t1);
4849 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
4850 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4851 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4852 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
4853 gen_set_label(l1);
4854 tcg_temp_free(t0);
4855 tcg_temp_free(t1);
76a66253 4856 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4857 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4858}
4859
d9bce9d9 4860/* sraiq - sraiq. */
99e300ef 4861static void gen_sraiq(DisasContext *ctx)
76a66253 4862{
7487953d
AJ
4863 int sh = SH(ctx->opcode);
4864 int l1 = gen_new_label();
4865 TCGv t0 = tcg_temp_new();
4866 TCGv t1 = tcg_temp_new();
4867 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4868 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4869 tcg_gen_or_tl(t0, t0, t1);
4870 gen_store_spr(SPR_MQ, t0);
da91a00f 4871 tcg_gen_movi_tl(cpu_ca, 0);
7487953d
AJ
4872 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4873 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
da91a00f 4874 tcg_gen_movi_tl(cpu_ca, 1);
7487953d
AJ
4875 gen_set_label(l1);
4876 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
4877 tcg_temp_free(t0);
4878 tcg_temp_free(t1);
76a66253 4879 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4880 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4881}
4882
4883/* sraq - sraq. */
99e300ef 4884static void gen_sraq(DisasContext *ctx)
76a66253 4885{
7487953d
AJ
4886 int l1 = gen_new_label();
4887 int l2 = gen_new_label();
4888 TCGv t0 = tcg_temp_new();
4889 TCGv t1 = tcg_temp_local_new();
4890 TCGv t2 = tcg_temp_local_new();
4891 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4892 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4893 tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2);
4894 tcg_gen_subfi_tl(t2, 32, t2);
4895 tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2);
4896 tcg_gen_or_tl(t0, t0, t2);
4897 gen_store_spr(SPR_MQ, t0);
4898 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4899 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1);
4900 tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]);
4901 tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31);
4902 gen_set_label(l1);
4903 tcg_temp_free(t0);
4904 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1);
da91a00f 4905 tcg_gen_movi_tl(cpu_ca, 0);
7487953d
AJ
4906 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
4907 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2);
da91a00f 4908 tcg_gen_movi_tl(cpu_ca, 1);
7487953d
AJ
4909 gen_set_label(l2);
4910 tcg_temp_free(t1);
4911 tcg_temp_free(t2);
76a66253 4912 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4913 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4914}
4915
4916/* sre - sre. */
99e300ef 4917static void gen_sre(DisasContext *ctx)
76a66253 4918{
7487953d
AJ
4919 TCGv t0 = tcg_temp_new();
4920 TCGv t1 = tcg_temp_new();
4921 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4922 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4923 tcg_gen_subfi_tl(t1, 32, t1);
4924 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4925 tcg_gen_or_tl(t1, t0, t1);
4926 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4927 gen_store_spr(SPR_MQ, t1);
4928 tcg_temp_free(t0);
4929 tcg_temp_free(t1);
76a66253 4930 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4931 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4932}
4933
4934/* srea - srea. */
99e300ef 4935static void gen_srea(DisasContext *ctx)
76a66253 4936{
7487953d
AJ
4937 TCGv t0 = tcg_temp_new();
4938 TCGv t1 = tcg_temp_new();
4939 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4940 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4941 gen_store_spr(SPR_MQ, t0);
4942 tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1);
4943 tcg_temp_free(t0);
4944 tcg_temp_free(t1);
76a66253 4945 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4946 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4947}
4948
4949/* sreq */
99e300ef 4950static void gen_sreq(DisasContext *ctx)
76a66253 4951{
7487953d
AJ
4952 TCGv t0 = tcg_temp_new();
4953 TCGv t1 = tcg_temp_new();
4954 TCGv t2 = tcg_temp_new();
4955 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4956 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4957 tcg_gen_shr_tl(t1, t1, t0);
4958 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4959 gen_load_spr(t2, SPR_MQ);
4960 gen_store_spr(SPR_MQ, t0);
4961 tcg_gen_and_tl(t0, t0, t1);
4962 tcg_gen_andc_tl(t2, t2, t1);
4963 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
4964 tcg_temp_free(t0);
4965 tcg_temp_free(t1);
4966 tcg_temp_free(t2);
76a66253 4967 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4968 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4969}
4970
4971/* sriq */
99e300ef 4972static void gen_sriq(DisasContext *ctx)
76a66253 4973{
7487953d
AJ
4974 int sh = SH(ctx->opcode);
4975 TCGv t0 = tcg_temp_new();
4976 TCGv t1 = tcg_temp_new();
4977 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4978 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4979 tcg_gen_or_tl(t1, t0, t1);
4980 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4981 gen_store_spr(SPR_MQ, t1);
4982 tcg_temp_free(t0);
4983 tcg_temp_free(t1);
76a66253 4984 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4985 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4986}
4987
4988/* srliq */
99e300ef 4989static void gen_srliq(DisasContext *ctx)
76a66253 4990{
7487953d
AJ
4991 int sh = SH(ctx->opcode);
4992 TCGv t0 = tcg_temp_new();
4993 TCGv t1 = tcg_temp_new();
4994 tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4995 gen_load_spr(t1, SPR_MQ);
4996 gen_store_spr(SPR_MQ, t0);
4997 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU >> sh));
4998 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh));
4999 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5000 tcg_temp_free(t0);
5001 tcg_temp_free(t1);
76a66253 5002 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5003 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5004}
5005
5006/* srlq */
99e300ef 5007static void gen_srlq(DisasContext *ctx)
76a66253 5008{
7487953d
AJ
5009 int l1 = gen_new_label();
5010 int l2 = gen_new_label();
5011 TCGv t0 = tcg_temp_local_new();
5012 TCGv t1 = tcg_temp_local_new();
5013 TCGv t2 = tcg_temp_local_new();
5014 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5015 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5016 tcg_gen_shr_tl(t2, t1, t2);
5017 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5018 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5019 gen_load_spr(t0, SPR_MQ);
5020 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5021 tcg_gen_br(l2);
5022 gen_set_label(l1);
5023 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5024 tcg_gen_and_tl(t0, t0, t2);
5025 gen_load_spr(t1, SPR_MQ);
5026 tcg_gen_andc_tl(t1, t1, t2);
5027 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5028 gen_set_label(l2);
5029 tcg_temp_free(t0);
5030 tcg_temp_free(t1);
5031 tcg_temp_free(t2);
76a66253 5032 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5033 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5034}
5035
5036/* srq */
99e300ef 5037static void gen_srq(DisasContext *ctx)
76a66253 5038{
7487953d
AJ
5039 int l1 = gen_new_label();
5040 TCGv t0 = tcg_temp_new();
5041 TCGv t1 = tcg_temp_new();
5042 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5043 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5044 tcg_gen_subfi_tl(t1, 32, t1);
5045 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5046 tcg_gen_or_tl(t1, t0, t1);
5047 gen_store_spr(SPR_MQ, t1);
5048 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
5049 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5050 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5051 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
5052 gen_set_label(l1);
5053 tcg_temp_free(t0);
5054 tcg_temp_free(t1);
76a66253 5055 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5056 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5057}
5058
5059/* PowerPC 602 specific instructions */
99e300ef 5060
54623277 5061/* dsa */
99e300ef 5062static void gen_dsa(DisasContext *ctx)
76a66253
JM
5063{
5064 /* XXX: TODO */
e06fcd75 5065 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5066}
5067
5068/* esa */
99e300ef 5069static void gen_esa(DisasContext *ctx)
76a66253
JM
5070{
5071 /* XXX: TODO */
e06fcd75 5072 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5073}
5074
5075/* mfrom */
99e300ef 5076static void gen_mfrom(DisasContext *ctx)
76a66253
JM
5077{
5078#if defined(CONFIG_USER_ONLY)
e06fcd75 5079 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5080#else
76db3ba4 5081 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5082 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5083 return;
5084 }
cf02a65c 5085 gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5086#endif
5087}
5088
5089/* 602 - 603 - G2 TLB management */
e8eaa2c0 5090
54623277 5091/* tlbld */
e8eaa2c0 5092static void gen_tlbld_6xx(DisasContext *ctx)
76a66253
JM
5093{
5094#if defined(CONFIG_USER_ONLY)
e06fcd75 5095 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5096#else
76db3ba4 5097 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5098 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5099 return;
5100 }
c6c7cf05 5101 gen_helper_6xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
76a66253
JM
5102#endif
5103}
5104
5105/* tlbli */
e8eaa2c0 5106static void gen_tlbli_6xx(DisasContext *ctx)
76a66253
JM
5107{
5108#if defined(CONFIG_USER_ONLY)
e06fcd75 5109 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5110#else
76db3ba4 5111 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5112 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5113 return;
5114 }
c6c7cf05 5115 gen_helper_6xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
76a66253
JM
5116#endif
5117}
5118
7dbe11ac 5119/* 74xx TLB management */
e8eaa2c0 5120
54623277 5121/* tlbld */
e8eaa2c0 5122static void gen_tlbld_74xx(DisasContext *ctx)
7dbe11ac
JM
5123{
5124#if defined(CONFIG_USER_ONLY)
e06fcd75 5125 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
7dbe11ac 5126#else
76db3ba4 5127 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5128 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
7dbe11ac
JM
5129 return;
5130 }
c6c7cf05 5131 gen_helper_74xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
7dbe11ac
JM
5132#endif
5133}
5134
5135/* tlbli */
e8eaa2c0 5136static void gen_tlbli_74xx(DisasContext *ctx)
7dbe11ac
JM
5137{
5138#if defined(CONFIG_USER_ONLY)
e06fcd75 5139 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
7dbe11ac 5140#else
76db3ba4 5141 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5142 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
7dbe11ac
JM
5143 return;
5144 }
c6c7cf05 5145 gen_helper_74xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
7dbe11ac
JM
5146#endif
5147}
5148
76a66253 5149/* POWER instructions not in PowerPC 601 */
99e300ef 5150
54623277 5151/* clf */
99e300ef 5152static void gen_clf(DisasContext *ctx)
76a66253
JM
5153{
5154 /* Cache line flush: implemented as no-op */
5155}
5156
5157/* cli */
99e300ef 5158static void gen_cli(DisasContext *ctx)
76a66253 5159{
7f75ffd3 5160 /* Cache line invalidate: privileged and treated as no-op */
76a66253 5161#if defined(CONFIG_USER_ONLY)
e06fcd75 5162 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5163#else
76db3ba4 5164 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5165 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5166 return;
5167 }
5168#endif
5169}
5170
5171/* dclst */
99e300ef 5172static void gen_dclst(DisasContext *ctx)
76a66253
JM
5173{
5174 /* Data cache line store: treated as no-op */
5175}
5176
99e300ef 5177static void gen_mfsri(DisasContext *ctx)
76a66253
JM
5178{
5179#if defined(CONFIG_USER_ONLY)
e06fcd75 5180 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5181#else
74d37793
AJ
5182 int ra = rA(ctx->opcode);
5183 int rd = rD(ctx->opcode);
5184 TCGv t0;
76db3ba4 5185 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5186 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5187 return;
5188 }
74d37793 5189 t0 = tcg_temp_new();
76db3ba4 5190 gen_addr_reg_index(ctx, t0);
74d37793
AJ
5191 tcg_gen_shri_tl(t0, t0, 28);
5192 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 5193 gen_helper_load_sr(cpu_gpr[rd], cpu_env, t0);
74d37793 5194 tcg_temp_free(t0);
76a66253 5195 if (ra != 0 && ra != rd)
74d37793 5196 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rd]);
76a66253
JM
5197#endif
5198}
5199
99e300ef 5200static void gen_rac(DisasContext *ctx)
76a66253
JM
5201{
5202#if defined(CONFIG_USER_ONLY)
e06fcd75 5203 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5204#else
22e0e173 5205 TCGv t0;
76db3ba4 5206 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5207 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5208 return;
5209 }
22e0e173 5210 t0 = tcg_temp_new();
76db3ba4 5211 gen_addr_reg_index(ctx, t0);
c6c7cf05 5212 gen_helper_rac(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
22e0e173 5213 tcg_temp_free(t0);
76a66253
JM
5214#endif
5215}
5216
99e300ef 5217static void gen_rfsvc(DisasContext *ctx)
76a66253
JM
5218{
5219#if defined(CONFIG_USER_ONLY)
e06fcd75 5220 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5221#else
76db3ba4 5222 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5223 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5224 return;
5225 }
e5f17ac6 5226 gen_helper_rfsvc(cpu_env);
e06fcd75 5227 gen_sync_exception(ctx);
76a66253
JM
5228#endif
5229}
5230
5231/* svc is not implemented for now */
5232
5233/* POWER2 specific instructions */
5234/* Quad manipulation (load/store two floats at a time) */
76a66253
JM
5235
5236/* lfq */
99e300ef 5237static void gen_lfq(DisasContext *ctx)
76a66253 5238{
01a4afeb 5239 int rd = rD(ctx->opcode);
76db3ba4
AJ
5240 TCGv t0;
5241 gen_set_access_type(ctx, ACCESS_FLOAT);
5242 t0 = tcg_temp_new();
5243 gen_addr_imm_index(ctx, t0, 0);
5244 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5245 gen_addr_add(ctx, t0, t0, 8);
5246 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
01a4afeb 5247 tcg_temp_free(t0);
76a66253
JM
5248}
5249
5250/* lfqu */
99e300ef 5251static void gen_lfqu(DisasContext *ctx)
76a66253
JM
5252{
5253 int ra = rA(ctx->opcode);
01a4afeb 5254 int rd = rD(ctx->opcode);
76db3ba4
AJ
5255 TCGv t0, t1;
5256 gen_set_access_type(ctx, ACCESS_FLOAT);
5257 t0 = tcg_temp_new();
5258 t1 = tcg_temp_new();
5259 gen_addr_imm_index(ctx, t0, 0);
5260 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5261 gen_addr_add(ctx, t1, t0, 8);
5262 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
76a66253 5263 if (ra != 0)
01a4afeb
AJ
5264 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5265 tcg_temp_free(t0);
5266 tcg_temp_free(t1);
76a66253
JM
5267}
5268
5269/* lfqux */
99e300ef 5270static void gen_lfqux(DisasContext *ctx)
76a66253
JM
5271{
5272 int ra = rA(ctx->opcode);
01a4afeb 5273 int rd = rD(ctx->opcode);
76db3ba4
AJ
5274 gen_set_access_type(ctx, ACCESS_FLOAT);
5275 TCGv t0, t1;
5276 t0 = tcg_temp_new();
5277 gen_addr_reg_index(ctx, t0);
5278 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5279 t1 = tcg_temp_new();
5280 gen_addr_add(ctx, t1, t0, 8);
5281 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5282 tcg_temp_free(t1);
76a66253 5283 if (ra != 0)
01a4afeb
AJ
5284 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5285 tcg_temp_free(t0);
76a66253
JM
5286}
5287
5288/* lfqx */
99e300ef 5289static void gen_lfqx(DisasContext *ctx)
76a66253 5290{
01a4afeb 5291 int rd = rD(ctx->opcode);
76db3ba4
AJ
5292 TCGv t0;
5293 gen_set_access_type(ctx, ACCESS_FLOAT);
5294 t0 = tcg_temp_new();
5295 gen_addr_reg_index(ctx, t0);
5296 gen_qemu_ld64(ctx, cpu_fpr[rd], t0);
5297 gen_addr_add(ctx, t0, t0, 8);
5298 gen_qemu_ld64(ctx, cpu_fpr[(rd + 1) % 32], t0);
01a4afeb 5299 tcg_temp_free(t0);
76a66253
JM
5300}
5301
5302/* stfq */
99e300ef 5303static void gen_stfq(DisasContext *ctx)
76a66253 5304{
01a4afeb 5305 int rd = rD(ctx->opcode);
76db3ba4
AJ
5306 TCGv t0;
5307 gen_set_access_type(ctx, ACCESS_FLOAT);
5308 t0 = tcg_temp_new();
5309 gen_addr_imm_index(ctx, t0, 0);
5310 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5311 gen_addr_add(ctx, t0, t0, 8);
5312 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
01a4afeb 5313 tcg_temp_free(t0);
76a66253
JM
5314}
5315
5316/* stfqu */
99e300ef 5317static void gen_stfqu(DisasContext *ctx)
76a66253
JM
5318{
5319 int ra = rA(ctx->opcode);
01a4afeb 5320 int rd = rD(ctx->opcode);
76db3ba4
AJ
5321 TCGv t0, t1;
5322 gen_set_access_type(ctx, ACCESS_FLOAT);
5323 t0 = tcg_temp_new();
5324 gen_addr_imm_index(ctx, t0, 0);
5325 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5326 t1 = tcg_temp_new();
5327 gen_addr_add(ctx, t1, t0, 8);
5328 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5329 tcg_temp_free(t1);
76a66253 5330 if (ra != 0)
01a4afeb
AJ
5331 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5332 tcg_temp_free(t0);
76a66253
JM
5333}
5334
5335/* stfqux */
99e300ef 5336static void gen_stfqux(DisasContext *ctx)
76a66253
JM
5337{
5338 int ra = rA(ctx->opcode);
01a4afeb 5339 int rd = rD(ctx->opcode);
76db3ba4
AJ
5340 TCGv t0, t1;
5341 gen_set_access_type(ctx, ACCESS_FLOAT);
5342 t0 = tcg_temp_new();
5343 gen_addr_reg_index(ctx, t0);
5344 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5345 t1 = tcg_temp_new();
5346 gen_addr_add(ctx, t1, t0, 8);
5347 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t1);
5348 tcg_temp_free(t1);
76a66253 5349 if (ra != 0)
01a4afeb
AJ
5350 tcg_gen_mov_tl(cpu_gpr[ra], t0);
5351 tcg_temp_free(t0);
76a66253
JM
5352}
5353
5354/* stfqx */
99e300ef 5355static void gen_stfqx(DisasContext *ctx)
76a66253 5356{
01a4afeb 5357 int rd = rD(ctx->opcode);
76db3ba4
AJ
5358 TCGv t0;
5359 gen_set_access_type(ctx, ACCESS_FLOAT);
5360 t0 = tcg_temp_new();
5361 gen_addr_reg_index(ctx, t0);
5362 gen_qemu_st64(ctx, cpu_fpr[rd], t0);
5363 gen_addr_add(ctx, t0, t0, 8);
5364 gen_qemu_st64(ctx, cpu_fpr[(rd + 1) % 32], t0);
01a4afeb 5365 tcg_temp_free(t0);
76a66253
JM
5366}
5367
5368/* BookE specific instructions */
99e300ef 5369
54623277 5370/* XXX: not implemented on 440 ? */
99e300ef 5371static void gen_mfapidi(DisasContext *ctx)
76a66253
JM
5372{
5373 /* XXX: TODO */
e06fcd75 5374 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5375}
5376
2662a059 5377/* XXX: not implemented on 440 ? */
99e300ef 5378static void gen_tlbiva(DisasContext *ctx)
76a66253
JM
5379{
5380#if defined(CONFIG_USER_ONLY)
e06fcd75 5381 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5382#else
74d37793 5383 TCGv t0;
76db3ba4 5384 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5385 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5386 return;
5387 }
ec72e276 5388 t0 = tcg_temp_new();
76db3ba4 5389 gen_addr_reg_index(ctx, t0);
c6c7cf05 5390 gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
74d37793 5391 tcg_temp_free(t0);
76a66253
JM
5392#endif
5393}
5394
5395/* All 405 MAC instructions are translated here */
636aa200
BS
5396static inline void gen_405_mulladd_insn(DisasContext *ctx, int opc2, int opc3,
5397 int ra, int rb, int rt, int Rc)
76a66253 5398{
182608d4
AJ
5399 TCGv t0, t1;
5400
a7812ae4
PB
5401 t0 = tcg_temp_local_new();
5402 t1 = tcg_temp_local_new();
182608d4 5403
76a66253
JM
5404 switch (opc3 & 0x0D) {
5405 case 0x05:
5406 /* macchw - macchw. - macchwo - macchwo. */
5407 /* macchws - macchws. - macchwso - macchwso. */
5408 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5409 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5410 /* mulchw - mulchw. */
182608d4
AJ
5411 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5412 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5413 tcg_gen_ext16s_tl(t1, t1);
76a66253
JM
5414 break;
5415 case 0x04:
5416 /* macchwu - macchwu. - macchwuo - macchwuo. */
5417 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5418 /* mulchwu - mulchwu. */
182608d4
AJ
5419 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5420 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5421 tcg_gen_ext16u_tl(t1, t1);
76a66253
JM
5422 break;
5423 case 0x01:
5424 /* machhw - machhw. - machhwo - machhwo. */
5425 /* machhws - machhws. - machhwso - machhwso. */
5426 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5427 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5428 /* mulhhw - mulhhw. */
182608d4
AJ
5429 tcg_gen_sari_tl(t0, cpu_gpr[ra], 16);
5430 tcg_gen_ext16s_tl(t0, t0);
5431 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5432 tcg_gen_ext16s_tl(t1, t1);
76a66253
JM
5433 break;
5434 case 0x00:
5435 /* machhwu - machhwu. - machhwuo - machhwuo. */
5436 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5437 /* mulhhwu - mulhhwu. */
182608d4
AJ
5438 tcg_gen_shri_tl(t0, cpu_gpr[ra], 16);
5439 tcg_gen_ext16u_tl(t0, t0);
5440 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5441 tcg_gen_ext16u_tl(t1, t1);
76a66253
JM
5442 break;
5443 case 0x0D:
5444 /* maclhw - maclhw. - maclhwo - maclhwo. */
5445 /* maclhws - maclhws. - maclhwso - maclhwso. */
5446 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5447 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5448 /* mullhw - mullhw. */
182608d4
AJ
5449 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5450 tcg_gen_ext16s_tl(t1, cpu_gpr[rb]);
76a66253
JM
5451 break;
5452 case 0x0C:
5453 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5454 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5455 /* mullhwu - mullhwu. */
182608d4
AJ
5456 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5457 tcg_gen_ext16u_tl(t1, cpu_gpr[rb]);
76a66253
JM
5458 break;
5459 }
76a66253 5460 if (opc2 & 0x04) {
182608d4
AJ
5461 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5462 tcg_gen_mul_tl(t1, t0, t1);
5463 if (opc2 & 0x02) {
5464 /* nmultiply-and-accumulate (0x0E) */
5465 tcg_gen_sub_tl(t0, cpu_gpr[rt], t1);
5466 } else {
5467 /* multiply-and-accumulate (0x0C) */
5468 tcg_gen_add_tl(t0, cpu_gpr[rt], t1);
5469 }
5470
5471 if (opc3 & 0x12) {
5472 /* Check overflow and/or saturate */
5473 int l1 = gen_new_label();
5474
5475 if (opc3 & 0x10) {
5476 /* Start with XER OV disabled, the most likely case */
da91a00f 5477 tcg_gen_movi_tl(cpu_ov, 0);
182608d4
AJ
5478 }
5479 if (opc3 & 0x01) {
5480 /* Signed */
5481 tcg_gen_xor_tl(t1, cpu_gpr[rt], t1);
5482 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1);
5483 tcg_gen_xor_tl(t1, cpu_gpr[rt], t0);
5484 tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1);
bdc4e053 5485 if (opc3 & 0x02) {
182608d4
AJ
5486 /* Saturate */
5487 tcg_gen_sari_tl(t0, cpu_gpr[rt], 31);
5488 tcg_gen_xori_tl(t0, t0, 0x7fffffff);
5489 }
5490 } else {
5491 /* Unsigned */
5492 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
bdc4e053 5493 if (opc3 & 0x02) {
182608d4
AJ
5494 /* Saturate */
5495 tcg_gen_movi_tl(t0, UINT32_MAX);
5496 }
5497 }
5498 if (opc3 & 0x10) {
5499 /* Check overflow */
da91a00f
RH
5500 tcg_gen_movi_tl(cpu_ov, 1);
5501 tcg_gen_movi_tl(cpu_so, 1);
182608d4
AJ
5502 }
5503 gen_set_label(l1);
5504 tcg_gen_mov_tl(cpu_gpr[rt], t0);
5505 }
5506 } else {
5507 tcg_gen_mul_tl(cpu_gpr[rt], t0, t1);
76a66253 5508 }
182608d4
AJ
5509 tcg_temp_free(t0);
5510 tcg_temp_free(t1);
76a66253
JM
5511 if (unlikely(Rc) != 0) {
5512 /* Update Rc0 */
182608d4 5513 gen_set_Rc0(ctx, cpu_gpr[rt]);
76a66253
JM
5514 }
5515}
5516
a750fc0b 5517#define GEN_MAC_HANDLER(name, opc2, opc3) \
99e300ef 5518static void glue(gen_, name)(DisasContext *ctx) \
76a66253
JM
5519{ \
5520 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5521 rD(ctx->opcode), Rc(ctx->opcode)); \
5522}
5523
5524/* macchw - macchw. */
a750fc0b 5525GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
76a66253 5526/* macchwo - macchwo. */
a750fc0b 5527GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
76a66253 5528/* macchws - macchws. */
a750fc0b 5529GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
76a66253 5530/* macchwso - macchwso. */
a750fc0b 5531GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
76a66253 5532/* macchwsu - macchwsu. */
a750fc0b 5533GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
76a66253 5534/* macchwsuo - macchwsuo. */
a750fc0b 5535GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
76a66253 5536/* macchwu - macchwu. */
a750fc0b 5537GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
76a66253 5538/* macchwuo - macchwuo. */
a750fc0b 5539GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
76a66253 5540/* machhw - machhw. */
a750fc0b 5541GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
76a66253 5542/* machhwo - machhwo. */
a750fc0b 5543GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
76a66253 5544/* machhws - machhws. */
a750fc0b 5545GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
76a66253 5546/* machhwso - machhwso. */
a750fc0b 5547GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
76a66253 5548/* machhwsu - machhwsu. */
a750fc0b 5549GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
76a66253 5550/* machhwsuo - machhwsuo. */
a750fc0b 5551GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
76a66253 5552/* machhwu - machhwu. */
a750fc0b 5553GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
76a66253 5554/* machhwuo - machhwuo. */
a750fc0b 5555GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
76a66253 5556/* maclhw - maclhw. */
a750fc0b 5557GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
76a66253 5558/* maclhwo - maclhwo. */
a750fc0b 5559GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
76a66253 5560/* maclhws - maclhws. */
a750fc0b 5561GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
76a66253 5562/* maclhwso - maclhwso. */
a750fc0b 5563GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
76a66253 5564/* maclhwu - maclhwu. */
a750fc0b 5565GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
76a66253 5566/* maclhwuo - maclhwuo. */
a750fc0b 5567GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
76a66253 5568/* maclhwsu - maclhwsu. */
a750fc0b 5569GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
76a66253 5570/* maclhwsuo - maclhwsuo. */
a750fc0b 5571GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
76a66253 5572/* nmacchw - nmacchw. */
a750fc0b 5573GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
76a66253 5574/* nmacchwo - nmacchwo. */
a750fc0b 5575GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
76a66253 5576/* nmacchws - nmacchws. */
a750fc0b 5577GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
76a66253 5578/* nmacchwso - nmacchwso. */
a750fc0b 5579GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
76a66253 5580/* nmachhw - nmachhw. */
a750fc0b 5581GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
76a66253 5582/* nmachhwo - nmachhwo. */
a750fc0b 5583GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
76a66253 5584/* nmachhws - nmachhws. */
a750fc0b 5585GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
76a66253 5586/* nmachhwso - nmachhwso. */
a750fc0b 5587GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
76a66253 5588/* nmaclhw - nmaclhw. */
a750fc0b 5589GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
76a66253 5590/* nmaclhwo - nmaclhwo. */
a750fc0b 5591GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
76a66253 5592/* nmaclhws - nmaclhws. */
a750fc0b 5593GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
76a66253 5594/* nmaclhwso - nmaclhwso. */
a750fc0b 5595GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
76a66253
JM
5596
5597/* mulchw - mulchw. */
a750fc0b 5598GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
76a66253 5599/* mulchwu - mulchwu. */
a750fc0b 5600GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
76a66253 5601/* mulhhw - mulhhw. */
a750fc0b 5602GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
76a66253 5603/* mulhhwu - mulhhwu. */
a750fc0b 5604GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
76a66253 5605/* mullhw - mullhw. */
a750fc0b 5606GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
76a66253 5607/* mullhwu - mullhwu. */
a750fc0b 5608GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
76a66253
JM
5609
5610/* mfdcr */
99e300ef 5611static void gen_mfdcr(DisasContext *ctx)
76a66253
JM
5612{
5613#if defined(CONFIG_USER_ONLY)
e06fcd75 5614 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253 5615#else
06dca6a7 5616 TCGv dcrn;
76db3ba4 5617 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5618 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253
JM
5619 return;
5620 }
06dca6a7
AJ
5621 /* NIP cannot be restored if the memory exception comes from an helper */
5622 gen_update_nip(ctx, ctx->nip - 4);
5623 dcrn = tcg_const_tl(SPR(ctx->opcode));
d0f1562d 5624 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env, dcrn);
06dca6a7 5625 tcg_temp_free(dcrn);
76a66253
JM
5626#endif
5627}
5628
5629/* mtdcr */
99e300ef 5630static void gen_mtdcr(DisasContext *ctx)
76a66253
JM
5631{
5632#if defined(CONFIG_USER_ONLY)
e06fcd75 5633 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253 5634#else
06dca6a7 5635 TCGv dcrn;
76db3ba4 5636 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5637 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253
JM
5638 return;
5639 }
06dca6a7
AJ
5640 /* NIP cannot be restored if the memory exception comes from an helper */
5641 gen_update_nip(ctx, ctx->nip - 4);
5642 dcrn = tcg_const_tl(SPR(ctx->opcode));
d0f1562d 5643 gen_helper_store_dcr(cpu_env, dcrn, cpu_gpr[rS(ctx->opcode)]);
06dca6a7 5644 tcg_temp_free(dcrn);
a42bd6cc
JM
5645#endif
5646}
5647
5648/* mfdcrx */
2662a059 5649/* XXX: not implemented on 440 ? */
99e300ef 5650static void gen_mfdcrx(DisasContext *ctx)
a42bd6cc
JM
5651{
5652#if defined(CONFIG_USER_ONLY)
e06fcd75 5653 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
a42bd6cc 5654#else
76db3ba4 5655 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5656 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
a42bd6cc
JM
5657 return;
5658 }
06dca6a7
AJ
5659 /* NIP cannot be restored if the memory exception comes from an helper */
5660 gen_update_nip(ctx, ctx->nip - 4);
d0f1562d
BS
5661 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5662 cpu_gpr[rA(ctx->opcode)]);
a750fc0b 5663 /* Note: Rc update flag set leads to undefined state of Rc0 */
a42bd6cc
JM
5664#endif
5665}
5666
5667/* mtdcrx */
2662a059 5668/* XXX: not implemented on 440 ? */
99e300ef 5669static void gen_mtdcrx(DisasContext *ctx)
a42bd6cc
JM
5670{
5671#if defined(CONFIG_USER_ONLY)
e06fcd75 5672 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
a42bd6cc 5673#else
76db3ba4 5674 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5675 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
a42bd6cc
JM
5676 return;
5677 }
06dca6a7
AJ
5678 /* NIP cannot be restored if the memory exception comes from an helper */
5679 gen_update_nip(ctx, ctx->nip - 4);
d0f1562d
BS
5680 gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
5681 cpu_gpr[rS(ctx->opcode)]);
a750fc0b 5682 /* Note: Rc update flag set leads to undefined state of Rc0 */
76a66253
JM
5683#endif
5684}
5685
a750fc0b 5686/* mfdcrux (PPC 460) : user-mode access to DCR */
99e300ef 5687static void gen_mfdcrux(DisasContext *ctx)
a750fc0b 5688{
06dca6a7
AJ
5689 /* NIP cannot be restored if the memory exception comes from an helper */
5690 gen_update_nip(ctx, ctx->nip - 4);
d0f1562d
BS
5691 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5692 cpu_gpr[rA(ctx->opcode)]);
a750fc0b
JM
5693 /* Note: Rc update flag set leads to undefined state of Rc0 */
5694}
5695
5696/* mtdcrux (PPC 460) : user-mode access to DCR */
99e300ef 5697static void gen_mtdcrux(DisasContext *ctx)
a750fc0b 5698{
06dca6a7
AJ
5699 /* NIP cannot be restored if the memory exception comes from an helper */
5700 gen_update_nip(ctx, ctx->nip - 4);
975e5463 5701 gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
d0f1562d 5702 cpu_gpr[rS(ctx->opcode)]);
a750fc0b
JM
5703 /* Note: Rc update flag set leads to undefined state of Rc0 */
5704}
5705
76a66253 5706/* dccci */
99e300ef 5707static void gen_dccci(DisasContext *ctx)
76a66253
JM
5708{
5709#if defined(CONFIG_USER_ONLY)
e06fcd75 5710 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5711#else
76db3ba4 5712 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5713 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5714 return;
5715 }
5716 /* interpreted as no-op */
5717#endif
5718}
5719
5720/* dcread */
99e300ef 5721static void gen_dcread(DisasContext *ctx)
76a66253
JM
5722{
5723#if defined(CONFIG_USER_ONLY)
e06fcd75 5724 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5725#else
b61f2753 5726 TCGv EA, val;
76db3ba4 5727 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5728 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5729 return;
5730 }
76db3ba4 5731 gen_set_access_type(ctx, ACCESS_CACHE);
a7812ae4 5732 EA = tcg_temp_new();
76db3ba4 5733 gen_addr_reg_index(ctx, EA);
a7812ae4 5734 val = tcg_temp_new();
76db3ba4 5735 gen_qemu_ld32u(ctx, val, EA);
b61f2753
AJ
5736 tcg_temp_free(val);
5737 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA);
5738 tcg_temp_free(EA);
76a66253
JM
5739#endif
5740}
5741
5742/* icbt */
e8eaa2c0 5743static void gen_icbt_40x(DisasContext *ctx)
76a66253
JM
5744{
5745 /* interpreted as no-op */
5746 /* XXX: specification say this is treated as a load by the MMU
5747 * but does not generate any exception
5748 */
5749}
5750
5751/* iccci */
99e300ef 5752static void gen_iccci(DisasContext *ctx)
76a66253
JM
5753{
5754#if defined(CONFIG_USER_ONLY)
e06fcd75 5755 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5756#else
76db3ba4 5757 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5758 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5759 return;
5760 }
5761 /* interpreted as no-op */
5762#endif
5763}
5764
5765/* icread */
99e300ef 5766static void gen_icread(DisasContext *ctx)
76a66253
JM
5767{
5768#if defined(CONFIG_USER_ONLY)
e06fcd75 5769 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5770#else
76db3ba4 5771 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5772 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5773 return;
5774 }
5775 /* interpreted as no-op */
5776#endif
5777}
5778
76db3ba4 5779/* rfci (mem_idx only) */
e8eaa2c0 5780static void gen_rfci_40x(DisasContext *ctx)
a42bd6cc
JM
5781{
5782#if defined(CONFIG_USER_ONLY)
e06fcd75 5783 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc 5784#else
76db3ba4 5785 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5786 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc
JM
5787 return;
5788 }
5789 /* Restore CPU state */
e5f17ac6 5790 gen_helper_40x_rfci(cpu_env);
e06fcd75 5791 gen_sync_exception(ctx);
a42bd6cc
JM
5792#endif
5793}
5794
99e300ef 5795static void gen_rfci(DisasContext *ctx)
a42bd6cc
JM
5796{
5797#if defined(CONFIG_USER_ONLY)
e06fcd75 5798 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc 5799#else
76db3ba4 5800 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5801 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc
JM
5802 return;
5803 }
5804 /* Restore CPU state */
e5f17ac6 5805 gen_helper_rfci(cpu_env);
e06fcd75 5806 gen_sync_exception(ctx);
a42bd6cc
JM
5807#endif
5808}
5809
5810/* BookE specific */
99e300ef 5811
54623277 5812/* XXX: not implemented on 440 ? */
99e300ef 5813static void gen_rfdi(DisasContext *ctx)
76a66253
JM
5814{
5815#if defined(CONFIG_USER_ONLY)
e06fcd75 5816 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5817#else
76db3ba4 5818 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5819 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5820 return;
5821 }
5822 /* Restore CPU state */
e5f17ac6 5823 gen_helper_rfdi(cpu_env);
e06fcd75 5824 gen_sync_exception(ctx);
76a66253
JM
5825#endif
5826}
5827
2662a059 5828/* XXX: not implemented on 440 ? */
99e300ef 5829static void gen_rfmci(DisasContext *ctx)
a42bd6cc
JM
5830{
5831#if defined(CONFIG_USER_ONLY)
e06fcd75 5832 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc 5833#else
76db3ba4 5834 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5835 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
a42bd6cc
JM
5836 return;
5837 }
5838 /* Restore CPU state */
e5f17ac6 5839 gen_helper_rfmci(cpu_env);
e06fcd75 5840 gen_sync_exception(ctx);
a42bd6cc
JM
5841#endif
5842}
5eb7995e 5843
d9bce9d9 5844/* TLB management - PowerPC 405 implementation */
e8eaa2c0 5845
54623277 5846/* tlbre */
e8eaa2c0 5847static void gen_tlbre_40x(DisasContext *ctx)
76a66253
JM
5848{
5849#if defined(CONFIG_USER_ONLY)
e06fcd75 5850 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5851#else
76db3ba4 5852 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5853 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5854 return;
5855 }
5856 switch (rB(ctx->opcode)) {
5857 case 0:
c6c7cf05
BS
5858 gen_helper_4xx_tlbre_hi(cpu_gpr[rD(ctx->opcode)], cpu_env,
5859 cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5860 break;
5861 case 1:
c6c7cf05
BS
5862 gen_helper_4xx_tlbre_lo(cpu_gpr[rD(ctx->opcode)], cpu_env,
5863 cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5864 break;
5865 default:
e06fcd75 5866 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253 5867 break;
9a64fbe4 5868 }
76a66253
JM
5869#endif
5870}
5871
d9bce9d9 5872/* tlbsx - tlbsx. */
e8eaa2c0 5873static void gen_tlbsx_40x(DisasContext *ctx)
76a66253
JM
5874{
5875#if defined(CONFIG_USER_ONLY)
e06fcd75 5876 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5877#else
74d37793 5878 TCGv t0;
76db3ba4 5879 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5880 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5881 return;
5882 }
74d37793 5883 t0 = tcg_temp_new();
76db3ba4 5884 gen_addr_reg_index(ctx, t0);
c6c7cf05 5885 gen_helper_4xx_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793
AJ
5886 tcg_temp_free(t0);
5887 if (Rc(ctx->opcode)) {
5888 int l1 = gen_new_label();
da91a00f 5889 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
74d37793
AJ
5890 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5891 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5892 gen_set_label(l1);
5893 }
76a66253 5894#endif
79aceca5
FB
5895}
5896
76a66253 5897/* tlbwe */
e8eaa2c0 5898static void gen_tlbwe_40x(DisasContext *ctx)
79aceca5 5899{
76a66253 5900#if defined(CONFIG_USER_ONLY)
e06fcd75 5901 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 5902#else
76db3ba4 5903 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5904 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
5905 return;
5906 }
5907 switch (rB(ctx->opcode)) {
5908 case 0:
c6c7cf05
BS
5909 gen_helper_4xx_tlbwe_hi(cpu_env, cpu_gpr[rA(ctx->opcode)],
5910 cpu_gpr[rS(ctx->opcode)]);
76a66253
JM
5911 break;
5912 case 1:
c6c7cf05
BS
5913 gen_helper_4xx_tlbwe_lo(cpu_env, cpu_gpr[rA(ctx->opcode)],
5914 cpu_gpr[rS(ctx->opcode)]);
76a66253
JM
5915 break;
5916 default:
e06fcd75 5917 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253 5918 break;
9a64fbe4 5919 }
76a66253
JM
5920#endif
5921}
5922
a4bb6c3e 5923/* TLB management - PowerPC 440 implementation */
e8eaa2c0 5924
54623277 5925/* tlbre */
e8eaa2c0 5926static void gen_tlbre_440(DisasContext *ctx)
5eb7995e
JM
5927{
5928#if defined(CONFIG_USER_ONLY)
e06fcd75 5929 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e 5930#else
76db3ba4 5931 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5932 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e
JM
5933 return;
5934 }
5935 switch (rB(ctx->opcode)) {
5936 case 0:
5eb7995e 5937 case 1:
5eb7995e 5938 case 2:
74d37793
AJ
5939 {
5940 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
c6c7cf05
BS
5941 gen_helper_440_tlbre(cpu_gpr[rD(ctx->opcode)], cpu_env,
5942 t0, cpu_gpr[rA(ctx->opcode)]);
74d37793
AJ
5943 tcg_temp_free_i32(t0);
5944 }
5eb7995e
JM
5945 break;
5946 default:
e06fcd75 5947 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5eb7995e
JM
5948 break;
5949 }
5950#endif
5951}
5952
5953/* tlbsx - tlbsx. */
e8eaa2c0 5954static void gen_tlbsx_440(DisasContext *ctx)
5eb7995e
JM
5955{
5956#if defined(CONFIG_USER_ONLY)
e06fcd75 5957 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e 5958#else
74d37793 5959 TCGv t0;
76db3ba4 5960 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5961 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e
JM
5962 return;
5963 }
74d37793 5964 t0 = tcg_temp_new();
76db3ba4 5965 gen_addr_reg_index(ctx, t0);
c6c7cf05 5966 gen_helper_440_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793
AJ
5967 tcg_temp_free(t0);
5968 if (Rc(ctx->opcode)) {
5969 int l1 = gen_new_label();
da91a00f 5970 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
74d37793
AJ
5971 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5972 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5973 gen_set_label(l1);
5974 }
5eb7995e
JM
5975#endif
5976}
5977
5978/* tlbwe */
e8eaa2c0 5979static void gen_tlbwe_440(DisasContext *ctx)
5eb7995e
JM
5980{
5981#if defined(CONFIG_USER_ONLY)
e06fcd75 5982 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e 5983#else
76db3ba4 5984 if (unlikely(!ctx->mem_idx)) {
e06fcd75 5985 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
5eb7995e
JM
5986 return;
5987 }
5988 switch (rB(ctx->opcode)) {
5989 case 0:
5eb7995e 5990 case 1:
5eb7995e 5991 case 2:
74d37793
AJ
5992 {
5993 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
c6c7cf05
BS
5994 gen_helper_440_tlbwe(cpu_env, t0, cpu_gpr[rA(ctx->opcode)],
5995 cpu_gpr[rS(ctx->opcode)]);
74d37793
AJ
5996 tcg_temp_free_i32(t0);
5997 }
5eb7995e
JM
5998 break;
5999 default:
e06fcd75 6000 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5eb7995e
JM
6001 break;
6002 }
6003#endif
6004}
6005
01662f3e
AG
6006/* TLB management - PowerPC BookE 2.06 implementation */
6007
6008/* tlbre */
6009static void gen_tlbre_booke206(DisasContext *ctx)
6010{
6011#if defined(CONFIG_USER_ONLY)
6012 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6013#else
6014 if (unlikely(!ctx->mem_idx)) {
6015 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6016 return;
6017 }
6018
c6c7cf05 6019 gen_helper_booke206_tlbre(cpu_env);
01662f3e
AG
6020#endif
6021}
6022
6023/* tlbsx - tlbsx. */
6024static void gen_tlbsx_booke206(DisasContext *ctx)
6025{
6026#if defined(CONFIG_USER_ONLY)
6027 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6028#else
6029 TCGv t0;
6030 if (unlikely(!ctx->mem_idx)) {
6031 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6032 return;
6033 }
6034
6035 if (rA(ctx->opcode)) {
6036 t0 = tcg_temp_new();
6037 tcg_gen_mov_tl(t0, cpu_gpr[rD(ctx->opcode)]);
6038 } else {
6039 t0 = tcg_const_tl(0);
6040 }
6041
6042 tcg_gen_add_tl(t0, t0, cpu_gpr[rB(ctx->opcode)]);
c6c7cf05 6043 gen_helper_booke206_tlbsx(cpu_env, t0);
01662f3e
AG
6044#endif
6045}
6046
6047/* tlbwe */
6048static void gen_tlbwe_booke206(DisasContext *ctx)
6049{
6050#if defined(CONFIG_USER_ONLY)
6051 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6052#else
6053 if (unlikely(!ctx->mem_idx)) {
6054 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6055 return;
6056 }
3f162d11 6057 gen_update_nip(ctx, ctx->nip - 4);
c6c7cf05 6058 gen_helper_booke206_tlbwe(cpu_env);
01662f3e
AG
6059#endif
6060}
6061
6062static void gen_tlbivax_booke206(DisasContext *ctx)
6063{
6064#if defined(CONFIG_USER_ONLY)
6065 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6066#else
6067 TCGv t0;
6068 if (unlikely(!ctx->mem_idx)) {
6069 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6070 return;
6071 }
6072
6073 t0 = tcg_temp_new();
6074 gen_addr_reg_index(ctx, t0);
6075
c6c7cf05 6076 gen_helper_booke206_tlbivax(cpu_env, t0);
01662f3e
AG
6077#endif
6078}
6079
6d3db821
AG
6080static void gen_tlbilx_booke206(DisasContext *ctx)
6081{
6082#if defined(CONFIG_USER_ONLY)
6083 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6084#else
6085 TCGv t0;
6086 if (unlikely(!ctx->mem_idx)) {
6087 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6088 return;
6089 }
6090
6091 t0 = tcg_temp_new();
6092 gen_addr_reg_index(ctx, t0);
6093
6094 switch((ctx->opcode >> 21) & 0x3) {
6095 case 0:
c6c7cf05 6096 gen_helper_booke206_tlbilx0(cpu_env, t0);
6d3db821
AG
6097 break;
6098 case 1:
c6c7cf05 6099 gen_helper_booke206_tlbilx1(cpu_env, t0);
6d3db821
AG
6100 break;
6101 case 3:
c6c7cf05 6102 gen_helper_booke206_tlbilx3(cpu_env, t0);
6d3db821
AG
6103 break;
6104 default:
6105 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
6106 break;
6107 }
6108
6109 tcg_temp_free(t0);
6110#endif
6111}
6112
01662f3e 6113
76a66253 6114/* wrtee */
99e300ef 6115static void gen_wrtee(DisasContext *ctx)
76a66253
JM
6116{
6117#if defined(CONFIG_USER_ONLY)
e06fcd75 6118 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 6119#else
6527f6ea 6120 TCGv t0;
76db3ba4 6121 if (unlikely(!ctx->mem_idx)) {
e06fcd75 6122 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
6123 return;
6124 }
6527f6ea
AJ
6125 t0 = tcg_temp_new();
6126 tcg_gen_andi_tl(t0, cpu_gpr[rD(ctx->opcode)], (1 << MSR_EE));
6127 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6128 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
6129 tcg_temp_free(t0);
dee96f6c
JM
6130 /* Stop translation to have a chance to raise an exception
6131 * if we just set msr_ee to 1
6132 */
e06fcd75 6133 gen_stop_exception(ctx);
76a66253
JM
6134#endif
6135}
6136
6137/* wrteei */
99e300ef 6138static void gen_wrteei(DisasContext *ctx)
76a66253
JM
6139{
6140#if defined(CONFIG_USER_ONLY)
e06fcd75 6141 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253 6142#else
76db3ba4 6143 if (unlikely(!ctx->mem_idx)) {
e06fcd75 6144 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
76a66253
JM
6145 return;
6146 }
fbe73008 6147 if (ctx->opcode & 0x00008000) {
6527f6ea
AJ
6148 tcg_gen_ori_tl(cpu_msr, cpu_msr, (1 << MSR_EE));
6149 /* Stop translation to have a chance to raise an exception */
e06fcd75 6150 gen_stop_exception(ctx);
6527f6ea 6151 } else {
1b6e5f99 6152 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6527f6ea 6153 }
76a66253
JM
6154#endif
6155}
6156
08e46e54 6157/* PowerPC 440 specific instructions */
99e300ef 6158
54623277 6159/* dlmzb */
99e300ef 6160static void gen_dlmzb(DisasContext *ctx)
76a66253 6161{
ef0d51af 6162 TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode));
d15f74fb
BS
6163 gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_env,
6164 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
ef0d51af 6165 tcg_temp_free_i32(t0);
76a66253
JM
6166}
6167
6168/* mbar replaces eieio on 440 */
99e300ef 6169static void gen_mbar(DisasContext *ctx)
76a66253
JM
6170{
6171 /* interpreted as no-op */
6172}
6173
6174/* msync replaces sync on 440 */
dcb2b9e1 6175static void gen_msync_4xx(DisasContext *ctx)
76a66253
JM
6176{
6177 /* interpreted as no-op */
6178}
6179
6180/* icbt */
e8eaa2c0 6181static void gen_icbt_440(DisasContext *ctx)
76a66253
JM
6182{
6183 /* interpreted as no-op */
6184 /* XXX: specification say this is treated as a load by the MMU
6185 * but does not generate any exception
6186 */
79aceca5
FB
6187}
6188
9e0b5cb1
AG
6189/* Embedded.Processor Control */
6190
6191static void gen_msgclr(DisasContext *ctx)
6192{
6193#if defined(CONFIG_USER_ONLY)
6194 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6195#else
6196 if (unlikely(ctx->mem_idx == 0)) {
6197 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6198 return;
6199 }
6200
e5f17ac6 6201 gen_helper_msgclr(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9e0b5cb1
AG
6202#endif
6203}
6204
d5d11a39
AG
6205static void gen_msgsnd(DisasContext *ctx)
6206{
6207#if defined(CONFIG_USER_ONLY)
6208 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6209#else
6210 if (unlikely(ctx->mem_idx == 0)) {
6211 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC);
6212 return;
6213 }
6214
6215 gen_helper_msgsnd(cpu_gpr[rB(ctx->opcode)]);
6216#endif
6217}
6218
a9d9eb8f
JM
6219/*** Altivec vector extension ***/
6220/* Altivec registers moves */
a9d9eb8f 6221
636aa200 6222static inline TCGv_ptr gen_avr_ptr(int reg)
564e571a 6223{
e4704b3b 6224 TCGv_ptr r = tcg_temp_new_ptr();
564e571a
AJ
6225 tcg_gen_addi_ptr(r, cpu_env, offsetof(CPUPPCState, avr[reg]));
6226 return r;
6227}
6228
a9d9eb8f 6229#define GEN_VR_LDX(name, opc2, opc3) \
99e300ef 6230static void glue(gen_, name)(DisasContext *ctx) \
a9d9eb8f 6231{ \
fe1e5c53 6232 TCGv EA; \
a9d9eb8f 6233 if (unlikely(!ctx->altivec_enabled)) { \
e06fcd75 6234 gen_exception(ctx, POWERPC_EXCP_VPU); \
a9d9eb8f
JM
6235 return; \
6236 } \
76db3ba4 6237 gen_set_access_type(ctx, ACCESS_INT); \
fe1e5c53 6238 EA = tcg_temp_new(); \
76db3ba4 6239 gen_addr_reg_index(ctx, EA); \
fe1e5c53 6240 tcg_gen_andi_tl(EA, EA, ~0xf); \
76db3ba4
AJ
6241 if (ctx->le_mode) { \
6242 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
fe1e5c53 6243 tcg_gen_addi_tl(EA, EA, 8); \
76db3ba4 6244 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
fe1e5c53 6245 } else { \
76db3ba4 6246 gen_qemu_ld64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
fe1e5c53 6247 tcg_gen_addi_tl(EA, EA, 8); \
76db3ba4 6248 gen_qemu_ld64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
fe1e5c53
AJ
6249 } \
6250 tcg_temp_free(EA); \
a9d9eb8f
JM
6251}
6252
6253#define GEN_VR_STX(name, opc2, opc3) \
99e300ef 6254static void gen_st##name(DisasContext *ctx) \
a9d9eb8f 6255{ \
fe1e5c53 6256 TCGv EA; \
a9d9eb8f 6257 if (unlikely(!ctx->altivec_enabled)) { \
e06fcd75 6258 gen_exception(ctx, POWERPC_EXCP_VPU); \
a9d9eb8f
JM
6259 return; \
6260 } \
76db3ba4 6261 gen_set_access_type(ctx, ACCESS_INT); \
fe1e5c53 6262 EA = tcg_temp_new(); \
76db3ba4 6263 gen_addr_reg_index(ctx, EA); \
fe1e5c53 6264 tcg_gen_andi_tl(EA, EA, ~0xf); \
76db3ba4
AJ
6265 if (ctx->le_mode) { \
6266 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
fe1e5c53 6267 tcg_gen_addi_tl(EA, EA, 8); \
76db3ba4 6268 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
fe1e5c53 6269 } else { \
76db3ba4 6270 gen_qemu_st64(ctx, cpu_avrh[rD(ctx->opcode)], EA); \
fe1e5c53 6271 tcg_gen_addi_tl(EA, EA, 8); \
76db3ba4 6272 gen_qemu_st64(ctx, cpu_avrl[rD(ctx->opcode)], EA); \
fe1e5c53
AJ
6273 } \
6274 tcg_temp_free(EA); \
a9d9eb8f
JM
6275}
6276
cbfb6ae9 6277#define GEN_VR_LVE(name, opc2, opc3) \
99e300ef 6278static void gen_lve##name(DisasContext *ctx) \
cbfb6ae9
AJ
6279 { \
6280 TCGv EA; \
6281 TCGv_ptr rs; \
6282 if (unlikely(!ctx->altivec_enabled)) { \
6283 gen_exception(ctx, POWERPC_EXCP_VPU); \
6284 return; \
6285 } \
6286 gen_set_access_type(ctx, ACCESS_INT); \
6287 EA = tcg_temp_new(); \
6288 gen_addr_reg_index(ctx, EA); \
6289 rs = gen_avr_ptr(rS(ctx->opcode)); \
2f5a189c 6290 gen_helper_lve##name(cpu_env, rs, EA); \
cbfb6ae9
AJ
6291 tcg_temp_free(EA); \
6292 tcg_temp_free_ptr(rs); \
6293 }
6294
6295#define GEN_VR_STVE(name, opc2, opc3) \
99e300ef 6296static void gen_stve##name(DisasContext *ctx) \
cbfb6ae9
AJ
6297 { \
6298 TCGv EA; \
6299 TCGv_ptr rs; \
6300 if (unlikely(!ctx->altivec_enabled)) { \
6301 gen_exception(ctx, POWERPC_EXCP_VPU); \
6302 return; \
6303 } \
6304 gen_set_access_type(ctx, ACCESS_INT); \
6305 EA = tcg_temp_new(); \
6306 gen_addr_reg_index(ctx, EA); \
6307 rs = gen_avr_ptr(rS(ctx->opcode)); \
2f5a189c 6308 gen_helper_stve##name(cpu_env, rs, EA); \
cbfb6ae9
AJ
6309 tcg_temp_free(EA); \
6310 tcg_temp_free_ptr(rs); \
6311 }
6312
fe1e5c53 6313GEN_VR_LDX(lvx, 0x07, 0x03);
a9d9eb8f 6314/* As we don't emulate the cache, lvxl is stricly equivalent to lvx */
fe1e5c53 6315GEN_VR_LDX(lvxl, 0x07, 0x0B);
a9d9eb8f 6316
cbfb6ae9
AJ
6317GEN_VR_LVE(bx, 0x07, 0x00);
6318GEN_VR_LVE(hx, 0x07, 0x01);
6319GEN_VR_LVE(wx, 0x07, 0x02);
6320
fe1e5c53 6321GEN_VR_STX(svx, 0x07, 0x07);
a9d9eb8f 6322/* As we don't emulate the cache, stvxl is stricly equivalent to stvx */
fe1e5c53 6323GEN_VR_STX(svxl, 0x07, 0x0F);
a9d9eb8f 6324
cbfb6ae9
AJ
6325GEN_VR_STVE(bx, 0x07, 0x04);
6326GEN_VR_STVE(hx, 0x07, 0x05);
6327GEN_VR_STVE(wx, 0x07, 0x06);
6328
99e300ef 6329static void gen_lvsl(DisasContext *ctx)
bf8d8ded
AJ
6330{
6331 TCGv_ptr rd;
6332 TCGv EA;
6333 if (unlikely(!ctx->altivec_enabled)) {
6334 gen_exception(ctx, POWERPC_EXCP_VPU);
6335 return;
6336 }
6337 EA = tcg_temp_new();
6338 gen_addr_reg_index(ctx, EA);
6339 rd = gen_avr_ptr(rD(ctx->opcode));
6340 gen_helper_lvsl(rd, EA);
6341 tcg_temp_free(EA);
6342 tcg_temp_free_ptr(rd);
6343}
6344
99e300ef 6345static void gen_lvsr(DisasContext *ctx)
bf8d8ded
AJ
6346{
6347 TCGv_ptr rd;
6348 TCGv EA;
6349 if (unlikely(!ctx->altivec_enabled)) {
6350 gen_exception(ctx, POWERPC_EXCP_VPU);
6351 return;
6352 }
6353 EA = tcg_temp_new();
6354 gen_addr_reg_index(ctx, EA);
6355 rd = gen_avr_ptr(rD(ctx->opcode));
6356 gen_helper_lvsr(rd, EA);
6357 tcg_temp_free(EA);
6358 tcg_temp_free_ptr(rd);
6359}
6360
99e300ef 6361static void gen_mfvscr(DisasContext *ctx)
785f451b
AJ
6362{
6363 TCGv_i32 t;
6364 if (unlikely(!ctx->altivec_enabled)) {
6365 gen_exception(ctx, POWERPC_EXCP_VPU);
6366 return;
6367 }
6368 tcg_gen_movi_i64(cpu_avrh[rD(ctx->opcode)], 0);
6369 t = tcg_temp_new_i32();
1328c2bf 6370 tcg_gen_ld_i32(t, cpu_env, offsetof(CPUPPCState, vscr));
785f451b 6371 tcg_gen_extu_i32_i64(cpu_avrl[rD(ctx->opcode)], t);
fce5ecb7 6372 tcg_temp_free_i32(t);
785f451b
AJ
6373}
6374
99e300ef 6375static void gen_mtvscr(DisasContext *ctx)
785f451b 6376{
6e87b7c7 6377 TCGv_ptr p;
785f451b
AJ
6378 if (unlikely(!ctx->altivec_enabled)) {
6379 gen_exception(ctx, POWERPC_EXCP_VPU);
6380 return;
6381 }
6e87b7c7 6382 p = gen_avr_ptr(rD(ctx->opcode));
d15f74fb 6383 gen_helper_mtvscr(cpu_env, p);
6e87b7c7 6384 tcg_temp_free_ptr(p);
785f451b
AJ
6385}
6386
7a9b96cf
AJ
6387/* Logical operations */
6388#define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
99e300ef 6389static void glue(gen_, name)(DisasContext *ctx) \
7a9b96cf
AJ
6390{ \
6391 if (unlikely(!ctx->altivec_enabled)) { \
6392 gen_exception(ctx, POWERPC_EXCP_VPU); \
6393 return; \
6394 } \
6395 tcg_op(cpu_avrh[rD(ctx->opcode)], cpu_avrh[rA(ctx->opcode)], cpu_avrh[rB(ctx->opcode)]); \
6396 tcg_op(cpu_avrl[rD(ctx->opcode)], cpu_avrl[rA(ctx->opcode)], cpu_avrl[rB(ctx->opcode)]); \
6397}
6398
6399GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16);
6400GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17);
6401GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18);
6402GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19);
6403GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20);
6404
8e27dd6f 6405#define GEN_VXFORM(name, opc2, opc3) \
99e300ef 6406static void glue(gen_, name)(DisasContext *ctx) \
8e27dd6f
AJ
6407{ \
6408 TCGv_ptr ra, rb, rd; \
6409 if (unlikely(!ctx->altivec_enabled)) { \
6410 gen_exception(ctx, POWERPC_EXCP_VPU); \
6411 return; \
6412 } \
6413 ra = gen_avr_ptr(rA(ctx->opcode)); \
6414 rb = gen_avr_ptr(rB(ctx->opcode)); \
6415 rd = gen_avr_ptr(rD(ctx->opcode)); \
6416 gen_helper_##name (rd, ra, rb); \
6417 tcg_temp_free_ptr(ra); \
6418 tcg_temp_free_ptr(rb); \
6419 tcg_temp_free_ptr(rd); \
6420}
6421
d15f74fb
BS
6422#define GEN_VXFORM_ENV(name, opc2, opc3) \
6423static void glue(gen_, name)(DisasContext *ctx) \
6424{ \
6425 TCGv_ptr ra, rb, rd; \
6426 if (unlikely(!ctx->altivec_enabled)) { \
6427 gen_exception(ctx, POWERPC_EXCP_VPU); \
6428 return; \
6429 } \
6430 ra = gen_avr_ptr(rA(ctx->opcode)); \
6431 rb = gen_avr_ptr(rB(ctx->opcode)); \
6432 rd = gen_avr_ptr(rD(ctx->opcode)); \
54cddd21 6433 gen_helper_##name(cpu_env, rd, ra, rb); \
d15f74fb
BS
6434 tcg_temp_free_ptr(ra); \
6435 tcg_temp_free_ptr(rb); \
6436 tcg_temp_free_ptr(rd); \
6437}
6438
7872c51c
AJ
6439GEN_VXFORM(vaddubm, 0, 0);
6440GEN_VXFORM(vadduhm, 0, 1);
6441GEN_VXFORM(vadduwm, 0, 2);
6442GEN_VXFORM(vsububm, 0, 16);
6443GEN_VXFORM(vsubuhm, 0, 17);
6444GEN_VXFORM(vsubuwm, 0, 18);
e4039339
AJ
6445GEN_VXFORM(vmaxub, 1, 0);
6446GEN_VXFORM(vmaxuh, 1, 1);
6447GEN_VXFORM(vmaxuw, 1, 2);
6448GEN_VXFORM(vmaxsb, 1, 4);
6449GEN_VXFORM(vmaxsh, 1, 5);
6450GEN_VXFORM(vmaxsw, 1, 6);
6451GEN_VXFORM(vminub, 1, 8);
6452GEN_VXFORM(vminuh, 1, 9);
6453GEN_VXFORM(vminuw, 1, 10);
6454GEN_VXFORM(vminsb, 1, 12);
6455GEN_VXFORM(vminsh, 1, 13);
6456GEN_VXFORM(vminsw, 1, 14);
fab3cbe9
AJ
6457GEN_VXFORM(vavgub, 1, 16);
6458GEN_VXFORM(vavguh, 1, 17);
6459GEN_VXFORM(vavguw, 1, 18);
6460GEN_VXFORM(vavgsb, 1, 20);
6461GEN_VXFORM(vavgsh, 1, 21);
6462GEN_VXFORM(vavgsw, 1, 22);
3b430048
AJ
6463GEN_VXFORM(vmrghb, 6, 0);
6464GEN_VXFORM(vmrghh, 6, 1);
6465GEN_VXFORM(vmrghw, 6, 2);
6466GEN_VXFORM(vmrglb, 6, 4);
6467GEN_VXFORM(vmrglh, 6, 5);
6468GEN_VXFORM(vmrglw, 6, 6);
2c277908
AJ
6469GEN_VXFORM(vmuloub, 4, 0);
6470GEN_VXFORM(vmulouh, 4, 1);
6471GEN_VXFORM(vmulosb, 4, 4);
6472GEN_VXFORM(vmulosh, 4, 5);
6473GEN_VXFORM(vmuleub, 4, 8);
6474GEN_VXFORM(vmuleuh, 4, 9);
6475GEN_VXFORM(vmulesb, 4, 12);
6476GEN_VXFORM(vmulesh, 4, 13);
d79f0809
AJ
6477GEN_VXFORM(vslb, 2, 4);
6478GEN_VXFORM(vslh, 2, 5);
6479GEN_VXFORM(vslw, 2, 6);
07ef34c3
AJ
6480GEN_VXFORM(vsrb, 2, 8);
6481GEN_VXFORM(vsrh, 2, 9);
6482GEN_VXFORM(vsrw, 2, 10);
6483GEN_VXFORM(vsrab, 2, 12);
6484GEN_VXFORM(vsrah, 2, 13);
6485GEN_VXFORM(vsraw, 2, 14);
7b239bec
AJ
6486GEN_VXFORM(vslo, 6, 16);
6487GEN_VXFORM(vsro, 6, 17);
e343da72
AJ
6488GEN_VXFORM(vaddcuw, 0, 6);
6489GEN_VXFORM(vsubcuw, 0, 22);
d15f74fb
BS
6490GEN_VXFORM_ENV(vaddubs, 0, 8);
6491GEN_VXFORM_ENV(vadduhs, 0, 9);
6492GEN_VXFORM_ENV(vadduws, 0, 10);
6493GEN_VXFORM_ENV(vaddsbs, 0, 12);
6494GEN_VXFORM_ENV(vaddshs, 0, 13);
6495GEN_VXFORM_ENV(vaddsws, 0, 14);
6496GEN_VXFORM_ENV(vsububs, 0, 24);
6497GEN_VXFORM_ENV(vsubuhs, 0, 25);
6498GEN_VXFORM_ENV(vsubuws, 0, 26);
6499GEN_VXFORM_ENV(vsubsbs, 0, 28);
6500GEN_VXFORM_ENV(vsubshs, 0, 29);
6501GEN_VXFORM_ENV(vsubsws, 0, 30);
5e1d0985
AJ
6502GEN_VXFORM(vrlb, 2, 0);
6503GEN_VXFORM(vrlh, 2, 1);
6504GEN_VXFORM(vrlw, 2, 2);
d9430add
AJ
6505GEN_VXFORM(vsl, 2, 7);
6506GEN_VXFORM(vsr, 2, 11);
d15f74fb
BS
6507GEN_VXFORM_ENV(vpkuhum, 7, 0);
6508GEN_VXFORM_ENV(vpkuwum, 7, 1);
6509GEN_VXFORM_ENV(vpkuhus, 7, 2);
6510GEN_VXFORM_ENV(vpkuwus, 7, 3);
6511GEN_VXFORM_ENV(vpkshus, 7, 4);
6512GEN_VXFORM_ENV(vpkswus, 7, 5);
6513GEN_VXFORM_ENV(vpkshss, 7, 6);
6514GEN_VXFORM_ENV(vpkswss, 7, 7);
1dd9ffb9 6515GEN_VXFORM(vpkpx, 7, 12);
d15f74fb
BS
6516GEN_VXFORM_ENV(vsum4ubs, 4, 24);
6517GEN_VXFORM_ENV(vsum4sbs, 4, 28);
6518GEN_VXFORM_ENV(vsum4shs, 4, 25);
6519GEN_VXFORM_ENV(vsum2sws, 4, 26);
6520GEN_VXFORM_ENV(vsumsws, 4, 30);
6521GEN_VXFORM_ENV(vaddfp, 5, 0);
6522GEN_VXFORM_ENV(vsubfp, 5, 1);
6523GEN_VXFORM_ENV(vmaxfp, 5, 16);
6524GEN_VXFORM_ENV(vminfp, 5, 17);
fab3cbe9 6525
0cbcd906 6526#define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
e8eaa2c0 6527static void glue(gen_, name)(DisasContext *ctx) \
0cbcd906
AJ
6528 { \
6529 TCGv_ptr ra, rb, rd; \
6530 if (unlikely(!ctx->altivec_enabled)) { \
6531 gen_exception(ctx, POWERPC_EXCP_VPU); \
6532 return; \
6533 } \
6534 ra = gen_avr_ptr(rA(ctx->opcode)); \
6535 rb = gen_avr_ptr(rB(ctx->opcode)); \
6536 rd = gen_avr_ptr(rD(ctx->opcode)); \
d15f74fb 6537 gen_helper_##opname(cpu_env, rd, ra, rb); \
0cbcd906
AJ
6538 tcg_temp_free_ptr(ra); \
6539 tcg_temp_free_ptr(rb); \
6540 tcg_temp_free_ptr(rd); \
6541 }
6542
6543#define GEN_VXRFORM(name, opc2, opc3) \
6544 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
6545 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
6546
1add6e23
AJ
6547GEN_VXRFORM(vcmpequb, 3, 0)
6548GEN_VXRFORM(vcmpequh, 3, 1)
6549GEN_VXRFORM(vcmpequw, 3, 2)
6550GEN_VXRFORM(vcmpgtsb, 3, 12)
6551GEN_VXRFORM(vcmpgtsh, 3, 13)
6552GEN_VXRFORM(vcmpgtsw, 3, 14)
6553GEN_VXRFORM(vcmpgtub, 3, 8)
6554GEN_VXRFORM(vcmpgtuh, 3, 9)
6555GEN_VXRFORM(vcmpgtuw, 3, 10)
819ca121
AJ
6556GEN_VXRFORM(vcmpeqfp, 3, 3)
6557GEN_VXRFORM(vcmpgefp, 3, 7)
6558GEN_VXRFORM(vcmpgtfp, 3, 11)
6559GEN_VXRFORM(vcmpbfp, 3, 15)
1add6e23 6560
c026766b 6561#define GEN_VXFORM_SIMM(name, opc2, opc3) \
99e300ef 6562static void glue(gen_, name)(DisasContext *ctx) \
c026766b
AJ
6563 { \
6564 TCGv_ptr rd; \
6565 TCGv_i32 simm; \
6566 if (unlikely(!ctx->altivec_enabled)) { \
6567 gen_exception(ctx, POWERPC_EXCP_VPU); \
6568 return; \
6569 } \
6570 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6571 rd = gen_avr_ptr(rD(ctx->opcode)); \
6572 gen_helper_##name (rd, simm); \
6573 tcg_temp_free_i32(simm); \
6574 tcg_temp_free_ptr(rd); \
6575 }
6576
6577GEN_VXFORM_SIMM(vspltisb, 6, 12);
6578GEN_VXFORM_SIMM(vspltish, 6, 13);
6579GEN_VXFORM_SIMM(vspltisw, 6, 14);
6580
de5f2484 6581#define GEN_VXFORM_NOA(name, opc2, opc3) \
99e300ef 6582static void glue(gen_, name)(DisasContext *ctx) \
de5f2484
AJ
6583 { \
6584 TCGv_ptr rb, rd; \
6585 if (unlikely(!ctx->altivec_enabled)) { \
6586 gen_exception(ctx, POWERPC_EXCP_VPU); \
6587 return; \
6588 } \
6589 rb = gen_avr_ptr(rB(ctx->opcode)); \
6590 rd = gen_avr_ptr(rD(ctx->opcode)); \
6591 gen_helper_##name (rd, rb); \
6592 tcg_temp_free_ptr(rb); \
6593 tcg_temp_free_ptr(rd); \
6594 }
6595
d15f74fb
BS
6596#define GEN_VXFORM_NOA_ENV(name, opc2, opc3) \
6597static void glue(gen_, name)(DisasContext *ctx) \
6598 { \
6599 TCGv_ptr rb, rd; \
6600 \
6601 if (unlikely(!ctx->altivec_enabled)) { \
6602 gen_exception(ctx, POWERPC_EXCP_VPU); \
6603 return; \
6604 } \
6605 rb = gen_avr_ptr(rB(ctx->opcode)); \
6606 rd = gen_avr_ptr(rD(ctx->opcode)); \
6607 gen_helper_##name(cpu_env, rd, rb); \
6608 tcg_temp_free_ptr(rb); \
6609 tcg_temp_free_ptr(rd); \
6610 }
6611
6cf1c6e5
AJ
6612GEN_VXFORM_NOA(vupkhsb, 7, 8);
6613GEN_VXFORM_NOA(vupkhsh, 7, 9);
6614GEN_VXFORM_NOA(vupklsb, 7, 10);
6615GEN_VXFORM_NOA(vupklsh, 7, 11);
79f85c3a
AJ
6616GEN_VXFORM_NOA(vupkhpx, 7, 13);
6617GEN_VXFORM_NOA(vupklpx, 7, 15);
d15f74fb
BS
6618GEN_VXFORM_NOA_ENV(vrefp, 5, 4);
6619GEN_VXFORM_NOA_ENV(vrsqrtefp, 5, 5);
6620GEN_VXFORM_NOA_ENV(vexptefp, 5, 6);
6621GEN_VXFORM_NOA_ENV(vlogefp, 5, 7);
6622GEN_VXFORM_NOA_ENV(vrfim, 5, 8);
6623GEN_VXFORM_NOA_ENV(vrfin, 5, 9);
6624GEN_VXFORM_NOA_ENV(vrfip, 5, 10);
6625GEN_VXFORM_NOA_ENV(vrfiz, 5, 11);
79f85c3a 6626
21d21583 6627#define GEN_VXFORM_SIMM(name, opc2, opc3) \
99e300ef 6628static void glue(gen_, name)(DisasContext *ctx) \
21d21583
AJ
6629 { \
6630 TCGv_ptr rd; \
6631 TCGv_i32 simm; \
6632 if (unlikely(!ctx->altivec_enabled)) { \
6633 gen_exception(ctx, POWERPC_EXCP_VPU); \
6634 return; \
6635 } \
6636 simm = tcg_const_i32(SIMM5(ctx->opcode)); \
6637 rd = gen_avr_ptr(rD(ctx->opcode)); \
6638 gen_helper_##name (rd, simm); \
6639 tcg_temp_free_i32(simm); \
6640 tcg_temp_free_ptr(rd); \
6641 }
6642
27a4edb3 6643#define GEN_VXFORM_UIMM(name, opc2, opc3) \
99e300ef 6644static void glue(gen_, name)(DisasContext *ctx) \
27a4edb3
AJ
6645 { \
6646 TCGv_ptr rb, rd; \
6647 TCGv_i32 uimm; \
6648 if (unlikely(!ctx->altivec_enabled)) { \
6649 gen_exception(ctx, POWERPC_EXCP_VPU); \
6650 return; \
6651 } \
6652 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6653 rb = gen_avr_ptr(rB(ctx->opcode)); \
6654 rd = gen_avr_ptr(rD(ctx->opcode)); \
6655 gen_helper_##name (rd, rb, uimm); \
6656 tcg_temp_free_i32(uimm); \
6657 tcg_temp_free_ptr(rb); \
6658 tcg_temp_free_ptr(rd); \
6659 }
6660
d15f74fb
BS
6661#define GEN_VXFORM_UIMM_ENV(name, opc2, opc3) \
6662static void glue(gen_, name)(DisasContext *ctx) \
6663 { \
6664 TCGv_ptr rb, rd; \
6665 TCGv_i32 uimm; \
6666 \
6667 if (unlikely(!ctx->altivec_enabled)) { \
6668 gen_exception(ctx, POWERPC_EXCP_VPU); \
6669 return; \
6670 } \
6671 uimm = tcg_const_i32(UIMM5(ctx->opcode)); \
6672 rb = gen_avr_ptr(rB(ctx->opcode)); \
6673 rd = gen_avr_ptr(rD(ctx->opcode)); \
6674 gen_helper_##name(cpu_env, rd, rb, uimm); \
6675 tcg_temp_free_i32(uimm); \
6676 tcg_temp_free_ptr(rb); \
6677 tcg_temp_free_ptr(rd); \
6678 }
6679
e4e6bee7
AJ
6680GEN_VXFORM_UIMM(vspltb, 6, 8);
6681GEN_VXFORM_UIMM(vsplth, 6, 9);
6682GEN_VXFORM_UIMM(vspltw, 6, 10);
d15f74fb
BS
6683GEN_VXFORM_UIMM_ENV(vcfux, 5, 12);
6684GEN_VXFORM_UIMM_ENV(vcfsx, 5, 13);
6685GEN_VXFORM_UIMM_ENV(vctuxs, 5, 14);
6686GEN_VXFORM_UIMM_ENV(vctsxs, 5, 15);
e4e6bee7 6687
99e300ef 6688static void gen_vsldoi(DisasContext *ctx)
cd633b10
AJ
6689{
6690 TCGv_ptr ra, rb, rd;
fce5ecb7 6691 TCGv_i32 sh;
cd633b10
AJ
6692 if (unlikely(!ctx->altivec_enabled)) {
6693 gen_exception(ctx, POWERPC_EXCP_VPU);
6694 return;
6695 }
6696 ra = gen_avr_ptr(rA(ctx->opcode));
6697 rb = gen_avr_ptr(rB(ctx->opcode));
6698 rd = gen_avr_ptr(rD(ctx->opcode));
6699 sh = tcg_const_i32(VSH(ctx->opcode));
6700 gen_helper_vsldoi (rd, ra, rb, sh);
6701 tcg_temp_free_ptr(ra);
6702 tcg_temp_free_ptr(rb);
6703 tcg_temp_free_ptr(rd);
fce5ecb7 6704 tcg_temp_free_i32(sh);
cd633b10
AJ
6705}
6706
707cec33 6707#define GEN_VAFORM_PAIRED(name0, name1, opc2) \
d15f74fb 6708static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
707cec33
AJ
6709 { \
6710 TCGv_ptr ra, rb, rc, rd; \
6711 if (unlikely(!ctx->altivec_enabled)) { \
6712 gen_exception(ctx, POWERPC_EXCP_VPU); \
6713 return; \
6714 } \
6715 ra = gen_avr_ptr(rA(ctx->opcode)); \
6716 rb = gen_avr_ptr(rB(ctx->opcode)); \
6717 rc = gen_avr_ptr(rC(ctx->opcode)); \
6718 rd = gen_avr_ptr(rD(ctx->opcode)); \
6719 if (Rc(ctx->opcode)) { \
d15f74fb 6720 gen_helper_##name1(cpu_env, rd, ra, rb, rc); \
707cec33 6721 } else { \
d15f74fb 6722 gen_helper_##name0(cpu_env, rd, ra, rb, rc); \
707cec33
AJ
6723 } \
6724 tcg_temp_free_ptr(ra); \
6725 tcg_temp_free_ptr(rb); \
6726 tcg_temp_free_ptr(rc); \
6727 tcg_temp_free_ptr(rd); \
6728 }
6729
b161ae27
AJ
6730GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16)
6731
99e300ef 6732static void gen_vmladduhm(DisasContext *ctx)
bcd2ee23
AJ
6733{
6734 TCGv_ptr ra, rb, rc, rd;
6735 if (unlikely(!ctx->altivec_enabled)) {
6736 gen_exception(ctx, POWERPC_EXCP_VPU);
6737 return;
6738 }
6739 ra = gen_avr_ptr(rA(ctx->opcode));
6740 rb = gen_avr_ptr(rB(ctx->opcode));
6741 rc = gen_avr_ptr(rC(ctx->opcode));
6742 rd = gen_avr_ptr(rD(ctx->opcode));
6743 gen_helper_vmladduhm(rd, ra, rb, rc);
6744 tcg_temp_free_ptr(ra);
6745 tcg_temp_free_ptr(rb);
6746 tcg_temp_free_ptr(rc);
6747 tcg_temp_free_ptr(rd);
6748}
6749
b04ae981 6750GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18)
4d9903b6 6751GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19)
eae07261 6752GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20)
d1258698 6753GEN_VAFORM_PAIRED(vsel, vperm, 21)
35cf7c7e 6754GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23)
b04ae981 6755
0487d6a8 6756/*** SPE extension ***/
0487d6a8 6757/* Register moves */
3cd7d1dd 6758
a0e13900
FC
6759
6760static inline void gen_evmra(DisasContext *ctx)
6761{
6762
6763 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 6764 gen_exception(ctx, POWERPC_EXCP_SPEU);
a0e13900
FC
6765 return;
6766 }
6767
6768#if defined(TARGET_PPC64)
6769 /* rD := rA */
6770 tcg_gen_mov_i64(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6771
6772 /* spe_acc := rA */
6773 tcg_gen_st_i64(cpu_gpr[rA(ctx->opcode)],
6774 cpu_env,
1328c2bf 6775 offsetof(CPUPPCState, spe_acc));
a0e13900
FC
6776#else
6777 TCGv_i64 tmp = tcg_temp_new_i64();
6778
6779 /* tmp := rA_lo + rA_hi << 32 */
6780 tcg_gen_concat_i32_i64(tmp, cpu_gpr[rA(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6781
6782 /* spe_acc := tmp */
1328c2bf 6783 tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
6784 tcg_temp_free_i64(tmp);
6785
6786 /* rD := rA */
6787 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
6788 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
6789#endif
6790}
6791
636aa200
BS
6792static inline void gen_load_gpr64(TCGv_i64 t, int reg)
6793{
f78fb44e
AJ
6794#if defined(TARGET_PPC64)
6795 tcg_gen_mov_i64(t, cpu_gpr[reg]);
6796#else
36aa55dc 6797 tcg_gen_concat_i32_i64(t, cpu_gpr[reg], cpu_gprh[reg]);
3cd7d1dd 6798#endif
f78fb44e 6799}
3cd7d1dd 6800
636aa200
BS
6801static inline void gen_store_gpr64(int reg, TCGv_i64 t)
6802{
f78fb44e
AJ
6803#if defined(TARGET_PPC64)
6804 tcg_gen_mov_i64(cpu_gpr[reg], t);
6805#else
a7812ae4 6806 TCGv_i64 tmp = tcg_temp_new_i64();
f78fb44e 6807 tcg_gen_trunc_i64_i32(cpu_gpr[reg], t);
f78fb44e
AJ
6808 tcg_gen_shri_i64(tmp, t, 32);
6809 tcg_gen_trunc_i64_i32(cpu_gprh[reg], tmp);
a7812ae4 6810 tcg_temp_free_i64(tmp);
3cd7d1dd 6811#endif
f78fb44e 6812}
3cd7d1dd 6813
70560da7 6814#define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type) \
99e300ef 6815static void glue(gen_, name0##_##name1)(DisasContext *ctx) \
0487d6a8
JM
6816{ \
6817 if (Rc(ctx->opcode)) \
6818 gen_##name1(ctx); \
6819 else \
6820 gen_##name0(ctx); \
6821}
6822
6823/* Handler for undefined SPE opcodes */
636aa200 6824static inline void gen_speundef(DisasContext *ctx)
0487d6a8 6825{
e06fcd75 6826 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
0487d6a8
JM
6827}
6828
57951c27
AJ
6829/* SPE logic */
6830#if defined(TARGET_PPC64)
6831#define GEN_SPEOP_LOGIC2(name, tcg_op) \
636aa200 6832static inline void gen_##name(DisasContext *ctx) \
0487d6a8
JM
6833{ \
6834 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6835 gen_exception(ctx, POWERPC_EXCP_SPEU); \
0487d6a8
JM
6836 return; \
6837 } \
57951c27
AJ
6838 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6839 cpu_gpr[rB(ctx->opcode)]); \
6840}
6841#else
6842#define GEN_SPEOP_LOGIC2(name, tcg_op) \
636aa200 6843static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
6844{ \
6845 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6846 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
6847 return; \
6848 } \
6849 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6850 cpu_gpr[rB(ctx->opcode)]); \
6851 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6852 cpu_gprh[rB(ctx->opcode)]); \
0487d6a8 6853}
57951c27
AJ
6854#endif
6855
6856GEN_SPEOP_LOGIC2(evand, tcg_gen_and_tl);
6857GEN_SPEOP_LOGIC2(evandc, tcg_gen_andc_tl);
6858GEN_SPEOP_LOGIC2(evxor, tcg_gen_xor_tl);
6859GEN_SPEOP_LOGIC2(evor, tcg_gen_or_tl);
6860GEN_SPEOP_LOGIC2(evnor, tcg_gen_nor_tl);
6861GEN_SPEOP_LOGIC2(eveqv, tcg_gen_eqv_tl);
6862GEN_SPEOP_LOGIC2(evorc, tcg_gen_orc_tl);
6863GEN_SPEOP_LOGIC2(evnand, tcg_gen_nand_tl);
0487d6a8 6864
57951c27
AJ
6865/* SPE logic immediate */
6866#if defined(TARGET_PPC64)
6867#define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
636aa200 6868static inline void gen_##name(DisasContext *ctx) \
3d3a6a0a
AJ
6869{ \
6870 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6871 gen_exception(ctx, POWERPC_EXCP_SPEU); \
3d3a6a0a
AJ
6872 return; \
6873 } \
a7812ae4
PB
6874 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6875 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6876 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
57951c27
AJ
6877 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6878 tcg_opi(t0, t0, rB(ctx->opcode)); \
6879 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6880 tcg_gen_trunc_i64_i32(t1, t2); \
a7812ae4 6881 tcg_temp_free_i64(t2); \
57951c27
AJ
6882 tcg_opi(t1, t1, rB(ctx->opcode)); \
6883 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
a7812ae4
PB
6884 tcg_temp_free_i32(t0); \
6885 tcg_temp_free_i32(t1); \
3d3a6a0a 6886}
57951c27
AJ
6887#else
6888#define GEN_SPEOP_TCG_LOGIC_IMM2(name, tcg_opi) \
636aa200 6889static inline void gen_##name(DisasContext *ctx) \
0487d6a8
JM
6890{ \
6891 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6892 gen_exception(ctx, POWERPC_EXCP_SPEU); \
0487d6a8
JM
6893 return; \
6894 } \
57951c27
AJ
6895 tcg_opi(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
6896 rB(ctx->opcode)); \
6897 tcg_opi(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
6898 rB(ctx->opcode)); \
0487d6a8 6899}
57951c27
AJ
6900#endif
6901GEN_SPEOP_TCG_LOGIC_IMM2(evslwi, tcg_gen_shli_i32);
6902GEN_SPEOP_TCG_LOGIC_IMM2(evsrwiu, tcg_gen_shri_i32);
6903GEN_SPEOP_TCG_LOGIC_IMM2(evsrwis, tcg_gen_sari_i32);
6904GEN_SPEOP_TCG_LOGIC_IMM2(evrlwi, tcg_gen_rotli_i32);
0487d6a8 6905
57951c27
AJ
6906/* SPE arithmetic */
6907#if defined(TARGET_PPC64)
6908#define GEN_SPEOP_ARITH1(name, tcg_op) \
636aa200 6909static inline void gen_##name(DisasContext *ctx) \
0487d6a8
JM
6910{ \
6911 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6912 gen_exception(ctx, POWERPC_EXCP_SPEU); \
0487d6a8
JM
6913 return; \
6914 } \
a7812ae4
PB
6915 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6916 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6917 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
57951c27
AJ
6918 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6919 tcg_op(t0, t0); \
6920 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
6921 tcg_gen_trunc_i64_i32(t1, t2); \
a7812ae4 6922 tcg_temp_free_i64(t2); \
57951c27
AJ
6923 tcg_op(t1, t1); \
6924 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
a7812ae4
PB
6925 tcg_temp_free_i32(t0); \
6926 tcg_temp_free_i32(t1); \
0487d6a8 6927}
57951c27 6928#else
a7812ae4 6929#define GEN_SPEOP_ARITH1(name, tcg_op) \
636aa200 6930static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
6931{ \
6932 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6933 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
6934 return; \
6935 } \
6936 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]); \
6937 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]); \
6938}
6939#endif
0487d6a8 6940
636aa200 6941static inline void gen_op_evabs(TCGv_i32 ret, TCGv_i32 arg1)
57951c27
AJ
6942{
6943 int l1 = gen_new_label();
6944 int l2 = gen_new_label();
0487d6a8 6945
57951c27
AJ
6946 tcg_gen_brcondi_i32(TCG_COND_GE, arg1, 0, l1);
6947 tcg_gen_neg_i32(ret, arg1);
6948 tcg_gen_br(l2);
6949 gen_set_label(l1);
a7812ae4 6950 tcg_gen_mov_i32(ret, arg1);
57951c27
AJ
6951 gen_set_label(l2);
6952}
6953GEN_SPEOP_ARITH1(evabs, gen_op_evabs);
6954GEN_SPEOP_ARITH1(evneg, tcg_gen_neg_i32);
6955GEN_SPEOP_ARITH1(evextsb, tcg_gen_ext8s_i32);
6956GEN_SPEOP_ARITH1(evextsh, tcg_gen_ext16s_i32);
636aa200 6957static inline void gen_op_evrndw(TCGv_i32 ret, TCGv_i32 arg1)
0487d6a8 6958{
57951c27
AJ
6959 tcg_gen_addi_i32(ret, arg1, 0x8000);
6960 tcg_gen_ext16u_i32(ret, ret);
6961}
6962GEN_SPEOP_ARITH1(evrndw, gen_op_evrndw);
a7812ae4
PB
6963GEN_SPEOP_ARITH1(evcntlsw, gen_helper_cntlsw32);
6964GEN_SPEOP_ARITH1(evcntlzw, gen_helper_cntlzw32);
0487d6a8 6965
57951c27
AJ
6966#if defined(TARGET_PPC64)
6967#define GEN_SPEOP_ARITH2(name, tcg_op) \
636aa200 6968static inline void gen_##name(DisasContext *ctx) \
0487d6a8
JM
6969{ \
6970 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6971 gen_exception(ctx, POWERPC_EXCP_SPEU); \
0487d6a8
JM
6972 return; \
6973 } \
a7812ae4
PB
6974 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
6975 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
6976 TCGv_i32 t2 = tcg_temp_local_new_i32(); \
501e23c4 6977 TCGv_i64 t3 = tcg_temp_local_new_i64(); \
57951c27
AJ
6978 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
6979 tcg_gen_trunc_i64_i32(t2, cpu_gpr[rB(ctx->opcode)]); \
6980 tcg_op(t0, t0, t2); \
6981 tcg_gen_shri_i64(t3, cpu_gpr[rA(ctx->opcode)], 32); \
6982 tcg_gen_trunc_i64_i32(t1, t3); \
6983 tcg_gen_shri_i64(t3, cpu_gpr[rB(ctx->opcode)], 32); \
6984 tcg_gen_trunc_i64_i32(t2, t3); \
a7812ae4 6985 tcg_temp_free_i64(t3); \
57951c27 6986 tcg_op(t1, t1, t2); \
a7812ae4 6987 tcg_temp_free_i32(t2); \
57951c27 6988 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
a7812ae4
PB
6989 tcg_temp_free_i32(t0); \
6990 tcg_temp_free_i32(t1); \
0487d6a8 6991}
57951c27
AJ
6992#else
6993#define GEN_SPEOP_ARITH2(name, tcg_op) \
636aa200 6994static inline void gen_##name(DisasContext *ctx) \
0487d6a8
JM
6995{ \
6996 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 6997 gen_exception(ctx, POWERPC_EXCP_SPEU); \
0487d6a8
JM
6998 return; \
6999 } \
57951c27
AJ
7000 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], \
7001 cpu_gpr[rB(ctx->opcode)]); \
7002 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], \
7003 cpu_gprh[rB(ctx->opcode)]); \
0487d6a8 7004}
57951c27 7005#endif
0487d6a8 7006
636aa200 7007static inline void gen_op_evsrwu(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
57951c27 7008{
a7812ae4 7009 TCGv_i32 t0;
57951c27 7010 int l1, l2;
0487d6a8 7011
57951c27
AJ
7012 l1 = gen_new_label();
7013 l2 = gen_new_label();
a7812ae4 7014 t0 = tcg_temp_local_new_i32();
57951c27
AJ
7015 /* No error here: 6 bits are used */
7016 tcg_gen_andi_i32(t0, arg2, 0x3F);
7017 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7018 tcg_gen_shr_i32(ret, arg1, t0);
7019 tcg_gen_br(l2);
7020 gen_set_label(l1);
7021 tcg_gen_movi_i32(ret, 0);
0aef4261 7022 gen_set_label(l2);
a7812ae4 7023 tcg_temp_free_i32(t0);
57951c27
AJ
7024}
7025GEN_SPEOP_ARITH2(evsrwu, gen_op_evsrwu);
636aa200 7026static inline void gen_op_evsrws(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
57951c27 7027{
a7812ae4 7028 TCGv_i32 t0;
57951c27
AJ
7029 int l1, l2;
7030
7031 l1 = gen_new_label();
7032 l2 = gen_new_label();
a7812ae4 7033 t0 = tcg_temp_local_new_i32();
57951c27
AJ
7034 /* No error here: 6 bits are used */
7035 tcg_gen_andi_i32(t0, arg2, 0x3F);
7036 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7037 tcg_gen_sar_i32(ret, arg1, t0);
7038 tcg_gen_br(l2);
7039 gen_set_label(l1);
7040 tcg_gen_movi_i32(ret, 0);
0aef4261 7041 gen_set_label(l2);
a7812ae4 7042 tcg_temp_free_i32(t0);
57951c27
AJ
7043}
7044GEN_SPEOP_ARITH2(evsrws, gen_op_evsrws);
636aa200 7045static inline void gen_op_evslw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
57951c27 7046{
a7812ae4 7047 TCGv_i32 t0;
57951c27
AJ
7048 int l1, l2;
7049
7050 l1 = gen_new_label();
7051 l2 = gen_new_label();
a7812ae4 7052 t0 = tcg_temp_local_new_i32();
57951c27
AJ
7053 /* No error here: 6 bits are used */
7054 tcg_gen_andi_i32(t0, arg2, 0x3F);
7055 tcg_gen_brcondi_i32(TCG_COND_GE, t0, 32, l1);
7056 tcg_gen_shl_i32(ret, arg1, t0);
7057 tcg_gen_br(l2);
7058 gen_set_label(l1);
7059 tcg_gen_movi_i32(ret, 0);
e29ef9fa 7060 gen_set_label(l2);
a7812ae4 7061 tcg_temp_free_i32(t0);
57951c27
AJ
7062}
7063GEN_SPEOP_ARITH2(evslw, gen_op_evslw);
636aa200 7064static inline void gen_op_evrlw(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
57951c27 7065{
a7812ae4 7066 TCGv_i32 t0 = tcg_temp_new_i32();
57951c27
AJ
7067 tcg_gen_andi_i32(t0, arg2, 0x1F);
7068 tcg_gen_rotl_i32(ret, arg1, t0);
a7812ae4 7069 tcg_temp_free_i32(t0);
57951c27
AJ
7070}
7071GEN_SPEOP_ARITH2(evrlw, gen_op_evrlw);
636aa200 7072static inline void gen_evmergehi(DisasContext *ctx)
57951c27
AJ
7073{
7074 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7075 gen_exception(ctx, POWERPC_EXCP_SPEU);
57951c27
AJ
7076 return;
7077 }
7078#if defined(TARGET_PPC64)
a7812ae4
PB
7079 TCGv t0 = tcg_temp_new();
7080 TCGv t1 = tcg_temp_new();
57951c27
AJ
7081 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
7082 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
7083 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
7084 tcg_temp_free(t0);
7085 tcg_temp_free(t1);
7086#else
7087 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
7088 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7089#endif
7090}
7091GEN_SPEOP_ARITH2(evaddw, tcg_gen_add_i32);
636aa200 7092static inline void gen_op_evsubf(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
0487d6a8 7093{
57951c27
AJ
7094 tcg_gen_sub_i32(ret, arg2, arg1);
7095}
7096GEN_SPEOP_ARITH2(evsubfw, gen_op_evsubf);
0487d6a8 7097
57951c27
AJ
7098/* SPE arithmetic immediate */
7099#if defined(TARGET_PPC64)
7100#define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
636aa200 7101static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
7102{ \
7103 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 7104 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
7105 return; \
7106 } \
a7812ae4
PB
7107 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7108 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7109 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
57951c27
AJ
7110 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
7111 tcg_op(t0, t0, rA(ctx->opcode)); \
7112 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
7113 tcg_gen_trunc_i64_i32(t1, t2); \
e06fcd75 7114 tcg_temp_free_i64(t2); \
57951c27
AJ
7115 tcg_op(t1, t1, rA(ctx->opcode)); \
7116 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1); \
a7812ae4
PB
7117 tcg_temp_free_i32(t0); \
7118 tcg_temp_free_i32(t1); \
57951c27
AJ
7119}
7120#else
7121#define GEN_SPEOP_ARITH_IMM2(name, tcg_op) \
636aa200 7122static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
7123{ \
7124 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 7125 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
7126 return; \
7127 } \
7128 tcg_op(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
7129 rA(ctx->opcode)); \
7130 tcg_op(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)], \
7131 rA(ctx->opcode)); \
7132}
7133#endif
7134GEN_SPEOP_ARITH_IMM2(evaddiw, tcg_gen_addi_i32);
7135GEN_SPEOP_ARITH_IMM2(evsubifw, tcg_gen_subi_i32);
7136
7137/* SPE comparison */
7138#if defined(TARGET_PPC64)
7139#define GEN_SPEOP_COMP(name, tcg_cond) \
636aa200 7140static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
7141{ \
7142 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 7143 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
7144 return; \
7145 } \
7146 int l1 = gen_new_label(); \
7147 int l2 = gen_new_label(); \
7148 int l3 = gen_new_label(); \
7149 int l4 = gen_new_label(); \
a7812ae4
PB
7150 TCGv_i32 t0 = tcg_temp_local_new_i32(); \
7151 TCGv_i32 t1 = tcg_temp_local_new_i32(); \
7152 TCGv_i64 t2 = tcg_temp_local_new_i64(); \
57951c27
AJ
7153 tcg_gen_trunc_i64_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
7154 tcg_gen_trunc_i64_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
7155 tcg_gen_brcond_i32(tcg_cond, t0, t1, l1); \
a7812ae4 7156 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0); \
57951c27
AJ
7157 tcg_gen_br(l2); \
7158 gen_set_label(l1); \
7159 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
7160 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
7161 gen_set_label(l2); \
7162 tcg_gen_shri_i64(t2, cpu_gpr[rA(ctx->opcode)], 32); \
7163 tcg_gen_trunc_i64_i32(t0, t2); \
7164 tcg_gen_shri_i64(t2, cpu_gpr[rB(ctx->opcode)], 32); \
7165 tcg_gen_trunc_i64_i32(t1, t2); \
a7812ae4 7166 tcg_temp_free_i64(t2); \
57951c27
AJ
7167 tcg_gen_brcond_i32(tcg_cond, t0, t1, l3); \
7168 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7169 ~(CRF_CH | CRF_CH_AND_CL)); \
7170 tcg_gen_br(l4); \
7171 gen_set_label(l3); \
7172 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7173 CRF_CH | CRF_CH_OR_CL); \
7174 gen_set_label(l4); \
a7812ae4
PB
7175 tcg_temp_free_i32(t0); \
7176 tcg_temp_free_i32(t1); \
57951c27
AJ
7177}
7178#else
7179#define GEN_SPEOP_COMP(name, tcg_cond) \
636aa200 7180static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
7181{ \
7182 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 7183 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
7184 return; \
7185 } \
7186 int l1 = gen_new_label(); \
7187 int l2 = gen_new_label(); \
7188 int l3 = gen_new_label(); \
7189 int l4 = gen_new_label(); \
7190 \
7191 tcg_gen_brcond_i32(tcg_cond, cpu_gpr[rA(ctx->opcode)], \
7192 cpu_gpr[rB(ctx->opcode)], l1); \
7193 tcg_gen_movi_tl(cpu_crf[crfD(ctx->opcode)], 0); \
7194 tcg_gen_br(l2); \
7195 gen_set_label(l1); \
7196 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], \
7197 CRF_CL | CRF_CH_OR_CL | CRF_CH_AND_CL); \
7198 gen_set_label(l2); \
7199 tcg_gen_brcond_i32(tcg_cond, cpu_gprh[rA(ctx->opcode)], \
7200 cpu_gprh[rB(ctx->opcode)], l3); \
7201 tcg_gen_andi_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7202 ~(CRF_CH | CRF_CH_AND_CL)); \
7203 tcg_gen_br(l4); \
7204 gen_set_label(l3); \
7205 tcg_gen_ori_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfD(ctx->opcode)], \
7206 CRF_CH | CRF_CH_OR_CL); \
7207 gen_set_label(l4); \
7208}
7209#endif
7210GEN_SPEOP_COMP(evcmpgtu, TCG_COND_GTU);
7211GEN_SPEOP_COMP(evcmpgts, TCG_COND_GT);
7212GEN_SPEOP_COMP(evcmpltu, TCG_COND_LTU);
7213GEN_SPEOP_COMP(evcmplts, TCG_COND_LT);
7214GEN_SPEOP_COMP(evcmpeq, TCG_COND_EQ);
7215
7216/* SPE misc */
636aa200 7217static inline void gen_brinc(DisasContext *ctx)
57951c27
AJ
7218{
7219 /* Note: brinc is usable even if SPE is disabled */
a7812ae4
PB
7220 gen_helper_brinc(cpu_gpr[rD(ctx->opcode)],
7221 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
0487d6a8 7222}
636aa200 7223static inline void gen_evmergelo(DisasContext *ctx)
57951c27
AJ
7224{
7225 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7226 gen_exception(ctx, POWERPC_EXCP_SPEU);
57951c27
AJ
7227 return;
7228 }
7229#if defined(TARGET_PPC64)
a7812ae4
PB
7230 TCGv t0 = tcg_temp_new();
7231 TCGv t1 = tcg_temp_new();
17d9b3af 7232 tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
57951c27
AJ
7233 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
7234 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
7235 tcg_temp_free(t0);
7236 tcg_temp_free(t1);
7237#else
57951c27 7238 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
33890b3e 7239 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
57951c27
AJ
7240#endif
7241}
636aa200 7242static inline void gen_evmergehilo(DisasContext *ctx)
57951c27
AJ
7243{
7244 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7245 gen_exception(ctx, POWERPC_EXCP_SPEU);
57951c27
AJ
7246 return;
7247 }
7248#if defined(TARGET_PPC64)
a7812ae4
PB
7249 TCGv t0 = tcg_temp_new();
7250 TCGv t1 = tcg_temp_new();
17d9b3af 7251 tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
57951c27
AJ
7252 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF0000000ULL);
7253 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
7254 tcg_temp_free(t0);
7255 tcg_temp_free(t1);
7256#else
7257 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
7258 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7259#endif
7260}
636aa200 7261static inline void gen_evmergelohi(DisasContext *ctx)
57951c27
AJ
7262{
7263 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7264 gen_exception(ctx, POWERPC_EXCP_SPEU);
57951c27
AJ
7265 return;
7266 }
7267#if defined(TARGET_PPC64)
a7812ae4
PB
7268 TCGv t0 = tcg_temp_new();
7269 TCGv t1 = tcg_temp_new();
57951c27
AJ
7270 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 32);
7271 tcg_gen_shli_tl(t1, cpu_gpr[rA(ctx->opcode)], 32);
7272 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t0, t1);
7273 tcg_temp_free(t0);
7274 tcg_temp_free(t1);
7275#else
33890b3e
NF
7276 if (rD(ctx->opcode) == rA(ctx->opcode)) {
7277 TCGv_i32 tmp = tcg_temp_new_i32();
7278 tcg_gen_mov_i32(tmp, cpu_gpr[rA(ctx->opcode)]);
7279 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
7280 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], tmp);
7281 tcg_temp_free_i32(tmp);
7282 } else {
7283 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
7284 tcg_gen_mov_i32(cpu_gprh[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
7285 }
57951c27
AJ
7286#endif
7287}
636aa200 7288static inline void gen_evsplati(DisasContext *ctx)
57951c27 7289{
ae01847f 7290 uint64_t imm = ((int32_t)(rA(ctx->opcode) << 27)) >> 27;
0487d6a8 7291
57951c27 7292#if defined(TARGET_PPC64)
38d14952 7293 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
57951c27
AJ
7294#else
7295 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
7296 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
7297#endif
7298}
636aa200 7299static inline void gen_evsplatfi(DisasContext *ctx)
0487d6a8 7300{
ae01847f 7301 uint64_t imm = rA(ctx->opcode) << 27;
0487d6a8 7302
57951c27 7303#if defined(TARGET_PPC64)
38d14952 7304 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], (imm << 32) | imm);
57951c27
AJ
7305#else
7306 tcg_gen_movi_i32(cpu_gpr[rD(ctx->opcode)], imm);
7307 tcg_gen_movi_i32(cpu_gprh[rD(ctx->opcode)], imm);
7308#endif
0487d6a8
JM
7309}
7310
636aa200 7311static inline void gen_evsel(DisasContext *ctx)
57951c27
AJ
7312{
7313 int l1 = gen_new_label();
7314 int l2 = gen_new_label();
7315 int l3 = gen_new_label();
7316 int l4 = gen_new_label();
a7812ae4 7317 TCGv_i32 t0 = tcg_temp_local_new_i32();
57951c27 7318#if defined(TARGET_PPC64)
a7812ae4
PB
7319 TCGv t1 = tcg_temp_local_new();
7320 TCGv t2 = tcg_temp_local_new();
57951c27
AJ
7321#endif
7322 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 3);
7323 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l1);
7324#if defined(TARGET_PPC64)
7325 tcg_gen_andi_tl(t1, cpu_gpr[rA(ctx->opcode)], 0xFFFFFFFF00000000ULL);
7326#else
7327 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)]);
7328#endif
7329 tcg_gen_br(l2);
7330 gen_set_label(l1);
7331#if defined(TARGET_PPC64)
7332 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0xFFFFFFFF00000000ULL);
7333#else
7334 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rB(ctx->opcode)]);
7335#endif
7336 gen_set_label(l2);
7337 tcg_gen_andi_i32(t0, cpu_crf[ctx->opcode & 0x07], 1 << 2);
7338 tcg_gen_brcondi_i32(TCG_COND_EQ, t0, 0, l3);
7339#if defined(TARGET_PPC64)
17d9b3af 7340 tcg_gen_ext32u_tl(t2, cpu_gpr[rA(ctx->opcode)]);
57951c27
AJ
7341#else
7342 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
7343#endif
7344 tcg_gen_br(l4);
7345 gen_set_label(l3);
7346#if defined(TARGET_PPC64)
17d9b3af 7347 tcg_gen_ext32u_tl(t2, cpu_gpr[rB(ctx->opcode)]);
57951c27
AJ
7348#else
7349 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
7350#endif
7351 gen_set_label(l4);
a7812ae4 7352 tcg_temp_free_i32(t0);
57951c27
AJ
7353#if defined(TARGET_PPC64)
7354 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], t1, t2);
7355 tcg_temp_free(t1);
7356 tcg_temp_free(t2);
7357#endif
7358}
e8eaa2c0
BS
7359
7360static void gen_evsel0(DisasContext *ctx)
57951c27
AJ
7361{
7362 gen_evsel(ctx);
7363}
e8eaa2c0
BS
7364
7365static void gen_evsel1(DisasContext *ctx)
57951c27
AJ
7366{
7367 gen_evsel(ctx);
7368}
e8eaa2c0
BS
7369
7370static void gen_evsel2(DisasContext *ctx)
57951c27
AJ
7371{
7372 gen_evsel(ctx);
7373}
e8eaa2c0
BS
7374
7375static void gen_evsel3(DisasContext *ctx)
57951c27
AJ
7376{
7377 gen_evsel(ctx);
7378}
0487d6a8 7379
a0e13900
FC
7380/* Multiply */
7381
7382static inline void gen_evmwumi(DisasContext *ctx)
7383{
7384 TCGv_i64 t0, t1;
7385
7386 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7387 gen_exception(ctx, POWERPC_EXCP_SPEU);
a0e13900
FC
7388 return;
7389 }
7390
7391 t0 = tcg_temp_new_i64();
7392 t1 = tcg_temp_new_i64();
7393
7394 /* t0 := rA; t1 := rB */
7395#if defined(TARGET_PPC64)
7396 tcg_gen_ext32u_tl(t0, cpu_gpr[rA(ctx->opcode)]);
7397 tcg_gen_ext32u_tl(t1, cpu_gpr[rB(ctx->opcode)]);
7398#else
7399 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
7400 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
7401#endif
7402
7403 tcg_gen_mul_i64(t0, t0, t1); /* t0 := rA * rB */
7404
7405 gen_store_gpr64(rD(ctx->opcode), t0); /* rD := t0 */
7406
7407 tcg_temp_free_i64(t0);
7408 tcg_temp_free_i64(t1);
7409}
7410
7411static inline void gen_evmwumia(DisasContext *ctx)
7412{
7413 TCGv_i64 tmp;
7414
7415 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7416 gen_exception(ctx, POWERPC_EXCP_SPEU);
a0e13900
FC
7417 return;
7418 }
7419
7420 gen_evmwumi(ctx); /* rD := rA * rB */
7421
7422 tmp = tcg_temp_new_i64();
7423
7424 /* acc := rD */
7425 gen_load_gpr64(tmp, rD(ctx->opcode));
1328c2bf 7426 tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7427 tcg_temp_free_i64(tmp);
7428}
7429
7430static inline void gen_evmwumiaa(DisasContext *ctx)
7431{
7432 TCGv_i64 acc;
7433 TCGv_i64 tmp;
7434
7435 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7436 gen_exception(ctx, POWERPC_EXCP_SPEU);
a0e13900
FC
7437 return;
7438 }
7439
7440 gen_evmwumi(ctx); /* rD := rA * rB */
7441
7442 acc = tcg_temp_new_i64();
7443 tmp = tcg_temp_new_i64();
7444
7445 /* tmp := rD */
7446 gen_load_gpr64(tmp, rD(ctx->opcode));
7447
7448 /* Load acc */
1328c2bf 7449 tcg_gen_ld_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7450
7451 /* acc := tmp + acc */
7452 tcg_gen_add_i64(acc, acc, tmp);
7453
7454 /* Store acc */
1328c2bf 7455 tcg_gen_st_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7456
7457 /* rD := acc */
7458 gen_store_gpr64(rD(ctx->opcode), acc);
7459
7460 tcg_temp_free_i64(acc);
7461 tcg_temp_free_i64(tmp);
7462}
7463
7464static inline void gen_evmwsmi(DisasContext *ctx)
7465{
7466 TCGv_i64 t0, t1;
7467
7468 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 7469 gen_exception(ctx, POWERPC_EXCP_SPEU);
a0e13900
FC
7470 return;
7471 }
7472
7473 t0 = tcg_temp_new_i64();
7474 t1 = tcg_temp_new_i64();
7475
7476 /* t0 := rA; t1 := rB */
7477#if defined(TARGET_PPC64)
7478 tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]);
7479 tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]);
7480#else
7481 tcg_gen_ext_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
7482 tcg_gen_ext_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
7483#endif
7484
7485 tcg_gen_mul_i64(t0, t0, t1); /* t0 := rA * rB */
7486
7487 gen_store_gpr64(rD(ctx->opcode), t0); /* rD := t0 */
7488
7489 tcg_temp_free_i64(t0);
7490 tcg_temp_free_i64(t1);
7491}
7492
7493static inline void gen_evmwsmia(DisasContext *ctx)
7494{
7495 TCGv_i64 tmp;
7496
7497 gen_evmwsmi(ctx); /* rD := rA * rB */
7498
7499 tmp = tcg_temp_new_i64();
7500
7501 /* acc := rD */
7502 gen_load_gpr64(tmp, rD(ctx->opcode));
1328c2bf 7503 tcg_gen_st_i64(tmp, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7504
7505 tcg_temp_free_i64(tmp);
7506}
7507
7508static inline void gen_evmwsmiaa(DisasContext *ctx)
7509{
7510 TCGv_i64 acc = tcg_temp_new_i64();
7511 TCGv_i64 tmp = tcg_temp_new_i64();
7512
7513 gen_evmwsmi(ctx); /* rD := rA * rB */
7514
7515 acc = tcg_temp_new_i64();
7516 tmp = tcg_temp_new_i64();
7517
7518 /* tmp := rD */
7519 gen_load_gpr64(tmp, rD(ctx->opcode));
7520
7521 /* Load acc */
1328c2bf 7522 tcg_gen_ld_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7523
7524 /* acc := tmp + acc */
7525 tcg_gen_add_i64(acc, acc, tmp);
7526
7527 /* Store acc */
1328c2bf 7528 tcg_gen_st_i64(acc, cpu_env, offsetof(CPUPPCState, spe_acc));
a0e13900
FC
7529
7530 /* rD := acc */
7531 gen_store_gpr64(rD(ctx->opcode), acc);
7532
7533 tcg_temp_free_i64(acc);
7534 tcg_temp_free_i64(tmp);
7535}
7536
70560da7
FC
7537GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
7538GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
7539GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
7540GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
7541GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
7542GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
7543GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE); ////
7544GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE); //
7545GEN_SPE(evmra, speundef, 0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE);
7546GEN_SPE(speundef, evand, 0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE); ////
7547GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
7548GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
7549GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
7550GEN_SPE(evmwumi, evmwsmi, 0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE);
7551GEN_SPE(evmwumia, evmwsmia, 0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE);
7552GEN_SPE(evmwumiaa, evmwsmiaa, 0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE);
7553GEN_SPE(speundef, evorc, 0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE); ////
7554GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
7555GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
7556GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE);
7557GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE); ////
7558GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE);
7559GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE); //
7560GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE);
7561GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
7562GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE); ////
7563GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE); ////
7564GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE); ////
7565GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE); ////
0487d6a8 7566
6a6ae23f 7567/* SPE load and stores */
636aa200 7568static inline void gen_addr_spe_imm_index(DisasContext *ctx, TCGv EA, int sh)
6a6ae23f
AJ
7569{
7570 target_ulong uimm = rB(ctx->opcode);
7571
76db3ba4 7572 if (rA(ctx->opcode) == 0) {
6a6ae23f 7573 tcg_gen_movi_tl(EA, uimm << sh);
76db3ba4 7574 } else {
6a6ae23f 7575 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], uimm << sh);
c791fe84 7576 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
7577 tcg_gen_ext32u_tl(EA, EA);
7578 }
76db3ba4 7579 }
0487d6a8 7580}
6a6ae23f 7581
636aa200 7582static inline void gen_op_evldd(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7583{
7584#if defined(TARGET_PPC64)
76db3ba4 7585 gen_qemu_ld64(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6a6ae23f
AJ
7586#else
7587 TCGv_i64 t0 = tcg_temp_new_i64();
76db3ba4 7588 gen_qemu_ld64(ctx, t0, addr);
6a6ae23f
AJ
7589 tcg_gen_trunc_i64_i32(cpu_gpr[rD(ctx->opcode)], t0);
7590 tcg_gen_shri_i64(t0, t0, 32);
7591 tcg_gen_trunc_i64_i32(cpu_gprh[rD(ctx->opcode)], t0);
7592 tcg_temp_free_i64(t0);
7593#endif
0487d6a8 7594}
6a6ae23f 7595
636aa200 7596static inline void gen_op_evldw(DisasContext *ctx, TCGv addr)
6a6ae23f 7597{
0487d6a8 7598#if defined(TARGET_PPC64)
6a6ae23f 7599 TCGv t0 = tcg_temp_new();
76db3ba4 7600 gen_qemu_ld32u(ctx, t0, addr);
6a6ae23f 7601 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
76db3ba4
AJ
7602 gen_addr_add(ctx, addr, addr, 4);
7603 gen_qemu_ld32u(ctx, t0, addr);
6a6ae23f
AJ
7604 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7605 tcg_temp_free(t0);
7606#else
76db3ba4
AJ
7607 gen_qemu_ld32u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
7608 gen_addr_add(ctx, addr, addr, 4);
7609 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6a6ae23f 7610#endif
0487d6a8 7611}
6a6ae23f 7612
636aa200 7613static inline void gen_op_evldh(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7614{
7615 TCGv t0 = tcg_temp_new();
7616#if defined(TARGET_PPC64)
76db3ba4 7617 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7618 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
76db3ba4
AJ
7619 gen_addr_add(ctx, addr, addr, 2);
7620 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7621 tcg_gen_shli_tl(t0, t0, 32);
7622 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
76db3ba4
AJ
7623 gen_addr_add(ctx, addr, addr, 2);
7624 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7625 tcg_gen_shli_tl(t0, t0, 16);
7626 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
76db3ba4
AJ
7627 gen_addr_add(ctx, addr, addr, 2);
7628 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7629 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
0487d6a8 7630#else
76db3ba4 7631 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7632 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
76db3ba4
AJ
7633 gen_addr_add(ctx, addr, addr, 2);
7634 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7635 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
76db3ba4
AJ
7636 gen_addr_add(ctx, addr, addr, 2);
7637 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7638 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
76db3ba4
AJ
7639 gen_addr_add(ctx, addr, addr, 2);
7640 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7641 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
0487d6a8 7642#endif
6a6ae23f 7643 tcg_temp_free(t0);
0487d6a8
JM
7644}
7645
636aa200 7646static inline void gen_op_evlhhesplat(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7647{
7648 TCGv t0 = tcg_temp_new();
76db3ba4 7649 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7650#if defined(TARGET_PPC64)
7651 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
7652 tcg_gen_shli_tl(t0, t0, 16);
7653 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7654#else
7655 tcg_gen_shli_tl(t0, t0, 16);
7656 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7657 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7658#endif
7659 tcg_temp_free(t0);
0487d6a8
JM
7660}
7661
636aa200 7662static inline void gen_op_evlhhousplat(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7663{
7664 TCGv t0 = tcg_temp_new();
76db3ba4 7665 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7666#if defined(TARGET_PPC64)
7667 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7668 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7669#else
7670 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7671 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7672#endif
7673 tcg_temp_free(t0);
0487d6a8
JM
7674}
7675
636aa200 7676static inline void gen_op_evlhhossplat(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7677{
7678 TCGv t0 = tcg_temp_new();
76db3ba4 7679 gen_qemu_ld16s(ctx, t0, addr);
6a6ae23f
AJ
7680#if defined(TARGET_PPC64)
7681 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7682 tcg_gen_ext32u_tl(t0, t0);
7683 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7684#else
7685 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7686 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7687#endif
7688 tcg_temp_free(t0);
7689}
7690
636aa200 7691static inline void gen_op_evlwhe(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7692{
7693 TCGv t0 = tcg_temp_new();
7694#if defined(TARGET_PPC64)
76db3ba4 7695 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7696 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
76db3ba4
AJ
7697 gen_addr_add(ctx, addr, addr, 2);
7698 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7699 tcg_gen_shli_tl(t0, t0, 16);
7700 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7701#else
76db3ba4 7702 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f 7703 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
76db3ba4
AJ
7704 gen_addr_add(ctx, addr, addr, 2);
7705 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7706 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
7707#endif
7708 tcg_temp_free(t0);
7709}
7710
636aa200 7711static inline void gen_op_evlwhou(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7712{
7713#if defined(TARGET_PPC64)
7714 TCGv t0 = tcg_temp_new();
76db3ba4
AJ
7715 gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
7716 gen_addr_add(ctx, addr, addr, 2);
7717 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7718 tcg_gen_shli_tl(t0, t0, 32);
7719 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7720 tcg_temp_free(t0);
7721#else
76db3ba4
AJ
7722 gen_qemu_ld16u(ctx, cpu_gprh[rD(ctx->opcode)], addr);
7723 gen_addr_add(ctx, addr, addr, 2);
7724 gen_qemu_ld16u(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6a6ae23f
AJ
7725#endif
7726}
7727
636aa200 7728static inline void gen_op_evlwhos(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7729{
7730#if defined(TARGET_PPC64)
7731 TCGv t0 = tcg_temp_new();
76db3ba4 7732 gen_qemu_ld16s(ctx, t0, addr);
6a6ae23f 7733 tcg_gen_ext32u_tl(cpu_gpr[rD(ctx->opcode)], t0);
76db3ba4
AJ
7734 gen_addr_add(ctx, addr, addr, 2);
7735 gen_qemu_ld16s(ctx, t0, addr);
6a6ae23f
AJ
7736 tcg_gen_shli_tl(t0, t0, 32);
7737 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7738 tcg_temp_free(t0);
7739#else
76db3ba4
AJ
7740 gen_qemu_ld16s(ctx, cpu_gprh[rD(ctx->opcode)], addr);
7741 gen_addr_add(ctx, addr, addr, 2);
7742 gen_qemu_ld16s(ctx, cpu_gpr[rD(ctx->opcode)], addr);
6a6ae23f
AJ
7743#endif
7744}
7745
636aa200 7746static inline void gen_op_evlwwsplat(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7747{
7748 TCGv t0 = tcg_temp_new();
76db3ba4 7749 gen_qemu_ld32u(ctx, t0, addr);
0487d6a8 7750#if defined(TARGET_PPC64)
6a6ae23f
AJ
7751 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 32);
7752 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7753#else
7754 tcg_gen_mov_tl(cpu_gprh[rD(ctx->opcode)], t0);
7755 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
7756#endif
7757 tcg_temp_free(t0);
7758}
7759
636aa200 7760static inline void gen_op_evlwhsplat(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7761{
7762 TCGv t0 = tcg_temp_new();
7763#if defined(TARGET_PPC64)
76db3ba4 7764 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7765 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 48);
7766 tcg_gen_shli_tl(t0, t0, 32);
7767 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
76db3ba4
AJ
7768 gen_addr_add(ctx, addr, addr, 2);
7769 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7770 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7771 tcg_gen_shli_tl(t0, t0, 16);
7772 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t0);
7773#else
76db3ba4 7774 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7775 tcg_gen_shli_tl(cpu_gprh[rD(ctx->opcode)], t0, 16);
7776 tcg_gen_or_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
76db3ba4
AJ
7777 gen_addr_add(ctx, addr, addr, 2);
7778 gen_qemu_ld16u(ctx, t0, addr);
6a6ae23f
AJ
7779 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)], t0, 16);
7780 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gprh[rD(ctx->opcode)], t0);
0487d6a8 7781#endif
6a6ae23f
AJ
7782 tcg_temp_free(t0);
7783}
7784
636aa200 7785static inline void gen_op_evstdd(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7786{
7787#if defined(TARGET_PPC64)
76db3ba4 7788 gen_qemu_st64(ctx, cpu_gpr[rS(ctx->opcode)], addr);
0487d6a8 7789#else
6a6ae23f
AJ
7790 TCGv_i64 t0 = tcg_temp_new_i64();
7791 tcg_gen_concat_i32_i64(t0, cpu_gpr[rS(ctx->opcode)], cpu_gprh[rS(ctx->opcode)]);
76db3ba4 7792 gen_qemu_st64(ctx, t0, addr);
6a6ae23f
AJ
7793 tcg_temp_free_i64(t0);
7794#endif
7795}
7796
636aa200 7797static inline void gen_op_evstdw(DisasContext *ctx, TCGv addr)
6a6ae23f 7798{
0487d6a8 7799#if defined(TARGET_PPC64)
6a6ae23f
AJ
7800 TCGv t0 = tcg_temp_new();
7801 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
76db3ba4 7802 gen_qemu_st32(ctx, t0, addr);
6a6ae23f
AJ
7803 tcg_temp_free(t0);
7804#else
76db3ba4 7805 gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
6a6ae23f 7806#endif
76db3ba4
AJ
7807 gen_addr_add(ctx, addr, addr, 4);
7808 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
6a6ae23f
AJ
7809}
7810
636aa200 7811static inline void gen_op_evstdh(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7812{
7813 TCGv t0 = tcg_temp_new();
7814#if defined(TARGET_PPC64)
7815 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
7816#else
7817 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
7818#endif
76db3ba4
AJ
7819 gen_qemu_st16(ctx, t0, addr);
7820 gen_addr_add(ctx, addr, addr, 2);
6a6ae23f
AJ
7821#if defined(TARGET_PPC64)
7822 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
76db3ba4 7823 gen_qemu_st16(ctx, t0, addr);
6a6ae23f 7824#else
76db3ba4 7825 gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
6a6ae23f 7826#endif
76db3ba4 7827 gen_addr_add(ctx, addr, addr, 2);
6a6ae23f 7828 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
76db3ba4 7829 gen_qemu_st16(ctx, t0, addr);
6a6ae23f 7830 tcg_temp_free(t0);
76db3ba4
AJ
7831 gen_addr_add(ctx, addr, addr, 2);
7832 gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
6a6ae23f
AJ
7833}
7834
636aa200 7835static inline void gen_op_evstwhe(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7836{
7837 TCGv t0 = tcg_temp_new();
7838#if defined(TARGET_PPC64)
7839 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 48);
7840#else
7841 tcg_gen_shri_tl(t0, cpu_gprh[rS(ctx->opcode)], 16);
7842#endif
76db3ba4
AJ
7843 gen_qemu_st16(ctx, t0, addr);
7844 gen_addr_add(ctx, addr, addr, 2);
6a6ae23f 7845 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 16);
76db3ba4 7846 gen_qemu_st16(ctx, t0, addr);
6a6ae23f
AJ
7847 tcg_temp_free(t0);
7848}
7849
636aa200 7850static inline void gen_op_evstwho(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7851{
7852#if defined(TARGET_PPC64)
7853 TCGv t0 = tcg_temp_new();
7854 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
76db3ba4 7855 gen_qemu_st16(ctx, t0, addr);
6a6ae23f
AJ
7856 tcg_temp_free(t0);
7857#else
76db3ba4 7858 gen_qemu_st16(ctx, cpu_gprh[rS(ctx->opcode)], addr);
6a6ae23f 7859#endif
76db3ba4
AJ
7860 gen_addr_add(ctx, addr, addr, 2);
7861 gen_qemu_st16(ctx, cpu_gpr[rS(ctx->opcode)], addr);
6a6ae23f
AJ
7862}
7863
636aa200 7864static inline void gen_op_evstwwe(DisasContext *ctx, TCGv addr)
6a6ae23f
AJ
7865{
7866#if defined(TARGET_PPC64)
7867 TCGv t0 = tcg_temp_new();
7868 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], 32);
76db3ba4 7869 gen_qemu_st32(ctx, t0, addr);
6a6ae23f
AJ
7870 tcg_temp_free(t0);
7871#else
76db3ba4 7872 gen_qemu_st32(ctx, cpu_gprh[rS(ctx->opcode)], addr);
6a6ae23f
AJ
7873#endif
7874}
7875
636aa200 7876static inline void gen_op_evstwwo(DisasContext *ctx, TCGv addr)
6a6ae23f 7877{
76db3ba4 7878 gen_qemu_st32(ctx, cpu_gpr[rS(ctx->opcode)], addr);
6a6ae23f
AJ
7879}
7880
7881#define GEN_SPEOP_LDST(name, opc2, sh) \
99e300ef 7882static void glue(gen_, name)(DisasContext *ctx) \
6a6ae23f
AJ
7883{ \
7884 TCGv t0; \
7885 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 7886 gen_exception(ctx, POWERPC_EXCP_SPEU); \
6a6ae23f
AJ
7887 return; \
7888 } \
76db3ba4 7889 gen_set_access_type(ctx, ACCESS_INT); \
6a6ae23f
AJ
7890 t0 = tcg_temp_new(); \
7891 if (Rc(ctx->opcode)) { \
76db3ba4 7892 gen_addr_spe_imm_index(ctx, t0, sh); \
6a6ae23f 7893 } else { \
76db3ba4 7894 gen_addr_reg_index(ctx, t0); \
6a6ae23f
AJ
7895 } \
7896 gen_op_##name(ctx, t0); \
7897 tcg_temp_free(t0); \
7898}
7899
7900GEN_SPEOP_LDST(evldd, 0x00, 3);
7901GEN_SPEOP_LDST(evldw, 0x01, 3);
7902GEN_SPEOP_LDST(evldh, 0x02, 3);
7903GEN_SPEOP_LDST(evlhhesplat, 0x04, 1);
7904GEN_SPEOP_LDST(evlhhousplat, 0x06, 1);
7905GEN_SPEOP_LDST(evlhhossplat, 0x07, 1);
7906GEN_SPEOP_LDST(evlwhe, 0x08, 2);
7907GEN_SPEOP_LDST(evlwhou, 0x0A, 2);
7908GEN_SPEOP_LDST(evlwhos, 0x0B, 2);
7909GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2);
7910GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2);
7911
7912GEN_SPEOP_LDST(evstdd, 0x10, 3);
7913GEN_SPEOP_LDST(evstdw, 0x11, 3);
7914GEN_SPEOP_LDST(evstdh, 0x12, 3);
7915GEN_SPEOP_LDST(evstwhe, 0x18, 2);
7916GEN_SPEOP_LDST(evstwho, 0x1A, 2);
7917GEN_SPEOP_LDST(evstwwe, 0x1C, 2);
7918GEN_SPEOP_LDST(evstwwo, 0x1E, 2);
0487d6a8
JM
7919
7920/* Multiply and add - TODO */
7921#if 0
70560da7
FC
7922GEN_SPE(speundef, evmhessf, 0x01, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);//
7923GEN_SPE(speundef, evmhossf, 0x03, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7924GEN_SPE(evmheumi, evmhesmi, 0x04, 0x10, 0x00000000, 0x00000000, PPC_SPE);
7925GEN_SPE(speundef, evmhesmf, 0x05, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7926GEN_SPE(evmhoumi, evmhosmi, 0x06, 0x10, 0x00000000, 0x00000000, PPC_SPE);
7927GEN_SPE(speundef, evmhosmf, 0x07, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7928GEN_SPE(speundef, evmhessfa, 0x11, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7929GEN_SPE(speundef, evmhossfa, 0x13, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7930GEN_SPE(evmheumia, evmhesmia, 0x14, 0x10, 0x00000000, 0x00000000, PPC_SPE);
7931GEN_SPE(speundef, evmhesmfa, 0x15, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7932GEN_SPE(evmhoumia, evmhosmia, 0x16, 0x10, 0x00000000, 0x00000000, PPC_SPE);
7933GEN_SPE(speundef, evmhosmfa, 0x17, 0x10, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7934
7935GEN_SPE(speundef, evmwhssf, 0x03, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7936GEN_SPE(evmwlumi, speundef, 0x04, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE);
7937GEN_SPE(evmwhumi, evmwhsmi, 0x06, 0x11, 0x00000000, 0x00000000, PPC_SPE);
7938GEN_SPE(speundef, evmwhsmf, 0x07, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7939GEN_SPE(speundef, evmwssf, 0x09, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7940GEN_SPE(speundef, evmwsmf, 0x0D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7941GEN_SPE(speundef, evmwhssfa, 0x13, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7942GEN_SPE(evmwlumia, speundef, 0x14, 0x11, 0x00000000, 0xFFFFFFFF, PPC_SPE);
7943GEN_SPE(evmwhumia, evmwhsmia, 0x16, 0x11, 0x00000000, 0x00000000, PPC_SPE);
7944GEN_SPE(speundef, evmwhsmfa, 0x17, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7945GEN_SPE(speundef, evmwssfa, 0x19, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7946GEN_SPE(speundef, evmwsmfa, 0x1D, 0x11, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7947
7948GEN_SPE(evadduiaaw, evaddsiaaw, 0x00, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
7949GEN_SPE(evsubfusiaaw, evsubfssiaaw, 0x01, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
7950GEN_SPE(evaddumiaaw, evaddsmiaaw, 0x04, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
7951GEN_SPE(evsubfumiaaw, evsubfsmiaaw, 0x05, 0x13, 0x0000F800, 0x0000F800, PPC_SPE);
7952GEN_SPE(evdivws, evdivwu, 0x06, 0x13, 0x00000000, 0x00000000, PPC_SPE);
7953
7954GEN_SPE(evmheusiaaw, evmhessiaaw, 0x00, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7955GEN_SPE(speundef, evmhessfaaw, 0x01, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7956GEN_SPE(evmhousiaaw, evmhossiaaw, 0x02, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7957GEN_SPE(speundef, evmhossfaaw, 0x03, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7958GEN_SPE(evmheumiaaw, evmhesmiaaw, 0x04, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7959GEN_SPE(speundef, evmhesmfaaw, 0x05, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7960GEN_SPE(evmhoumiaaw, evmhosmiaaw, 0x06, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7961GEN_SPE(speundef, evmhosmfaaw, 0x07, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7962GEN_SPE(evmhegumiaa, evmhegsmiaa, 0x14, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7963GEN_SPE(speundef, evmhegsmfaa, 0x15, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7964GEN_SPE(evmhogumiaa, evmhogsmiaa, 0x16, 0x14, 0x00000000, 0x00000000, PPC_SPE);
7965GEN_SPE(speundef, evmhogsmfaa, 0x17, 0x14, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7966
7967GEN_SPE(evmwlusiaaw, evmwlssiaaw, 0x00, 0x15, 0x00000000, 0x00000000, PPC_SPE);
7968GEN_SPE(evmwlumiaaw, evmwlsmiaaw, 0x04, 0x15, 0x00000000, 0x00000000, PPC_SPE);
7969GEN_SPE(speundef, evmwssfaa, 0x09, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7970GEN_SPE(speundef, evmwsmfaa, 0x0D, 0x15, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7971
7972GEN_SPE(evmheusianw, evmhessianw, 0x00, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7973GEN_SPE(speundef, evmhessfanw, 0x01, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7974GEN_SPE(evmhousianw, evmhossianw, 0x02, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7975GEN_SPE(speundef, evmhossfanw, 0x03, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7976GEN_SPE(evmheumianw, evmhesmianw, 0x04, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7977GEN_SPE(speundef, evmhesmfanw, 0x05, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7978GEN_SPE(evmhoumianw, evmhosmianw, 0x06, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7979GEN_SPE(speundef, evmhosmfanw, 0x07, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7980GEN_SPE(evmhegumian, evmhegsmian, 0x14, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7981GEN_SPE(speundef, evmhegsmfan, 0x15, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7982GEN_SPE(evmhigumian, evmhigsmian, 0x16, 0x16, 0x00000000, 0x00000000, PPC_SPE);
7983GEN_SPE(speundef, evmhogsmfan, 0x17, 0x16, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7984
7985GEN_SPE(evmwlusianw, evmwlssianw, 0x00, 0x17, 0x00000000, 0x00000000, PPC_SPE);
7986GEN_SPE(evmwlumianw, evmwlsmianw, 0x04, 0x17, 0x00000000, 0x00000000, PPC_SPE);
7987GEN_SPE(speundef, evmwssfan, 0x09, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE);
7988GEN_SPE(evmwumian, evmwsmian, 0x0C, 0x17, 0x00000000, 0x00000000, PPC_SPE);
7989GEN_SPE(speundef, evmwsmfan, 0x0D, 0x17, 0xFFFFFFFF, 0x00000000, PPC_SPE);
0487d6a8
JM
7990#endif
7991
7992/*** SPE floating-point extension ***/
1c97856d
AJ
7993#if defined(TARGET_PPC64)
7994#define GEN_SPEFPUOP_CONV_32_32(name) \
636aa200 7995static inline void gen_##name(DisasContext *ctx) \
0487d6a8 7996{ \
1c97856d
AJ
7997 TCGv_i32 t0; \
7998 TCGv t1; \
7999 t0 = tcg_temp_new_i32(); \
8000 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
8e703949 8001 gen_helper_##name(t0, cpu_env, t0); \
1c97856d
AJ
8002 t1 = tcg_temp_new(); \
8003 tcg_gen_extu_i32_tl(t1, t0); \
8004 tcg_temp_free_i32(t0); \
8005 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8006 0xFFFFFFFF00000000ULL); \
8007 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
8008 tcg_temp_free(t1); \
0487d6a8 8009}
1c97856d 8010#define GEN_SPEFPUOP_CONV_32_64(name) \
636aa200 8011static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8012{ \
8013 TCGv_i32 t0; \
8014 TCGv t1; \
8015 t0 = tcg_temp_new_i32(); \
8e703949 8016 gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]); \
1c97856d
AJ
8017 t1 = tcg_temp_new(); \
8018 tcg_gen_extu_i32_tl(t1, t0); \
8019 tcg_temp_free_i32(t0); \
8020 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8021 0xFFFFFFFF00000000ULL); \
8022 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t1); \
8023 tcg_temp_free(t1); \
8024}
8025#define GEN_SPEFPUOP_CONV_64_32(name) \
636aa200 8026static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8027{ \
8028 TCGv_i32 t0 = tcg_temp_new_i32(); \
8029 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rB(ctx->opcode)]); \
8e703949 8030 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0); \
1c97856d
AJ
8031 tcg_temp_free_i32(t0); \
8032}
8033#define GEN_SPEFPUOP_CONV_64_64(name) \
636aa200 8034static inline void gen_##name(DisasContext *ctx) \
1c97856d 8035{ \
8e703949
BS
8036 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8037 cpu_gpr[rB(ctx->opcode)]); \
1c97856d
AJ
8038}
8039#define GEN_SPEFPUOP_ARITH2_32_32(name) \
636aa200 8040static inline void gen_##name(DisasContext *ctx) \
57951c27 8041{ \
1c97856d
AJ
8042 TCGv_i32 t0, t1; \
8043 TCGv_i64 t2; \
57951c27 8044 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8045 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
8046 return; \
8047 } \
1c97856d
AJ
8048 t0 = tcg_temp_new_i32(); \
8049 t1 = tcg_temp_new_i32(); \
8050 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
8051 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
8e703949 8052 gen_helper_##name(t0, cpu_env, t0, t1); \
1c97856d
AJ
8053 tcg_temp_free_i32(t1); \
8054 t2 = tcg_temp_new(); \
8055 tcg_gen_extu_i32_tl(t2, t0); \
8056 tcg_temp_free_i32(t0); \
8057 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], \
8058 0xFFFFFFFF00000000ULL); \
8059 tcg_gen_or_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rD(ctx->opcode)], t2); \
8060 tcg_temp_free(t2); \
57951c27 8061}
1c97856d 8062#define GEN_SPEFPUOP_ARITH2_64_64(name) \
636aa200 8063static inline void gen_##name(DisasContext *ctx) \
57951c27
AJ
8064{ \
8065 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8066 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
8067 return; \
8068 } \
8e703949
BS
8069 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8070 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
57951c27 8071}
1c97856d 8072#define GEN_SPEFPUOP_COMP_32(name) \
636aa200 8073static inline void gen_##name(DisasContext *ctx) \
57951c27 8074{ \
1c97856d 8075 TCGv_i32 t0, t1; \
57951c27 8076 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8077 gen_exception(ctx, POWERPC_EXCP_SPEU); \
57951c27
AJ
8078 return; \
8079 } \
1c97856d
AJ
8080 t0 = tcg_temp_new_i32(); \
8081 t1 = tcg_temp_new_i32(); \
8082 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]); \
8083 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]); \
8e703949 8084 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1); \
1c97856d
AJ
8085 tcg_temp_free_i32(t0); \
8086 tcg_temp_free_i32(t1); \
8087}
8088#define GEN_SPEFPUOP_COMP_64(name) \
636aa200 8089static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8090{ \
8091 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8092 gen_exception(ctx, POWERPC_EXCP_SPEU); \
1c97856d
AJ
8093 return; \
8094 } \
8e703949 8095 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, \
1c97856d
AJ
8096 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8097}
8098#else
8099#define GEN_SPEFPUOP_CONV_32_32(name) \
636aa200 8100static inline void gen_##name(DisasContext *ctx) \
1c97856d 8101{ \
8e703949
BS
8102 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
8103 cpu_gpr[rB(ctx->opcode)]); \
57951c27 8104}
1c97856d 8105#define GEN_SPEFPUOP_CONV_32_64(name) \
636aa200 8106static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8107{ \
8108 TCGv_i64 t0 = tcg_temp_new_i64(); \
8109 gen_load_gpr64(t0, rB(ctx->opcode)); \
8e703949 8110 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, t0); \
1c97856d
AJ
8111 tcg_temp_free_i64(t0); \
8112}
8113#define GEN_SPEFPUOP_CONV_64_32(name) \
636aa200 8114static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8115{ \
8116 TCGv_i64 t0 = tcg_temp_new_i64(); \
8e703949 8117 gen_helper_##name(t0, cpu_env, cpu_gpr[rB(ctx->opcode)]); \
1c97856d
AJ
8118 gen_store_gpr64(rD(ctx->opcode), t0); \
8119 tcg_temp_free_i64(t0); \
8120}
8121#define GEN_SPEFPUOP_CONV_64_64(name) \
636aa200 8122static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8123{ \
8124 TCGv_i64 t0 = tcg_temp_new_i64(); \
8125 gen_load_gpr64(t0, rB(ctx->opcode)); \
8e703949 8126 gen_helper_##name(t0, cpu_env, t0); \
1c97856d
AJ
8127 gen_store_gpr64(rD(ctx->opcode), t0); \
8128 tcg_temp_free_i64(t0); \
8129}
8130#define GEN_SPEFPUOP_ARITH2_32_32(name) \
636aa200 8131static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8132{ \
8133 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8134 gen_exception(ctx, POWERPC_EXCP_SPEU); \
1c97856d
AJ
8135 return; \
8136 } \
8e703949 8137 gen_helper_##name(cpu_gpr[rD(ctx->opcode)], cpu_env, \
1c97856d
AJ
8138 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8139}
8140#define GEN_SPEFPUOP_ARITH2_64_64(name) \
636aa200 8141static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8142{ \
8143 TCGv_i64 t0, t1; \
8144 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8145 gen_exception(ctx, POWERPC_EXCP_SPEU); \
1c97856d
AJ
8146 return; \
8147 } \
8148 t0 = tcg_temp_new_i64(); \
8149 t1 = tcg_temp_new_i64(); \
8150 gen_load_gpr64(t0, rA(ctx->opcode)); \
8151 gen_load_gpr64(t1, rB(ctx->opcode)); \
8e703949 8152 gen_helper_##name(t0, cpu_env, t0, t1); \
1c97856d
AJ
8153 gen_store_gpr64(rD(ctx->opcode), t0); \
8154 tcg_temp_free_i64(t0); \
8155 tcg_temp_free_i64(t1); \
8156}
8157#define GEN_SPEFPUOP_COMP_32(name) \
636aa200 8158static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8159{ \
8160 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8161 gen_exception(ctx, POWERPC_EXCP_SPEU); \
1c97856d
AJ
8162 return; \
8163 } \
8e703949 8164 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, \
1c97856d
AJ
8165 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]); \
8166}
8167#define GEN_SPEFPUOP_COMP_64(name) \
636aa200 8168static inline void gen_##name(DisasContext *ctx) \
1c97856d
AJ
8169{ \
8170 TCGv_i64 t0, t1; \
8171 if (unlikely(!ctx->spe_enabled)) { \
27a69bb0 8172 gen_exception(ctx, POWERPC_EXCP_SPEU); \
1c97856d
AJ
8173 return; \
8174 } \
8175 t0 = tcg_temp_new_i64(); \
8176 t1 = tcg_temp_new_i64(); \
8177 gen_load_gpr64(t0, rA(ctx->opcode)); \
8178 gen_load_gpr64(t1, rB(ctx->opcode)); \
8e703949 8179 gen_helper_##name(cpu_crf[crfD(ctx->opcode)], cpu_env, t0, t1); \
1c97856d
AJ
8180 tcg_temp_free_i64(t0); \
8181 tcg_temp_free_i64(t1); \
8182}
8183#endif
57951c27 8184
0487d6a8
JM
8185/* Single precision floating-point vectors operations */
8186/* Arithmetic */
1c97856d
AJ
8187GEN_SPEFPUOP_ARITH2_64_64(evfsadd);
8188GEN_SPEFPUOP_ARITH2_64_64(evfssub);
8189GEN_SPEFPUOP_ARITH2_64_64(evfsmul);
8190GEN_SPEFPUOP_ARITH2_64_64(evfsdiv);
636aa200 8191static inline void gen_evfsabs(DisasContext *ctx)
1c97856d
AJ
8192{
8193 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8194 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8195 return;
8196 }
8197#if defined(TARGET_PPC64)
6d5c34fa 8198 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000080000000LL);
1c97856d 8199#else
6d5c34fa
MP
8200 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x80000000);
8201 tcg_gen_andi_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
1c97856d
AJ
8202#endif
8203}
636aa200 8204static inline void gen_evfsnabs(DisasContext *ctx)
1c97856d
AJ
8205{
8206 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8207 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8208 return;
8209 }
8210#if defined(TARGET_PPC64)
6d5c34fa 8211 tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
1c97856d 8212#else
6d5c34fa
MP
8213 tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
8214 tcg_gen_ori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
1c97856d
AJ
8215#endif
8216}
636aa200 8217static inline void gen_evfsneg(DisasContext *ctx)
1c97856d
AJ
8218{
8219 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8220 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8221 return;
8222 }
8223#if defined(TARGET_PPC64)
6d5c34fa 8224 tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000080000000LL);
1c97856d 8225#else
6d5c34fa
MP
8226 tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
8227 tcg_gen_xori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
1c97856d
AJ
8228#endif
8229}
8230
0487d6a8 8231/* Conversion */
1c97856d
AJ
8232GEN_SPEFPUOP_CONV_64_64(evfscfui);
8233GEN_SPEFPUOP_CONV_64_64(evfscfsi);
8234GEN_SPEFPUOP_CONV_64_64(evfscfuf);
8235GEN_SPEFPUOP_CONV_64_64(evfscfsf);
8236GEN_SPEFPUOP_CONV_64_64(evfsctui);
8237GEN_SPEFPUOP_CONV_64_64(evfsctsi);
8238GEN_SPEFPUOP_CONV_64_64(evfsctuf);
8239GEN_SPEFPUOP_CONV_64_64(evfsctsf);
8240GEN_SPEFPUOP_CONV_64_64(evfsctuiz);
8241GEN_SPEFPUOP_CONV_64_64(evfsctsiz);
8242
0487d6a8 8243/* Comparison */
1c97856d
AJ
8244GEN_SPEFPUOP_COMP_64(evfscmpgt);
8245GEN_SPEFPUOP_COMP_64(evfscmplt);
8246GEN_SPEFPUOP_COMP_64(evfscmpeq);
8247GEN_SPEFPUOP_COMP_64(evfststgt);
8248GEN_SPEFPUOP_COMP_64(evfststlt);
8249GEN_SPEFPUOP_COMP_64(evfststeq);
0487d6a8
JM
8250
8251/* Opcodes definitions */
70560da7
FC
8252GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
8253GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE); //
8254GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8255GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
8256GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
8257GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8258GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8259GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8260GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8261GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8262GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8263GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8264GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
8265GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
0487d6a8
JM
8266
8267/* Single precision floating-point operations */
8268/* Arithmetic */
1c97856d
AJ
8269GEN_SPEFPUOP_ARITH2_32_32(efsadd);
8270GEN_SPEFPUOP_ARITH2_32_32(efssub);
8271GEN_SPEFPUOP_ARITH2_32_32(efsmul);
8272GEN_SPEFPUOP_ARITH2_32_32(efsdiv);
636aa200 8273static inline void gen_efsabs(DisasContext *ctx)
1c97856d
AJ
8274{
8275 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8276 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8277 return;
8278 }
6d5c34fa 8279 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], (target_long)~0x80000000LL);
1c97856d 8280}
636aa200 8281static inline void gen_efsnabs(DisasContext *ctx)
1c97856d
AJ
8282{
8283 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8284 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8285 return;
8286 }
6d5c34fa 8287 tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
1c97856d 8288}
636aa200 8289static inline void gen_efsneg(DisasContext *ctx)
1c97856d
AJ
8290{
8291 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8292 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8293 return;
8294 }
6d5c34fa 8295 tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x80000000);
1c97856d
AJ
8296}
8297
0487d6a8 8298/* Conversion */
1c97856d
AJ
8299GEN_SPEFPUOP_CONV_32_32(efscfui);
8300GEN_SPEFPUOP_CONV_32_32(efscfsi);
8301GEN_SPEFPUOP_CONV_32_32(efscfuf);
8302GEN_SPEFPUOP_CONV_32_32(efscfsf);
8303GEN_SPEFPUOP_CONV_32_32(efsctui);
8304GEN_SPEFPUOP_CONV_32_32(efsctsi);
8305GEN_SPEFPUOP_CONV_32_32(efsctuf);
8306GEN_SPEFPUOP_CONV_32_32(efsctsf);
8307GEN_SPEFPUOP_CONV_32_32(efsctuiz);
8308GEN_SPEFPUOP_CONV_32_32(efsctsiz);
8309GEN_SPEFPUOP_CONV_32_64(efscfd);
8310
0487d6a8 8311/* Comparison */
1c97856d
AJ
8312GEN_SPEFPUOP_COMP_32(efscmpgt);
8313GEN_SPEFPUOP_COMP_32(efscmplt);
8314GEN_SPEFPUOP_COMP_32(efscmpeq);
8315GEN_SPEFPUOP_COMP_32(efststgt);
8316GEN_SPEFPUOP_COMP_32(efststlt);
8317GEN_SPEFPUOP_COMP_32(efststeq);
0487d6a8
JM
8318
8319/* Opcodes definitions */
70560da7
FC
8320GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
8321GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE); //
8322GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8323GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE); //
8324GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
8325GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE); //
8326GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8327GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8328GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8329GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE); //
8330GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8331GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
8332GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE); //
8333GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE); //
0487d6a8
JM
8334
8335/* Double precision floating-point operations */
8336/* Arithmetic */
1c97856d
AJ
8337GEN_SPEFPUOP_ARITH2_64_64(efdadd);
8338GEN_SPEFPUOP_ARITH2_64_64(efdsub);
8339GEN_SPEFPUOP_ARITH2_64_64(efdmul);
8340GEN_SPEFPUOP_ARITH2_64_64(efddiv);
636aa200 8341static inline void gen_efdabs(DisasContext *ctx)
1c97856d
AJ
8342{
8343 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8344 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8345 return;
8346 }
8347#if defined(TARGET_PPC64)
6d5c34fa 8348 tcg_gen_andi_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~0x8000000000000000LL);
1c97856d 8349#else
6d5c34fa
MP
8350 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8351 tcg_gen_andi_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], ~0x80000000);
1c97856d
AJ
8352#endif
8353}
636aa200 8354static inline void gen_efdnabs(DisasContext *ctx)
1c97856d
AJ
8355{
8356 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8357 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8358 return;
8359 }
8360#if defined(TARGET_PPC64)
6d5c34fa 8361 tcg_gen_ori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
1c97856d 8362#else
6d5c34fa
MP
8363 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8364 tcg_gen_ori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
1c97856d
AJ
8365#endif
8366}
636aa200 8367static inline void gen_efdneg(DisasContext *ctx)
1c97856d
AJ
8368{
8369 if (unlikely(!ctx->spe_enabled)) {
27a69bb0 8370 gen_exception(ctx, POWERPC_EXCP_SPEU);
1c97856d
AJ
8371 return;
8372 }
8373#if defined(TARGET_PPC64)
6d5c34fa 8374 tcg_gen_xori_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], 0x8000000000000000LL);
1c97856d 8375#else
6d5c34fa
MP
8376 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
8377 tcg_gen_xori_tl(cpu_gprh[rD(ctx->opcode)], cpu_gprh[rA(ctx->opcode)], 0x80000000);
1c97856d
AJ
8378#endif
8379}
8380
0487d6a8 8381/* Conversion */
1c97856d
AJ
8382GEN_SPEFPUOP_CONV_64_32(efdcfui);
8383GEN_SPEFPUOP_CONV_64_32(efdcfsi);
8384GEN_SPEFPUOP_CONV_64_32(efdcfuf);
8385GEN_SPEFPUOP_CONV_64_32(efdcfsf);
8386GEN_SPEFPUOP_CONV_32_64(efdctui);
8387GEN_SPEFPUOP_CONV_32_64(efdctsi);
8388GEN_SPEFPUOP_CONV_32_64(efdctuf);
8389GEN_SPEFPUOP_CONV_32_64(efdctsf);
8390GEN_SPEFPUOP_CONV_32_64(efdctuiz);
8391GEN_SPEFPUOP_CONV_32_64(efdctsiz);
8392GEN_SPEFPUOP_CONV_64_32(efdcfs);
8393GEN_SPEFPUOP_CONV_64_64(efdcfuid);
8394GEN_SPEFPUOP_CONV_64_64(efdcfsid);
8395GEN_SPEFPUOP_CONV_64_64(efdctuidz);
8396GEN_SPEFPUOP_CONV_64_64(efdctsidz);
0487d6a8 8397
0487d6a8 8398/* Comparison */
1c97856d
AJ
8399GEN_SPEFPUOP_COMP_64(efdcmpgt);
8400GEN_SPEFPUOP_COMP_64(efdcmplt);
8401GEN_SPEFPUOP_COMP_64(efdcmpeq);
8402GEN_SPEFPUOP_COMP_64(efdtstgt);
8403GEN_SPEFPUOP_COMP_64(efdtstlt);
8404GEN_SPEFPUOP_COMP_64(efdtsteq);
0487d6a8
JM
8405
8406/* Opcodes definitions */
70560da7
FC
8407GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE); //
8408GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8409GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE); //
8410GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
8411GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE); //
8412GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8413GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE); //
8414GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE); //
8415GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8416GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8417GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8418GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE); //
8419GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
8420GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
8421GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE); //
8422GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE); //
0487d6a8 8423
c227f099 8424static opcode_t opcodes[] = {
5c55ff99
BS
8425GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE),
8426GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER),
8427GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
8428GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 0x00400000, PPC_INTEGER),
8429GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
8430GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL),
8431GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8432GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8433GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8434GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8435GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER),
8436GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER),
8437GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER),
8438GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER),
8439GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8440#if defined(TARGET_PPC64)
8441GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B),
8442#endif
8443GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER),
8444GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER),
8445GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8446GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8447GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8448GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER),
8449GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER),
8450GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER),
8451GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8452GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8453GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8454GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8455GEN_HANDLER(popcntb, 0x1F, 0x03, 0x03, 0x0000F801, PPC_POPCNTB),
eaabeef2 8456GEN_HANDLER(popcntw, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD),
5c55ff99 8457#if defined(TARGET_PPC64)
eaabeef2 8458GEN_HANDLER(popcntd, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD),
5c55ff99
BS
8459GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B),
8460#endif
8461GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8462GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8463GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8464GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER),
8465GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER),
8466GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER),
8467GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER),
8468#if defined(TARGET_PPC64)
8469GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B),
8470GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B),
8471GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B),
8472GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B),
8473GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B),
8474#endif
8475GEN_HANDLER(frsqrtes, 0x3B, 0x1A, 0xFF, 0x001F07C0, PPC_FLOAT_FRSQRTES),
8476GEN_HANDLER(fsqrt, 0x3F, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT),
8477GEN_HANDLER(fsqrts, 0x3B, 0x16, 0xFF, 0x001F07C0, PPC_FLOAT_FSQRT),
8478GEN_HANDLER(fcmpo, 0x3F, 0x00, 0x01, 0x00600001, PPC_FLOAT),
8479GEN_HANDLER(fcmpu, 0x3F, 0x00, 0x00, 0x00600001, PPC_FLOAT),
8480GEN_HANDLER(fmr, 0x3F, 0x08, 0x02, 0x001F0000, PPC_FLOAT),
8481GEN_HANDLER(mcrfs, 0x3F, 0x00, 0x02, 0x0063F801, PPC_FLOAT),
8482GEN_HANDLER(mffs, 0x3F, 0x07, 0x12, 0x001FF800, PPC_FLOAT),
8483GEN_HANDLER(mtfsb0, 0x3F, 0x06, 0x02, 0x001FF800, PPC_FLOAT),
8484GEN_HANDLER(mtfsb1, 0x3F, 0x06, 0x01, 0x001FF800, PPC_FLOAT),
8485GEN_HANDLER(mtfsf, 0x3F, 0x07, 0x16, 0x00010000, PPC_FLOAT),
8486GEN_HANDLER(mtfsfi, 0x3F, 0x06, 0x04, 0x006f0800, PPC_FLOAT),
8487#if defined(TARGET_PPC64)
8488GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B),
8489GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX),
8490GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B),
8491#endif
8492GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8493GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
8494GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING),
8495GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING),
8496GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING),
8497GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING),
8498GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO),
8499GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM),
f844c817 8500GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES),
5c55ff99
BS
8501GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES),
8502#if defined(TARGET_PPC64)
f844c817 8503GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B),
5c55ff99
BS
8504GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B),
8505#endif
8506GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC),
8507GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT),
8508GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
8509GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
8510GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW),
8511GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW),
8512GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER),
8513GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW),
8514#if defined(TARGET_PPC64)
8515GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B),
8516GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H),
8517#endif
8518GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW),
8519GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW),
8520GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
8521#if defined(TARGET_PPC64)
8522GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B),
8523GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B),
8524#endif
8525GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC),
8526GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC),
8527GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC),
8528GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC),
8529GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB),
8530GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC),
8531#if defined(TARGET_PPC64)
8532GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B),
8533#endif
8534GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001FF801, PPC_MISC),
8535GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000001, PPC_MISC),
8536GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE),
8537GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE),
8538GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE),
8539GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x02000001, PPC_CACHE),
8540GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x02000001, PPC_CACHE),
8e33944f 8541GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ),
5c55ff99
BS
8542GEN_HANDLER(dst, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC),
8543GEN_HANDLER(dstst, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC),
8544GEN_HANDLER(dss, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC),
8545GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI),
8546GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA),
8547GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT),
8548GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT),
8549GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT),
8550GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT),
8551#if defined(TARGET_PPC64)
8552GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B),
8553GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
8554 PPC_SEGMENT_64B),
8555GEN_HANDLER2(mtsr_64b, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B),
8556GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
8557 PPC_SEGMENT_64B),
efdef95f
DG
8558GEN_HANDLER2(slbmte, "slbmte", 0x1F, 0x12, 0x0C, 0x001F0001, PPC_SEGMENT_64B),
8559GEN_HANDLER2(slbmfee, "slbmfee", 0x1F, 0x13, 0x1C, 0x001F0001, PPC_SEGMENT_64B),
8560GEN_HANDLER2(slbmfev, "slbmfev", 0x1F, 0x13, 0x1A, 0x001F0001, PPC_SEGMENT_64B),
5c55ff99
BS
8561#endif
8562GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA),
8563GEN_HANDLER(tlbiel, 0x1F, 0x12, 0x08, 0x03FF0001, PPC_MEM_TLBIE),
8564GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x03FF0001, PPC_MEM_TLBIE),
8565GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC),
8566#if defined(TARGET_PPC64)
8567GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x03FFFC01, PPC_SLBI),
8568GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI),
8569#endif
8570GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN),
8571GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN),
8572GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR),
8573GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR),
8574GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR),
8575GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR),
8576GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR),
8577GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR),
8578GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR),
8579GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR),
8580GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR),
8581GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
8582GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR),
8583GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR),
8584GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR),
8585GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR),
8586GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR),
8587GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR),
8588GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR),
8589GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
8590GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR),
8591GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR),
8592GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR),
8593GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR),
8594GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR),
8595GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR),
8596GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR),
8597GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR),
8598GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR),
8599GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR),
8600GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR),
8601GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR),
8602GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR),
8603GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR),
8604GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR),
8605GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR),
8606GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC),
8607GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC),
8608GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC),
8609GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB),
8610GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB),
8611GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB),
8612GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB),
8613GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER),
8614GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER),
8615GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER),
8616GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER),
8617GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER),
8618GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER),
8619GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
8620GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
8621GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2),
8622GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2),
8623GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
8624GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
8625GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2),
8626GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2),
8627GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI),
8628GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA),
8629GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR),
8630GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR),
8631GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX),
8632GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX),
8633GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX),
8634GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX),
8635GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON),
8636GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON),
8637GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT),
8638GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON),
8639GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON),
8640GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP),
01662f3e 8641GEN_HANDLER_E(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE, PPC2_BOOKE206),
5c55ff99
BS
8642GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI),
8643GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI),
8644GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB),
8645GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB),
8646GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB),
8647GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE),
8648GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE),
8649GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE),
01662f3e
AG
8650GEN_HANDLER2_E(tlbre_booke206, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
8651 PPC_NONE, PPC2_BOOKE206),
8652GEN_HANDLER2_E(tlbsx_booke206, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
8653 PPC_NONE, PPC2_BOOKE206),
8654GEN_HANDLER2_E(tlbwe_booke206, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
8655 PPC_NONE, PPC2_BOOKE206),
8656GEN_HANDLER2_E(tlbivax_booke206, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
8657 PPC_NONE, PPC2_BOOKE206),
6d3db821
AG
8658GEN_HANDLER2_E(tlbilx_booke206, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
8659 PPC_NONE, PPC2_BOOKE206),
d5d11a39
AG
8660GEN_HANDLER2_E(msgsnd, "msgsnd", 0x1F, 0x0E, 0x06, 0x03ff0001,
8661 PPC_NONE, PPC2_PRCNTL),
9e0b5cb1
AG
8662GEN_HANDLER2_E(msgclr, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001,
8663 PPC_NONE, PPC2_PRCNTL),
5c55ff99 8664GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE),
fbe73008 8665GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE),
5c55ff99 8666GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC),
01662f3e
AG
8667GEN_HANDLER_E(mbar, 0x1F, 0x16, 0x1a, 0x001FF801,
8668 PPC_BOOKE, PPC2_BOOKE206),
dcb2b9e1 8669GEN_HANDLER(msync_4xx, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE),
01662f3e
AG
8670GEN_HANDLER2_E(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
8671 PPC_BOOKE, PPC2_BOOKE206),
5c55ff99
BS
8672GEN_HANDLER(lvsl, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC),
8673GEN_HANDLER(lvsr, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC),
8674GEN_HANDLER(mfvscr, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC),
8675GEN_HANDLER(mtvscr, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC),
8676GEN_HANDLER(vsldoi, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC),
8677GEN_HANDLER(vmladduhm, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC),
8678GEN_HANDLER2(evsel0, "evsel", 0x04, 0x1c, 0x09, 0x00000000, PPC_SPE),
8679GEN_HANDLER2(evsel1, "evsel", 0x04, 0x1d, 0x09, 0x00000000, PPC_SPE),
8680GEN_HANDLER2(evsel2, "evsel", 0x04, 0x1e, 0x09, 0x00000000, PPC_SPE),
8681GEN_HANDLER2(evsel3, "evsel", 0x04, 0x1f, 0x09, 0x00000000, PPC_SPE),
8682
8683#undef GEN_INT_ARITH_ADD
8684#undef GEN_INT_ARITH_ADD_CONST
8685#define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
8686GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
8687#define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
8688 add_ca, compute_ca, compute_ov) \
8689GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
8690GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
8691GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
8692GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
8693GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
8694GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
8695GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
8696GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
8697GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
8698GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
8699GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
8700
8701#undef GEN_INT_ARITH_DIVW
8702#define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
8703GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
8704GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0),
8705GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1),
8706GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0),
8707GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1),
8708
8709#if defined(TARGET_PPC64)
8710#undef GEN_INT_ARITH_DIVD
8711#define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
8712GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8713GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0),
8714GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1),
8715GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0),
8716GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1),
8717
8718#undef GEN_INT_ARITH_MUL_HELPER
8719#define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
8720GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
8721GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00),
8722GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02),
8723GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17),
8724#endif
8725
8726#undef GEN_INT_ARITH_SUBF
8727#undef GEN_INT_ARITH_SUBF_CONST
8728#define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
8729GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
8730#define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
8731 add_ca, compute_ca, compute_ov) \
8732GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
8733GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
8734GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
8735GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
8736GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
8737GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
8738GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
8739GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
8740GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
8741GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
8742GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
8743
8744#undef GEN_LOGICAL1
8745#undef GEN_LOGICAL2
8746#define GEN_LOGICAL2(name, tcg_op, opc, type) \
8747GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
8748#define GEN_LOGICAL1(name, tcg_op, opc, type) \
8749GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
8750GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER),
8751GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER),
8752GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER),
8753GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER),
8754GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER),
8755GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER),
8756GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER),
8757GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER),
8758#if defined(TARGET_PPC64)
8759GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B),
8760#endif
8761
8762#if defined(TARGET_PPC64)
8763#undef GEN_PPC64_R2
8764#undef GEN_PPC64_R4
8765#define GEN_PPC64_R2(name, opc1, opc2) \
8766GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8767GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8768 PPC_64B)
8769#define GEN_PPC64_R4(name, opc1, opc2) \
8770GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
8771GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
8772 PPC_64B), \
8773GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
8774 PPC_64B), \
8775GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
8776 PPC_64B)
8777GEN_PPC64_R4(rldicl, 0x1E, 0x00),
8778GEN_PPC64_R4(rldicr, 0x1E, 0x02),
8779GEN_PPC64_R4(rldic, 0x1E, 0x04),
8780GEN_PPC64_R2(rldcl, 0x1E, 0x08),
8781GEN_PPC64_R2(rldcr, 0x1E, 0x09),
8782GEN_PPC64_R4(rldimi, 0x1E, 0x06),
8783#endif
8784
8785#undef _GEN_FLOAT_ACB
8786#undef GEN_FLOAT_ACB
8787#undef _GEN_FLOAT_AB
8788#undef GEN_FLOAT_AB
8789#undef _GEN_FLOAT_AC
8790#undef GEN_FLOAT_AC
8791#undef GEN_FLOAT_B
8792#undef GEN_FLOAT_BS
8793#define _GEN_FLOAT_ACB(name, op, op1, op2, isfloat, set_fprf, type) \
8794GEN_HANDLER(f##name, op1, op2, 0xFF, 0x00000000, type)
8795#define GEN_FLOAT_ACB(name, op2, set_fprf, type) \
8796_GEN_FLOAT_ACB(name, name, 0x3F, op2, 0, set_fprf, type), \
8797_GEN_FLOAT_ACB(name##s, name, 0x3B, op2, 1, set_fprf, type)
8798#define _GEN_FLOAT_AB(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8799GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8800#define GEN_FLOAT_AB(name, op2, inval, set_fprf, type) \
8801_GEN_FLOAT_AB(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8802_GEN_FLOAT_AB(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8803#define _GEN_FLOAT_AC(name, op, op1, op2, inval, isfloat, set_fprf, type) \
8804GEN_HANDLER(f##name, op1, op2, 0xFF, inval, type)
8805#define GEN_FLOAT_AC(name, op2, inval, set_fprf, type) \
8806_GEN_FLOAT_AC(name, name, 0x3F, op2, inval, 0, set_fprf, type), \
8807_GEN_FLOAT_AC(name##s, name, 0x3B, op2, inval, 1, set_fprf, type)
8808#define GEN_FLOAT_B(name, op2, op3, set_fprf, type) \
8809GEN_HANDLER(f##name, 0x3F, op2, op3, 0x001F0000, type)
8810#define GEN_FLOAT_BS(name, op1, op2, set_fprf, type) \
8811GEN_HANDLER(f##name, op1, op2, 0xFF, 0x001F07C0, type)
8812
8813GEN_FLOAT_AB(add, 0x15, 0x000007C0, 1, PPC_FLOAT),
8814GEN_FLOAT_AB(div, 0x12, 0x000007C0, 1, PPC_FLOAT),
8815GEN_FLOAT_AC(mul, 0x19, 0x0000F800, 1, PPC_FLOAT),
8816GEN_FLOAT_BS(re, 0x3F, 0x18, 1, PPC_FLOAT_EXT),
8817GEN_FLOAT_BS(res, 0x3B, 0x18, 1, PPC_FLOAT_FRES),
8818GEN_FLOAT_BS(rsqrte, 0x3F, 0x1A, 1, PPC_FLOAT_FRSQRTE),
8819_GEN_FLOAT_ACB(sel, sel, 0x3F, 0x17, 0, 0, PPC_FLOAT_FSEL),
8820GEN_FLOAT_AB(sub, 0x14, 0x000007C0, 1, PPC_FLOAT),
8821GEN_FLOAT_ACB(madd, 0x1D, 1, PPC_FLOAT),
8822GEN_FLOAT_ACB(msub, 0x1C, 1, PPC_FLOAT),
8823GEN_FLOAT_ACB(nmadd, 0x1F, 1, PPC_FLOAT),
8824GEN_FLOAT_ACB(nmsub, 0x1E, 1, PPC_FLOAT),
8825GEN_FLOAT_B(ctiw, 0x0E, 0x00, 0, PPC_FLOAT),
8826GEN_FLOAT_B(ctiwz, 0x0F, 0x00, 0, PPC_FLOAT),
8827GEN_FLOAT_B(rsp, 0x0C, 0x00, 1, PPC_FLOAT),
8828#if defined(TARGET_PPC64)
8829GEN_FLOAT_B(cfid, 0x0E, 0x1A, 1, PPC_64B),
8830GEN_FLOAT_B(ctid, 0x0E, 0x19, 0, PPC_64B),
8831GEN_FLOAT_B(ctidz, 0x0F, 0x19, 0, PPC_64B),
8832#endif
8833GEN_FLOAT_B(rin, 0x08, 0x0C, 1, PPC_FLOAT_EXT),
8834GEN_FLOAT_B(riz, 0x08, 0x0D, 1, PPC_FLOAT_EXT),
8835GEN_FLOAT_B(rip, 0x08, 0x0E, 1, PPC_FLOAT_EXT),
8836GEN_FLOAT_B(rim, 0x08, 0x0F, 1, PPC_FLOAT_EXT),
8837GEN_FLOAT_B(abs, 0x08, 0x08, 0, PPC_FLOAT),
8838GEN_FLOAT_B(nabs, 0x08, 0x04, 0, PPC_FLOAT),
8839GEN_FLOAT_B(neg, 0x08, 0x01, 0, PPC_FLOAT),
8840
8841#undef GEN_LD
8842#undef GEN_LDU
8843#undef GEN_LDUX
cd6e9320 8844#undef GEN_LDX_E
5c55ff99
BS
8845#undef GEN_LDS
8846#define GEN_LD(name, ldop, opc, type) \
8847GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8848#define GEN_LDU(name, ldop, opc, type) \
8849GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8850#define GEN_LDUX(name, ldop, opc2, opc3, type) \
8851GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
cd6e9320
TH
8852#define GEN_LDX_E(name, ldop, opc2, opc3, type, type2) \
8853GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
5c55ff99
BS
8854#define GEN_LDS(name, ldop, op, type) \
8855GEN_LD(name, ldop, op | 0x20, type) \
8856GEN_LDU(name, ldop, op | 0x21, type) \
8857GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \
8858GEN_LDX(name, ldop, 0x17, op | 0x00, type)
8859
8860GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER)
8861GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER)
8862GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER)
8863GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER)
8864#if defined(TARGET_PPC64)
8865GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B)
8866GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B)
8867GEN_LDUX(ld, ld64, 0x15, 0x01, PPC_64B)
8868GEN_LDX(ld, ld64, 0x15, 0x00, PPC_64B)
cd6e9320 8869GEN_LDX_E(ldbr, ld64ur, 0x14, 0x10, PPC_NONE, PPC2_DBRX)
5c55ff99
BS
8870#endif
8871GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER)
8872GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER)
8873
8874#undef GEN_ST
8875#undef GEN_STU
8876#undef GEN_STUX
cd6e9320 8877#undef GEN_STX_E
5c55ff99
BS
8878#undef GEN_STS
8879#define GEN_ST(name, stop, opc, type) \
8880GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8881#define GEN_STU(name, stop, opc, type) \
8882GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
8883#define GEN_STUX(name, stop, opc2, opc3, type) \
8884GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
cd6e9320
TH
8885#define GEN_STX_E(name, stop, opc2, opc3, type, type2) \
8886GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
5c55ff99
BS
8887#define GEN_STS(name, stop, op, type) \
8888GEN_ST(name, stop, op | 0x20, type) \
8889GEN_STU(name, stop, op | 0x21, type) \
8890GEN_STUX(name, stop, 0x17, op | 0x01, type) \
8891GEN_STX(name, stop, 0x17, op | 0x00, type)
8892
8893GEN_STS(stb, st8, 0x06, PPC_INTEGER)
8894GEN_STS(sth, st16, 0x0C, PPC_INTEGER)
8895GEN_STS(stw, st32, 0x04, PPC_INTEGER)
8896#if defined(TARGET_PPC64)
8897GEN_STUX(std, st64, 0x15, 0x05, PPC_64B)
8898GEN_STX(std, st64, 0x15, 0x04, PPC_64B)
cd6e9320 8899GEN_STX_E(stdbr, st64r, 0x14, 0x14, PPC_NONE, PPC2_DBRX)
5c55ff99
BS
8900#endif
8901GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER)
8902GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER)
8903
8904#undef GEN_LDF
8905#undef GEN_LDUF
8906#undef GEN_LDUXF
8907#undef GEN_LDXF
8908#undef GEN_LDFS
8909#define GEN_LDF(name, ldop, opc, type) \
8910GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8911#define GEN_LDUF(name, ldop, opc, type) \
8912GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8913#define GEN_LDUXF(name, ldop, opc, type) \
8914GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
8915#define GEN_LDXF(name, ldop, opc2, opc3, type) \
8916GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8917#define GEN_LDFS(name, ldop, op, type) \
8918GEN_LDF(name, ldop, op | 0x20, type) \
8919GEN_LDUF(name, ldop, op | 0x21, type) \
8920GEN_LDUXF(name, ldop, op | 0x01, type) \
8921GEN_LDXF(name, ldop, 0x17, op | 0x00, type)
8922
8923GEN_LDFS(lfd, ld64, 0x12, PPC_FLOAT)
8924GEN_LDFS(lfs, ld32fs, 0x10, PPC_FLOAT)
8925
8926#undef GEN_STF
8927#undef GEN_STUF
8928#undef GEN_STUXF
8929#undef GEN_STXF
8930#undef GEN_STFS
8931#define GEN_STF(name, stop, opc, type) \
8932GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
8933#define GEN_STUF(name, stop, opc, type) \
8934GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
8935#define GEN_STUXF(name, stop, opc, type) \
8936GEN_HANDLER(name##ux, 0x1F, 0x17, opc, 0x00000001, type),
8937#define GEN_STXF(name, stop, opc2, opc3, type) \
8938GEN_HANDLER(name##x, 0x1F, opc2, opc3, 0x00000001, type),
8939#define GEN_STFS(name, stop, op, type) \
8940GEN_STF(name, stop, op | 0x20, type) \
8941GEN_STUF(name, stop, op | 0x21, type) \
8942GEN_STUXF(name, stop, op | 0x01, type) \
8943GEN_STXF(name, stop, 0x17, op | 0x00, type)
8944
8945GEN_STFS(stfd, st64, 0x16, PPC_FLOAT)
8946GEN_STFS(stfs, st32fs, 0x14, PPC_FLOAT)
8947GEN_STXF(stfiw, st32fiw, 0x17, 0x1E, PPC_FLOAT_STFIWX)
8948
8949#undef GEN_CRLOGIC
8950#define GEN_CRLOGIC(name, tcg_op, opc) \
8951GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
8952GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08),
8953GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04),
8954GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09),
8955GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07),
8956GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01),
8957GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E),
8958GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D),
8959GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06),
8960
8961#undef GEN_MAC_HANDLER
8962#define GEN_MAC_HANDLER(name, opc2, opc3) \
8963GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
8964GEN_MAC_HANDLER(macchw, 0x0C, 0x05),
8965GEN_MAC_HANDLER(macchwo, 0x0C, 0x15),
8966GEN_MAC_HANDLER(macchws, 0x0C, 0x07),
8967GEN_MAC_HANDLER(macchwso, 0x0C, 0x17),
8968GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06),
8969GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16),
8970GEN_MAC_HANDLER(macchwu, 0x0C, 0x04),
8971GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14),
8972GEN_MAC_HANDLER(machhw, 0x0C, 0x01),
8973GEN_MAC_HANDLER(machhwo, 0x0C, 0x11),
8974GEN_MAC_HANDLER(machhws, 0x0C, 0x03),
8975GEN_MAC_HANDLER(machhwso, 0x0C, 0x13),
8976GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02),
8977GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12),
8978GEN_MAC_HANDLER(machhwu, 0x0C, 0x00),
8979GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10),
8980GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D),
8981GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D),
8982GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F),
8983GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F),
8984GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C),
8985GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C),
8986GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E),
8987GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E),
8988GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05),
8989GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15),
8990GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07),
8991GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17),
8992GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01),
8993GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11),
8994GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03),
8995GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13),
8996GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D),
8997GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D),
8998GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F),
8999GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F),
9000GEN_MAC_HANDLER(mulchw, 0x08, 0x05),
9001GEN_MAC_HANDLER(mulchwu, 0x08, 0x04),
9002GEN_MAC_HANDLER(mulhhw, 0x08, 0x01),
9003GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00),
9004GEN_MAC_HANDLER(mullhw, 0x08, 0x0D),
9005GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C),
9006
9007#undef GEN_VR_LDX
9008#undef GEN_VR_STX
9009#undef GEN_VR_LVE
9010#undef GEN_VR_STVE
9011#define GEN_VR_LDX(name, opc2, opc3) \
9012GEN_HANDLER(name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9013#define GEN_VR_STX(name, opc2, opc3) \
9014GEN_HANDLER(st##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9015#define GEN_VR_LVE(name, opc2, opc3) \
9016 GEN_HANDLER(lve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9017#define GEN_VR_STVE(name, opc2, opc3) \
9018 GEN_HANDLER(stve##name, 0x1F, opc2, opc3, 0x00000001, PPC_ALTIVEC)
9019GEN_VR_LDX(lvx, 0x07, 0x03),
9020GEN_VR_LDX(lvxl, 0x07, 0x0B),
9021GEN_VR_LVE(bx, 0x07, 0x00),
9022GEN_VR_LVE(hx, 0x07, 0x01),
9023GEN_VR_LVE(wx, 0x07, 0x02),
9024GEN_VR_STX(svx, 0x07, 0x07),
9025GEN_VR_STX(svxl, 0x07, 0x0F),
9026GEN_VR_STVE(bx, 0x07, 0x04),
9027GEN_VR_STVE(hx, 0x07, 0x05),
9028GEN_VR_STVE(wx, 0x07, 0x06),
9029
9030#undef GEN_VX_LOGICAL
9031#define GEN_VX_LOGICAL(name, tcg_op, opc2, opc3) \
9032GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9033GEN_VX_LOGICAL(vand, tcg_gen_and_i64, 2, 16),
9034GEN_VX_LOGICAL(vandc, tcg_gen_andc_i64, 2, 17),
9035GEN_VX_LOGICAL(vor, tcg_gen_or_i64, 2, 18),
9036GEN_VX_LOGICAL(vxor, tcg_gen_xor_i64, 2, 19),
9037GEN_VX_LOGICAL(vnor, tcg_gen_nor_i64, 2, 20),
9038
9039#undef GEN_VXFORM
9040#define GEN_VXFORM(name, opc2, opc3) \
9041GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9042GEN_VXFORM(vaddubm, 0, 0),
9043GEN_VXFORM(vadduhm, 0, 1),
9044GEN_VXFORM(vadduwm, 0, 2),
9045GEN_VXFORM(vsububm, 0, 16),
9046GEN_VXFORM(vsubuhm, 0, 17),
9047GEN_VXFORM(vsubuwm, 0, 18),
9048GEN_VXFORM(vmaxub, 1, 0),
9049GEN_VXFORM(vmaxuh, 1, 1),
9050GEN_VXFORM(vmaxuw, 1, 2),
9051GEN_VXFORM(vmaxsb, 1, 4),
9052GEN_VXFORM(vmaxsh, 1, 5),
9053GEN_VXFORM(vmaxsw, 1, 6),
9054GEN_VXFORM(vminub, 1, 8),
9055GEN_VXFORM(vminuh, 1, 9),
9056GEN_VXFORM(vminuw, 1, 10),
9057GEN_VXFORM(vminsb, 1, 12),
9058GEN_VXFORM(vminsh, 1, 13),
9059GEN_VXFORM(vminsw, 1, 14),
9060GEN_VXFORM(vavgub, 1, 16),
9061GEN_VXFORM(vavguh, 1, 17),
9062GEN_VXFORM(vavguw, 1, 18),
9063GEN_VXFORM(vavgsb, 1, 20),
9064GEN_VXFORM(vavgsh, 1, 21),
9065GEN_VXFORM(vavgsw, 1, 22),
9066GEN_VXFORM(vmrghb, 6, 0),
9067GEN_VXFORM(vmrghh, 6, 1),
9068GEN_VXFORM(vmrghw, 6, 2),
9069GEN_VXFORM(vmrglb, 6, 4),
9070GEN_VXFORM(vmrglh, 6, 5),
9071GEN_VXFORM(vmrglw, 6, 6),
9072GEN_VXFORM(vmuloub, 4, 0),
9073GEN_VXFORM(vmulouh, 4, 1),
9074GEN_VXFORM(vmulosb, 4, 4),
9075GEN_VXFORM(vmulosh, 4, 5),
9076GEN_VXFORM(vmuleub, 4, 8),
9077GEN_VXFORM(vmuleuh, 4, 9),
9078GEN_VXFORM(vmulesb, 4, 12),
9079GEN_VXFORM(vmulesh, 4, 13),
9080GEN_VXFORM(vslb, 2, 4),
9081GEN_VXFORM(vslh, 2, 5),
9082GEN_VXFORM(vslw, 2, 6),
9083GEN_VXFORM(vsrb, 2, 8),
9084GEN_VXFORM(vsrh, 2, 9),
9085GEN_VXFORM(vsrw, 2, 10),
9086GEN_VXFORM(vsrab, 2, 12),
9087GEN_VXFORM(vsrah, 2, 13),
9088GEN_VXFORM(vsraw, 2, 14),
9089GEN_VXFORM(vslo, 6, 16),
9090GEN_VXFORM(vsro, 6, 17),
9091GEN_VXFORM(vaddcuw, 0, 6),
9092GEN_VXFORM(vsubcuw, 0, 22),
9093GEN_VXFORM(vaddubs, 0, 8),
9094GEN_VXFORM(vadduhs, 0, 9),
9095GEN_VXFORM(vadduws, 0, 10),
9096GEN_VXFORM(vaddsbs, 0, 12),
9097GEN_VXFORM(vaddshs, 0, 13),
9098GEN_VXFORM(vaddsws, 0, 14),
9099GEN_VXFORM(vsububs, 0, 24),
9100GEN_VXFORM(vsubuhs, 0, 25),
9101GEN_VXFORM(vsubuws, 0, 26),
9102GEN_VXFORM(vsubsbs, 0, 28),
9103GEN_VXFORM(vsubshs, 0, 29),
9104GEN_VXFORM(vsubsws, 0, 30),
9105GEN_VXFORM(vrlb, 2, 0),
9106GEN_VXFORM(vrlh, 2, 1),
9107GEN_VXFORM(vrlw, 2, 2),
9108GEN_VXFORM(vsl, 2, 7),
9109GEN_VXFORM(vsr, 2, 11),
9110GEN_VXFORM(vpkuhum, 7, 0),
9111GEN_VXFORM(vpkuwum, 7, 1),
9112GEN_VXFORM(vpkuhus, 7, 2),
9113GEN_VXFORM(vpkuwus, 7, 3),
9114GEN_VXFORM(vpkshus, 7, 4),
9115GEN_VXFORM(vpkswus, 7, 5),
9116GEN_VXFORM(vpkshss, 7, 6),
9117GEN_VXFORM(vpkswss, 7, 7),
9118GEN_VXFORM(vpkpx, 7, 12),
9119GEN_VXFORM(vsum4ubs, 4, 24),
9120GEN_VXFORM(vsum4sbs, 4, 28),
9121GEN_VXFORM(vsum4shs, 4, 25),
9122GEN_VXFORM(vsum2sws, 4, 26),
9123GEN_VXFORM(vsumsws, 4, 30),
9124GEN_VXFORM(vaddfp, 5, 0),
9125GEN_VXFORM(vsubfp, 5, 1),
9126GEN_VXFORM(vmaxfp, 5, 16),
9127GEN_VXFORM(vminfp, 5, 17),
9128
9129#undef GEN_VXRFORM1
9130#undef GEN_VXRFORM
9131#define GEN_VXRFORM1(opname, name, str, opc2, opc3) \
9132 GEN_HANDLER2(name, str, 0x4, opc2, opc3, 0x00000000, PPC_ALTIVEC),
9133#define GEN_VXRFORM(name, opc2, opc3) \
9134 GEN_VXRFORM1(name, name, #name, opc2, opc3) \
9135 GEN_VXRFORM1(name##_dot, name##_, #name ".", opc2, (opc3 | (0x1 << 4)))
9136GEN_VXRFORM(vcmpequb, 3, 0)
9137GEN_VXRFORM(vcmpequh, 3, 1)
9138GEN_VXRFORM(vcmpequw, 3, 2)
9139GEN_VXRFORM(vcmpgtsb, 3, 12)
9140GEN_VXRFORM(vcmpgtsh, 3, 13)
9141GEN_VXRFORM(vcmpgtsw, 3, 14)
9142GEN_VXRFORM(vcmpgtub, 3, 8)
9143GEN_VXRFORM(vcmpgtuh, 3, 9)
9144GEN_VXRFORM(vcmpgtuw, 3, 10)
9145GEN_VXRFORM(vcmpeqfp, 3, 3)
9146GEN_VXRFORM(vcmpgefp, 3, 7)
9147GEN_VXRFORM(vcmpgtfp, 3, 11)
9148GEN_VXRFORM(vcmpbfp, 3, 15)
9149
9150#undef GEN_VXFORM_SIMM
9151#define GEN_VXFORM_SIMM(name, opc2, opc3) \
9152 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9153GEN_VXFORM_SIMM(vspltisb, 6, 12),
9154GEN_VXFORM_SIMM(vspltish, 6, 13),
9155GEN_VXFORM_SIMM(vspltisw, 6, 14),
9156
9157#undef GEN_VXFORM_NOA
9158#define GEN_VXFORM_NOA(name, opc2, opc3) \
9159 GEN_HANDLER(name, 0x04, opc2, opc3, 0x001f0000, PPC_ALTIVEC)
9160GEN_VXFORM_NOA(vupkhsb, 7, 8),
9161GEN_VXFORM_NOA(vupkhsh, 7, 9),
9162GEN_VXFORM_NOA(vupklsb, 7, 10),
9163GEN_VXFORM_NOA(vupklsh, 7, 11),
9164GEN_VXFORM_NOA(vupkhpx, 7, 13),
9165GEN_VXFORM_NOA(vupklpx, 7, 15),
9166GEN_VXFORM_NOA(vrefp, 5, 4),
9167GEN_VXFORM_NOA(vrsqrtefp, 5, 5),
0bffbc6c 9168GEN_VXFORM_NOA(vexptefp, 5, 6),
5c55ff99
BS
9169GEN_VXFORM_NOA(vlogefp, 5, 7),
9170GEN_VXFORM_NOA(vrfim, 5, 8),
9171GEN_VXFORM_NOA(vrfin, 5, 9),
9172GEN_VXFORM_NOA(vrfip, 5, 10),
9173GEN_VXFORM_NOA(vrfiz, 5, 11),
9174
9175#undef GEN_VXFORM_UIMM
9176#define GEN_VXFORM_UIMM(name, opc2, opc3) \
9177 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_ALTIVEC)
9178GEN_VXFORM_UIMM(vspltb, 6, 8),
9179GEN_VXFORM_UIMM(vsplth, 6, 9),
9180GEN_VXFORM_UIMM(vspltw, 6, 10),
9181GEN_VXFORM_UIMM(vcfux, 5, 12),
9182GEN_VXFORM_UIMM(vcfsx, 5, 13),
9183GEN_VXFORM_UIMM(vctuxs, 5, 14),
9184GEN_VXFORM_UIMM(vctsxs, 5, 15),
9185
9186#undef GEN_VAFORM_PAIRED
9187#define GEN_VAFORM_PAIRED(name0, name1, opc2) \
9188 GEN_HANDLER(name0##_##name1, 0x04, opc2, 0xFF, 0x00000000, PPC_ALTIVEC)
9189GEN_VAFORM_PAIRED(vmhaddshs, vmhraddshs, 16),
9190GEN_VAFORM_PAIRED(vmsumubm, vmsummbm, 18),
9191GEN_VAFORM_PAIRED(vmsumuhm, vmsumuhs, 19),
9192GEN_VAFORM_PAIRED(vmsumshm, vmsumshs, 20),
9193GEN_VAFORM_PAIRED(vsel, vperm, 21),
9194GEN_VAFORM_PAIRED(vmaddfp, vnmsubfp, 23),
9195
9196#undef GEN_SPE
70560da7
FC
9197#define GEN_SPE(name0, name1, opc2, opc3, inval0, inval1, type) \
9198 GEN_OPCODE_DUAL(name0##_##name1, 0x04, opc2, opc3, inval0, inval1, type, PPC_NONE)
9199GEN_SPE(evaddw, speundef, 0x00, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9200GEN_SPE(evaddiw, speundef, 0x01, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9201GEN_SPE(evsubfw, speundef, 0x02, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9202GEN_SPE(evsubifw, speundef, 0x03, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9203GEN_SPE(evabs, evneg, 0x04, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
9204GEN_SPE(evextsb, evextsh, 0x05, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
9205GEN_SPE(evrndw, evcntlzw, 0x06, 0x08, 0x0000F800, 0x0000F800, PPC_SPE),
9206GEN_SPE(evcntlsw, brinc, 0x07, 0x08, 0x0000F800, 0x00000000, PPC_SPE),
9207GEN_SPE(evmra, speundef, 0x02, 0x13, 0x0000F800, 0xFFFFFFFF, PPC_SPE),
9208GEN_SPE(speundef, evand, 0x08, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE),
9209GEN_SPE(evandc, speundef, 0x09, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9210GEN_SPE(evxor, evor, 0x0B, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9211GEN_SPE(evnor, eveqv, 0x0C, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9212GEN_SPE(evmwumi, evmwsmi, 0x0C, 0x11, 0x00000000, 0x00000000, PPC_SPE),
9213GEN_SPE(evmwumia, evmwsmia, 0x1C, 0x11, 0x00000000, 0x00000000, PPC_SPE),
9214GEN_SPE(evmwumiaa, evmwsmiaa, 0x0C, 0x15, 0x00000000, 0x00000000, PPC_SPE),
9215GEN_SPE(speundef, evorc, 0x0D, 0x08, 0xFFFFFFFF, 0x00000000, PPC_SPE),
9216GEN_SPE(evnand, speundef, 0x0F, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9217GEN_SPE(evsrwu, evsrws, 0x10, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9218GEN_SPE(evsrwiu, evsrwis, 0x11, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9219GEN_SPE(evslw, speundef, 0x12, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9220GEN_SPE(evslwi, speundef, 0x13, 0x08, 0x00000000, 0xFFFFFFFF, PPC_SPE),
9221GEN_SPE(evrlw, evsplati, 0x14, 0x08, 0x00000000, 0x0000F800, PPC_SPE),
9222GEN_SPE(evrlwi, evsplatfi, 0x15, 0x08, 0x00000000, 0x0000F800, PPC_SPE),
9223GEN_SPE(evmergehi, evmergelo, 0x16, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9224GEN_SPE(evmergehilo, evmergelohi, 0x17, 0x08, 0x00000000, 0x00000000, PPC_SPE),
9225GEN_SPE(evcmpgtu, evcmpgts, 0x18, 0x08, 0x00600000, 0x00600000, PPC_SPE),
9226GEN_SPE(evcmpltu, evcmplts, 0x19, 0x08, 0x00600000, 0x00600000, PPC_SPE),
9227GEN_SPE(evcmpeq, speundef, 0x1A, 0x08, 0x00600000, 0xFFFFFFFF, PPC_SPE),
9228
9229GEN_SPE(evfsadd, evfssub, 0x00, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
9230GEN_SPE(evfsabs, evfsnabs, 0x02, 0x0A, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE),
9231GEN_SPE(evfsneg, speundef, 0x03, 0x0A, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE),
9232GEN_SPE(evfsmul, evfsdiv, 0x04, 0x0A, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
9233GEN_SPE(evfscmpgt, evfscmplt, 0x06, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
9234GEN_SPE(evfscmpeq, speundef, 0x07, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9235GEN_SPE(evfscfui, evfscfsi, 0x08, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9236GEN_SPE(evfscfuf, evfscfsf, 0x09, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9237GEN_SPE(evfsctui, evfsctsi, 0x0A, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9238GEN_SPE(evfsctuf, evfsctsf, 0x0B, 0x0A, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9239GEN_SPE(evfsctuiz, speundef, 0x0C, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9240GEN_SPE(evfsctsiz, speundef, 0x0D, 0x0A, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9241GEN_SPE(evfststgt, evfststlt, 0x0E, 0x0A, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
9242GEN_SPE(evfststeq, speundef, 0x0F, 0x0A, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9243
9244GEN_SPE(efsadd, efssub, 0x00, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
9245GEN_SPE(efsabs, efsnabs, 0x02, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_SINGLE),
9246GEN_SPE(efsneg, speundef, 0x03, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_SINGLE),
9247GEN_SPE(efsmul, efsdiv, 0x04, 0x0B, 0x00000000, 0x00000000, PPC_SPE_SINGLE),
9248GEN_SPE(efscmpgt, efscmplt, 0x06, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
9249GEN_SPE(efscmpeq, efscfd, 0x07, 0x0B, 0x00600000, 0x00180000, PPC_SPE_SINGLE),
9250GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9251GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9252GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9253GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_SINGLE),
9254GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9255GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9256GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_SINGLE),
9257GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_SINGLE),
9258
9259GEN_SPE(efdadd, efdsub, 0x10, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE),
9260GEN_SPE(efdcfuid, efdcfsid, 0x11, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9261GEN_SPE(efdabs, efdnabs, 0x12, 0x0B, 0x0000F800, 0x0000F800, PPC_SPE_DOUBLE),
9262GEN_SPE(efdneg, speundef, 0x13, 0x0B, 0x0000F800, 0xFFFFFFFF, PPC_SPE_DOUBLE),
9263GEN_SPE(efdmul, efddiv, 0x14, 0x0B, 0x00000000, 0x00000000, PPC_SPE_DOUBLE),
9264GEN_SPE(efdctuidz, efdctsidz, 0x15, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9265GEN_SPE(efdcmpgt, efdcmplt, 0x16, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE),
9266GEN_SPE(efdcmpeq, efdcfs, 0x17, 0x0B, 0x00600000, 0x00180000, PPC_SPE_DOUBLE),
9267GEN_SPE(efdcfui, efdcfsi, 0x18, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9268GEN_SPE(efdcfuf, efdcfsf, 0x19, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9269GEN_SPE(efdctui, efdctsi, 0x1A, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9270GEN_SPE(efdctuf, efdctsf, 0x1B, 0x0B, 0x00180000, 0x00180000, PPC_SPE_DOUBLE),
9271GEN_SPE(efdctuiz, speundef, 0x1C, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
9272GEN_SPE(efdctsiz, speundef, 0x1D, 0x0B, 0x00180000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
9273GEN_SPE(efdtstgt, efdtstlt, 0x1E, 0x0B, 0x00600000, 0x00600000, PPC_SPE_DOUBLE),
9274GEN_SPE(efdtsteq, speundef, 0x1F, 0x0B, 0x00600000, 0xFFFFFFFF, PPC_SPE_DOUBLE),
5c55ff99
BS
9275
9276#undef GEN_SPEOP_LDST
9277#define GEN_SPEOP_LDST(name, opc2, sh) \
9278GEN_HANDLER(name, 0x04, opc2, 0x0C, 0x00000000, PPC_SPE)
9279GEN_SPEOP_LDST(evldd, 0x00, 3),
9280GEN_SPEOP_LDST(evldw, 0x01, 3),
9281GEN_SPEOP_LDST(evldh, 0x02, 3),
9282GEN_SPEOP_LDST(evlhhesplat, 0x04, 1),
9283GEN_SPEOP_LDST(evlhhousplat, 0x06, 1),
9284GEN_SPEOP_LDST(evlhhossplat, 0x07, 1),
9285GEN_SPEOP_LDST(evlwhe, 0x08, 2),
9286GEN_SPEOP_LDST(evlwhou, 0x0A, 2),
9287GEN_SPEOP_LDST(evlwhos, 0x0B, 2),
9288GEN_SPEOP_LDST(evlwwsplat, 0x0C, 2),
9289GEN_SPEOP_LDST(evlwhsplat, 0x0E, 2),
9290
9291GEN_SPEOP_LDST(evstdd, 0x10, 3),
9292GEN_SPEOP_LDST(evstdw, 0x11, 3),
9293GEN_SPEOP_LDST(evstdh, 0x12, 3),
9294GEN_SPEOP_LDST(evstwhe, 0x18, 2),
9295GEN_SPEOP_LDST(evstwho, 0x1A, 2),
9296GEN_SPEOP_LDST(evstwwe, 0x1C, 2),
9297GEN_SPEOP_LDST(evstwwo, 0x1E, 2),
9298};
9299
0411a972 9300#include "helper_regs.h"
a1389542 9301#include "translate_init.c"
79aceca5 9302
9a64fbe4 9303/*****************************************************************************/
3fc6c082 9304/* Misc PowerPC helpers */
1328c2bf 9305void cpu_dump_state (CPUPPCState *env, FILE *f, fprintf_function cpu_fprintf,
36081602 9306 int flags)
79aceca5 9307{
3fc6c082
FB
9308#define RGPL 4
9309#define RFPL 4
3fc6c082 9310
79aceca5
FB
9311 int i;
9312
29979a8d
AG
9313 cpu_synchronize_state(env);
9314
90e189ec 9315 cpu_fprintf(f, "NIP " TARGET_FMT_lx " LR " TARGET_FMT_lx " CTR "
9a78eead 9316 TARGET_FMT_lx " XER " TARGET_FMT_lx "\n",
da91a00f 9317 env->nip, env->lr, env->ctr, cpu_read_xer(env));
90e189ec
BS
9318 cpu_fprintf(f, "MSR " TARGET_FMT_lx " HID0 " TARGET_FMT_lx " HF "
9319 TARGET_FMT_lx " idx %d\n", env->msr, env->spr[SPR_HID0],
9320 env->hflags, env->mmu_idx);
d9bce9d9 9321#if !defined(NO_TIMER_DUMP)
9a78eead 9322 cpu_fprintf(f, "TB %08" PRIu32 " %08" PRIu64
76a66253 9323#if !defined(CONFIG_USER_ONLY)
9a78eead 9324 " DECR %08" PRIu32
76a66253
JM
9325#endif
9326 "\n",
077fc206 9327 cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
76a66253
JM
9328#if !defined(CONFIG_USER_ONLY)
9329 , cpu_ppc_load_decr(env)
9330#endif
9331 );
077fc206 9332#endif
76a66253 9333 for (i = 0; i < 32; i++) {
3fc6c082
FB
9334 if ((i & (RGPL - 1)) == 0)
9335 cpu_fprintf(f, "GPR%02d", i);
b11ebf64 9336 cpu_fprintf(f, " %016" PRIx64, ppc_dump_gpr(env, i));
3fc6c082 9337 if ((i & (RGPL - 1)) == (RGPL - 1))
7fe48483 9338 cpu_fprintf(f, "\n");
76a66253 9339 }
3fc6c082 9340 cpu_fprintf(f, "CR ");
76a66253 9341 for (i = 0; i < 8; i++)
7fe48483
FB
9342 cpu_fprintf(f, "%01x", env->crf[i]);
9343 cpu_fprintf(f, " [");
76a66253
JM
9344 for (i = 0; i < 8; i++) {
9345 char a = '-';
9346 if (env->crf[i] & 0x08)
9347 a = 'L';
9348 else if (env->crf[i] & 0x04)
9349 a = 'G';
9350 else if (env->crf[i] & 0x02)
9351 a = 'E';
7fe48483 9352 cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
76a66253 9353 }
90e189ec
BS
9354 cpu_fprintf(f, " ] RES " TARGET_FMT_lx "\n",
9355 env->reserve_addr);
3fc6c082
FB
9356 for (i = 0; i < 32; i++) {
9357 if ((i & (RFPL - 1)) == 0)
9358 cpu_fprintf(f, "FPR%02d", i);
26a76461 9359 cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
3fc6c082 9360 if ((i & (RFPL - 1)) == (RFPL - 1))
7fe48483 9361 cpu_fprintf(f, "\n");
79aceca5 9362 }
30304420 9363 cpu_fprintf(f, "FPSCR " TARGET_FMT_lx "\n", env->fpscr);
f2e63a42 9364#if !defined(CONFIG_USER_ONLY)
90dc8812
SW
9365 cpu_fprintf(f, " SRR0 " TARGET_FMT_lx " SRR1 " TARGET_FMT_lx
9366 " PVR " TARGET_FMT_lx " VRSAVE " TARGET_FMT_lx "\n",
9367 env->spr[SPR_SRR0], env->spr[SPR_SRR1],
9368 env->spr[SPR_PVR], env->spr[SPR_VRSAVE]);
9369
9370 cpu_fprintf(f, "SPRG0 " TARGET_FMT_lx " SPRG1 " TARGET_FMT_lx
9371 " SPRG2 " TARGET_FMT_lx " SPRG3 " TARGET_FMT_lx "\n",
9372 env->spr[SPR_SPRG0], env->spr[SPR_SPRG1],
9373 env->spr[SPR_SPRG2], env->spr[SPR_SPRG3]);
9374
9375 cpu_fprintf(f, "SPRG4 " TARGET_FMT_lx " SPRG5 " TARGET_FMT_lx
9376 " SPRG6 " TARGET_FMT_lx " SPRG7 " TARGET_FMT_lx "\n",
9377 env->spr[SPR_SPRG4], env->spr[SPR_SPRG5],
9378 env->spr[SPR_SPRG6], env->spr[SPR_SPRG7]);
9379
9380 if (env->excp_model == POWERPC_EXCP_BOOKE) {
9381 cpu_fprintf(f, "CSRR0 " TARGET_FMT_lx " CSRR1 " TARGET_FMT_lx
9382 " MCSRR0 " TARGET_FMT_lx " MCSRR1 " TARGET_FMT_lx "\n",
9383 env->spr[SPR_BOOKE_CSRR0], env->spr[SPR_BOOKE_CSRR1],
9384 env->spr[SPR_BOOKE_MCSRR0], env->spr[SPR_BOOKE_MCSRR1]);
9385
9386 cpu_fprintf(f, " TCR " TARGET_FMT_lx " TSR " TARGET_FMT_lx
9387 " ESR " TARGET_FMT_lx " DEAR " TARGET_FMT_lx "\n",
9388 env->spr[SPR_BOOKE_TCR], env->spr[SPR_BOOKE_TSR],
9389 env->spr[SPR_BOOKE_ESR], env->spr[SPR_BOOKE_DEAR]);
9390
9391 cpu_fprintf(f, " PIR " TARGET_FMT_lx " DECAR " TARGET_FMT_lx
9392 " IVPR " TARGET_FMT_lx " EPCR " TARGET_FMT_lx "\n",
9393 env->spr[SPR_BOOKE_PIR], env->spr[SPR_BOOKE_DECAR],
9394 env->spr[SPR_BOOKE_IVPR], env->spr[SPR_BOOKE_EPCR]);
9395
9396 cpu_fprintf(f, " MCSR " TARGET_FMT_lx " SPRG8 " TARGET_FMT_lx
9397 " EPR " TARGET_FMT_lx "\n",
9398 env->spr[SPR_BOOKE_MCSR], env->spr[SPR_BOOKE_SPRG8],
9399 env->spr[SPR_BOOKE_EPR]);
9400
9401 /* FSL-specific */
9402 cpu_fprintf(f, " MCAR " TARGET_FMT_lx " PID1 " TARGET_FMT_lx
9403 " PID2 " TARGET_FMT_lx " SVR " TARGET_FMT_lx "\n",
9404 env->spr[SPR_Exxx_MCAR], env->spr[SPR_BOOKE_PID1],
9405 env->spr[SPR_BOOKE_PID2], env->spr[SPR_E500_SVR]);
9406
9407 /*
9408 * IVORs are left out as they are large and do not change often --
9409 * they can be read with "p $ivor0", "p $ivor1", etc.
9410 */
9411 }
9412
697ab892
DG
9413#if defined(TARGET_PPC64)
9414 if (env->flags & POWERPC_FLAG_CFAR) {
9415 cpu_fprintf(f, " CFAR " TARGET_FMT_lx"\n", env->cfar);
9416 }
9417#endif
9418
90dc8812
SW
9419 switch (env->mmu_model) {
9420 case POWERPC_MMU_32B:
9421 case POWERPC_MMU_601:
9422 case POWERPC_MMU_SOFT_6xx:
9423 case POWERPC_MMU_SOFT_74xx:
9424#if defined(TARGET_PPC64)
90dc8812
SW
9425 case POWERPC_MMU_64B:
9426#endif
9427 cpu_fprintf(f, " SDR1 " TARGET_FMT_lx "\n", env->spr[SPR_SDR1]);
9428 break;
01662f3e 9429 case POWERPC_MMU_BOOKE206:
90dc8812
SW
9430 cpu_fprintf(f, " MAS0 " TARGET_FMT_lx " MAS1 " TARGET_FMT_lx
9431 " MAS2 " TARGET_FMT_lx " MAS3 " TARGET_FMT_lx "\n",
9432 env->spr[SPR_BOOKE_MAS0], env->spr[SPR_BOOKE_MAS1],
9433 env->spr[SPR_BOOKE_MAS2], env->spr[SPR_BOOKE_MAS3]);
9434
9435 cpu_fprintf(f, " MAS4 " TARGET_FMT_lx " MAS6 " TARGET_FMT_lx
9436 " MAS7 " TARGET_FMT_lx " PID " TARGET_FMT_lx "\n",
9437 env->spr[SPR_BOOKE_MAS4], env->spr[SPR_BOOKE_MAS6],
9438 env->spr[SPR_BOOKE_MAS7], env->spr[SPR_BOOKE_PID]);
9439
9440 cpu_fprintf(f, "MMUCFG " TARGET_FMT_lx " TLB0CFG " TARGET_FMT_lx
9441 " TLB1CFG " TARGET_FMT_lx "\n",
9442 env->spr[SPR_MMUCFG], env->spr[SPR_BOOKE_TLB0CFG],
9443 env->spr[SPR_BOOKE_TLB1CFG]);
9444 break;
9445 default:
9446 break;
9447 }
f2e63a42 9448#endif
79aceca5 9449
3fc6c082
FB
9450#undef RGPL
9451#undef RFPL
79aceca5
FB
9452}
9453
1328c2bf 9454void cpu_dump_statistics (CPUPPCState *env, FILE*f, fprintf_function cpu_fprintf,
76a66253
JM
9455 int flags)
9456{
9457#if defined(DO_PPC_STATISTICS)
c227f099 9458 opc_handler_t **t1, **t2, **t3, *handler;
76a66253
JM
9459 int op1, op2, op3;
9460
9461 t1 = env->opcodes;
9462 for (op1 = 0; op1 < 64; op1++) {
9463 handler = t1[op1];
9464 if (is_indirect_opcode(handler)) {
9465 t2 = ind_table(handler);
9466 for (op2 = 0; op2 < 32; op2++) {
9467 handler = t2[op2];
9468 if (is_indirect_opcode(handler)) {
9469 t3 = ind_table(handler);
9470 for (op3 = 0; op3 < 32; op3++) {
9471 handler = t3[op3];
9472 if (handler->count == 0)
9473 continue;
9474 cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
0bfcd599 9475 "%016" PRIx64 " %" PRId64 "\n",
76a66253
JM
9476 op1, op2, op3, op1, (op3 << 5) | op2,
9477 handler->oname,
9478 handler->count, handler->count);
9479 }
9480 } else {
9481 if (handler->count == 0)
9482 continue;
9483 cpu_fprintf(f, "%02x %02x (%02x %04d) %16s: "
0bfcd599 9484 "%016" PRIx64 " %" PRId64 "\n",
76a66253
JM
9485 op1, op2, op1, op2, handler->oname,
9486 handler->count, handler->count);
9487 }
9488 }
9489 } else {
9490 if (handler->count == 0)
9491 continue;
0bfcd599
BS
9492 cpu_fprintf(f, "%02x (%02x ) %16s: %016" PRIx64
9493 " %" PRId64 "\n",
76a66253
JM
9494 op1, op1, handler->oname,
9495 handler->count, handler->count);
9496 }
9497 }
9498#endif
9499}
9500
9a64fbe4 9501/*****************************************************************************/
1328c2bf 9502static inline void gen_intermediate_code_internal(CPUPPCState *env,
636aa200
BS
9503 TranslationBlock *tb,
9504 int search_pc)
79aceca5 9505{
9fddaa0c 9506 DisasContext ctx, *ctxp = &ctx;
c227f099 9507 opc_handler_t **table, *handler;
0fa85d43 9508 target_ulong pc_start;
79aceca5 9509 uint16_t *gen_opc_end;
a1d1bb31 9510 CPUBreakpoint *bp;
79aceca5 9511 int j, lj = -1;
2e70f6ef
PB
9512 int num_insns;
9513 int max_insns;
79aceca5
FB
9514
9515 pc_start = tb->pc;
92414b31 9516 gen_opc_end = tcg_ctx.gen_opc_buf + OPC_MAX_SIZE;
046d6672 9517 ctx.nip = pc_start;
79aceca5 9518 ctx.tb = tb;
e1833e1f 9519 ctx.exception = POWERPC_EXCP_NONE;
3fc6c082 9520 ctx.spr_cb = env->spr_cb;
76db3ba4
AJ
9521 ctx.mem_idx = env->mmu_idx;
9522 ctx.access_type = -1;
9523 ctx.le_mode = env->hflags & (1 << MSR_LE) ? 1 : 0;
d9bce9d9 9524#if defined(TARGET_PPC64)
e42a61f1 9525 ctx.sf_mode = msr_is_64bit(env, env->msr);
697ab892 9526 ctx.has_cfar = !!(env->flags & POWERPC_FLAG_CFAR);
9a64fbe4 9527#endif
3cc62370 9528 ctx.fpu_enabled = msr_fp;
a9d9eb8f 9529 if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
d26bfc9a
JM
9530 ctx.spe_enabled = msr_spe;
9531 else
9532 ctx.spe_enabled = 0;
a9d9eb8f
JM
9533 if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
9534 ctx.altivec_enabled = msr_vr;
9535 else
9536 ctx.altivec_enabled = 0;
d26bfc9a 9537 if ((env->flags & POWERPC_FLAG_SE) && msr_se)
8cbcb4fa 9538 ctx.singlestep_enabled = CPU_SINGLE_STEP;
d26bfc9a 9539 else
8cbcb4fa 9540 ctx.singlestep_enabled = 0;
d26bfc9a 9541 if ((env->flags & POWERPC_FLAG_BE) && msr_be)
8cbcb4fa
AJ
9542 ctx.singlestep_enabled |= CPU_BRANCH_STEP;
9543 if (unlikely(env->singlestep_enabled))
9544 ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP;
3fc6c082 9545#if defined (DO_SINGLE_STEP) && 0
9a64fbe4
FB
9546 /* Single step trace mode */
9547 msr_se = 1;
9548#endif
2e70f6ef
PB
9549 num_insns = 0;
9550 max_insns = tb->cflags & CF_COUNT_MASK;
9551 if (max_insns == 0)
9552 max_insns = CF_COUNT_MASK;
9553
806f352d 9554 gen_tb_start();
9a64fbe4 9555 /* Set env in case of segfault during code fetch */
efd7f486
EV
9556 while (ctx.exception == POWERPC_EXCP_NONE
9557 && tcg_ctx.gen_opc_ptr < gen_opc_end) {
72cf2d4f
BS
9558 if (unlikely(!QTAILQ_EMPTY(&env->breakpoints))) {
9559 QTAILQ_FOREACH(bp, &env->breakpoints, entry) {
a1d1bb31 9560 if (bp->pc == ctx.nip) {
e06fcd75 9561 gen_debug_exception(ctxp);
ea4e754f
FB
9562 break;
9563 }
9564 }
9565 }
76a66253 9566 if (unlikely(search_pc)) {
92414b31 9567 j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
79aceca5
FB
9568 if (lj < j) {
9569 lj++;
9570 while (lj < j)
ab1103de 9571 tcg_ctx.gen_opc_instr_start[lj++] = 0;
79aceca5 9572 }
25983cad 9573 tcg_ctx.gen_opc_pc[lj] = ctx.nip;
ab1103de 9574 tcg_ctx.gen_opc_instr_start[lj] = 1;
c9c99c22 9575 tcg_ctx.gen_opc_icount[lj] = num_insns;
79aceca5 9576 }
d12d51d5 9577 LOG_DISAS("----------------\n");
90e189ec 9578 LOG_DISAS("nip=" TARGET_FMT_lx " super=%d ir=%d\n",
d12d51d5 9579 ctx.nip, ctx.mem_idx, (int)msr_ir);
2e70f6ef
PB
9580 if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
9581 gen_io_start();
76db3ba4 9582 if (unlikely(ctx.le_mode)) {
2f5a189c 9583 ctx.opcode = bswap32(cpu_ldl_code(env, ctx.nip));
056401ea 9584 } else {
2f5a189c 9585 ctx.opcode = cpu_ldl_code(env, ctx.nip);
111bfab3 9586 }
d12d51d5 9587 LOG_DISAS("translate opcode %08x (%02x %02x %02x) (%s)\n",
9a64fbe4 9588 ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
476b6d16 9589 opc3(ctx.opcode), ctx.le_mode ? "little" : "big");
fdefe51c 9590 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) {
731c54f8 9591 tcg_gen_debug_insn_start(ctx.nip);
fdefe51c 9592 }
046d6672 9593 ctx.nip += 4;
3fc6c082 9594 table = env->opcodes;
2e70f6ef 9595 num_insns++;
79aceca5
FB
9596 handler = table[opc1(ctx.opcode)];
9597 if (is_indirect_opcode(handler)) {
9598 table = ind_table(handler);
9599 handler = table[opc2(ctx.opcode)];
9600 if (is_indirect_opcode(handler)) {
9601 table = ind_table(handler);
9602 handler = table[opc3(ctx.opcode)];
9603 }
9604 }
9605 /* Is opcode *REALLY* valid ? */
76a66253 9606 if (unlikely(handler->handler == &gen_invalid)) {
93fcfe39
AL
9607 if (qemu_log_enabled()) {
9608 qemu_log("invalid/unsupported opcode: "
90e189ec
BS
9609 "%02x - %02x - %02x (%08x) " TARGET_FMT_lx " %d\n",
9610 opc1(ctx.opcode), opc2(ctx.opcode),
9611 opc3(ctx.opcode), ctx.opcode, ctx.nip - 4, (int)msr_ir);
4b3686fa 9612 }
76a66253 9613 } else {
70560da7
FC
9614 uint32_t inval;
9615
9616 if (unlikely(handler->type & (PPC_SPE | PPC_SPE_SINGLE | PPC_SPE_DOUBLE) && Rc(ctx.opcode))) {
9617 inval = handler->inval2;
9618 } else {
9619 inval = handler->inval1;
9620 }
9621
9622 if (unlikely((ctx.opcode & inval) != 0)) {
93fcfe39
AL
9623 if (qemu_log_enabled()) {
9624 qemu_log("invalid bits: %08x for opcode: "
90e189ec 9625 "%02x - %02x - %02x (%08x) " TARGET_FMT_lx "\n",
70560da7 9626 ctx.opcode & inval, opc1(ctx.opcode),
90e189ec
BS
9627 opc2(ctx.opcode), opc3(ctx.opcode),
9628 ctx.opcode, ctx.nip - 4);
76a66253 9629 }
e06fcd75 9630 gen_inval_exception(ctxp, POWERPC_EXCP_INVAL_INVAL);
4b3686fa 9631 break;
79aceca5 9632 }
79aceca5 9633 }
4b3686fa 9634 (*(handler->handler))(&ctx);
76a66253
JM
9635#if defined(DO_PPC_STATISTICS)
9636 handler->count++;
9637#endif
9a64fbe4 9638 /* Check trace mode exceptions */
8cbcb4fa
AJ
9639 if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP &&
9640 (ctx.nip <= 0x100 || ctx.nip > 0xF00) &&
9641 ctx.exception != POWERPC_SYSCALL &&
9642 ctx.exception != POWERPC_EXCP_TRAP &&
9643 ctx.exception != POWERPC_EXCP_BRANCH)) {
e06fcd75 9644 gen_exception(ctxp, POWERPC_EXCP_TRACE);
d26bfc9a 9645 } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
2e70f6ef 9646 (env->singlestep_enabled) ||
1b530a6d 9647 singlestep ||
2e70f6ef 9648 num_insns >= max_insns)) {
d26bfc9a
JM
9649 /* if we reach a page boundary or are single stepping, stop
9650 * generation
9651 */
8dd4983c 9652 break;
76a66253 9653 }
3fc6c082 9654 }
2e70f6ef
PB
9655 if (tb->cflags & CF_LAST_IO)
9656 gen_io_end();
e1833e1f 9657 if (ctx.exception == POWERPC_EXCP_NONE) {
c1942362 9658 gen_goto_tb(&ctx, 0, ctx.nip);
e1833e1f 9659 } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
8cbcb4fa 9660 if (unlikely(env->singlestep_enabled)) {
e06fcd75 9661 gen_debug_exception(ctxp);
8cbcb4fa 9662 }
76a66253 9663 /* Generate the return instruction */
57fec1fe 9664 tcg_gen_exit_tb(0);
9a64fbe4 9665 }
806f352d 9666 gen_tb_end(tb, num_insns);
efd7f486 9667 *tcg_ctx.gen_opc_ptr = INDEX_op_end;
76a66253 9668 if (unlikely(search_pc)) {
92414b31 9669 j = tcg_ctx.gen_opc_ptr - tcg_ctx.gen_opc_buf;
9a64fbe4
FB
9670 lj++;
9671 while (lj <= j)
ab1103de 9672 tcg_ctx.gen_opc_instr_start[lj++] = 0;
9a64fbe4 9673 } else {
046d6672 9674 tb->size = ctx.nip - pc_start;
2e70f6ef 9675 tb->icount = num_insns;
9a64fbe4 9676 }
d9bce9d9 9677#if defined(DEBUG_DISAS)
8fec2b8c 9678 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
76a66253 9679 int flags;
237c0af0 9680 flags = env->bfd_mach;
76db3ba4 9681 flags |= ctx.le_mode << 16;
93fcfe39 9682 qemu_log("IN: %s\n", lookup_symbol(pc_start));
f4359b9f 9683 log_target_disas(env, pc_start, ctx.nip - pc_start, flags);
93fcfe39 9684 qemu_log("\n");
9fddaa0c 9685 }
79aceca5 9686#endif
79aceca5
FB
9687}
9688
1328c2bf 9689void gen_intermediate_code (CPUPPCState *env, struct TranslationBlock *tb)
79aceca5 9690{
2cfc5f17 9691 gen_intermediate_code_internal(env, tb, 0);
79aceca5
FB
9692}
9693
1328c2bf 9694void gen_intermediate_code_pc (CPUPPCState *env, struct TranslationBlock *tb)
79aceca5 9695{
2cfc5f17 9696 gen_intermediate_code_internal(env, tb, 1);
79aceca5 9697}
d2856f1a 9698
1328c2bf 9699void restore_state_to_opc(CPUPPCState *env, TranslationBlock *tb, int pc_pos)
d2856f1a 9700{
25983cad 9701 env->nip = tcg_ctx.gen_opc_pc[pc_pos];
d2856f1a 9702}
This page took 2.506577 seconds and 4 git commands to generate.