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