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