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