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