]> git.ipfire.org Git - thirdparty/qemu.git/blame - target/ppc/translate.c
target-ppc: add slbsync implementation
[thirdparty/qemu.git] / target / ppc / translate.c
CommitLineData
79aceca5 1/*
3fc6c082 2 * PowerPC emulation for qemu: main translation routines.
5fafdf24 3 *
76a66253 4 * Copyright (c) 2003-2007 Jocelyn Mayer
90dc8812 5 * Copyright (C) 2011 Freescale Semiconductor, Inc.
79aceca5
FB
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
8167ee88 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
79aceca5 19 */
c6a1c22b 20
0d75590d 21#include "qemu/osdep.h"
79aceca5 22#include "cpu.h"
3e00884f 23#include "internal.h"
76cad711 24#include "disas/disas.h"
63c91552 25#include "exec/exec-all.h"
57fec1fe 26#include "tcg-op.h"
1de7afc9 27#include "qemu/host-utils.h"
f08b6170 28#include "exec/cpu_ldst.h"
79aceca5 29
2ef6175a
RH
30#include "exec/helper-proto.h"
31#include "exec/helper-gen.h"
a7812ae4 32
a7e30d84 33#include "trace-tcg.h"
508127e2 34#include "exec/log.h"
a7e30d84
LV
35
36
8cbcb4fa
AJ
37#define CPU_SINGLE_STEP 0x1
38#define CPU_BRANCH_STEP 0x2
39#define GDBSTUB_SINGLE_STEP 0x4
40
a750fc0b 41/* Include definitions for instructions classes and implementations flags */
9fddaa0c 42//#define PPC_DEBUG_DISAS
76a66253 43//#define DO_PPC_STATISTICS
79aceca5 44
d12d51d5 45#ifdef PPC_DEBUG_DISAS
93fcfe39 46# define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
d12d51d5
AL
47#else
48# define LOG_DISAS(...) do { } while (0)
49#endif
a750fc0b
JM
50/*****************************************************************************/
51/* Code translation helpers */
c53be334 52
f78fb44e 53/* global register indexes */
1bcea73e 54static TCGv_env cpu_env;
1d542695 55static char cpu_reg_names[10*3 + 22*4 /* GPR */
1d542695 56 + 10*4 + 22*5 /* SPE GPRh */
a5e26afa 57 + 10*4 + 22*5 /* FPR */
47e4661c 58 + 2*(10*6 + 22*7) /* AVRh, AVRl */
472b24ce 59 + 10*5 + 22*6 /* VSR */
47e4661c 60 + 8*5 /* CRF */];
f78fb44e 61static TCGv cpu_gpr[32];
f78fb44e 62static TCGv cpu_gprh[32];
a7812ae4
PB
63static TCGv_i64 cpu_fpr[32];
64static TCGv_i64 cpu_avrh[32], cpu_avrl[32];
472b24ce 65static TCGv_i64 cpu_vsr[32];
a7812ae4 66static TCGv_i32 cpu_crf[8];
bd568f18 67static TCGv cpu_nip;
6527f6ea 68static TCGv cpu_msr;
cfdcd37a
AJ
69static TCGv cpu_ctr;
70static TCGv cpu_lr;
697ab892
DG
71#if defined(TARGET_PPC64)
72static TCGv cpu_cfar;
73#endif
da91a00f 74static TCGv cpu_xer, cpu_so, cpu_ov, cpu_ca;
cf360a32 75static TCGv cpu_reserve;
30304420 76static TCGv cpu_fpscr;
a7859e89 77static TCGv_i32 cpu_access_type;
f78fb44e 78
022c62cb 79#include "exec/gen-icount.h"
2e70f6ef
PB
80
81void ppc_translate_init(void)
82{
f78fb44e
AJ
83 int i;
84 char* p;
2dc766da 85 size_t cpu_reg_names_size;
b2437bf2 86 static int done_init = 0;
f78fb44e 87
2e70f6ef
PB
88 if (done_init)
89 return;
f78fb44e 90
a7812ae4 91 cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
7c255043 92 tcg_ctx.tcg_env = cpu_env;
a7812ae4 93
f78fb44e 94 p = cpu_reg_names;
2dc766da 95 cpu_reg_names_size = sizeof(cpu_reg_names);
47e4661c
AJ
96
97 for (i = 0; i < 8; i++) {
2dc766da 98 snprintf(p, cpu_reg_names_size, "crf%d", i);
e1ccc054 99 cpu_crf[i] = tcg_global_mem_new_i32(cpu_env,
1328c2bf 100 offsetof(CPUPPCState, crf[i]), p);
47e4661c 101 p += 5;
2dc766da 102 cpu_reg_names_size -= 5;
47e4661c
AJ
103 }
104
f78fb44e 105 for (i = 0; i < 32; i++) {
2dc766da 106 snprintf(p, cpu_reg_names_size, "r%d", i);
e1ccc054 107 cpu_gpr[i] = tcg_global_mem_new(cpu_env,
1328c2bf 108 offsetof(CPUPPCState, gpr[i]), p);
f78fb44e 109 p += (i < 10) ? 3 : 4;
2dc766da 110 cpu_reg_names_size -= (i < 10) ? 3 : 4;
2dc766da 111 snprintf(p, cpu_reg_names_size, "r%dH", i);
e1ccc054 112 cpu_gprh[i] = tcg_global_mem_new(cpu_env,
13b6a455 113 offsetof(CPUPPCState, gprh[i]), p);
f78fb44e 114 p += (i < 10) ? 4 : 5;
2dc766da 115 cpu_reg_names_size -= (i < 10) ? 4 : 5;
1d542695 116
2dc766da 117 snprintf(p, cpu_reg_names_size, "fp%d", i);
e1ccc054 118 cpu_fpr[i] = tcg_global_mem_new_i64(cpu_env,
1328c2bf 119 offsetof(CPUPPCState, fpr[i]), p);
ec1ac72d 120 p += (i < 10) ? 4 : 5;
2dc766da 121 cpu_reg_names_size -= (i < 10) ? 4 : 5;
a5e26afa 122
2dc766da 123 snprintf(p, cpu_reg_names_size, "avr%dH", i);
e2542fe2 124#ifdef HOST_WORDS_BIGENDIAN
e1ccc054 125 cpu_avrh[i] = tcg_global_mem_new_i64(cpu_env,
1328c2bf 126 offsetof(CPUPPCState, avr[i].u64[0]), p);
fe1e5c53 127#else
e1ccc054 128 cpu_avrh[i] = tcg_global_mem_new_i64(cpu_env,
1328c2bf 129 offsetof(CPUPPCState, avr[i].u64[1]), p);
fe1e5c53 130#endif
1d542695 131 p += (i < 10) ? 6 : 7;
2dc766da 132 cpu_reg_names_size -= (i < 10) ? 6 : 7;
ec1ac72d 133
2dc766da 134 snprintf(p, cpu_reg_names_size, "avr%dL", i);
e2542fe2 135#ifdef HOST_WORDS_BIGENDIAN
e1ccc054 136 cpu_avrl[i] = tcg_global_mem_new_i64(cpu_env,
1328c2bf 137 offsetof(CPUPPCState, avr[i].u64[1]), p);
fe1e5c53 138#else
e1ccc054 139 cpu_avrl[i] = tcg_global_mem_new_i64(cpu_env,
1328c2bf 140 offsetof(CPUPPCState, avr[i].u64[0]), p);
fe1e5c53 141#endif
1d542695 142 p += (i < 10) ? 6 : 7;
2dc766da 143 cpu_reg_names_size -= (i < 10) ? 6 : 7;
472b24ce 144 snprintf(p, cpu_reg_names_size, "vsr%d", i);
e1ccc054
RH
145 cpu_vsr[i] = tcg_global_mem_new_i64(cpu_env,
146 offsetof(CPUPPCState, vsr[i]), p);
472b24ce
TM
147 p += (i < 10) ? 5 : 6;
148 cpu_reg_names_size -= (i < 10) ? 5 : 6;
f78fb44e 149 }
f10dc08e 150
e1ccc054 151 cpu_nip = tcg_global_mem_new(cpu_env,
1328c2bf 152 offsetof(CPUPPCState, nip), "nip");
bd568f18 153
e1ccc054 154 cpu_msr = tcg_global_mem_new(cpu_env,
1328c2bf 155 offsetof(CPUPPCState, msr), "msr");
6527f6ea 156
e1ccc054 157 cpu_ctr = tcg_global_mem_new(cpu_env,
1328c2bf 158 offsetof(CPUPPCState, ctr), "ctr");
cfdcd37a 159
e1ccc054 160 cpu_lr = tcg_global_mem_new(cpu_env,
1328c2bf 161 offsetof(CPUPPCState, lr), "lr");
cfdcd37a 162
697ab892 163#if defined(TARGET_PPC64)
e1ccc054 164 cpu_cfar = tcg_global_mem_new(cpu_env,
1328c2bf 165 offsetof(CPUPPCState, cfar), "cfar");
697ab892
DG
166#endif
167
e1ccc054 168 cpu_xer = tcg_global_mem_new(cpu_env,
1328c2bf 169 offsetof(CPUPPCState, xer), "xer");
e1ccc054 170 cpu_so = tcg_global_mem_new(cpu_env,
da91a00f 171 offsetof(CPUPPCState, so), "SO");
e1ccc054 172 cpu_ov = tcg_global_mem_new(cpu_env,
da91a00f 173 offsetof(CPUPPCState, ov), "OV");
e1ccc054 174 cpu_ca = tcg_global_mem_new(cpu_env,
da91a00f 175 offsetof(CPUPPCState, ca), "CA");
3d7b417e 176
e1ccc054 177 cpu_reserve = tcg_global_mem_new(cpu_env,
1328c2bf 178 offsetof(CPUPPCState, reserve_addr),
18b21a2f 179 "reserve_addr");
cf360a32 180
e1ccc054 181 cpu_fpscr = tcg_global_mem_new(cpu_env,
30304420 182 offsetof(CPUPPCState, fpscr), "fpscr");
e1571908 183
e1ccc054 184 cpu_access_type = tcg_global_mem_new_i32(cpu_env,
1328c2bf 185 offsetof(CPUPPCState, access_type), "access_type");
a7859e89 186
2e70f6ef
PB
187 done_init = 1;
188}
189
79aceca5 190/* internal defines */
69b058c8 191struct DisasContext {
79aceca5 192 struct TranslationBlock *tb;
0fa85d43 193 target_ulong nip;
79aceca5 194 uint32_t opcode;
9a64fbe4 195 uint32_t exception;
3cc62370 196 /* Routine used to access memory */
5c3ae929 197 bool pr, hv, dr, le_mode;
c5a8d8f3 198 bool lazy_tlb_flush;
5f2a6254 199 bool need_access_type;
3cc62370 200 int mem_idx;
76db3ba4 201 int access_type;
3cc62370 202 /* Translation flags */
e22c357b 203 TCGMemOp default_tcg_memop_mask;
d9bce9d9 204#if defined(TARGET_PPC64)
5c3ae929
BH
205 bool sf_mode;
206 bool has_cfar;
9a64fbe4 207#endif
5c3ae929
BH
208 bool fpu_enabled;
209 bool altivec_enabled;
210 bool vsx_enabled;
211 bool spe_enabled;
212 bool tm_enabled;
c227f099 213 ppc_spr_t *spr_cb; /* Needed to check rights for mfspr/mtspr */
ea4e754f 214 int singlestep_enabled;
7d08d856
AJ
215 uint64_t insns_flags;
216 uint64_t insns_flags2;
69b058c8 217};
79aceca5 218
e22c357b
DK
219/* Return true iff byteswap is needed in a scalar memop */
220static inline bool need_byteswap(const DisasContext *ctx)
221{
222#if defined(TARGET_WORDS_BIGENDIAN)
223 return ctx->le_mode;
224#else
225 return !ctx->le_mode;
226#endif
227}
228
79482e5a
RH
229/* True when active word size < size of target_long. */
230#ifdef TARGET_PPC64
231# define NARROW_MODE(C) (!(C)->sf_mode)
232#else
233# define NARROW_MODE(C) 0
234#endif
235
c227f099 236struct opc_handler_t {
70560da7
FC
237 /* invalid bits for instruction 1 (Rc(opcode) == 0) */
238 uint32_t inval1;
239 /* invalid bits for instruction 2 (Rc(opcode) == 1) */
240 uint32_t inval2;
9a64fbe4 241 /* instruction type */
0487d6a8 242 uint64_t type;
a5858d7a
AG
243 /* extended instruction type */
244 uint64_t type2;
79aceca5
FB
245 /* handler */
246 void (*handler)(DisasContext *ctx);
a750fc0b 247#if defined(DO_PPC_STATISTICS) || defined(PPC_DUMP_CPU)
b55266b5 248 const char *oname;
a750fc0b
JM
249#endif
250#if defined(DO_PPC_STATISTICS)
76a66253
JM
251 uint64_t count;
252#endif
3fc6c082 253};
79aceca5 254
636aa200 255static inline void gen_set_access_type(DisasContext *ctx, int access_type)
a7859e89 256{
5f2a6254 257 if (ctx->need_access_type && ctx->access_type != access_type) {
76db3ba4
AJ
258 tcg_gen_movi_i32(cpu_access_type, access_type);
259 ctx->access_type = access_type;
260 }
a7859e89
AJ
261}
262
636aa200 263static inline void gen_update_nip(DisasContext *ctx, target_ulong nip)
d9bce9d9 264{
e0c8f9ce
RH
265 if (NARROW_MODE(ctx)) {
266 nip = (uint32_t)nip;
267 }
268 tcg_gen_movi_tl(cpu_nip, nip);
d9bce9d9
JM
269}
270
b9971cc5 271static void gen_exception_err(DisasContext *ctx, uint32_t excp, uint32_t error)
e06fcd75
AJ
272{
273 TCGv_i32 t0, t1;
bd6fefe7
BH
274
275 /* These are all synchronous exceptions, we set the PC back to
276 * the faulting instruction
277 */
e06fcd75 278 if (ctx->exception == POWERPC_EXCP_NONE) {
bd6fefe7 279 gen_update_nip(ctx, ctx->nip - 4);
e06fcd75
AJ
280 }
281 t0 = tcg_const_i32(excp);
282 t1 = tcg_const_i32(error);
e5f17ac6 283 gen_helper_raise_exception_err(cpu_env, t0, t1);
e06fcd75
AJ
284 tcg_temp_free_i32(t0);
285 tcg_temp_free_i32(t1);
286 ctx->exception = (excp);
287}
e1833e1f 288
b9971cc5 289static void gen_exception(DisasContext *ctx, uint32_t excp)
e06fcd75
AJ
290{
291 TCGv_i32 t0;
bd6fefe7
BH
292
293 /* These are all synchronous exceptions, we set the PC back to
294 * the faulting instruction
295 */
e06fcd75 296 if (ctx->exception == POWERPC_EXCP_NONE) {
bd6fefe7 297 gen_update_nip(ctx, ctx->nip - 4);
e06fcd75
AJ
298 }
299 t0 = tcg_const_i32(excp);
e5f17ac6 300 gen_helper_raise_exception(cpu_env, t0);
e06fcd75
AJ
301 tcg_temp_free_i32(t0);
302 ctx->exception = (excp);
303}
e1833e1f 304
bd6fefe7
BH
305static void gen_exception_nip(DisasContext *ctx, uint32_t excp,
306 target_ulong nip)
307{
308 TCGv_i32 t0;
309
310 gen_update_nip(ctx, nip);
311 t0 = tcg_const_i32(excp);
312 gen_helper_raise_exception(cpu_env, t0);
313 tcg_temp_free_i32(t0);
314 ctx->exception = (excp);
315}
316
b9971cc5 317static void gen_debug_exception(DisasContext *ctx)
e06fcd75
AJ
318{
319 TCGv_i32 t0;
5518f3a6 320
bd6fefe7
BH
321 /* These are all synchronous exceptions, we set the PC back to
322 * the faulting instruction
323 */
ee2b3994
SB
324 if ((ctx->exception != POWERPC_EXCP_BRANCH) &&
325 (ctx->exception != POWERPC_EXCP_SYNC)) {
1f0e657d 326 gen_update_nip(ctx, ctx->nip);
ee2b3994 327 }
e06fcd75 328 t0 = tcg_const_i32(EXCP_DEBUG);
e5f17ac6 329 gen_helper_raise_exception(cpu_env, t0);
e06fcd75
AJ
330 tcg_temp_free_i32(t0);
331}
9a64fbe4 332
636aa200 333static inline void gen_inval_exception(DisasContext *ctx, uint32_t error)
e06fcd75 334{
9b2fadda
BH
335 /* Will be converted to program check if needed */
336 gen_exception_err(ctx, POWERPC_EXCP_HV_EMU, POWERPC_EXCP_INVAL | error);
337}
338
339static inline void gen_priv_exception(DisasContext *ctx, uint32_t error)
340{
341 gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_PRIV | error);
342}
343
344static inline void gen_hvpriv_exception(DisasContext *ctx, uint32_t error)
345{
346 /* Will be converted to program check if needed */
347 gen_exception_err(ctx, POWERPC_EXCP_HV_EMU, POWERPC_EXCP_PRIV | error);
e06fcd75 348}
a9d9eb8f 349
f24e5695 350/* Stop translation */
636aa200 351static inline void gen_stop_exception(DisasContext *ctx)
3fc6c082 352{
d9bce9d9 353 gen_update_nip(ctx, ctx->nip);
e1833e1f 354 ctx->exception = POWERPC_EXCP_STOP;
3fc6c082
FB
355}
356
466976d9 357#ifndef CONFIG_USER_ONLY
f24e5695 358/* No need to update nip here, as execution flow will change */
636aa200 359static inline void gen_sync_exception(DisasContext *ctx)
2be0071f 360{
e1833e1f 361 ctx->exception = POWERPC_EXCP_SYNC;
2be0071f 362}
466976d9 363#endif
2be0071f 364
79aceca5 365#define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
a5858d7a
AG
366GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
367
368#define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \
369GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
79aceca5 370
c7697e1f 371#define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
a5858d7a
AG
372GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
373
374#define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \
375GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
c7697e1f 376
323ad19b
ND
377#define GEN_HANDLER_E_2(name, opc1, opc2, opc3, opc4, inval, type, type2) \
378GEN_OPCODE3(name, opc1, opc2, opc3, opc4, inval, type, type2)
379
14fd8ab2
ND
380#define GEN_HANDLER2_E_2(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2) \
381GEN_OPCODE4(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2)
382
c227f099 383typedef struct opcode_t {
323ad19b 384 unsigned char opc1, opc2, opc3, opc4;
1235fc06 385#if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
323ad19b 386 unsigned char pad[4];
18fba28c 387#endif
c227f099 388 opc_handler_t handler;
b55266b5 389 const char *oname;
c227f099 390} opcode_t;
79aceca5 391
9b2fadda
BH
392/* Helpers for priv. check */
393#define GEN_PRIV \
394 do { \
395 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; \
396 } while (0)
397
398#if defined(CONFIG_USER_ONLY)
399#define CHK_HV GEN_PRIV
400#define CHK_SV GEN_PRIV
b7815375 401#define CHK_HVRM GEN_PRIV
9b2fadda
BH
402#else
403#define CHK_HV \
404 do { \
405 if (unlikely(ctx->pr || !ctx->hv)) { \
406 GEN_PRIV; \
407 } \
408 } while (0)
409#define CHK_SV \
410 do { \
411 if (unlikely(ctx->pr)) { \
412 GEN_PRIV; \
413 } \
414 } while (0)
b7815375
BH
415#define CHK_HVRM \
416 do { \
417 if (unlikely(ctx->pr || !ctx->hv || ctx->dr)) { \
418 GEN_PRIV; \
419 } \
420 } while (0)
9b2fadda
BH
421#endif
422
423#define CHK_NONE
424
a750fc0b 425/*****************************************************************************/
a750fc0b 426/* PowerPC instructions table */
933dc6eb 427
76a66253 428#if defined(DO_PPC_STATISTICS)
a5858d7a 429#define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 430{ \
79aceca5
FB
431 .opc1 = op1, \
432 .opc2 = op2, \
433 .opc3 = op3, \
323ad19b 434 .opc4 = 0xff, \
79aceca5 435 .handler = { \
70560da7
FC
436 .inval1 = invl, \
437 .type = _typ, \
438 .type2 = _typ2, \
439 .handler = &gen_##name, \
440 .oname = stringify(name), \
441 }, \
442 .oname = stringify(name), \
443}
444#define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
445{ \
446 .opc1 = op1, \
447 .opc2 = op2, \
448 .opc3 = op3, \
323ad19b 449 .opc4 = 0xff, \
70560da7
FC
450 .handler = { \
451 .inval1 = invl1, \
452 .inval2 = invl2, \
9a64fbe4 453 .type = _typ, \
a5858d7a 454 .type2 = _typ2, \
79aceca5 455 .handler = &gen_##name, \
76a66253 456 .oname = stringify(name), \
79aceca5 457 }, \
3fc6c082 458 .oname = stringify(name), \
79aceca5 459}
a5858d7a 460#define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 461{ \
c7697e1f
JM
462 .opc1 = op1, \
463 .opc2 = op2, \
464 .opc3 = op3, \
323ad19b 465 .opc4 = 0xff, \
c7697e1f 466 .handler = { \
70560da7 467 .inval1 = invl, \
c7697e1f 468 .type = _typ, \
a5858d7a 469 .type2 = _typ2, \
c7697e1f
JM
470 .handler = &gen_##name, \
471 .oname = onam, \
472 }, \
473 .oname = onam, \
474}
323ad19b
ND
475#define GEN_OPCODE3(name, op1, op2, op3, op4, invl, _typ, _typ2) \
476{ \
477 .opc1 = op1, \
478 .opc2 = op2, \
479 .opc3 = op3, \
480 .opc4 = op4, \
481 .handler = { \
482 .inval1 = invl, \
483 .type = _typ, \
484 .type2 = _typ2, \
485 .handler = &gen_##name, \
486 .oname = stringify(name), \
487 }, \
488 .oname = stringify(name), \
489}
14fd8ab2
ND
490#define GEN_OPCODE4(name, onam, op1, op2, op3, op4, invl, _typ, _typ2) \
491{ \
492 .opc1 = op1, \
493 .opc2 = op2, \
494 .opc3 = op3, \
495 .opc4 = op4, \
496 .handler = { \
497 .inval1 = invl, \
498 .type = _typ, \
499 .type2 = _typ2, \
500 .handler = &gen_##name, \
501 .oname = onam, \
502 }, \
503 .oname = onam, \
504}
76a66253 505#else
a5858d7a 506#define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99 507{ \
c7697e1f
JM
508 .opc1 = op1, \
509 .opc2 = op2, \
510 .opc3 = op3, \
323ad19b 511 .opc4 = 0xff, \
c7697e1f 512 .handler = { \
70560da7
FC
513 .inval1 = invl, \
514 .type = _typ, \
515 .type2 = _typ2, \
516 .handler = &gen_##name, \
517 }, \
518 .oname = stringify(name), \
519}
520#define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
521{ \
522 .opc1 = op1, \
523 .opc2 = op2, \
524 .opc3 = op3, \
323ad19b 525 .opc4 = 0xff, \
70560da7
FC
526 .handler = { \
527 .inval1 = invl1, \
528 .inval2 = invl2, \
c7697e1f 529 .type = _typ, \
a5858d7a 530 .type2 = _typ2, \
c7697e1f 531 .handler = &gen_##name, \
5c55ff99
BS
532 }, \
533 .oname = stringify(name), \
534}
a5858d7a 535#define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
5c55ff99
BS
536{ \
537 .opc1 = op1, \
538 .opc2 = op2, \
539 .opc3 = op3, \
323ad19b 540 .opc4 = 0xff, \
5c55ff99 541 .handler = { \
70560da7 542 .inval1 = invl, \
5c55ff99 543 .type = _typ, \
a5858d7a 544 .type2 = _typ2, \
5c55ff99
BS
545 .handler = &gen_##name, \
546 }, \
547 .oname = onam, \
548}
323ad19b
ND
549#define GEN_OPCODE3(name, op1, op2, op3, op4, invl, _typ, _typ2) \
550{ \
551 .opc1 = op1, \
552 .opc2 = op2, \
553 .opc3 = op3, \
554 .opc4 = op4, \
555 .handler = { \
556 .inval1 = invl, \
557 .type = _typ, \
558 .type2 = _typ2, \
559 .handler = &gen_##name, \
560 }, \
561 .oname = stringify(name), \
562}
14fd8ab2
ND
563#define GEN_OPCODE4(name, onam, op1, op2, op3, op4, invl, _typ, _typ2) \
564{ \
565 .opc1 = op1, \
566 .opc2 = op2, \
567 .opc3 = op3, \
568 .opc4 = op4, \
569 .handler = { \
570 .inval1 = invl, \
571 .type = _typ, \
572 .type2 = _typ2, \
573 .handler = &gen_##name, \
574 }, \
575 .oname = onam, \
576}
5c55ff99 577#endif
2e610050 578
5c55ff99 579/* SPR load/store helpers */
636aa200 580static inline void gen_load_spr(TCGv t, int reg)
5c55ff99 581{
1328c2bf 582 tcg_gen_ld_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
5c55ff99 583}
2e610050 584
636aa200 585static inline void gen_store_spr(int reg, TCGv t)
5c55ff99 586{
1328c2bf 587 tcg_gen_st_tl(t, cpu_env, offsetof(CPUPPCState, spr[reg]));
5c55ff99 588}
2e610050 589
54623277 590/* Invalid instruction */
99e300ef 591static void gen_invalid(DisasContext *ctx)
9a64fbe4 592{
e06fcd75 593 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
9a64fbe4
FB
594}
595
c227f099 596static opc_handler_t invalid_handler = {
70560da7
FC
597 .inval1 = 0xFFFFFFFF,
598 .inval2 = 0xFFFFFFFF,
9a64fbe4 599 .type = PPC_NONE,
a5858d7a 600 .type2 = PPC_NONE,
79aceca5
FB
601 .handler = gen_invalid,
602};
603
e1571908
AJ
604/*** Integer comparison ***/
605
636aa200 606static inline void gen_op_cmp(TCGv arg0, TCGv arg1, int s, int crf)
e1571908 607{
2fdcb629
RH
608 TCGv t0 = tcg_temp_new();
609 TCGv_i32 t1 = tcg_temp_new_i32();
e1571908 610
da91a00f 611 tcg_gen_trunc_tl_i32(cpu_crf[crf], cpu_so);
e1571908 612
2fdcb629
RH
613 tcg_gen_setcond_tl((s ? TCG_COND_LT: TCG_COND_LTU), t0, arg0, arg1);
614 tcg_gen_trunc_tl_i32(t1, t0);
efa73196 615 tcg_gen_shli_i32(t1, t1, CRF_LT_BIT);
2fdcb629
RH
616 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
617
618 tcg_gen_setcond_tl((s ? TCG_COND_GT: TCG_COND_GTU), t0, arg0, arg1);
619 tcg_gen_trunc_tl_i32(t1, t0);
efa73196 620 tcg_gen_shli_i32(t1, t1, CRF_GT_BIT);
2fdcb629
RH
621 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
622
623 tcg_gen_setcond_tl(TCG_COND_EQ, t0, arg0, arg1);
624 tcg_gen_trunc_tl_i32(t1, t0);
efa73196 625 tcg_gen_shli_i32(t1, t1, CRF_EQ_BIT);
2fdcb629
RH
626 tcg_gen_or_i32(cpu_crf[crf], cpu_crf[crf], t1);
627
628 tcg_temp_free(t0);
629 tcg_temp_free_i32(t1);
e1571908
AJ
630}
631
636aa200 632static inline void gen_op_cmpi(TCGv arg0, target_ulong arg1, int s, int crf)
e1571908 633{
2fdcb629 634 TCGv t0 = tcg_const_tl(arg1);
ea363694
AJ
635 gen_op_cmp(arg0, t0, s, crf);
636 tcg_temp_free(t0);
e1571908
AJ
637}
638
636aa200 639static inline void gen_op_cmp32(TCGv arg0, TCGv arg1, int s, int crf)
e1571908 640{
ea363694 641 TCGv t0, t1;
2fdcb629
RH
642 t0 = tcg_temp_new();
643 t1 = tcg_temp_new();
e1571908 644 if (s) {
ea363694
AJ
645 tcg_gen_ext32s_tl(t0, arg0);
646 tcg_gen_ext32s_tl(t1, arg1);
e1571908 647 } else {
ea363694
AJ
648 tcg_gen_ext32u_tl(t0, arg0);
649 tcg_gen_ext32u_tl(t1, arg1);
e1571908 650 }
ea363694
AJ
651 gen_op_cmp(t0, t1, s, crf);
652 tcg_temp_free(t1);
653 tcg_temp_free(t0);
e1571908
AJ
654}
655
636aa200 656static inline void gen_op_cmpi32(TCGv arg0, target_ulong arg1, int s, int crf)
e1571908 657{
2fdcb629 658 TCGv t0 = tcg_const_tl(arg1);
ea363694
AJ
659 gen_op_cmp32(arg0, t0, s, crf);
660 tcg_temp_free(t0);
e1571908 661}
e1571908 662
636aa200 663static inline void gen_set_Rc0(DisasContext *ctx, TCGv reg)
e1571908 664{
02765534 665 if (NARROW_MODE(ctx)) {
e1571908 666 gen_op_cmpi32(reg, 0, 1, 0);
02765534 667 } else {
e1571908 668 gen_op_cmpi(reg, 0, 1, 0);
02765534 669 }
e1571908
AJ
670}
671
672/* cmp */
99e300ef 673static void gen_cmp(DisasContext *ctx)
e1571908 674{
36f48d9c 675 if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
e1571908
AJ
676 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
677 1, crfD(ctx->opcode));
36f48d9c
AG
678 } else {
679 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
680 1, crfD(ctx->opcode));
02765534 681 }
e1571908
AJ
682}
683
684/* cmpi */
99e300ef 685static void gen_cmpi(DisasContext *ctx)
e1571908 686{
36f48d9c 687 if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
e1571908
AJ
688 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
689 1, crfD(ctx->opcode));
36f48d9c
AG
690 } else {
691 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], SIMM(ctx->opcode),
692 1, crfD(ctx->opcode));
02765534 693 }
e1571908
AJ
694}
695
696/* cmpl */
99e300ef 697static void gen_cmpl(DisasContext *ctx)
e1571908 698{
36f48d9c 699 if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
e1571908
AJ
700 gen_op_cmp(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
701 0, crfD(ctx->opcode));
36f48d9c
AG
702 } else {
703 gen_op_cmp32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
704 0, crfD(ctx->opcode));
02765534 705 }
e1571908
AJ
706}
707
708/* cmpli */
99e300ef 709static void gen_cmpli(DisasContext *ctx)
e1571908 710{
36f48d9c 711 if ((ctx->opcode & 0x00200000) && (ctx->insns_flags & PPC_64B)) {
e1571908
AJ
712 gen_op_cmpi(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
713 0, crfD(ctx->opcode));
36f48d9c
AG
714 } else {
715 gen_op_cmpi32(cpu_gpr[rA(ctx->opcode)], UIMM(ctx->opcode),
716 0, crfD(ctx->opcode));
02765534 717 }
e1571908
AJ
718}
719
f2442ef9
ND
720/* cmprb - range comparison: isupper, isaplha, islower*/
721static void gen_cmprb(DisasContext *ctx)
722{
723 TCGv_i32 src1 = tcg_temp_new_i32();
724 TCGv_i32 src2 = tcg_temp_new_i32();
725 TCGv_i32 src2lo = tcg_temp_new_i32();
726 TCGv_i32 src2hi = tcg_temp_new_i32();
727 TCGv_i32 crf = cpu_crf[crfD(ctx->opcode)];
728
729 tcg_gen_trunc_tl_i32(src1, cpu_gpr[rA(ctx->opcode)]);
730 tcg_gen_trunc_tl_i32(src2, cpu_gpr[rB(ctx->opcode)]);
731
732 tcg_gen_andi_i32(src1, src1, 0xFF);
733 tcg_gen_ext8u_i32(src2lo, src2);
734 tcg_gen_shri_i32(src2, src2, 8);
735 tcg_gen_ext8u_i32(src2hi, src2);
736
737 tcg_gen_setcond_i32(TCG_COND_LEU, src2lo, src2lo, src1);
738 tcg_gen_setcond_i32(TCG_COND_LEU, src2hi, src1, src2hi);
739 tcg_gen_and_i32(crf, src2lo, src2hi);
740
741 if (ctx->opcode & 0x00200000) {
742 tcg_gen_shri_i32(src2, src2, 8);
743 tcg_gen_ext8u_i32(src2lo, src2);
744 tcg_gen_shri_i32(src2, src2, 8);
745 tcg_gen_ext8u_i32(src2hi, src2);
746 tcg_gen_setcond_i32(TCG_COND_LEU, src2lo, src2lo, src1);
747 tcg_gen_setcond_i32(TCG_COND_LEU, src2hi, src1, src2hi);
748 tcg_gen_and_i32(src2lo, src2lo, src2hi);
749 tcg_gen_or_i32(crf, crf, src2lo);
750 }
efa73196 751 tcg_gen_shli_i32(crf, crf, CRF_GT_BIT);
f2442ef9
ND
752 tcg_temp_free_i32(src1);
753 tcg_temp_free_i32(src2);
754 tcg_temp_free_i32(src2lo);
755 tcg_temp_free_i32(src2hi);
756}
757
082ce330
ND
758#if defined(TARGET_PPC64)
759/* cmpeqb */
760static void gen_cmpeqb(DisasContext *ctx)
761{
762 gen_helper_cmpeqb(cpu_crf[crfD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
763 cpu_gpr[rB(ctx->opcode)]);
764}
765#endif
766
e1571908 767/* isel (PowerPC 2.03 specification) */
99e300ef 768static void gen_isel(DisasContext *ctx)
e1571908 769{
e1571908 770 uint32_t bi = rC(ctx->opcode);
24f9cd95
RH
771 uint32_t mask = 0x08 >> (bi & 0x03);
772 TCGv t0 = tcg_temp_new();
773 TCGv zr;
e1571908 774
24f9cd95
RH
775 tcg_gen_extu_i32_tl(t0, cpu_crf[bi >> 2]);
776 tcg_gen_andi_tl(t0, t0, mask);
777
778 zr = tcg_const_tl(0);
779 tcg_gen_movcond_tl(TCG_COND_NE, cpu_gpr[rD(ctx->opcode)], t0, zr,
780 rA(ctx->opcode) ? cpu_gpr[rA(ctx->opcode)] : zr,
781 cpu_gpr[rB(ctx->opcode)]);
782 tcg_temp_free(zr);
783 tcg_temp_free(t0);
e1571908
AJ
784}
785
fcfda20f
AJ
786/* cmpb: PowerPC 2.05 specification */
787static void gen_cmpb(DisasContext *ctx)
788{
789 gen_helper_cmpb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)],
790 cpu_gpr[rB(ctx->opcode)]);
791}
792
79aceca5 793/*** Integer arithmetic ***/
79aceca5 794
636aa200
BS
795static inline void gen_op_arith_compute_ov(DisasContext *ctx, TCGv arg0,
796 TCGv arg1, TCGv arg2, int sub)
74637406 797{
ffe30937 798 TCGv t0 = tcg_temp_new();
79aceca5 799
8e7a6db9 800 tcg_gen_xor_tl(cpu_ov, arg0, arg2);
74637406 801 tcg_gen_xor_tl(t0, arg1, arg2);
ffe30937
RH
802 if (sub) {
803 tcg_gen_and_tl(cpu_ov, cpu_ov, t0);
804 } else {
805 tcg_gen_andc_tl(cpu_ov, cpu_ov, t0);
806 }
807 tcg_temp_free(t0);
02765534 808 if (NARROW_MODE(ctx)) {
ffe30937
RH
809 tcg_gen_ext32s_tl(cpu_ov, cpu_ov);
810 }
ffe30937
RH
811 tcg_gen_shri_tl(cpu_ov, cpu_ov, TARGET_LONG_BITS - 1);
812 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
79aceca5
FB
813}
814
74637406 815/* Common add function */
636aa200 816static inline void gen_op_arith_add(DisasContext *ctx, TCGv ret, TCGv arg1,
b5a73f8d
RH
817 TCGv arg2, bool add_ca, bool compute_ca,
818 bool compute_ov, bool compute_rc0)
74637406 819{
b5a73f8d 820 TCGv t0 = ret;
d9bce9d9 821
752d634e 822 if (compute_ca || compute_ov) {
146de60d 823 t0 = tcg_temp_new();
74637406 824 }
79aceca5 825
da91a00f 826 if (compute_ca) {
79482e5a 827 if (NARROW_MODE(ctx)) {
752d634e
RH
828 /* Caution: a non-obvious corner case of the spec is that we
829 must produce the *entire* 64-bit addition, but produce the
830 carry into bit 32. */
79482e5a 831 TCGv t1 = tcg_temp_new();
752d634e
RH
832 tcg_gen_xor_tl(t1, arg1, arg2); /* add without carry */
833 tcg_gen_add_tl(t0, arg1, arg2);
79482e5a
RH
834 if (add_ca) {
835 tcg_gen_add_tl(t0, t0, cpu_ca);
836 }
752d634e
RH
837 tcg_gen_xor_tl(cpu_ca, t0, t1); /* bits changed w/ carry */
838 tcg_temp_free(t1);
839 tcg_gen_shri_tl(cpu_ca, cpu_ca, 32); /* extract bit 32 */
840 tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
b5a73f8d 841 } else {
79482e5a
RH
842 TCGv zero = tcg_const_tl(0);
843 if (add_ca) {
844 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, cpu_ca, zero);
845 tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, arg2, zero);
846 } else {
847 tcg_gen_add2_tl(t0, cpu_ca, arg1, zero, arg2, zero);
848 }
849 tcg_temp_free(zero);
b5a73f8d 850 }
b5a73f8d
RH
851 } else {
852 tcg_gen_add_tl(t0, arg1, arg2);
853 if (add_ca) {
854 tcg_gen_add_tl(t0, t0, cpu_ca);
855 }
da91a00f 856 }
79aceca5 857
74637406
AJ
858 if (compute_ov) {
859 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 0);
860 }
b5a73f8d 861 if (unlikely(compute_rc0)) {
74637406 862 gen_set_Rc0(ctx, t0);
b5a73f8d 863 }
74637406 864
a7812ae4 865 if (!TCGV_EQUAL(t0, ret)) {
74637406
AJ
866 tcg_gen_mov_tl(ret, t0);
867 tcg_temp_free(t0);
868 }
39dd32ee 869}
74637406
AJ
870/* Add functions with two operands */
871#define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
b5a73f8d 872static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
873{ \
874 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
875 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
b5a73f8d 876 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
877}
878/* Add functions with one operand and one immediate */
879#define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
880 add_ca, compute_ca, compute_ov) \
b5a73f8d 881static void glue(gen_, name)(DisasContext *ctx) \
74637406 882{ \
b5a73f8d 883 TCGv t0 = tcg_const_tl(const_val); \
74637406
AJ
884 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
885 cpu_gpr[rA(ctx->opcode)], t0, \
b5a73f8d 886 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
887 tcg_temp_free(t0); \
888}
889
890/* add add. addo addo. */
891GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
892GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
893/* addc addc. addco addco. */
894GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
895GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
896/* adde adde. addeo addeo. */
897GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
898GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
899/* addme addme. addmeo addmeo. */
900GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
901GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
902/* addze addze. addzeo addzeo.*/
903GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
904GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
905/* addi */
99e300ef 906static void gen_addi(DisasContext *ctx)
d9bce9d9 907{
74637406
AJ
908 target_long simm = SIMM(ctx->opcode);
909
910 if (rA(ctx->opcode) == 0) {
911 /* li case */
912 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm);
913 } else {
b5a73f8d
RH
914 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
915 cpu_gpr[rA(ctx->opcode)], simm);
74637406 916 }
d9bce9d9 917}
74637406 918/* addic addic.*/
b5a73f8d 919static inline void gen_op_addic(DisasContext *ctx, bool compute_rc0)
d9bce9d9 920{
b5a73f8d
RH
921 TCGv c = tcg_const_tl(SIMM(ctx->opcode));
922 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
923 c, 0, 1, 0, compute_rc0);
924 tcg_temp_free(c);
d9bce9d9 925}
99e300ef
BS
926
927static void gen_addic(DisasContext *ctx)
d9bce9d9 928{
b5a73f8d 929 gen_op_addic(ctx, 0);
d9bce9d9 930}
e8eaa2c0
BS
931
932static void gen_addic_(DisasContext *ctx)
d9bce9d9 933{
b5a73f8d 934 gen_op_addic(ctx, 1);
d9bce9d9 935}
99e300ef 936
54623277 937/* addis */
99e300ef 938static void gen_addis(DisasContext *ctx)
d9bce9d9 939{
74637406
AJ
940 target_long simm = SIMM(ctx->opcode);
941
942 if (rA(ctx->opcode) == 0) {
943 /* lis case */
944 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], simm << 16);
945 } else {
b5a73f8d
RH
946 tcg_gen_addi_tl(cpu_gpr[rD(ctx->opcode)],
947 cpu_gpr[rA(ctx->opcode)], simm << 16);
74637406 948 }
d9bce9d9 949}
74637406 950
c5b2b9ce
ND
951/* addpcis */
952static void gen_addpcis(DisasContext *ctx)
953{
954 target_long d = DX(ctx->opcode);
955
956 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], ctx->nip + (d << 16));
957}
958
636aa200
BS
959static inline void gen_op_arith_divw(DisasContext *ctx, TCGv ret, TCGv arg1,
960 TCGv arg2, int sign, int compute_ov)
d9bce9d9 961{
b07c32dc
ND
962 TCGv_i32 t0 = tcg_temp_new_i32();
963 TCGv_i32 t1 = tcg_temp_new_i32();
964 TCGv_i32 t2 = tcg_temp_new_i32();
965 TCGv_i32 t3 = tcg_temp_new_i32();
74637406 966
2ef1b120
AJ
967 tcg_gen_trunc_tl_i32(t0, arg1);
968 tcg_gen_trunc_tl_i32(t1, arg2);
74637406 969 if (sign) {
b07c32dc
ND
970 tcg_gen_setcondi_i32(TCG_COND_EQ, t2, t0, INT_MIN);
971 tcg_gen_setcondi_i32(TCG_COND_EQ, t3, t1, -1);
972 tcg_gen_and_i32(t2, t2, t3);
973 tcg_gen_setcondi_i32(TCG_COND_EQ, t3, t1, 0);
974 tcg_gen_or_i32(t2, t2, t3);
975 tcg_gen_movi_i32(t3, 0);
976 tcg_gen_movcond_i32(TCG_COND_NE, t1, t2, t3, t2, t1);
977 tcg_gen_div_i32(t3, t0, t1);
978 tcg_gen_extu_i32_tl(ret, t3);
74637406 979 } else {
b07c32dc
ND
980 tcg_gen_setcondi_i32(TCG_COND_EQ, t2, t1, 0);
981 tcg_gen_movi_i32(t3, 0);
982 tcg_gen_movcond_i32(TCG_COND_NE, t1, t2, t3, t2, t1);
983 tcg_gen_divu_i32(t3, t0, t1);
984 tcg_gen_extu_i32_tl(ret, t3);
74637406
AJ
985 }
986 if (compute_ov) {
b07c32dc
ND
987 tcg_gen_extu_i32_tl(cpu_ov, t2);
988 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
74637406 989 }
a7812ae4
PB
990 tcg_temp_free_i32(t0);
991 tcg_temp_free_i32(t1);
b07c32dc
ND
992 tcg_temp_free_i32(t2);
993 tcg_temp_free_i32(t3);
994
74637406
AJ
995 if (unlikely(Rc(ctx->opcode) != 0))
996 gen_set_Rc0(ctx, ret);
d9bce9d9 997}
74637406
AJ
998/* Div functions */
999#define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
99e300ef 1000static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
1001{ \
1002 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1003 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1004 sign, compute_ov); \
1005}
1006/* divwu divwu. divwuo divwuo. */
1007GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0);
1008GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1);
1009/* divw divw. divwo divwo. */
1010GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0);
1011GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1);
98d1eb27
TM
1012
1013/* div[wd]eu[o][.] */
1014#define GEN_DIVE(name, hlpr, compute_ov) \
1015static void gen_##name(DisasContext *ctx) \
1016{ \
1017 TCGv_i32 t0 = tcg_const_i32(compute_ov); \
1018 gen_helper_##hlpr(cpu_gpr[rD(ctx->opcode)], cpu_env, \
1019 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0); \
1020 tcg_temp_free_i32(t0); \
1021 if (unlikely(Rc(ctx->opcode) != 0)) { \
1022 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1023 } \
1024}
1025
6a4fda33
TM
1026GEN_DIVE(divweu, divweu, 0);
1027GEN_DIVE(divweuo, divweu, 1);
a98eb9e9
TM
1028GEN_DIVE(divwe, divwe, 0);
1029GEN_DIVE(divweo, divwe, 1);
6a4fda33 1030
d9bce9d9 1031#if defined(TARGET_PPC64)
636aa200
BS
1032static inline void gen_op_arith_divd(DisasContext *ctx, TCGv ret, TCGv arg1,
1033 TCGv arg2, int sign, int compute_ov)
d9bce9d9 1034{
4110b586
ND
1035 TCGv_i64 t0 = tcg_temp_new_i64();
1036 TCGv_i64 t1 = tcg_temp_new_i64();
1037 TCGv_i64 t2 = tcg_temp_new_i64();
1038 TCGv_i64 t3 = tcg_temp_new_i64();
74637406 1039
4110b586
ND
1040 tcg_gen_mov_i64(t0, arg1);
1041 tcg_gen_mov_i64(t1, arg2);
74637406 1042 if (sign) {
4110b586
ND
1043 tcg_gen_setcondi_i64(TCG_COND_EQ, t2, t0, INT64_MIN);
1044 tcg_gen_setcondi_i64(TCG_COND_EQ, t3, t1, -1);
1045 tcg_gen_and_i64(t2, t2, t3);
1046 tcg_gen_setcondi_i64(TCG_COND_EQ, t3, t1, 0);
1047 tcg_gen_or_i64(t2, t2, t3);
1048 tcg_gen_movi_i64(t3, 0);
1049 tcg_gen_movcond_i64(TCG_COND_NE, t1, t2, t3, t2, t1);
1050 tcg_gen_div_i64(ret, t0, t1);
74637406 1051 } else {
4110b586
ND
1052 tcg_gen_setcondi_i64(TCG_COND_EQ, t2, t1, 0);
1053 tcg_gen_movi_i64(t3, 0);
1054 tcg_gen_movcond_i64(TCG_COND_NE, t1, t2, t3, t2, t1);
1055 tcg_gen_divu_i64(ret, t0, t1);
74637406
AJ
1056 }
1057 if (compute_ov) {
4110b586
ND
1058 tcg_gen_mov_tl(cpu_ov, t2);
1059 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
74637406 1060 }
4110b586
ND
1061 tcg_temp_free_i64(t0);
1062 tcg_temp_free_i64(t1);
1063 tcg_temp_free_i64(t2);
1064 tcg_temp_free_i64(t3);
1065
74637406
AJ
1066 if (unlikely(Rc(ctx->opcode) != 0))
1067 gen_set_Rc0(ctx, ret);
d9bce9d9 1068}
4110b586 1069
74637406 1070#define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
99e300ef 1071static void glue(gen_, name)(DisasContext *ctx) \
74637406 1072{ \
2ef1b120
AJ
1073 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1074 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1075 sign, compute_ov); \
74637406
AJ
1076}
1077/* divwu divwu. divwuo divwuo. */
1078GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0);
1079GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1);
1080/* divw divw. divwo divwo. */
1081GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0);
1082GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1);
98d1eb27
TM
1083
1084GEN_DIVE(divdeu, divdeu, 0);
1085GEN_DIVE(divdeuo, divdeu, 1);
e44259b6
TM
1086GEN_DIVE(divde, divde, 0);
1087GEN_DIVE(divdeo, divde, 1);
d9bce9d9 1088#endif
74637406 1089
af2c6620
ND
1090static inline void gen_op_arith_modw(DisasContext *ctx, TCGv ret, TCGv arg1,
1091 TCGv arg2, int sign)
1092{
1093 TCGv_i32 t0 = tcg_temp_new_i32();
1094 TCGv_i32 t1 = tcg_temp_new_i32();
1095
1096 tcg_gen_trunc_tl_i32(t0, arg1);
1097 tcg_gen_trunc_tl_i32(t1, arg2);
1098 if (sign) {
1099 TCGv_i32 t2 = tcg_temp_new_i32();
1100 TCGv_i32 t3 = tcg_temp_new_i32();
1101 tcg_gen_setcondi_i32(TCG_COND_EQ, t2, t0, INT_MIN);
1102 tcg_gen_setcondi_i32(TCG_COND_EQ, t3, t1, -1);
1103 tcg_gen_and_i32(t2, t2, t3);
1104 tcg_gen_setcondi_i32(TCG_COND_EQ, t3, t1, 0);
1105 tcg_gen_or_i32(t2, t2, t3);
1106 tcg_gen_movi_i32(t3, 0);
1107 tcg_gen_movcond_i32(TCG_COND_NE, t1, t2, t3, t2, t1);
1108 tcg_gen_rem_i32(t3, t0, t1);
1109 tcg_gen_ext_i32_tl(ret, t3);
1110 tcg_temp_free_i32(t2);
1111 tcg_temp_free_i32(t3);
1112 } else {
1113 TCGv_i32 t2 = tcg_const_i32(1);
1114 TCGv_i32 t3 = tcg_const_i32(0);
1115 tcg_gen_movcond_i32(TCG_COND_EQ, t1, t1, t3, t2, t1);
1116 tcg_gen_remu_i32(t3, t0, t1);
1117 tcg_gen_extu_i32_tl(ret, t3);
1118 tcg_temp_free_i32(t2);
1119 tcg_temp_free_i32(t3);
1120 }
1121 tcg_temp_free_i32(t0);
1122 tcg_temp_free_i32(t1);
1123}
1124
1125#define GEN_INT_ARITH_MODW(name, opc3, sign) \
1126static void glue(gen_, name)(DisasContext *ctx) \
1127{ \
1128 gen_op_arith_modw(ctx, cpu_gpr[rD(ctx->opcode)], \
1129 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1130 sign); \
1131}
1132
1133GEN_INT_ARITH_MODW(moduw, 0x08, 0);
1134GEN_INT_ARITH_MODW(modsw, 0x18, 1);
1135
063cf14f
ND
1136#if defined(TARGET_PPC64)
1137static inline void gen_op_arith_modd(DisasContext *ctx, TCGv ret, TCGv arg1,
1138 TCGv arg2, int sign)
1139{
1140 TCGv_i64 t0 = tcg_temp_new_i64();
1141 TCGv_i64 t1 = tcg_temp_new_i64();
1142
1143 tcg_gen_mov_i64(t0, arg1);
1144 tcg_gen_mov_i64(t1, arg2);
1145 if (sign) {
1146 TCGv_i64 t2 = tcg_temp_new_i64();
1147 TCGv_i64 t3 = tcg_temp_new_i64();
1148 tcg_gen_setcondi_i64(TCG_COND_EQ, t2, t0, INT64_MIN);
1149 tcg_gen_setcondi_i64(TCG_COND_EQ, t3, t1, -1);
1150 tcg_gen_and_i64(t2, t2, t3);
1151 tcg_gen_setcondi_i64(TCG_COND_EQ, t3, t1, 0);
1152 tcg_gen_or_i64(t2, t2, t3);
1153 tcg_gen_movi_i64(t3, 0);
1154 tcg_gen_movcond_i64(TCG_COND_NE, t1, t2, t3, t2, t1);
1155 tcg_gen_rem_i64(ret, t0, t1);
1156 tcg_temp_free_i64(t2);
1157 tcg_temp_free_i64(t3);
1158 } else {
1159 TCGv_i64 t2 = tcg_const_i64(1);
1160 TCGv_i64 t3 = tcg_const_i64(0);
1161 tcg_gen_movcond_i64(TCG_COND_EQ, t1, t1, t3, t2, t1);
1162 tcg_gen_remu_i64(ret, t0, t1);
1163 tcg_temp_free_i64(t2);
1164 tcg_temp_free_i64(t3);
1165 }
1166 tcg_temp_free_i64(t0);
1167 tcg_temp_free_i64(t1);
1168}
1169
1170#define GEN_INT_ARITH_MODD(name, opc3, sign) \
1171static void glue(gen_, name)(DisasContext *ctx) \
1172{ \
1173 gen_op_arith_modd(ctx, cpu_gpr[rD(ctx->opcode)], \
1174 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1175 sign); \
1176}
1177
1178GEN_INT_ARITH_MODD(modud, 0x08, 0);
1179GEN_INT_ARITH_MODD(modsd, 0x18, 1);
1180#endif
1181
74637406 1182/* mulhw mulhw. */
99e300ef 1183static void gen_mulhw(DisasContext *ctx)
d9bce9d9 1184{
23ad1d5d
RH
1185 TCGv_i32 t0 = tcg_temp_new_i32();
1186 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1187
23ad1d5d
RH
1188 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1189 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1190 tcg_gen_muls2_i32(t0, t1, t0, t1);
1191 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1192 tcg_temp_free_i32(t0);
1193 tcg_temp_free_i32(t1);
74637406
AJ
1194 if (unlikely(Rc(ctx->opcode) != 0))
1195 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1196}
99e300ef 1197
54623277 1198/* mulhwu mulhwu. */
99e300ef 1199static void gen_mulhwu(DisasContext *ctx)
d9bce9d9 1200{
23ad1d5d
RH
1201 TCGv_i32 t0 = tcg_temp_new_i32();
1202 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1203
23ad1d5d
RH
1204 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1205 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1206 tcg_gen_mulu2_i32(t0, t1, t0, t1);
1207 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t1);
1208 tcg_temp_free_i32(t0);
1209 tcg_temp_free_i32(t1);
74637406
AJ
1210 if (unlikely(Rc(ctx->opcode) != 0))
1211 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1212}
99e300ef 1213
54623277 1214/* mullw mullw. */
99e300ef 1215static void gen_mullw(DisasContext *ctx)
d9bce9d9 1216{
1fa74845
TM
1217#if defined(TARGET_PPC64)
1218 TCGv_i64 t0, t1;
1219 t0 = tcg_temp_new_i64();
1220 t1 = tcg_temp_new_i64();
1221 tcg_gen_ext32s_tl(t0, cpu_gpr[rA(ctx->opcode)]);
1222 tcg_gen_ext32s_tl(t1, cpu_gpr[rB(ctx->opcode)]);
1223 tcg_gen_mul_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);
1224 tcg_temp_free(t0);
1225 tcg_temp_free(t1);
1226#else
03039e5e
TM
1227 tcg_gen_mul_i32(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1228 cpu_gpr[rB(ctx->opcode)]);
1fa74845 1229#endif
74637406
AJ
1230 if (unlikely(Rc(ctx->opcode) != 0))
1231 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1232}
99e300ef 1233
54623277 1234/* mullwo mullwo. */
99e300ef 1235static void gen_mullwo(DisasContext *ctx)
d9bce9d9 1236{
e4a2c846
RH
1237 TCGv_i32 t0 = tcg_temp_new_i32();
1238 TCGv_i32 t1 = tcg_temp_new_i32();
74637406 1239
e4a2c846
RH
1240 tcg_gen_trunc_tl_i32(t0, cpu_gpr[rA(ctx->opcode)]);
1241 tcg_gen_trunc_tl_i32(t1, cpu_gpr[rB(ctx->opcode)]);
1242 tcg_gen_muls2_i32(t0, t1, t0, t1);
f11ebbf8 1243#if defined(TARGET_PPC64)
26977876
TM
1244 tcg_gen_concat_i32_i64(cpu_gpr[rD(ctx->opcode)], t0, t1);
1245#else
1246 tcg_gen_mov_i32(cpu_gpr[rD(ctx->opcode)], t0);
f11ebbf8 1247#endif
e4a2c846
RH
1248
1249 tcg_gen_sari_i32(t0, t0, 31);
1250 tcg_gen_setcond_i32(TCG_COND_NE, t0, t0, t1);
1251 tcg_gen_extu_i32_tl(cpu_ov, t0);
1252 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
1253
1254 tcg_temp_free_i32(t0);
1255 tcg_temp_free_i32(t1);
74637406
AJ
1256 if (unlikely(Rc(ctx->opcode) != 0))
1257 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1258}
99e300ef 1259
54623277 1260/* mulli */
99e300ef 1261static void gen_mulli(DisasContext *ctx)
d9bce9d9 1262{
74637406
AJ
1263 tcg_gen_muli_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1264 SIMM(ctx->opcode));
d9bce9d9 1265}
23ad1d5d 1266
d9bce9d9 1267#if defined(TARGET_PPC64)
74637406 1268/* mulhd mulhd. */
23ad1d5d
RH
1269static void gen_mulhd(DisasContext *ctx)
1270{
1271 TCGv lo = tcg_temp_new();
1272 tcg_gen_muls2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1273 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1274 tcg_temp_free(lo);
1275 if (unlikely(Rc(ctx->opcode) != 0)) {
1276 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1277 }
1278}
1279
74637406 1280/* mulhdu mulhdu. */
23ad1d5d
RH
1281static void gen_mulhdu(DisasContext *ctx)
1282{
1283 TCGv lo = tcg_temp_new();
1284 tcg_gen_mulu2_tl(lo, cpu_gpr[rD(ctx->opcode)],
1285 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1286 tcg_temp_free(lo);
1287 if (unlikely(Rc(ctx->opcode) != 0)) {
1288 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1289 }
1290}
99e300ef 1291
54623277 1292/* mulld mulld. */
99e300ef 1293static void gen_mulld(DisasContext *ctx)
d9bce9d9 1294{
74637406
AJ
1295 tcg_gen_mul_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1296 cpu_gpr[rB(ctx->opcode)]);
1297 if (unlikely(Rc(ctx->opcode) != 0))
1298 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
d9bce9d9 1299}
d15f74fb 1300
74637406 1301/* mulldo mulldo. */
d15f74fb
BS
1302static void gen_mulldo(DisasContext *ctx)
1303{
22ffad31
TM
1304 TCGv_i64 t0 = tcg_temp_new_i64();
1305 TCGv_i64 t1 = tcg_temp_new_i64();
1306
1307 tcg_gen_muls2_i64(t0, t1, cpu_gpr[rA(ctx->opcode)],
1308 cpu_gpr[rB(ctx->opcode)]);
1309 tcg_gen_mov_i64(cpu_gpr[rD(ctx->opcode)], t0);
1310
1311 tcg_gen_sari_i64(t0, t0, 63);
1312 tcg_gen_setcond_i64(TCG_COND_NE, cpu_ov, t0, t1);
1313 tcg_gen_or_tl(cpu_so, cpu_so, cpu_ov);
1314
1315 tcg_temp_free_i64(t0);
1316 tcg_temp_free_i64(t1);
1317
d15f74fb
BS
1318 if (unlikely(Rc(ctx->opcode) != 0)) {
1319 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
1320 }
1321}
d9bce9d9 1322#endif
74637406 1323
74637406 1324/* Common subf function */
636aa200 1325static inline void gen_op_arith_subf(DisasContext *ctx, TCGv ret, TCGv arg1,
b5a73f8d
RH
1326 TCGv arg2, bool add_ca, bool compute_ca,
1327 bool compute_ov, bool compute_rc0)
79aceca5 1328{
b5a73f8d 1329 TCGv t0 = ret;
79aceca5 1330
752d634e 1331 if (compute_ca || compute_ov) {
b5a73f8d 1332 t0 = tcg_temp_new();
da91a00f 1333 }
74637406 1334
79482e5a
RH
1335 if (compute_ca) {
1336 /* dest = ~arg1 + arg2 [+ ca]. */
1337 if (NARROW_MODE(ctx)) {
752d634e
RH
1338 /* Caution: a non-obvious corner case of the spec is that we
1339 must produce the *entire* 64-bit addition, but produce the
1340 carry into bit 32. */
79482e5a 1341 TCGv inv1 = tcg_temp_new();
752d634e 1342 TCGv t1 = tcg_temp_new();
79482e5a 1343 tcg_gen_not_tl(inv1, arg1);
79482e5a 1344 if (add_ca) {
752d634e 1345 tcg_gen_add_tl(t0, arg2, cpu_ca);
79482e5a 1346 } else {
752d634e 1347 tcg_gen_addi_tl(t0, arg2, 1);
79482e5a 1348 }
752d634e 1349 tcg_gen_xor_tl(t1, arg2, inv1); /* add without carry */
79482e5a 1350 tcg_gen_add_tl(t0, t0, inv1);
c80d1df5 1351 tcg_temp_free(inv1);
752d634e
RH
1352 tcg_gen_xor_tl(cpu_ca, t0, t1); /* bits changes w/ carry */
1353 tcg_temp_free(t1);
1354 tcg_gen_shri_tl(cpu_ca, cpu_ca, 32); /* extract bit 32 */
1355 tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
79482e5a 1356 } else if (add_ca) {
08f4a0f7
RH
1357 TCGv zero, inv1 = tcg_temp_new();
1358 tcg_gen_not_tl(inv1, arg1);
b5a73f8d
RH
1359 zero = tcg_const_tl(0);
1360 tcg_gen_add2_tl(t0, cpu_ca, arg2, zero, cpu_ca, zero);
08f4a0f7 1361 tcg_gen_add2_tl(t0, cpu_ca, t0, cpu_ca, inv1, zero);
b5a73f8d 1362 tcg_temp_free(zero);
08f4a0f7 1363 tcg_temp_free(inv1);
b5a73f8d 1364 } else {
79482e5a 1365 tcg_gen_setcond_tl(TCG_COND_GEU, cpu_ca, arg2, arg1);
b5a73f8d 1366 tcg_gen_sub_tl(t0, arg2, arg1);
b5a73f8d 1367 }
79482e5a
RH
1368 } else if (add_ca) {
1369 /* Since we're ignoring carry-out, we can simplify the
1370 standard ~arg1 + arg2 + ca to arg2 - arg1 + ca - 1. */
1371 tcg_gen_sub_tl(t0, arg2, arg1);
1372 tcg_gen_add_tl(t0, t0, cpu_ca);
1373 tcg_gen_subi_tl(t0, t0, 1);
79aceca5 1374 } else {
b5a73f8d 1375 tcg_gen_sub_tl(t0, arg2, arg1);
74637406 1376 }
b5a73f8d 1377
74637406
AJ
1378 if (compute_ov) {
1379 gen_op_arith_compute_ov(ctx, t0, arg1, arg2, 1);
1380 }
b5a73f8d 1381 if (unlikely(compute_rc0)) {
74637406 1382 gen_set_Rc0(ctx, t0);
b5a73f8d 1383 }
74637406 1384
a7812ae4 1385 if (!TCGV_EQUAL(t0, ret)) {
74637406
AJ
1386 tcg_gen_mov_tl(ret, t0);
1387 tcg_temp_free(t0);
79aceca5 1388 }
79aceca5 1389}
74637406
AJ
1390/* Sub functions with Two operands functions */
1391#define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
b5a73f8d 1392static void glue(gen_, name)(DisasContext *ctx) \
74637406
AJ
1393{ \
1394 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1395 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
b5a73f8d 1396 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
1397}
1398/* Sub functions with one operand and one immediate */
1399#define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
1400 add_ca, compute_ca, compute_ov) \
b5a73f8d 1401static void glue(gen_, name)(DisasContext *ctx) \
74637406 1402{ \
b5a73f8d 1403 TCGv t0 = tcg_const_tl(const_val); \
74637406
AJ
1404 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
1405 cpu_gpr[rA(ctx->opcode)], t0, \
b5a73f8d 1406 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
74637406
AJ
1407 tcg_temp_free(t0); \
1408}
1409/* subf subf. subfo subfo. */
1410GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
1411GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
1412/* subfc subfc. subfco subfco. */
1413GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
1414GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
1415/* subfe subfe. subfeo subfo. */
1416GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
1417GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
1418/* subfme subfme. subfmeo subfmeo. */
1419GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
1420GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
1421/* subfze subfze. subfzeo subfzeo.*/
1422GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
1423GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
99e300ef 1424
54623277 1425/* subfic */
99e300ef 1426static void gen_subfic(DisasContext *ctx)
79aceca5 1427{
b5a73f8d
RH
1428 TCGv c = tcg_const_tl(SIMM(ctx->opcode));
1429 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1430 c, 0, 1, 0, 0);
1431 tcg_temp_free(c);
79aceca5
FB
1432}
1433
fd3f0081
RH
1434/* neg neg. nego nego. */
1435static inline void gen_op_arith_neg(DisasContext *ctx, bool compute_ov)
1436{
1437 TCGv zero = tcg_const_tl(0);
1438 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)],
1439 zero, 0, 0, compute_ov, Rc(ctx->opcode));
1440 tcg_temp_free(zero);
1441}
1442
1443static void gen_neg(DisasContext *ctx)
1444{
1445 gen_op_arith_neg(ctx, 0);
1446}
1447
1448static void gen_nego(DisasContext *ctx)
1449{
1450 gen_op_arith_neg(ctx, 1);
1451}
1452
79aceca5 1453/*** Integer logical ***/
26d67362 1454#define GEN_LOGICAL2(name, tcg_op, opc, type) \
99e300ef 1455static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 1456{ \
26d67362
AJ
1457 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
1458 cpu_gpr[rB(ctx->opcode)]); \
76a66253 1459 if (unlikely(Rc(ctx->opcode) != 0)) \
26d67362 1460 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
79aceca5 1461}
79aceca5 1462
26d67362 1463#define GEN_LOGICAL1(name, tcg_op, opc, type) \
99e300ef 1464static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 1465{ \
26d67362 1466 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
76a66253 1467 if (unlikely(Rc(ctx->opcode) != 0)) \
26d67362 1468 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
79aceca5
FB
1469}
1470
1471/* and & and. */
26d67362 1472GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER);
79aceca5 1473/* andc & andc. */
26d67362 1474GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER);
e8eaa2c0 1475
54623277 1476/* andi. */
e8eaa2c0 1477static void gen_andi_(DisasContext *ctx)
79aceca5 1478{
26d67362
AJ
1479 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode));
1480 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1481}
e8eaa2c0 1482
54623277 1483/* andis. */
e8eaa2c0 1484static void gen_andis_(DisasContext *ctx)
79aceca5 1485{
26d67362
AJ
1486 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], UIMM(ctx->opcode) << 16);
1487 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
79aceca5 1488}
99e300ef 1489
54623277 1490/* cntlzw */
99e300ef 1491static void gen_cntlzw(DisasContext *ctx)
26d67362 1492{
9b8514e5
RH
1493 TCGv_i32 t = tcg_temp_new_i32();
1494
1495 tcg_gen_trunc_tl_i32(t, cpu_gpr[rS(ctx->opcode)]);
1496 tcg_gen_clzi_i32(t, t, 32);
1497 tcg_gen_extu_i32_tl(cpu_gpr[rA(ctx->opcode)], t);
1498 tcg_temp_free_i32(t);
1499
26d67362 1500 if (unlikely(Rc(ctx->opcode) != 0))
2e31f5d3 1501 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
26d67362 1502}
b35344e4
ND
1503
1504/* cnttzw */
1505static void gen_cnttzw(DisasContext *ctx)
1506{
9b8514e5
RH
1507 TCGv_i32 t = tcg_temp_new_i32();
1508
1509 tcg_gen_trunc_tl_i32(t, cpu_gpr[rS(ctx->opcode)]);
1510 tcg_gen_ctzi_i32(t, t, 32);
1511 tcg_gen_extu_i32_tl(cpu_gpr[rA(ctx->opcode)], t);
1512 tcg_temp_free_i32(t);
1513
b35344e4
ND
1514 if (unlikely(Rc(ctx->opcode) != 0)) {
1515 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1516 }
1517}
1518
79aceca5 1519/* eqv & eqv. */
26d67362 1520GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER);
79aceca5 1521/* extsb & extsb. */
26d67362 1522GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER);
79aceca5 1523/* extsh & extsh. */
26d67362 1524GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER);
79aceca5 1525/* nand & nand. */
26d67362 1526GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER);
79aceca5 1527/* nor & nor. */
26d67362 1528GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER);
99e300ef 1529
7f2b1744 1530#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
b68e60e6
BH
1531static void gen_pause(DisasContext *ctx)
1532{
1533 TCGv_i32 t0 = tcg_const_i32(0);
1534 tcg_gen_st_i32(t0, cpu_env,
1535 -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
1536 tcg_temp_free_i32(t0);
1537
1538 /* Stop translation, this gives other CPUs a chance to run */
bd6fefe7 1539 gen_exception_nip(ctx, EXCP_HLT, ctx->nip);
b68e60e6
BH
1540}
1541#endif /* defined(TARGET_PPC64) */
1542
54623277 1543/* or & or. */
99e300ef 1544static void gen_or(DisasContext *ctx)
9a64fbe4 1545{
76a66253
JM
1546 int rs, ra, rb;
1547
1548 rs = rS(ctx->opcode);
1549 ra = rA(ctx->opcode);
1550 rb = rB(ctx->opcode);
1551 /* Optimisation for mr. ri case */
1552 if (rs != ra || rs != rb) {
26d67362
AJ
1553 if (rs != rb)
1554 tcg_gen_or_tl(cpu_gpr[ra], cpu_gpr[rs], cpu_gpr[rb]);
1555 else
1556 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rs]);
76a66253 1557 if (unlikely(Rc(ctx->opcode) != 0))
26d67362 1558 gen_set_Rc0(ctx, cpu_gpr[ra]);
76a66253 1559 } else if (unlikely(Rc(ctx->opcode) != 0)) {
26d67362 1560 gen_set_Rc0(ctx, cpu_gpr[rs]);
c80f84e3 1561#if defined(TARGET_PPC64)
9e196938 1562 } else if (rs != 0) { /* 0 is nop */
26d67362
AJ
1563 int prio = 0;
1564
c80f84e3
JM
1565 switch (rs) {
1566 case 1:
1567 /* Set process priority to low */
26d67362 1568 prio = 2;
c80f84e3
JM
1569 break;
1570 case 6:
1571 /* Set process priority to medium-low */
26d67362 1572 prio = 3;
c80f84e3
JM
1573 break;
1574 case 2:
1575 /* Set process priority to normal */
26d67362 1576 prio = 4;
c80f84e3 1577 break;
be147d08
JM
1578#if !defined(CONFIG_USER_ONLY)
1579 case 31:
c47493f2 1580 if (!ctx->pr) {
be147d08 1581 /* Set process priority to very low */
26d67362 1582 prio = 1;
be147d08
JM
1583 }
1584 break;
1585 case 5:
c47493f2 1586 if (!ctx->pr) {
be147d08 1587 /* Set process priority to medium-hight */
26d67362 1588 prio = 5;
be147d08
JM
1589 }
1590 break;
1591 case 3:
c47493f2 1592 if (!ctx->pr) {
be147d08 1593 /* Set process priority to high */
26d67362 1594 prio = 6;
be147d08
JM
1595 }
1596 break;
be147d08 1597 case 7:
b68e60e6 1598 if (ctx->hv && !ctx->pr) {
be147d08 1599 /* Set process priority to very high */
26d67362 1600 prio = 7;
be147d08
JM
1601 }
1602 break;
be147d08 1603#endif
c80f84e3 1604 default:
c80f84e3
JM
1605 break;
1606 }
26d67362 1607 if (prio) {
a7812ae4 1608 TCGv t0 = tcg_temp_new();
54cdcae6 1609 gen_load_spr(t0, SPR_PPR);
ea363694
AJ
1610 tcg_gen_andi_tl(t0, t0, ~0x001C000000000000ULL);
1611 tcg_gen_ori_tl(t0, t0, ((uint64_t)prio) << 50);
54cdcae6 1612 gen_store_spr(SPR_PPR, t0);
ea363694 1613 tcg_temp_free(t0);
9e196938 1614 }
7f2b1744 1615#if !defined(CONFIG_USER_ONLY)
9e196938
AL
1616 /* Pause out of TCG otherwise spin loops with smt_low eat too much
1617 * CPU and the kernel hangs. This applies to all encodings other
1618 * than no-op, e.g., miso(rs=26), yield(27), mdoio(29), mdoom(30),
1619 * and all currently undefined.
1620 */
1621 gen_pause(ctx);
7f2b1744 1622#endif
c80f84e3 1623#endif
9a64fbe4 1624 }
9a64fbe4 1625}
79aceca5 1626/* orc & orc. */
26d67362 1627GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER);
99e300ef 1628
54623277 1629/* xor & xor. */
99e300ef 1630static void gen_xor(DisasContext *ctx)
9a64fbe4 1631{
9a64fbe4 1632 /* Optimisation for "set to zero" case */
26d67362 1633 if (rS(ctx->opcode) != rB(ctx->opcode))
312179c4 1634 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
1635 else
1636 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
76a66253 1637 if (unlikely(Rc(ctx->opcode) != 0))
26d67362 1638 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
9a64fbe4 1639}
99e300ef 1640
54623277 1641/* ori */
99e300ef 1642static void gen_ori(DisasContext *ctx)
79aceca5 1643{
76a66253 1644 target_ulong uimm = UIMM(ctx->opcode);
79aceca5 1645
9a64fbe4 1646 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
9a64fbe4 1647 return;
76a66253 1648 }
26d67362 1649 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
79aceca5 1650}
99e300ef 1651
54623277 1652/* oris */
99e300ef 1653static void gen_oris(DisasContext *ctx)
79aceca5 1654{
76a66253 1655 target_ulong uimm = UIMM(ctx->opcode);
79aceca5 1656
9a64fbe4
FB
1657 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1658 /* NOP */
1659 return;
76a66253 1660 }
26d67362 1661 tcg_gen_ori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
79aceca5 1662}
99e300ef 1663
54623277 1664/* xori */
99e300ef 1665static void gen_xori(DisasContext *ctx)
79aceca5 1666{
76a66253 1667 target_ulong uimm = UIMM(ctx->opcode);
9a64fbe4
FB
1668
1669 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1670 /* NOP */
1671 return;
1672 }
26d67362 1673 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm);
79aceca5 1674}
99e300ef 1675
54623277 1676/* xoris */
99e300ef 1677static void gen_xoris(DisasContext *ctx)
79aceca5 1678{
76a66253 1679 target_ulong uimm = UIMM(ctx->opcode);
9a64fbe4
FB
1680
1681 if (rS(ctx->opcode) == rA(ctx->opcode) && uimm == 0) {
1682 /* NOP */
1683 return;
1684 }
26d67362 1685 tcg_gen_xori_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], uimm << 16);
79aceca5 1686}
99e300ef 1687
54623277 1688/* popcntb : PowerPC 2.03 specification */
99e300ef 1689static void gen_popcntb(DisasContext *ctx)
d9bce9d9 1690{
eaabeef2
DG
1691 gen_helper_popcntb(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1692}
1693
1694static void gen_popcntw(DisasContext *ctx)
1695{
79770002 1696#if defined(TARGET_PPC64)
eaabeef2 1697 gen_helper_popcntw(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
79770002
RH
1698#else
1699 tcg_gen_ctpop_i32(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
1700#endif
eaabeef2
DG
1701}
1702
d9bce9d9 1703#if defined(TARGET_PPC64)
eaabeef2
DG
1704/* popcntd: PowerPC 2.06 specification */
1705static void gen_popcntd(DisasContext *ctx)
1706{
79770002 1707 tcg_gen_ctpop_i64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]);
d9bce9d9 1708}
eaabeef2 1709#endif
d9bce9d9 1710
725bcec2
AJ
1711/* prtyw: PowerPC 2.05 specification */
1712static void gen_prtyw(DisasContext *ctx)
1713{
1714 TCGv ra = cpu_gpr[rA(ctx->opcode)];
1715 TCGv rs = cpu_gpr[rS(ctx->opcode)];
1716 TCGv t0 = tcg_temp_new();
1717 tcg_gen_shri_tl(t0, rs, 16);
1718 tcg_gen_xor_tl(ra, rs, t0);
1719 tcg_gen_shri_tl(t0, ra, 8);
1720 tcg_gen_xor_tl(ra, ra, t0);
1721 tcg_gen_andi_tl(ra, ra, (target_ulong)0x100000001ULL);
1722 tcg_temp_free(t0);
1723}
1724
1725#if defined(TARGET_PPC64)
1726/* prtyd: PowerPC 2.05 specification */
1727static void gen_prtyd(DisasContext *ctx)
1728{
1729 TCGv ra = cpu_gpr[rA(ctx->opcode)];
1730 TCGv rs = cpu_gpr[rS(ctx->opcode)];
1731 TCGv t0 = tcg_temp_new();
1732 tcg_gen_shri_tl(t0, rs, 32);
1733 tcg_gen_xor_tl(ra, rs, t0);
1734 tcg_gen_shri_tl(t0, ra, 16);
1735 tcg_gen_xor_tl(ra, ra, t0);
1736 tcg_gen_shri_tl(t0, ra, 8);
1737 tcg_gen_xor_tl(ra, ra, t0);
1738 tcg_gen_andi_tl(ra, ra, 1);
1739 tcg_temp_free(t0);
1740}
1741#endif
1742
86ba37ed
TM
1743#if defined(TARGET_PPC64)
1744/* bpermd */
1745static void gen_bpermd(DisasContext *ctx)
1746{
1747 gen_helper_bpermd(cpu_gpr[rA(ctx->opcode)],
1748 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
1749}
1750#endif
1751
d9bce9d9
JM
1752#if defined(TARGET_PPC64)
1753/* extsw & extsw. */
26d67362 1754GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B);
99e300ef 1755
54623277 1756/* cntlzd */
99e300ef 1757static void gen_cntlzd(DisasContext *ctx)
26d67362 1758{
9b8514e5 1759 tcg_gen_clzi_i64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], 64);
26d67362
AJ
1760 if (unlikely(Rc(ctx->opcode) != 0))
1761 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1762}
e91d95b2
SD
1763
1764/* cnttzd */
1765static void gen_cnttzd(DisasContext *ctx)
1766{
9b8514e5 1767 tcg_gen_ctzi_i64(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], 64);
e91d95b2
SD
1768 if (unlikely(Rc(ctx->opcode) != 0)) {
1769 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
1770 }
1771}
fec5c62a
RB
1772
1773/* darn */
1774static void gen_darn(DisasContext *ctx)
1775{
1776 int l = L(ctx->opcode);
1777
1778 if (l == 0) {
1779 gen_helper_darn32(cpu_gpr[rD(ctx->opcode)]);
1780 } else if (l <= 2) {
1781 /* Return 64-bit random for both CRN and RRN */
1782 gen_helper_darn64(cpu_gpr[rD(ctx->opcode)]);
1783 } else {
1784 tcg_gen_movi_i64(cpu_gpr[rD(ctx->opcode)], -1);
1785 }
1786}
d9bce9d9
JM
1787#endif
1788
79aceca5 1789/*** Integer rotate ***/
99e300ef 1790
54623277 1791/* rlwimi & rlwimi. */
99e300ef 1792static void gen_rlwimi(DisasContext *ctx)
79aceca5 1793{
63ae0915
RH
1794 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
1795 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
1796 uint32_t sh = SH(ctx->opcode);
1797 uint32_t mb = MB(ctx->opcode);
1798 uint32_t me = ME(ctx->opcode);
1799
1800 if (sh == (31-me) && mb <= me) {
1801 tcg_gen_deposit_tl(t_ra, t_ra, t_rs, sh, me - mb + 1);
d03ef511 1802 } else {
d03ef511 1803 target_ulong mask;
a7812ae4 1804 TCGv t1;
63ae0915 1805
76a66253 1806#if defined(TARGET_PPC64)
d03ef511
AJ
1807 mb += 32;
1808 me += 32;
76a66253 1809#endif
d03ef511 1810 mask = MASK(mb, me);
63ae0915 1811
a7812ae4 1812 t1 = tcg_temp_new();
2e11b15d
RH
1813 if (mask <= 0xffffffffu) {
1814 TCGv_i32 t0 = tcg_temp_new_i32();
1815 tcg_gen_trunc_tl_i32(t0, t_rs);
1816 tcg_gen_rotli_i32(t0, t0, sh);
1817 tcg_gen_extu_i32_tl(t1, t0);
1818 tcg_temp_free_i32(t0);
1819 } else {
1820#if defined(TARGET_PPC64)
1821 tcg_gen_deposit_i64(t1, t_rs, t_rs, 32, 32);
1822 tcg_gen_rotli_i64(t1, t1, sh);
1823#else
1824 g_assert_not_reached();
1825#endif
1826 }
63ae0915
RH
1827
1828 tcg_gen_andi_tl(t1, t1, mask);
1829 tcg_gen_andi_tl(t_ra, t_ra, ~mask);
1830 tcg_gen_or_tl(t_ra, t_ra, t1);
d03ef511
AJ
1831 tcg_temp_free(t1);
1832 }
63ae0915
RH
1833 if (unlikely(Rc(ctx->opcode) != 0)) {
1834 gen_set_Rc0(ctx, t_ra);
1835 }
79aceca5 1836}
99e300ef 1837
54623277 1838/* rlwinm & rlwinm. */
99e300ef 1839static void gen_rlwinm(DisasContext *ctx)
79aceca5 1840{
63ae0915
RH
1841 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
1842 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
7b4d326f
RH
1843 int sh = SH(ctx->opcode);
1844 int mb = MB(ctx->opcode);
1845 int me = ME(ctx->opcode);
1846 int len = me - mb + 1;
1847 int rsh = (32 - sh) & 31;
1848
1849 if (sh != 0 && len > 0 && me == (31 - sh)) {
1850 tcg_gen_deposit_z_tl(t_ra, t_rs, sh, len);
1851 } else if (me == 31 && rsh + len <= 32) {
1852 tcg_gen_extract_tl(t_ra, t_rs, rsh, len);
d03ef511 1853 } else {
2e11b15d 1854 target_ulong mask;
76a66253 1855#if defined(TARGET_PPC64)
d03ef511
AJ
1856 mb += 32;
1857 me += 32;
76a66253 1858#endif
2e11b15d 1859 mask = MASK(mb, me);
7b4d326f
RH
1860 if (sh == 0) {
1861 tcg_gen_andi_tl(t_ra, t_rs, mask);
1862 } else if (mask <= 0xffffffffu) {
63ae0915 1863 TCGv_i32 t0 = tcg_temp_new_i32();
63ae0915
RH
1864 tcg_gen_trunc_tl_i32(t0, t_rs);
1865 tcg_gen_rotli_i32(t0, t0, sh);
2e11b15d 1866 tcg_gen_andi_i32(t0, t0, mask);
63ae0915
RH
1867 tcg_gen_extu_i32_tl(t_ra, t0);
1868 tcg_temp_free_i32(t0);
2e11b15d
RH
1869 } else {
1870#if defined(TARGET_PPC64)
1871 tcg_gen_deposit_i64(t_ra, t_rs, t_rs, 32, 32);
1872 tcg_gen_rotli_i64(t_ra, t_ra, sh);
1873 tcg_gen_andi_i64(t_ra, t_ra, mask);
1874#else
1875 g_assert_not_reached();
1876#endif
63ae0915
RH
1877 }
1878 }
1879 if (unlikely(Rc(ctx->opcode) != 0)) {
1880 gen_set_Rc0(ctx, t_ra);
d03ef511 1881 }
79aceca5 1882}
99e300ef 1883
54623277 1884/* rlwnm & rlwnm. */
99e300ef 1885static void gen_rlwnm(DisasContext *ctx)
79aceca5 1886{
63ae0915
RH
1887 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
1888 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
1889 TCGv t_rb = cpu_gpr[rB(ctx->opcode)];
1890 uint32_t mb = MB(ctx->opcode);
1891 uint32_t me = ME(ctx->opcode);
2e11b15d 1892 target_ulong mask;
57fca134 1893
54843a58 1894#if defined(TARGET_PPC64)
63ae0915
RH
1895 mb += 32;
1896 me += 32;
54843a58 1897#endif
2e11b15d
RH
1898 mask = MASK(mb, me);
1899
1900 if (mask <= 0xffffffffu) {
1901 TCGv_i32 t0 = tcg_temp_new_i32();
1902 TCGv_i32 t1 = tcg_temp_new_i32();
1903 tcg_gen_trunc_tl_i32(t0, t_rb);
1904 tcg_gen_trunc_tl_i32(t1, t_rs);
1905 tcg_gen_andi_i32(t0, t0, 0x1f);
1906 tcg_gen_rotl_i32(t1, t1, t0);
1907 tcg_gen_extu_i32_tl(t_ra, t1);
1908 tcg_temp_free_i32(t0);
1909 tcg_temp_free_i32(t1);
1910 } else {
1911#if defined(TARGET_PPC64)
1912 TCGv_i64 t0 = tcg_temp_new_i64();
1913 tcg_gen_andi_i64(t0, t_rb, 0x1f);
1914 tcg_gen_deposit_i64(t_ra, t_rs, t_rs, 32, 32);
1915 tcg_gen_rotl_i64(t_ra, t_ra, t0);
1916 tcg_temp_free_i64(t0);
1917#else
1918 g_assert_not_reached();
1919#endif
1920 }
57fca134 1921
2e11b15d 1922 tcg_gen_andi_tl(t_ra, t_ra, mask);
63ae0915
RH
1923
1924 if (unlikely(Rc(ctx->opcode) != 0)) {
1925 gen_set_Rc0(ctx, t_ra);
79aceca5 1926 }
79aceca5
FB
1927}
1928
d9bce9d9
JM
1929#if defined(TARGET_PPC64)
1930#define GEN_PPC64_R2(name, opc1, opc2) \
e8eaa2c0 1931static void glue(gen_, name##0)(DisasContext *ctx) \
d9bce9d9
JM
1932{ \
1933 gen_##name(ctx, 0); \
1934} \
e8eaa2c0
BS
1935 \
1936static void glue(gen_, name##1)(DisasContext *ctx) \
d9bce9d9
JM
1937{ \
1938 gen_##name(ctx, 1); \
1939}
1940#define GEN_PPC64_R4(name, opc1, opc2) \
e8eaa2c0 1941static void glue(gen_, name##0)(DisasContext *ctx) \
d9bce9d9
JM
1942{ \
1943 gen_##name(ctx, 0, 0); \
1944} \
e8eaa2c0
BS
1945 \
1946static void glue(gen_, name##1)(DisasContext *ctx) \
d9bce9d9
JM
1947{ \
1948 gen_##name(ctx, 0, 1); \
1949} \
e8eaa2c0
BS
1950 \
1951static void glue(gen_, name##2)(DisasContext *ctx) \
d9bce9d9
JM
1952{ \
1953 gen_##name(ctx, 1, 0); \
1954} \
e8eaa2c0
BS
1955 \
1956static void glue(gen_, name##3)(DisasContext *ctx) \
d9bce9d9
JM
1957{ \
1958 gen_##name(ctx, 1, 1); \
1959}
51789c41 1960
a7b2c8b9 1961static void gen_rldinm(DisasContext *ctx, int mb, int me, int sh)
51789c41 1962{
a7b2c8b9
RH
1963 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
1964 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
7b4d326f
RH
1965 int len = me - mb + 1;
1966 int rsh = (64 - sh) & 63;
a7b2c8b9 1967
7b4d326f
RH
1968 if (sh != 0 && len > 0 && me == (63 - sh)) {
1969 tcg_gen_deposit_z_tl(t_ra, t_rs, sh, len);
1970 } else if (me == 63 && rsh + len <= 64) {
1971 tcg_gen_extract_tl(t_ra, t_rs, rsh, len);
d03ef511 1972 } else {
a7b2c8b9
RH
1973 tcg_gen_rotli_tl(t_ra, t_rs, sh);
1974 tcg_gen_andi_tl(t_ra, t_ra, MASK(mb, me));
1975 }
1976 if (unlikely(Rc(ctx->opcode) != 0)) {
1977 gen_set_Rc0(ctx, t_ra);
51789c41 1978 }
51789c41 1979}
a7b2c8b9 1980
d9bce9d9 1981/* rldicl - rldicl. */
636aa200 1982static inline void gen_rldicl(DisasContext *ctx, int mbn, int shn)
d9bce9d9 1983{
51789c41 1984 uint32_t sh, mb;
d9bce9d9 1985
9d53c753
JM
1986 sh = SH(ctx->opcode) | (shn << 5);
1987 mb = MB(ctx->opcode) | (mbn << 5);
51789c41 1988 gen_rldinm(ctx, mb, 63, sh);
d9bce9d9 1989}
51789c41 1990GEN_PPC64_R4(rldicl, 0x1E, 0x00);
a7b2c8b9 1991
d9bce9d9 1992/* rldicr - rldicr. */
636aa200 1993static inline void gen_rldicr(DisasContext *ctx, int men, int shn)
d9bce9d9 1994{
51789c41 1995 uint32_t sh, me;
d9bce9d9 1996
9d53c753
JM
1997 sh = SH(ctx->opcode) | (shn << 5);
1998 me = MB(ctx->opcode) | (men << 5);
51789c41 1999 gen_rldinm(ctx, 0, me, sh);
d9bce9d9 2000}
51789c41 2001GEN_PPC64_R4(rldicr, 0x1E, 0x02);
a7b2c8b9 2002
d9bce9d9 2003/* rldic - rldic. */
636aa200 2004static inline void gen_rldic(DisasContext *ctx, int mbn, int shn)
d9bce9d9 2005{
51789c41 2006 uint32_t sh, mb;
d9bce9d9 2007
9d53c753
JM
2008 sh = SH(ctx->opcode) | (shn << 5);
2009 mb = MB(ctx->opcode) | (mbn << 5);
51789c41
JM
2010 gen_rldinm(ctx, mb, 63 - sh, sh);
2011}
2012GEN_PPC64_R4(rldic, 0x1E, 0x04);
2013
a7b2c8b9 2014static void gen_rldnm(DisasContext *ctx, int mb, int me)
51789c41 2015{
a7b2c8b9
RH
2016 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
2017 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
2018 TCGv t_rb = cpu_gpr[rB(ctx->opcode)];
54843a58 2019 TCGv t0;
d03ef511 2020
a7812ae4 2021 t0 = tcg_temp_new();
a7b2c8b9
RH
2022 tcg_gen_andi_tl(t0, t_rb, 0x3f);
2023 tcg_gen_rotl_tl(t_ra, t_rs, t0);
54843a58 2024 tcg_temp_free(t0);
a7b2c8b9
RH
2025
2026 tcg_gen_andi_tl(t_ra, t_ra, MASK(mb, me));
2027 if (unlikely(Rc(ctx->opcode) != 0)) {
2028 gen_set_Rc0(ctx, t_ra);
2029 }
d9bce9d9 2030}
51789c41 2031
d9bce9d9 2032/* rldcl - rldcl. */
636aa200 2033static inline void gen_rldcl(DisasContext *ctx, int mbn)
d9bce9d9 2034{
51789c41 2035 uint32_t mb;
d9bce9d9 2036
9d53c753 2037 mb = MB(ctx->opcode) | (mbn << 5);
51789c41 2038 gen_rldnm(ctx, mb, 63);
d9bce9d9 2039}
36081602 2040GEN_PPC64_R2(rldcl, 0x1E, 0x08);
a7b2c8b9 2041
d9bce9d9 2042/* rldcr - rldcr. */
636aa200 2043static inline void gen_rldcr(DisasContext *ctx, int men)
d9bce9d9 2044{
51789c41 2045 uint32_t me;
d9bce9d9 2046
9d53c753 2047 me = MB(ctx->opcode) | (men << 5);
51789c41 2048 gen_rldnm(ctx, 0, me);
d9bce9d9 2049}
36081602 2050GEN_PPC64_R2(rldcr, 0x1E, 0x09);
a7b2c8b9 2051
d9bce9d9 2052/* rldimi - rldimi. */
a7b2c8b9 2053static void gen_rldimi(DisasContext *ctx, int mbn, int shn)
d9bce9d9 2054{
a7b2c8b9
RH
2055 TCGv t_ra = cpu_gpr[rA(ctx->opcode)];
2056 TCGv t_rs = cpu_gpr[rS(ctx->opcode)];
2057 uint32_t sh = SH(ctx->opcode) | (shn << 5);
2058 uint32_t mb = MB(ctx->opcode) | (mbn << 5);
2059 uint32_t me = 63 - sh;
d9bce9d9 2060
a7b2c8b9
RH
2061 if (mb <= me) {
2062 tcg_gen_deposit_tl(t_ra, t_ra, t_rs, sh, me - mb + 1);
d03ef511 2063 } else {
a7b2c8b9
RH
2064 target_ulong mask = MASK(mb, me);
2065 TCGv t1 = tcg_temp_new();
d03ef511 2066
a7b2c8b9
RH
2067 tcg_gen_rotli_tl(t1, t_rs, sh);
2068 tcg_gen_andi_tl(t1, t1, mask);
2069 tcg_gen_andi_tl(t_ra, t_ra, ~mask);
2070 tcg_gen_or_tl(t_ra, t_ra, t1);
d03ef511 2071 tcg_temp_free(t1);
51789c41 2072 }
a7b2c8b9
RH
2073 if (unlikely(Rc(ctx->opcode) != 0)) {
2074 gen_set_Rc0(ctx, t_ra);
2075 }
d9bce9d9 2076}
36081602 2077GEN_PPC64_R4(rldimi, 0x1E, 0x06);
d9bce9d9
JM
2078#endif
2079
79aceca5 2080/*** Integer shift ***/
99e300ef 2081
54623277 2082/* slw & slw. */
99e300ef 2083static void gen_slw(DisasContext *ctx)
26d67362 2084{
7fd6bf7d 2085 TCGv t0, t1;
26d67362 2086
7fd6bf7d
AJ
2087 t0 = tcg_temp_new();
2088 /* AND rS with a mask that is 0 when rB >= 0x20 */
2089#if defined(TARGET_PPC64)
2090 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
2091 tcg_gen_sari_tl(t0, t0, 0x3f);
2092#else
2093 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
2094 tcg_gen_sari_tl(t0, t0, 0x1f);
2095#endif
2096 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
2097 t1 = tcg_temp_new();
2098 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
2099 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
2100 tcg_temp_free(t1);
fea0c503 2101 tcg_temp_free(t0);
7fd6bf7d 2102 tcg_gen_ext32u_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
26d67362
AJ
2103 if (unlikely(Rc(ctx->opcode) != 0))
2104 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2105}
99e300ef 2106
54623277 2107/* sraw & sraw. */
99e300ef 2108static void gen_sraw(DisasContext *ctx)
26d67362 2109{
d15f74fb 2110 gen_helper_sraw(cpu_gpr[rA(ctx->opcode)], cpu_env,
a7812ae4 2111 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
2112 if (unlikely(Rc(ctx->opcode) != 0))
2113 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2114}
99e300ef 2115
54623277 2116/* srawi & srawi. */
99e300ef 2117static void gen_srawi(DisasContext *ctx)
79aceca5 2118{
26d67362 2119 int sh = SH(ctx->opcode);
ba4af3e4
RH
2120 TCGv dst = cpu_gpr[rA(ctx->opcode)];
2121 TCGv src = cpu_gpr[rS(ctx->opcode)];
2122 if (sh == 0) {
34a0fad1 2123 tcg_gen_ext32s_tl(dst, src);
da91a00f 2124 tcg_gen_movi_tl(cpu_ca, 0);
26d67362 2125 } else {
ba4af3e4
RH
2126 TCGv t0;
2127 tcg_gen_ext32s_tl(dst, src);
2128 tcg_gen_andi_tl(cpu_ca, dst, (1ULL << sh) - 1);
2129 t0 = tcg_temp_new();
2130 tcg_gen_sari_tl(t0, dst, TARGET_LONG_BITS - 1);
2131 tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
2132 tcg_temp_free(t0);
2133 tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
2134 tcg_gen_sari_tl(dst, dst, sh);
2135 }
2136 if (unlikely(Rc(ctx->opcode) != 0)) {
2137 gen_set_Rc0(ctx, dst);
d9bce9d9 2138 }
79aceca5 2139}
99e300ef 2140
54623277 2141/* srw & srw. */
99e300ef 2142static void gen_srw(DisasContext *ctx)
26d67362 2143{
fea0c503 2144 TCGv t0, t1;
d9bce9d9 2145
7fd6bf7d
AJ
2146 t0 = tcg_temp_new();
2147 /* AND rS with a mask that is 0 when rB >= 0x20 */
2148#if defined(TARGET_PPC64)
2149 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x3a);
2150 tcg_gen_sari_tl(t0, t0, 0x3f);
2151#else
2152 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1a);
2153 tcg_gen_sari_tl(t0, t0, 0x1f);
2154#endif
2155 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
2156 tcg_gen_ext32u_tl(t0, t0);
a7812ae4 2157 t1 = tcg_temp_new();
7fd6bf7d
AJ
2158 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1f);
2159 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
fea0c503 2160 tcg_temp_free(t1);
fea0c503 2161 tcg_temp_free(t0);
26d67362
AJ
2162 if (unlikely(Rc(ctx->opcode) != 0))
2163 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2164}
54623277 2165
d9bce9d9
JM
2166#if defined(TARGET_PPC64)
2167/* sld & sld. */
99e300ef 2168static void gen_sld(DisasContext *ctx)
26d67362 2169{
7fd6bf7d 2170 TCGv t0, t1;
26d67362 2171
7fd6bf7d
AJ
2172 t0 = tcg_temp_new();
2173 /* AND rS with a mask that is 0 when rB >= 0x40 */
2174 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
2175 tcg_gen_sari_tl(t0, t0, 0x3f);
2176 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
2177 t1 = tcg_temp_new();
2178 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
2179 tcg_gen_shl_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
2180 tcg_temp_free(t1);
fea0c503 2181 tcg_temp_free(t0);
26d67362
AJ
2182 if (unlikely(Rc(ctx->opcode) != 0))
2183 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2184}
99e300ef 2185
54623277 2186/* srad & srad. */
99e300ef 2187static void gen_srad(DisasContext *ctx)
26d67362 2188{
d15f74fb 2189 gen_helper_srad(cpu_gpr[rA(ctx->opcode)], cpu_env,
a7812ae4 2190 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
26d67362
AJ
2191 if (unlikely(Rc(ctx->opcode) != 0))
2192 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2193}
d9bce9d9 2194/* sradi & sradi. */
636aa200 2195static inline void gen_sradi(DisasContext *ctx, int n)
d9bce9d9 2196{
26d67362 2197 int sh = SH(ctx->opcode) + (n << 5);
ba4af3e4
RH
2198 TCGv dst = cpu_gpr[rA(ctx->opcode)];
2199 TCGv src = cpu_gpr[rS(ctx->opcode)];
2200 if (sh == 0) {
2201 tcg_gen_mov_tl(dst, src);
da91a00f 2202 tcg_gen_movi_tl(cpu_ca, 0);
26d67362 2203 } else {
ba4af3e4
RH
2204 TCGv t0;
2205 tcg_gen_andi_tl(cpu_ca, src, (1ULL << sh) - 1);
2206 t0 = tcg_temp_new();
2207 tcg_gen_sari_tl(t0, src, TARGET_LONG_BITS - 1);
2208 tcg_gen_and_tl(cpu_ca, cpu_ca, t0);
2209 tcg_temp_free(t0);
2210 tcg_gen_setcondi_tl(TCG_COND_NE, cpu_ca, cpu_ca, 0);
2211 tcg_gen_sari_tl(dst, src, sh);
2212 }
2213 if (unlikely(Rc(ctx->opcode) != 0)) {
2214 gen_set_Rc0(ctx, dst);
d9bce9d9 2215 }
d9bce9d9 2216}
e8eaa2c0
BS
2217
2218static void gen_sradi0(DisasContext *ctx)
d9bce9d9
JM
2219{
2220 gen_sradi(ctx, 0);
2221}
e8eaa2c0
BS
2222
2223static void gen_sradi1(DisasContext *ctx)
d9bce9d9
JM
2224{
2225 gen_sradi(ctx, 1);
2226}
99e300ef 2227
787bbe37
ND
2228/* extswsli & extswsli. */
2229static inline void gen_extswsli(DisasContext *ctx, int n)
2230{
2231 int sh = SH(ctx->opcode) + (n << 5);
2232 TCGv dst = cpu_gpr[rA(ctx->opcode)];
2233 TCGv src = cpu_gpr[rS(ctx->opcode)];
2234
2235 tcg_gen_ext32s_tl(dst, src);
2236 tcg_gen_shli_tl(dst, dst, sh);
2237 if (unlikely(Rc(ctx->opcode) != 0)) {
2238 gen_set_Rc0(ctx, dst);
2239 }
2240}
2241
2242static void gen_extswsli0(DisasContext *ctx)
2243{
2244 gen_extswsli(ctx, 0);
2245}
2246
2247static void gen_extswsli1(DisasContext *ctx)
2248{
2249 gen_extswsli(ctx, 1);
2250}
2251
54623277 2252/* srd & srd. */
99e300ef 2253static void gen_srd(DisasContext *ctx)
26d67362 2254{
7fd6bf7d 2255 TCGv t0, t1;
26d67362 2256
7fd6bf7d
AJ
2257 t0 = tcg_temp_new();
2258 /* AND rS with a mask that is 0 when rB >= 0x40 */
2259 tcg_gen_shli_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x39);
2260 tcg_gen_sari_tl(t0, t0, 0x3f);
2261 tcg_gen_andc_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
2262 t1 = tcg_temp_new();
2263 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x3f);
2264 tcg_gen_shr_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
2265 tcg_temp_free(t1);
fea0c503 2266 tcg_temp_free(t0);
26d67362
AJ
2267 if (unlikely(Rc(ctx->opcode) != 0))
2268 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
2269}
d9bce9d9 2270#endif
79aceca5 2271
76a66253
JM
2272/*** Addressing modes ***/
2273/* Register indirect with immediate index : EA = (rA|0) + SIMM */
636aa200
BS
2274static inline void gen_addr_imm_index(DisasContext *ctx, TCGv EA,
2275 target_long maskl)
76a66253
JM
2276{
2277 target_long simm = SIMM(ctx->opcode);
2278
be147d08 2279 simm &= ~maskl;
76db3ba4 2280 if (rA(ctx->opcode) == 0) {
c791fe84
RH
2281 if (NARROW_MODE(ctx)) {
2282 simm = (uint32_t)simm;
2283 }
e2be8d8d 2284 tcg_gen_movi_tl(EA, simm);
76db3ba4 2285 } else if (likely(simm != 0)) {
e2be8d8d 2286 tcg_gen_addi_tl(EA, cpu_gpr[rA(ctx->opcode)], simm);
c791fe84 2287 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2288 tcg_gen_ext32u_tl(EA, EA);
2289 }
76db3ba4 2290 } else {
c791fe84 2291 if (NARROW_MODE(ctx)) {
76db3ba4 2292 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
c791fe84
RH
2293 } else {
2294 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
2295 }
76db3ba4 2296 }
76a66253
JM
2297}
2298
636aa200 2299static inline void gen_addr_reg_index(DisasContext *ctx, TCGv EA)
76a66253 2300{
76db3ba4 2301 if (rA(ctx->opcode) == 0) {
c791fe84 2302 if (NARROW_MODE(ctx)) {
76db3ba4 2303 tcg_gen_ext32u_tl(EA, cpu_gpr[rB(ctx->opcode)]);
c791fe84
RH
2304 } else {
2305 tcg_gen_mov_tl(EA, cpu_gpr[rB(ctx->opcode)]);
2306 }
76db3ba4 2307 } else {
e2be8d8d 2308 tcg_gen_add_tl(EA, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
c791fe84 2309 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2310 tcg_gen_ext32u_tl(EA, EA);
2311 }
76db3ba4 2312 }
76a66253
JM
2313}
2314
636aa200 2315static inline void gen_addr_register(DisasContext *ctx, TCGv EA)
76a66253 2316{
76db3ba4 2317 if (rA(ctx->opcode) == 0) {
e2be8d8d 2318 tcg_gen_movi_tl(EA, 0);
c791fe84
RH
2319 } else if (NARROW_MODE(ctx)) {
2320 tcg_gen_ext32u_tl(EA, cpu_gpr[rA(ctx->opcode)]);
76db3ba4 2321 } else {
c791fe84 2322 tcg_gen_mov_tl(EA, cpu_gpr[rA(ctx->opcode)]);
76db3ba4
AJ
2323 }
2324}
2325
636aa200
BS
2326static inline void gen_addr_add(DisasContext *ctx, TCGv ret, TCGv arg1,
2327 target_long val)
76db3ba4
AJ
2328{
2329 tcg_gen_addi_tl(ret, arg1, val);
c791fe84 2330 if (NARROW_MODE(ctx)) {
76db3ba4
AJ
2331 tcg_gen_ext32u_tl(ret, ret);
2332 }
76a66253
JM
2333}
2334
636aa200 2335static inline void gen_check_align(DisasContext *ctx, TCGv EA, int mask)
cf360a32 2336{
42a268c2 2337 TCGLabel *l1 = gen_new_label();
cf360a32
AJ
2338 TCGv t0 = tcg_temp_new();
2339 TCGv_i32 t1, t2;
cf360a32
AJ
2340 tcg_gen_andi_tl(t0, EA, mask);
2341 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
2342 t1 = tcg_const_i32(POWERPC_EXCP_ALIGN);
3433b732 2343 t2 = tcg_const_i32(ctx->opcode & 0x03FF0000);
573708e3 2344 gen_update_nip(ctx, ctx->nip - 4);
e5f17ac6 2345 gen_helper_raise_exception_err(cpu_env, t1, t2);
cf360a32
AJ
2346 tcg_temp_free_i32(t1);
2347 tcg_temp_free_i32(t2);
2348 gen_set_label(l1);
2349 tcg_temp_free(t0);
2350}
2351
65f2475f
BH
2352static inline void gen_align_no_le(DisasContext *ctx)
2353{
2354 gen_exception_err(ctx, POWERPC_EXCP_ALIGN,
2355 (ctx->opcode & 0x03FF0000) | POWERPC_EXCP_ALIGN_LE);
2356}
2357
7863667f 2358/*** Integer load ***/
09bfe50d 2359#define DEF_MEMOP(op) ((op) | ctx->default_tcg_memop_mask)
ff5f3981 2360#define BSWAP_MEMOP(op) ((op) | (ctx->default_tcg_memop_mask ^ MO_BSWAP))
b61f2753 2361
09bfe50d
ND
2362#define GEN_QEMU_LOAD_TL(ldop, op) \
2363static void glue(gen_qemu_, ldop)(DisasContext *ctx, \
2364 TCGv val, \
2365 TCGv addr) \
2366{ \
2367 tcg_gen_qemu_ld_tl(val, addr, ctx->mem_idx, op); \
b61f2753
AJ
2368}
2369
09bfe50d
ND
2370GEN_QEMU_LOAD_TL(ld8u, DEF_MEMOP(MO_UB))
2371GEN_QEMU_LOAD_TL(ld16u, DEF_MEMOP(MO_UW))
2372GEN_QEMU_LOAD_TL(ld16s, DEF_MEMOP(MO_SW))
2373GEN_QEMU_LOAD_TL(ld32u, DEF_MEMOP(MO_UL))
2374GEN_QEMU_LOAD_TL(ld32s, DEF_MEMOP(MO_SL))
f976b09e 2375
ff5f3981
ND
2376GEN_QEMU_LOAD_TL(ld16ur, BSWAP_MEMOP(MO_UW))
2377GEN_QEMU_LOAD_TL(ld32ur, BSWAP_MEMOP(MO_UL))
2378
09bfe50d
ND
2379#define GEN_QEMU_LOAD_64(ldop, op) \
2380static void glue(gen_qemu_, glue(ldop, _i64))(DisasContext *ctx, \
2381 TCGv_i64 val, \
2382 TCGv addr) \
2383{ \
2384 tcg_gen_qemu_ld_i64(val, addr, ctx->mem_idx, op); \
b61f2753
AJ
2385}
2386
740ae9a2
ND
2387GEN_QEMU_LOAD_64(ld8u, DEF_MEMOP(MO_UB))
2388GEN_QEMU_LOAD_64(ld16u, DEF_MEMOP(MO_UW))
09bfe50d
ND
2389GEN_QEMU_LOAD_64(ld32u, DEF_MEMOP(MO_UL))
2390GEN_QEMU_LOAD_64(ld32s, DEF_MEMOP(MO_SL))
4f364fe7 2391GEN_QEMU_LOAD_64(ld64, DEF_MEMOP(MO_Q))
b61f2753 2392
ff5f3981
ND
2393#if defined(TARGET_PPC64)
2394GEN_QEMU_LOAD_64(ld64ur, BSWAP_MEMOP(MO_Q))
2395#endif
2396
761a89c6
ND
2397#define GEN_QEMU_STORE_TL(stop, op) \
2398static void glue(gen_qemu_, stop)(DisasContext *ctx, \
2399 TCGv val, \
2400 TCGv addr) \
2401{ \
2402 tcg_gen_qemu_st_tl(val, addr, ctx->mem_idx, op); \
b61f2753
AJ
2403}
2404
761a89c6
ND
2405GEN_QEMU_STORE_TL(st8, DEF_MEMOP(MO_UB))
2406GEN_QEMU_STORE_TL(st16, DEF_MEMOP(MO_UW))
2407GEN_QEMU_STORE_TL(st32, DEF_MEMOP(MO_UL))
b61f2753 2408
804108aa
ND
2409GEN_QEMU_STORE_TL(st16r, BSWAP_MEMOP(MO_UW))
2410GEN_QEMU_STORE_TL(st32r, BSWAP_MEMOP(MO_UL))
2411
761a89c6
ND
2412#define GEN_QEMU_STORE_64(stop, op) \
2413static void glue(gen_qemu_, glue(stop, _i64))(DisasContext *ctx, \
2414 TCGv_i64 val, \
2415 TCGv addr) \
2416{ \
2417 tcg_gen_qemu_st_i64(val, addr, ctx->mem_idx, op); \
b61f2753
AJ
2418}
2419
ddb9ac50
ND
2420GEN_QEMU_STORE_64(st8, DEF_MEMOP(MO_UB))
2421GEN_QEMU_STORE_64(st16, DEF_MEMOP(MO_UW))
761a89c6 2422GEN_QEMU_STORE_64(st32, DEF_MEMOP(MO_UL))
2468f23d 2423GEN_QEMU_STORE_64(st64, DEF_MEMOP(MO_Q))
b61f2753 2424
804108aa
ND
2425#if defined(TARGET_PPC64)
2426GEN_QEMU_STORE_64(st64r, BSWAP_MEMOP(MO_Q))
2427#endif
2428
0c8aacd4 2429#define GEN_LD(name, ldop, opc, type) \
99e300ef 2430static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 2431{ \
76db3ba4
AJ
2432 TCGv EA; \
2433 gen_set_access_type(ctx, ACCESS_INT); \
2434 EA = tcg_temp_new(); \
2435 gen_addr_imm_index(ctx, EA, 0); \
2436 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753 2437 tcg_temp_free(EA); \
79aceca5
FB
2438}
2439
0c8aacd4 2440#define GEN_LDU(name, ldop, opc, type) \
99e300ef 2441static void glue(gen_, name##u)(DisasContext *ctx) \
79aceca5 2442{ \
b61f2753 2443 TCGv EA; \
76a66253
JM
2444 if (unlikely(rA(ctx->opcode) == 0 || \
2445 rA(ctx->opcode) == rD(ctx->opcode))) { \
e06fcd75 2446 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2447 return; \
9a64fbe4 2448 } \
76db3ba4 2449 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2450 EA = tcg_temp_new(); \
9d53c753 2451 if (type == PPC_64B) \
76db3ba4 2452 gen_addr_imm_index(ctx, EA, 0x03); \
9d53c753 2453 else \
76db3ba4
AJ
2454 gen_addr_imm_index(ctx, EA, 0); \
2455 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753
AJ
2456 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2457 tcg_temp_free(EA); \
79aceca5
FB
2458}
2459
0c8aacd4 2460#define GEN_LDUX(name, ldop, opc2, opc3, type) \
99e300ef 2461static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 2462{ \
b61f2753 2463 TCGv EA; \
76a66253
JM
2464 if (unlikely(rA(ctx->opcode) == 0 || \
2465 rA(ctx->opcode) == rD(ctx->opcode))) { \
e06fcd75 2466 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2467 return; \
9a64fbe4 2468 } \
76db3ba4 2469 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2470 EA = tcg_temp_new(); \
76db3ba4
AJ
2471 gen_addr_reg_index(ctx, EA); \
2472 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753
AJ
2473 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2474 tcg_temp_free(EA); \
79aceca5
FB
2475}
2476
b7815375 2477#define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
99e300ef 2478static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 2479{ \
76db3ba4 2480 TCGv EA; \
b7815375 2481 chk; \
76db3ba4
AJ
2482 gen_set_access_type(ctx, ACCESS_INT); \
2483 EA = tcg_temp_new(); \
2484 gen_addr_reg_index(ctx, EA); \
2485 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
b61f2753 2486 tcg_temp_free(EA); \
79aceca5 2487}
b7815375 2488
cd6e9320 2489#define GEN_LDX(name, ldop, opc2, opc3, type) \
b7815375
BH
2490 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2491
2492#define GEN_LDX_HVRM(name, ldop, opc2, opc3, type) \
2493 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
79aceca5 2494
0c8aacd4
AJ
2495#define GEN_LDS(name, ldop, op, type) \
2496GEN_LD(name, ldop, op | 0x20, type); \
2497GEN_LDU(name, ldop, op | 0x21, type); \
2498GEN_LDUX(name, ldop, 0x17, op | 0x01, type); \
2499GEN_LDX(name, ldop, 0x17, op | 0x00, type)
79aceca5
FB
2500
2501/* lbz lbzu lbzux lbzx */
0c8aacd4 2502GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER);
79aceca5 2503/* lha lhau lhaux lhax */
0c8aacd4 2504GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER);
79aceca5 2505/* lhz lhzu lhzux lhzx */
0c8aacd4 2506GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER);
79aceca5 2507/* lwz lwzu lwzux lwzx */
0c8aacd4 2508GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER);
d9bce9d9 2509#if defined(TARGET_PPC64)
d9bce9d9 2510/* lwaux */
0c8aacd4 2511GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B);
d9bce9d9 2512/* lwax */
0c8aacd4 2513GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B);
d9bce9d9 2514/* ldux */
4f364fe7 2515GEN_LDUX(ld, ld64_i64, 0x15, 0x01, PPC_64B);
d9bce9d9 2516/* ldx */
4f364fe7 2517GEN_LDX(ld, ld64_i64, 0x15, 0x00, PPC_64B);
99e300ef 2518
b7815375 2519/* CI load/store variants */
4f364fe7 2520GEN_LDX_HVRM(ldcix, ld64_i64, 0x15, 0x1b, PPC_CILDST)
b7815375
BH
2521GEN_LDX_HVRM(lwzcix, ld32u, 0x15, 0x15, PPC_CILDST)
2522GEN_LDX_HVRM(lhzcix, ld16u, 0x15, 0x19, PPC_CILDST)
2523GEN_LDX_HVRM(lbzcix, ld8u, 0x15, 0x1a, PPC_CILDST)
2524
99e300ef 2525static void gen_ld(DisasContext *ctx)
d9bce9d9 2526{
b61f2753 2527 TCGv EA;
d9bce9d9
JM
2528 if (Rc(ctx->opcode)) {
2529 if (unlikely(rA(ctx->opcode) == 0 ||
2530 rA(ctx->opcode) == rD(ctx->opcode))) {
e06fcd75 2531 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
d9bce9d9
JM
2532 return;
2533 }
2534 }
76db3ba4 2535 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2536 EA = tcg_temp_new();
76db3ba4 2537 gen_addr_imm_index(ctx, EA, 0x03);
d9bce9d9
JM
2538 if (ctx->opcode & 0x02) {
2539 /* lwa (lwau is undefined) */
76db3ba4 2540 gen_qemu_ld32s(ctx, cpu_gpr[rD(ctx->opcode)], EA);
d9bce9d9
JM
2541 } else {
2542 /* ld - ldu */
4f364fe7 2543 gen_qemu_ld64_i64(ctx, cpu_gpr[rD(ctx->opcode)], EA);
d9bce9d9 2544 }
d9bce9d9 2545 if (Rc(ctx->opcode))
b61f2753
AJ
2546 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2547 tcg_temp_free(EA);
d9bce9d9 2548}
99e300ef 2549
54623277 2550/* lq */
99e300ef 2551static void gen_lq(DisasContext *ctx)
be147d08 2552{
be147d08 2553 int ra, rd;
b61f2753 2554 TCGv EA;
be147d08 2555
e0498daa
TM
2556 /* lq is a legal user mode instruction starting in ISA 2.07 */
2557 bool legal_in_user_mode = (ctx->insns_flags2 & PPC2_LSQ_ISA207) != 0;
2558 bool le_is_supported = (ctx->insns_flags2 & PPC2_LSQ_ISA207) != 0;
2559
c47493f2 2560 if (!legal_in_user_mode && ctx->pr) {
9b2fadda 2561 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2562 return;
2563 }
e0498daa
TM
2564
2565 if (!le_is_supported && ctx->le_mode) {
65f2475f 2566 gen_align_no_le(ctx);
e0498daa
TM
2567 return;
2568 }
be147d08
JM
2569 ra = rA(ctx->opcode);
2570 rd = rD(ctx->opcode);
2571 if (unlikely((rd & 1) || rd == ra)) {
e06fcd75 2572 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
be147d08
JM
2573 return;
2574 }
e0498daa 2575
76db3ba4 2576 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2577 EA = tcg_temp_new();
76db3ba4 2578 gen_addr_imm_index(ctx, EA, 0x0F);
e0498daa 2579
4f364fe7
ND
2580 /* We only need to swap high and low halves. gen_qemu_ld64_i64 does
2581 necessary 64-bit byteswap already. */
e0498daa 2582 if (unlikely(ctx->le_mode)) {
4f364fe7 2583 gen_qemu_ld64_i64(ctx, cpu_gpr[rd + 1], EA);
e0498daa 2584 gen_addr_add(ctx, EA, EA, 8);
4f364fe7 2585 gen_qemu_ld64_i64(ctx, cpu_gpr[rd], EA);
e0498daa 2586 } else {
4f364fe7 2587 gen_qemu_ld64_i64(ctx, cpu_gpr[rd], EA);
e0498daa 2588 gen_addr_add(ctx, EA, EA, 8);
4f364fe7 2589 gen_qemu_ld64_i64(ctx, cpu_gpr[rd + 1], EA);
e0498daa 2590 }
b61f2753 2591 tcg_temp_free(EA);
be147d08 2592}
d9bce9d9 2593#endif
79aceca5
FB
2594
2595/*** Integer store ***/
0c8aacd4 2596#define GEN_ST(name, stop, opc, type) \
99e300ef 2597static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 2598{ \
76db3ba4
AJ
2599 TCGv EA; \
2600 gen_set_access_type(ctx, ACCESS_INT); \
2601 EA = tcg_temp_new(); \
2602 gen_addr_imm_index(ctx, EA, 0); \
2603 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753 2604 tcg_temp_free(EA); \
79aceca5
FB
2605}
2606
0c8aacd4 2607#define GEN_STU(name, stop, opc, type) \
99e300ef 2608static void glue(gen_, stop##u)(DisasContext *ctx) \
79aceca5 2609{ \
b61f2753 2610 TCGv EA; \
76a66253 2611 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 2612 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2613 return; \
9a64fbe4 2614 } \
76db3ba4 2615 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2616 EA = tcg_temp_new(); \
9d53c753 2617 if (type == PPC_64B) \
76db3ba4 2618 gen_addr_imm_index(ctx, EA, 0x03); \
9d53c753 2619 else \
76db3ba4
AJ
2620 gen_addr_imm_index(ctx, EA, 0); \
2621 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753
AJ
2622 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2623 tcg_temp_free(EA); \
79aceca5
FB
2624}
2625
0c8aacd4 2626#define GEN_STUX(name, stop, opc2, opc3, type) \
99e300ef 2627static void glue(gen_, name##ux)(DisasContext *ctx) \
79aceca5 2628{ \
b61f2753 2629 TCGv EA; \
76a66253 2630 if (unlikely(rA(ctx->opcode) == 0)) { \
e06fcd75 2631 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL); \
9fddaa0c 2632 return; \
9a64fbe4 2633 } \
76db3ba4 2634 gen_set_access_type(ctx, ACCESS_INT); \
0c8aacd4 2635 EA = tcg_temp_new(); \
76db3ba4
AJ
2636 gen_addr_reg_index(ctx, EA); \
2637 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753
AJ
2638 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA); \
2639 tcg_temp_free(EA); \
79aceca5
FB
2640}
2641
b7815375 2642#define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
cd6e9320 2643static void glue(gen_, name##x)(DisasContext *ctx) \
79aceca5 2644{ \
76db3ba4 2645 TCGv EA; \
b7815375 2646 chk; \
76db3ba4
AJ
2647 gen_set_access_type(ctx, ACCESS_INT); \
2648 EA = tcg_temp_new(); \
2649 gen_addr_reg_index(ctx, EA); \
2650 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
b61f2753 2651 tcg_temp_free(EA); \
79aceca5 2652}
cd6e9320 2653#define GEN_STX(name, stop, opc2, opc3, type) \
b7815375
BH
2654 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_NONE)
2655
2656#define GEN_STX_HVRM(name, stop, opc2, opc3, type) \
2657 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
79aceca5 2658
0c8aacd4
AJ
2659#define GEN_STS(name, stop, op, type) \
2660GEN_ST(name, stop, op | 0x20, type); \
2661GEN_STU(name, stop, op | 0x21, type); \
2662GEN_STUX(name, stop, 0x17, op | 0x01, type); \
2663GEN_STX(name, stop, 0x17, op | 0x00, type)
79aceca5
FB
2664
2665/* stb stbu stbux stbx */
0c8aacd4 2666GEN_STS(stb, st8, 0x06, PPC_INTEGER);
79aceca5 2667/* sth sthu sthux sthx */
0c8aacd4 2668GEN_STS(sth, st16, 0x0C, PPC_INTEGER);
79aceca5 2669/* stw stwu stwux stwx */
0c8aacd4 2670GEN_STS(stw, st32, 0x04, PPC_INTEGER);
d9bce9d9 2671#if defined(TARGET_PPC64)
2468f23d
ND
2672GEN_STUX(std, st64_i64, 0x15, 0x05, PPC_64B);
2673GEN_STX(std, st64_i64, 0x15, 0x04, PPC_64B);
2674GEN_STX_HVRM(stdcix, st64_i64, 0x15, 0x1f, PPC_CILDST)
b7815375
BH
2675GEN_STX_HVRM(stwcix, st32, 0x15, 0x1c, PPC_CILDST)
2676GEN_STX_HVRM(sthcix, st16, 0x15, 0x1d, PPC_CILDST)
2677GEN_STX_HVRM(stbcix, st8, 0x15, 0x1e, PPC_CILDST)
99e300ef
BS
2678
2679static void gen_std(DisasContext *ctx)
d9bce9d9 2680{
be147d08 2681 int rs;
b61f2753 2682 TCGv EA;
be147d08
JM
2683
2684 rs = rS(ctx->opcode);
84cab1e2 2685 if ((ctx->opcode & 0x3) == 0x2) { /* stq */
84cab1e2
TM
2686 bool legal_in_user_mode = (ctx->insns_flags2 & PPC2_LSQ_ISA207) != 0;
2687 bool le_is_supported = (ctx->insns_flags2 & PPC2_LSQ_ISA207) != 0;
2688
dfdd3e43
BH
2689 if (!(ctx->insns_flags & PPC_64BX)) {
2690 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
2691 }
2692
c47493f2 2693 if (!legal_in_user_mode && ctx->pr) {
9b2fadda 2694 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC);
be147d08
JM
2695 return;
2696 }
84cab1e2
TM
2697
2698 if (!le_is_supported && ctx->le_mode) {
65f2475f 2699 gen_align_no_le(ctx);
d9bce9d9
JM
2700 return;
2701 }
84cab1e2
TM
2702
2703 if (unlikely(rs & 1)) {
2704 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
be147d08
JM
2705 return;
2706 }
76db3ba4 2707 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2708 EA = tcg_temp_new();
76db3ba4 2709 gen_addr_imm_index(ctx, EA, 0x03);
84cab1e2 2710
2468f23d 2711 /* We only need to swap high and low halves. gen_qemu_st64_i64 does
e22c357b 2712 necessary 64-bit byteswap already. */
84cab1e2 2713 if (unlikely(ctx->le_mode)) {
2468f23d 2714 gen_qemu_st64_i64(ctx, cpu_gpr[rs + 1], EA);
84cab1e2 2715 gen_addr_add(ctx, EA, EA, 8);
2468f23d 2716 gen_qemu_st64_i64(ctx, cpu_gpr[rs], EA);
84cab1e2 2717 } else {
2468f23d 2718 gen_qemu_st64_i64(ctx, cpu_gpr[rs], EA);
84cab1e2 2719 gen_addr_add(ctx, EA, EA, 8);
2468f23d 2720 gen_qemu_st64_i64(ctx, cpu_gpr[rs + 1], EA);
84cab1e2 2721 }
b61f2753 2722 tcg_temp_free(EA);
be147d08 2723 } else {
84cab1e2 2724 /* std / stdu*/
be147d08
JM
2725 if (Rc(ctx->opcode)) {
2726 if (unlikely(rA(ctx->opcode) == 0)) {
e06fcd75 2727 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
be147d08
JM
2728 return;
2729 }
2730 }
76db3ba4 2731 gen_set_access_type(ctx, ACCESS_INT);
a7812ae4 2732 EA = tcg_temp_new();
76db3ba4 2733 gen_addr_imm_index(ctx, EA, 0x03);
2468f23d 2734 gen_qemu_st64_i64(ctx, cpu_gpr[rs], EA);
be147d08 2735 if (Rc(ctx->opcode))
b61f2753
AJ
2736 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], EA);
2737 tcg_temp_free(EA);
d9bce9d9 2738 }
d9bce9d9
JM
2739}
2740#endif
79aceca5 2741/*** Integer load and store with byte reverse ***/
e22c357b 2742
79aceca5 2743/* lhbrx */
0c8aacd4 2744GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER);
b61f2753 2745
79aceca5 2746/* lwbrx */
0c8aacd4 2747GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER);
b61f2753 2748
cd6e9320
TH
2749#if defined(TARGET_PPC64)
2750/* ldbrx */
ff5f3981 2751GEN_LDX_E(ldbr, ld64ur_i64, 0x14, 0x10, PPC_NONE, PPC2_DBRX, CHK_NONE);
804108aa
ND
2752/* stdbrx */
2753GEN_STX_E(stdbr, st64r_i64, 0x14, 0x14, PPC_NONE, PPC2_DBRX, CHK_NONE);
cd6e9320
TH
2754#endif /* TARGET_PPC64 */
2755
79aceca5 2756/* sthbrx */
0c8aacd4 2757GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER);
79aceca5 2758/* stwbrx */
0c8aacd4 2759GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER);
79aceca5
FB
2760
2761/*** Integer load and store multiple ***/
99e300ef 2762
54623277 2763/* lmw */
99e300ef 2764static void gen_lmw(DisasContext *ctx)
79aceca5 2765{
76db3ba4
AJ
2766 TCGv t0;
2767 TCGv_i32 t1;
5817355e
BH
2768
2769 if (ctx->le_mode) {
2770 gen_align_no_le(ctx);
2771 return;
2772 }
76db3ba4 2773 gen_set_access_type(ctx, ACCESS_INT);
76db3ba4
AJ
2774 t0 = tcg_temp_new();
2775 t1 = tcg_const_i32(rD(ctx->opcode));
2776 gen_addr_imm_index(ctx, t0, 0);
2f5a189c 2777 gen_helper_lmw(cpu_env, t0, t1);
ff4a62cd
AJ
2778 tcg_temp_free(t0);
2779 tcg_temp_free_i32(t1);
79aceca5
FB
2780}
2781
2782/* stmw */
99e300ef 2783static void gen_stmw(DisasContext *ctx)
79aceca5 2784{
76db3ba4
AJ
2785 TCGv t0;
2786 TCGv_i32 t1;
5817355e
BH
2787
2788 if (ctx->le_mode) {
2789 gen_align_no_le(ctx);
2790 return;
2791 }
76db3ba4 2792 gen_set_access_type(ctx, ACCESS_INT);
76db3ba4
AJ
2793 t0 = tcg_temp_new();
2794 t1 = tcg_const_i32(rS(ctx->opcode));
2795 gen_addr_imm_index(ctx, t0, 0);
2f5a189c 2796 gen_helper_stmw(cpu_env, t0, t1);
ff4a62cd
AJ
2797 tcg_temp_free(t0);
2798 tcg_temp_free_i32(t1);
79aceca5
FB
2799}
2800
2801/*** Integer load and store strings ***/
54623277 2802
79aceca5 2803/* lswi */
3fc6c082 2804/* PowerPC32 specification says we must generate an exception if
9a64fbe4
FB
2805 * rA is in the range of registers to be loaded.
2806 * In an other hand, IBM says this is valid, but rA won't be loaded.
2807 * For now, I'll follow the spec...
2808 */
99e300ef 2809static void gen_lswi(DisasContext *ctx)
79aceca5 2810{
dfbc799d
AJ
2811 TCGv t0;
2812 TCGv_i32 t1, t2;
79aceca5
FB
2813 int nb = NB(ctx->opcode);
2814 int start = rD(ctx->opcode);
9a64fbe4 2815 int ra = rA(ctx->opcode);
79aceca5
FB
2816 int nr;
2817
5817355e
BH
2818 if (ctx->le_mode) {
2819 gen_align_no_le(ctx);
2820 return;
2821 }
79aceca5
FB
2822 if (nb == 0)
2823 nb = 32;
afbee712
TH
2824 nr = (nb + 3) / 4;
2825 if (unlikely(lsw_reg_in_range(start, nr, ra))) {
e06fcd75 2826 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_LSWX);
9fddaa0c 2827 return;
297d8e62 2828 }
76db3ba4 2829 gen_set_access_type(ctx, ACCESS_INT);
dfbc799d 2830 t0 = tcg_temp_new();
76db3ba4 2831 gen_addr_register(ctx, t0);
dfbc799d
AJ
2832 t1 = tcg_const_i32(nb);
2833 t2 = tcg_const_i32(start);
2f5a189c 2834 gen_helper_lsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2835 tcg_temp_free(t0);
2836 tcg_temp_free_i32(t1);
2837 tcg_temp_free_i32(t2);
79aceca5
FB
2838}
2839
2840/* lswx */
99e300ef 2841static void gen_lswx(DisasContext *ctx)
79aceca5 2842{
76db3ba4
AJ
2843 TCGv t0;
2844 TCGv_i32 t1, t2, t3;
5817355e
BH
2845
2846 if (ctx->le_mode) {
2847 gen_align_no_le(ctx);
2848 return;
2849 }
76db3ba4 2850 gen_set_access_type(ctx, ACCESS_INT);
76db3ba4
AJ
2851 t0 = tcg_temp_new();
2852 gen_addr_reg_index(ctx, t0);
2853 t1 = tcg_const_i32(rD(ctx->opcode));
2854 t2 = tcg_const_i32(rA(ctx->opcode));
2855 t3 = tcg_const_i32(rB(ctx->opcode));
2f5a189c 2856 gen_helper_lswx(cpu_env, t0, t1, t2, t3);
dfbc799d
AJ
2857 tcg_temp_free(t0);
2858 tcg_temp_free_i32(t1);
2859 tcg_temp_free_i32(t2);
2860 tcg_temp_free_i32(t3);
79aceca5
FB
2861}
2862
2863/* stswi */
99e300ef 2864static void gen_stswi(DisasContext *ctx)
79aceca5 2865{
76db3ba4
AJ
2866 TCGv t0;
2867 TCGv_i32 t1, t2;
4b3686fa 2868 int nb = NB(ctx->opcode);
5817355e
BH
2869
2870 if (ctx->le_mode) {
2871 gen_align_no_le(ctx);
2872 return;
2873 }
76db3ba4 2874 gen_set_access_type(ctx, ACCESS_INT);
76db3ba4
AJ
2875 t0 = tcg_temp_new();
2876 gen_addr_register(ctx, t0);
4b3686fa
FB
2877 if (nb == 0)
2878 nb = 32;
dfbc799d 2879 t1 = tcg_const_i32(nb);
76db3ba4 2880 t2 = tcg_const_i32(rS(ctx->opcode));
2f5a189c 2881 gen_helper_stsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2882 tcg_temp_free(t0);
2883 tcg_temp_free_i32(t1);
2884 tcg_temp_free_i32(t2);
79aceca5
FB
2885}
2886
2887/* stswx */
99e300ef 2888static void gen_stswx(DisasContext *ctx)
79aceca5 2889{
76db3ba4
AJ
2890 TCGv t0;
2891 TCGv_i32 t1, t2;
5817355e
BH
2892
2893 if (ctx->le_mode) {
2894 gen_align_no_le(ctx);
2895 return;
2896 }
76db3ba4 2897 gen_set_access_type(ctx, ACCESS_INT);
76db3ba4
AJ
2898 t0 = tcg_temp_new();
2899 gen_addr_reg_index(ctx, t0);
2900 t1 = tcg_temp_new_i32();
dfbc799d
AJ
2901 tcg_gen_trunc_tl_i32(t1, cpu_xer);
2902 tcg_gen_andi_i32(t1, t1, 0x7F);
76db3ba4 2903 t2 = tcg_const_i32(rS(ctx->opcode));
2f5a189c 2904 gen_helper_stsw(cpu_env, t0, t1, t2);
dfbc799d
AJ
2905 tcg_temp_free(t0);
2906 tcg_temp_free_i32(t1);
2907 tcg_temp_free_i32(t2);
79aceca5
FB
2908}
2909
2910/*** Memory synchronisation ***/
2911/* eieio */
99e300ef 2912static void gen_eieio(DisasContext *ctx)
79aceca5 2913{
79aceca5
FB
2914}
2915
c5a8d8f3 2916#if !defined(CONFIG_USER_ONLY)
e3cffe6f 2917static inline void gen_check_tlb_flush(DisasContext *ctx, bool global)
cd0c6f47 2918{
c5a8d8f3
BH
2919 TCGv_i32 t;
2920 TCGLabel *l;
cd0c6f47 2921
c5a8d8f3
BH
2922 if (!ctx->lazy_tlb_flush) {
2923 return;
2924 }
2925 l = gen_new_label();
2926 t = tcg_temp_new_i32();
cd0c6f47
BH
2927 tcg_gen_ld_i32(t, cpu_env, offsetof(CPUPPCState, tlb_need_flush));
2928 tcg_gen_brcondi_i32(TCG_COND_EQ, t, 0, l);
e3cffe6f
ND
2929 if (global) {
2930 gen_helper_check_tlb_flush_global(cpu_env);
2931 } else {
2932 gen_helper_check_tlb_flush_local(cpu_env);
2933 }
cd0c6f47
BH
2934 gen_set_label(l);
2935 tcg_temp_free_i32(t);
2936}
2937#else
e3cffe6f 2938static inline void gen_check_tlb_flush(DisasContext *ctx, bool global) { }
cd0c6f47
BH
2939#endif
2940
79aceca5 2941/* isync */
99e300ef 2942static void gen_isync(DisasContext *ctx)
79aceca5 2943{
cd0c6f47
BH
2944 /*
2945 * We need to check for a pending TLB flush. This can only happen in
2946 * kernel mode however so check MSR_PR
2947 */
2948 if (!ctx->pr) {
e3cffe6f 2949 gen_check_tlb_flush(ctx, false);
cd0c6f47 2950 }
e06fcd75 2951 gen_stop_exception(ctx);
79aceca5
FB
2952}
2953
48793c95
ND
2954#define MEMOP_GET_SIZE(x) (1 << ((x) & MO_SIZE))
2955
2956#define LARX(name, memop) \
5c77a786
TM
2957static void gen_##name(DisasContext *ctx) \
2958{ \
2959 TCGv t0; \
2960 TCGv gpr = cpu_gpr[rD(ctx->opcode)]; \
48793c95 2961 int len = MEMOP_GET_SIZE(memop); \
5c77a786
TM
2962 gen_set_access_type(ctx, ACCESS_RES); \
2963 t0 = tcg_temp_local_new(); \
2964 gen_addr_reg_index(ctx, t0); \
2965 if ((len) > 1) { \
2966 gen_check_align(ctx, t0, (len)-1); \
2967 } \
48793c95 2968 tcg_gen_qemu_ld_tl(gpr, t0, ctx->mem_idx, memop); \
5c77a786
TM
2969 tcg_gen_mov_tl(cpu_reserve, t0); \
2970 tcg_gen_st_tl(gpr, cpu_env, offsetof(CPUPPCState, reserve_val)); \
2971 tcg_temp_free(t0); \
79aceca5
FB
2972}
2973
5c77a786 2974/* lwarx */
48793c95
ND
2975LARX(lbarx, DEF_MEMOP(MO_UB))
2976LARX(lharx, DEF_MEMOP(MO_UW))
2977LARX(lwarx, DEF_MEMOP(MO_UL))
5c77a786 2978
a68a6146
B
2979#define LD_ATOMIC(name, memop, tp, op, eop) \
2980static void gen_##name(DisasContext *ctx) \
2981{ \
2982 int len = MEMOP_GET_SIZE(memop); \
2983 uint32_t gpr_FC = FC(ctx->opcode); \
2984 TCGv EA = tcg_temp_local_new(); \
2985 TCGv_##tp t0, t1; \
2986 \
2987 gen_addr_register(ctx, EA); \
2988 if (len > 1) { \
2989 gen_check_align(ctx, EA, len - 1); \
2990 } \
2991 t0 = tcg_temp_new_##tp(); \
2992 t1 = tcg_temp_new_##tp(); \
2993 tcg_gen_##op(t0, cpu_gpr[rD(ctx->opcode) + 1]); \
2994 \
2995 switch (gpr_FC) { \
2996 case 0: /* Fetch and add */ \
2997 tcg_gen_atomic_fetch_add_##tp(t1, EA, t0, ctx->mem_idx, memop); \
2998 break; \
2999 case 1: /* Fetch and xor */ \
3000 tcg_gen_atomic_fetch_xor_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3001 break; \
3002 case 2: /* Fetch and or */ \
3003 tcg_gen_atomic_fetch_or_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3004 break; \
3005 case 3: /* Fetch and 'and' */ \
3006 tcg_gen_atomic_fetch_and_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3007 break; \
3008 case 8: /* Swap */ \
3009 tcg_gen_atomic_xchg_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3010 break; \
3011 case 4: /* Fetch and max unsigned */ \
3012 case 5: /* Fetch and max signed */ \
3013 case 6: /* Fetch and min unsigned */ \
3014 case 7: /* Fetch and min signed */ \
3015 case 16: /* compare and swap not equal */ \
3016 case 24: /* Fetch and increment bounded */ \
3017 case 25: /* Fetch and increment equal */ \
3018 case 28: /* Fetch and decrement bounded */ \
3019 gen_invalid(ctx); \
3020 break; \
3021 default: \
3022 /* invoke data storage error handler */ \
3023 gen_exception_err(ctx, POWERPC_EXCP_DSI, POWERPC_EXCP_INVAL); \
3024 } \
3025 tcg_gen_##eop(cpu_gpr[rD(ctx->opcode)], t1); \
3026 tcg_temp_free_##tp(t0); \
3027 tcg_temp_free_##tp(t1); \
3028 tcg_temp_free(EA); \
3029}
3030
3031LD_ATOMIC(lwat, DEF_MEMOP(MO_UL), i32, trunc_tl_i32, extu_i32_tl)
3032#if defined(TARGET_PPC64)
3033LD_ATOMIC(ldat, DEF_MEMOP(MO_Q), i64, mov_i64, mov_i64)
3034#endif
3035
a3401188
B
3036#define ST_ATOMIC(name, memop, tp, op) \
3037static void gen_##name(DisasContext *ctx) \
3038{ \
3039 int len = MEMOP_GET_SIZE(memop); \
3040 uint32_t gpr_FC = FC(ctx->opcode); \
3041 TCGv EA = tcg_temp_local_new(); \
3042 TCGv_##tp t0, t1; \
3043 \
3044 gen_addr_register(ctx, EA); \
3045 if (len > 1) { \
3046 gen_check_align(ctx, EA, len - 1); \
3047 } \
3048 t0 = tcg_temp_new_##tp(); \
3049 t1 = tcg_temp_new_##tp(); \
3050 tcg_gen_##op(t0, cpu_gpr[rD(ctx->opcode) + 1]); \
3051 \
3052 switch (gpr_FC) { \
3053 case 0: /* add and Store */ \
3054 tcg_gen_atomic_add_fetch_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3055 break; \
3056 case 1: /* xor and Store */ \
3057 tcg_gen_atomic_xor_fetch_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3058 break; \
3059 case 2: /* Or and Store */ \
3060 tcg_gen_atomic_or_fetch_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3061 break; \
3062 case 3: /* 'and' and Store */ \
3063 tcg_gen_atomic_and_fetch_##tp(t1, EA, t0, ctx->mem_idx, memop); \
3064 break; \
3065 case 4: /* Store max unsigned */ \
3066 case 5: /* Store max signed */ \
3067 case 6: /* Store min unsigned */ \
3068 case 7: /* Store min signed */ \
3069 case 24: /* Store twin */ \
3070 gen_invalid(ctx); \
3071 break; \
3072 default: \
3073 /* invoke data storage error handler */ \
3074 gen_exception_err(ctx, POWERPC_EXCP_DSI, POWERPC_EXCP_INVAL); \
3075 } \
3076 tcg_temp_free_##tp(t0); \
3077 tcg_temp_free_##tp(t1); \
3078 tcg_temp_free(EA); \
3079}
3080
3081ST_ATOMIC(stwat, DEF_MEMOP(MO_UL), i32, trunc_tl_i32)
3082#if defined(TARGET_PPC64)
3083ST_ATOMIC(stdat, DEF_MEMOP(MO_Q), i64, mov_i64)
3084#endif
3085
4425265b 3086#if defined(CONFIG_USER_ONLY)
587c51f7 3087static void gen_conditional_store(DisasContext *ctx, TCGv EA,
2391b357 3088 int reg, int memop)
4425265b
NF
3089{
3090 TCGv t0 = tcg_temp_new();
4425265b 3091
1328c2bf 3092 tcg_gen_st_tl(EA, cpu_env, offsetof(CPUPPCState, reserve_ea));
2391b357 3093 tcg_gen_movi_tl(t0, (MEMOP_GET_SIZE(memop) << 5) | reg);
1328c2bf 3094 tcg_gen_st_tl(t0, cpu_env, offsetof(CPUPPCState, reserve_info));
4425265b 3095 tcg_temp_free(t0);
bd6fefe7 3096 gen_exception_err(ctx, POWERPC_EXCP_STCX, 0);
4425265b 3097}
4425265b 3098#else
587c51f7 3099static void gen_conditional_store(DisasContext *ctx, TCGv EA,
2391b357 3100 int reg, int memop)
587c51f7 3101{
42a268c2 3102 TCGLabel *l1;
4425265b 3103
587c51f7
TM
3104 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
3105 l1 = gen_new_label();
3106 tcg_gen_brcond_tl(TCG_COND_NE, EA, cpu_reserve, l1);
efa73196 3107 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], CRF_EQ);
2391b357 3108 tcg_gen_qemu_st_tl(cpu_gpr[reg], EA, ctx->mem_idx, memop);
587c51f7
TM
3109 gen_set_label(l1);
3110 tcg_gen_movi_tl(cpu_reserve, -1);
3111}
4425265b 3112#endif
587c51f7 3113
2391b357
ND
3114#define STCX(name, memop) \
3115static void gen_##name(DisasContext *ctx) \
3116{ \
3117 TCGv t0; \
3118 int len = MEMOP_GET_SIZE(memop); \
3119 gen_set_access_type(ctx, ACCESS_RES); \
3120 t0 = tcg_temp_local_new(); \
3121 gen_addr_reg_index(ctx, t0); \
3122 if (len > 1) { \
3123 gen_check_align(ctx, t0, (len) - 1); \
3124 } \
3125 gen_conditional_store(ctx, t0, rS(ctx->opcode), memop); \
3126 tcg_temp_free(t0); \
3127}
3128
3129STCX(stbcx_, DEF_MEMOP(MO_UB))
3130STCX(sthcx_, DEF_MEMOP(MO_UW))
3131STCX(stwcx_, DEF_MEMOP(MO_UL))
587c51f7 3132
426613db 3133#if defined(TARGET_PPC64)
426613db 3134/* ldarx */
48793c95 3135LARX(ldarx, DEF_MEMOP(MO_Q))
2391b357
ND
3136/* stdcx. */
3137STCX(stdcx_, DEF_MEMOP(MO_Q))
426613db 3138
9c294d5a
TM
3139/* lqarx */
3140static void gen_lqarx(DisasContext *ctx)
3141{
3142 TCGv EA;
3143 int rd = rD(ctx->opcode);
3144 TCGv gpr1, gpr2;
3145
3146 if (unlikely((rd & 1) || (rd == rA(ctx->opcode)) ||
3147 (rd == rB(ctx->opcode)))) {
3148 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
3149 return;
3150 }
3151
3152 gen_set_access_type(ctx, ACCESS_RES);
3153 EA = tcg_temp_local_new();
3154 gen_addr_reg_index(ctx, EA);
3155 gen_check_align(ctx, EA, 15);
3156 if (unlikely(ctx->le_mode)) {
3157 gpr1 = cpu_gpr[rd+1];
3158 gpr2 = cpu_gpr[rd];
3159 } else {
3160 gpr1 = cpu_gpr[rd];
3161 gpr2 = cpu_gpr[rd+1];
3162 }
48793c95 3163 tcg_gen_qemu_ld_i64(gpr1, EA, ctx->mem_idx, DEF_MEMOP(MO_Q));
9c294d5a 3164 tcg_gen_mov_tl(cpu_reserve, EA);
9c294d5a 3165 gen_addr_add(ctx, EA, EA, 8);
48793c95 3166 tcg_gen_qemu_ld_i64(gpr2, EA, ctx->mem_idx, DEF_MEMOP(MO_Q));
9c294d5a
TM
3167
3168 tcg_gen_st_tl(gpr1, cpu_env, offsetof(CPUPPCState, reserve_val));
3169 tcg_gen_st_tl(gpr2, cpu_env, offsetof(CPUPPCState, reserve_val2));
9c294d5a
TM
3170 tcg_temp_free(EA);
3171}
3172
aa2008af
ND
3173/* stqcx. */
3174static void gen_stqcx_(DisasContext *ctx)
3175{
3176 TCGv EA;
3177 int reg = rS(ctx->opcode);
3178 int len = 16;
3179#if !defined(CONFIG_USER_ONLY)
3180 TCGLabel *l1;
3181 TCGv gpr1, gpr2;
3182#endif
3183
3184 if (unlikely((rD(ctx->opcode) & 1))) {
3185 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
3186 return;
3187 }
3188 gen_set_access_type(ctx, ACCESS_RES);
3189 EA = tcg_temp_local_new();
3190 gen_addr_reg_index(ctx, EA);
3191 if (len > 1) {
3192 gen_check_align(ctx, EA, (len) - 1);
3193 }
3194
3195#if defined(CONFIG_USER_ONLY)
3196 gen_conditional_store(ctx, EA, reg, 16);
3197#else
3198 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
3199 l1 = gen_new_label();
3200 tcg_gen_brcond_tl(TCG_COND_NE, EA, cpu_reserve, l1);
efa73196 3201 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], CRF_EQ);
aa2008af
ND
3202
3203 if (unlikely(ctx->le_mode)) {
3204 gpr1 = cpu_gpr[reg + 1];
3205 gpr2 = cpu_gpr[reg];
3206 } else {
3207 gpr1 = cpu_gpr[reg];
3208 gpr2 = cpu_gpr[reg + 1];
3209 }
3210 tcg_gen_qemu_st_tl(gpr1, EA, ctx->mem_idx, DEF_MEMOP(MO_Q));
3211 gen_addr_add(ctx, EA, EA, 8);
3212 tcg_gen_qemu_st_tl(gpr2, EA, ctx->mem_idx, DEF_MEMOP(MO_Q));
3213
3214 gen_set_label(l1);
3215 tcg_gen_movi_tl(cpu_reserve, -1);
3216#endif
3217 tcg_temp_free(EA);
3218}
3219
426613db
JM
3220#endif /* defined(TARGET_PPC64) */
3221
79aceca5 3222/* sync */
99e300ef 3223static void gen_sync(DisasContext *ctx)
79aceca5 3224{
cd0c6f47
BH
3225 uint32_t l = (ctx->opcode >> 21) & 3;
3226
3227 /*
c5a8d8f3
BH
3228 * We may need to check for a pending TLB flush.
3229 *
3230 * We do this on ptesync (l == 2) on ppc64 and any sync pn ppc32.
3231 *
3232 * Additionally, this can only happen in kernel mode however so
3233 * check MSR_PR as well.
cd0c6f47 3234 */
c5a8d8f3 3235 if (((l == 2) || !(ctx->insns_flags & PPC_64B)) && !ctx->pr) {
e3cffe6f 3236 gen_check_tlb_flush(ctx, true);
cd0c6f47 3237 }
79aceca5
FB
3238}
3239
0db1b20e 3240/* wait */
99e300ef 3241static void gen_wait(DisasContext *ctx)
0db1b20e 3242{
35b5066e 3243 TCGv_i32 t0 = tcg_const_i32(1);
259186a7
AF
3244 tcg_gen_st_i32(t0, cpu_env,
3245 -offsetof(PowerPCCPU, env) + offsetof(CPUState, halted));
931ff272 3246 tcg_temp_free_i32(t0);
0db1b20e 3247 /* Stop translation, as the CPU is supposed to sleep from now */
bd6fefe7 3248 gen_exception_nip(ctx, EXCP_HLT, ctx->nip);
0db1b20e
JM
3249}
3250
7778a575
BH
3251#if defined(TARGET_PPC64)
3252static void gen_doze(DisasContext *ctx)
3253{
3254#if defined(CONFIG_USER_ONLY)
3255 GEN_PRIV;
3256#else
3257 TCGv_i32 t;
3258
3259 CHK_HV;
3260 t = tcg_const_i32(PPC_PM_DOZE);
3261 gen_helper_pminsn(cpu_env, t);
3262 tcg_temp_free_i32(t);
3263 gen_stop_exception(ctx);
3264#endif /* defined(CONFIG_USER_ONLY) */
3265}
3266
3267static void gen_nap(DisasContext *ctx)
3268{
3269#if defined(CONFIG_USER_ONLY)
3270 GEN_PRIV;
3271#else
3272 TCGv_i32 t;
3273
3274 CHK_HV;
3275 t = tcg_const_i32(PPC_PM_NAP);
3276 gen_helper_pminsn(cpu_env, t);
3277 tcg_temp_free_i32(t);
3278 gen_stop_exception(ctx);
3279#endif /* defined(CONFIG_USER_ONLY) */
3280}
3281
cdee0e72
ND
3282static void gen_stop(DisasContext *ctx)
3283{
3284 gen_nap(ctx);
3285}
3286
7778a575
BH
3287static void gen_sleep(DisasContext *ctx)
3288{
3289#if defined(CONFIG_USER_ONLY)
3290 GEN_PRIV;
3291#else
3292 TCGv_i32 t;
3293
3294 CHK_HV;
3295 t = tcg_const_i32(PPC_PM_SLEEP);
3296 gen_helper_pminsn(cpu_env, t);
3297 tcg_temp_free_i32(t);
3298 gen_stop_exception(ctx);
3299#endif /* defined(CONFIG_USER_ONLY) */
3300}
3301
3302static void gen_rvwinkle(DisasContext *ctx)
3303{
3304#if defined(CONFIG_USER_ONLY)
3305 GEN_PRIV;
3306#else
3307 TCGv_i32 t;
3308
3309 CHK_HV;
3310 t = tcg_const_i32(PPC_PM_RVWINKLE);
3311 gen_helper_pminsn(cpu_env, t);
3312 tcg_temp_free_i32(t);
3313 gen_stop_exception(ctx);
3314#endif /* defined(CONFIG_USER_ONLY) */
3315}
3316#endif /* #if defined(TARGET_PPC64) */
3317
697ab892
DG
3318static inline void gen_update_cfar(DisasContext *ctx, target_ulong nip)
3319{
3320#if defined(TARGET_PPC64)
3321 if (ctx->has_cfar)
3322 tcg_gen_movi_tl(cpu_cfar, nip);
3323#endif
3324}
3325
90aa39a1
SF
3326static inline bool use_goto_tb(DisasContext *ctx, target_ulong dest)
3327{
3328 if (unlikely(ctx->singlestep_enabled)) {
3329 return false;
3330 }
3331
3332#ifndef CONFIG_USER_ONLY
3333 return (ctx->tb->pc & TARGET_PAGE_MASK) == (dest & TARGET_PAGE_MASK);
3334#else
3335 return true;
3336#endif
3337}
3338
79aceca5 3339/*** Branch ***/
636aa200 3340static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest)
c1942362 3341{
e0c8f9ce 3342 if (NARROW_MODE(ctx)) {
a2ffb812 3343 dest = (uint32_t) dest;
e0c8f9ce 3344 }
90aa39a1 3345 if (use_goto_tb(ctx, dest)) {
57fec1fe 3346 tcg_gen_goto_tb(n);
a2ffb812 3347 tcg_gen_movi_tl(cpu_nip, dest & ~3);
90aa39a1 3348 tcg_gen_exit_tb((uintptr_t)ctx->tb + n);
c1942362 3349 } else {
a2ffb812 3350 tcg_gen_movi_tl(cpu_nip, dest & ~3);
8cbcb4fa
AJ
3351 if (unlikely(ctx->singlestep_enabled)) {
3352 if ((ctx->singlestep_enabled &
bdc4e053 3353 (CPU_BRANCH_STEP | CPU_SINGLE_STEP)) &&
f0cc4aa8
JG
3354 (ctx->exception == POWERPC_EXCP_BRANCH ||
3355 ctx->exception == POWERPC_EXCP_TRACE)) {
bd6fefe7 3356 gen_exception_nip(ctx, POWERPC_EXCP_TRACE, dest);
8cbcb4fa
AJ
3357 }
3358 if (ctx->singlestep_enabled & GDBSTUB_SINGLE_STEP) {
e06fcd75 3359 gen_debug_exception(ctx);
8cbcb4fa
AJ
3360 }
3361 }
57fec1fe 3362 tcg_gen_exit_tb(0);
c1942362 3363 }
c53be334
FB
3364}
3365
636aa200 3366static inline void gen_setlr(DisasContext *ctx, target_ulong nip)
e1833e1f 3367{
e0c8f9ce
RH
3368 if (NARROW_MODE(ctx)) {
3369 nip = (uint32_t)nip;
3370 }
3371 tcg_gen_movi_tl(cpu_lr, nip);
e1833e1f
JM
3372}
3373
79aceca5 3374/* b ba bl bla */
99e300ef 3375static void gen_b(DisasContext *ctx)
79aceca5 3376{
76a66253 3377 target_ulong li, target;
38a64f9d 3378
8cbcb4fa 3379 ctx->exception = POWERPC_EXCP_BRANCH;
38a64f9d 3380 /* sign extend LI */
e0c8f9ce
RH
3381 li = LI(ctx->opcode);
3382 li = (li ^ 0x02000000) - 0x02000000;
3383 if (likely(AA(ctx->opcode) == 0)) {
046d6672 3384 target = ctx->nip + li - 4;
e0c8f9ce 3385 } else {
9a64fbe4 3386 target = li;
e0c8f9ce
RH
3387 }
3388 if (LK(ctx->opcode)) {
e1833e1f 3389 gen_setlr(ctx, ctx->nip);
e0c8f9ce 3390 }
fbc3b39b 3391 gen_update_cfar(ctx, ctx->nip - 4);
c1942362 3392 gen_goto_tb(ctx, 0, target);
79aceca5
FB
3393}
3394
e98a6e40
FB
3395#define BCOND_IM 0
3396#define BCOND_LR 1
3397#define BCOND_CTR 2
52a4984d 3398#define BCOND_TAR 3
e98a6e40 3399
636aa200 3400static inline void gen_bcond(DisasContext *ctx, int type)
d9bce9d9 3401{
d9bce9d9 3402 uint32_t bo = BO(ctx->opcode);
42a268c2 3403 TCGLabel *l1;
a2ffb812 3404 TCGv target;
e98a6e40 3405
8cbcb4fa 3406 ctx->exception = POWERPC_EXCP_BRANCH;
52a4984d 3407 if (type == BCOND_LR || type == BCOND_CTR || type == BCOND_TAR) {
a7812ae4 3408 target = tcg_temp_local_new();
a2ffb812
AJ
3409 if (type == BCOND_CTR)
3410 tcg_gen_mov_tl(target, cpu_ctr);
52a4984d
TM
3411 else if (type == BCOND_TAR)
3412 gen_load_spr(target, SPR_TAR);
a2ffb812
AJ
3413 else
3414 tcg_gen_mov_tl(target, cpu_lr);
d2e9fd8f 3415 } else {
3416 TCGV_UNUSED(target);
e98a6e40 3417 }
e1833e1f
JM
3418 if (LK(ctx->opcode))
3419 gen_setlr(ctx, ctx->nip);
a2ffb812
AJ
3420 l1 = gen_new_label();
3421 if ((bo & 0x4) == 0) {
3422 /* Decrement and test CTR */
a7812ae4 3423 TCGv temp = tcg_temp_new();
a2ffb812 3424 if (unlikely(type == BCOND_CTR)) {
e06fcd75 3425 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
a2ffb812
AJ
3426 return;
3427 }
3428 tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);
e0c8f9ce 3429 if (NARROW_MODE(ctx)) {
a2ffb812 3430 tcg_gen_ext32u_tl(temp, cpu_ctr);
e0c8f9ce 3431 } else {
a2ffb812 3432 tcg_gen_mov_tl(temp, cpu_ctr);
e0c8f9ce 3433 }
a2ffb812
AJ
3434 if (bo & 0x2) {
3435 tcg_gen_brcondi_tl(TCG_COND_NE, temp, 0, l1);
3436 } else {
3437 tcg_gen_brcondi_tl(TCG_COND_EQ, temp, 0, l1);
e98a6e40 3438 }
a7812ae4 3439 tcg_temp_free(temp);
a2ffb812
AJ
3440 }
3441 if ((bo & 0x10) == 0) {
3442 /* Test CR */
3443 uint32_t bi = BI(ctx->opcode);
8f9fb7ac 3444 uint32_t mask = 0x08 >> (bi & 0x03);
a7812ae4 3445 TCGv_i32 temp = tcg_temp_new_i32();
a2ffb812 3446
d9bce9d9 3447 if (bo & 0x8) {
a2ffb812
AJ
3448 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3449 tcg_gen_brcondi_i32(TCG_COND_EQ, temp, 0, l1);
d9bce9d9 3450 } else {
a2ffb812
AJ
3451 tcg_gen_andi_i32(temp, cpu_crf[bi >> 2], mask);
3452 tcg_gen_brcondi_i32(TCG_COND_NE, temp, 0, l1);
d9bce9d9 3453 }
a7812ae4 3454 tcg_temp_free_i32(temp);
d9bce9d9 3455 }
fbc3b39b 3456 gen_update_cfar(ctx, ctx->nip - 4);
e98a6e40 3457 if (type == BCOND_IM) {
a2ffb812
AJ
3458 target_ulong li = (target_long)((int16_t)(BD(ctx->opcode)));
3459 if (likely(AA(ctx->opcode) == 0)) {
3460 gen_goto_tb(ctx, 0, ctx->nip + li - 4);
3461 } else {
3462 gen_goto_tb(ctx, 0, li);
3463 }
accc60c4
BH
3464 if ((bo & 0x14) != 0x14) {
3465 gen_set_label(l1);
3466 gen_goto_tb(ctx, 1, ctx->nip);
3467 }
e98a6e40 3468 } else {
e0c8f9ce 3469 if (NARROW_MODE(ctx)) {
a2ffb812 3470 tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
e0c8f9ce 3471 } else {
a2ffb812 3472 tcg_gen_andi_tl(cpu_nip, target, ~3);
e0c8f9ce 3473 }
a2ffb812 3474 tcg_gen_exit_tb(0);
accc60c4
BH
3475 if ((bo & 0x14) != 0x14) {
3476 gen_set_label(l1);
3477 gen_update_nip(ctx, ctx->nip);
3478 tcg_gen_exit_tb(0);
3479 }
08e46e54 3480 }
a9e8f4e7 3481 if (type == BCOND_LR || type == BCOND_CTR || type == BCOND_TAR) {
c80d1df5
AG
3482 tcg_temp_free(target);
3483 }
e98a6e40
FB
3484}
3485
99e300ef 3486static void gen_bc(DisasContext *ctx)
3b46e624 3487{
e98a6e40
FB
3488 gen_bcond(ctx, BCOND_IM);
3489}
3490
99e300ef 3491static void gen_bcctr(DisasContext *ctx)
3b46e624 3492{
e98a6e40
FB
3493 gen_bcond(ctx, BCOND_CTR);
3494}
3495
99e300ef 3496static void gen_bclr(DisasContext *ctx)
3b46e624 3497{
e98a6e40
FB
3498 gen_bcond(ctx, BCOND_LR);
3499}
79aceca5 3500
52a4984d
TM
3501static void gen_bctar(DisasContext *ctx)
3502{
3503 gen_bcond(ctx, BCOND_TAR);
3504}
3505
79aceca5 3506/*** Condition register logical ***/
e1571908 3507#define GEN_CRLOGIC(name, tcg_op, opc) \
99e300ef 3508static void glue(gen_, name)(DisasContext *ctx) \
79aceca5 3509{ \
fc0d441e
JM
3510 uint8_t bitmask; \
3511 int sh; \
a7812ae4 3512 TCGv_i32 t0, t1; \
fc0d441e 3513 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
a7812ae4 3514 t0 = tcg_temp_new_i32(); \
fc0d441e 3515 if (sh > 0) \
fea0c503 3516 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
fc0d441e 3517 else if (sh < 0) \
fea0c503 3518 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
e1571908 3519 else \
fea0c503 3520 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
a7812ae4 3521 t1 = tcg_temp_new_i32(); \
fc0d441e
JM
3522 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
3523 if (sh > 0) \
fea0c503 3524 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
fc0d441e 3525 else if (sh < 0) \
fea0c503 3526 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
e1571908 3527 else \
fea0c503
AJ
3528 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
3529 tcg_op(t0, t0, t1); \
8f9fb7ac 3530 bitmask = 0x08 >> (crbD(ctx->opcode) & 0x03); \
fea0c503
AJ
3531 tcg_gen_andi_i32(t0, t0, bitmask); \
3532 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
3533 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
a7812ae4
PB
3534 tcg_temp_free_i32(t0); \
3535 tcg_temp_free_i32(t1); \
79aceca5
FB
3536}
3537
3538/* crand */
e1571908 3539GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08);
79aceca5 3540/* crandc */
e1571908 3541GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04);
79aceca5 3542/* creqv */
e1571908 3543GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09);
79aceca5 3544/* crnand */
e1571908 3545GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07);
79aceca5 3546/* crnor */
e1571908 3547GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01);
79aceca5 3548/* cror */
e1571908 3549GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E);
79aceca5 3550/* crorc */
e1571908 3551GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D);
79aceca5 3552/* crxor */
e1571908 3553GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06);
99e300ef 3554
54623277 3555/* mcrf */
99e300ef 3556static void gen_mcrf(DisasContext *ctx)
79aceca5 3557{
47e4661c 3558 tcg_gen_mov_i32(cpu_crf[crfD(ctx->opcode)], cpu_crf[crfS(ctx->opcode)]);
79aceca5
FB
3559}
3560
3561/*** System linkage ***/
99e300ef 3562
c47493f2 3563/* rfi (supervisor only) */
99e300ef 3564static void gen_rfi(DisasContext *ctx)
79aceca5 3565{
9a64fbe4 3566#if defined(CONFIG_USER_ONLY)
9b2fadda 3567 GEN_PRIV;
9a64fbe4 3568#else
6ca038c2
BH
3569 /* This instruction doesn't exist anymore on 64-bit server
3570 * processors compliant with arch 2.x
a2e71b28 3571 */
6ca038c2
BH
3572 if (ctx->insns_flags & PPC_SEGMENT_64B) {
3573 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
3574 return;
3575 }
9a64fbe4 3576 /* Restore CPU state */
9b2fadda 3577 CHK_SV;
fbc3b39b 3578 gen_update_cfar(ctx, ctx->nip - 4);
e5f17ac6 3579 gen_helper_rfi(cpu_env);
e06fcd75 3580 gen_sync_exception(ctx);
9a64fbe4 3581#endif
79aceca5
FB
3582}
3583
426613db 3584#if defined(TARGET_PPC64)
99e300ef 3585static void gen_rfid(DisasContext *ctx)
426613db
JM
3586{
3587#if defined(CONFIG_USER_ONLY)
9b2fadda 3588 GEN_PRIV;
426613db
JM
3589#else
3590 /* Restore CPU state */
9b2fadda 3591 CHK_SV;
fbc3b39b 3592 gen_update_cfar(ctx, ctx->nip - 4);
e5f17ac6 3593 gen_helper_rfid(cpu_env);
e06fcd75 3594 gen_sync_exception(ctx);
426613db
JM
3595#endif
3596}
426613db 3597
99e300ef 3598static void gen_hrfid(DisasContext *ctx)
be147d08
JM
3599{
3600#if defined(CONFIG_USER_ONLY)
9b2fadda 3601 GEN_PRIV;
be147d08
JM
3602#else
3603 /* Restore CPU state */
9b2fadda 3604 CHK_HV;
e5f17ac6 3605 gen_helper_hrfid(cpu_env);
e06fcd75 3606 gen_sync_exception(ctx);
be147d08
JM
3607#endif
3608}
3609#endif
3610
79aceca5 3611/* sc */
417bf010
JM
3612#if defined(CONFIG_USER_ONLY)
3613#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
3614#else
3615#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
3616#endif
99e300ef 3617static void gen_sc(DisasContext *ctx)
79aceca5 3618{
e1833e1f
JM
3619 uint32_t lev;
3620
3621 lev = (ctx->opcode >> 5) & 0x7F;
e06fcd75 3622 gen_exception_err(ctx, POWERPC_SYSCALL, lev);
79aceca5
FB
3623}
3624
3625/*** Trap ***/
99e300ef 3626
22b56ee5
BH
3627/* Check for unconditional traps (always or never) */
3628static bool check_unconditional_trap(DisasContext *ctx)
3629{
3630 /* Trap never */
3631 if (TO(ctx->opcode) == 0) {
3632 return true;
3633 }
3634 /* Trap always */
3635 if (TO(ctx->opcode) == 31) {
3636 gen_exception_err(ctx, POWERPC_EXCP_PROGRAM, POWERPC_EXCP_TRAP);
3637 return true;
3638 }
3639 return false;
3640}
3641
54623277 3642/* tw */
99e300ef 3643static void gen_tw(DisasContext *ctx)
79aceca5 3644{
22b56ee5
BH
3645 TCGv_i32 t0;
3646
3647 if (check_unconditional_trap(ctx)) {
3648 return;
3649 }
3650 t0 = tcg_const_i32(TO(ctx->opcode));
e5f17ac6
BS
3651 gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3652 t0);
cab3bee2 3653 tcg_temp_free_i32(t0);
79aceca5
FB
3654}
3655
3656/* twi */
99e300ef 3657static void gen_twi(DisasContext *ctx)
79aceca5 3658{
22b56ee5
BH
3659 TCGv t0;
3660 TCGv_i32 t1;
3661
3662 if (check_unconditional_trap(ctx)) {
3663 return;
3664 }
3665 t0 = tcg_const_tl(SIMM(ctx->opcode));
3666 t1 = tcg_const_i32(TO(ctx->opcode));
e5f17ac6 3667 gen_helper_tw(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
cab3bee2
AJ
3668 tcg_temp_free(t0);
3669 tcg_temp_free_i32(t1);
79aceca5
FB
3670}
3671
d9bce9d9
JM
3672#if defined(TARGET_PPC64)
3673/* td */
99e300ef 3674static void gen_td(DisasContext *ctx)
d9bce9d9 3675{
22b56ee5
BH
3676 TCGv_i32 t0;
3677
3678 if (check_unconditional_trap(ctx)) {
3679 return;
3680 }
3681 t0 = tcg_const_i32(TO(ctx->opcode));
e5f17ac6
BS
3682 gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)],
3683 t0);
cab3bee2 3684 tcg_temp_free_i32(t0);
d9bce9d9
JM
3685}
3686
3687/* tdi */
99e300ef 3688static void gen_tdi(DisasContext *ctx)
d9bce9d9 3689{
22b56ee5
BH
3690 TCGv t0;
3691 TCGv_i32 t1;
3692
3693 if (check_unconditional_trap(ctx)) {
3694 return;
3695 }
3696 t0 = tcg_const_tl(SIMM(ctx->opcode));
3697 t1 = tcg_const_i32(TO(ctx->opcode));
e5f17ac6 3698 gen_helper_td(cpu_env, cpu_gpr[rA(ctx->opcode)], t0, t1);
cab3bee2
AJ
3699 tcg_temp_free(t0);
3700 tcg_temp_free_i32(t1);
d9bce9d9
JM
3701}
3702#endif
3703
79aceca5 3704/*** Processor control ***/
99e300ef 3705
da91a00f
RH
3706static void gen_read_xer(TCGv dst)
3707{
3708 TCGv t0 = tcg_temp_new();
3709 TCGv t1 = tcg_temp_new();
3710 TCGv t2 = tcg_temp_new();
3711 tcg_gen_mov_tl(dst, cpu_xer);
3712 tcg_gen_shli_tl(t0, cpu_so, XER_SO);
3713 tcg_gen_shli_tl(t1, cpu_ov, XER_OV);
3714 tcg_gen_shli_tl(t2, cpu_ca, XER_CA);
3715 tcg_gen_or_tl(t0, t0, t1);
3716 tcg_gen_or_tl(dst, dst, t2);
3717 tcg_gen_or_tl(dst, dst, t0);
3718 tcg_temp_free(t0);
3719 tcg_temp_free(t1);
3720 tcg_temp_free(t2);
3721}
3722
3723static void gen_write_xer(TCGv src)
3724{
3725 tcg_gen_andi_tl(cpu_xer, src,
3726 ~((1u << XER_SO) | (1u << XER_OV) | (1u << XER_CA)));
3727 tcg_gen_shri_tl(cpu_so, src, XER_SO);
3728 tcg_gen_shri_tl(cpu_ov, src, XER_OV);
3729 tcg_gen_shri_tl(cpu_ca, src, XER_CA);
3730 tcg_gen_andi_tl(cpu_so, cpu_so, 1);
3731 tcg_gen_andi_tl(cpu_ov, cpu_ov, 1);
3732 tcg_gen_andi_tl(cpu_ca, cpu_ca, 1);
3733}
3734
54623277 3735/* mcrxr */
99e300ef 3736static void gen_mcrxr(DisasContext *ctx)
79aceca5 3737{
da91a00f
RH
3738 TCGv_i32 t0 = tcg_temp_new_i32();
3739 TCGv_i32 t1 = tcg_temp_new_i32();
3740 TCGv_i32 dst = cpu_crf[crfD(ctx->opcode)];
3741
3742 tcg_gen_trunc_tl_i32(t0, cpu_so);
3743 tcg_gen_trunc_tl_i32(t1, cpu_ov);
3744 tcg_gen_trunc_tl_i32(dst, cpu_ca);
294d1292
SB
3745 tcg_gen_shli_i32(t0, t0, 3);
3746 tcg_gen_shli_i32(t1, t1, 2);
3747 tcg_gen_shli_i32(dst, dst, 1);
da91a00f
RH
3748 tcg_gen_or_i32(dst, dst, t0);
3749 tcg_gen_or_i32(dst, dst, t1);
3750 tcg_temp_free_i32(t0);
3751 tcg_temp_free_i32(t1);
3752
3753 tcg_gen_movi_tl(cpu_so, 0);
3754 tcg_gen_movi_tl(cpu_ov, 0);
3755 tcg_gen_movi_tl(cpu_ca, 0);
79aceca5
FB
3756}
3757
0cfe11ea 3758/* mfcr mfocrf */
99e300ef 3759static void gen_mfcr(DisasContext *ctx)
79aceca5 3760{
76a66253 3761 uint32_t crm, crn;
3b46e624 3762
76a66253
JM
3763 if (likely(ctx->opcode & 0x00100000)) {
3764 crm = CRM(ctx->opcode);
8dd640e4 3765 if (likely(crm && ((crm & (crm - 1)) == 0))) {
0cfe11ea 3766 crn = ctz32 (crm);
e1571908 3767 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], cpu_crf[7 - crn]);
0497d2f4
AJ
3768 tcg_gen_shli_tl(cpu_gpr[rD(ctx->opcode)],
3769 cpu_gpr[rD(ctx->opcode)], crn * 4);
76a66253 3770 }
d9bce9d9 3771 } else {
651721b2
AJ
3772 TCGv_i32 t0 = tcg_temp_new_i32();
3773 tcg_gen_mov_i32(t0, cpu_crf[0]);
3774 tcg_gen_shli_i32(t0, t0, 4);
3775 tcg_gen_or_i32(t0, t0, cpu_crf[1]);
3776 tcg_gen_shli_i32(t0, t0, 4);
3777 tcg_gen_or_i32(t0, t0, cpu_crf[2]);
3778 tcg_gen_shli_i32(t0, t0, 4);
3779 tcg_gen_or_i32(t0, t0, cpu_crf[3]);
3780 tcg_gen_shli_i32(t0, t0, 4);
3781 tcg_gen_or_i32(t0, t0, cpu_crf[4]);
3782 tcg_gen_shli_i32(t0, t0, 4);
3783 tcg_gen_or_i32(t0, t0, cpu_crf[5]);
3784 tcg_gen_shli_i32(t0, t0, 4);
3785 tcg_gen_or_i32(t0, t0, cpu_crf[6]);
3786 tcg_gen_shli_i32(t0, t0, 4);
3787 tcg_gen_or_i32(t0, t0, cpu_crf[7]);
3788 tcg_gen_extu_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
3789 tcg_temp_free_i32(t0);
d9bce9d9 3790 }
79aceca5
FB
3791}
3792
3793/* mfmsr */
99e300ef 3794static void gen_mfmsr(DisasContext *ctx)
79aceca5 3795{
9b2fadda 3796 CHK_SV;
6527f6ea 3797 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_msr);
79aceca5
FB
3798}
3799
69b058c8 3800static void spr_noaccess(DisasContext *ctx, int gprn, int sprn)
3fc6c082 3801{
7b13448f 3802#if 0
3fc6c082
FB
3803 sprn = ((sprn >> 5) & 0x1F) | ((sprn & 0x1F) << 5);
3804 printf("ERROR: try to access SPR %d !\n", sprn);
7b13448f 3805#endif
3fc6c082
FB
3806}
3807#define SPR_NOACCESS (&spr_noaccess)
3fc6c082 3808
79aceca5 3809/* mfspr */
636aa200 3810static inline void gen_op_mfspr(DisasContext *ctx)
79aceca5 3811{
69b058c8 3812 void (*read_cb)(DisasContext *ctx, int gprn, int sprn);
79aceca5
FB
3813 uint32_t sprn = SPR(ctx->opcode);
3814
eb94268e
BH
3815#if defined(CONFIG_USER_ONLY)
3816 read_cb = ctx->spr_cb[sprn].uea_read;
3817#else
3818 if (ctx->pr) {
3819 read_cb = ctx->spr_cb[sprn].uea_read;
3820 } else if (ctx->hv) {
be147d08 3821 read_cb = ctx->spr_cb[sprn].hea_read;
eb94268e 3822 } else {
3fc6c082 3823 read_cb = ctx->spr_cb[sprn].oea_read;
eb94268e 3824 }
9a64fbe4 3825#endif
76a66253
JM
3826 if (likely(read_cb != NULL)) {
3827 if (likely(read_cb != SPR_NOACCESS)) {
45d827d2 3828 (*read_cb)(ctx, rD(ctx->opcode), sprn);
3fc6c082
FB
3829 } else {
3830 /* Privilege exception */
9fceefa7
JM
3831 /* This is a hack to avoid warnings when running Linux:
3832 * this OS breaks the PowerPC virtualisation model,
3833 * allowing userland application to read the PVR
3834 */
3835 if (sprn != SPR_PVR) {
013a2942
PB
3836 fprintf(stderr, "Trying to read privileged spr %d (0x%03x) at "
3837 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
3838 if (qemu_log_separate()) {
3839 qemu_log("Trying to read privileged spr %d (0x%03x) at "
3840 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
3841 }
f24e5695 3842 }
9b2fadda 3843 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_REG);
79aceca5 3844 }
3fc6c082 3845 } else {
9b2fadda
BH
3846 /* ISA 2.07 defines these as no-ops */
3847 if ((ctx->insns_flags2 & PPC2_ISA207S) &&
3848 (sprn >= 808 && sprn <= 811)) {
3849 /* This is a nop */
3850 return;
3851 }
3fc6c082 3852 /* Not defined */
013a2942
PB
3853 fprintf(stderr, "Trying to read invalid spr %d (0x%03x) at "
3854 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
3855 if (qemu_log_separate()) {
3856 qemu_log("Trying to read invalid spr %d (0x%03x) at "
3857 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
3858 }
9b2fadda
BH
3859
3860 /* The behaviour depends on MSR:PR and SPR# bit 0x10,
3861 * it can generate a priv, a hv emu or a no-op
3862 */
3863 if (sprn & 0x10) {
3864 if (ctx->pr) {
3865 gen_priv_exception(ctx, POWERPC_EXCP_INVAL_SPR);
3866 }
3867 } else {
3868 if (ctx->pr || sprn == 0 || sprn == 4 || sprn == 5 || sprn == 6) {
3869 gen_hvpriv_exception(ctx, POWERPC_EXCP_INVAL_SPR);
3870 }
4d6a0680 3871 }
79aceca5 3872 }
79aceca5
FB
3873}
3874
99e300ef 3875static void gen_mfspr(DisasContext *ctx)
79aceca5 3876{
3fc6c082 3877 gen_op_mfspr(ctx);
76a66253 3878}
3fc6c082
FB
3879
3880/* mftb */
99e300ef 3881static void gen_mftb(DisasContext *ctx)
3fc6c082
FB
3882{
3883 gen_op_mfspr(ctx);
79aceca5
FB
3884}
3885
0cfe11ea 3886/* mtcrf mtocrf*/
99e300ef 3887static void gen_mtcrf(DisasContext *ctx)
79aceca5 3888{
76a66253 3889 uint32_t crm, crn;
3b46e624 3890
76a66253 3891 crm = CRM(ctx->opcode);
8dd640e4 3892 if (likely((ctx->opcode & 0x00100000))) {
3893 if (crm && ((crm & (crm - 1)) == 0)) {
3894 TCGv_i32 temp = tcg_temp_new_i32();
0cfe11ea 3895 crn = ctz32 (crm);
8dd640e4 3896 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
0cfe11ea
AJ
3897 tcg_gen_shri_i32(temp, temp, crn * 4);
3898 tcg_gen_andi_i32(cpu_crf[7 - crn], temp, 0xf);
8dd640e4 3899 tcg_temp_free_i32(temp);
3900 }
76a66253 3901 } else {
651721b2
AJ
3902 TCGv_i32 temp = tcg_temp_new_i32();
3903 tcg_gen_trunc_tl_i32(temp, cpu_gpr[rS(ctx->opcode)]);
3904 for (crn = 0 ; crn < 8 ; crn++) {
3905 if (crm & (1 << crn)) {
3906 tcg_gen_shri_i32(cpu_crf[7 - crn], temp, crn * 4);
3907 tcg_gen_andi_i32(cpu_crf[7 - crn], cpu_crf[7 - crn], 0xf);
3908 }
3909 }
a7812ae4 3910 tcg_temp_free_i32(temp);
76a66253 3911 }
79aceca5
FB
3912}
3913
3914/* mtmsr */
426613db 3915#if defined(TARGET_PPC64)
99e300ef 3916static void gen_mtmsrd(DisasContext *ctx)
426613db 3917{
9b2fadda
BH
3918 CHK_SV;
3919
3920#if !defined(CONFIG_USER_ONLY)
be147d08
JM
3921 if (ctx->opcode & 0x00010000) {
3922 /* Special form that does not need any synchronisation */
6527f6ea
AJ
3923 TCGv t0 = tcg_temp_new();
3924 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
c409bc5d 3925 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(target_ulong)((1 << MSR_RI) | (1 << MSR_EE)));
6527f6ea
AJ
3926 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3927 tcg_temp_free(t0);
be147d08 3928 } else {
056b05f8
JM
3929 /* XXX: we need to update nip before the store
3930 * if we enter power saving mode, we will exit the loop
3931 * directly from ppc_store_msr
3932 */
be147d08 3933 gen_update_nip(ctx, ctx->nip);
e5f17ac6 3934 gen_helper_store_msr(cpu_env, cpu_gpr[rS(ctx->opcode)]);
be147d08
JM
3935 /* Must stop the translation as machine state (may have) changed */
3936 /* Note that mtmsr is not always defined as context-synchronizing */
e06fcd75 3937 gen_stop_exception(ctx);
be147d08 3938 }
9b2fadda 3939#endif /* !defined(CONFIG_USER_ONLY) */
426613db 3940}
9b2fadda 3941#endif /* defined(TARGET_PPC64) */
426613db 3942
99e300ef 3943static void gen_mtmsr(DisasContext *ctx)
79aceca5 3944{
9b2fadda
BH
3945 CHK_SV;
3946
3947#if !defined(CONFIG_USER_ONLY)
3948 if (ctx->opcode & 0x00010000) {
be147d08 3949 /* Special form that does not need any synchronisation */
6527f6ea
AJ
3950 TCGv t0 = tcg_temp_new();
3951 tcg_gen_andi_tl(t0, cpu_gpr[rS(ctx->opcode)], (1 << MSR_RI) | (1 << MSR_EE));
c409bc5d 3952 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(target_ulong)((1 << MSR_RI) | (1 << MSR_EE)));
6527f6ea
AJ
3953 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
3954 tcg_temp_free(t0);
be147d08 3955 } else {
8018dc63
AG
3956 TCGv msr = tcg_temp_new();
3957
056b05f8
JM
3958 /* XXX: we need to update nip before the store
3959 * if we enter power saving mode, we will exit the loop
3960 * directly from ppc_store_msr
3961 */
be147d08 3962 gen_update_nip(ctx, ctx->nip);
d9bce9d9 3963#if defined(TARGET_PPC64)
8018dc63
AG
3964 tcg_gen_deposit_tl(msr, cpu_msr, cpu_gpr[rS(ctx->opcode)], 0, 32);
3965#else
3966 tcg_gen_mov_tl(msr, cpu_gpr[rS(ctx->opcode)]);
d9bce9d9 3967#endif
e5f17ac6 3968 gen_helper_store_msr(cpu_env, msr);
c80d1df5 3969 tcg_temp_free(msr);
be147d08 3970 /* Must stop the translation as machine state (may have) changed */
6527f6ea 3971 /* Note that mtmsr is not always defined as context-synchronizing */
e06fcd75 3972 gen_stop_exception(ctx);
be147d08 3973 }
9a64fbe4 3974#endif
79aceca5
FB
3975}
3976
3977/* mtspr */
99e300ef 3978static void gen_mtspr(DisasContext *ctx)
79aceca5 3979{
69b058c8 3980 void (*write_cb)(DisasContext *ctx, int sprn, int gprn);
79aceca5
FB
3981 uint32_t sprn = SPR(ctx->opcode);
3982
eb94268e
BH
3983#if defined(CONFIG_USER_ONLY)
3984 write_cb = ctx->spr_cb[sprn].uea_write;
3985#else
3986 if (ctx->pr) {
3987 write_cb = ctx->spr_cb[sprn].uea_write;
3988 } else if (ctx->hv) {
be147d08 3989 write_cb = ctx->spr_cb[sprn].hea_write;
eb94268e 3990 } else {
3fc6c082 3991 write_cb = ctx->spr_cb[sprn].oea_write;
eb94268e 3992 }
9a64fbe4 3993#endif
76a66253
JM
3994 if (likely(write_cb != NULL)) {
3995 if (likely(write_cb != SPR_NOACCESS)) {
45d827d2 3996 (*write_cb)(ctx, sprn, rS(ctx->opcode));
3fc6c082
FB
3997 } else {
3998 /* Privilege exception */
013a2942
PB
3999 fprintf(stderr, "Trying to write privileged spr %d (0x%03x) at "
4000 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4001 if (qemu_log_separate()) {
4002 qemu_log("Trying to write privileged spr %d (0x%03x) at "
4003 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4004 }
9b2fadda 4005 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_REG);
76a66253 4006 }
3fc6c082 4007 } else {
9b2fadda
BH
4008 /* ISA 2.07 defines these as no-ops */
4009 if ((ctx->insns_flags2 & PPC2_ISA207S) &&
4010 (sprn >= 808 && sprn <= 811)) {
4011 /* This is a nop */
4012 return;
4013 }
4014
3fc6c082 4015 /* Not defined */
013a2942
PB
4016 if (qemu_log_separate()) {
4017 qemu_log("Trying to write invalid spr %d (0x%03x) at "
4018 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4019 }
4020 fprintf(stderr, "Trying to write invalid spr %d (0x%03x) at "
4021 TARGET_FMT_lx "\n", sprn, sprn, ctx->nip - 4);
4d6a0680 4022
9b2fadda
BH
4023
4024 /* The behaviour depends on MSR:PR and SPR# bit 0x10,
4025 * it can generate a priv, a hv emu or a no-op
4026 */
4027 if (sprn & 0x10) {
4028 if (ctx->pr) {
4029 gen_priv_exception(ctx, POWERPC_EXCP_INVAL_SPR);
4030 }
4031 } else {
4032 if (ctx->pr || sprn == 0) {
4033 gen_hvpriv_exception(ctx, POWERPC_EXCP_INVAL_SPR);
4034 }
4d6a0680 4035 }
79aceca5 4036 }
79aceca5
FB
4037}
4038
dc2ee038
VAS
4039#if defined(TARGET_PPC64)
4040/* setb */
4041static void gen_setb(DisasContext *ctx)
4042{
4043 TCGv_i32 t0 = tcg_temp_new_i32();
4044 TCGv_i32 t8 = tcg_temp_new_i32();
4045 TCGv_i32 tm1 = tcg_temp_new_i32();
4046 int crf = crfS(ctx->opcode);
4047
4048 tcg_gen_setcondi_i32(TCG_COND_GEU, t0, cpu_crf[crf], 4);
4049 tcg_gen_movi_i32(t8, 8);
4050 tcg_gen_movi_i32(tm1, -1);
4051 tcg_gen_movcond_i32(TCG_COND_GEU, t0, cpu_crf[crf], t8, tm1, t0);
4052 tcg_gen_ext_i32_tl(cpu_gpr[rD(ctx->opcode)], t0);
4053
4054 tcg_temp_free_i32(t0);
4055 tcg_temp_free_i32(t8);
4056 tcg_temp_free_i32(tm1);
4057}
4058#endif
4059
79aceca5 4060/*** Cache management ***/
99e300ef 4061
54623277 4062/* dcbf */
99e300ef 4063static void gen_dcbf(DisasContext *ctx)
79aceca5 4064{
dac454af 4065 /* XXX: specification says this is treated as a load by the MMU */
76db3ba4
AJ
4066 TCGv t0;
4067 gen_set_access_type(ctx, ACCESS_CACHE);
4068 t0 = tcg_temp_new();
4069 gen_addr_reg_index(ctx, t0);
4070 gen_qemu_ld8u(ctx, t0, t0);
fea0c503 4071 tcg_temp_free(t0);
79aceca5
FB
4072}
4073
4074/* dcbi (Supervisor only) */
99e300ef 4075static void gen_dcbi(DisasContext *ctx)
79aceca5 4076{
a541f297 4077#if defined(CONFIG_USER_ONLY)
9b2fadda 4078 GEN_PRIV;
a541f297 4079#else
b61f2753 4080 TCGv EA, val;
9b2fadda
BH
4081
4082 CHK_SV;
a7812ae4 4083 EA = tcg_temp_new();
76db3ba4
AJ
4084 gen_set_access_type(ctx, ACCESS_CACHE);
4085 gen_addr_reg_index(ctx, EA);
a7812ae4 4086 val = tcg_temp_new();
76a66253 4087 /* XXX: specification says this should be treated as a store by the MMU */
76db3ba4
AJ
4088 gen_qemu_ld8u(ctx, val, EA);
4089 gen_qemu_st8(ctx, val, EA);
b61f2753
AJ
4090 tcg_temp_free(val);
4091 tcg_temp_free(EA);
9b2fadda 4092#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4093}
4094
4095/* dcdst */
99e300ef 4096static void gen_dcbst(DisasContext *ctx)
79aceca5 4097{
76a66253 4098 /* XXX: specification say this is treated as a load by the MMU */
76db3ba4
AJ
4099 TCGv t0;
4100 gen_set_access_type(ctx, ACCESS_CACHE);
4101 t0 = tcg_temp_new();
4102 gen_addr_reg_index(ctx, t0);
4103 gen_qemu_ld8u(ctx, t0, t0);
fea0c503 4104 tcg_temp_free(t0);
79aceca5
FB
4105}
4106
4107/* dcbt */
99e300ef 4108static void gen_dcbt(DisasContext *ctx)
79aceca5 4109{
0db1b20e 4110 /* interpreted as no-op */
76a66253
JM
4111 /* XXX: specification say this is treated as a load by the MMU
4112 * but does not generate any exception
4113 */
79aceca5
FB
4114}
4115
4116/* dcbtst */
99e300ef 4117static void gen_dcbtst(DisasContext *ctx)
79aceca5 4118{
0db1b20e 4119 /* interpreted as no-op */
76a66253
JM
4120 /* XXX: specification say this is treated as a load by the MMU
4121 * but does not generate any exception
4122 */
79aceca5
FB
4123}
4124
4d09d529
AG
4125/* dcbtls */
4126static void gen_dcbtls(DisasContext *ctx)
4127{
4128 /* Always fails locking the cache */
4129 TCGv t0 = tcg_temp_new();
4130 gen_load_spr(t0, SPR_Exxx_L1CSR0);
4131 tcg_gen_ori_tl(t0, t0, L1CSR0_CUL);
4132 gen_store_spr(SPR_Exxx_L1CSR0, t0);
4133 tcg_temp_free(t0);
4134}
4135
79aceca5 4136/* dcbz */
99e300ef 4137static void gen_dcbz(DisasContext *ctx)
79aceca5 4138{
8e33944f 4139 TCGv tcgv_addr;
c9f82d01 4140 TCGv_i32 tcgv_op;
d63001d1 4141
76db3ba4 4142 gen_set_access_type(ctx, ACCESS_CACHE);
8e33944f 4143 tcgv_addr = tcg_temp_new();
c9f82d01 4144 tcgv_op = tcg_const_i32(ctx->opcode & 0x03FF000);
8e33944f 4145 gen_addr_reg_index(ctx, tcgv_addr);
c9f82d01 4146 gen_helper_dcbz(cpu_env, tcgv_addr, tcgv_op);
8e33944f 4147 tcg_temp_free(tcgv_addr);
c9f82d01 4148 tcg_temp_free_i32(tcgv_op);
79aceca5
FB
4149}
4150
ae1c1a3d 4151/* dst / dstt */
99e300ef 4152static void gen_dst(DisasContext *ctx)
ae1c1a3d
AJ
4153{
4154 if (rA(ctx->opcode) == 0) {
e41029b3 4155 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
ae1c1a3d
AJ
4156 } else {
4157 /* interpreted as no-op */
4158 }
4159}
4160
4161/* dstst /dststt */
99e300ef 4162static void gen_dstst(DisasContext *ctx)
ae1c1a3d
AJ
4163{
4164 if (rA(ctx->opcode) == 0) {
e41029b3 4165 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
ae1c1a3d
AJ
4166 } else {
4167 /* interpreted as no-op */
4168 }
4169
4170}
4171
4172/* dss / dssall */
99e300ef 4173static void gen_dss(DisasContext *ctx)
ae1c1a3d
AJ
4174{
4175 /* interpreted as no-op */
4176}
4177
79aceca5 4178/* icbi */
99e300ef 4179static void gen_icbi(DisasContext *ctx)
79aceca5 4180{
76db3ba4
AJ
4181 TCGv t0;
4182 gen_set_access_type(ctx, ACCESS_CACHE);
76db3ba4
AJ
4183 t0 = tcg_temp_new();
4184 gen_addr_reg_index(ctx, t0);
2f5a189c 4185 gen_helper_icbi(cpu_env, t0);
37d269df 4186 tcg_temp_free(t0);
79aceca5
FB
4187}
4188
4189/* Optional: */
4190/* dcba */
99e300ef 4191static void gen_dcba(DisasContext *ctx)
79aceca5 4192{
0db1b20e
JM
4193 /* interpreted as no-op */
4194 /* XXX: specification say this is treated as a store by the MMU
4195 * but does not generate any exception
4196 */
79aceca5
FB
4197}
4198
4199/*** Segment register manipulation ***/
4200/* Supervisor only: */
99e300ef 4201
54623277 4202/* mfsr */
99e300ef 4203static void gen_mfsr(DisasContext *ctx)
79aceca5 4204{
9a64fbe4 4205#if defined(CONFIG_USER_ONLY)
9b2fadda 4206 GEN_PRIV;
9a64fbe4 4207#else
74d37793 4208 TCGv t0;
9b2fadda
BH
4209
4210 CHK_SV;
74d37793 4211 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4212 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4213 tcg_temp_free(t0);
9b2fadda 4214#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4215}
4216
4217/* mfsrin */
99e300ef 4218static void gen_mfsrin(DisasContext *ctx)
79aceca5 4219{
9a64fbe4 4220#if defined(CONFIG_USER_ONLY)
9b2fadda 4221 GEN_PRIV;
9a64fbe4 4222#else
74d37793 4223 TCGv t0;
9b2fadda
BH
4224
4225 CHK_SV;
74d37793
AJ
4226 t0 = tcg_temp_new();
4227 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4228 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4229 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4230 tcg_temp_free(t0);
9b2fadda 4231#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4232}
4233
4234/* mtsr */
99e300ef 4235static void gen_mtsr(DisasContext *ctx)
79aceca5 4236{
9a64fbe4 4237#if defined(CONFIG_USER_ONLY)
9b2fadda 4238 GEN_PRIV;
9a64fbe4 4239#else
74d37793 4240 TCGv t0;
9b2fadda
BH
4241
4242 CHK_SV;
74d37793 4243 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4244 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4245 tcg_temp_free(t0);
9b2fadda 4246#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4247}
4248
4249/* mtsrin */
99e300ef 4250static void gen_mtsrin(DisasContext *ctx)
79aceca5 4251{
9a64fbe4 4252#if defined(CONFIG_USER_ONLY)
9b2fadda 4253 GEN_PRIV;
9a64fbe4 4254#else
74d37793 4255 TCGv t0;
9b2fadda
BH
4256 CHK_SV;
4257
74d37793
AJ
4258 t0 = tcg_temp_new();
4259 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4260 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4261 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rD(ctx->opcode)]);
74d37793 4262 tcg_temp_free(t0);
9b2fadda 4263#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4264}
4265
12de9a39
JM
4266#if defined(TARGET_PPC64)
4267/* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
e8eaa2c0 4268
54623277 4269/* mfsr */
e8eaa2c0 4270static void gen_mfsr_64b(DisasContext *ctx)
12de9a39
JM
4271{
4272#if defined(CONFIG_USER_ONLY)
9b2fadda 4273 GEN_PRIV;
12de9a39 4274#else
74d37793 4275 TCGv t0;
9b2fadda
BH
4276
4277 CHK_SV;
74d37793 4278 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4279 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4280 tcg_temp_free(t0);
9b2fadda 4281#endif /* defined(CONFIG_USER_ONLY) */
12de9a39
JM
4282}
4283
4284/* mfsrin */
e8eaa2c0 4285static void gen_mfsrin_64b(DisasContext *ctx)
12de9a39
JM
4286{
4287#if defined(CONFIG_USER_ONLY)
9b2fadda 4288 GEN_PRIV;
12de9a39 4289#else
74d37793 4290 TCGv t0;
9b2fadda
BH
4291
4292 CHK_SV;
74d37793
AJ
4293 t0 = tcg_temp_new();
4294 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4295 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4296 gen_helper_load_sr(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793 4297 tcg_temp_free(t0);
9b2fadda 4298#endif /* defined(CONFIG_USER_ONLY) */
12de9a39
JM
4299}
4300
4301/* mtsr */
e8eaa2c0 4302static void gen_mtsr_64b(DisasContext *ctx)
12de9a39
JM
4303{
4304#if defined(CONFIG_USER_ONLY)
9b2fadda 4305 GEN_PRIV;
12de9a39 4306#else
74d37793 4307 TCGv t0;
9b2fadda
BH
4308
4309 CHK_SV;
74d37793 4310 t0 = tcg_const_tl(SR(ctx->opcode));
c6c7cf05 4311 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4312 tcg_temp_free(t0);
9b2fadda 4313#endif /* defined(CONFIG_USER_ONLY) */
12de9a39
JM
4314}
4315
4316/* mtsrin */
e8eaa2c0 4317static void gen_mtsrin_64b(DisasContext *ctx)
12de9a39
JM
4318{
4319#if defined(CONFIG_USER_ONLY)
9b2fadda 4320 GEN_PRIV;
12de9a39 4321#else
74d37793 4322 TCGv t0;
9b2fadda
BH
4323
4324 CHK_SV;
74d37793
AJ
4325 t0 = tcg_temp_new();
4326 tcg_gen_shri_tl(t0, cpu_gpr[rB(ctx->opcode)], 28);
4327 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 4328 gen_helper_store_sr(cpu_env, t0, cpu_gpr[rS(ctx->opcode)]);
74d37793 4329 tcg_temp_free(t0);
9b2fadda 4330#endif /* defined(CONFIG_USER_ONLY) */
12de9a39 4331}
f6b868fc
BS
4332
4333/* slbmte */
e8eaa2c0 4334static void gen_slbmte(DisasContext *ctx)
f6b868fc
BS
4335{
4336#if defined(CONFIG_USER_ONLY)
9b2fadda 4337 GEN_PRIV;
f6b868fc 4338#else
9b2fadda
BH
4339 CHK_SV;
4340
c6c7cf05
BS
4341 gen_helper_store_slb(cpu_env, cpu_gpr[rB(ctx->opcode)],
4342 cpu_gpr[rS(ctx->opcode)]);
9b2fadda 4343#endif /* defined(CONFIG_USER_ONLY) */
f6b868fc
BS
4344}
4345
efdef95f
DG
4346static void gen_slbmfee(DisasContext *ctx)
4347{
4348#if defined(CONFIG_USER_ONLY)
9b2fadda 4349 GEN_PRIV;
efdef95f 4350#else
9b2fadda
BH
4351 CHK_SV;
4352
c6c7cf05 4353 gen_helper_load_slb_esid(cpu_gpr[rS(ctx->opcode)], cpu_env,
efdef95f 4354 cpu_gpr[rB(ctx->opcode)]);
9b2fadda 4355#endif /* defined(CONFIG_USER_ONLY) */
efdef95f
DG
4356}
4357
4358static void gen_slbmfev(DisasContext *ctx)
4359{
4360#if defined(CONFIG_USER_ONLY)
9b2fadda 4361 GEN_PRIV;
efdef95f 4362#else
9b2fadda
BH
4363 CHK_SV;
4364
c6c7cf05 4365 gen_helper_load_slb_vsid(cpu_gpr[rS(ctx->opcode)], cpu_env,
efdef95f 4366 cpu_gpr[rB(ctx->opcode)]);
9b2fadda 4367#endif /* defined(CONFIG_USER_ONLY) */
efdef95f 4368}
c76c22d5
BH
4369
4370static void gen_slbfee_(DisasContext *ctx)
4371{
4372#if defined(CONFIG_USER_ONLY)
4373 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4374#else
4375 TCGLabel *l1, *l2;
4376
4377 if (unlikely(ctx->pr)) {
4378 gen_inval_exception(ctx, POWERPC_EXCP_PRIV_REG);
4379 return;
4380 }
4381 gen_helper_find_slb_vsid(cpu_gpr[rS(ctx->opcode)], cpu_env,
4382 cpu_gpr[rB(ctx->opcode)]);
4383 l1 = gen_new_label();
4384 l2 = gen_new_label();
4385 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
4386 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rS(ctx->opcode)], -1, l1);
efa73196 4387 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], CRF_EQ);
c76c22d5
BH
4388 tcg_gen_br(l2);
4389 gen_set_label(l1);
4390 tcg_gen_movi_tl(cpu_gpr[rS(ctx->opcode)], 0);
4391 gen_set_label(l2);
4392#endif
4393}
12de9a39
JM
4394#endif /* defined(TARGET_PPC64) */
4395
79aceca5 4396/*** Lookaside buffer management ***/
c47493f2 4397/* Optional & supervisor only: */
99e300ef 4398
54623277 4399/* tlbia */
99e300ef 4400static void gen_tlbia(DisasContext *ctx)
79aceca5 4401{
9a64fbe4 4402#if defined(CONFIG_USER_ONLY)
9b2fadda 4403 GEN_PRIV;
9a64fbe4 4404#else
9b2fadda
BH
4405 CHK_HV;
4406
c6c7cf05 4407 gen_helper_tlbia(cpu_env);
9b2fadda 4408#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4409}
4410
bf14b1ce 4411/* tlbiel */
99e300ef 4412static void gen_tlbiel(DisasContext *ctx)
bf14b1ce
BS
4413{
4414#if defined(CONFIG_USER_ONLY)
9b2fadda 4415 GEN_PRIV;
bf14b1ce 4416#else
9b2fadda
BH
4417 CHK_SV;
4418
c6c7cf05 4419 gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 4420#endif /* defined(CONFIG_USER_ONLY) */
bf14b1ce
BS
4421}
4422
79aceca5 4423/* tlbie */
99e300ef 4424static void gen_tlbie(DisasContext *ctx)
79aceca5 4425{
9a64fbe4 4426#if defined(CONFIG_USER_ONLY)
9b2fadda 4427 GEN_PRIV;
9a64fbe4 4428#else
d76ab5e1 4429 TCGv_i32 t1;
9b2fadda
BH
4430 CHK_HV;
4431
9ca3f7f3 4432 if (NARROW_MODE(ctx)) {
74d37793
AJ
4433 TCGv t0 = tcg_temp_new();
4434 tcg_gen_ext32u_tl(t0, cpu_gpr[rB(ctx->opcode)]);
c6c7cf05 4435 gen_helper_tlbie(cpu_env, t0);
74d37793 4436 tcg_temp_free(t0);
9ca3f7f3 4437 } else {
c6c7cf05 4438 gen_helper_tlbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9ca3f7f3 4439 }
d76ab5e1
ND
4440 t1 = tcg_temp_new_i32();
4441 tcg_gen_ld_i32(t1, cpu_env, offsetof(CPUPPCState, tlb_need_flush));
4442 tcg_gen_ori_i32(t1, t1, TLB_NEED_GLOBAL_FLUSH);
4443 tcg_gen_st_i32(t1, cpu_env, offsetof(CPUPPCState, tlb_need_flush));
4444 tcg_temp_free_i32(t1);
9b2fadda 4445#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4446}
4447
4448/* tlbsync */
99e300ef 4449static void gen_tlbsync(DisasContext *ctx)
79aceca5 4450{
9a64fbe4 4451#if defined(CONFIG_USER_ONLY)
9b2fadda 4452 GEN_PRIV;
9a64fbe4 4453#else
9b2fadda
BH
4454 CHK_HV;
4455
e3cffe6f
ND
4456 /* BookS does both ptesync and tlbsync make tlbsync a nop for server */
4457 if (ctx->insns_flags & PPC_BOOKE) {
4458 gen_check_tlb_flush(ctx, true);
4459 }
9b2fadda 4460#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
4461}
4462
426613db
JM
4463#if defined(TARGET_PPC64)
4464/* slbia */
99e300ef 4465static void gen_slbia(DisasContext *ctx)
426613db
JM
4466{
4467#if defined(CONFIG_USER_ONLY)
9b2fadda 4468 GEN_PRIV;
426613db 4469#else
9b2fadda
BH
4470 CHK_SV;
4471
c6c7cf05 4472 gen_helper_slbia(cpu_env);
9b2fadda 4473#endif /* defined(CONFIG_USER_ONLY) */
426613db
JM
4474}
4475
4476/* slbie */
99e300ef 4477static void gen_slbie(DisasContext *ctx)
426613db
JM
4478{
4479#if defined(CONFIG_USER_ONLY)
9b2fadda 4480 GEN_PRIV;
426613db 4481#else
9b2fadda
BH
4482 CHK_SV;
4483
c6c7cf05 4484 gen_helper_slbie(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 4485#endif /* defined(CONFIG_USER_ONLY) */
426613db 4486}
a63f1dfc
ND
4487
4488/* slbieg */
4489static void gen_slbieg(DisasContext *ctx)
4490{
4491#if defined(CONFIG_USER_ONLY)
4492 GEN_PRIV;
4493#else
4494 CHK_SV;
4495
4496 gen_helper_slbieg(cpu_env, cpu_gpr[rB(ctx->opcode)]);
4497#endif /* defined(CONFIG_USER_ONLY) */
4498}
4499
62d897ca
ND
4500/* slbsync */
4501static void gen_slbsync(DisasContext *ctx)
4502{
4503#if defined(CONFIG_USER_ONLY)
4504 GEN_PRIV;
4505#else
4506 CHK_SV;
4507 gen_check_tlb_flush(ctx, true);
4508#endif /* defined(CONFIG_USER_ONLY) */
4509}
4510
9b2fadda 4511#endif /* defined(TARGET_PPC64) */
426613db 4512
79aceca5
FB
4513/*** External control ***/
4514/* Optional: */
99e300ef 4515
54623277 4516/* eciwx */
99e300ef 4517static void gen_eciwx(DisasContext *ctx)
79aceca5 4518{
76db3ba4 4519 TCGv t0;
fa407c03 4520 /* Should check EAR[E] ! */
76db3ba4
AJ
4521 gen_set_access_type(ctx, ACCESS_EXT);
4522 t0 = tcg_temp_new();
4523 gen_addr_reg_index(ctx, t0);
fa407c03 4524 gen_check_align(ctx, t0, 0x03);
76db3ba4 4525 gen_qemu_ld32u(ctx, cpu_gpr[rD(ctx->opcode)], t0);
fa407c03 4526 tcg_temp_free(t0);
76a66253
JM
4527}
4528
4529/* ecowx */
99e300ef 4530static void gen_ecowx(DisasContext *ctx)
76a66253 4531{
76db3ba4 4532 TCGv t0;
fa407c03 4533 /* Should check EAR[E] ! */
76db3ba4
AJ
4534 gen_set_access_type(ctx, ACCESS_EXT);
4535 t0 = tcg_temp_new();
4536 gen_addr_reg_index(ctx, t0);
fa407c03 4537 gen_check_align(ctx, t0, 0x03);
76db3ba4 4538 gen_qemu_st32(ctx, cpu_gpr[rD(ctx->opcode)], t0);
fa407c03 4539 tcg_temp_free(t0);
76a66253
JM
4540}
4541
4542/* PowerPC 601 specific instructions */
99e300ef 4543
54623277 4544/* abs - abs. */
99e300ef 4545static void gen_abs(DisasContext *ctx)
76a66253 4546{
42a268c2
RH
4547 TCGLabel *l1 = gen_new_label();
4548 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4549 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l1);
4550 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4551 tcg_gen_br(l2);
4552 gen_set_label(l1);
4553 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4554 gen_set_label(l2);
76a66253 4555 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4556 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4557}
4558
4559/* abso - abso. */
99e300ef 4560static void gen_abso(DisasContext *ctx)
76a66253 4561{
42a268c2
RH
4562 TCGLabel *l1 = gen_new_label();
4563 TCGLabel *l2 = gen_new_label();
4564 TCGLabel *l3 = gen_new_label();
22e0e173 4565 /* Start with XER OV disabled, the most likely case */
da91a00f 4566 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4567 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rA(ctx->opcode)], 0, l2);
4568 tcg_gen_brcondi_tl(TCG_COND_NE, cpu_gpr[rA(ctx->opcode)], 0x80000000, l1);
da91a00f
RH
4569 tcg_gen_movi_tl(cpu_ov, 1);
4570 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4571 tcg_gen_br(l2);
4572 gen_set_label(l1);
4573 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4574 tcg_gen_br(l3);
4575 gen_set_label(l2);
4576 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4577 gen_set_label(l3);
76a66253 4578 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4579 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4580}
4581
4582/* clcs */
99e300ef 4583static void gen_clcs(DisasContext *ctx)
76a66253 4584{
22e0e173 4585 TCGv_i32 t0 = tcg_const_i32(rA(ctx->opcode));
d523dd00 4586 gen_helper_clcs(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
22e0e173 4587 tcg_temp_free_i32(t0);
c7697e1f 4588 /* Rc=1 sets CR0 to an undefined state */
76a66253
JM
4589}
4590
4591/* div - div. */
99e300ef 4592static void gen_div(DisasContext *ctx)
76a66253 4593{
d15f74fb
BS
4594 gen_helper_div(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4595 cpu_gpr[rB(ctx->opcode)]);
76a66253 4596 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4597 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4598}
4599
4600/* divo - divo. */
99e300ef 4601static void gen_divo(DisasContext *ctx)
76a66253 4602{
d15f74fb
BS
4603 gen_helper_divo(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4604 cpu_gpr[rB(ctx->opcode)]);
76a66253 4605 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4606 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4607}
4608
4609/* divs - divs. */
99e300ef 4610static void gen_divs(DisasContext *ctx)
76a66253 4611{
d15f74fb
BS
4612 gen_helper_divs(cpu_gpr[rD(ctx->opcode)], cpu_env, cpu_gpr[rA(ctx->opcode)],
4613 cpu_gpr[rB(ctx->opcode)]);
76a66253 4614 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4615 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4616}
4617
4618/* divso - divso. */
99e300ef 4619static void gen_divso(DisasContext *ctx)
76a66253 4620{
d15f74fb
BS
4621 gen_helper_divso(cpu_gpr[rD(ctx->opcode)], cpu_env,
4622 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
76a66253 4623 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4624 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4625}
4626
4627/* doz - doz. */
99e300ef 4628static void gen_doz(DisasContext *ctx)
76a66253 4629{
42a268c2
RH
4630 TCGLabel *l1 = gen_new_label();
4631 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4632 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4633 tcg_gen_sub_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4634 tcg_gen_br(l2);
4635 gen_set_label(l1);
4636 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4637 gen_set_label(l2);
76a66253 4638 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4639 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4640}
4641
4642/* dozo - dozo. */
99e300ef 4643static void gen_dozo(DisasContext *ctx)
76a66253 4644{
42a268c2
RH
4645 TCGLabel *l1 = gen_new_label();
4646 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4647 TCGv t0 = tcg_temp_new();
4648 TCGv t1 = tcg_temp_new();
4649 TCGv t2 = tcg_temp_new();
4650 /* Start with XER OV disabled, the most likely case */
da91a00f 4651 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4652 tcg_gen_brcond_tl(TCG_COND_GE, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], l1);
4653 tcg_gen_sub_tl(t0, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4654 tcg_gen_xor_tl(t1, cpu_gpr[rB(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4655 tcg_gen_xor_tl(t2, cpu_gpr[rA(ctx->opcode)], t0);
4656 tcg_gen_andc_tl(t1, t1, t2);
4657 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], t0);
4658 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
da91a00f
RH
4659 tcg_gen_movi_tl(cpu_ov, 1);
4660 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4661 tcg_gen_br(l2);
4662 gen_set_label(l1);
4663 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4664 gen_set_label(l2);
4665 tcg_temp_free(t0);
4666 tcg_temp_free(t1);
4667 tcg_temp_free(t2);
76a66253 4668 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4669 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4670}
4671
4672/* dozi */
99e300ef 4673static void gen_dozi(DisasContext *ctx)
76a66253 4674{
22e0e173 4675 target_long simm = SIMM(ctx->opcode);
42a268c2
RH
4676 TCGLabel *l1 = gen_new_label();
4677 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4678 tcg_gen_brcondi_tl(TCG_COND_LT, cpu_gpr[rA(ctx->opcode)], simm, l1);
4679 tcg_gen_subfi_tl(cpu_gpr[rD(ctx->opcode)], simm, cpu_gpr[rA(ctx->opcode)]);
4680 tcg_gen_br(l2);
4681 gen_set_label(l1);
4682 tcg_gen_movi_tl(cpu_gpr[rD(ctx->opcode)], 0);
4683 gen_set_label(l2);
4684 if (unlikely(Rc(ctx->opcode) != 0))
4685 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4686}
4687
76a66253 4688/* lscbx - lscbx. */
99e300ef 4689static void gen_lscbx(DisasContext *ctx)
76a66253 4690{
bdb4b689
AJ
4691 TCGv t0 = tcg_temp_new();
4692 TCGv_i32 t1 = tcg_const_i32(rD(ctx->opcode));
4693 TCGv_i32 t2 = tcg_const_i32(rA(ctx->opcode));
4694 TCGv_i32 t3 = tcg_const_i32(rB(ctx->opcode));
76a66253 4695
76db3ba4 4696 gen_addr_reg_index(ctx, t0);
2f5a189c 4697 gen_helper_lscbx(t0, cpu_env, t0, t1, t2, t3);
bdb4b689
AJ
4698 tcg_temp_free_i32(t1);
4699 tcg_temp_free_i32(t2);
4700 tcg_temp_free_i32(t3);
3d7b417e 4701 tcg_gen_andi_tl(cpu_xer, cpu_xer, ~0x7F);
bdb4b689 4702 tcg_gen_or_tl(cpu_xer, cpu_xer, t0);
76a66253 4703 if (unlikely(Rc(ctx->opcode) != 0))
bdb4b689
AJ
4704 gen_set_Rc0(ctx, t0);
4705 tcg_temp_free(t0);
76a66253
JM
4706}
4707
4708/* maskg - maskg. */
99e300ef 4709static void gen_maskg(DisasContext *ctx)
76a66253 4710{
42a268c2 4711 TCGLabel *l1 = gen_new_label();
22e0e173
AJ
4712 TCGv t0 = tcg_temp_new();
4713 TCGv t1 = tcg_temp_new();
4714 TCGv t2 = tcg_temp_new();
4715 TCGv t3 = tcg_temp_new();
4716 tcg_gen_movi_tl(t3, 0xFFFFFFFF);
4717 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4718 tcg_gen_andi_tl(t1, cpu_gpr[rS(ctx->opcode)], 0x1F);
4719 tcg_gen_addi_tl(t2, t0, 1);
4720 tcg_gen_shr_tl(t2, t3, t2);
4721 tcg_gen_shr_tl(t3, t3, t1);
4722 tcg_gen_xor_tl(cpu_gpr[rA(ctx->opcode)], t2, t3);
4723 tcg_gen_brcond_tl(TCG_COND_GE, t0, t1, l1);
4724 tcg_gen_neg_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4725 gen_set_label(l1);
4726 tcg_temp_free(t0);
4727 tcg_temp_free(t1);
4728 tcg_temp_free(t2);
4729 tcg_temp_free(t3);
76a66253 4730 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4731 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4732}
4733
4734/* maskir - maskir. */
99e300ef 4735static void gen_maskir(DisasContext *ctx)
76a66253 4736{
22e0e173
AJ
4737 TCGv t0 = tcg_temp_new();
4738 TCGv t1 = tcg_temp_new();
4739 tcg_gen_and_tl(t0, cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4740 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
4741 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4742 tcg_temp_free(t0);
4743 tcg_temp_free(t1);
76a66253 4744 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4745 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4746}
4747
4748/* mul - mul. */
99e300ef 4749static void gen_mul(DisasContext *ctx)
76a66253 4750{
22e0e173
AJ
4751 TCGv_i64 t0 = tcg_temp_new_i64();
4752 TCGv_i64 t1 = tcg_temp_new_i64();
4753 TCGv t2 = tcg_temp_new();
4754 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4755 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4756 tcg_gen_mul_i64(t0, t0, t1);
4757 tcg_gen_trunc_i64_tl(t2, t0);
4758 gen_store_spr(SPR_MQ, t2);
4759 tcg_gen_shri_i64(t1, t0, 32);
4760 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4761 tcg_temp_free_i64(t0);
4762 tcg_temp_free_i64(t1);
4763 tcg_temp_free(t2);
76a66253 4764 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4765 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4766}
4767
4768/* mulo - mulo. */
99e300ef 4769static void gen_mulo(DisasContext *ctx)
76a66253 4770{
42a268c2 4771 TCGLabel *l1 = gen_new_label();
22e0e173
AJ
4772 TCGv_i64 t0 = tcg_temp_new_i64();
4773 TCGv_i64 t1 = tcg_temp_new_i64();
4774 TCGv t2 = tcg_temp_new();
4775 /* Start with XER OV disabled, the most likely case */
da91a00f 4776 tcg_gen_movi_tl(cpu_ov, 0);
22e0e173
AJ
4777 tcg_gen_extu_tl_i64(t0, cpu_gpr[rA(ctx->opcode)]);
4778 tcg_gen_extu_tl_i64(t1, cpu_gpr[rB(ctx->opcode)]);
4779 tcg_gen_mul_i64(t0, t0, t1);
4780 tcg_gen_trunc_i64_tl(t2, t0);
4781 gen_store_spr(SPR_MQ, t2);
4782 tcg_gen_shri_i64(t1, t0, 32);
4783 tcg_gen_trunc_i64_tl(cpu_gpr[rD(ctx->opcode)], t1);
4784 tcg_gen_ext32s_i64(t1, t0);
4785 tcg_gen_brcond_i64(TCG_COND_EQ, t0, t1, l1);
da91a00f
RH
4786 tcg_gen_movi_tl(cpu_ov, 1);
4787 tcg_gen_movi_tl(cpu_so, 1);
22e0e173
AJ
4788 gen_set_label(l1);
4789 tcg_temp_free_i64(t0);
4790 tcg_temp_free_i64(t1);
4791 tcg_temp_free(t2);
76a66253 4792 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4793 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4794}
4795
4796/* nabs - nabs. */
99e300ef 4797static void gen_nabs(DisasContext *ctx)
76a66253 4798{
42a268c2
RH
4799 TCGLabel *l1 = gen_new_label();
4800 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4801 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4802 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4803 tcg_gen_br(l2);
4804 gen_set_label(l1);
4805 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4806 gen_set_label(l2);
76a66253 4807 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4808 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4809}
4810
4811/* nabso - nabso. */
99e300ef 4812static void gen_nabso(DisasContext *ctx)
76a66253 4813{
42a268c2
RH
4814 TCGLabel *l1 = gen_new_label();
4815 TCGLabel *l2 = gen_new_label();
22e0e173
AJ
4816 tcg_gen_brcondi_tl(TCG_COND_GT, cpu_gpr[rA(ctx->opcode)], 0, l1);
4817 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4818 tcg_gen_br(l2);
4819 gen_set_label(l1);
4820 tcg_gen_neg_tl(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
4821 gen_set_label(l2);
4822 /* nabs never overflows */
da91a00f 4823 tcg_gen_movi_tl(cpu_ov, 0);
76a66253 4824 if (unlikely(Rc(ctx->opcode) != 0))
22e0e173 4825 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]);
76a66253
JM
4826}
4827
4828/* rlmi - rlmi. */
99e300ef 4829static void gen_rlmi(DisasContext *ctx)
76a66253 4830{
7487953d
AJ
4831 uint32_t mb = MB(ctx->opcode);
4832 uint32_t me = ME(ctx->opcode);
4833 TCGv t0 = tcg_temp_new();
4834 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4835 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4836 tcg_gen_andi_tl(t0, t0, MASK(mb, me));
4837 tcg_gen_andi_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], ~MASK(mb, me));
4838 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rA(ctx->opcode)], t0);
4839 tcg_temp_free(t0);
76a66253 4840 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4841 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4842}
4843
4844/* rrib - rrib. */
99e300ef 4845static void gen_rrib(DisasContext *ctx)
76a66253 4846{
7487953d
AJ
4847 TCGv t0 = tcg_temp_new();
4848 TCGv t1 = tcg_temp_new();
4849 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4850 tcg_gen_movi_tl(t1, 0x80000000);
4851 tcg_gen_shr_tl(t1, t1, t0);
4852 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4853 tcg_gen_and_tl(t0, t0, t1);
4854 tcg_gen_andc_tl(t1, cpu_gpr[rA(ctx->opcode)], t1);
4855 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4856 tcg_temp_free(t0);
4857 tcg_temp_free(t1);
76a66253 4858 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4859 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4860}
4861
4862/* sle - sle. */
99e300ef 4863static void gen_sle(DisasContext *ctx)
76a66253 4864{
7487953d
AJ
4865 TCGv t0 = tcg_temp_new();
4866 TCGv t1 = tcg_temp_new();
4867 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4868 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4869 tcg_gen_subfi_tl(t1, 32, t1);
4870 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4871 tcg_gen_or_tl(t1, t0, t1);
4872 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4873 gen_store_spr(SPR_MQ, t1);
4874 tcg_temp_free(t0);
4875 tcg_temp_free(t1);
76a66253 4876 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4877 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4878}
4879
4880/* sleq - sleq. */
99e300ef 4881static void gen_sleq(DisasContext *ctx)
76a66253 4882{
7487953d
AJ
4883 TCGv t0 = tcg_temp_new();
4884 TCGv t1 = tcg_temp_new();
4885 TCGv t2 = tcg_temp_new();
4886 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
4887 tcg_gen_movi_tl(t2, 0xFFFFFFFF);
4888 tcg_gen_shl_tl(t2, t2, t0);
4889 tcg_gen_rotl_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
4890 gen_load_spr(t1, SPR_MQ);
4891 gen_store_spr(SPR_MQ, t0);
4892 tcg_gen_and_tl(t0, t0, t2);
4893 tcg_gen_andc_tl(t1, t1, t2);
4894 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4895 tcg_temp_free(t0);
4896 tcg_temp_free(t1);
4897 tcg_temp_free(t2);
76a66253 4898 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4899 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4900}
4901
4902/* sliq - sliq. */
99e300ef 4903static void gen_sliq(DisasContext *ctx)
76a66253 4904{
7487953d
AJ
4905 int sh = SH(ctx->opcode);
4906 TCGv t0 = tcg_temp_new();
4907 TCGv t1 = tcg_temp_new();
4908 tcg_gen_shli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4909 tcg_gen_shri_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4910 tcg_gen_or_tl(t1, t0, t1);
4911 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4912 gen_store_spr(SPR_MQ, t1);
4913 tcg_temp_free(t0);
4914 tcg_temp_free(t1);
76a66253 4915 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4916 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4917}
4918
4919/* slliq - slliq. */
99e300ef 4920static void gen_slliq(DisasContext *ctx)
76a66253 4921{
7487953d
AJ
4922 int sh = SH(ctx->opcode);
4923 TCGv t0 = tcg_temp_new();
4924 TCGv t1 = tcg_temp_new();
4925 tcg_gen_rotli_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4926 gen_load_spr(t1, SPR_MQ);
4927 gen_store_spr(SPR_MQ, t0);
4928 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU << sh));
4929 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU << sh));
4930 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4931 tcg_temp_free(t0);
4932 tcg_temp_free(t1);
76a66253 4933 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4934 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4935}
4936
4937/* sllq - sllq. */
99e300ef 4938static void gen_sllq(DisasContext *ctx)
76a66253 4939{
42a268c2
RH
4940 TCGLabel *l1 = gen_new_label();
4941 TCGLabel *l2 = gen_new_label();
7487953d
AJ
4942 TCGv t0 = tcg_temp_local_new();
4943 TCGv t1 = tcg_temp_local_new();
4944 TCGv t2 = tcg_temp_local_new();
4945 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
4946 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
4947 tcg_gen_shl_tl(t1, t1, t2);
4948 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
4949 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
4950 gen_load_spr(t0, SPR_MQ);
4951 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4952 tcg_gen_br(l2);
4953 gen_set_label(l1);
4954 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
4955 gen_load_spr(t2, SPR_MQ);
4956 tcg_gen_andc_tl(t1, t2, t1);
4957 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
4958 gen_set_label(l2);
4959 tcg_temp_free(t0);
4960 tcg_temp_free(t1);
4961 tcg_temp_free(t2);
76a66253 4962 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4963 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4964}
4965
4966/* slq - slq. */
99e300ef 4967static void gen_slq(DisasContext *ctx)
76a66253 4968{
42a268c2 4969 TCGLabel *l1 = gen_new_label();
7487953d
AJ
4970 TCGv t0 = tcg_temp_new();
4971 TCGv t1 = tcg_temp_new();
4972 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
4973 tcg_gen_shl_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
4974 tcg_gen_subfi_tl(t1, 32, t1);
4975 tcg_gen_shr_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
4976 tcg_gen_or_tl(t1, t0, t1);
4977 gen_store_spr(SPR_MQ, t1);
4978 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
4979 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
4980 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
4981 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
4982 gen_set_label(l1);
4983 tcg_temp_free(t0);
4984 tcg_temp_free(t1);
76a66253 4985 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 4986 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
4987}
4988
d9bce9d9 4989/* sraiq - sraiq. */
99e300ef 4990static void gen_sraiq(DisasContext *ctx)
76a66253 4991{
7487953d 4992 int sh = SH(ctx->opcode);
42a268c2 4993 TCGLabel *l1 = gen_new_label();
7487953d
AJ
4994 TCGv t0 = tcg_temp_new();
4995 TCGv t1 = tcg_temp_new();
4996 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
4997 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
4998 tcg_gen_or_tl(t0, t0, t1);
4999 gen_store_spr(SPR_MQ, t0);
da91a00f 5000 tcg_gen_movi_tl(cpu_ca, 0);
7487953d
AJ
5001 tcg_gen_brcondi_tl(TCG_COND_EQ, t1, 0, l1);
5002 tcg_gen_brcondi_tl(TCG_COND_GE, cpu_gpr[rS(ctx->opcode)], 0, l1);
da91a00f 5003 tcg_gen_movi_tl(cpu_ca, 1);
7487953d
AJ
5004 gen_set_label(l1);
5005 tcg_gen_sari_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], sh);
5006 tcg_temp_free(t0);
5007 tcg_temp_free(t1);
76a66253 5008 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5009 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5010}
5011
5012/* sraq - sraq. */
99e300ef 5013static void gen_sraq(DisasContext *ctx)
76a66253 5014{
42a268c2
RH
5015 TCGLabel *l1 = gen_new_label();
5016 TCGLabel *l2 = gen_new_label();
7487953d
AJ
5017 TCGv t0 = tcg_temp_new();
5018 TCGv t1 = tcg_temp_local_new();
5019 TCGv t2 = tcg_temp_local_new();
5020 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5021 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5022 tcg_gen_sar_tl(t1, cpu_gpr[rS(ctx->opcode)], t2);
5023 tcg_gen_subfi_tl(t2, 32, t2);
5024 tcg_gen_shl_tl(t2, cpu_gpr[rS(ctx->opcode)], t2);
5025 tcg_gen_or_tl(t0, t0, t2);
5026 gen_store_spr(SPR_MQ, t0);
5027 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5028 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l1);
5029 tcg_gen_mov_tl(t2, cpu_gpr[rS(ctx->opcode)]);
5030 tcg_gen_sari_tl(t1, cpu_gpr[rS(ctx->opcode)], 31);
5031 gen_set_label(l1);
5032 tcg_temp_free(t0);
5033 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t1);
da91a00f 5034 tcg_gen_movi_tl(cpu_ca, 0);
7487953d
AJ
5035 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l2);
5036 tcg_gen_brcondi_tl(TCG_COND_EQ, t2, 0, l2);
da91a00f 5037 tcg_gen_movi_tl(cpu_ca, 1);
7487953d
AJ
5038 gen_set_label(l2);
5039 tcg_temp_free(t1);
5040 tcg_temp_free(t2);
76a66253 5041 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5042 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5043}
5044
5045/* sre - sre. */
99e300ef 5046static void gen_sre(DisasContext *ctx)
76a66253 5047{
7487953d
AJ
5048 TCGv t0 = tcg_temp_new();
5049 TCGv t1 = tcg_temp_new();
5050 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5051 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5052 tcg_gen_subfi_tl(t1, 32, t1);
5053 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5054 tcg_gen_or_tl(t1, t0, t1);
5055 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5056 gen_store_spr(SPR_MQ, t1);
5057 tcg_temp_free(t0);
5058 tcg_temp_free(t1);
76a66253 5059 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5060 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5061}
5062
5063/* srea - srea. */
99e300ef 5064static void gen_srea(DisasContext *ctx)
76a66253 5065{
7487953d
AJ
5066 TCGv t0 = tcg_temp_new();
5067 TCGv t1 = tcg_temp_new();
5068 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5069 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5070 gen_store_spr(SPR_MQ, t0);
5071 tcg_gen_sar_tl(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], t1);
5072 tcg_temp_free(t0);
5073 tcg_temp_free(t1);
76a66253 5074 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5075 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5076}
5077
5078/* sreq */
99e300ef 5079static void gen_sreq(DisasContext *ctx)
76a66253 5080{
7487953d
AJ
5081 TCGv t0 = tcg_temp_new();
5082 TCGv t1 = tcg_temp_new();
5083 TCGv t2 = tcg_temp_new();
5084 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x1F);
5085 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5086 tcg_gen_shr_tl(t1, t1, t0);
5087 tcg_gen_rotr_tl(t0, cpu_gpr[rS(ctx->opcode)], t0);
5088 gen_load_spr(t2, SPR_MQ);
5089 gen_store_spr(SPR_MQ, t0);
5090 tcg_gen_and_tl(t0, t0, t1);
5091 tcg_gen_andc_tl(t2, t2, t1);
5092 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5093 tcg_temp_free(t0);
5094 tcg_temp_free(t1);
5095 tcg_temp_free(t2);
76a66253 5096 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5097 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5098}
5099
5100/* sriq */
99e300ef 5101static void gen_sriq(DisasContext *ctx)
76a66253 5102{
7487953d
AJ
5103 int sh = SH(ctx->opcode);
5104 TCGv t0 = tcg_temp_new();
5105 TCGv t1 = tcg_temp_new();
5106 tcg_gen_shri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5107 tcg_gen_shli_tl(t1, cpu_gpr[rS(ctx->opcode)], 32 - sh);
5108 tcg_gen_or_tl(t1, t0, t1);
5109 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5110 gen_store_spr(SPR_MQ, t1);
5111 tcg_temp_free(t0);
5112 tcg_temp_free(t1);
76a66253 5113 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5114 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5115}
5116
5117/* srliq */
99e300ef 5118static void gen_srliq(DisasContext *ctx)
76a66253 5119{
7487953d
AJ
5120 int sh = SH(ctx->opcode);
5121 TCGv t0 = tcg_temp_new();
5122 TCGv t1 = tcg_temp_new();
5123 tcg_gen_rotri_tl(t0, cpu_gpr[rS(ctx->opcode)], sh);
5124 gen_load_spr(t1, SPR_MQ);
5125 gen_store_spr(SPR_MQ, t0);
5126 tcg_gen_andi_tl(t0, t0, (0xFFFFFFFFU >> sh));
5127 tcg_gen_andi_tl(t1, t1, ~(0xFFFFFFFFU >> sh));
5128 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5129 tcg_temp_free(t0);
5130 tcg_temp_free(t1);
76a66253 5131 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5132 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5133}
5134
5135/* srlq */
99e300ef 5136static void gen_srlq(DisasContext *ctx)
76a66253 5137{
42a268c2
RH
5138 TCGLabel *l1 = gen_new_label();
5139 TCGLabel *l2 = gen_new_label();
7487953d
AJ
5140 TCGv t0 = tcg_temp_local_new();
5141 TCGv t1 = tcg_temp_local_new();
5142 TCGv t2 = tcg_temp_local_new();
5143 tcg_gen_andi_tl(t2, cpu_gpr[rB(ctx->opcode)], 0x1F);
5144 tcg_gen_movi_tl(t1, 0xFFFFFFFF);
5145 tcg_gen_shr_tl(t2, t1, t2);
5146 tcg_gen_andi_tl(t0, cpu_gpr[rB(ctx->opcode)], 0x20);
5147 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5148 gen_load_spr(t0, SPR_MQ);
5149 tcg_gen_and_tl(cpu_gpr[rA(ctx->opcode)], t0, t2);
5150 tcg_gen_br(l2);
5151 gen_set_label(l1);
5152 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t2);
5153 tcg_gen_and_tl(t0, t0, t2);
5154 gen_load_spr(t1, SPR_MQ);
5155 tcg_gen_andc_tl(t1, t1, t2);
5156 tcg_gen_or_tl(cpu_gpr[rA(ctx->opcode)], t0, t1);
5157 gen_set_label(l2);
5158 tcg_temp_free(t0);
5159 tcg_temp_free(t1);
5160 tcg_temp_free(t2);
76a66253 5161 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5162 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5163}
5164
5165/* srq */
99e300ef 5166static void gen_srq(DisasContext *ctx)
76a66253 5167{
42a268c2 5168 TCGLabel *l1 = gen_new_label();
7487953d
AJ
5169 TCGv t0 = tcg_temp_new();
5170 TCGv t1 = tcg_temp_new();
5171 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x1F);
5172 tcg_gen_shr_tl(t0, cpu_gpr[rS(ctx->opcode)], t1);
5173 tcg_gen_subfi_tl(t1, 32, t1);
5174 tcg_gen_shl_tl(t1, cpu_gpr[rS(ctx->opcode)], t1);
5175 tcg_gen_or_tl(t1, t0, t1);
5176 gen_store_spr(SPR_MQ, t1);
5177 tcg_gen_andi_tl(t1, cpu_gpr[rB(ctx->opcode)], 0x20);
5178 tcg_gen_mov_tl(cpu_gpr[rA(ctx->opcode)], t0);
5179 tcg_gen_brcondi_tl(TCG_COND_EQ, t0, 0, l1);
5180 tcg_gen_movi_tl(cpu_gpr[rA(ctx->opcode)], 0);
5181 gen_set_label(l1);
5182 tcg_temp_free(t0);
5183 tcg_temp_free(t1);
76a66253 5184 if (unlikely(Rc(ctx->opcode) != 0))
7487953d 5185 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5186}
5187
5188/* PowerPC 602 specific instructions */
99e300ef 5189
54623277 5190/* dsa */
99e300ef 5191static void gen_dsa(DisasContext *ctx)
76a66253
JM
5192{
5193 /* XXX: TODO */
e06fcd75 5194 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5195}
5196
5197/* esa */
99e300ef 5198static void gen_esa(DisasContext *ctx)
76a66253
JM
5199{
5200 /* XXX: TODO */
e06fcd75 5201 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5202}
5203
5204/* mfrom */
99e300ef 5205static void gen_mfrom(DisasContext *ctx)
76a66253
JM
5206{
5207#if defined(CONFIG_USER_ONLY)
9b2fadda 5208 GEN_PRIV;
76a66253 5209#else
9b2fadda 5210 CHK_SV;
cf02a65c 5211 gen_helper_602_mfrom(cpu_gpr[rD(ctx->opcode)], cpu_gpr[rA(ctx->opcode)]);
9b2fadda 5212#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5213}
5214
5215/* 602 - 603 - G2 TLB management */
e8eaa2c0 5216
54623277 5217/* tlbld */
e8eaa2c0 5218static void gen_tlbld_6xx(DisasContext *ctx)
76a66253
JM
5219{
5220#if defined(CONFIG_USER_ONLY)
9b2fadda 5221 GEN_PRIV;
76a66253 5222#else
9b2fadda 5223 CHK_SV;
c6c7cf05 5224 gen_helper_6xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 5225#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5226}
5227
5228/* tlbli */
e8eaa2c0 5229static void gen_tlbli_6xx(DisasContext *ctx)
76a66253
JM
5230{
5231#if defined(CONFIG_USER_ONLY)
9b2fadda 5232 GEN_PRIV;
76a66253 5233#else
9b2fadda 5234 CHK_SV;
c6c7cf05 5235 gen_helper_6xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 5236#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5237}
5238
7dbe11ac 5239/* 74xx TLB management */
e8eaa2c0 5240
54623277 5241/* tlbld */
e8eaa2c0 5242static void gen_tlbld_74xx(DisasContext *ctx)
7dbe11ac
JM
5243{
5244#if defined(CONFIG_USER_ONLY)
9b2fadda 5245 GEN_PRIV;
7dbe11ac 5246#else
9b2fadda 5247 CHK_SV;
c6c7cf05 5248 gen_helper_74xx_tlbd(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 5249#endif /* defined(CONFIG_USER_ONLY) */
7dbe11ac
JM
5250}
5251
5252/* tlbli */
e8eaa2c0 5253static void gen_tlbli_74xx(DisasContext *ctx)
7dbe11ac
JM
5254{
5255#if defined(CONFIG_USER_ONLY)
9b2fadda 5256 GEN_PRIV;
7dbe11ac 5257#else
9b2fadda 5258 CHK_SV;
c6c7cf05 5259 gen_helper_74xx_tlbi(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 5260#endif /* defined(CONFIG_USER_ONLY) */
7dbe11ac
JM
5261}
5262
76a66253 5263/* POWER instructions not in PowerPC 601 */
99e300ef 5264
54623277 5265/* clf */
99e300ef 5266static void gen_clf(DisasContext *ctx)
76a66253
JM
5267{
5268 /* Cache line flush: implemented as no-op */
5269}
5270
5271/* cli */
99e300ef 5272static void gen_cli(DisasContext *ctx)
76a66253 5273{
76a66253 5274#if defined(CONFIG_USER_ONLY)
9b2fadda 5275 GEN_PRIV;
76a66253 5276#else
9b2fadda
BH
5277 /* Cache line invalidate: privileged and treated as no-op */
5278 CHK_SV;
5279#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5280}
5281
5282/* dclst */
99e300ef 5283static void gen_dclst(DisasContext *ctx)
76a66253
JM
5284{
5285 /* Data cache line store: treated as no-op */
5286}
5287
99e300ef 5288static void gen_mfsri(DisasContext *ctx)
76a66253
JM
5289{
5290#if defined(CONFIG_USER_ONLY)
9b2fadda 5291 GEN_PRIV;
76a66253 5292#else
74d37793
AJ
5293 int ra = rA(ctx->opcode);
5294 int rd = rD(ctx->opcode);
5295 TCGv t0;
9b2fadda
BH
5296
5297 CHK_SV;
74d37793 5298 t0 = tcg_temp_new();
76db3ba4 5299 gen_addr_reg_index(ctx, t0);
74d37793
AJ
5300 tcg_gen_shri_tl(t0, t0, 28);
5301 tcg_gen_andi_tl(t0, t0, 0xF);
c6c7cf05 5302 gen_helper_load_sr(cpu_gpr[rd], cpu_env, t0);
74d37793 5303 tcg_temp_free(t0);
76a66253 5304 if (ra != 0 && ra != rd)
74d37793 5305 tcg_gen_mov_tl(cpu_gpr[ra], cpu_gpr[rd]);
9b2fadda 5306#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5307}
5308
99e300ef 5309static void gen_rac(DisasContext *ctx)
76a66253
JM
5310{
5311#if defined(CONFIG_USER_ONLY)
9b2fadda 5312 GEN_PRIV;
76a66253 5313#else
22e0e173 5314 TCGv t0;
9b2fadda
BH
5315
5316 CHK_SV;
22e0e173 5317 t0 = tcg_temp_new();
76db3ba4 5318 gen_addr_reg_index(ctx, t0);
c6c7cf05 5319 gen_helper_rac(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
22e0e173 5320 tcg_temp_free(t0);
9b2fadda 5321#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5322}
5323
99e300ef 5324static void gen_rfsvc(DisasContext *ctx)
76a66253
JM
5325{
5326#if defined(CONFIG_USER_ONLY)
9b2fadda 5327 GEN_PRIV;
76a66253 5328#else
9b2fadda
BH
5329 CHK_SV;
5330
e5f17ac6 5331 gen_helper_rfsvc(cpu_env);
e06fcd75 5332 gen_sync_exception(ctx);
9b2fadda 5333#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5334}
5335
f9651121 5336/* svc is not implemented for now */
76a66253
JM
5337
5338/* BookE specific instructions */
99e300ef 5339
54623277 5340/* XXX: not implemented on 440 ? */
99e300ef 5341static void gen_mfapidi(DisasContext *ctx)
76a66253
JM
5342{
5343 /* XXX: TODO */
e06fcd75 5344 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253
JM
5345}
5346
2662a059 5347/* XXX: not implemented on 440 ? */
99e300ef 5348static void gen_tlbiva(DisasContext *ctx)
76a66253
JM
5349{
5350#if defined(CONFIG_USER_ONLY)
9b2fadda 5351 GEN_PRIV;
76a66253 5352#else
74d37793 5353 TCGv t0;
9b2fadda
BH
5354
5355 CHK_SV;
ec72e276 5356 t0 = tcg_temp_new();
76db3ba4 5357 gen_addr_reg_index(ctx, t0);
4693364f 5358 gen_helper_tlbiva(cpu_env, cpu_gpr[rB(ctx->opcode)]);
74d37793 5359 tcg_temp_free(t0);
9b2fadda 5360#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5361}
5362
5363/* All 405 MAC instructions are translated here */
636aa200
BS
5364static inline void gen_405_mulladd_insn(DisasContext *ctx, int opc2, int opc3,
5365 int ra, int rb, int rt, int Rc)
76a66253 5366{
182608d4
AJ
5367 TCGv t0, t1;
5368
a7812ae4
PB
5369 t0 = tcg_temp_local_new();
5370 t1 = tcg_temp_local_new();
182608d4 5371
76a66253
JM
5372 switch (opc3 & 0x0D) {
5373 case 0x05:
5374 /* macchw - macchw. - macchwo - macchwo. */
5375 /* macchws - macchws. - macchwso - macchwso. */
5376 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5377 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5378 /* mulchw - mulchw. */
182608d4
AJ
5379 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5380 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5381 tcg_gen_ext16s_tl(t1, t1);
76a66253
JM
5382 break;
5383 case 0x04:
5384 /* macchwu - macchwu. - macchwuo - macchwuo. */
5385 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5386 /* mulchwu - mulchwu. */
182608d4
AJ
5387 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5388 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5389 tcg_gen_ext16u_tl(t1, t1);
76a66253
JM
5390 break;
5391 case 0x01:
5392 /* machhw - machhw. - machhwo - machhwo. */
5393 /* machhws - machhws. - machhwso - machhwso. */
5394 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5395 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5396 /* mulhhw - mulhhw. */
182608d4
AJ
5397 tcg_gen_sari_tl(t0, cpu_gpr[ra], 16);
5398 tcg_gen_ext16s_tl(t0, t0);
5399 tcg_gen_sari_tl(t1, cpu_gpr[rb], 16);
5400 tcg_gen_ext16s_tl(t1, t1);
76a66253
JM
5401 break;
5402 case 0x00:
5403 /* machhwu - machhwu. - machhwuo - machhwuo. */
5404 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5405 /* mulhhwu - mulhhwu. */
182608d4
AJ
5406 tcg_gen_shri_tl(t0, cpu_gpr[ra], 16);
5407 tcg_gen_ext16u_tl(t0, t0);
5408 tcg_gen_shri_tl(t1, cpu_gpr[rb], 16);
5409 tcg_gen_ext16u_tl(t1, t1);
76a66253
JM
5410 break;
5411 case 0x0D:
5412 /* maclhw - maclhw. - maclhwo - maclhwo. */
5413 /* maclhws - maclhws. - maclhwso - maclhwso. */
5414 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5415 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5416 /* mullhw - mullhw. */
182608d4
AJ
5417 tcg_gen_ext16s_tl(t0, cpu_gpr[ra]);
5418 tcg_gen_ext16s_tl(t1, cpu_gpr[rb]);
76a66253
JM
5419 break;
5420 case 0x0C:
5421 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5422 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5423 /* mullhwu - mullhwu. */
182608d4
AJ
5424 tcg_gen_ext16u_tl(t0, cpu_gpr[ra]);
5425 tcg_gen_ext16u_tl(t1, cpu_gpr[rb]);
76a66253
JM
5426 break;
5427 }
76a66253 5428 if (opc2 & 0x04) {
182608d4
AJ
5429 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5430 tcg_gen_mul_tl(t1, t0, t1);
5431 if (opc2 & 0x02) {
5432 /* nmultiply-and-accumulate (0x0E) */
5433 tcg_gen_sub_tl(t0, cpu_gpr[rt], t1);
5434 } else {
5435 /* multiply-and-accumulate (0x0C) */
5436 tcg_gen_add_tl(t0, cpu_gpr[rt], t1);
5437 }
5438
5439 if (opc3 & 0x12) {
5440 /* Check overflow and/or saturate */
42a268c2 5441 TCGLabel *l1 = gen_new_label();
182608d4
AJ
5442
5443 if (opc3 & 0x10) {
5444 /* Start with XER OV disabled, the most likely case */
da91a00f 5445 tcg_gen_movi_tl(cpu_ov, 0);
182608d4
AJ
5446 }
5447 if (opc3 & 0x01) {
5448 /* Signed */
5449 tcg_gen_xor_tl(t1, cpu_gpr[rt], t1);
5450 tcg_gen_brcondi_tl(TCG_COND_GE, t1, 0, l1);
5451 tcg_gen_xor_tl(t1, cpu_gpr[rt], t0);
5452 tcg_gen_brcondi_tl(TCG_COND_LT, t1, 0, l1);
bdc4e053 5453 if (opc3 & 0x02) {
182608d4
AJ
5454 /* Saturate */
5455 tcg_gen_sari_tl(t0, cpu_gpr[rt], 31);
5456 tcg_gen_xori_tl(t0, t0, 0x7fffffff);
5457 }
5458 } else {
5459 /* Unsigned */
5460 tcg_gen_brcond_tl(TCG_COND_GEU, t0, t1, l1);
bdc4e053 5461 if (opc3 & 0x02) {
182608d4
AJ
5462 /* Saturate */
5463 tcg_gen_movi_tl(t0, UINT32_MAX);
5464 }
5465 }
5466 if (opc3 & 0x10) {
5467 /* Check overflow */
da91a00f
RH
5468 tcg_gen_movi_tl(cpu_ov, 1);
5469 tcg_gen_movi_tl(cpu_so, 1);
182608d4
AJ
5470 }
5471 gen_set_label(l1);
5472 tcg_gen_mov_tl(cpu_gpr[rt], t0);
5473 }
5474 } else {
5475 tcg_gen_mul_tl(cpu_gpr[rt], t0, t1);
76a66253 5476 }
182608d4
AJ
5477 tcg_temp_free(t0);
5478 tcg_temp_free(t1);
76a66253
JM
5479 if (unlikely(Rc) != 0) {
5480 /* Update Rc0 */
182608d4 5481 gen_set_Rc0(ctx, cpu_gpr[rt]);
76a66253
JM
5482 }
5483}
5484
a750fc0b 5485#define GEN_MAC_HANDLER(name, opc2, opc3) \
99e300ef 5486static void glue(gen_, name)(DisasContext *ctx) \
76a66253
JM
5487{ \
5488 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5489 rD(ctx->opcode), Rc(ctx->opcode)); \
5490}
5491
5492/* macchw - macchw. */
a750fc0b 5493GEN_MAC_HANDLER(macchw, 0x0C, 0x05);
76a66253 5494/* macchwo - macchwo. */
a750fc0b 5495GEN_MAC_HANDLER(macchwo, 0x0C, 0x15);
76a66253 5496/* macchws - macchws. */
a750fc0b 5497GEN_MAC_HANDLER(macchws, 0x0C, 0x07);
76a66253 5498/* macchwso - macchwso. */
a750fc0b 5499GEN_MAC_HANDLER(macchwso, 0x0C, 0x17);
76a66253 5500/* macchwsu - macchwsu. */
a750fc0b 5501GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06);
76a66253 5502/* macchwsuo - macchwsuo. */
a750fc0b 5503GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16);
76a66253 5504/* macchwu - macchwu. */
a750fc0b 5505GEN_MAC_HANDLER(macchwu, 0x0C, 0x04);
76a66253 5506/* macchwuo - macchwuo. */
a750fc0b 5507GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14);
76a66253 5508/* machhw - machhw. */
a750fc0b 5509GEN_MAC_HANDLER(machhw, 0x0C, 0x01);
76a66253 5510/* machhwo - machhwo. */
a750fc0b 5511GEN_MAC_HANDLER(machhwo, 0x0C, 0x11);
76a66253 5512/* machhws - machhws. */
a750fc0b 5513GEN_MAC_HANDLER(machhws, 0x0C, 0x03);
76a66253 5514/* machhwso - machhwso. */
a750fc0b 5515GEN_MAC_HANDLER(machhwso, 0x0C, 0x13);
76a66253 5516/* machhwsu - machhwsu. */
a750fc0b 5517GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02);
76a66253 5518/* machhwsuo - machhwsuo. */
a750fc0b 5519GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12);
76a66253 5520/* machhwu - machhwu. */
a750fc0b 5521GEN_MAC_HANDLER(machhwu, 0x0C, 0x00);
76a66253 5522/* machhwuo - machhwuo. */
a750fc0b 5523GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10);
76a66253 5524/* maclhw - maclhw. */
a750fc0b 5525GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D);
76a66253 5526/* maclhwo - maclhwo. */
a750fc0b 5527GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D);
76a66253 5528/* maclhws - maclhws. */
a750fc0b 5529GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F);
76a66253 5530/* maclhwso - maclhwso. */
a750fc0b 5531GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F);
76a66253 5532/* maclhwu - maclhwu. */
a750fc0b 5533GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C);
76a66253 5534/* maclhwuo - maclhwuo. */
a750fc0b 5535GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C);
76a66253 5536/* maclhwsu - maclhwsu. */
a750fc0b 5537GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E);
76a66253 5538/* maclhwsuo - maclhwsuo. */
a750fc0b 5539GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E);
76a66253 5540/* nmacchw - nmacchw. */
a750fc0b 5541GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05);
76a66253 5542/* nmacchwo - nmacchwo. */
a750fc0b 5543GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15);
76a66253 5544/* nmacchws - nmacchws. */
a750fc0b 5545GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07);
76a66253 5546/* nmacchwso - nmacchwso. */
a750fc0b 5547GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17);
76a66253 5548/* nmachhw - nmachhw. */
a750fc0b 5549GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01);
76a66253 5550/* nmachhwo - nmachhwo. */
a750fc0b 5551GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11);
76a66253 5552/* nmachhws - nmachhws. */
a750fc0b 5553GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03);
76a66253 5554/* nmachhwso - nmachhwso. */
a750fc0b 5555GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13);
76a66253 5556/* nmaclhw - nmaclhw. */
a750fc0b 5557GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D);
76a66253 5558/* nmaclhwo - nmaclhwo. */
a750fc0b 5559GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D);
76a66253 5560/* nmaclhws - nmaclhws. */
a750fc0b 5561GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F);
76a66253 5562/* nmaclhwso - nmaclhwso. */
a750fc0b 5563GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F);
76a66253
JM
5564
5565/* mulchw - mulchw. */
a750fc0b 5566GEN_MAC_HANDLER(mulchw, 0x08, 0x05);
76a66253 5567/* mulchwu - mulchwu. */
a750fc0b 5568GEN_MAC_HANDLER(mulchwu, 0x08, 0x04);
76a66253 5569/* mulhhw - mulhhw. */
a750fc0b 5570GEN_MAC_HANDLER(mulhhw, 0x08, 0x01);
76a66253 5571/* mulhhwu - mulhhwu. */
a750fc0b 5572GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00);
76a66253 5573/* mullhw - mullhw. */
a750fc0b 5574GEN_MAC_HANDLER(mullhw, 0x08, 0x0D);
76a66253 5575/* mullhwu - mullhwu. */
a750fc0b 5576GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C);
76a66253
JM
5577
5578/* mfdcr */
99e300ef 5579static void gen_mfdcr(DisasContext *ctx)
76a66253
JM
5580{
5581#if defined(CONFIG_USER_ONLY)
9b2fadda 5582 GEN_PRIV;
76a66253 5583#else
06dca6a7 5584 TCGv dcrn;
9b2fadda
BH
5585
5586 CHK_SV;
06dca6a7 5587 dcrn = tcg_const_tl(SPR(ctx->opcode));
d0f1562d 5588 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env, dcrn);
06dca6a7 5589 tcg_temp_free(dcrn);
9b2fadda 5590#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5591}
5592
5593/* mtdcr */
99e300ef 5594static void gen_mtdcr(DisasContext *ctx)
76a66253
JM
5595{
5596#if defined(CONFIG_USER_ONLY)
9b2fadda 5597 GEN_PRIV;
76a66253 5598#else
06dca6a7 5599 TCGv dcrn;
9b2fadda
BH
5600
5601 CHK_SV;
06dca6a7 5602 dcrn = tcg_const_tl(SPR(ctx->opcode));
d0f1562d 5603 gen_helper_store_dcr(cpu_env, dcrn, cpu_gpr[rS(ctx->opcode)]);
06dca6a7 5604 tcg_temp_free(dcrn);
9b2fadda 5605#endif /* defined(CONFIG_USER_ONLY) */
a42bd6cc
JM
5606}
5607
5608/* mfdcrx */
2662a059 5609/* XXX: not implemented on 440 ? */
99e300ef 5610static void gen_mfdcrx(DisasContext *ctx)
a42bd6cc
JM
5611{
5612#if defined(CONFIG_USER_ONLY)
9b2fadda 5613 GEN_PRIV;
a42bd6cc 5614#else
9b2fadda 5615 CHK_SV;
d0f1562d
BS
5616 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5617 cpu_gpr[rA(ctx->opcode)]);
a750fc0b 5618 /* Note: Rc update flag set leads to undefined state of Rc0 */
9b2fadda 5619#endif /* defined(CONFIG_USER_ONLY) */
a42bd6cc
JM
5620}
5621
5622/* mtdcrx */
2662a059 5623/* XXX: not implemented on 440 ? */
99e300ef 5624static void gen_mtdcrx(DisasContext *ctx)
a42bd6cc
JM
5625{
5626#if defined(CONFIG_USER_ONLY)
9b2fadda 5627 GEN_PRIV;
a42bd6cc 5628#else
9b2fadda 5629 CHK_SV;
d0f1562d
BS
5630 gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
5631 cpu_gpr[rS(ctx->opcode)]);
a750fc0b 5632 /* Note: Rc update flag set leads to undefined state of Rc0 */
9b2fadda 5633#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5634}
5635
a750fc0b 5636/* mfdcrux (PPC 460) : user-mode access to DCR */
99e300ef 5637static void gen_mfdcrux(DisasContext *ctx)
a750fc0b 5638{
d0f1562d
BS
5639 gen_helper_load_dcr(cpu_gpr[rD(ctx->opcode)], cpu_env,
5640 cpu_gpr[rA(ctx->opcode)]);
a750fc0b
JM
5641 /* Note: Rc update flag set leads to undefined state of Rc0 */
5642}
5643
5644/* mtdcrux (PPC 460) : user-mode access to DCR */
99e300ef 5645static void gen_mtdcrux(DisasContext *ctx)
a750fc0b 5646{
975e5463 5647 gen_helper_store_dcr(cpu_env, cpu_gpr[rA(ctx->opcode)],
d0f1562d 5648 cpu_gpr[rS(ctx->opcode)]);
a750fc0b
JM
5649 /* Note: Rc update flag set leads to undefined state of Rc0 */
5650}
5651
76a66253 5652/* dccci */
99e300ef 5653static void gen_dccci(DisasContext *ctx)
76a66253 5654{
9b2fadda 5655 CHK_SV;
76a66253 5656 /* interpreted as no-op */
76a66253
JM
5657}
5658
5659/* dcread */
99e300ef 5660static void gen_dcread(DisasContext *ctx)
76a66253
JM
5661{
5662#if defined(CONFIG_USER_ONLY)
9b2fadda 5663 GEN_PRIV;
76a66253 5664#else
b61f2753 5665 TCGv EA, val;
9b2fadda
BH
5666
5667 CHK_SV;
76db3ba4 5668 gen_set_access_type(ctx, ACCESS_CACHE);
a7812ae4 5669 EA = tcg_temp_new();
76db3ba4 5670 gen_addr_reg_index(ctx, EA);
a7812ae4 5671 val = tcg_temp_new();
76db3ba4 5672 gen_qemu_ld32u(ctx, val, EA);
b61f2753
AJ
5673 tcg_temp_free(val);
5674 tcg_gen_mov_tl(cpu_gpr[rD(ctx->opcode)], EA);
5675 tcg_temp_free(EA);
9b2fadda 5676#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5677}
5678
5679/* icbt */
e8eaa2c0 5680static void gen_icbt_40x(DisasContext *ctx)
76a66253
JM
5681{
5682 /* interpreted as no-op */
5683 /* XXX: specification say this is treated as a load by the MMU
5684 * but does not generate any exception
5685 */
5686}
5687
5688/* iccci */
99e300ef 5689static void gen_iccci(DisasContext *ctx)
76a66253 5690{
9b2fadda 5691 CHK_SV;
76a66253 5692 /* interpreted as no-op */
76a66253
JM
5693}
5694
5695/* icread */
99e300ef 5696static void gen_icread(DisasContext *ctx)
76a66253 5697{
9b2fadda 5698 CHK_SV;
76a66253 5699 /* interpreted as no-op */
76a66253
JM
5700}
5701
c47493f2 5702/* rfci (supervisor only) */
e8eaa2c0 5703static void gen_rfci_40x(DisasContext *ctx)
a42bd6cc
JM
5704{
5705#if defined(CONFIG_USER_ONLY)
9b2fadda 5706 GEN_PRIV;
a42bd6cc 5707#else
9b2fadda 5708 CHK_SV;
a42bd6cc 5709 /* Restore CPU state */
e5f17ac6 5710 gen_helper_40x_rfci(cpu_env);
e06fcd75 5711 gen_sync_exception(ctx);
9b2fadda 5712#endif /* defined(CONFIG_USER_ONLY) */
a42bd6cc
JM
5713}
5714
99e300ef 5715static void gen_rfci(DisasContext *ctx)
a42bd6cc
JM
5716{
5717#if defined(CONFIG_USER_ONLY)
9b2fadda 5718 GEN_PRIV;
a42bd6cc 5719#else
9b2fadda 5720 CHK_SV;
a42bd6cc 5721 /* Restore CPU state */
e5f17ac6 5722 gen_helper_rfci(cpu_env);
e06fcd75 5723 gen_sync_exception(ctx);
9b2fadda 5724#endif /* defined(CONFIG_USER_ONLY) */
a42bd6cc
JM
5725}
5726
5727/* BookE specific */
99e300ef 5728
54623277 5729/* XXX: not implemented on 440 ? */
99e300ef 5730static void gen_rfdi(DisasContext *ctx)
76a66253
JM
5731{
5732#if defined(CONFIG_USER_ONLY)
9b2fadda 5733 GEN_PRIV;
76a66253 5734#else
9b2fadda 5735 CHK_SV;
76a66253 5736 /* Restore CPU state */
e5f17ac6 5737 gen_helper_rfdi(cpu_env);
e06fcd75 5738 gen_sync_exception(ctx);
9b2fadda 5739#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5740}
5741
2662a059 5742/* XXX: not implemented on 440 ? */
99e300ef 5743static void gen_rfmci(DisasContext *ctx)
a42bd6cc
JM
5744{
5745#if defined(CONFIG_USER_ONLY)
9b2fadda 5746 GEN_PRIV;
a42bd6cc 5747#else
9b2fadda 5748 CHK_SV;
a42bd6cc 5749 /* Restore CPU state */
e5f17ac6 5750 gen_helper_rfmci(cpu_env);
e06fcd75 5751 gen_sync_exception(ctx);
9b2fadda 5752#endif /* defined(CONFIG_USER_ONLY) */
a42bd6cc 5753}
5eb7995e 5754
d9bce9d9 5755/* TLB management - PowerPC 405 implementation */
e8eaa2c0 5756
54623277 5757/* tlbre */
e8eaa2c0 5758static void gen_tlbre_40x(DisasContext *ctx)
76a66253
JM
5759{
5760#if defined(CONFIG_USER_ONLY)
9b2fadda 5761 GEN_PRIV;
76a66253 5762#else
9b2fadda 5763 CHK_SV;
76a66253
JM
5764 switch (rB(ctx->opcode)) {
5765 case 0:
c6c7cf05
BS
5766 gen_helper_4xx_tlbre_hi(cpu_gpr[rD(ctx->opcode)], cpu_env,
5767 cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5768 break;
5769 case 1:
c6c7cf05
BS
5770 gen_helper_4xx_tlbre_lo(cpu_gpr[rD(ctx->opcode)], cpu_env,
5771 cpu_gpr[rA(ctx->opcode)]);
76a66253
JM
5772 break;
5773 default:
e06fcd75 5774 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253 5775 break;
9a64fbe4 5776 }
9b2fadda 5777#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5778}
5779
d9bce9d9 5780/* tlbsx - tlbsx. */
e8eaa2c0 5781static void gen_tlbsx_40x(DisasContext *ctx)
76a66253
JM
5782{
5783#if defined(CONFIG_USER_ONLY)
9b2fadda 5784 GEN_PRIV;
76a66253 5785#else
74d37793 5786 TCGv t0;
9b2fadda
BH
5787
5788 CHK_SV;
74d37793 5789 t0 = tcg_temp_new();
76db3ba4 5790 gen_addr_reg_index(ctx, t0);
c6c7cf05 5791 gen_helper_4xx_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793
AJ
5792 tcg_temp_free(t0);
5793 if (Rc(ctx->opcode)) {
42a268c2 5794 TCGLabel *l1 = gen_new_label();
da91a00f 5795 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
74d37793
AJ
5796 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5797 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5798 gen_set_label(l1);
5799 }
9b2fadda 5800#endif /* defined(CONFIG_USER_ONLY) */
79aceca5
FB
5801}
5802
76a66253 5803/* tlbwe */
e8eaa2c0 5804static void gen_tlbwe_40x(DisasContext *ctx)
79aceca5 5805{
76a66253 5806#if defined(CONFIG_USER_ONLY)
9b2fadda 5807 GEN_PRIV;
76a66253 5808#else
9b2fadda
BH
5809 CHK_SV;
5810
76a66253
JM
5811 switch (rB(ctx->opcode)) {
5812 case 0:
c6c7cf05
BS
5813 gen_helper_4xx_tlbwe_hi(cpu_env, cpu_gpr[rA(ctx->opcode)],
5814 cpu_gpr[rS(ctx->opcode)]);
76a66253
JM
5815 break;
5816 case 1:
c6c7cf05
BS
5817 gen_helper_4xx_tlbwe_lo(cpu_env, cpu_gpr[rA(ctx->opcode)],
5818 cpu_gpr[rS(ctx->opcode)]);
76a66253
JM
5819 break;
5820 default:
e06fcd75 5821 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
76a66253 5822 break;
9a64fbe4 5823 }
9b2fadda 5824#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
5825}
5826
a4bb6c3e 5827/* TLB management - PowerPC 440 implementation */
e8eaa2c0 5828
54623277 5829/* tlbre */
e8eaa2c0 5830static void gen_tlbre_440(DisasContext *ctx)
5eb7995e
JM
5831{
5832#if defined(CONFIG_USER_ONLY)
9b2fadda 5833 GEN_PRIV;
5eb7995e 5834#else
9b2fadda
BH
5835 CHK_SV;
5836
5eb7995e
JM
5837 switch (rB(ctx->opcode)) {
5838 case 0:
5eb7995e 5839 case 1:
5eb7995e 5840 case 2:
74d37793
AJ
5841 {
5842 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
c6c7cf05
BS
5843 gen_helper_440_tlbre(cpu_gpr[rD(ctx->opcode)], cpu_env,
5844 t0, cpu_gpr[rA(ctx->opcode)]);
74d37793
AJ
5845 tcg_temp_free_i32(t0);
5846 }
5eb7995e
JM
5847 break;
5848 default:
e06fcd75 5849 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5eb7995e
JM
5850 break;
5851 }
9b2fadda 5852#endif /* defined(CONFIG_USER_ONLY) */
5eb7995e
JM
5853}
5854
5855/* tlbsx - tlbsx. */
e8eaa2c0 5856static void gen_tlbsx_440(DisasContext *ctx)
5eb7995e
JM
5857{
5858#if defined(CONFIG_USER_ONLY)
9b2fadda 5859 GEN_PRIV;
5eb7995e 5860#else
74d37793 5861 TCGv t0;
9b2fadda
BH
5862
5863 CHK_SV;
74d37793 5864 t0 = tcg_temp_new();
76db3ba4 5865 gen_addr_reg_index(ctx, t0);
c6c7cf05 5866 gen_helper_440_tlbsx(cpu_gpr[rD(ctx->opcode)], cpu_env, t0);
74d37793
AJ
5867 tcg_temp_free(t0);
5868 if (Rc(ctx->opcode)) {
42a268c2 5869 TCGLabel *l1 = gen_new_label();
da91a00f 5870 tcg_gen_trunc_tl_i32(cpu_crf[0], cpu_so);
74d37793
AJ
5871 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_gpr[rD(ctx->opcode)], -1, l1);
5872 tcg_gen_ori_i32(cpu_crf[0], cpu_crf[0], 0x02);
5873 gen_set_label(l1);
5874 }
9b2fadda 5875#endif /* defined(CONFIG_USER_ONLY) */
5eb7995e
JM
5876}
5877
5878/* tlbwe */
e8eaa2c0 5879static void gen_tlbwe_440(DisasContext *ctx)
5eb7995e
JM
5880{
5881#if defined(CONFIG_USER_ONLY)
9b2fadda 5882 GEN_PRIV;
5eb7995e 5883#else
9b2fadda 5884 CHK_SV;
5eb7995e
JM
5885 switch (rB(ctx->opcode)) {
5886 case 0:
5eb7995e 5887 case 1:
5eb7995e 5888 case 2:
74d37793
AJ
5889 {
5890 TCGv_i32 t0 = tcg_const_i32(rB(ctx->opcode));
c6c7cf05
BS
5891 gen_helper_440_tlbwe(cpu_env, t0, cpu_gpr[rA(ctx->opcode)],
5892 cpu_gpr[rS(ctx->opcode)]);
74d37793
AJ
5893 tcg_temp_free_i32(t0);
5894 }
5eb7995e
JM
5895 break;
5896 default:
e06fcd75 5897 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5eb7995e
JM
5898 break;
5899 }
9b2fadda 5900#endif /* defined(CONFIG_USER_ONLY) */
5eb7995e
JM
5901}
5902
01662f3e
AG
5903/* TLB management - PowerPC BookE 2.06 implementation */
5904
5905/* tlbre */
5906static void gen_tlbre_booke206(DisasContext *ctx)
5907{
9b2fadda
BH
5908 #if defined(CONFIG_USER_ONLY)
5909 GEN_PRIV;
01662f3e 5910#else
9b2fadda 5911 CHK_SV;
c6c7cf05 5912 gen_helper_booke206_tlbre(cpu_env);
9b2fadda 5913#endif /* defined(CONFIG_USER_ONLY) */
01662f3e
AG
5914}
5915
5916/* tlbsx - tlbsx. */
5917static void gen_tlbsx_booke206(DisasContext *ctx)
5918{
5919#if defined(CONFIG_USER_ONLY)
9b2fadda 5920 GEN_PRIV;
01662f3e
AG
5921#else
5922 TCGv t0;
01662f3e 5923
9b2fadda 5924 CHK_SV;
01662f3e
AG
5925 if (rA(ctx->opcode)) {
5926 t0 = tcg_temp_new();
5927 tcg_gen_mov_tl(t0, cpu_gpr[rD(ctx->opcode)]);
5928 } else {
5929 t0 = tcg_const_tl(0);
5930 }
5931
5932 tcg_gen_add_tl(t0, t0, cpu_gpr[rB(ctx->opcode)]);
c6c7cf05 5933 gen_helper_booke206_tlbsx(cpu_env, t0);
c80d1df5 5934 tcg_temp_free(t0);
9b2fadda 5935#endif /* defined(CONFIG_USER_ONLY) */
01662f3e
AG
5936}
5937
5938/* tlbwe */
5939static void gen_tlbwe_booke206(DisasContext *ctx)
5940{
5941#if defined(CONFIG_USER_ONLY)
9b2fadda 5942 GEN_PRIV;
01662f3e 5943#else
9b2fadda 5944 CHK_SV;
c6c7cf05 5945 gen_helper_booke206_tlbwe(cpu_env);
9b2fadda 5946#endif /* defined(CONFIG_USER_ONLY) */
01662f3e
AG
5947}
5948
5949static void gen_tlbivax_booke206(DisasContext *ctx)
5950{
5951#if defined(CONFIG_USER_ONLY)
9b2fadda 5952 GEN_PRIV;
01662f3e
AG
5953#else
5954 TCGv t0;
01662f3e 5955
9b2fadda 5956 CHK_SV;
01662f3e
AG
5957 t0 = tcg_temp_new();
5958 gen_addr_reg_index(ctx, t0);
c6c7cf05 5959 gen_helper_booke206_tlbivax(cpu_env, t0);
c80d1df5 5960 tcg_temp_free(t0);
9b2fadda 5961#endif /* defined(CONFIG_USER_ONLY) */
01662f3e
AG
5962}
5963
6d3db821
AG
5964static void gen_tlbilx_booke206(DisasContext *ctx)
5965{
5966#if defined(CONFIG_USER_ONLY)
9b2fadda 5967 GEN_PRIV;
6d3db821
AG
5968#else
5969 TCGv t0;
6d3db821 5970
9b2fadda 5971 CHK_SV;
6d3db821
AG
5972 t0 = tcg_temp_new();
5973 gen_addr_reg_index(ctx, t0);
5974
5975 switch((ctx->opcode >> 21) & 0x3) {
5976 case 0:
c6c7cf05 5977 gen_helper_booke206_tlbilx0(cpu_env, t0);
6d3db821
AG
5978 break;
5979 case 1:
c6c7cf05 5980 gen_helper_booke206_tlbilx1(cpu_env, t0);
6d3db821
AG
5981 break;
5982 case 3:
c6c7cf05 5983 gen_helper_booke206_tlbilx3(cpu_env, t0);
6d3db821
AG
5984 break;
5985 default:
5986 gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
5987 break;
5988 }
5989
5990 tcg_temp_free(t0);
9b2fadda 5991#endif /* defined(CONFIG_USER_ONLY) */
6d3db821
AG
5992}
5993
01662f3e 5994
76a66253 5995/* wrtee */
99e300ef 5996static void gen_wrtee(DisasContext *ctx)
76a66253
JM
5997{
5998#if defined(CONFIG_USER_ONLY)
9b2fadda 5999 GEN_PRIV;
76a66253 6000#else
6527f6ea 6001 TCGv t0;
9b2fadda
BH
6002
6003 CHK_SV;
6527f6ea
AJ
6004 t0 = tcg_temp_new();
6005 tcg_gen_andi_tl(t0, cpu_gpr[rD(ctx->opcode)], (1 << MSR_EE));
6006 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6007 tcg_gen_or_tl(cpu_msr, cpu_msr, t0);
6008 tcg_temp_free(t0);
dee96f6c
JM
6009 /* Stop translation to have a chance to raise an exception
6010 * if we just set msr_ee to 1
6011 */
e06fcd75 6012 gen_stop_exception(ctx);
9b2fadda 6013#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
6014}
6015
6016/* wrteei */
99e300ef 6017static void gen_wrteei(DisasContext *ctx)
76a66253
JM
6018{
6019#if defined(CONFIG_USER_ONLY)
9b2fadda 6020 GEN_PRIV;
76a66253 6021#else
9b2fadda 6022 CHK_SV;
fbe73008 6023 if (ctx->opcode & 0x00008000) {
6527f6ea
AJ
6024 tcg_gen_ori_tl(cpu_msr, cpu_msr, (1 << MSR_EE));
6025 /* Stop translation to have a chance to raise an exception */
e06fcd75 6026 gen_stop_exception(ctx);
6527f6ea 6027 } else {
1b6e5f99 6028 tcg_gen_andi_tl(cpu_msr, cpu_msr, ~(1 << MSR_EE));
6527f6ea 6029 }
9b2fadda 6030#endif /* defined(CONFIG_USER_ONLY) */
76a66253
JM
6031}
6032
08e46e54 6033/* PowerPC 440 specific instructions */
99e300ef 6034
54623277 6035/* dlmzb */
99e300ef 6036static void gen_dlmzb(DisasContext *ctx)
76a66253 6037{
ef0d51af 6038 TCGv_i32 t0 = tcg_const_i32(Rc(ctx->opcode));
d15f74fb
BS
6039 gen_helper_dlmzb(cpu_gpr[rA(ctx->opcode)], cpu_env,
6040 cpu_gpr[rS(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0);
ef0d51af 6041 tcg_temp_free_i32(t0);
76a66253
JM
6042}
6043
6044/* mbar replaces eieio on 440 */
99e300ef 6045static void gen_mbar(DisasContext *ctx)
76a66253
JM
6046{
6047 /* interpreted as no-op */
6048}
6049
6050/* msync replaces sync on 440 */
dcb2b9e1 6051static void gen_msync_4xx(DisasContext *ctx)
76a66253
JM
6052{
6053 /* interpreted as no-op */
6054}
6055
6056/* icbt */
e8eaa2c0 6057static void gen_icbt_440(DisasContext *ctx)
76a66253
JM
6058{
6059 /* interpreted as no-op */
6060 /* XXX: specification say this is treated as a load by the MMU
6061 * but does not generate any exception
6062 */
79aceca5
FB
6063}
6064
9e0b5cb1
AG
6065/* Embedded.Processor Control */
6066
6067static void gen_msgclr(DisasContext *ctx)
6068{
6069#if defined(CONFIG_USER_ONLY)
9b2fadda 6070 GEN_PRIV;
9e0b5cb1 6071#else
9b2fadda 6072 CHK_SV;
e5f17ac6 6073 gen_helper_msgclr(cpu_env, cpu_gpr[rB(ctx->opcode)]);
9b2fadda 6074#endif /* defined(CONFIG_USER_ONLY) */
9e0b5cb1
AG
6075}
6076
d5d11a39
AG
6077static void gen_msgsnd(DisasContext *ctx)
6078{
6079#if defined(CONFIG_USER_ONLY)
9b2fadda 6080 GEN_PRIV;
d5d11a39 6081#else
9b2fadda 6082 CHK_SV;
d5d11a39 6083 gen_helper_msgsnd(cpu_gpr[rB(ctx->opcode)]);
9b2fadda 6084#endif /* defined(CONFIG_USER_ONLY) */
d5d11a39
AG
6085}
6086
b04ae981 6087
aeeb044c
ND
6088#if defined(TARGET_PPC64)
6089static void gen_maddld(DisasContext *ctx)
6090{
6091 TCGv_i64 t1 = tcg_temp_new_i64();
6092
6093 tcg_gen_mul_i64(t1, cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)]);
6094 tcg_gen_add_i64(cpu_gpr[rD(ctx->opcode)], t1, cpu_gpr[rC(ctx->opcode)]);
6095 tcg_temp_free_i64(t1);
6096}
5f29cc82
ND
6097
6098/* maddhd maddhdu */
6099static void gen_maddhd_maddhdu(DisasContext *ctx)
6100{
6101 TCGv_i64 lo = tcg_temp_new_i64();
6102 TCGv_i64 hi = tcg_temp_new_i64();
6103 TCGv_i64 t1 = tcg_temp_new_i64();
6104
6105 if (Rc(ctx->opcode)) {
6106 tcg_gen_mulu2_i64(lo, hi, cpu_gpr[rA(ctx->opcode)],
6107 cpu_gpr[rB(ctx->opcode)]);
6108 tcg_gen_movi_i64(t1, 0);
6109 } else {
6110 tcg_gen_muls2_i64(lo, hi, cpu_gpr[rA(ctx->opcode)],
6111 cpu_gpr[rB(ctx->opcode)]);
6112 tcg_gen_sari_i64(t1, cpu_gpr[rC(ctx->opcode)], 63);
6113 }
6114 tcg_gen_add2_i64(t1, cpu_gpr[rD(ctx->opcode)], lo, hi,
6115 cpu_gpr[rC(ctx->opcode)], t1);
6116 tcg_temp_free_i64(lo);
6117 tcg_temp_free_i64(hi);
6118 tcg_temp_free_i64(t1);
6119}
aeeb044c
ND
6120#endif /* defined(TARGET_PPC64) */
6121
0ff93d11
TM
6122static void gen_tbegin(DisasContext *ctx)
6123{
6124 if (unlikely(!ctx->tm_enabled)) {
6125 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM);
6126 return;
6127 }
6128 gen_helper_tbegin(cpu_env);
6129}
6130
56a84615
TM
6131#define GEN_TM_NOOP(name) \
6132static inline void gen_##name(DisasContext *ctx) \
6133{ \
6134 if (unlikely(!ctx->tm_enabled)) { \
6135 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6136 return; \
6137 } \
6138 /* Because tbegin always fails in QEMU, these user \
6139 * space instructions all have a simple implementation: \
6140 * \
6141 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6142 * = 0b0 || 0b00 || 0b0 \
6143 */ \
6144 tcg_gen_movi_i32(cpu_crf[0], 0); \
6145}
6146
6147GEN_TM_NOOP(tend);
6148GEN_TM_NOOP(tabort);
6149GEN_TM_NOOP(tabortwc);
6150GEN_TM_NOOP(tabortwci);
6151GEN_TM_NOOP(tabortdc);
6152GEN_TM_NOOP(tabortdci);
6153GEN_TM_NOOP(tsr);
b8b4576e
SJS
6154static inline void gen_cp_abort(DisasContext *ctx)
6155{
6156 // Do Nothing
6157}
56a84615 6158
80b8c1ee
ND
6159#define GEN_CP_PASTE_NOOP(name) \
6160static inline void gen_##name(DisasContext *ctx) \
6161{ \
6162 /* Generate invalid exception until \
6163 * we have an implementation of the copy \
6164 * paste facility \
6165 */ \
6166 gen_invalid(ctx); \
6167}
6168
6169GEN_CP_PASTE_NOOP(copy)
6170GEN_CP_PASTE_NOOP(paste)
6171
aeedd582
TM
6172static void gen_tcheck(DisasContext *ctx)
6173{
6174 if (unlikely(!ctx->tm_enabled)) {
6175 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM);
6176 return;
6177 }
6178 /* Because tbegin always fails, the tcheck implementation
6179 * is simple:
6180 *
6181 * CR[CRF] = TDOOMED || MSR[TS] || 0b0
6182 * = 0b1 || 0b00 || 0b0
6183 */
6184 tcg_gen_movi_i32(cpu_crf[crfD(ctx->opcode)], 0x8);
6185}
6186
f83c2378
TM
6187#if defined(CONFIG_USER_ONLY)
6188#define GEN_TM_PRIV_NOOP(name) \
6189static inline void gen_##name(DisasContext *ctx) \
6190{ \
9b2fadda 6191 gen_priv_exception(ctx, POWERPC_EXCP_PRIV_OPC); \
f83c2378
TM
6192}
6193
6194#else
6195
6196#define GEN_TM_PRIV_NOOP(name) \
6197static inline void gen_##name(DisasContext *ctx) \
6198{ \
9b2fadda 6199 CHK_SV; \
f83c2378
TM
6200 if (unlikely(!ctx->tm_enabled)) { \
6201 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6202 return; \
6203 } \
6204 /* Because tbegin always fails, the implementation is \
6205 * simple: \
6206 * \
6207 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6208 * = 0b0 || 0b00 | 0b0 \
6209 */ \
6210 tcg_gen_movi_i32(cpu_crf[0], 0); \
6211}
6212
6213#endif
6214
6215GEN_TM_PRIV_NOOP(treclaim);
6216GEN_TM_PRIV_NOOP(trechkpt);
6217
15848410
BH
6218#include "translate/fp-impl.inc.c"
6219
6220#include "translate/vmx-impl.inc.c"
6221
6222#include "translate/vsx-impl.inc.c"
6223
6224#include "translate/dfp-impl.inc.c"
6225
6226#include "translate/spe-impl.inc.c"
6227
5cb091a4
ND
6228/* Handles lfdp, lxsd, lxssp */
6229static void gen_dform39(DisasContext *ctx)
6230{
6231 switch (ctx->opcode & 0x3) {
6232 case 0: /* lfdp */
6233 if (ctx->insns_flags2 & PPC2_ISA205) {
6234 return gen_lfdp(ctx);
6235 }
6236 break;
6237 case 2: /* lxsd */
6238 if (ctx->insns_flags2 & PPC2_ISA300) {
6239 return gen_lxsd(ctx);
6240 }
6241 break;
6242 case 3: /* lxssp */
6243 if (ctx->insns_flags2 & PPC2_ISA300) {
6244 return gen_lxssp(ctx);
6245 }
6246 break;
6247 }
6248 return gen_invalid(ctx);
6249}
6250
d59ba583 6251/* handles stfdp, lxv, stxsd, stxssp lxvx */
e3001664
ND
6252static void gen_dform3D(DisasContext *ctx)
6253{
6254 if ((ctx->opcode & 3) == 1) { /* DQ-FORM */
6255 switch (ctx->opcode & 0x7) {
6256 case 1: /* lxv */
d59ba583
ND
6257 if (ctx->insns_flags2 & PPC2_ISA300) {
6258 return gen_lxv(ctx);
6259 }
e3001664
ND
6260 break;
6261 case 5: /* stxv */
d59ba583
ND
6262 if (ctx->insns_flags2 & PPC2_ISA300) {
6263 return gen_stxv(ctx);
6264 }
e3001664
ND
6265 break;
6266 }
6267 } else { /* DS-FORM */
6268 switch (ctx->opcode & 0x3) {
6269 case 0: /* stfdp */
6270 if (ctx->insns_flags2 & PPC2_ISA205) {
6271 return gen_stfdp(ctx);
6272 }
6273 break;
6274 case 2: /* stxsd */
6275 if (ctx->insns_flags2 & PPC2_ISA300) {
6276 return gen_stxsd(ctx);
6277 }
6278 break;
6279 case 3: /* stxssp */
6280 if (ctx->insns_flags2 & PPC2_ISA300) {
6281 return gen_stxssp(ctx);
6282 }
6283 break;
6284 }
6285 }
6286 return gen_invalid(ctx);
6287}
6288
c227f099 6289static opcode_t opcodes[] = {
5c55ff99
BS
6290GEN_HANDLER(invalid, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE),
6291GEN_HANDLER(cmp, 0x1F, 0x00, 0x00, 0x00400000, PPC_INTEGER),
6292GEN_HANDLER(cmpi, 0x0B, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
4aaefd93 6293GEN_HANDLER(cmpl, 0x1F, 0x00, 0x01, 0x00400001, PPC_INTEGER),
5c55ff99 6294GEN_HANDLER(cmpli, 0x0A, 0xFF, 0xFF, 0x00400000, PPC_INTEGER),
082ce330
ND
6295#if defined(TARGET_PPC64)
6296GEN_HANDLER_E(cmpeqb, 0x1F, 0x00, 0x07, 0x00600000, PPC_NONE, PPC2_ISA300),
6297#endif
fcfda20f 6298GEN_HANDLER_E(cmpb, 0x1F, 0x1C, 0x0F, 0x00000001, PPC_NONE, PPC2_ISA205),
f2442ef9 6299GEN_HANDLER_E(cmprb, 0x1F, 0x00, 0x06, 0x00400001, PPC_NONE, PPC2_ISA300),
5c55ff99
BS
6300GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL),
6301GEN_HANDLER(addi, 0x0E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6302GEN_HANDLER(addic, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6303GEN_HANDLER2(addic_, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6304GEN_HANDLER(addis, 0x0F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
c5b2b9ce 6305GEN_HANDLER_E(addpcis, 0x13, 0x2, 0xFF, 0x00000000, PPC_NONE, PPC2_ISA300),
5c55ff99
BS
6306GEN_HANDLER(mulhw, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER),
6307GEN_HANDLER(mulhwu, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER),
6308GEN_HANDLER(mullw, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER),
6309GEN_HANDLER(mullwo, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER),
6310GEN_HANDLER(mulli, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6311#if defined(TARGET_PPC64)
6312GEN_HANDLER(mulld, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B),
6313#endif
6314GEN_HANDLER(neg, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER),
6315GEN_HANDLER(nego, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER),
6316GEN_HANDLER(subfic, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6317GEN_HANDLER2(andi_, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6318GEN_HANDLER2(andis_, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6319GEN_HANDLER(cntlzw, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER),
b35344e4 6320GEN_HANDLER_E(cnttzw, 0x1F, 0x1A, 0x10, 0x00000000, PPC_NONE, PPC2_ISA300),
80b8c1ee 6321GEN_HANDLER_E(copy, 0x1F, 0x06, 0x18, 0x03C00001, PPC_NONE, PPC2_ISA300),
b8b4576e 6322GEN_HANDLER_E(cp_abort, 0x1F, 0x06, 0x1A, 0x03FFF801, PPC_NONE, PPC2_ISA300),
80b8c1ee 6323GEN_HANDLER_E(paste, 0x1F, 0x06, 0x1C, 0x03C00000, PPC_NONE, PPC2_ISA300),
5c55ff99
BS
6324GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER),
6325GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER),
6326GEN_HANDLER(ori, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6327GEN_HANDLER(oris, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6328GEN_HANDLER(xori, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6329GEN_HANDLER(xoris, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6ab39b1b 6330GEN_HANDLER(popcntb, 0x1F, 0x1A, 0x03, 0x0000F801, PPC_POPCNTB),
eaabeef2 6331GEN_HANDLER(popcntw, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD),
725bcec2 6332GEN_HANDLER_E(prtyw, 0x1F, 0x1A, 0x04, 0x0000F801, PPC_NONE, PPC2_ISA205),
5c55ff99 6333#if defined(TARGET_PPC64)
eaabeef2 6334GEN_HANDLER(popcntd, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD),
5c55ff99 6335GEN_HANDLER(cntlzd, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B),
e91d95b2 6336GEN_HANDLER_E(cnttzd, 0x1F, 0x1A, 0x11, 0x00000000, PPC_NONE, PPC2_ISA300),
fec5c62a 6337GEN_HANDLER_E(darn, 0x1F, 0x13, 0x17, 0x001CF801, PPC_NONE, PPC2_ISA300),
725bcec2 6338GEN_HANDLER_E(prtyd, 0x1F, 0x1A, 0x05, 0x0000F801, PPC_NONE, PPC2_ISA205),
86ba37ed 6339GEN_HANDLER_E(bpermd, 0x1F, 0x1C, 0x07, 0x00000001, PPC_NONE, PPC2_PERM_ISA206),
5c55ff99
BS
6340#endif
6341GEN_HANDLER(rlwimi, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6342GEN_HANDLER(rlwinm, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6343GEN_HANDLER(rlwnm, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6344GEN_HANDLER(slw, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER),
6345GEN_HANDLER(sraw, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER),
6346GEN_HANDLER(srawi, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER),
6347GEN_HANDLER(srw, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER),
6348#if defined(TARGET_PPC64)
6349GEN_HANDLER(sld, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B),
6350GEN_HANDLER(srad, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B),
6351GEN_HANDLER2(sradi0, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B),
6352GEN_HANDLER2(sradi1, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B),
6353GEN_HANDLER(srd, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B),
787bbe37
ND
6354GEN_HANDLER2_E(extswsli0, "extswsli", 0x1F, 0x1A, 0x1B, 0x00000000,
6355 PPC_NONE, PPC2_ISA300),
6356GEN_HANDLER2_E(extswsli1, "extswsli", 0x1F, 0x1B, 0x1B, 0x00000000,
6357 PPC_NONE, PPC2_ISA300),
5c55ff99 6358#endif
5c55ff99
BS
6359#if defined(TARGET_PPC64)
6360GEN_HANDLER(ld, 0x3A, 0xFF, 0xFF, 0x00000000, PPC_64B),
6361GEN_HANDLER(lq, 0x38, 0xFF, 0xFF, 0x00000000, PPC_64BX),
6362GEN_HANDLER(std, 0x3E, 0xFF, 0xFF, 0x00000000, PPC_64B),
6363#endif
5cb091a4
ND
6364/* handles lfdp, lxsd, lxssp */
6365GEN_HANDLER_E(dform39, 0x39, 0xFF, 0xFF, 0x00000000, PPC_NONE, PPC2_ISA205),
d59ba583 6366/* handles stfdp, lxv, stxsd, stxssp, stxv */
e3001664 6367GEN_HANDLER_E(dform3D, 0x3D, 0xFF, 0xFF, 0x00000000, PPC_NONE, PPC2_ISA205),
5c55ff99
BS
6368GEN_HANDLER(lmw, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6369GEN_HANDLER(stmw, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER),
6370GEN_HANDLER(lswi, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING),
6371GEN_HANDLER(lswx, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING),
6372GEN_HANDLER(stswi, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING),
6373GEN_HANDLER(stswx, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING),
6374GEN_HANDLER(eieio, 0x1F, 0x16, 0x1A, 0x03FFF801, PPC_MEM_EIEIO),
6375GEN_HANDLER(isync, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM),
5c77a786
TM
6376GEN_HANDLER_E(lbarx, 0x1F, 0x14, 0x01, 0, PPC_NONE, PPC2_ATOMIC_ISA206),
6377GEN_HANDLER_E(lharx, 0x1F, 0x14, 0x03, 0, PPC_NONE, PPC2_ATOMIC_ISA206),
f844c817 6378GEN_HANDLER(lwarx, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES),
a68a6146 6379GEN_HANDLER_E(lwat, 0x1F, 0x06, 0x12, 0x00000001, PPC_NONE, PPC2_ISA300),
a3401188 6380GEN_HANDLER_E(stwat, 0x1F, 0x06, 0x16, 0x00000001, PPC_NONE, PPC2_ISA300),
587c51f7
TM
6381GEN_HANDLER_E(stbcx_, 0x1F, 0x16, 0x15, 0, PPC_NONE, PPC2_ATOMIC_ISA206),
6382GEN_HANDLER_E(sthcx_, 0x1F, 0x16, 0x16, 0, PPC_NONE, PPC2_ATOMIC_ISA206),
5c55ff99
BS
6383GEN_HANDLER2(stwcx_, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES),
6384#if defined(TARGET_PPC64)
a68a6146 6385GEN_HANDLER_E(ldat, 0x1F, 0x06, 0x13, 0x00000001, PPC_NONE, PPC2_ISA300),
a3401188 6386GEN_HANDLER_E(stdat, 0x1F, 0x06, 0x17, 0x00000001, PPC_NONE, PPC2_ISA300),
f844c817 6387GEN_HANDLER(ldarx, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B),
9c294d5a 6388GEN_HANDLER_E(lqarx, 0x1F, 0x14, 0x08, 0, PPC_NONE, PPC2_LSQ_ISA207),
5c55ff99 6389GEN_HANDLER2(stdcx_, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B),
27b95bfe 6390GEN_HANDLER_E(stqcx_, 0x1F, 0x16, 0x05, 0, PPC_NONE, PPC2_LSQ_ISA207),
5c55ff99
BS
6391#endif
6392GEN_HANDLER(sync, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC),
6393GEN_HANDLER(wait, 0x1F, 0x1E, 0x01, 0x03FFF801, PPC_WAIT),
6394GEN_HANDLER(b, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
6395GEN_HANDLER(bc, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
6396GEN_HANDLER(bcctr, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW),
6397GEN_HANDLER(bclr, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW),
4aaefd93 6398GEN_HANDLER_E(bctar, 0x13, 0x10, 0x11, 0x0000E000, PPC_NONE, PPC2_BCTAR_ISA207),
5c55ff99
BS
6399GEN_HANDLER(mcrf, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER),
6400GEN_HANDLER(rfi, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW),
6401#if defined(TARGET_PPC64)
6402GEN_HANDLER(rfid, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B),
cdee0e72 6403GEN_HANDLER_E(stop, 0x13, 0x12, 0x0b, 0x03FFF801, PPC_NONE, PPC2_ISA300),
7778a575
BH
6404GEN_HANDLER_E(doze, 0x13, 0x12, 0x0c, 0x03FFF801, PPC_NONE, PPC2_PM_ISA206),
6405GEN_HANDLER_E(nap, 0x13, 0x12, 0x0d, 0x03FFF801, PPC_NONE, PPC2_PM_ISA206),
6406GEN_HANDLER_E(sleep, 0x13, 0x12, 0x0e, 0x03FFF801, PPC_NONE, PPC2_PM_ISA206),
6407GEN_HANDLER_E(rvwinkle, 0x13, 0x12, 0x0f, 0x03FFF801, PPC_NONE, PPC2_PM_ISA206),
5c55ff99
BS
6408GEN_HANDLER(hrfid, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H),
6409#endif
6410GEN_HANDLER(sc, 0x11, 0xFF, 0xFF, 0x03FFF01D, PPC_FLOW),
6411GEN_HANDLER(tw, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW),
6412GEN_HANDLER(twi, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW),
6413#if defined(TARGET_PPC64)
6414GEN_HANDLER(td, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B),
6415GEN_HANDLER(tdi, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B),
6416#endif
6417GEN_HANDLER(mcrxr, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC),
6418GEN_HANDLER(mfcr, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC),
6419GEN_HANDLER(mfmsr, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC),
6420GEN_HANDLER(mfspr, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC),
6421GEN_HANDLER(mftb, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB),
6422GEN_HANDLER(mtcrf, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC),
6423#if defined(TARGET_PPC64)
6424GEN_HANDLER(mtmsrd, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B),
dc2ee038 6425GEN_HANDLER_E(setb, 0x1F, 0x00, 0x04, 0x0003F801, PPC_NONE, PPC2_ISA300),
5c55ff99 6426#endif
5e31867f 6427GEN_HANDLER(mtmsr, 0x1F, 0x12, 0x04, 0x001EF801, PPC_MISC),
4248b336 6428GEN_HANDLER(mtspr, 0x1F, 0x13, 0x0E, 0x00000000, PPC_MISC),
5c55ff99
BS
6429GEN_HANDLER(dcbf, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE),
6430GEN_HANDLER(dcbi, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE),
6431GEN_HANDLER(dcbst, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE),
3f34cf91
CLG
6432GEN_HANDLER(dcbt, 0x1F, 0x16, 0x08, 0x00000001, PPC_CACHE),
6433GEN_HANDLER(dcbtst, 0x1F, 0x16, 0x07, 0x00000001, PPC_CACHE),
4d09d529 6434GEN_HANDLER_E(dcbtls, 0x1F, 0x06, 0x05, 0x02000001, PPC_BOOKE, PPC2_BOOKE206),
8e33944f 6435GEN_HANDLER(dcbz, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ),
5c55ff99
BS
6436GEN_HANDLER(dst, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC),
6437GEN_HANDLER(dstst, 0x1F, 0x16, 0x0B, 0x02000001, PPC_ALTIVEC),
6438GEN_HANDLER(dss, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC),
6439GEN_HANDLER(icbi, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI),
6440GEN_HANDLER(dcba, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA),
6441GEN_HANDLER(mfsr, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT),
6442GEN_HANDLER(mfsrin, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT),
6443GEN_HANDLER(mtsr, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT),
6444GEN_HANDLER(mtsrin, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT),
6445#if defined(TARGET_PPC64)
6446GEN_HANDLER2(mfsr_64b, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B),
6447GEN_HANDLER2(mfsrin_64b, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
6448 PPC_SEGMENT_64B),
6449GEN_HANDLER2(mtsr_64b, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B),
6450GEN_HANDLER2(mtsrin_64b, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
6451 PPC_SEGMENT_64B),
efdef95f
DG
6452GEN_HANDLER2(slbmte, "slbmte", 0x1F, 0x12, 0x0C, 0x001F0001, PPC_SEGMENT_64B),
6453GEN_HANDLER2(slbmfee, "slbmfee", 0x1F, 0x13, 0x1C, 0x001F0001, PPC_SEGMENT_64B),
6454GEN_HANDLER2(slbmfev, "slbmfev", 0x1F, 0x13, 0x1A, 0x001F0001, PPC_SEGMENT_64B),
c76c22d5 6455GEN_HANDLER2(slbfee_, "slbfee.", 0x1F, 0x13, 0x1E, 0x001F0000, PPC_SEGMENT_64B),
5c55ff99
BS
6456#endif
6457GEN_HANDLER(tlbia, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA),
f9ef0527
BH
6458/* XXX Those instructions will need to be handled differently for
6459 * different ISA versions */
6460GEN_HANDLER(tlbiel, 0x1F, 0x12, 0x08, 0x001F0001, PPC_MEM_TLBIE),
6461GEN_HANDLER(tlbie, 0x1F, 0x12, 0x09, 0x001F0001, PPC_MEM_TLBIE),
5c55ff99
BS
6462GEN_HANDLER(tlbsync, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC),
6463#if defined(TARGET_PPC64)
2f9254d9 6464GEN_HANDLER(slbia, 0x1F, 0x12, 0x0F, 0x031FFC01, PPC_SLBI),
5c55ff99 6465GEN_HANDLER(slbie, 0x1F, 0x12, 0x0D, 0x03FF0001, PPC_SLBI),
a63f1dfc 6466GEN_HANDLER_E(slbieg, 0x1F, 0x12, 0x0E, 0x001F0001, PPC_NONE, PPC2_ISA300),
62d897ca 6467GEN_HANDLER_E(slbsync, 0x1F, 0x12, 0x0A, 0x03FFF801, PPC_NONE, PPC2_ISA300),
5c55ff99
BS
6468#endif
6469GEN_HANDLER(eciwx, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN),
6470GEN_HANDLER(ecowx, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN),
6471GEN_HANDLER(abs, 0x1F, 0x08, 0x0B, 0x0000F800, PPC_POWER_BR),
6472GEN_HANDLER(abso, 0x1F, 0x08, 0x1B, 0x0000F800, PPC_POWER_BR),
6473GEN_HANDLER(clcs, 0x1F, 0x10, 0x13, 0x0000F800, PPC_POWER_BR),
6474GEN_HANDLER(div, 0x1F, 0x0B, 0x0A, 0x00000000, PPC_POWER_BR),
6475GEN_HANDLER(divo, 0x1F, 0x0B, 0x1A, 0x00000000, PPC_POWER_BR),
6476GEN_HANDLER(divs, 0x1F, 0x0B, 0x0B, 0x00000000, PPC_POWER_BR),
6477GEN_HANDLER(divso, 0x1F, 0x0B, 0x1B, 0x00000000, PPC_POWER_BR),
6478GEN_HANDLER(doz, 0x1F, 0x08, 0x08, 0x00000000, PPC_POWER_BR),
6479GEN_HANDLER(dozo, 0x1F, 0x08, 0x18, 0x00000000, PPC_POWER_BR),
6480GEN_HANDLER(dozi, 0x09, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
6481GEN_HANDLER(lscbx, 0x1F, 0x15, 0x08, 0x00000000, PPC_POWER_BR),
6482GEN_HANDLER(maskg, 0x1F, 0x1D, 0x00, 0x00000000, PPC_POWER_BR),
6483GEN_HANDLER(maskir, 0x1F, 0x1D, 0x10, 0x00000000, PPC_POWER_BR),
6484GEN_HANDLER(mul, 0x1F, 0x0B, 0x03, 0x00000000, PPC_POWER_BR),
6485GEN_HANDLER(mulo, 0x1F, 0x0B, 0x13, 0x00000000, PPC_POWER_BR),
6486GEN_HANDLER(nabs, 0x1F, 0x08, 0x0F, 0x00000000, PPC_POWER_BR),
6487GEN_HANDLER(nabso, 0x1F, 0x08, 0x1F, 0x00000000, PPC_POWER_BR),
6488GEN_HANDLER(rlmi, 0x16, 0xFF, 0xFF, 0x00000000, PPC_POWER_BR),
6489GEN_HANDLER(rrib, 0x1F, 0x19, 0x10, 0x00000000, PPC_POWER_BR),
6490GEN_HANDLER(sle, 0x1F, 0x19, 0x04, 0x00000000, PPC_POWER_BR),
6491GEN_HANDLER(sleq, 0x1F, 0x19, 0x06, 0x00000000, PPC_POWER_BR),
6492GEN_HANDLER(sliq, 0x1F, 0x18, 0x05, 0x00000000, PPC_POWER_BR),
6493GEN_HANDLER(slliq, 0x1F, 0x18, 0x07, 0x00000000, PPC_POWER_BR),
6494GEN_HANDLER(sllq, 0x1F, 0x18, 0x06, 0x00000000, PPC_POWER_BR),
6495GEN_HANDLER(slq, 0x1F, 0x18, 0x04, 0x00000000, PPC_POWER_BR),
6496GEN_HANDLER(sraiq, 0x1F, 0x18, 0x1D, 0x00000000, PPC_POWER_BR),
6497GEN_HANDLER(sraq, 0x1F, 0x18, 0x1C, 0x00000000, PPC_POWER_BR),
6498GEN_HANDLER(sre, 0x1F, 0x19, 0x14, 0x00000000, PPC_POWER_BR),
6499GEN_HANDLER(srea, 0x1F, 0x19, 0x1C, 0x00000000, PPC_POWER_BR),
6500GEN_HANDLER(sreq, 0x1F, 0x19, 0x16, 0x00000000, PPC_POWER_BR),
6501GEN_HANDLER(sriq, 0x1F, 0x18, 0x15, 0x00000000, PPC_POWER_BR),
6502GEN_HANDLER(srliq, 0x1F, 0x18, 0x17, 0x00000000, PPC_POWER_BR),
6503GEN_HANDLER(srlq, 0x1F, 0x18, 0x16, 0x00000000, PPC_POWER_BR),
6504GEN_HANDLER(srq, 0x1F, 0x18, 0x14, 0x00000000, PPC_POWER_BR),
6505GEN_HANDLER(dsa, 0x1F, 0x14, 0x13, 0x03FFF801, PPC_602_SPEC),
6506GEN_HANDLER(esa, 0x1F, 0x14, 0x12, 0x03FFF801, PPC_602_SPEC),
6507GEN_HANDLER(mfrom, 0x1F, 0x09, 0x08, 0x03E0F801, PPC_602_SPEC),
6508GEN_HANDLER2(tlbld_6xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB),
6509GEN_HANDLER2(tlbli_6xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB),
6510GEN_HANDLER2(tlbld_74xx, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_74xx_TLB),
6511GEN_HANDLER2(tlbli_74xx, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_74xx_TLB),
6512GEN_HANDLER(clf, 0x1F, 0x16, 0x03, 0x03E00000, PPC_POWER),
6513GEN_HANDLER(cli, 0x1F, 0x16, 0x0F, 0x03E00000, PPC_POWER),
6514GEN_HANDLER(dclst, 0x1F, 0x16, 0x13, 0x03E00000, PPC_POWER),
6515GEN_HANDLER(mfsri, 0x1F, 0x13, 0x13, 0x00000001, PPC_POWER),
6516GEN_HANDLER(rac, 0x1F, 0x12, 0x19, 0x00000001, PPC_POWER),
6517GEN_HANDLER(rfsvc, 0x13, 0x12, 0x02, 0x03FFF0001, PPC_POWER),
6518GEN_HANDLER(lfq, 0x38, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
6519GEN_HANDLER(lfqu, 0x39, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
6520GEN_HANDLER(lfqux, 0x1F, 0x17, 0x19, 0x00000001, PPC_POWER2),
6521GEN_HANDLER(lfqx, 0x1F, 0x17, 0x18, 0x00000001, PPC_POWER2),
6522GEN_HANDLER(stfq, 0x3C, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
6523GEN_HANDLER(stfqu, 0x3D, 0xFF, 0xFF, 0x00000003, PPC_POWER2),
6524GEN_HANDLER(stfqux, 0x1F, 0x17, 0x1D, 0x00000001, PPC_POWER2),
6525GEN_HANDLER(stfqx, 0x1F, 0x17, 0x1C, 0x00000001, PPC_POWER2),
6526GEN_HANDLER(mfapidi, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI),
6527GEN_HANDLER(tlbiva, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA),
6528GEN_HANDLER(mfdcr, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR),
6529GEN_HANDLER(mtdcr, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR),
6530GEN_HANDLER(mfdcrx, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX),
6531GEN_HANDLER(mtdcrx, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX),
6532GEN_HANDLER(mfdcrux, 0x1F, 0x03, 0x09, 0x00000000, PPC_DCRUX),
6533GEN_HANDLER(mtdcrux, 0x1F, 0x03, 0x0D, 0x00000000, PPC_DCRUX),
6534GEN_HANDLER(dccci, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON),
6535GEN_HANDLER(dcread, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON),
6536GEN_HANDLER2(icbt_40x, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT),
6537GEN_HANDLER(iccci, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON),
6538GEN_HANDLER(icread, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON),
6539GEN_HANDLER2(rfci_40x, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP),
01662f3e 6540GEN_HANDLER_E(rfci, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE, PPC2_BOOKE206),
5c55ff99
BS
6541GEN_HANDLER(rfdi, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI),
6542GEN_HANDLER(rfmci, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI),
6543GEN_HANDLER2(tlbre_40x, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB),
6544GEN_HANDLER2(tlbsx_40x, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB),
6545GEN_HANDLER2(tlbwe_40x, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB),
6546GEN_HANDLER2(tlbre_440, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE),
6547GEN_HANDLER2(tlbsx_440, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE),
6548GEN_HANDLER2(tlbwe_440, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE),
01662f3e
AG
6549GEN_HANDLER2_E(tlbre_booke206, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
6550 PPC_NONE, PPC2_BOOKE206),
6551GEN_HANDLER2_E(tlbsx_booke206, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
6552 PPC_NONE, PPC2_BOOKE206),
6553GEN_HANDLER2_E(tlbwe_booke206, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
6554 PPC_NONE, PPC2_BOOKE206),
6555GEN_HANDLER2_E(tlbivax_booke206, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
6556 PPC_NONE, PPC2_BOOKE206),
6d3db821
AG
6557GEN_HANDLER2_E(tlbilx_booke206, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
6558 PPC_NONE, PPC2_BOOKE206),
d5d11a39
AG
6559GEN_HANDLER2_E(msgsnd, "msgsnd", 0x1F, 0x0E, 0x06, 0x03ff0001,
6560 PPC_NONE, PPC2_PRCNTL),
9e0b5cb1
AG
6561GEN_HANDLER2_E(msgclr, "msgclr", 0x1F, 0x0E, 0x07, 0x03ff0001,
6562 PPC_NONE, PPC2_PRCNTL),
5c55ff99 6563GEN_HANDLER(wrtee, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE),
fbe73008 6564GEN_HANDLER(wrteei, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE),
5c55ff99 6565GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC),
01662f3e
AG
6566GEN_HANDLER_E(mbar, 0x1F, 0x16, 0x1a, 0x001FF801,
6567 PPC_BOOKE, PPC2_BOOKE206),
dcb2b9e1 6568GEN_HANDLER(msync_4xx, 0x1F, 0x16, 0x12, 0x03FFF801, PPC_BOOKE),
01662f3e
AG
6569GEN_HANDLER2_E(icbt_440, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
6570 PPC_BOOKE, PPC2_BOOKE206),
5c55ff99
BS
6571GEN_HANDLER(lvsl, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC),
6572GEN_HANDLER(lvsr, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC),
6573GEN_HANDLER(mfvscr, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC),
6574GEN_HANDLER(mtvscr, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC),
5c55ff99 6575GEN_HANDLER(vmladduhm, 0x04, 0x11, 0xFF, 0x00000000, PPC_ALTIVEC),
aeeb044c 6576#if defined(TARGET_PPC64)
5f29cc82
ND
6577GEN_HANDLER_E(maddhd_maddhdu, 0x04, 0x18, 0xFF, 0x00000000, PPC_NONE,
6578 PPC2_ISA300),
aeeb044c
ND
6579GEN_HANDLER_E(maddld, 0x04, 0x19, 0xFF, 0x00000000, PPC_NONE, PPC2_ISA300),
6580#endif
5c55ff99
BS
6581
6582#undef GEN_INT_ARITH_ADD
6583#undef GEN_INT_ARITH_ADD_CONST
6584#define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
6585GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
6586#define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
6587 add_ca, compute_ca, compute_ov) \
6588GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
6589GEN_INT_ARITH_ADD(add, 0x08, 0, 0, 0)
6590GEN_INT_ARITH_ADD(addo, 0x18, 0, 0, 1)
6591GEN_INT_ARITH_ADD(addc, 0x00, 0, 1, 0)
6592GEN_INT_ARITH_ADD(addco, 0x10, 0, 1, 1)
6593GEN_INT_ARITH_ADD(adde, 0x04, 1, 1, 0)
6594GEN_INT_ARITH_ADD(addeo, 0x14, 1, 1, 1)
6595GEN_INT_ARITH_ADD_CONST(addme, 0x07, -1LL, 1, 1, 0)
6596GEN_INT_ARITH_ADD_CONST(addmeo, 0x17, -1LL, 1, 1, 1)
6597GEN_INT_ARITH_ADD_CONST(addze, 0x06, 0, 1, 1, 0)
6598GEN_INT_ARITH_ADD_CONST(addzeo, 0x16, 0, 1, 1, 1)
6599
6600#undef GEN_INT_ARITH_DIVW
6601#define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
6602GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
6603GEN_INT_ARITH_DIVW(divwu, 0x0E, 0, 0),
6604GEN_INT_ARITH_DIVW(divwuo, 0x1E, 0, 1),
6605GEN_INT_ARITH_DIVW(divw, 0x0F, 1, 0),
6606GEN_INT_ARITH_DIVW(divwo, 0x1F, 1, 1),
a98eb9e9
TM
6607GEN_HANDLER_E(divwe, 0x1F, 0x0B, 0x0D, 0, PPC_NONE, PPC2_DIVE_ISA206),
6608GEN_HANDLER_E(divweo, 0x1F, 0x0B, 0x1D, 0, PPC_NONE, PPC2_DIVE_ISA206),
6a4fda33
TM
6609GEN_HANDLER_E(divweu, 0x1F, 0x0B, 0x0C, 0, PPC_NONE, PPC2_DIVE_ISA206),
6610GEN_HANDLER_E(divweuo, 0x1F, 0x0B, 0x1C, 0, PPC_NONE, PPC2_DIVE_ISA206),
af2c6620
ND
6611GEN_HANDLER_E(modsw, 0x1F, 0x0B, 0x18, 0x00000001, PPC_NONE, PPC2_ISA300),
6612GEN_HANDLER_E(moduw, 0x1F, 0x0B, 0x08, 0x00000001, PPC_NONE, PPC2_ISA300),
5c55ff99
BS
6613
6614#if defined(TARGET_PPC64)
6615#undef GEN_INT_ARITH_DIVD
6616#define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
6617GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
6618GEN_INT_ARITH_DIVD(divdu, 0x0E, 0, 0),
6619GEN_INT_ARITH_DIVD(divduo, 0x1E, 0, 1),
6620GEN_INT_ARITH_DIVD(divd, 0x0F, 1, 0),
6621GEN_INT_ARITH_DIVD(divdo, 0x1F, 1, 1),
6622
98d1eb27
TM
6623GEN_HANDLER_E(divdeu, 0x1F, 0x09, 0x0C, 0, PPC_NONE, PPC2_DIVE_ISA206),
6624GEN_HANDLER_E(divdeuo, 0x1F, 0x09, 0x1C, 0, PPC_NONE, PPC2_DIVE_ISA206),
e44259b6
TM
6625GEN_HANDLER_E(divde, 0x1F, 0x09, 0x0D, 0, PPC_NONE, PPC2_DIVE_ISA206),
6626GEN_HANDLER_E(divdeo, 0x1F, 0x09, 0x1D, 0, PPC_NONE, PPC2_DIVE_ISA206),
063cf14f
ND
6627GEN_HANDLER_E(modsd, 0x1F, 0x09, 0x18, 0x00000001, PPC_NONE, PPC2_ISA300),
6628GEN_HANDLER_E(modud, 0x1F, 0x09, 0x08, 0x00000001, PPC_NONE, PPC2_ISA300),
98d1eb27 6629
5c55ff99
BS
6630#undef GEN_INT_ARITH_MUL_HELPER
6631#define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
6632GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
6633GEN_INT_ARITH_MUL_HELPER(mulhdu, 0x00),
6634GEN_INT_ARITH_MUL_HELPER(mulhd, 0x02),
6635GEN_INT_ARITH_MUL_HELPER(mulldo, 0x17),
6636#endif
6637
6638#undef GEN_INT_ARITH_SUBF
6639#undef GEN_INT_ARITH_SUBF_CONST
6640#define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
6641GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
6642#define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
6643 add_ca, compute_ca, compute_ov) \
6644GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
6645GEN_INT_ARITH_SUBF(subf, 0x01, 0, 0, 0)
6646GEN_INT_ARITH_SUBF(subfo, 0x11, 0, 0, 1)
6647GEN_INT_ARITH_SUBF(subfc, 0x00, 0, 1, 0)
6648GEN_INT_ARITH_SUBF(subfco, 0x10, 0, 1, 1)
6649GEN_INT_ARITH_SUBF(subfe, 0x04, 1, 1, 0)
6650GEN_INT_ARITH_SUBF(subfeo, 0x14, 1, 1, 1)
6651GEN_INT_ARITH_SUBF_CONST(subfme, 0x07, -1LL, 1, 1, 0)
6652GEN_INT_ARITH_SUBF_CONST(subfmeo, 0x17, -1LL, 1, 1, 1)
6653GEN_INT_ARITH_SUBF_CONST(subfze, 0x06, 0, 1, 1, 0)
6654GEN_INT_ARITH_SUBF_CONST(subfzeo, 0x16, 0, 1, 1, 1)
6655
6656#undef GEN_LOGICAL1
6657#undef GEN_LOGICAL2
6658#define GEN_LOGICAL2(name, tcg_op, opc, type) \
6659GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
6660#define GEN_LOGICAL1(name, tcg_op, opc, type) \
6661GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
6662GEN_LOGICAL2(and, tcg_gen_and_tl, 0x00, PPC_INTEGER),
6663GEN_LOGICAL2(andc, tcg_gen_andc_tl, 0x01, PPC_INTEGER),
6664GEN_LOGICAL2(eqv, tcg_gen_eqv_tl, 0x08, PPC_INTEGER),
6665GEN_LOGICAL1(extsb, tcg_gen_ext8s_tl, 0x1D, PPC_INTEGER),
6666GEN_LOGICAL1(extsh, tcg_gen_ext16s_tl, 0x1C, PPC_INTEGER),
6667GEN_LOGICAL2(nand, tcg_gen_nand_tl, 0x0E, PPC_INTEGER),
6668GEN_LOGICAL2(nor, tcg_gen_nor_tl, 0x03, PPC_INTEGER),
6669GEN_LOGICAL2(orc, tcg_gen_orc_tl, 0x0C, PPC_INTEGER),
6670#if defined(TARGET_PPC64)
6671GEN_LOGICAL1(extsw, tcg_gen_ext32s_tl, 0x1E, PPC_64B),
6672#endif
6673
6674#if defined(TARGET_PPC64)
6675#undef GEN_PPC64_R2
6676#undef GEN_PPC64_R4
6677#define GEN_PPC64_R2(name, opc1, opc2) \
6678GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
6679GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
6680 PPC_64B)
6681#define GEN_PPC64_R4(name, opc1, opc2) \
6682GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
6683GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
6684 PPC_64B), \
6685GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
6686 PPC_64B), \
6687GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
6688 PPC_64B)
6689GEN_PPC64_R4(rldicl, 0x1E, 0x00),
6690GEN_PPC64_R4(rldicr, 0x1E, 0x02),
6691GEN_PPC64_R4(rldic, 0x1E, 0x04),
6692GEN_PPC64_R2(rldcl, 0x1E, 0x08),
6693GEN_PPC64_R2(rldcr, 0x1E, 0x09),
6694GEN_PPC64_R4(rldimi, 0x1E, 0x06),
6695#endif
6696
5c55ff99
BS
6697#undef GEN_LD
6698#undef GEN_LDU
6699#undef GEN_LDUX
cd6e9320 6700#undef GEN_LDX_E
5c55ff99
BS
6701#undef GEN_LDS
6702#define GEN_LD(name, ldop, opc, type) \
6703GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
6704#define GEN_LDU(name, ldop, opc, type) \
6705GEN_HANDLER(name##u, opc, 0xFF, 0xFF, 0x00000000, type),
6706#define GEN_LDUX(name, ldop, opc2, opc3, type) \
6707GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
b7815375 6708#define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
cd6e9320 6709GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
5c55ff99
BS
6710#define GEN_LDS(name, ldop, op, type) \
6711GEN_LD(name, ldop, op | 0x20, type) \
6712GEN_LDU(name, ldop, op | 0x21, type) \
6713GEN_LDUX(name, ldop, 0x17, op | 0x01, type) \
6714GEN_LDX(name, ldop, 0x17, op | 0x00, type)
6715
6716GEN_LDS(lbz, ld8u, 0x02, PPC_INTEGER)
6717GEN_LDS(lha, ld16s, 0x0A, PPC_INTEGER)
6718GEN_LDS(lhz, ld16u, 0x08, PPC_INTEGER)
6719GEN_LDS(lwz, ld32u, 0x00, PPC_INTEGER)
6720#if defined(TARGET_PPC64)
6721GEN_LDUX(lwa, ld32s, 0x15, 0x0B, PPC_64B)
6722GEN_LDX(lwa, ld32s, 0x15, 0x0A, PPC_64B)
4f364fe7
ND
6723GEN_LDUX(ld, ld64_i64, 0x15, 0x01, PPC_64B)
6724GEN_LDX(ld, ld64_i64, 0x15, 0x00, PPC_64B)
ff5f3981 6725GEN_LDX_E(ldbr, ld64ur_i64, 0x14, 0x10, PPC_NONE, PPC2_DBRX, CHK_NONE)
b7815375
BH
6726
6727/* HV/P7 and later only */
4f364fe7 6728GEN_LDX_HVRM(ldcix, ld64_i64, 0x15, 0x1b, PPC_CILDST)
b7815375
BH
6729GEN_LDX_HVRM(lwzcix, ld32u, 0x15, 0x18, PPC_CILDST)
6730GEN_LDX_HVRM(lhzcix, ld16u, 0x15, 0x19, PPC_CILDST)
6731GEN_LDX_HVRM(lbzcix, ld8u, 0x15, 0x1a, PPC_CILDST)
5c55ff99
BS
6732#endif
6733GEN_LDX(lhbr, ld16ur, 0x16, 0x18, PPC_INTEGER)
6734GEN_LDX(lwbr, ld32ur, 0x16, 0x10, PPC_INTEGER)
6735
6736#undef GEN_ST
6737#undef GEN_STU
6738#undef GEN_STUX
cd6e9320 6739#undef GEN_STX_E
5c55ff99
BS
6740#undef GEN_STS
6741#define GEN_ST(name, stop, opc, type) \
6742GEN_HANDLER(name, opc, 0xFF, 0xFF, 0x00000000, type),
6743#define GEN_STU(name, stop, opc, type) \
6744GEN_HANDLER(stop##u, opc, 0xFF, 0xFF, 0x00000000, type),
6745#define GEN_STUX(name, stop, opc2, opc3, type) \
6746GEN_HANDLER(name##ux, 0x1F, opc2, opc3, 0x00000001, type),
b7815375 6747#define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
cd6e9320 6748GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
5c55ff99
BS
6749#define GEN_STS(name, stop, op, type) \
6750GEN_ST(name, stop, op | 0x20, type) \
6751GEN_STU(name, stop, op | 0x21, type) \
6752GEN_STUX(name, stop, 0x17, op | 0x01, type) \
6753GEN_STX(name, stop, 0x17, op | 0x00, type)
6754
6755GEN_STS(stb, st8, 0x06, PPC_INTEGER)
6756GEN_STS(sth, st16, 0x0C, PPC_INTEGER)
6757GEN_STS(stw, st32, 0x04, PPC_INTEGER)
6758#if defined(TARGET_PPC64)
2468f23d
ND
6759GEN_STUX(std, st64_i64, 0x15, 0x05, PPC_64B)
6760GEN_STX(std, st64_i64, 0x15, 0x04, PPC_64B)
804108aa 6761GEN_STX_E(stdbr, st64r_i64, 0x14, 0x14, PPC_NONE, PPC2_DBRX, CHK_NONE)
2468f23d 6762GEN_STX_HVRM(stdcix, st64_i64, 0x15, 0x1f, PPC_CILDST)
b7815375
BH
6763GEN_STX_HVRM(stwcix, st32, 0x15, 0x1c, PPC_CILDST)
6764GEN_STX_HVRM(sthcix, st16, 0x15, 0x1d, PPC_CILDST)
6765GEN_STX_HVRM(stbcix, st8, 0x15, 0x1e, PPC_CILDST)
5c55ff99
BS
6766#endif
6767GEN_STX(sthbr, st16r, 0x16, 0x1C, PPC_INTEGER)
6768GEN_STX(stwbr, st32r, 0x16, 0x14, PPC_INTEGER)
6769
5c55ff99
BS
6770#undef GEN_CRLOGIC
6771#define GEN_CRLOGIC(name, tcg_op, opc) \
6772GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
6773GEN_CRLOGIC(crand, tcg_gen_and_i32, 0x08),
6774GEN_CRLOGIC(crandc, tcg_gen_andc_i32, 0x04),
6775GEN_CRLOGIC(creqv, tcg_gen_eqv_i32, 0x09),
6776GEN_CRLOGIC(crnand, tcg_gen_nand_i32, 0x07),
6777GEN_CRLOGIC(crnor, tcg_gen_nor_i32, 0x01),
6778GEN_CRLOGIC(cror, tcg_gen_or_i32, 0x0E),
6779GEN_CRLOGIC(crorc, tcg_gen_orc_i32, 0x0D),
6780GEN_CRLOGIC(crxor, tcg_gen_xor_i32, 0x06),
6781
6782#undef GEN_MAC_HANDLER
6783#define GEN_MAC_HANDLER(name, opc2, opc3) \
6784GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
6785GEN_MAC_HANDLER(macchw, 0x0C, 0x05),
6786GEN_MAC_HANDLER(macchwo, 0x0C, 0x15),
6787GEN_MAC_HANDLER(macchws, 0x0C, 0x07),
6788GEN_MAC_HANDLER(macchwso, 0x0C, 0x17),
6789GEN_MAC_HANDLER(macchwsu, 0x0C, 0x06),
6790GEN_MAC_HANDLER(macchwsuo, 0x0C, 0x16),
6791GEN_MAC_HANDLER(macchwu, 0x0C, 0x04),
6792GEN_MAC_HANDLER(macchwuo, 0x0C, 0x14),
6793GEN_MAC_HANDLER(machhw, 0x0C, 0x01),
6794GEN_MAC_HANDLER(machhwo, 0x0C, 0x11),
6795GEN_MAC_HANDLER(machhws, 0x0C, 0x03),
6796GEN_MAC_HANDLER(machhwso, 0x0C, 0x13),
6797GEN_MAC_HANDLER(machhwsu, 0x0C, 0x02),
6798GEN_MAC_HANDLER(machhwsuo, 0x0C, 0x12),
6799GEN_MAC_HANDLER(machhwu, 0x0C, 0x00),
6800GEN_MAC_HANDLER(machhwuo, 0x0C, 0x10),
6801GEN_MAC_HANDLER(maclhw, 0x0C, 0x0D),
6802GEN_MAC_HANDLER(maclhwo, 0x0C, 0x1D),
6803GEN_MAC_HANDLER(maclhws, 0x0C, 0x0F),
6804GEN_MAC_HANDLER(maclhwso, 0x0C, 0x1F),
6805GEN_MAC_HANDLER(maclhwu, 0x0C, 0x0C),
6806GEN_MAC_HANDLER(maclhwuo, 0x0C, 0x1C),
6807GEN_MAC_HANDLER(maclhwsu, 0x0C, 0x0E),
6808GEN_MAC_HANDLER(maclhwsuo, 0x0C, 0x1E),
6809GEN_MAC_HANDLER(nmacchw, 0x0E, 0x05),
6810GEN_MAC_HANDLER(nmacchwo, 0x0E, 0x15),
6811GEN_MAC_HANDLER(nmacchws, 0x0E, 0x07),
6812GEN_MAC_HANDLER(nmacchwso, 0x0E, 0x17),
6813GEN_MAC_HANDLER(nmachhw, 0x0E, 0x01),
6814GEN_MAC_HANDLER(nmachhwo, 0x0E, 0x11),
6815GEN_MAC_HANDLER(nmachhws, 0x0E, 0x03),
6816GEN_MAC_HANDLER(nmachhwso, 0x0E, 0x13),
6817GEN_MAC_HANDLER(nmaclhw, 0x0E, 0x0D),
6818GEN_MAC_HANDLER(nmaclhwo, 0x0E, 0x1D),
6819GEN_MAC_HANDLER(nmaclhws, 0x0E, 0x0F),
6820GEN_MAC_HANDLER(nmaclhwso, 0x0E, 0x1F),
6821GEN_MAC_HANDLER(mulchw, 0x08, 0x05),
6822GEN_MAC_HANDLER(mulchwu, 0x08, 0x04),
6823GEN_MAC_HANDLER(mulhhw, 0x08, 0x01),
6824GEN_MAC_HANDLER(mulhhwu, 0x08, 0x00),
6825GEN_MAC_HANDLER(mullhw, 0x08, 0x0D),
6826GEN_MAC_HANDLER(mullhwu, 0x08, 0x0C),
6827
0ff93d11
TM
6828GEN_HANDLER2_E(tbegin, "tbegin", 0x1F, 0x0E, 0x14, 0x01DFF800, \
6829 PPC_NONE, PPC2_TM),
56a84615
TM
6830GEN_HANDLER2_E(tend, "tend", 0x1F, 0x0E, 0x15, 0x01FFF800, \
6831 PPC_NONE, PPC2_TM),
6832GEN_HANDLER2_E(tabort, "tabort", 0x1F, 0x0E, 0x1C, 0x03E0F800, \
6833 PPC_NONE, PPC2_TM),
6834GEN_HANDLER2_E(tabortwc, "tabortwc", 0x1F, 0x0E, 0x18, 0x00000000, \
6835 PPC_NONE, PPC2_TM),
6836GEN_HANDLER2_E(tabortwci, "tabortwci", 0x1F, 0x0E, 0x1A, 0x00000000, \
6837 PPC_NONE, PPC2_TM),
6838GEN_HANDLER2_E(tabortdc, "tabortdc", 0x1F, 0x0E, 0x19, 0x00000000, \
6839 PPC_NONE, PPC2_TM),
6840GEN_HANDLER2_E(tabortdci, "tabortdci", 0x1F, 0x0E, 0x1B, 0x00000000, \
6841 PPC_NONE, PPC2_TM),
6842GEN_HANDLER2_E(tsr, "tsr", 0x1F, 0x0E, 0x17, 0x03DFF800, \
6843 PPC_NONE, PPC2_TM),
aeedd582
TM
6844GEN_HANDLER2_E(tcheck, "tcheck", 0x1F, 0x0E, 0x16, 0x007FF800, \
6845 PPC_NONE, PPC2_TM),
f83c2378
TM
6846GEN_HANDLER2_E(treclaim, "treclaim", 0x1F, 0x0E, 0x1D, 0x03E0F800, \
6847 PPC_NONE, PPC2_TM),
6848GEN_HANDLER2_E(trechkpt, "trechkpt", 0x1F, 0x0E, 0x1F, 0x03FFF800, \
6849 PPC_NONE, PPC2_TM),
15848410
BH
6850
6851#include "translate/fp-ops.inc.c"
6852
6853#include "translate/vmx-ops.inc.c"
6854
6855#include "translate/vsx-ops.inc.c"
6856
6857#include "translate/dfp-ops.inc.c"
6858
6859#include "translate/spe-ops.inc.c"
5c55ff99
BS
6860};
6861
0411a972 6862#include "helper_regs.h"
a1389542 6863#include "translate_init.c"
79aceca5 6864
9a64fbe4 6865/*****************************************************************************/
3fc6c082 6866/* Misc PowerPC helpers */
878096ee
AF
6867void ppc_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
6868 int flags)
79aceca5 6869{
3fc6c082
FB
6870#define RGPL 4
6871#define RFPL 4
3fc6c082 6872
878096ee
AF
6873 PowerPCCPU *cpu = POWERPC_CPU(cs);
6874 CPUPPCState *env = &cpu->env;
79aceca5
FB
6875 int i;
6876
90e189ec 6877 cpu_fprintf(f, "NIP " TARGET_FMT_lx " LR " TARGET_FMT_lx " CTR "
21e5d28a
TG
6878 TARGET_FMT_lx " XER " TARGET_FMT_lx " CPU#%d\n",
6879 env->nip, env->lr, env->ctr, cpu_read_xer(env),
6880 cs->cpu_index);
90e189ec 6881 cpu_fprintf(f, "MSR " TARGET_FMT_lx " HID0 " TARGET_FMT_lx " HF "
9fb04491
BH
6882 TARGET_FMT_lx " iidx %d didx %d\n",
6883 env->msr, env->spr[SPR_HID0],
6884 env->hflags, env->immu_idx, env->dmmu_idx);
d9bce9d9 6885#if !defined(NO_TIMER_DUMP)
9a78eead 6886 cpu_fprintf(f, "TB %08" PRIu32 " %08" PRIu64
76a66253 6887#if !defined(CONFIG_USER_ONLY)
9a78eead 6888 " DECR %08" PRIu32
76a66253
JM
6889#endif
6890 "\n",
077fc206 6891 cpu_ppc_load_tbu(env), cpu_ppc_load_tbl(env)
76a66253
JM
6892#if !defined(CONFIG_USER_ONLY)
6893 , cpu_ppc_load_decr(env)
6894#endif
6895 );
077fc206 6896#endif
76a66253 6897 for (i = 0; i < 32; i++) {
3fc6c082
FB
6898 if ((i & (RGPL - 1)) == 0)
6899 cpu_fprintf(f, "GPR%02d", i);
b11ebf64 6900 cpu_fprintf(f, " %016" PRIx64, ppc_dump_gpr(env, i));
3fc6c082 6901 if ((i & (RGPL - 1)) == (RGPL - 1))
7fe48483 6902 cpu_fprintf(f, "\n");
76a66253 6903 }
3fc6c082 6904 cpu_fprintf(f, "CR ");
76a66253 6905 for (i = 0; i < 8; i++)
7fe48483
FB
6906 cpu_fprintf(f, "%01x", env->crf[i]);
6907 cpu_fprintf(f, " [");
76a66253
JM
6908 for (i = 0; i < 8; i++) {
6909 char a = '-';
6910 if (env->crf[i] & 0x08)
6911 a = 'L';
6912 else if (env->crf[i] & 0x04)
6913 a = 'G';
6914 else if (env->crf[i] & 0x02)
6915 a = 'E';
7fe48483 6916 cpu_fprintf(f, " %c%c", a, env->crf[i] & 0x01 ? 'O' : ' ');
76a66253 6917 }
90e189ec
BS
6918 cpu_fprintf(f, " ] RES " TARGET_FMT_lx "\n",
6919 env->reserve_addr);
3fc6c082
FB
6920 for (i = 0; i < 32; i++) {
6921 if ((i & (RFPL - 1)) == 0)
6922 cpu_fprintf(f, "FPR%02d", i);
26a76461 6923 cpu_fprintf(f, " %016" PRIx64, *((uint64_t *)&env->fpr[i]));
3fc6c082 6924 if ((i & (RFPL - 1)) == (RFPL - 1))
7fe48483 6925 cpu_fprintf(f, "\n");
79aceca5 6926 }
30304420 6927 cpu_fprintf(f, "FPSCR " TARGET_FMT_lx "\n", env->fpscr);
f2e63a42 6928#if !defined(CONFIG_USER_ONLY)
90dc8812
SW
6929 cpu_fprintf(f, " SRR0 " TARGET_FMT_lx " SRR1 " TARGET_FMT_lx
6930 " PVR " TARGET_FMT_lx " VRSAVE " TARGET_FMT_lx "\n",
6931 env->spr[SPR_SRR0], env->spr[SPR_SRR1],
6932 env->spr[SPR_PVR], env->spr[SPR_VRSAVE]);
6933
6934 cpu_fprintf(f, "SPRG0 " TARGET_FMT_lx " SPRG1 " TARGET_FMT_lx
6935 " SPRG2 " TARGET_FMT_lx " SPRG3 " TARGET_FMT_lx "\n",
6936 env->spr[SPR_SPRG0], env->spr[SPR_SPRG1],
6937 env->spr[SPR_SPRG2], env->spr[SPR_SPRG3]);
6938
6939 cpu_fprintf(f, "SPRG4 " TARGET_FMT_lx " SPRG5 " TARGET_FMT_lx
6940 " SPRG6 " TARGET_FMT_lx " SPRG7 " TARGET_FMT_lx "\n",
6941 env->spr[SPR_SPRG4], env->spr[SPR_SPRG5],
6942 env->spr[SPR_SPRG6], env->spr[SPR_SPRG7]);
6943
f2b70fde
BH
6944#if defined(TARGET_PPC64)
6945 if (env->excp_model == POWERPC_EXCP_POWER7 ||
6946 env->excp_model == POWERPC_EXCP_POWER8) {
6947 cpu_fprintf(f, "HSRR0 " TARGET_FMT_lx " HSRR1 " TARGET_FMT_lx "\n",
6948 env->spr[SPR_HSRR0], env->spr[SPR_HSRR1]);
6949 }
6950#endif
90dc8812
SW
6951 if (env->excp_model == POWERPC_EXCP_BOOKE) {
6952 cpu_fprintf(f, "CSRR0 " TARGET_FMT_lx " CSRR1 " TARGET_FMT_lx
6953 " MCSRR0 " TARGET_FMT_lx " MCSRR1 " TARGET_FMT_lx "\n",
6954 env->spr[SPR_BOOKE_CSRR0], env->spr[SPR_BOOKE_CSRR1],
6955 env->spr[SPR_BOOKE_MCSRR0], env->spr[SPR_BOOKE_MCSRR1]);
6956
6957 cpu_fprintf(f, " TCR " TARGET_FMT_lx " TSR " TARGET_FMT_lx
6958 " ESR " TARGET_FMT_lx " DEAR " TARGET_FMT_lx "\n",
6959 env->spr[SPR_BOOKE_TCR], env->spr[SPR_BOOKE_TSR],
6960 env->spr[SPR_BOOKE_ESR], env->spr[SPR_BOOKE_DEAR]);
6961
6962 cpu_fprintf(f, " PIR " TARGET_FMT_lx " DECAR " TARGET_FMT_lx
6963 " IVPR " TARGET_FMT_lx " EPCR " TARGET_FMT_lx "\n",
6964 env->spr[SPR_BOOKE_PIR], env->spr[SPR_BOOKE_DECAR],
6965 env->spr[SPR_BOOKE_IVPR], env->spr[SPR_BOOKE_EPCR]);
6966
6967 cpu_fprintf(f, " MCSR " TARGET_FMT_lx " SPRG8 " TARGET_FMT_lx
6968 " EPR " TARGET_FMT_lx "\n",
6969 env->spr[SPR_BOOKE_MCSR], env->spr[SPR_BOOKE_SPRG8],
6970 env->spr[SPR_BOOKE_EPR]);
6971
6972 /* FSL-specific */
6973 cpu_fprintf(f, " MCAR " TARGET_FMT_lx " PID1 " TARGET_FMT_lx
6974 " PID2 " TARGET_FMT_lx " SVR " TARGET_FMT_lx "\n",
6975 env->spr[SPR_Exxx_MCAR], env->spr[SPR_BOOKE_PID1],
6976 env->spr[SPR_BOOKE_PID2], env->spr[SPR_E500_SVR]);
6977
6978 /*
6979 * IVORs are left out as they are large and do not change often --
6980 * they can be read with "p $ivor0", "p $ivor1", etc.
6981 */
6982 }
6983
697ab892
DG
6984#if defined(TARGET_PPC64)
6985 if (env->flags & POWERPC_FLAG_CFAR) {
6986 cpu_fprintf(f, " CFAR " TARGET_FMT_lx"\n", env->cfar);
6987 }
6988#endif
6989
d801a61e
SJS
6990 if (env->spr_cb[SPR_LPCR].name)
6991 cpu_fprintf(f, " LPCR " TARGET_FMT_lx "\n", env->spr[SPR_LPCR]);
6992
90dc8812
SW
6993 switch (env->mmu_model) {
6994 case POWERPC_MMU_32B:
6995 case POWERPC_MMU_601:
6996 case POWERPC_MMU_SOFT_6xx:
6997 case POWERPC_MMU_SOFT_74xx:
6998#if defined(TARGET_PPC64)
90dc8812 6999 case POWERPC_MMU_64B:
aa4bb587 7000 case POWERPC_MMU_2_03:
ca480de6 7001 case POWERPC_MMU_2_06:
808bc3b0 7002 case POWERPC_MMU_2_06a:
aa4bb587 7003 case POWERPC_MMU_2_07:
808bc3b0 7004 case POWERPC_MMU_2_07a:
90dc8812 7005#endif
ca480de6
AB
7006 cpu_fprintf(f, " SDR1 " TARGET_FMT_lx " DAR " TARGET_FMT_lx
7007 " DSISR " TARGET_FMT_lx "\n", env->spr[SPR_SDR1],
7008 env->spr[SPR_DAR], env->spr[SPR_DSISR]);
90dc8812 7009 break;
01662f3e 7010 case POWERPC_MMU_BOOKE206:
90dc8812
SW
7011 cpu_fprintf(f, " MAS0 " TARGET_FMT_lx " MAS1 " TARGET_FMT_lx
7012 " MAS2 " TARGET_FMT_lx " MAS3 " TARGET_FMT_lx "\n",
7013 env->spr[SPR_BOOKE_MAS0], env->spr[SPR_BOOKE_MAS1],
7014 env->spr[SPR_BOOKE_MAS2], env->spr[SPR_BOOKE_MAS3]);
7015
7016 cpu_fprintf(f, " MAS4 " TARGET_FMT_lx " MAS6 " TARGET_FMT_lx
7017 " MAS7 " TARGET_FMT_lx " PID " TARGET_FMT_lx "\n",
7018 env->spr[SPR_BOOKE_MAS4], env->spr[SPR_BOOKE_MAS6],
7019 env->spr[SPR_BOOKE_MAS7], env->spr[SPR_BOOKE_PID]);
7020
7021 cpu_fprintf(f, "MMUCFG " TARGET_FMT_lx " TLB0CFG " TARGET_FMT_lx
7022 " TLB1CFG " TARGET_FMT_lx "\n",
7023 env->spr[SPR_MMUCFG], env->spr[SPR_BOOKE_TLB0CFG],
7024 env->spr[SPR_BOOKE_TLB1CFG]);
7025 break;
7026 default:
7027 break;
7028 }
f2e63a42 7029#endif
79aceca5 7030
3fc6c082
FB
7031#undef RGPL
7032#undef RFPL
79aceca5
FB
7033}
7034
878096ee
AF
7035void ppc_cpu_dump_statistics(CPUState *cs, FILE*f,
7036 fprintf_function cpu_fprintf, int flags)
76a66253
JM
7037{
7038#if defined(DO_PPC_STATISTICS)
878096ee 7039 PowerPCCPU *cpu = POWERPC_CPU(cs);
c227f099 7040 opc_handler_t **t1, **t2, **t3, *handler;
76a66253
JM
7041 int op1, op2, op3;
7042
878096ee 7043 t1 = cpu->env.opcodes;
76a66253
JM
7044 for (op1 = 0; op1 < 64; op1++) {
7045 handler = t1[op1];
7046 if (is_indirect_opcode(handler)) {
7047 t2 = ind_table(handler);
7048 for (op2 = 0; op2 < 32; op2++) {
7049 handler = t2[op2];
7050 if (is_indirect_opcode(handler)) {
7051 t3 = ind_table(handler);
7052 for (op3 = 0; op3 < 32; op3++) {
7053 handler = t3[op3];
7054 if (handler->count == 0)
7055 continue;
7056 cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
0bfcd599 7057 "%016" PRIx64 " %" PRId64 "\n",
76a66253
JM
7058 op1, op2, op3, op1, (op3 << 5) | op2,
7059 handler->oname,
7060 handler->count, handler->count);
7061 }
7062 } else {
7063 if (handler->count == 0)
7064 continue;
7065 cpu_fprintf(f, "%02x %02x (%02x %04d) %16s: "
0bfcd599 7066 "%016" PRIx64 " %" PRId64 "\n",
76a66253
JM
7067 op1, op2, op1, op2, handler->oname,
7068 handler->count, handler->count);
7069 }
7070 }
7071 } else {
7072 if (handler->count == 0)
7073 continue;
0bfcd599
BS
7074 cpu_fprintf(f, "%02x (%02x ) %16s: %016" PRIx64
7075 " %" PRId64 "\n",
76a66253
JM
7076 op1, op1, handler->oname,
7077 handler->count, handler->count);
7078 }
7079 }
7080#endif
7081}
7082
9a64fbe4 7083/*****************************************************************************/
4e5e1215 7084void gen_intermediate_code(CPUPPCState *env, struct TranslationBlock *tb)
79aceca5 7085{
4e5e1215 7086 PowerPCCPU *cpu = ppc_env_get_cpu(env);
ed2803da 7087 CPUState *cs = CPU(cpu);
9fddaa0c 7088 DisasContext ctx, *ctxp = &ctx;
c227f099 7089 opc_handler_t **table, *handler;
0fa85d43 7090 target_ulong pc_start;
2e70f6ef
PB
7091 int num_insns;
7092 int max_insns;
79aceca5
FB
7093
7094 pc_start = tb->pc;
046d6672 7095 ctx.nip = pc_start;
79aceca5 7096 ctx.tb = tb;
e1833e1f 7097 ctx.exception = POWERPC_EXCP_NONE;
3fc6c082 7098 ctx.spr_cb = env->spr_cb;
c47493f2 7099 ctx.pr = msr_pr;
9fb04491 7100 ctx.mem_idx = env->dmmu_idx;
b7815375 7101 ctx.dr = msr_dr;
932ccbdd
BH
7102#if !defined(CONFIG_USER_ONLY)
7103 ctx.hv = msr_hv || !env->has_hv_mode;
7104#endif
7d08d856
AJ
7105 ctx.insns_flags = env->insns_flags;
7106 ctx.insns_flags2 = env->insns_flags2;
76db3ba4 7107 ctx.access_type = -1;
5f2a6254 7108 ctx.need_access_type = !(env->mmu_model & POWERPC_MMU_64B);
5c3ae929 7109 ctx.le_mode = !!(env->hflags & (1 << MSR_LE));
e22c357b 7110 ctx.default_tcg_memop_mask = ctx.le_mode ? MO_LE : MO_BE;
d9bce9d9 7111#if defined(TARGET_PPC64)
e42a61f1 7112 ctx.sf_mode = msr_is_64bit(env, env->msr);
697ab892 7113 ctx.has_cfar = !!(env->flags & POWERPC_FLAG_CFAR);
9a64fbe4 7114#endif
c5a8d8f3
BH
7115 if (env->mmu_model == POWERPC_MMU_32B ||
7116 env->mmu_model == POWERPC_MMU_601 ||
7117 (env->mmu_model & POWERPC_MMU_64B))
7118 ctx.lazy_tlb_flush = true;
7119
5c3ae929 7120 ctx.fpu_enabled = !!msr_fp;
a9d9eb8f 7121 if ((env->flags & POWERPC_FLAG_SPE) && msr_spe)
5c3ae929 7122 ctx.spe_enabled = !!msr_spe;
d26bfc9a 7123 else
5c3ae929 7124 ctx.spe_enabled = false;
a9d9eb8f 7125 if ((env->flags & POWERPC_FLAG_VRE) && msr_vr)
5c3ae929 7126 ctx.altivec_enabled = !!msr_vr;
a9d9eb8f 7127 else
5c3ae929 7128 ctx.altivec_enabled = false;
1f29871c 7129 if ((env->flags & POWERPC_FLAG_VSX) && msr_vsx) {
5c3ae929 7130 ctx.vsx_enabled = !!msr_vsx;
1f29871c 7131 } else {
5c3ae929 7132 ctx.vsx_enabled = false;
1f29871c 7133 }
69d1a937
TM
7134#if defined(TARGET_PPC64)
7135 if ((env->flags & POWERPC_FLAG_TM) && msr_tm) {
5c3ae929 7136 ctx.tm_enabled = !!msr_tm;
69d1a937 7137 } else {
5c3ae929 7138 ctx.tm_enabled = false;
69d1a937
TM
7139 }
7140#endif
d26bfc9a 7141 if ((env->flags & POWERPC_FLAG_SE) && msr_se)
8cbcb4fa 7142 ctx.singlestep_enabled = CPU_SINGLE_STEP;
d26bfc9a 7143 else
8cbcb4fa 7144 ctx.singlestep_enabled = 0;
d26bfc9a 7145 if ((env->flags & POWERPC_FLAG_BE) && msr_be)
8cbcb4fa 7146 ctx.singlestep_enabled |= CPU_BRANCH_STEP;
ed2803da 7147 if (unlikely(cs->singlestep_enabled)) {
8cbcb4fa 7148 ctx.singlestep_enabled |= GDBSTUB_SINGLE_STEP;
ed2803da 7149 }
3fc6c082 7150#if defined (DO_SINGLE_STEP) && 0
9a64fbe4
FB
7151 /* Single step trace mode */
7152 msr_se = 1;
7153#endif
2e70f6ef
PB
7154 num_insns = 0;
7155 max_insns = tb->cflags & CF_COUNT_MASK;
190ce7fb 7156 if (max_insns == 0) {
2e70f6ef 7157 max_insns = CF_COUNT_MASK;
190ce7fb
RH
7158 }
7159 if (max_insns > TCG_MAX_INSNS) {
7160 max_insns = TCG_MAX_INSNS;
7161 }
2e70f6ef 7162
cd42d5b2 7163 gen_tb_start(tb);
3de31797 7164 tcg_clear_temp_count();
9a64fbe4 7165 /* Set env in case of segfault during code fetch */
fe700adb 7166 while (ctx.exception == POWERPC_EXCP_NONE && !tcg_op_buf_full()) {
667b8e29 7167 tcg_gen_insn_start(ctx.nip);
959082fc 7168 num_insns++;
667b8e29 7169
b933066a
RH
7170 if (unlikely(cpu_breakpoint_test(cs, ctx.nip, BP_ANY))) {
7171 gen_debug_exception(ctxp);
522a0d4e
RH
7172 /* The address covered by the breakpoint must be included in
7173 [tb->pc, tb->pc + tb->size) in order to for it to be
7174 properly cleared -- thus we increment the PC here so that
7175 the logic setting tb->size below does the right thing. */
7176 ctx.nip += 4;
b933066a
RH
7177 break;
7178 }
7179
d12d51d5 7180 LOG_DISAS("----------------\n");
90e189ec 7181 LOG_DISAS("nip=" TARGET_FMT_lx " super=%d ir=%d\n",
d12d51d5 7182 ctx.nip, ctx.mem_idx, (int)msr_ir);
959082fc 7183 if (num_insns == max_insns && (tb->cflags & CF_LAST_IO))
2e70f6ef 7184 gen_io_start();
e22c357b 7185 if (unlikely(need_byteswap(&ctx))) {
2f5a189c 7186 ctx.opcode = bswap32(cpu_ldl_code(env, ctx.nip));
056401ea 7187 } else {
2f5a189c 7188 ctx.opcode = cpu_ldl_code(env, ctx.nip);
111bfab3 7189 }
323ad19b
ND
7190 LOG_DISAS("translate opcode %08x (%02x %02x %02x %02x) (%s)\n",
7191 ctx.opcode, opc1(ctx.opcode), opc2(ctx.opcode),
7192 opc3(ctx.opcode), opc4(ctx.opcode),
7193 ctx.le_mode ? "little" : "big");
046d6672 7194 ctx.nip += 4;
3fc6c082 7195 table = env->opcodes;
79aceca5
FB
7196 handler = table[opc1(ctx.opcode)];
7197 if (is_indirect_opcode(handler)) {
7198 table = ind_table(handler);
7199 handler = table[opc2(ctx.opcode)];
7200 if (is_indirect_opcode(handler)) {
7201 table = ind_table(handler);
7202 handler = table[opc3(ctx.opcode)];
323ad19b
ND
7203 if (is_indirect_opcode(handler)) {
7204 table = ind_table(handler);
7205 handler = table[opc4(ctx.opcode)];
7206 }
79aceca5
FB
7207 }
7208 }
7209 /* Is opcode *REALLY* valid ? */
76a66253 7210 if (unlikely(handler->handler == &gen_invalid)) {
48880da6 7211 qemu_log_mask(LOG_GUEST_ERROR, "invalid/unsupported opcode: "
323ad19b
ND
7212 "%02x - %02x - %02x - %02x (%08x) "
7213 TARGET_FMT_lx " %d\n",
48880da6 7214 opc1(ctx.opcode), opc2(ctx.opcode),
323ad19b
ND
7215 opc3(ctx.opcode), opc4(ctx.opcode),
7216 ctx.opcode, ctx.nip - 4, (int)msr_ir);
76a66253 7217 } else {
70560da7
FC
7218 uint32_t inval;
7219
7220 if (unlikely(handler->type & (PPC_SPE | PPC_SPE_SINGLE | PPC_SPE_DOUBLE) && Rc(ctx.opcode))) {
7221 inval = handler->inval2;
7222 } else {
7223 inval = handler->inval1;
7224 }
7225
7226 if (unlikely((ctx.opcode & inval) != 0)) {
48880da6 7227 qemu_log_mask(LOG_GUEST_ERROR, "invalid bits: %08x for opcode: "
323ad19b
ND
7228 "%02x - %02x - %02x - %02x (%08x) "
7229 TARGET_FMT_lx "\n", ctx.opcode & inval,
7230 opc1(ctx.opcode), opc2(ctx.opcode),
7231 opc3(ctx.opcode), opc4(ctx.opcode),
48880da6 7232 ctx.opcode, ctx.nip - 4);
e06fcd75 7233 gen_inval_exception(ctxp, POWERPC_EXCP_INVAL_INVAL);
4b3686fa 7234 break;
79aceca5 7235 }
79aceca5 7236 }
4b3686fa 7237 (*(handler->handler))(&ctx);
76a66253
JM
7238#if defined(DO_PPC_STATISTICS)
7239 handler->count++;
7240#endif
9a64fbe4 7241 /* Check trace mode exceptions */
8cbcb4fa
AJ
7242 if (unlikely(ctx.singlestep_enabled & CPU_SINGLE_STEP &&
7243 (ctx.nip <= 0x100 || ctx.nip > 0xF00) &&
7244 ctx.exception != POWERPC_SYSCALL &&
7245 ctx.exception != POWERPC_EXCP_TRAP &&
7246 ctx.exception != POWERPC_EXCP_BRANCH)) {
bd6fefe7 7247 gen_exception_nip(ctxp, POWERPC_EXCP_TRACE, ctx.nip);
d26bfc9a 7248 } else if (unlikely(((ctx.nip & (TARGET_PAGE_SIZE - 1)) == 0) ||
ed2803da 7249 (cs->singlestep_enabled) ||
1b530a6d 7250 singlestep ||
2e70f6ef 7251 num_insns >= max_insns)) {
d26bfc9a
JM
7252 /* if we reach a page boundary or are single stepping, stop
7253 * generation
7254 */
8dd4983c 7255 break;
76a66253 7256 }
3de31797 7257 if (tcg_check_temp_count()) {
323ad19b
ND
7258 fprintf(stderr, "Opcode %02x %02x %02x %02x (%08x) leaked "
7259 "temporaries\n", opc1(ctx.opcode), opc2(ctx.opcode),
7260 opc3(ctx.opcode), opc4(ctx.opcode), ctx.opcode);
3de31797
AG
7261 exit(1);
7262 }
3fc6c082 7263 }
2e70f6ef
PB
7264 if (tb->cflags & CF_LAST_IO)
7265 gen_io_end();
e1833e1f 7266 if (ctx.exception == POWERPC_EXCP_NONE) {
c1942362 7267 gen_goto_tb(&ctx, 0, ctx.nip);
e1833e1f 7268 } else if (ctx.exception != POWERPC_EXCP_BRANCH) {
ed2803da 7269 if (unlikely(cs->singlestep_enabled)) {
e06fcd75 7270 gen_debug_exception(ctxp);
8cbcb4fa 7271 }
76a66253 7272 /* Generate the return instruction */
57fec1fe 7273 tcg_gen_exit_tb(0);
9a64fbe4 7274 }
806f352d 7275 gen_tb_end(tb, num_insns);
0a7df5da 7276
4e5e1215
RH
7277 tb->size = ctx.nip - pc_start;
7278 tb->icount = num_insns;
7279
d9bce9d9 7280#if defined(DEBUG_DISAS)
4910e6e4
RH
7281 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)
7282 && qemu_log_in_addr_range(pc_start)) {
76a66253 7283 int flags;
237c0af0 7284 flags = env->bfd_mach;
76db3ba4 7285 flags |= ctx.le_mode << 16;
1ee73216 7286 qemu_log_lock();
93fcfe39 7287 qemu_log("IN: %s\n", lookup_symbol(pc_start));
d49190c4 7288 log_target_disas(cs, pc_start, ctx.nip - pc_start, flags);
93fcfe39 7289 qemu_log("\n");
1ee73216 7290 qemu_log_unlock();
9fddaa0c 7291 }
79aceca5 7292#endif
79aceca5
FB
7293}
7294
bad729e2
RH
7295void restore_state_to_opc(CPUPPCState *env, TranslationBlock *tb,
7296 target_ulong *data)
d2856f1a 7297{
bad729e2 7298 env->nip = data[0];
d2856f1a 7299}