2 * PowerPC emulation for qemu: main translation routines.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
5 * Copyright (C) 2011 Freescale Semiconductor, Inc.
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.1 of the License, or (at your option) any later version.
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
24 #include "disas/disas.h"
25 #include "exec/exec-all.h"
26 #include "tcg/tcg-op.h"
27 #include "tcg/tcg-op-gvec.h"
28 #include "qemu/host-utils.h"
29 #include "qemu/main-loop.h"
30 #include "exec/cpu_ldst.h"
32 #include "exec/helper-proto.h"
33 #include "exec/helper-gen.h"
35 #include "exec/translator.h"
37 #include "qemu/atomic128.h"
38 #include "spr_common.h"
39 #include "power8-pmu.h"
41 #include "qemu/qemu-print.h"
42 #include "qapi/error.h"
44 #define CPU_SINGLE_STEP 0x1
45 #define CPU_BRANCH_STEP 0x2
47 /* Include definitions for instructions classes and implementations flags */
48 /* #define PPC_DEBUG_DISAS */
50 #ifdef PPC_DEBUG_DISAS
51 # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
53 # define LOG_DISAS(...) do { } while (0)
55 /*****************************************************************************/
56 /* Code translation helpers */
58 /* global register indexes */
59 static char cpu_reg_names
[10 * 3 + 22 * 4 /* GPR */
60 + 10 * 4 + 22 * 5 /* SPE GPRh */
62 static TCGv cpu_gpr
[32];
63 static TCGv cpu_gprh
[32];
64 static TCGv_i32 cpu_crf
[8];
69 #if defined(TARGET_PPC64)
72 static TCGv cpu_xer
, cpu_so
, cpu_ov
, cpu_ca
, cpu_ov32
, cpu_ca32
;
73 static TCGv cpu_reserve
;
74 static TCGv cpu_reserve_val
;
75 static TCGv cpu_reserve_val2
;
76 static TCGv cpu_fpscr
;
77 static TCGv_i32 cpu_access_type
;
79 #include "exec/gen-icount.h"
81 void ppc_translate_init(void)
85 size_t cpu_reg_names_size
;
88 cpu_reg_names_size
= sizeof(cpu_reg_names
);
90 for (i
= 0; i
< 8; i
++) {
91 snprintf(p
, cpu_reg_names_size
, "crf%d", i
);
92 cpu_crf
[i
] = tcg_global_mem_new_i32(cpu_env
,
93 offsetof(CPUPPCState
, crf
[i
]), p
);
95 cpu_reg_names_size
-= 5;
98 for (i
= 0; i
< 32; i
++) {
99 snprintf(p
, cpu_reg_names_size
, "r%d", i
);
100 cpu_gpr
[i
] = tcg_global_mem_new(cpu_env
,
101 offsetof(CPUPPCState
, gpr
[i
]), p
);
102 p
+= (i
< 10) ? 3 : 4;
103 cpu_reg_names_size
-= (i
< 10) ? 3 : 4;
104 snprintf(p
, cpu_reg_names_size
, "r%dH", i
);
105 cpu_gprh
[i
] = tcg_global_mem_new(cpu_env
,
106 offsetof(CPUPPCState
, gprh
[i
]), p
);
107 p
+= (i
< 10) ? 4 : 5;
108 cpu_reg_names_size
-= (i
< 10) ? 4 : 5;
111 cpu_nip
= tcg_global_mem_new(cpu_env
,
112 offsetof(CPUPPCState
, nip
), "nip");
114 cpu_msr
= tcg_global_mem_new(cpu_env
,
115 offsetof(CPUPPCState
, msr
), "msr");
117 cpu_ctr
= tcg_global_mem_new(cpu_env
,
118 offsetof(CPUPPCState
, ctr
), "ctr");
120 cpu_lr
= tcg_global_mem_new(cpu_env
,
121 offsetof(CPUPPCState
, lr
), "lr");
123 #if defined(TARGET_PPC64)
124 cpu_cfar
= tcg_global_mem_new(cpu_env
,
125 offsetof(CPUPPCState
, cfar
), "cfar");
128 cpu_xer
= tcg_global_mem_new(cpu_env
,
129 offsetof(CPUPPCState
, xer
), "xer");
130 cpu_so
= tcg_global_mem_new(cpu_env
,
131 offsetof(CPUPPCState
, so
), "SO");
132 cpu_ov
= tcg_global_mem_new(cpu_env
,
133 offsetof(CPUPPCState
, ov
), "OV");
134 cpu_ca
= tcg_global_mem_new(cpu_env
,
135 offsetof(CPUPPCState
, ca
), "CA");
136 cpu_ov32
= tcg_global_mem_new(cpu_env
,
137 offsetof(CPUPPCState
, ov32
), "OV32");
138 cpu_ca32
= tcg_global_mem_new(cpu_env
,
139 offsetof(CPUPPCState
, ca32
), "CA32");
141 cpu_reserve
= tcg_global_mem_new(cpu_env
,
142 offsetof(CPUPPCState
, reserve_addr
),
144 cpu_reserve_val
= tcg_global_mem_new(cpu_env
,
145 offsetof(CPUPPCState
, reserve_val
),
147 cpu_reserve_val2
= tcg_global_mem_new(cpu_env
,
148 offsetof(CPUPPCState
, reserve_val2
),
151 cpu_fpscr
= tcg_global_mem_new(cpu_env
,
152 offsetof(CPUPPCState
, fpscr
), "fpscr");
154 cpu_access_type
= tcg_global_mem_new_i32(cpu_env
,
155 offsetof(CPUPPCState
, access_type
),
159 /* internal defines */
160 struct DisasContext
{
161 DisasContextBase base
;
162 target_ulong cia
; /* current instruction address */
164 /* Routine used to access memory */
165 bool pr
, hv
, dr
, le_mode
;
167 bool need_access_type
;
170 /* Translation flags */
171 MemOp default_tcg_memop_mask
;
172 #if defined(TARGET_PPC64)
177 bool altivec_enabled
;
188 ppc_spr_t
*spr_cb
; /* Needed to check rights for mfspr/mtspr */
189 int singlestep_enabled
;
191 uint64_t insns_flags
;
192 uint64_t insns_flags2
;
195 #define DISAS_EXIT DISAS_TARGET_0 /* exit to main loop, pc updated */
196 #define DISAS_EXIT_UPDATE DISAS_TARGET_1 /* exit to main loop, pc stale */
197 #define DISAS_CHAIN DISAS_TARGET_2 /* lookup next tb, pc updated */
198 #define DISAS_CHAIN_UPDATE DISAS_TARGET_3 /* lookup next tb, pc stale */
200 /* Return true iff byteswap is needed in a scalar memop */
201 static inline bool need_byteswap(const DisasContext
*ctx
)
203 #if TARGET_BIG_ENDIAN
206 return !ctx
->le_mode
;
210 /* True when active word size < size of target_long. */
212 # define NARROW_MODE(C) (!(C)->sf_mode)
214 # define NARROW_MODE(C) 0
217 struct opc_handler_t
{
218 /* invalid bits for instruction 1 (Rc(opcode) == 0) */
220 /* invalid bits for instruction 2 (Rc(opcode) == 1) */
222 /* instruction type */
224 /* extended instruction type */
227 void (*handler
)(DisasContext
*ctx
);
230 /* SPR load/store helpers */
231 static inline void gen_load_spr(TCGv t
, int reg
)
233 tcg_gen_ld_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
236 static inline void gen_store_spr(int reg
, TCGv t
)
238 tcg_gen_st_tl(t
, cpu_env
, offsetof(CPUPPCState
, spr
[reg
]));
241 static inline void gen_set_access_type(DisasContext
*ctx
, int access_type
)
243 if (ctx
->need_access_type
&& ctx
->access_type
!= access_type
) {
244 tcg_gen_movi_i32(cpu_access_type
, access_type
);
245 ctx
->access_type
= access_type
;
249 static inline void gen_update_nip(DisasContext
*ctx
, target_ulong nip
)
251 if (NARROW_MODE(ctx
)) {
254 tcg_gen_movi_tl(cpu_nip
, nip
);
257 static void gen_exception_err(DisasContext
*ctx
, uint32_t excp
, uint32_t error
)
262 * These are all synchronous exceptions, we set the PC back to the
263 * faulting instruction
265 gen_update_nip(ctx
, ctx
->cia
);
266 t0
= tcg_const_i32(excp
);
267 t1
= tcg_const_i32(error
);
268 gen_helper_raise_exception_err(cpu_env
, t0
, t1
);
269 tcg_temp_free_i32(t0
);
270 tcg_temp_free_i32(t1
);
271 ctx
->base
.is_jmp
= DISAS_NORETURN
;
274 static void gen_exception(DisasContext
*ctx
, uint32_t excp
)
279 * These are all synchronous exceptions, we set the PC back to the
280 * faulting instruction
282 gen_update_nip(ctx
, ctx
->cia
);
283 t0
= tcg_const_i32(excp
);
284 gen_helper_raise_exception(cpu_env
, t0
);
285 tcg_temp_free_i32(t0
);
286 ctx
->base
.is_jmp
= DISAS_NORETURN
;
289 static void gen_exception_nip(DisasContext
*ctx
, uint32_t excp
,
294 gen_update_nip(ctx
, nip
);
295 t0
= tcg_const_i32(excp
);
296 gen_helper_raise_exception(cpu_env
, t0
);
297 tcg_temp_free_i32(t0
);
298 ctx
->base
.is_jmp
= DISAS_NORETURN
;
301 static void gen_icount_io_start(DisasContext
*ctx
)
303 if (tb_cflags(ctx
->base
.tb
) & CF_USE_ICOUNT
) {
306 * An I/O instruction must be last in the TB.
307 * Chain to the next TB, and let the code from gen_tb_start
308 * decide if we need to return to the main loop.
309 * Doing this first also allows this value to be overridden.
311 ctx
->base
.is_jmp
= DISAS_TOO_MANY
;
315 #if !defined(CONFIG_USER_ONLY)
316 static void gen_ppc_maybe_interrupt(DisasContext
*ctx
)
318 gen_icount_io_start(ctx
);
319 gen_helper_ppc_maybe_interrupt(cpu_env
);
324 * Tells the caller what is the appropriate exception to generate and prepares
325 * SPR registers for this exception.
327 * The exception can be either POWERPC_EXCP_TRACE (on most PowerPCs) or
328 * POWERPC_EXCP_DEBUG (on BookE).
330 static uint32_t gen_prep_dbgex(DisasContext
*ctx
)
332 if (ctx
->flags
& POWERPC_FLAG_DE
) {
333 target_ulong dbsr
= 0;
334 if (ctx
->singlestep_enabled
& CPU_SINGLE_STEP
) {
337 /* Must have been branch */
340 TCGv t0
= tcg_temp_new();
341 gen_load_spr(t0
, SPR_BOOKE_DBSR
);
342 tcg_gen_ori_tl(t0
, t0
, dbsr
);
343 gen_store_spr(SPR_BOOKE_DBSR
, t0
);
345 return POWERPC_EXCP_DEBUG
;
347 return POWERPC_EXCP_TRACE
;
351 static void gen_debug_exception(DisasContext
*ctx
)
353 gen_helper_raise_exception(cpu_env
, tcg_constant_i32(gen_prep_dbgex(ctx
)));
354 ctx
->base
.is_jmp
= DISAS_NORETURN
;
357 static inline void gen_inval_exception(DisasContext
*ctx
, uint32_t error
)
359 /* Will be converted to program check if needed */
360 gen_exception_err(ctx
, POWERPC_EXCP_HV_EMU
, POWERPC_EXCP_INVAL
| error
);
363 static inline void gen_priv_exception(DisasContext
*ctx
, uint32_t error
)
365 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_PRIV
| error
);
368 static inline void gen_hvpriv_exception(DisasContext
*ctx
, uint32_t error
)
370 /* Will be converted to program check if needed */
371 gen_exception_err(ctx
, POWERPC_EXCP_HV_EMU
, POWERPC_EXCP_PRIV
| error
);
374 /*****************************************************************************/
375 /* SPR READ/WRITE CALLBACKS */
377 void spr_noaccess(DisasContext
*ctx
, int gprn
, int sprn
)
380 sprn
= ((sprn
>> 5) & 0x1F) | ((sprn
& 0x1F) << 5);
381 printf("ERROR: try to access SPR %d !\n", sprn
);
385 /* #define PPC_DUMP_SPR_ACCESSES */
389 * do nothing but store/retrieve spr value
391 static void spr_load_dump_spr(int sprn
)
393 #ifdef PPC_DUMP_SPR_ACCESSES
394 TCGv_i32 t0
= tcg_const_i32(sprn
);
395 gen_helper_load_dump_spr(cpu_env
, t0
);
396 tcg_temp_free_i32(t0
);
400 void spr_read_generic(DisasContext
*ctx
, int gprn
, int sprn
)
402 gen_load_spr(cpu_gpr
[gprn
], sprn
);
403 spr_load_dump_spr(sprn
);
406 static void spr_store_dump_spr(int sprn
)
408 #ifdef PPC_DUMP_SPR_ACCESSES
409 TCGv_i32 t0
= tcg_const_i32(sprn
);
410 gen_helper_store_dump_spr(cpu_env
, t0
);
411 tcg_temp_free_i32(t0
);
415 void spr_write_generic(DisasContext
*ctx
, int sprn
, int gprn
)
417 gen_store_spr(sprn
, cpu_gpr
[gprn
]);
418 spr_store_dump_spr(sprn
);
421 void spr_write_CTRL(DisasContext
*ctx
, int sprn
, int gprn
)
423 spr_write_generic(ctx
, sprn
, gprn
);
426 * SPR_CTRL writes must force a new translation block,
427 * allowing the PMU to calculate the run latch events with
430 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
433 #if !defined(CONFIG_USER_ONLY)
434 void spr_write_generic32(DisasContext
*ctx
, int sprn
, int gprn
)
437 TCGv t0
= tcg_temp_new();
438 tcg_gen_ext32u_tl(t0
, cpu_gpr
[gprn
]);
439 gen_store_spr(sprn
, t0
);
441 spr_store_dump_spr(sprn
);
443 spr_write_generic(ctx
, sprn
, gprn
);
447 void spr_write_clear(DisasContext
*ctx
, int sprn
, int gprn
)
449 TCGv t0
= tcg_temp_new();
450 TCGv t1
= tcg_temp_new();
451 gen_load_spr(t0
, sprn
);
452 tcg_gen_neg_tl(t1
, cpu_gpr
[gprn
]);
453 tcg_gen_and_tl(t0
, t0
, t1
);
454 gen_store_spr(sprn
, t0
);
459 void spr_access_nop(DisasContext
*ctx
, int sprn
, int gprn
)
465 /* SPR common to all PowerPC */
467 void spr_read_xer(DisasContext
*ctx
, int gprn
, int sprn
)
469 TCGv dst
= cpu_gpr
[gprn
];
470 TCGv t0
= tcg_temp_new();
471 TCGv t1
= tcg_temp_new();
472 TCGv t2
= tcg_temp_new();
473 tcg_gen_mov_tl(dst
, cpu_xer
);
474 tcg_gen_shli_tl(t0
, cpu_so
, XER_SO
);
475 tcg_gen_shli_tl(t1
, cpu_ov
, XER_OV
);
476 tcg_gen_shli_tl(t2
, cpu_ca
, XER_CA
);
477 tcg_gen_or_tl(t0
, t0
, t1
);
478 tcg_gen_or_tl(dst
, dst
, t2
);
479 tcg_gen_or_tl(dst
, dst
, t0
);
480 if (is_isa300(ctx
)) {
481 tcg_gen_shli_tl(t0
, cpu_ov32
, XER_OV32
);
482 tcg_gen_or_tl(dst
, dst
, t0
);
483 tcg_gen_shli_tl(t0
, cpu_ca32
, XER_CA32
);
484 tcg_gen_or_tl(dst
, dst
, t0
);
491 void spr_write_xer(DisasContext
*ctx
, int sprn
, int gprn
)
493 TCGv src
= cpu_gpr
[gprn
];
494 /* Write all flags, while reading back check for isa300 */
495 tcg_gen_andi_tl(cpu_xer
, src
,
497 (1u << XER_OV
) | (1u << XER_OV32
) |
498 (1u << XER_CA
) | (1u << XER_CA32
)));
499 tcg_gen_extract_tl(cpu_ov32
, src
, XER_OV32
, 1);
500 tcg_gen_extract_tl(cpu_ca32
, src
, XER_CA32
, 1);
501 tcg_gen_extract_tl(cpu_so
, src
, XER_SO
, 1);
502 tcg_gen_extract_tl(cpu_ov
, src
, XER_OV
, 1);
503 tcg_gen_extract_tl(cpu_ca
, src
, XER_CA
, 1);
507 void spr_read_lr(DisasContext
*ctx
, int gprn
, int sprn
)
509 tcg_gen_mov_tl(cpu_gpr
[gprn
], cpu_lr
);
512 void spr_write_lr(DisasContext
*ctx
, int sprn
, int gprn
)
514 tcg_gen_mov_tl(cpu_lr
, cpu_gpr
[gprn
]);
518 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
519 void spr_read_cfar(DisasContext
*ctx
, int gprn
, int sprn
)
521 tcg_gen_mov_tl(cpu_gpr
[gprn
], cpu_cfar
);
524 void spr_write_cfar(DisasContext
*ctx
, int sprn
, int gprn
)
526 tcg_gen_mov_tl(cpu_cfar
, cpu_gpr
[gprn
]);
528 #endif /* defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) */
531 void spr_read_ctr(DisasContext
*ctx
, int gprn
, int sprn
)
533 tcg_gen_mov_tl(cpu_gpr
[gprn
], cpu_ctr
);
536 void spr_write_ctr(DisasContext
*ctx
, int sprn
, int gprn
)
538 tcg_gen_mov_tl(cpu_ctr
, cpu_gpr
[gprn
]);
541 /* User read access to SPR */
547 void spr_read_ureg(DisasContext
*ctx
, int gprn
, int sprn
)
549 gen_load_spr(cpu_gpr
[gprn
], sprn
+ 0x10);
552 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
553 void spr_write_ureg(DisasContext
*ctx
, int sprn
, int gprn
)
555 gen_store_spr(sprn
+ 0x10, cpu_gpr
[gprn
]);
559 /* SPR common to all non-embedded PowerPC */
561 #if !defined(CONFIG_USER_ONLY)
562 void spr_read_decr(DisasContext
*ctx
, int gprn
, int sprn
)
564 gen_icount_io_start(ctx
);
565 gen_helper_load_decr(cpu_gpr
[gprn
], cpu_env
);
568 void spr_write_decr(DisasContext
*ctx
, int sprn
, int gprn
)
570 gen_icount_io_start(ctx
);
571 gen_helper_store_decr(cpu_env
, cpu_gpr
[gprn
]);
575 /* SPR common to all non-embedded PowerPC, except 601 */
577 void spr_read_tbl(DisasContext
*ctx
, int gprn
, int sprn
)
579 gen_icount_io_start(ctx
);
580 gen_helper_load_tbl(cpu_gpr
[gprn
], cpu_env
);
583 void spr_read_tbu(DisasContext
*ctx
, int gprn
, int sprn
)
585 gen_icount_io_start(ctx
);
586 gen_helper_load_tbu(cpu_gpr
[gprn
], cpu_env
);
589 void spr_read_atbl(DisasContext
*ctx
, int gprn
, int sprn
)
591 gen_helper_load_atbl(cpu_gpr
[gprn
], cpu_env
);
594 void spr_read_atbu(DisasContext
*ctx
, int gprn
, int sprn
)
596 gen_helper_load_atbu(cpu_gpr
[gprn
], cpu_env
);
599 #if !defined(CONFIG_USER_ONLY)
600 void spr_write_tbl(DisasContext
*ctx
, int sprn
, int gprn
)
602 gen_icount_io_start(ctx
);
603 gen_helper_store_tbl(cpu_env
, cpu_gpr
[gprn
]);
606 void spr_write_tbu(DisasContext
*ctx
, int sprn
, int gprn
)
608 gen_icount_io_start(ctx
);
609 gen_helper_store_tbu(cpu_env
, cpu_gpr
[gprn
]);
612 void spr_write_atbl(DisasContext
*ctx
, int sprn
, int gprn
)
614 gen_helper_store_atbl(cpu_env
, cpu_gpr
[gprn
]);
617 void spr_write_atbu(DisasContext
*ctx
, int sprn
, int gprn
)
619 gen_helper_store_atbu(cpu_env
, cpu_gpr
[gprn
]);
622 #if defined(TARGET_PPC64)
623 void spr_read_purr(DisasContext
*ctx
, int gprn
, int sprn
)
625 gen_icount_io_start(ctx
);
626 gen_helper_load_purr(cpu_gpr
[gprn
], cpu_env
);
629 void spr_write_purr(DisasContext
*ctx
, int sprn
, int gprn
)
631 gen_icount_io_start(ctx
);
632 gen_helper_store_purr(cpu_env
, cpu_gpr
[gprn
]);
636 void spr_read_hdecr(DisasContext
*ctx
, int gprn
, int sprn
)
638 gen_icount_io_start(ctx
);
639 gen_helper_load_hdecr(cpu_gpr
[gprn
], cpu_env
);
642 void spr_write_hdecr(DisasContext
*ctx
, int sprn
, int gprn
)
644 gen_icount_io_start(ctx
);
645 gen_helper_store_hdecr(cpu_env
, cpu_gpr
[gprn
]);
648 void spr_read_vtb(DisasContext
*ctx
, int gprn
, int sprn
)
650 gen_icount_io_start(ctx
);
651 gen_helper_load_vtb(cpu_gpr
[gprn
], cpu_env
);
654 void spr_write_vtb(DisasContext
*ctx
, int sprn
, int gprn
)
656 gen_icount_io_start(ctx
);
657 gen_helper_store_vtb(cpu_env
, cpu_gpr
[gprn
]);
660 void spr_write_tbu40(DisasContext
*ctx
, int sprn
, int gprn
)
662 gen_icount_io_start(ctx
);
663 gen_helper_store_tbu40(cpu_env
, cpu_gpr
[gprn
]);
669 #if !defined(CONFIG_USER_ONLY)
670 /* IBAT0U...IBAT0U */
671 /* IBAT0L...IBAT7L */
672 void spr_read_ibat(DisasContext
*ctx
, int gprn
, int sprn
)
674 tcg_gen_ld_tl(cpu_gpr
[gprn
], cpu_env
,
675 offsetof(CPUPPCState
,
676 IBAT
[sprn
& 1][(sprn
- SPR_IBAT0U
) / 2]));
679 void spr_read_ibat_h(DisasContext
*ctx
, int gprn
, int sprn
)
681 tcg_gen_ld_tl(cpu_gpr
[gprn
], cpu_env
,
682 offsetof(CPUPPCState
,
683 IBAT
[sprn
& 1][((sprn
- SPR_IBAT4U
) / 2) + 4]));
686 void spr_write_ibatu(DisasContext
*ctx
, int sprn
, int gprn
)
688 TCGv_i32 t0
= tcg_const_i32((sprn
- SPR_IBAT0U
) / 2);
689 gen_helper_store_ibatu(cpu_env
, t0
, cpu_gpr
[gprn
]);
690 tcg_temp_free_i32(t0
);
693 void spr_write_ibatu_h(DisasContext
*ctx
, int sprn
, int gprn
)
695 TCGv_i32 t0
= tcg_const_i32(((sprn
- SPR_IBAT4U
) / 2) + 4);
696 gen_helper_store_ibatu(cpu_env
, t0
, cpu_gpr
[gprn
]);
697 tcg_temp_free_i32(t0
);
700 void spr_write_ibatl(DisasContext
*ctx
, int sprn
, int gprn
)
702 TCGv_i32 t0
= tcg_const_i32((sprn
- SPR_IBAT0L
) / 2);
703 gen_helper_store_ibatl(cpu_env
, t0
, cpu_gpr
[gprn
]);
704 tcg_temp_free_i32(t0
);
707 void spr_write_ibatl_h(DisasContext
*ctx
, int sprn
, int gprn
)
709 TCGv_i32 t0
= tcg_const_i32(((sprn
- SPR_IBAT4L
) / 2) + 4);
710 gen_helper_store_ibatl(cpu_env
, t0
, cpu_gpr
[gprn
]);
711 tcg_temp_free_i32(t0
);
714 /* DBAT0U...DBAT7U */
715 /* DBAT0L...DBAT7L */
716 void spr_read_dbat(DisasContext
*ctx
, int gprn
, int sprn
)
718 tcg_gen_ld_tl(cpu_gpr
[gprn
], cpu_env
,
719 offsetof(CPUPPCState
,
720 DBAT
[sprn
& 1][(sprn
- SPR_DBAT0U
) / 2]));
723 void spr_read_dbat_h(DisasContext
*ctx
, int gprn
, int sprn
)
725 tcg_gen_ld_tl(cpu_gpr
[gprn
], cpu_env
,
726 offsetof(CPUPPCState
,
727 DBAT
[sprn
& 1][((sprn
- SPR_DBAT4U
) / 2) + 4]));
730 void spr_write_dbatu(DisasContext
*ctx
, int sprn
, int gprn
)
732 TCGv_i32 t0
= tcg_const_i32((sprn
- SPR_DBAT0U
) / 2);
733 gen_helper_store_dbatu(cpu_env
, t0
, cpu_gpr
[gprn
]);
734 tcg_temp_free_i32(t0
);
737 void spr_write_dbatu_h(DisasContext
*ctx
, int sprn
, int gprn
)
739 TCGv_i32 t0
= tcg_const_i32(((sprn
- SPR_DBAT4U
) / 2) + 4);
740 gen_helper_store_dbatu(cpu_env
, t0
, cpu_gpr
[gprn
]);
741 tcg_temp_free_i32(t0
);
744 void spr_write_dbatl(DisasContext
*ctx
, int sprn
, int gprn
)
746 TCGv_i32 t0
= tcg_const_i32((sprn
- SPR_DBAT0L
) / 2);
747 gen_helper_store_dbatl(cpu_env
, t0
, cpu_gpr
[gprn
]);
748 tcg_temp_free_i32(t0
);
751 void spr_write_dbatl_h(DisasContext
*ctx
, int sprn
, int gprn
)
753 TCGv_i32 t0
= tcg_const_i32(((sprn
- SPR_DBAT4L
) / 2) + 4);
754 gen_helper_store_dbatl(cpu_env
, t0
, cpu_gpr
[gprn
]);
755 tcg_temp_free_i32(t0
);
759 void spr_write_sdr1(DisasContext
*ctx
, int sprn
, int gprn
)
761 gen_helper_store_sdr1(cpu_env
, cpu_gpr
[gprn
]);
764 #if defined(TARGET_PPC64)
765 /* 64 bits PowerPC specific SPRs */
767 void spr_write_pidr(DisasContext
*ctx
, int sprn
, int gprn
)
769 gen_helper_store_pidr(cpu_env
, cpu_gpr
[gprn
]);
772 void spr_write_lpidr(DisasContext
*ctx
, int sprn
, int gprn
)
774 gen_helper_store_lpidr(cpu_env
, cpu_gpr
[gprn
]);
777 void spr_read_hior(DisasContext
*ctx
, int gprn
, int sprn
)
779 tcg_gen_ld_tl(cpu_gpr
[gprn
], cpu_env
, offsetof(CPUPPCState
, excp_prefix
));
782 void spr_write_hior(DisasContext
*ctx
, int sprn
, int gprn
)
784 TCGv t0
= tcg_temp_new();
785 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
], 0x3FFFFF00000ULL
);
786 tcg_gen_st_tl(t0
, cpu_env
, offsetof(CPUPPCState
, excp_prefix
));
789 void spr_write_ptcr(DisasContext
*ctx
, int sprn
, int gprn
)
791 gen_helper_store_ptcr(cpu_env
, cpu_gpr
[gprn
]);
794 void spr_write_pcr(DisasContext
*ctx
, int sprn
, int gprn
)
796 gen_helper_store_pcr(cpu_env
, cpu_gpr
[gprn
]);
800 void spr_read_dpdes(DisasContext
*ctx
, int gprn
, int sprn
)
802 gen_helper_load_dpdes(cpu_gpr
[gprn
], cpu_env
);
805 void spr_write_dpdes(DisasContext
*ctx
, int sprn
, int gprn
)
807 gen_helper_store_dpdes(cpu_env
, cpu_gpr
[gprn
]);
812 /* PowerPC 40x specific registers */
813 #if !defined(CONFIG_USER_ONLY)
814 void spr_read_40x_pit(DisasContext
*ctx
, int gprn
, int sprn
)
816 gen_icount_io_start(ctx
);
817 gen_helper_load_40x_pit(cpu_gpr
[gprn
], cpu_env
);
820 void spr_write_40x_pit(DisasContext
*ctx
, int sprn
, int gprn
)
822 gen_icount_io_start(ctx
);
823 gen_helper_store_40x_pit(cpu_env
, cpu_gpr
[gprn
]);
826 void spr_write_40x_dbcr0(DisasContext
*ctx
, int sprn
, int gprn
)
828 gen_icount_io_start(ctx
);
829 gen_store_spr(sprn
, cpu_gpr
[gprn
]);
830 gen_helper_store_40x_dbcr0(cpu_env
, cpu_gpr
[gprn
]);
831 /* We must stop translation as we may have rebooted */
832 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
835 void spr_write_40x_sler(DisasContext
*ctx
, int sprn
, int gprn
)
837 gen_icount_io_start(ctx
);
838 gen_helper_store_40x_sler(cpu_env
, cpu_gpr
[gprn
]);
841 void spr_write_40x_tcr(DisasContext
*ctx
, int sprn
, int gprn
)
843 gen_icount_io_start(ctx
);
844 gen_helper_store_40x_tcr(cpu_env
, cpu_gpr
[gprn
]);
847 void spr_write_40x_tsr(DisasContext
*ctx
, int sprn
, int gprn
)
849 gen_icount_io_start(ctx
);
850 gen_helper_store_40x_tsr(cpu_env
, cpu_gpr
[gprn
]);
853 void spr_write_40x_pid(DisasContext
*ctx
, int sprn
, int gprn
)
855 TCGv t0
= tcg_temp_new();
856 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
], 0xFF);
857 gen_helper_store_40x_pid(cpu_env
, t0
);
861 void spr_write_booke_tcr(DisasContext
*ctx
, int sprn
, int gprn
)
863 gen_icount_io_start(ctx
);
864 gen_helper_store_booke_tcr(cpu_env
, cpu_gpr
[gprn
]);
867 void spr_write_booke_tsr(DisasContext
*ctx
, int sprn
, int gprn
)
869 gen_icount_io_start(ctx
);
870 gen_helper_store_booke_tsr(cpu_env
, cpu_gpr
[gprn
]);
875 #if !defined(CONFIG_USER_ONLY)
876 void spr_write_pir(DisasContext
*ctx
, int sprn
, int gprn
)
878 TCGv t0
= tcg_temp_new();
879 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
], 0xF);
880 gen_store_spr(SPR_PIR
, t0
);
885 /* SPE specific registers */
886 void spr_read_spefscr(DisasContext
*ctx
, int gprn
, int sprn
)
888 TCGv_i32 t0
= tcg_temp_new_i32();
889 tcg_gen_ld_i32(t0
, cpu_env
, offsetof(CPUPPCState
, spe_fscr
));
890 tcg_gen_extu_i32_tl(cpu_gpr
[gprn
], t0
);
891 tcg_temp_free_i32(t0
);
894 void spr_write_spefscr(DisasContext
*ctx
, int sprn
, int gprn
)
896 TCGv_i32 t0
= tcg_temp_new_i32();
897 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[gprn
]);
898 tcg_gen_st_i32(t0
, cpu_env
, offsetof(CPUPPCState
, spe_fscr
));
899 tcg_temp_free_i32(t0
);
902 #if !defined(CONFIG_USER_ONLY)
903 /* Callback used to write the exception vector base */
904 void spr_write_excp_prefix(DisasContext
*ctx
, int sprn
, int gprn
)
906 TCGv t0
= tcg_temp_new();
907 tcg_gen_ld_tl(t0
, cpu_env
, offsetof(CPUPPCState
, ivpr_mask
));
908 tcg_gen_and_tl(t0
, t0
, cpu_gpr
[gprn
]);
909 tcg_gen_st_tl(t0
, cpu_env
, offsetof(CPUPPCState
, excp_prefix
));
910 gen_store_spr(sprn
, t0
);
914 void spr_write_excp_vector(DisasContext
*ctx
, int sprn
, int gprn
)
918 if (sprn
>= SPR_BOOKE_IVOR0
&& sprn
<= SPR_BOOKE_IVOR15
) {
919 sprn_offs
= sprn
- SPR_BOOKE_IVOR0
;
920 } else if (sprn
>= SPR_BOOKE_IVOR32
&& sprn
<= SPR_BOOKE_IVOR37
) {
921 sprn_offs
= sprn
- SPR_BOOKE_IVOR32
+ 32;
922 } else if (sprn
>= SPR_BOOKE_IVOR38
&& sprn
<= SPR_BOOKE_IVOR42
) {
923 sprn_offs
= sprn
- SPR_BOOKE_IVOR38
+ 38;
925 qemu_log_mask(LOG_GUEST_ERROR
, "Trying to write an unknown exception"
926 " vector 0x%03x\n", sprn
);
927 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
931 TCGv t0
= tcg_temp_new();
932 tcg_gen_ld_tl(t0
, cpu_env
, offsetof(CPUPPCState
, ivor_mask
));
933 tcg_gen_and_tl(t0
, t0
, cpu_gpr
[gprn
]);
934 tcg_gen_st_tl(t0
, cpu_env
, offsetof(CPUPPCState
, excp_vectors
[sprn_offs
]));
935 gen_store_spr(sprn
, t0
);
941 #ifndef CONFIG_USER_ONLY
942 void spr_write_amr(DisasContext
*ctx
, int sprn
, int gprn
)
944 TCGv t0
= tcg_temp_new();
945 TCGv t1
= tcg_temp_new();
946 TCGv t2
= tcg_temp_new();
949 * Note, the HV=1 PR=0 case is handled earlier by simply using
950 * spr_write_generic for HV mode in the SPR table
953 /* Build insertion mask into t1 based on context */
955 gen_load_spr(t1
, SPR_UAMOR
);
957 gen_load_spr(t1
, SPR_AMOR
);
960 /* Mask new bits into t2 */
961 tcg_gen_and_tl(t2
, t1
, cpu_gpr
[gprn
]);
963 /* Load AMR and clear new bits in t0 */
964 gen_load_spr(t0
, SPR_AMR
);
965 tcg_gen_andc_tl(t0
, t0
, t1
);
967 /* Or'in new bits and write it out */
968 tcg_gen_or_tl(t0
, t0
, t2
);
969 gen_store_spr(SPR_AMR
, t0
);
970 spr_store_dump_spr(SPR_AMR
);
977 void spr_write_uamor(DisasContext
*ctx
, int sprn
, int gprn
)
979 TCGv t0
= tcg_temp_new();
980 TCGv t1
= tcg_temp_new();
981 TCGv t2
= tcg_temp_new();
984 * Note, the HV=1 case is handled earlier by simply using
985 * spr_write_generic for HV mode in the SPR table
988 /* Build insertion mask into t1 based on context */
989 gen_load_spr(t1
, SPR_AMOR
);
991 /* Mask new bits into t2 */
992 tcg_gen_and_tl(t2
, t1
, cpu_gpr
[gprn
]);
994 /* Load AMR and clear new bits in t0 */
995 gen_load_spr(t0
, SPR_UAMOR
);
996 tcg_gen_andc_tl(t0
, t0
, t1
);
998 /* Or'in new bits and write it out */
999 tcg_gen_or_tl(t0
, t0
, t2
);
1000 gen_store_spr(SPR_UAMOR
, t0
);
1001 spr_store_dump_spr(SPR_UAMOR
);
1008 void spr_write_iamr(DisasContext
*ctx
, int sprn
, int gprn
)
1010 TCGv t0
= tcg_temp_new();
1011 TCGv t1
= tcg_temp_new();
1012 TCGv t2
= tcg_temp_new();
1015 * Note, the HV=1 case is handled earlier by simply using
1016 * spr_write_generic for HV mode in the SPR table
1019 /* Build insertion mask into t1 based on context */
1020 gen_load_spr(t1
, SPR_AMOR
);
1022 /* Mask new bits into t2 */
1023 tcg_gen_and_tl(t2
, t1
, cpu_gpr
[gprn
]);
1025 /* Load AMR and clear new bits in t0 */
1026 gen_load_spr(t0
, SPR_IAMR
);
1027 tcg_gen_andc_tl(t0
, t0
, t1
);
1029 /* Or'in new bits and write it out */
1030 tcg_gen_or_tl(t0
, t0
, t2
);
1031 gen_store_spr(SPR_IAMR
, t0
);
1032 spr_store_dump_spr(SPR_IAMR
);
1041 #ifndef CONFIG_USER_ONLY
1042 void spr_read_thrm(DisasContext
*ctx
, int gprn
, int sprn
)
1044 gen_helper_fixup_thrm(cpu_env
);
1045 gen_load_spr(cpu_gpr
[gprn
], sprn
);
1046 spr_load_dump_spr(sprn
);
1048 #endif /* !CONFIG_USER_ONLY */
1050 #if !defined(CONFIG_USER_ONLY)
1051 void spr_write_e500_l1csr0(DisasContext
*ctx
, int sprn
, int gprn
)
1053 TCGv t0
= tcg_temp_new();
1055 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
], L1CSR0_DCE
| L1CSR0_CPE
);
1056 gen_store_spr(sprn
, t0
);
1060 void spr_write_e500_l1csr1(DisasContext
*ctx
, int sprn
, int gprn
)
1062 TCGv t0
= tcg_temp_new();
1064 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
], L1CSR1_ICE
| L1CSR1_CPE
);
1065 gen_store_spr(sprn
, t0
);
1069 void spr_write_e500_l2csr0(DisasContext
*ctx
, int sprn
, int gprn
)
1071 TCGv t0
= tcg_temp_new();
1073 tcg_gen_andi_tl(t0
, cpu_gpr
[gprn
],
1074 ~(E500_L2CSR0_L2FI
| E500_L2CSR0_L2FL
| E500_L2CSR0_L2LFC
));
1075 gen_store_spr(sprn
, t0
);
1079 void spr_write_booke206_mmucsr0(DisasContext
*ctx
, int sprn
, int gprn
)
1081 gen_helper_booke206_tlbflush(cpu_env
, cpu_gpr
[gprn
]);
1084 void spr_write_booke_pid(DisasContext
*ctx
, int sprn
, int gprn
)
1086 TCGv_i32 t0
= tcg_const_i32(sprn
);
1087 gen_helper_booke_setpid(cpu_env
, t0
, cpu_gpr
[gprn
]);
1088 tcg_temp_free_i32(t0
);
1090 void spr_write_eplc(DisasContext
*ctx
, int sprn
, int gprn
)
1092 gen_helper_booke_set_eplc(cpu_env
, cpu_gpr
[gprn
]);
1094 void spr_write_epsc(DisasContext
*ctx
, int sprn
, int gprn
)
1096 gen_helper_booke_set_epsc(cpu_env
, cpu_gpr
[gprn
]);
1101 #if !defined(CONFIG_USER_ONLY)
1102 void spr_write_mas73(DisasContext
*ctx
, int sprn
, int gprn
)
1104 TCGv val
= tcg_temp_new();
1105 tcg_gen_ext32u_tl(val
, cpu_gpr
[gprn
]);
1106 gen_store_spr(SPR_BOOKE_MAS3
, val
);
1107 tcg_gen_shri_tl(val
, cpu_gpr
[gprn
], 32);
1108 gen_store_spr(SPR_BOOKE_MAS7
, val
);
1112 void spr_read_mas73(DisasContext
*ctx
, int gprn
, int sprn
)
1114 TCGv mas7
= tcg_temp_new();
1115 TCGv mas3
= tcg_temp_new();
1116 gen_load_spr(mas7
, SPR_BOOKE_MAS7
);
1117 tcg_gen_shli_tl(mas7
, mas7
, 32);
1118 gen_load_spr(mas3
, SPR_BOOKE_MAS3
);
1119 tcg_gen_or_tl(cpu_gpr
[gprn
], mas3
, mas7
);
1120 tcg_temp_free(mas3
);
1121 tcg_temp_free(mas7
);
1127 static void gen_fscr_facility_check(DisasContext
*ctx
, int facility_sprn
,
1128 int bit
, int sprn
, int cause
)
1130 TCGv_i32 t1
= tcg_const_i32(bit
);
1131 TCGv_i32 t2
= tcg_const_i32(sprn
);
1132 TCGv_i32 t3
= tcg_const_i32(cause
);
1134 gen_helper_fscr_facility_check(cpu_env
, t1
, t2
, t3
);
1136 tcg_temp_free_i32(t3
);
1137 tcg_temp_free_i32(t2
);
1138 tcg_temp_free_i32(t1
);
1141 static void gen_msr_facility_check(DisasContext
*ctx
, int facility_sprn
,
1142 int bit
, int sprn
, int cause
)
1144 TCGv_i32 t1
= tcg_const_i32(bit
);
1145 TCGv_i32 t2
= tcg_const_i32(sprn
);
1146 TCGv_i32 t3
= tcg_const_i32(cause
);
1148 gen_helper_msr_facility_check(cpu_env
, t1
, t2
, t3
);
1150 tcg_temp_free_i32(t3
);
1151 tcg_temp_free_i32(t2
);
1152 tcg_temp_free_i32(t1
);
1155 void spr_read_prev_upper32(DisasContext
*ctx
, int gprn
, int sprn
)
1157 TCGv spr_up
= tcg_temp_new();
1158 TCGv spr
= tcg_temp_new();
1160 gen_load_spr(spr
, sprn
- 1);
1161 tcg_gen_shri_tl(spr_up
, spr
, 32);
1162 tcg_gen_ext32u_tl(cpu_gpr
[gprn
], spr_up
);
1165 tcg_temp_free(spr_up
);
1168 void spr_write_prev_upper32(DisasContext
*ctx
, int sprn
, int gprn
)
1170 TCGv spr
= tcg_temp_new();
1172 gen_load_spr(spr
, sprn
- 1);
1173 tcg_gen_deposit_tl(spr
, spr
, cpu_gpr
[gprn
], 32, 32);
1174 gen_store_spr(sprn
- 1, spr
);
1179 #if !defined(CONFIG_USER_ONLY)
1180 void spr_write_hmer(DisasContext
*ctx
, int sprn
, int gprn
)
1182 TCGv hmer
= tcg_temp_new();
1184 gen_load_spr(hmer
, sprn
);
1185 tcg_gen_and_tl(hmer
, cpu_gpr
[gprn
], hmer
);
1186 gen_store_spr(sprn
, hmer
);
1187 spr_store_dump_spr(sprn
);
1188 tcg_temp_free(hmer
);
1191 void spr_write_lpcr(DisasContext
*ctx
, int sprn
, int gprn
)
1193 gen_helper_store_lpcr(cpu_env
, cpu_gpr
[gprn
]);
1195 #endif /* !defined(CONFIG_USER_ONLY) */
1197 void spr_read_tar(DisasContext
*ctx
, int gprn
, int sprn
)
1199 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_TAR
, sprn
, FSCR_IC_TAR
);
1200 spr_read_generic(ctx
, gprn
, sprn
);
1203 void spr_write_tar(DisasContext
*ctx
, int sprn
, int gprn
)
1205 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_TAR
, sprn
, FSCR_IC_TAR
);
1206 spr_write_generic(ctx
, sprn
, gprn
);
1209 void spr_read_tm(DisasContext
*ctx
, int gprn
, int sprn
)
1211 gen_msr_facility_check(ctx
, SPR_FSCR
, MSR_TM
, sprn
, FSCR_IC_TM
);
1212 spr_read_generic(ctx
, gprn
, sprn
);
1215 void spr_write_tm(DisasContext
*ctx
, int sprn
, int gprn
)
1217 gen_msr_facility_check(ctx
, SPR_FSCR
, MSR_TM
, sprn
, FSCR_IC_TM
);
1218 spr_write_generic(ctx
, sprn
, gprn
);
1221 void spr_read_tm_upper32(DisasContext
*ctx
, int gprn
, int sprn
)
1223 gen_msr_facility_check(ctx
, SPR_FSCR
, MSR_TM
, sprn
, FSCR_IC_TM
);
1224 spr_read_prev_upper32(ctx
, gprn
, sprn
);
1227 void spr_write_tm_upper32(DisasContext
*ctx
, int sprn
, int gprn
)
1229 gen_msr_facility_check(ctx
, SPR_FSCR
, MSR_TM
, sprn
, FSCR_IC_TM
);
1230 spr_write_prev_upper32(ctx
, sprn
, gprn
);
1233 void spr_read_ebb(DisasContext
*ctx
, int gprn
, int sprn
)
1235 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_EBB
, sprn
, FSCR_IC_EBB
);
1236 spr_read_generic(ctx
, gprn
, sprn
);
1239 void spr_write_ebb(DisasContext
*ctx
, int sprn
, int gprn
)
1241 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_EBB
, sprn
, FSCR_IC_EBB
);
1242 spr_write_generic(ctx
, sprn
, gprn
);
1245 void spr_read_ebb_upper32(DisasContext
*ctx
, int gprn
, int sprn
)
1247 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_EBB
, sprn
, FSCR_IC_EBB
);
1248 spr_read_prev_upper32(ctx
, gprn
, sprn
);
1251 void spr_write_ebb_upper32(DisasContext
*ctx
, int sprn
, int gprn
)
1253 gen_fscr_facility_check(ctx
, SPR_FSCR
, FSCR_EBB
, sprn
, FSCR_IC_EBB
);
1254 spr_write_prev_upper32(ctx
, sprn
, gprn
);
1257 void spr_read_dexcr_ureg(DisasContext
*ctx
, int gprn
, int sprn
)
1259 TCGv t0
= tcg_temp_new();
1262 * Access to the (H)DEXCR in problem state is done using separated
1263 * SPR indexes which are 16 below the SPR indexes which have full
1264 * access to the (H)DEXCR in privileged state. Problem state can
1265 * only read bits 32:63, bits 0:31 return 0.
1267 * See section 9.3.1-9.3.2 of PowerISA v3.1B
1270 gen_load_spr(t0
, sprn
+ 16);
1271 tcg_gen_ext32u_tl(cpu_gpr
[gprn
], t0
);
1277 #define GEN_HANDLER(name, opc1, opc2, opc3, inval, type) \
1278 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, PPC_NONE)
1280 #define GEN_HANDLER_E(name, opc1, opc2, opc3, inval, type, type2) \
1281 GEN_OPCODE(name, opc1, opc2, opc3, inval, type, type2)
1283 #define GEN_HANDLER2(name, onam, opc1, opc2, opc3, inval, type) \
1284 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, PPC_NONE)
1286 #define GEN_HANDLER2_E(name, onam, opc1, opc2, opc3, inval, type, type2) \
1287 GEN_OPCODE2(name, onam, opc1, opc2, opc3, inval, type, type2)
1289 #define GEN_HANDLER_E_2(name, opc1, opc2, opc3, opc4, inval, type, type2) \
1290 GEN_OPCODE3(name, opc1, opc2, opc3, opc4, inval, type, type2)
1292 #define GEN_HANDLER2_E_2(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2) \
1293 GEN_OPCODE4(name, onam, opc1, opc2, opc3, opc4, inval, typ, typ2)
1295 typedef struct opcode_t
{
1296 unsigned char opc1
, opc2
, opc3
, opc4
;
1297 #if HOST_LONG_BITS == 64 /* Explicitly align to 64 bits */
1298 unsigned char pad
[4];
1300 opc_handler_t handler
;
1304 static void gen_priv_opc(DisasContext
*ctx
)
1306 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_OPC
);
1309 /* Helpers for priv. check */
1310 #define GEN_PRIV(CTX) \
1312 gen_priv_opc(CTX); return; \
1315 #if defined(CONFIG_USER_ONLY)
1316 #define CHK_HV(CTX) GEN_PRIV(CTX)
1317 #define CHK_SV(CTX) GEN_PRIV(CTX)
1318 #define CHK_HVRM(CTX) GEN_PRIV(CTX)
1320 #define CHK_HV(CTX) \
1322 if (unlikely(ctx->pr || !ctx->hv)) {\
1326 #define CHK_SV(CTX) \
1328 if (unlikely(ctx->pr)) { \
1332 #define CHK_HVRM(CTX) \
1334 if (unlikely(ctx->pr || !ctx->hv || ctx->dr)) { \
1340 #define CHK_NONE(CTX)
1342 /*****************************************************************************/
1343 /* PowerPC instructions table */
1345 #define GEN_OPCODE(name, op1, op2, op3, invl, _typ, _typ2) \
1355 .handler = &gen_##name, \
1357 .oname = stringify(name), \
1359 #define GEN_OPCODE_DUAL(name, op1, op2, op3, invl1, invl2, _typ, _typ2) \
1370 .handler = &gen_##name, \
1372 .oname = stringify(name), \
1374 #define GEN_OPCODE2(name, onam, op1, op2, op3, invl, _typ, _typ2) \
1384 .handler = &gen_##name, \
1388 #define GEN_OPCODE3(name, op1, op2, op3, op4, invl, _typ, _typ2) \
1398 .handler = &gen_##name, \
1400 .oname = stringify(name), \
1402 #define GEN_OPCODE4(name, onam, op1, op2, op3, op4, invl, _typ, _typ2) \
1412 .handler = &gen_##name, \
1417 /* Invalid instruction */
1418 static void gen_invalid(DisasContext
*ctx
)
1420 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
1423 static opc_handler_t invalid_handler
= {
1424 .inval1
= 0xFFFFFFFF,
1425 .inval2
= 0xFFFFFFFF,
1428 .handler
= gen_invalid
,
1431 /*** Integer comparison ***/
1433 static inline void gen_op_cmp(TCGv arg0
, TCGv arg1
, int s
, int crf
)
1435 TCGv t0
= tcg_temp_new();
1436 TCGv t1
= tcg_temp_new();
1437 TCGv_i32 t
= tcg_temp_new_i32();
1439 tcg_gen_movi_tl(t0
, CRF_EQ
);
1440 tcg_gen_movi_tl(t1
, CRF_LT
);
1441 tcg_gen_movcond_tl((s
? TCG_COND_LT
: TCG_COND_LTU
),
1442 t0
, arg0
, arg1
, t1
, t0
);
1443 tcg_gen_movi_tl(t1
, CRF_GT
);
1444 tcg_gen_movcond_tl((s
? TCG_COND_GT
: TCG_COND_GTU
),
1445 t0
, arg0
, arg1
, t1
, t0
);
1447 tcg_gen_trunc_tl_i32(t
, t0
);
1448 tcg_gen_trunc_tl_i32(cpu_crf
[crf
], cpu_so
);
1449 tcg_gen_or_i32(cpu_crf
[crf
], cpu_crf
[crf
], t
);
1453 tcg_temp_free_i32(t
);
1456 static inline void gen_op_cmpi(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
1458 TCGv t0
= tcg_const_tl(arg1
);
1459 gen_op_cmp(arg0
, t0
, s
, crf
);
1463 static inline void gen_op_cmp32(TCGv arg0
, TCGv arg1
, int s
, int crf
)
1466 t0
= tcg_temp_new();
1467 t1
= tcg_temp_new();
1469 tcg_gen_ext32s_tl(t0
, arg0
);
1470 tcg_gen_ext32s_tl(t1
, arg1
);
1472 tcg_gen_ext32u_tl(t0
, arg0
);
1473 tcg_gen_ext32u_tl(t1
, arg1
);
1475 gen_op_cmp(t0
, t1
, s
, crf
);
1480 static inline void gen_op_cmpi32(TCGv arg0
, target_ulong arg1
, int s
, int crf
)
1482 TCGv t0
= tcg_const_tl(arg1
);
1483 gen_op_cmp32(arg0
, t0
, s
, crf
);
1487 static inline void gen_set_Rc0(DisasContext
*ctx
, TCGv reg
)
1489 if (NARROW_MODE(ctx
)) {
1490 gen_op_cmpi32(reg
, 0, 1, 0);
1492 gen_op_cmpi(reg
, 0, 1, 0);
1496 /* cmprb - range comparison: isupper, isaplha, islower*/
1497 static void gen_cmprb(DisasContext
*ctx
)
1499 TCGv_i32 src1
= tcg_temp_new_i32();
1500 TCGv_i32 src2
= tcg_temp_new_i32();
1501 TCGv_i32 src2lo
= tcg_temp_new_i32();
1502 TCGv_i32 src2hi
= tcg_temp_new_i32();
1503 TCGv_i32 crf
= cpu_crf
[crfD(ctx
->opcode
)];
1505 tcg_gen_trunc_tl_i32(src1
, cpu_gpr
[rA(ctx
->opcode
)]);
1506 tcg_gen_trunc_tl_i32(src2
, cpu_gpr
[rB(ctx
->opcode
)]);
1508 tcg_gen_andi_i32(src1
, src1
, 0xFF);
1509 tcg_gen_ext8u_i32(src2lo
, src2
);
1510 tcg_gen_shri_i32(src2
, src2
, 8);
1511 tcg_gen_ext8u_i32(src2hi
, src2
);
1513 tcg_gen_setcond_i32(TCG_COND_LEU
, src2lo
, src2lo
, src1
);
1514 tcg_gen_setcond_i32(TCG_COND_LEU
, src2hi
, src1
, src2hi
);
1515 tcg_gen_and_i32(crf
, src2lo
, src2hi
);
1517 if (ctx
->opcode
& 0x00200000) {
1518 tcg_gen_shri_i32(src2
, src2
, 8);
1519 tcg_gen_ext8u_i32(src2lo
, src2
);
1520 tcg_gen_shri_i32(src2
, src2
, 8);
1521 tcg_gen_ext8u_i32(src2hi
, src2
);
1522 tcg_gen_setcond_i32(TCG_COND_LEU
, src2lo
, src2lo
, src1
);
1523 tcg_gen_setcond_i32(TCG_COND_LEU
, src2hi
, src1
, src2hi
);
1524 tcg_gen_and_i32(src2lo
, src2lo
, src2hi
);
1525 tcg_gen_or_i32(crf
, crf
, src2lo
);
1527 tcg_gen_shli_i32(crf
, crf
, CRF_GT_BIT
);
1528 tcg_temp_free_i32(src1
);
1529 tcg_temp_free_i32(src2
);
1530 tcg_temp_free_i32(src2lo
);
1531 tcg_temp_free_i32(src2hi
);
1534 #if defined(TARGET_PPC64)
1536 static void gen_cmpeqb(DisasContext
*ctx
)
1538 gen_helper_cmpeqb(cpu_crf
[crfD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1539 cpu_gpr
[rB(ctx
->opcode
)]);
1543 /* isel (PowerPC 2.03 specification) */
1544 static void gen_isel(DisasContext
*ctx
)
1546 uint32_t bi
= rC(ctx
->opcode
);
1547 uint32_t mask
= 0x08 >> (bi
& 0x03);
1548 TCGv t0
= tcg_temp_new();
1551 tcg_gen_extu_i32_tl(t0
, cpu_crf
[bi
>> 2]);
1552 tcg_gen_andi_tl(t0
, t0
, mask
);
1554 zr
= tcg_const_tl(0);
1555 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_gpr
[rD(ctx
->opcode
)], t0
, zr
,
1556 rA(ctx
->opcode
) ? cpu_gpr
[rA(ctx
->opcode
)] : zr
,
1557 cpu_gpr
[rB(ctx
->opcode
)]);
1562 /* cmpb: PowerPC 2.05 specification */
1563 static void gen_cmpb(DisasContext
*ctx
)
1565 gen_helper_cmpb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
1566 cpu_gpr
[rB(ctx
->opcode
)]);
1569 /*** Integer arithmetic ***/
1571 static inline void gen_op_arith_compute_ov(DisasContext
*ctx
, TCGv arg0
,
1572 TCGv arg1
, TCGv arg2
, int sub
)
1574 TCGv t0
= tcg_temp_new();
1576 tcg_gen_xor_tl(cpu_ov
, arg0
, arg2
);
1577 tcg_gen_xor_tl(t0
, arg1
, arg2
);
1579 tcg_gen_and_tl(cpu_ov
, cpu_ov
, t0
);
1581 tcg_gen_andc_tl(cpu_ov
, cpu_ov
, t0
);
1584 if (NARROW_MODE(ctx
)) {
1585 tcg_gen_extract_tl(cpu_ov
, cpu_ov
, 31, 1);
1586 if (is_isa300(ctx
)) {
1587 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
1590 if (is_isa300(ctx
)) {
1591 tcg_gen_extract_tl(cpu_ov32
, cpu_ov
, 31, 1);
1593 tcg_gen_extract_tl(cpu_ov
, cpu_ov
, TARGET_LONG_BITS
- 1, 1);
1595 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1598 static inline void gen_op_arith_compute_ca32(DisasContext
*ctx
,
1599 TCGv res
, TCGv arg0
, TCGv arg1
,
1604 if (!is_isa300(ctx
)) {
1608 t0
= tcg_temp_new();
1610 tcg_gen_eqv_tl(t0
, arg0
, arg1
);
1612 tcg_gen_xor_tl(t0
, arg0
, arg1
);
1614 tcg_gen_xor_tl(t0
, t0
, res
);
1615 tcg_gen_extract_tl(ca32
, t0
, 32, 1);
1619 /* Common add function */
1620 static inline void gen_op_arith_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1621 TCGv arg2
, TCGv ca
, TCGv ca32
,
1622 bool add_ca
, bool compute_ca
,
1623 bool compute_ov
, bool compute_rc0
)
1627 if (compute_ca
|| compute_ov
) {
1628 t0
= tcg_temp_new();
1632 if (NARROW_MODE(ctx
)) {
1634 * Caution: a non-obvious corner case of the spec is that
1635 * we must produce the *entire* 64-bit addition, but
1636 * produce the carry into bit 32.
1638 TCGv t1
= tcg_temp_new();
1639 tcg_gen_xor_tl(t1
, arg1
, arg2
); /* add without carry */
1640 tcg_gen_add_tl(t0
, arg1
, arg2
);
1642 tcg_gen_add_tl(t0
, t0
, ca
);
1644 tcg_gen_xor_tl(ca
, t0
, t1
); /* bits changed w/ carry */
1646 tcg_gen_extract_tl(ca
, ca
, 32, 1);
1647 if (is_isa300(ctx
)) {
1648 tcg_gen_mov_tl(ca32
, ca
);
1651 TCGv zero
= tcg_const_tl(0);
1653 tcg_gen_add2_tl(t0
, ca
, arg1
, zero
, ca
, zero
);
1654 tcg_gen_add2_tl(t0
, ca
, t0
, ca
, arg2
, zero
);
1656 tcg_gen_add2_tl(t0
, ca
, arg1
, zero
, arg2
, zero
);
1658 gen_op_arith_compute_ca32(ctx
, t0
, arg1
, arg2
, ca32
, 0);
1659 tcg_temp_free(zero
);
1662 tcg_gen_add_tl(t0
, arg1
, arg2
);
1664 tcg_gen_add_tl(t0
, t0
, ca
);
1669 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 0);
1671 if (unlikely(compute_rc0
)) {
1672 gen_set_Rc0(ctx
, t0
);
1676 tcg_gen_mov_tl(ret
, t0
);
1680 /* Add functions with two operands */
1681 #define GEN_INT_ARITH_ADD(name, opc3, ca, add_ca, compute_ca, compute_ov) \
1682 static void glue(gen_, name)(DisasContext *ctx) \
1684 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
1685 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1687 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
1689 /* Add functions with one operand and one immediate */
1690 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, ca, \
1691 add_ca, compute_ca, compute_ov) \
1692 static void glue(gen_, name)(DisasContext *ctx) \
1694 TCGv t0 = tcg_const_tl(const_val); \
1695 gen_op_arith_add(ctx, cpu_gpr[rD(ctx->opcode)], \
1696 cpu_gpr[rA(ctx->opcode)], t0, \
1698 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
1699 tcg_temp_free(t0); \
1702 /* add add. addo addo. */
1703 GEN_INT_ARITH_ADD(add
, 0x08, cpu_ca
, 0, 0, 0)
1704 GEN_INT_ARITH_ADD(addo
, 0x18, cpu_ca
, 0, 0, 1)
1705 /* addc addc. addco addco. */
1706 GEN_INT_ARITH_ADD(addc
, 0x00, cpu_ca
, 0, 1, 0)
1707 GEN_INT_ARITH_ADD(addco
, 0x10, cpu_ca
, 0, 1, 1)
1708 /* adde adde. addeo addeo. */
1709 GEN_INT_ARITH_ADD(adde
, 0x04, cpu_ca
, 1, 1, 0)
1710 GEN_INT_ARITH_ADD(addeo
, 0x14, cpu_ca
, 1, 1, 1)
1711 /* addme addme. addmeo addmeo. */
1712 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, cpu_ca
, 1, 1, 0)
1713 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, cpu_ca
, 1, 1, 1)
1715 GEN_INT_ARITH_ADD(addex
, 0x05, cpu_ov
, 1, 1, 0);
1716 /* addze addze. addzeo addzeo.*/
1717 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, cpu_ca
, 1, 1, 0)
1718 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, cpu_ca
, 1, 1, 1)
1720 static inline void gen_op_addic(DisasContext
*ctx
, bool compute_rc0
)
1722 TCGv c
= tcg_const_tl(SIMM(ctx
->opcode
));
1723 gen_op_arith_add(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
1724 c
, cpu_ca
, cpu_ca32
, 0, 1, 0, compute_rc0
);
1728 static void gen_addic(DisasContext
*ctx
)
1730 gen_op_addic(ctx
, 0);
1733 static void gen_addic_(DisasContext
*ctx
)
1735 gen_op_addic(ctx
, 1);
1738 static inline void gen_op_arith_divw(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1739 TCGv arg2
, int sign
, int compute_ov
)
1741 TCGv_i32 t0
= tcg_temp_new_i32();
1742 TCGv_i32 t1
= tcg_temp_new_i32();
1743 TCGv_i32 t2
= tcg_temp_new_i32();
1744 TCGv_i32 t3
= tcg_temp_new_i32();
1746 tcg_gen_trunc_tl_i32(t0
, arg1
);
1747 tcg_gen_trunc_tl_i32(t1
, arg2
);
1749 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
1750 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, -1);
1751 tcg_gen_and_i32(t2
, t2
, t3
);
1752 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, 0);
1753 tcg_gen_or_i32(t2
, t2
, t3
);
1754 tcg_gen_movi_i32(t3
, 0);
1755 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1756 tcg_gen_div_i32(t3
, t0
, t1
);
1757 tcg_gen_extu_i32_tl(ret
, t3
);
1759 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t1
, 0);
1760 tcg_gen_movi_i32(t3
, 0);
1761 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1762 tcg_gen_divu_i32(t3
, t0
, t1
);
1763 tcg_gen_extu_i32_tl(ret
, t3
);
1766 tcg_gen_extu_i32_tl(cpu_ov
, t2
);
1767 if (is_isa300(ctx
)) {
1768 tcg_gen_extu_i32_tl(cpu_ov32
, t2
);
1770 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1772 tcg_temp_free_i32(t0
);
1773 tcg_temp_free_i32(t1
);
1774 tcg_temp_free_i32(t2
);
1775 tcg_temp_free_i32(t3
);
1777 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1778 gen_set_Rc0(ctx
, ret
);
1782 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
1783 static void glue(gen_, name)(DisasContext *ctx) \
1785 gen_op_arith_divw(ctx, cpu_gpr[rD(ctx->opcode)], \
1786 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1787 sign, compute_ov); \
1789 /* divwu divwu. divwuo divwuo. */
1790 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0);
1791 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1);
1792 /* divw divw. divwo divwo. */
1793 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0);
1794 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1);
1796 /* div[wd]eu[o][.] */
1797 #define GEN_DIVE(name, hlpr, compute_ov) \
1798 static void gen_##name(DisasContext *ctx) \
1800 TCGv_i32 t0 = tcg_const_i32(compute_ov); \
1801 gen_helper_##hlpr(cpu_gpr[rD(ctx->opcode)], cpu_env, \
1802 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], t0); \
1803 tcg_temp_free_i32(t0); \
1804 if (unlikely(Rc(ctx->opcode) != 0)) { \
1805 gen_set_Rc0(ctx, cpu_gpr[rD(ctx->opcode)]); \
1809 GEN_DIVE(divweu
, divweu
, 0);
1810 GEN_DIVE(divweuo
, divweu
, 1);
1811 GEN_DIVE(divwe
, divwe
, 0);
1812 GEN_DIVE(divweo
, divwe
, 1);
1814 #if defined(TARGET_PPC64)
1815 static inline void gen_op_arith_divd(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1816 TCGv arg2
, int sign
, int compute_ov
)
1818 TCGv_i64 t0
= tcg_temp_new_i64();
1819 TCGv_i64 t1
= tcg_temp_new_i64();
1820 TCGv_i64 t2
= tcg_temp_new_i64();
1821 TCGv_i64 t3
= tcg_temp_new_i64();
1823 tcg_gen_mov_i64(t0
, arg1
);
1824 tcg_gen_mov_i64(t1
, arg2
);
1826 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t0
, INT64_MIN
);
1827 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, -1);
1828 tcg_gen_and_i64(t2
, t2
, t3
);
1829 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, 0);
1830 tcg_gen_or_i64(t2
, t2
, t3
);
1831 tcg_gen_movi_i64(t3
, 0);
1832 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1833 tcg_gen_div_i64(ret
, t0
, t1
);
1835 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t1
, 0);
1836 tcg_gen_movi_i64(t3
, 0);
1837 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1838 tcg_gen_divu_i64(ret
, t0
, t1
);
1841 tcg_gen_mov_tl(cpu_ov
, t2
);
1842 if (is_isa300(ctx
)) {
1843 tcg_gen_mov_tl(cpu_ov32
, t2
);
1845 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
1847 tcg_temp_free_i64(t0
);
1848 tcg_temp_free_i64(t1
);
1849 tcg_temp_free_i64(t2
);
1850 tcg_temp_free_i64(t3
);
1852 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1853 gen_set_Rc0(ctx
, ret
);
1857 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
1858 static void glue(gen_, name)(DisasContext *ctx) \
1860 gen_op_arith_divd(ctx, cpu_gpr[rD(ctx->opcode)], \
1861 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1862 sign, compute_ov); \
1864 /* divdu divdu. divduo divduo. */
1865 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0);
1866 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1);
1867 /* divd divd. divdo divdo. */
1868 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0);
1869 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1);
1871 GEN_DIVE(divdeu
, divdeu
, 0);
1872 GEN_DIVE(divdeuo
, divdeu
, 1);
1873 GEN_DIVE(divde
, divde
, 0);
1874 GEN_DIVE(divdeo
, divde
, 1);
1877 static inline void gen_op_arith_modw(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1878 TCGv arg2
, int sign
)
1880 TCGv_i32 t0
= tcg_temp_new_i32();
1881 TCGv_i32 t1
= tcg_temp_new_i32();
1883 tcg_gen_trunc_tl_i32(t0
, arg1
);
1884 tcg_gen_trunc_tl_i32(t1
, arg2
);
1886 TCGv_i32 t2
= tcg_temp_new_i32();
1887 TCGv_i32 t3
= tcg_temp_new_i32();
1888 tcg_gen_setcondi_i32(TCG_COND_EQ
, t2
, t0
, INT_MIN
);
1889 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, -1);
1890 tcg_gen_and_i32(t2
, t2
, t3
);
1891 tcg_gen_setcondi_i32(TCG_COND_EQ
, t3
, t1
, 0);
1892 tcg_gen_or_i32(t2
, t2
, t3
);
1893 tcg_gen_movi_i32(t3
, 0);
1894 tcg_gen_movcond_i32(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1895 tcg_gen_rem_i32(t3
, t0
, t1
);
1896 tcg_gen_ext_i32_tl(ret
, t3
);
1897 tcg_temp_free_i32(t2
);
1898 tcg_temp_free_i32(t3
);
1900 TCGv_i32 t2
= tcg_const_i32(1);
1901 TCGv_i32 t3
= tcg_const_i32(0);
1902 tcg_gen_movcond_i32(TCG_COND_EQ
, t1
, t1
, t3
, t2
, t1
);
1903 tcg_gen_remu_i32(t3
, t0
, t1
);
1904 tcg_gen_extu_i32_tl(ret
, t3
);
1905 tcg_temp_free_i32(t2
);
1906 tcg_temp_free_i32(t3
);
1908 tcg_temp_free_i32(t0
);
1909 tcg_temp_free_i32(t1
);
1912 #define GEN_INT_ARITH_MODW(name, opc3, sign) \
1913 static void glue(gen_, name)(DisasContext *ctx) \
1915 gen_op_arith_modw(ctx, cpu_gpr[rD(ctx->opcode)], \
1916 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1920 GEN_INT_ARITH_MODW(moduw
, 0x08, 0);
1921 GEN_INT_ARITH_MODW(modsw
, 0x18, 1);
1923 #if defined(TARGET_PPC64)
1924 static inline void gen_op_arith_modd(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
1925 TCGv arg2
, int sign
)
1927 TCGv_i64 t0
= tcg_temp_new_i64();
1928 TCGv_i64 t1
= tcg_temp_new_i64();
1930 tcg_gen_mov_i64(t0
, arg1
);
1931 tcg_gen_mov_i64(t1
, arg2
);
1933 TCGv_i64 t2
= tcg_temp_new_i64();
1934 TCGv_i64 t3
= tcg_temp_new_i64();
1935 tcg_gen_setcondi_i64(TCG_COND_EQ
, t2
, t0
, INT64_MIN
);
1936 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, -1);
1937 tcg_gen_and_i64(t2
, t2
, t3
);
1938 tcg_gen_setcondi_i64(TCG_COND_EQ
, t3
, t1
, 0);
1939 tcg_gen_or_i64(t2
, t2
, t3
);
1940 tcg_gen_movi_i64(t3
, 0);
1941 tcg_gen_movcond_i64(TCG_COND_NE
, t1
, t2
, t3
, t2
, t1
);
1942 tcg_gen_rem_i64(ret
, t0
, t1
);
1943 tcg_temp_free_i64(t2
);
1944 tcg_temp_free_i64(t3
);
1946 TCGv_i64 t2
= tcg_const_i64(1);
1947 TCGv_i64 t3
= tcg_const_i64(0);
1948 tcg_gen_movcond_i64(TCG_COND_EQ
, t1
, t1
, t3
, t2
, t1
);
1949 tcg_gen_remu_i64(ret
, t0
, t1
);
1950 tcg_temp_free_i64(t2
);
1951 tcg_temp_free_i64(t3
);
1953 tcg_temp_free_i64(t0
);
1954 tcg_temp_free_i64(t1
);
1957 #define GEN_INT_ARITH_MODD(name, opc3, sign) \
1958 static void glue(gen_, name)(DisasContext *ctx) \
1960 gen_op_arith_modd(ctx, cpu_gpr[rD(ctx->opcode)], \
1961 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
1965 GEN_INT_ARITH_MODD(modud
, 0x08, 0);
1966 GEN_INT_ARITH_MODD(modsd
, 0x18, 1);
1970 static void gen_mulhw(DisasContext
*ctx
)
1972 TCGv_i32 t0
= tcg_temp_new_i32();
1973 TCGv_i32 t1
= tcg_temp_new_i32();
1975 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1976 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1977 tcg_gen_muls2_i32(t0
, t1
, t0
, t1
);
1978 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
1979 tcg_temp_free_i32(t0
);
1980 tcg_temp_free_i32(t1
);
1981 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1982 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
1986 /* mulhwu mulhwu. */
1987 static void gen_mulhwu(DisasContext
*ctx
)
1989 TCGv_i32 t0
= tcg_temp_new_i32();
1990 TCGv_i32 t1
= tcg_temp_new_i32();
1992 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
1993 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
1994 tcg_gen_mulu2_i32(t0
, t1
, t0
, t1
);
1995 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t1
);
1996 tcg_temp_free_i32(t0
);
1997 tcg_temp_free_i32(t1
);
1998 if (unlikely(Rc(ctx
->opcode
) != 0)) {
1999 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2004 static void gen_mullw(DisasContext
*ctx
)
2006 #if defined(TARGET_PPC64)
2008 t0
= tcg_temp_new_i64();
2009 t1
= tcg_temp_new_i64();
2010 tcg_gen_ext32s_tl(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
2011 tcg_gen_ext32s_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
2012 tcg_gen_mul_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
2016 tcg_gen_mul_i32(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
2017 cpu_gpr
[rB(ctx
->opcode
)]);
2019 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2020 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2024 /* mullwo mullwo. */
2025 static void gen_mullwo(DisasContext
*ctx
)
2027 TCGv_i32 t0
= tcg_temp_new_i32();
2028 TCGv_i32 t1
= tcg_temp_new_i32();
2030 tcg_gen_trunc_tl_i32(t0
, cpu_gpr
[rA(ctx
->opcode
)]);
2031 tcg_gen_trunc_tl_i32(t1
, cpu_gpr
[rB(ctx
->opcode
)]);
2032 tcg_gen_muls2_i32(t0
, t1
, t0
, t1
);
2033 #if defined(TARGET_PPC64)
2034 tcg_gen_concat_i32_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
, t1
);
2036 tcg_gen_mov_i32(cpu_gpr
[rD(ctx
->opcode
)], t0
);
2039 tcg_gen_sari_i32(t0
, t0
, 31);
2040 tcg_gen_setcond_i32(TCG_COND_NE
, t0
, t0
, t1
);
2041 tcg_gen_extu_i32_tl(cpu_ov
, t0
);
2042 if (is_isa300(ctx
)) {
2043 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
2045 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
2047 tcg_temp_free_i32(t0
);
2048 tcg_temp_free_i32(t1
);
2049 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2050 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2055 static void gen_mulli(DisasContext
*ctx
)
2057 tcg_gen_muli_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
2061 #if defined(TARGET_PPC64)
2063 static void gen_mulhd(DisasContext
*ctx
)
2065 TCGv lo
= tcg_temp_new();
2066 tcg_gen_muls2_tl(lo
, cpu_gpr
[rD(ctx
->opcode
)],
2067 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2069 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2070 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2074 /* mulhdu mulhdu. */
2075 static void gen_mulhdu(DisasContext
*ctx
)
2077 TCGv lo
= tcg_temp_new();
2078 tcg_gen_mulu2_tl(lo
, cpu_gpr
[rD(ctx
->opcode
)],
2079 cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2081 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2082 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2087 static void gen_mulld(DisasContext
*ctx
)
2089 tcg_gen_mul_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
2090 cpu_gpr
[rB(ctx
->opcode
)]);
2091 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2092 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2096 /* mulldo mulldo. */
2097 static void gen_mulldo(DisasContext
*ctx
)
2099 TCGv_i64 t0
= tcg_temp_new_i64();
2100 TCGv_i64 t1
= tcg_temp_new_i64();
2102 tcg_gen_muls2_i64(t0
, t1
, cpu_gpr
[rA(ctx
->opcode
)],
2103 cpu_gpr
[rB(ctx
->opcode
)]);
2104 tcg_gen_mov_i64(cpu_gpr
[rD(ctx
->opcode
)], t0
);
2106 tcg_gen_sari_i64(t0
, t0
, 63);
2107 tcg_gen_setcond_i64(TCG_COND_NE
, cpu_ov
, t0
, t1
);
2108 if (is_isa300(ctx
)) {
2109 tcg_gen_mov_tl(cpu_ov32
, cpu_ov
);
2111 tcg_gen_or_tl(cpu_so
, cpu_so
, cpu_ov
);
2113 tcg_temp_free_i64(t0
);
2114 tcg_temp_free_i64(t1
);
2116 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2117 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2122 /* Common subf function */
2123 static inline void gen_op_arith_subf(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
2124 TCGv arg2
, bool add_ca
, bool compute_ca
,
2125 bool compute_ov
, bool compute_rc0
)
2129 if (compute_ca
|| compute_ov
) {
2130 t0
= tcg_temp_new();
2134 /* dest = ~arg1 + arg2 [+ ca]. */
2135 if (NARROW_MODE(ctx
)) {
2137 * Caution: a non-obvious corner case of the spec is that
2138 * we must produce the *entire* 64-bit addition, but
2139 * produce the carry into bit 32.
2141 TCGv inv1
= tcg_temp_new();
2142 TCGv t1
= tcg_temp_new();
2143 tcg_gen_not_tl(inv1
, arg1
);
2145 tcg_gen_add_tl(t0
, arg2
, cpu_ca
);
2147 tcg_gen_addi_tl(t0
, arg2
, 1);
2149 tcg_gen_xor_tl(t1
, arg2
, inv1
); /* add without carry */
2150 tcg_gen_add_tl(t0
, t0
, inv1
);
2151 tcg_temp_free(inv1
);
2152 tcg_gen_xor_tl(cpu_ca
, t0
, t1
); /* bits changes w/ carry */
2154 tcg_gen_extract_tl(cpu_ca
, cpu_ca
, 32, 1);
2155 if (is_isa300(ctx
)) {
2156 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
2158 } else if (add_ca
) {
2159 TCGv zero
, inv1
= tcg_temp_new();
2160 tcg_gen_not_tl(inv1
, arg1
);
2161 zero
= tcg_const_tl(0);
2162 tcg_gen_add2_tl(t0
, cpu_ca
, arg2
, zero
, cpu_ca
, zero
);
2163 tcg_gen_add2_tl(t0
, cpu_ca
, t0
, cpu_ca
, inv1
, zero
);
2164 gen_op_arith_compute_ca32(ctx
, t0
, inv1
, arg2
, cpu_ca32
, 0);
2165 tcg_temp_free(zero
);
2166 tcg_temp_free(inv1
);
2168 tcg_gen_setcond_tl(TCG_COND_GEU
, cpu_ca
, arg2
, arg1
);
2169 tcg_gen_sub_tl(t0
, arg2
, arg1
);
2170 gen_op_arith_compute_ca32(ctx
, t0
, arg1
, arg2
, cpu_ca32
, 1);
2172 } else if (add_ca
) {
2174 * Since we're ignoring carry-out, we can simplify the
2175 * standard ~arg1 + arg2 + ca to arg2 - arg1 + ca - 1.
2177 tcg_gen_sub_tl(t0
, arg2
, arg1
);
2178 tcg_gen_add_tl(t0
, t0
, cpu_ca
);
2179 tcg_gen_subi_tl(t0
, t0
, 1);
2181 tcg_gen_sub_tl(t0
, arg2
, arg1
);
2185 gen_op_arith_compute_ov(ctx
, t0
, arg1
, arg2
, 1);
2187 if (unlikely(compute_rc0
)) {
2188 gen_set_Rc0(ctx
, t0
);
2192 tcg_gen_mov_tl(ret
, t0
);
2196 /* Sub functions with Two operands functions */
2197 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
2198 static void glue(gen_, name)(DisasContext *ctx) \
2200 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
2201 cpu_gpr[rA(ctx->opcode)], cpu_gpr[rB(ctx->opcode)], \
2202 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
2204 /* Sub functions with one operand and one immediate */
2205 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
2206 add_ca, compute_ca, compute_ov) \
2207 static void glue(gen_, name)(DisasContext *ctx) \
2209 TCGv t0 = tcg_const_tl(const_val); \
2210 gen_op_arith_subf(ctx, cpu_gpr[rD(ctx->opcode)], \
2211 cpu_gpr[rA(ctx->opcode)], t0, \
2212 add_ca, compute_ca, compute_ov, Rc(ctx->opcode)); \
2213 tcg_temp_free(t0); \
2215 /* subf subf. subfo subfo. */
2216 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
2217 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
2218 /* subfc subfc. subfco subfco. */
2219 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
2220 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
2221 /* subfe subfe. subfeo subfo. */
2222 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
2223 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
2224 /* subfme subfme. subfmeo subfmeo. */
2225 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
2226 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
2227 /* subfze subfze. subfzeo subfzeo.*/
2228 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
2229 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
2232 static void gen_subfic(DisasContext
*ctx
)
2234 TCGv c
= tcg_const_tl(SIMM(ctx
->opcode
));
2235 gen_op_arith_subf(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
2240 /* neg neg. nego nego. */
2241 static inline void gen_op_arith_neg(DisasContext
*ctx
, bool compute_ov
)
2243 TCGv zero
= tcg_const_tl(0);
2244 gen_op_arith_subf(ctx
, cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)],
2245 zero
, 0, 0, compute_ov
, Rc(ctx
->opcode
));
2246 tcg_temp_free(zero
);
2249 static void gen_neg(DisasContext
*ctx
)
2251 tcg_gen_neg_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
2252 if (unlikely(Rc(ctx
->opcode
))) {
2253 gen_set_Rc0(ctx
, cpu_gpr
[rD(ctx
->opcode
)]);
2257 static void gen_nego(DisasContext
*ctx
)
2259 gen_op_arith_neg(ctx
, 1);
2262 /*** Integer logical ***/
2263 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
2264 static void glue(gen_, name)(DisasContext *ctx) \
2266 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)], \
2267 cpu_gpr[rB(ctx->opcode)]); \
2268 if (unlikely(Rc(ctx->opcode) != 0)) \
2269 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
2272 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
2273 static void glue(gen_, name)(DisasContext *ctx) \
2275 tcg_op(cpu_gpr[rA(ctx->opcode)], cpu_gpr[rS(ctx->opcode)]); \
2276 if (unlikely(Rc(ctx->opcode) != 0)) \
2277 gen_set_Rc0(ctx, cpu_gpr[rA(ctx->opcode)]); \
2281 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
);
2283 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
);
2286 static void gen_andi_(DisasContext
*ctx
)
2288 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
2290 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2294 static void gen_andis_(DisasContext
*ctx
)
2296 tcg_gen_andi_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
2297 UIMM(ctx
->opcode
) << 16);
2298 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2302 static void gen_cntlzw(DisasContext
*ctx
)
2304 TCGv_i32 t
= tcg_temp_new_i32();
2306 tcg_gen_trunc_tl_i32(t
, cpu_gpr
[rS(ctx
->opcode
)]);
2307 tcg_gen_clzi_i32(t
, t
, 32);
2308 tcg_gen_extu_i32_tl(cpu_gpr
[rA(ctx
->opcode
)], t
);
2309 tcg_temp_free_i32(t
);
2311 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2312 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2317 static void gen_cnttzw(DisasContext
*ctx
)
2319 TCGv_i32 t
= tcg_temp_new_i32();
2321 tcg_gen_trunc_tl_i32(t
, cpu_gpr
[rS(ctx
->opcode
)]);
2322 tcg_gen_ctzi_i32(t
, t
, 32);
2323 tcg_gen_extu_i32_tl(cpu_gpr
[rA(ctx
->opcode
)], t
);
2324 tcg_temp_free_i32(t
);
2326 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2327 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2332 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
);
2333 /* extsb & extsb. */
2334 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
);
2335 /* extsh & extsh. */
2336 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
);
2338 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
);
2340 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
);
2342 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
2343 static void gen_pause(DisasContext
*ctx
)
2345 TCGv_i32 t0
= tcg_const_i32(0);
2346 tcg_gen_st_i32(t0
, cpu_env
,
2347 -offsetof(PowerPCCPU
, env
) + offsetof(CPUState
, halted
));
2348 tcg_temp_free_i32(t0
);
2350 /* Stop translation, this gives other CPUs a chance to run */
2351 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
2353 #endif /* defined(TARGET_PPC64) */
2356 static void gen_or(DisasContext
*ctx
)
2360 rs
= rS(ctx
->opcode
);
2361 ra
= rA(ctx
->opcode
);
2362 rb
= rB(ctx
->opcode
);
2363 /* Optimisation for mr. ri case */
2364 if (rs
!= ra
|| rs
!= rb
) {
2366 tcg_gen_or_tl(cpu_gpr
[ra
], cpu_gpr
[rs
], cpu_gpr
[rb
]);
2368 tcg_gen_mov_tl(cpu_gpr
[ra
], cpu_gpr
[rs
]);
2370 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2371 gen_set_Rc0(ctx
, cpu_gpr
[ra
]);
2373 } else if (unlikely(Rc(ctx
->opcode
) != 0)) {
2374 gen_set_Rc0(ctx
, cpu_gpr
[rs
]);
2375 #if defined(TARGET_PPC64)
2376 } else if (rs
!= 0) { /* 0 is nop */
2381 /* Set process priority to low */
2385 /* Set process priority to medium-low */
2389 /* Set process priority to normal */
2392 #if !defined(CONFIG_USER_ONLY)
2395 /* Set process priority to very low */
2401 /* Set process priority to medium-hight */
2407 /* Set process priority to high */
2412 if (ctx
->hv
&& !ctx
->pr
) {
2413 /* Set process priority to very high */
2422 TCGv t0
= tcg_temp_new();
2423 gen_load_spr(t0
, SPR_PPR
);
2424 tcg_gen_andi_tl(t0
, t0
, ~0x001C000000000000ULL
);
2425 tcg_gen_ori_tl(t0
, t0
, ((uint64_t)prio
) << 50);
2426 gen_store_spr(SPR_PPR
, t0
);
2429 #if !defined(CONFIG_USER_ONLY)
2431 * Pause out of TCG otherwise spin loops with smt_low eat too
2432 * much CPU and the kernel hangs. This applies to all
2433 * encodings other than no-op, e.g., miso(rs=26), yield(27),
2434 * mdoio(29), mdoom(30), and all currently undefined.
2442 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
);
2445 static void gen_xor(DisasContext
*ctx
)
2447 /* Optimisation for "set to zero" case */
2448 if (rS(ctx
->opcode
) != rB(ctx
->opcode
)) {
2449 tcg_gen_xor_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
2450 cpu_gpr
[rB(ctx
->opcode
)]);
2452 tcg_gen_movi_tl(cpu_gpr
[rA(ctx
->opcode
)], 0);
2454 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2455 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2460 static void gen_ori(DisasContext
*ctx
)
2462 target_ulong uimm
= UIMM(ctx
->opcode
);
2464 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
2467 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
2471 static void gen_oris(DisasContext
*ctx
)
2473 target_ulong uimm
= UIMM(ctx
->opcode
);
2475 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
2479 tcg_gen_ori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
2484 static void gen_xori(DisasContext
*ctx
)
2486 target_ulong uimm
= UIMM(ctx
->opcode
);
2488 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
2492 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], uimm
);
2496 static void gen_xoris(DisasContext
*ctx
)
2498 target_ulong uimm
= UIMM(ctx
->opcode
);
2500 if (rS(ctx
->opcode
) == rA(ctx
->opcode
) && uimm
== 0) {
2504 tcg_gen_xori_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)],
2508 /* popcntb : PowerPC 2.03 specification */
2509 static void gen_popcntb(DisasContext
*ctx
)
2511 gen_helper_popcntb(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2514 static void gen_popcntw(DisasContext
*ctx
)
2516 #if defined(TARGET_PPC64)
2517 gen_helper_popcntw(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2519 tcg_gen_ctpop_i32(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2523 #if defined(TARGET_PPC64)
2524 /* popcntd: PowerPC 2.06 specification */
2525 static void gen_popcntd(DisasContext
*ctx
)
2527 tcg_gen_ctpop_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
2531 /* prtyw: PowerPC 2.05 specification */
2532 static void gen_prtyw(DisasContext
*ctx
)
2534 TCGv ra
= cpu_gpr
[rA(ctx
->opcode
)];
2535 TCGv rs
= cpu_gpr
[rS(ctx
->opcode
)];
2536 TCGv t0
= tcg_temp_new();
2537 tcg_gen_shri_tl(t0
, rs
, 16);
2538 tcg_gen_xor_tl(ra
, rs
, t0
);
2539 tcg_gen_shri_tl(t0
, ra
, 8);
2540 tcg_gen_xor_tl(ra
, ra
, t0
);
2541 tcg_gen_andi_tl(ra
, ra
, (target_ulong
)0x100000001ULL
);
2545 #if defined(TARGET_PPC64)
2546 /* prtyd: PowerPC 2.05 specification */
2547 static void gen_prtyd(DisasContext
*ctx
)
2549 TCGv ra
= cpu_gpr
[rA(ctx
->opcode
)];
2550 TCGv rs
= cpu_gpr
[rS(ctx
->opcode
)];
2551 TCGv t0
= tcg_temp_new();
2552 tcg_gen_shri_tl(t0
, rs
, 32);
2553 tcg_gen_xor_tl(ra
, rs
, t0
);
2554 tcg_gen_shri_tl(t0
, ra
, 16);
2555 tcg_gen_xor_tl(ra
, ra
, t0
);
2556 tcg_gen_shri_tl(t0
, ra
, 8);
2557 tcg_gen_xor_tl(ra
, ra
, t0
);
2558 tcg_gen_andi_tl(ra
, ra
, 1);
2563 #if defined(TARGET_PPC64)
2565 static void gen_bpermd(DisasContext
*ctx
)
2567 gen_helper_bpermd(cpu_gpr
[rA(ctx
->opcode
)],
2568 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2572 #if defined(TARGET_PPC64)
2573 /* extsw & extsw. */
2574 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
);
2577 static void gen_cntlzd(DisasContext
*ctx
)
2579 tcg_gen_clzi_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], 64);
2580 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2581 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2586 static void gen_cnttzd(DisasContext
*ctx
)
2588 tcg_gen_ctzi_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)], 64);
2589 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2590 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2595 static void gen_darn(DisasContext
*ctx
)
2597 int l
= L(ctx
->opcode
);
2600 tcg_gen_movi_i64(cpu_gpr
[rD(ctx
->opcode
)], -1);
2602 gen_icount_io_start(ctx
);
2604 gen_helper_darn32(cpu_gpr
[rD(ctx
->opcode
)]);
2606 /* Return 64-bit random for both CRN and RRN */
2607 gen_helper_darn64(cpu_gpr
[rD(ctx
->opcode
)]);
2613 /*** Integer rotate ***/
2615 /* rlwimi & rlwimi. */
2616 static void gen_rlwimi(DisasContext
*ctx
)
2618 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2619 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2620 uint32_t sh
= SH(ctx
->opcode
);
2621 uint32_t mb
= MB(ctx
->opcode
);
2622 uint32_t me
= ME(ctx
->opcode
);
2624 if (sh
== (31 - me
) && mb
<= me
) {
2625 tcg_gen_deposit_tl(t_ra
, t_ra
, t_rs
, sh
, me
- mb
+ 1);
2628 bool mask_in_32b
= true;
2631 #if defined(TARGET_PPC64)
2635 mask
= MASK(mb
, me
);
2637 #if defined(TARGET_PPC64)
2638 if (mask
> 0xffffffffu
) {
2639 mask_in_32b
= false;
2642 t1
= tcg_temp_new();
2644 TCGv_i32 t0
= tcg_temp_new_i32();
2645 tcg_gen_trunc_tl_i32(t0
, t_rs
);
2646 tcg_gen_rotli_i32(t0
, t0
, sh
);
2647 tcg_gen_extu_i32_tl(t1
, t0
);
2648 tcg_temp_free_i32(t0
);
2650 #if defined(TARGET_PPC64)
2651 tcg_gen_deposit_i64(t1
, t_rs
, t_rs
, 32, 32);
2652 tcg_gen_rotli_i64(t1
, t1
, sh
);
2654 g_assert_not_reached();
2658 tcg_gen_andi_tl(t1
, t1
, mask
);
2659 tcg_gen_andi_tl(t_ra
, t_ra
, ~mask
);
2660 tcg_gen_or_tl(t_ra
, t_ra
, t1
);
2663 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2664 gen_set_Rc0(ctx
, t_ra
);
2668 /* rlwinm & rlwinm. */
2669 static void gen_rlwinm(DisasContext
*ctx
)
2671 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2672 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2673 int sh
= SH(ctx
->opcode
);
2674 int mb
= MB(ctx
->opcode
);
2675 int me
= ME(ctx
->opcode
);
2676 int len
= me
- mb
+ 1;
2677 int rsh
= (32 - sh
) & 31;
2679 if (sh
!= 0 && len
> 0 && me
== (31 - sh
)) {
2680 tcg_gen_deposit_z_tl(t_ra
, t_rs
, sh
, len
);
2681 } else if (me
== 31 && rsh
+ len
<= 32) {
2682 tcg_gen_extract_tl(t_ra
, t_rs
, rsh
, len
);
2685 bool mask_in_32b
= true;
2686 #if defined(TARGET_PPC64)
2690 mask
= MASK(mb
, me
);
2691 #if defined(TARGET_PPC64)
2692 if (mask
> 0xffffffffu
) {
2693 mask_in_32b
= false;
2698 tcg_gen_andi_tl(t_ra
, t_rs
, mask
);
2700 TCGv_i32 t0
= tcg_temp_new_i32();
2701 tcg_gen_trunc_tl_i32(t0
, t_rs
);
2702 tcg_gen_rotli_i32(t0
, t0
, sh
);
2703 tcg_gen_andi_i32(t0
, t0
, mask
);
2704 tcg_gen_extu_i32_tl(t_ra
, t0
);
2705 tcg_temp_free_i32(t0
);
2708 #if defined(TARGET_PPC64)
2709 tcg_gen_deposit_i64(t_ra
, t_rs
, t_rs
, 32, 32);
2710 tcg_gen_rotli_i64(t_ra
, t_ra
, sh
);
2711 tcg_gen_andi_i64(t_ra
, t_ra
, mask
);
2713 g_assert_not_reached();
2717 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2718 gen_set_Rc0(ctx
, t_ra
);
2722 /* rlwnm & rlwnm. */
2723 static void gen_rlwnm(DisasContext
*ctx
)
2725 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2726 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2727 TCGv t_rb
= cpu_gpr
[rB(ctx
->opcode
)];
2728 uint32_t mb
= MB(ctx
->opcode
);
2729 uint32_t me
= ME(ctx
->opcode
);
2731 bool mask_in_32b
= true;
2733 #if defined(TARGET_PPC64)
2737 mask
= MASK(mb
, me
);
2739 #if defined(TARGET_PPC64)
2740 if (mask
> 0xffffffffu
) {
2741 mask_in_32b
= false;
2745 TCGv_i32 t0
= tcg_temp_new_i32();
2746 TCGv_i32 t1
= tcg_temp_new_i32();
2747 tcg_gen_trunc_tl_i32(t0
, t_rb
);
2748 tcg_gen_trunc_tl_i32(t1
, t_rs
);
2749 tcg_gen_andi_i32(t0
, t0
, 0x1f);
2750 tcg_gen_rotl_i32(t1
, t1
, t0
);
2751 tcg_gen_extu_i32_tl(t_ra
, t1
);
2752 tcg_temp_free_i32(t0
);
2753 tcg_temp_free_i32(t1
);
2755 #if defined(TARGET_PPC64)
2756 TCGv_i64 t0
= tcg_temp_new_i64();
2757 tcg_gen_andi_i64(t0
, t_rb
, 0x1f);
2758 tcg_gen_deposit_i64(t_ra
, t_rs
, t_rs
, 32, 32);
2759 tcg_gen_rotl_i64(t_ra
, t_ra
, t0
);
2760 tcg_temp_free_i64(t0
);
2762 g_assert_not_reached();
2766 tcg_gen_andi_tl(t_ra
, t_ra
, mask
);
2768 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2769 gen_set_Rc0(ctx
, t_ra
);
2773 #if defined(TARGET_PPC64)
2774 #define GEN_PPC64_R2(name, opc1, opc2) \
2775 static void glue(gen_, name##0)(DisasContext *ctx) \
2777 gen_##name(ctx, 0); \
2780 static void glue(gen_, name##1)(DisasContext *ctx) \
2782 gen_##name(ctx, 1); \
2784 #define GEN_PPC64_R4(name, opc1, opc2) \
2785 static void glue(gen_, name##0)(DisasContext *ctx) \
2787 gen_##name(ctx, 0, 0); \
2790 static void glue(gen_, name##1)(DisasContext *ctx) \
2792 gen_##name(ctx, 0, 1); \
2795 static void glue(gen_, name##2)(DisasContext *ctx) \
2797 gen_##name(ctx, 1, 0); \
2800 static void glue(gen_, name##3)(DisasContext *ctx) \
2802 gen_##name(ctx, 1, 1); \
2805 static void gen_rldinm(DisasContext
*ctx
, int mb
, int me
, int sh
)
2807 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2808 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2809 int len
= me
- mb
+ 1;
2810 int rsh
= (64 - sh
) & 63;
2812 if (sh
!= 0 && len
> 0 && me
== (63 - sh
)) {
2813 tcg_gen_deposit_z_tl(t_ra
, t_rs
, sh
, len
);
2814 } else if (me
== 63 && rsh
+ len
<= 64) {
2815 tcg_gen_extract_tl(t_ra
, t_rs
, rsh
, len
);
2817 tcg_gen_rotli_tl(t_ra
, t_rs
, sh
);
2818 tcg_gen_andi_tl(t_ra
, t_ra
, MASK(mb
, me
));
2820 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2821 gen_set_Rc0(ctx
, t_ra
);
2825 /* rldicl - rldicl. */
2826 static inline void gen_rldicl(DisasContext
*ctx
, int mbn
, int shn
)
2830 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2831 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2832 gen_rldinm(ctx
, mb
, 63, sh
);
2834 GEN_PPC64_R4(rldicl
, 0x1E, 0x00);
2836 /* rldicr - rldicr. */
2837 static inline void gen_rldicr(DisasContext
*ctx
, int men
, int shn
)
2841 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2842 me
= MB(ctx
->opcode
) | (men
<< 5);
2843 gen_rldinm(ctx
, 0, me
, sh
);
2845 GEN_PPC64_R4(rldicr
, 0x1E, 0x02);
2847 /* rldic - rldic. */
2848 static inline void gen_rldic(DisasContext
*ctx
, int mbn
, int shn
)
2852 sh
= SH(ctx
->opcode
) | (shn
<< 5);
2853 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2854 gen_rldinm(ctx
, mb
, 63 - sh
, sh
);
2856 GEN_PPC64_R4(rldic
, 0x1E, 0x04);
2858 static void gen_rldnm(DisasContext
*ctx
, int mb
, int me
)
2860 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2861 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2862 TCGv t_rb
= cpu_gpr
[rB(ctx
->opcode
)];
2865 t0
= tcg_temp_new();
2866 tcg_gen_andi_tl(t0
, t_rb
, 0x3f);
2867 tcg_gen_rotl_tl(t_ra
, t_rs
, t0
);
2870 tcg_gen_andi_tl(t_ra
, t_ra
, MASK(mb
, me
));
2871 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2872 gen_set_Rc0(ctx
, t_ra
);
2876 /* rldcl - rldcl. */
2877 static inline void gen_rldcl(DisasContext
*ctx
, int mbn
)
2881 mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2882 gen_rldnm(ctx
, mb
, 63);
2884 GEN_PPC64_R2(rldcl
, 0x1E, 0x08);
2886 /* rldcr - rldcr. */
2887 static inline void gen_rldcr(DisasContext
*ctx
, int men
)
2891 me
= MB(ctx
->opcode
) | (men
<< 5);
2892 gen_rldnm(ctx
, 0, me
);
2894 GEN_PPC64_R2(rldcr
, 0x1E, 0x09);
2896 /* rldimi - rldimi. */
2897 static void gen_rldimi(DisasContext
*ctx
, int mbn
, int shn
)
2899 TCGv t_ra
= cpu_gpr
[rA(ctx
->opcode
)];
2900 TCGv t_rs
= cpu_gpr
[rS(ctx
->opcode
)];
2901 uint32_t sh
= SH(ctx
->opcode
) | (shn
<< 5);
2902 uint32_t mb
= MB(ctx
->opcode
) | (mbn
<< 5);
2903 uint32_t me
= 63 - sh
;
2906 tcg_gen_deposit_tl(t_ra
, t_ra
, t_rs
, sh
, me
- mb
+ 1);
2908 target_ulong mask
= MASK(mb
, me
);
2909 TCGv t1
= tcg_temp_new();
2911 tcg_gen_rotli_tl(t1
, t_rs
, sh
);
2912 tcg_gen_andi_tl(t1
, t1
, mask
);
2913 tcg_gen_andi_tl(t_ra
, t_ra
, ~mask
);
2914 tcg_gen_or_tl(t_ra
, t_ra
, t1
);
2917 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2918 gen_set_Rc0(ctx
, t_ra
);
2921 GEN_PPC64_R4(rldimi
, 0x1E, 0x06);
2924 /*** Integer shift ***/
2927 static void gen_slw(DisasContext
*ctx
)
2931 t0
= tcg_temp_new();
2932 /* AND rS with a mask that is 0 when rB >= 0x20 */
2933 #if defined(TARGET_PPC64)
2934 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
2935 tcg_gen_sari_tl(t0
, t0
, 0x3f);
2937 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
2938 tcg_gen_sari_tl(t0
, t0
, 0x1f);
2940 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
2941 t1
= tcg_temp_new();
2942 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
2943 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
2946 tcg_gen_ext32u_tl(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)]);
2947 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2948 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2953 static void gen_sraw(DisasContext
*ctx
)
2955 gen_helper_sraw(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
2956 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
2957 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2958 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
2962 /* srawi & srawi. */
2963 static void gen_srawi(DisasContext
*ctx
)
2965 int sh
= SH(ctx
->opcode
);
2966 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
2967 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
2969 tcg_gen_ext32s_tl(dst
, src
);
2970 tcg_gen_movi_tl(cpu_ca
, 0);
2971 if (is_isa300(ctx
)) {
2972 tcg_gen_movi_tl(cpu_ca32
, 0);
2976 tcg_gen_ext32s_tl(dst
, src
);
2977 tcg_gen_andi_tl(cpu_ca
, dst
, (1ULL << sh
) - 1);
2978 t0
= tcg_temp_new();
2979 tcg_gen_sari_tl(t0
, dst
, TARGET_LONG_BITS
- 1);
2980 tcg_gen_and_tl(cpu_ca
, cpu_ca
, t0
);
2982 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_ca
, cpu_ca
, 0);
2983 if (is_isa300(ctx
)) {
2984 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
2986 tcg_gen_sari_tl(dst
, dst
, sh
);
2988 if (unlikely(Rc(ctx
->opcode
) != 0)) {
2989 gen_set_Rc0(ctx
, dst
);
2994 static void gen_srw(DisasContext
*ctx
)
2998 t0
= tcg_temp_new();
2999 /* AND rS with a mask that is 0 when rB >= 0x20 */
3000 #if defined(TARGET_PPC64)
3001 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x3a);
3002 tcg_gen_sari_tl(t0
, t0
, 0x3f);
3004 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x1a);
3005 tcg_gen_sari_tl(t0
, t0
, 0x1f);
3007 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3008 tcg_gen_ext32u_tl(t0
, t0
);
3009 t1
= tcg_temp_new();
3010 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x1f);
3011 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3014 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3015 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
3019 #if defined(TARGET_PPC64)
3021 static void gen_sld(DisasContext
*ctx
)
3025 t0
= tcg_temp_new();
3026 /* AND rS with a mask that is 0 when rB >= 0x40 */
3027 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
3028 tcg_gen_sari_tl(t0
, t0
, 0x3f);
3029 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3030 t1
= tcg_temp_new();
3031 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
3032 tcg_gen_shl_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3035 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3036 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
3041 static void gen_srad(DisasContext
*ctx
)
3043 gen_helper_srad(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
3044 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
3045 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3046 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
3049 /* sradi & sradi. */
3050 static inline void gen_sradi(DisasContext
*ctx
, int n
)
3052 int sh
= SH(ctx
->opcode
) + (n
<< 5);
3053 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
3054 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
3056 tcg_gen_mov_tl(dst
, src
);
3057 tcg_gen_movi_tl(cpu_ca
, 0);
3058 if (is_isa300(ctx
)) {
3059 tcg_gen_movi_tl(cpu_ca32
, 0);
3063 tcg_gen_andi_tl(cpu_ca
, src
, (1ULL << sh
) - 1);
3064 t0
= tcg_temp_new();
3065 tcg_gen_sari_tl(t0
, src
, TARGET_LONG_BITS
- 1);
3066 tcg_gen_and_tl(cpu_ca
, cpu_ca
, t0
);
3068 tcg_gen_setcondi_tl(TCG_COND_NE
, cpu_ca
, cpu_ca
, 0);
3069 if (is_isa300(ctx
)) {
3070 tcg_gen_mov_tl(cpu_ca32
, cpu_ca
);
3072 tcg_gen_sari_tl(dst
, src
, sh
);
3074 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3075 gen_set_Rc0(ctx
, dst
);
3079 static void gen_sradi0(DisasContext
*ctx
)
3084 static void gen_sradi1(DisasContext
*ctx
)
3089 /* extswsli & extswsli. */
3090 static inline void gen_extswsli(DisasContext
*ctx
, int n
)
3092 int sh
= SH(ctx
->opcode
) + (n
<< 5);
3093 TCGv dst
= cpu_gpr
[rA(ctx
->opcode
)];
3094 TCGv src
= cpu_gpr
[rS(ctx
->opcode
)];
3096 tcg_gen_ext32s_tl(dst
, src
);
3097 tcg_gen_shli_tl(dst
, dst
, sh
);
3098 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3099 gen_set_Rc0(ctx
, dst
);
3103 static void gen_extswsli0(DisasContext
*ctx
)
3105 gen_extswsli(ctx
, 0);
3108 static void gen_extswsli1(DisasContext
*ctx
)
3110 gen_extswsli(ctx
, 1);
3114 static void gen_srd(DisasContext
*ctx
)
3118 t0
= tcg_temp_new();
3119 /* AND rS with a mask that is 0 when rB >= 0x40 */
3120 tcg_gen_shli_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 0x39);
3121 tcg_gen_sari_tl(t0
, t0
, 0x3f);
3122 tcg_gen_andc_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], t0
);
3123 t1
= tcg_temp_new();
3124 tcg_gen_andi_tl(t1
, cpu_gpr
[rB(ctx
->opcode
)], 0x3f);
3125 tcg_gen_shr_tl(cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
3128 if (unlikely(Rc(ctx
->opcode
) != 0)) {
3129 gen_set_Rc0(ctx
, cpu_gpr
[rA(ctx
->opcode
)]);
3134 /*** Addressing modes ***/
3135 /* Register indirect with immediate index : EA = (rA|0) + SIMM */
3136 static inline void gen_addr_imm_index(DisasContext
*ctx
, TCGv EA
,
3139 target_long simm
= SIMM(ctx
->opcode
);
3142 if (rA(ctx
->opcode
) == 0) {
3143 if (NARROW_MODE(ctx
)) {
3144 simm
= (uint32_t)simm
;
3146 tcg_gen_movi_tl(EA
, simm
);
3147 } else if (likely(simm
!= 0)) {
3148 tcg_gen_addi_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], simm
);
3149 if (NARROW_MODE(ctx
)) {
3150 tcg_gen_ext32u_tl(EA
, EA
);
3153 if (NARROW_MODE(ctx
)) {
3154 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
3156 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
3161 static inline void gen_addr_reg_index(DisasContext
*ctx
, TCGv EA
)
3163 if (rA(ctx
->opcode
) == 0) {
3164 if (NARROW_MODE(ctx
)) {
3165 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
3167 tcg_gen_mov_tl(EA
, cpu_gpr
[rB(ctx
->opcode
)]);
3170 tcg_gen_add_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
3171 if (NARROW_MODE(ctx
)) {
3172 tcg_gen_ext32u_tl(EA
, EA
);
3177 static inline void gen_addr_register(DisasContext
*ctx
, TCGv EA
)
3179 if (rA(ctx
->opcode
) == 0) {
3180 tcg_gen_movi_tl(EA
, 0);
3181 } else if (NARROW_MODE(ctx
)) {
3182 tcg_gen_ext32u_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
3184 tcg_gen_mov_tl(EA
, cpu_gpr
[rA(ctx
->opcode
)]);
3188 static inline void gen_addr_add(DisasContext
*ctx
, TCGv ret
, TCGv arg1
,
3191 tcg_gen_addi_tl(ret
, arg1
, val
);
3192 if (NARROW_MODE(ctx
)) {
3193 tcg_gen_ext32u_tl(ret
, ret
);
3197 static inline void gen_align_no_le(DisasContext
*ctx
)
3199 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
,
3200 (ctx
->opcode
& 0x03FF0000) | POWERPC_EXCP_ALIGN_LE
);
3203 static TCGv
do_ea_calc(DisasContext
*ctx
, int ra
, TCGv displ
)
3205 TCGv ea
= tcg_temp_new();
3207 tcg_gen_add_tl(ea
, cpu_gpr
[ra
], displ
);
3209 tcg_gen_mov_tl(ea
, displ
);
3211 if (NARROW_MODE(ctx
)) {
3212 tcg_gen_ext32u_tl(ea
, ea
);
3217 /*** Integer load ***/
3218 #define DEF_MEMOP(op) ((op) | ctx->default_tcg_memop_mask)
3219 #define BSWAP_MEMOP(op) ((op) | (ctx->default_tcg_memop_mask ^ MO_BSWAP))
3221 #define GEN_QEMU_LOAD_TL(ldop, op) \
3222 static void glue(gen_qemu_, ldop)(DisasContext *ctx, \
3226 tcg_gen_qemu_ld_tl(val, addr, ctx->mem_idx, op); \
3229 GEN_QEMU_LOAD_TL(ld8u
, DEF_MEMOP(MO_UB
))
3230 GEN_QEMU_LOAD_TL(ld16u
, DEF_MEMOP(MO_UW
))
3231 GEN_QEMU_LOAD_TL(ld16s
, DEF_MEMOP(MO_SW
))
3232 GEN_QEMU_LOAD_TL(ld32u
, DEF_MEMOP(MO_UL
))
3233 GEN_QEMU_LOAD_TL(ld32s
, DEF_MEMOP(MO_SL
))
3235 GEN_QEMU_LOAD_TL(ld16ur
, BSWAP_MEMOP(MO_UW
))
3236 GEN_QEMU_LOAD_TL(ld32ur
, BSWAP_MEMOP(MO_UL
))
3238 #define GEN_QEMU_LOAD_64(ldop, op) \
3239 static void glue(gen_qemu_, glue(ldop, _i64))(DisasContext *ctx, \
3243 tcg_gen_qemu_ld_i64(val, addr, ctx->mem_idx, op); \
3246 GEN_QEMU_LOAD_64(ld8u
, DEF_MEMOP(MO_UB
))
3247 GEN_QEMU_LOAD_64(ld16u
, DEF_MEMOP(MO_UW
))
3248 GEN_QEMU_LOAD_64(ld32u
, DEF_MEMOP(MO_UL
))
3249 GEN_QEMU_LOAD_64(ld32s
, DEF_MEMOP(MO_SL
))
3250 GEN_QEMU_LOAD_64(ld64
, DEF_MEMOP(MO_UQ
))
3252 #if defined(TARGET_PPC64)
3253 GEN_QEMU_LOAD_64(ld64ur
, BSWAP_MEMOP(MO_UQ
))
3256 #define GEN_QEMU_STORE_TL(stop, op) \
3257 static void glue(gen_qemu_, stop)(DisasContext *ctx, \
3261 tcg_gen_qemu_st_tl(val, addr, ctx->mem_idx, op); \
3264 #if defined(TARGET_PPC64) || !defined(CONFIG_USER_ONLY)
3265 GEN_QEMU_STORE_TL(st8
, DEF_MEMOP(MO_UB
))
3267 GEN_QEMU_STORE_TL(st16
, DEF_MEMOP(MO_UW
))
3268 GEN_QEMU_STORE_TL(st32
, DEF_MEMOP(MO_UL
))
3270 GEN_QEMU_STORE_TL(st16r
, BSWAP_MEMOP(MO_UW
))
3271 GEN_QEMU_STORE_TL(st32r
, BSWAP_MEMOP(MO_UL
))
3273 #define GEN_QEMU_STORE_64(stop, op) \
3274 static void glue(gen_qemu_, glue(stop, _i64))(DisasContext *ctx, \
3278 tcg_gen_qemu_st_i64(val, addr, ctx->mem_idx, op); \
3281 GEN_QEMU_STORE_64(st8
, DEF_MEMOP(MO_UB
))
3282 GEN_QEMU_STORE_64(st16
, DEF_MEMOP(MO_UW
))
3283 GEN_QEMU_STORE_64(st32
, DEF_MEMOP(MO_UL
))
3284 GEN_QEMU_STORE_64(st64
, DEF_MEMOP(MO_UQ
))
3286 #if defined(TARGET_PPC64)
3287 GEN_QEMU_STORE_64(st64r
, BSWAP_MEMOP(MO_UQ
))
3290 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
3291 static void glue(gen_, name##x)(DisasContext *ctx) \
3295 gen_set_access_type(ctx, ACCESS_INT); \
3296 EA = tcg_temp_new(); \
3297 gen_addr_reg_index(ctx, EA); \
3298 gen_qemu_##ldop(ctx, cpu_gpr[rD(ctx->opcode)], EA); \
3299 tcg_temp_free(EA); \
3302 #define GEN_LDX(name, ldop, opc2, opc3, type) \
3303 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_NONE)
3305 #define GEN_LDX_HVRM(name, ldop, opc2, opc3, type) \
3306 GEN_LDX_E(name, ldop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
3308 #define GEN_LDEPX(name, ldop, opc2, opc3) \
3309 static void glue(gen_, name##epx)(DisasContext *ctx) \
3313 gen_set_access_type(ctx, ACCESS_INT); \
3314 EA = tcg_temp_new(); \
3315 gen_addr_reg_index(ctx, EA); \
3316 tcg_gen_qemu_ld_tl(cpu_gpr[rD(ctx->opcode)], EA, PPC_TLB_EPID_LOAD, ldop);\
3317 tcg_temp_free(EA); \
3320 GEN_LDEPX(lb
, DEF_MEMOP(MO_UB
), 0x1F, 0x02)
3321 GEN_LDEPX(lh
, DEF_MEMOP(MO_UW
), 0x1F, 0x08)
3322 GEN_LDEPX(lw
, DEF_MEMOP(MO_UL
), 0x1F, 0x00)
3323 #if defined(TARGET_PPC64)
3324 GEN_LDEPX(ld
, DEF_MEMOP(MO_UQ
), 0x1D, 0x00)
3327 #if defined(TARGET_PPC64)
3328 /* CI load/store variants */
3329 GEN_LDX_HVRM(ldcix
, ld64_i64
, 0x15, 0x1b, PPC_CILDST
)
3330 GEN_LDX_HVRM(lwzcix
, ld32u
, 0x15, 0x15, PPC_CILDST
)
3331 GEN_LDX_HVRM(lhzcix
, ld16u
, 0x15, 0x19, PPC_CILDST
)
3332 GEN_LDX_HVRM(lbzcix
, ld8u
, 0x15, 0x1a, PPC_CILDST
)
3335 /*** Integer store ***/
3336 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
3337 static void glue(gen_, name##x)(DisasContext *ctx) \
3341 gen_set_access_type(ctx, ACCESS_INT); \
3342 EA = tcg_temp_new(); \
3343 gen_addr_reg_index(ctx, EA); \
3344 gen_qemu_##stop(ctx, cpu_gpr[rS(ctx->opcode)], EA); \
3345 tcg_temp_free(EA); \
3347 #define GEN_STX(name, stop, opc2, opc3, type) \
3348 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_NONE)
3350 #define GEN_STX_HVRM(name, stop, opc2, opc3, type) \
3351 GEN_STX_E(name, stop, opc2, opc3, type, PPC_NONE, CHK_HVRM)
3353 #define GEN_STEPX(name, stop, opc2, opc3) \
3354 static void glue(gen_, name##epx)(DisasContext *ctx) \
3358 gen_set_access_type(ctx, ACCESS_INT); \
3359 EA = tcg_temp_new(); \
3360 gen_addr_reg_index(ctx, EA); \
3361 tcg_gen_qemu_st_tl( \
3362 cpu_gpr[rD(ctx->opcode)], EA, PPC_TLB_EPID_STORE, stop); \
3363 tcg_temp_free(EA); \
3366 GEN_STEPX(stb
, DEF_MEMOP(MO_UB
), 0x1F, 0x06)
3367 GEN_STEPX(sth
, DEF_MEMOP(MO_UW
), 0x1F, 0x0C)
3368 GEN_STEPX(stw
, DEF_MEMOP(MO_UL
), 0x1F, 0x04)
3369 #if defined(TARGET_PPC64)
3370 GEN_STEPX(std
, DEF_MEMOP(MO_UQ
), 0x1d, 0x04)
3373 #if defined(TARGET_PPC64)
3374 GEN_STX_HVRM(stdcix
, st64_i64
, 0x15, 0x1f, PPC_CILDST
)
3375 GEN_STX_HVRM(stwcix
, st32
, 0x15, 0x1c, PPC_CILDST
)
3376 GEN_STX_HVRM(sthcix
, st16
, 0x15, 0x1d, PPC_CILDST
)
3377 GEN_STX_HVRM(stbcix
, st8
, 0x15, 0x1e, PPC_CILDST
)
3379 /*** Integer load and store with byte reverse ***/
3382 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
);
3385 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
);
3387 #if defined(TARGET_PPC64)
3389 GEN_LDX_E(ldbr
, ld64ur_i64
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
, CHK_NONE
);
3391 GEN_STX_E(stdbr
, st64r_i64
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
, CHK_NONE
);
3392 #endif /* TARGET_PPC64 */
3395 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
);
3397 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
);
3399 /*** Integer load and store multiple ***/
3402 static void gen_lmw(DisasContext
*ctx
)
3408 gen_align_no_le(ctx
);
3411 gen_set_access_type(ctx
, ACCESS_INT
);
3412 t0
= tcg_temp_new();
3413 t1
= tcg_const_i32(rD(ctx
->opcode
));
3414 gen_addr_imm_index(ctx
, t0
, 0);
3415 gen_helper_lmw(cpu_env
, t0
, t1
);
3417 tcg_temp_free_i32(t1
);
3421 static void gen_stmw(DisasContext
*ctx
)
3427 gen_align_no_le(ctx
);
3430 gen_set_access_type(ctx
, ACCESS_INT
);
3431 t0
= tcg_temp_new();
3432 t1
= tcg_const_i32(rS(ctx
->opcode
));
3433 gen_addr_imm_index(ctx
, t0
, 0);
3434 gen_helper_stmw(cpu_env
, t0
, t1
);
3436 tcg_temp_free_i32(t1
);
3439 /*** Integer load and store strings ***/
3443 * PowerPC32 specification says we must generate an exception if rA is
3444 * in the range of registers to be loaded. In an other hand, IBM says
3445 * this is valid, but rA won't be loaded. For now, I'll follow the
3448 static void gen_lswi(DisasContext
*ctx
)
3452 int nb
= NB(ctx
->opcode
);
3453 int start
= rD(ctx
->opcode
);
3454 int ra
= rA(ctx
->opcode
);
3458 gen_align_no_le(ctx
);
3464 nr
= DIV_ROUND_UP(nb
, 4);
3465 if (unlikely(lsw_reg_in_range(start
, nr
, ra
))) {
3466 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_LSWX
);
3469 gen_set_access_type(ctx
, ACCESS_INT
);
3470 t0
= tcg_temp_new();
3471 gen_addr_register(ctx
, t0
);
3472 t1
= tcg_const_i32(nb
);
3473 t2
= tcg_const_i32(start
);
3474 gen_helper_lsw(cpu_env
, t0
, t1
, t2
);
3476 tcg_temp_free_i32(t1
);
3477 tcg_temp_free_i32(t2
);
3481 static void gen_lswx(DisasContext
*ctx
)
3484 TCGv_i32 t1
, t2
, t3
;
3487 gen_align_no_le(ctx
);
3490 gen_set_access_type(ctx
, ACCESS_INT
);
3491 t0
= tcg_temp_new();
3492 gen_addr_reg_index(ctx
, t0
);
3493 t1
= tcg_const_i32(rD(ctx
->opcode
));
3494 t2
= tcg_const_i32(rA(ctx
->opcode
));
3495 t3
= tcg_const_i32(rB(ctx
->opcode
));
3496 gen_helper_lswx(cpu_env
, t0
, t1
, t2
, t3
);
3498 tcg_temp_free_i32(t1
);
3499 tcg_temp_free_i32(t2
);
3500 tcg_temp_free_i32(t3
);
3504 static void gen_stswi(DisasContext
*ctx
)
3508 int nb
= NB(ctx
->opcode
);
3511 gen_align_no_le(ctx
);
3514 gen_set_access_type(ctx
, ACCESS_INT
);
3515 t0
= tcg_temp_new();
3516 gen_addr_register(ctx
, t0
);
3520 t1
= tcg_const_i32(nb
);
3521 t2
= tcg_const_i32(rS(ctx
->opcode
));
3522 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
3524 tcg_temp_free_i32(t1
);
3525 tcg_temp_free_i32(t2
);
3529 static void gen_stswx(DisasContext
*ctx
)
3535 gen_align_no_le(ctx
);
3538 gen_set_access_type(ctx
, ACCESS_INT
);
3539 t0
= tcg_temp_new();
3540 gen_addr_reg_index(ctx
, t0
);
3541 t1
= tcg_temp_new_i32();
3542 tcg_gen_trunc_tl_i32(t1
, cpu_xer
);
3543 tcg_gen_andi_i32(t1
, t1
, 0x7F);
3544 t2
= tcg_const_i32(rS(ctx
->opcode
));
3545 gen_helper_stsw(cpu_env
, t0
, t1
, t2
);
3547 tcg_temp_free_i32(t1
);
3548 tcg_temp_free_i32(t2
);
3551 /*** Memory synchronisation ***/
3553 static void gen_eieio(DisasContext
*ctx
)
3555 TCGBar bar
= TCG_MO_ALL
;
3558 * eieio has complex semanitcs. It provides memory ordering between
3559 * operations in the set:
3560 * - loads from CI memory.
3561 * - stores to CI memory.
3562 * - stores to WT memory.
3564 * It separately also orders memory for operations in the set:
3565 * - stores to cacheble memory.
3567 * It also serializes instructions:
3570 * It separately serializes:
3571 * - tlbie and tlbsync.
3573 * And separately serializes:
3574 * - slbieg, slbiag, and slbsync.
3576 * The end result is that CI memory ordering requires TCG_MO_ALL
3577 * and it is not possible to special-case more relaxed ordering for
3578 * cacheable accesses. TCG_BAR_SC is required to provide this
3583 * POWER9 has a eieio instruction variant using bit 6 as a hint to
3584 * tell the CPU it is a store-forwarding barrier.
3586 if (ctx
->opcode
& 0x2000000) {
3588 * ISA says that "Reserved fields in instructions are ignored
3589 * by the processor". So ignore the bit 6 on non-POWER9 CPU but
3590 * as this is not an instruction software should be using,
3591 * complain to the user.
3593 if (!(ctx
->insns_flags2
& PPC2_ISA300
)) {
3594 qemu_log_mask(LOG_GUEST_ERROR
, "invalid eieio using bit 6 at @"
3595 TARGET_FMT_lx
"\n", ctx
->cia
);
3601 tcg_gen_mb(bar
| TCG_BAR_SC
);
3604 #if !defined(CONFIG_USER_ONLY)
3605 static inline void gen_check_tlb_flush(DisasContext
*ctx
, bool global
)
3610 if (!ctx
->lazy_tlb_flush
) {
3613 l
= gen_new_label();
3614 t
= tcg_temp_new_i32();
3615 tcg_gen_ld_i32(t
, cpu_env
, offsetof(CPUPPCState
, tlb_need_flush
));
3616 tcg_gen_brcondi_i32(TCG_COND_EQ
, t
, 0, l
);
3618 gen_helper_check_tlb_flush_global(cpu_env
);
3620 gen_helper_check_tlb_flush_local(cpu_env
);
3623 tcg_temp_free_i32(t
);
3626 static inline void gen_check_tlb_flush(DisasContext
*ctx
, bool global
) { }
3630 static void gen_isync(DisasContext
*ctx
)
3633 * We need to check for a pending TLB flush. This can only happen in
3634 * kernel mode however so check MSR_PR
3637 gen_check_tlb_flush(ctx
, false);
3639 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_SC
);
3640 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
3643 #define MEMOP_GET_SIZE(x) (1 << ((x) & MO_SIZE))
3645 static void gen_load_locked(DisasContext
*ctx
, MemOp memop
)
3647 TCGv gpr
= cpu_gpr
[rD(ctx
->opcode
)];
3648 TCGv t0
= tcg_temp_new();
3650 gen_set_access_type(ctx
, ACCESS_RES
);
3651 gen_addr_reg_index(ctx
, t0
);
3652 tcg_gen_qemu_ld_tl(gpr
, t0
, ctx
->mem_idx
, memop
| MO_ALIGN
);
3653 tcg_gen_mov_tl(cpu_reserve
, t0
);
3654 tcg_gen_mov_tl(cpu_reserve_val
, gpr
);
3655 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_LDAQ
);
3659 #define LARX(name, memop) \
3660 static void gen_##name(DisasContext *ctx) \
3662 gen_load_locked(ctx, memop); \
3666 LARX(lbarx
, DEF_MEMOP(MO_UB
))
3667 LARX(lharx
, DEF_MEMOP(MO_UW
))
3668 LARX(lwarx
, DEF_MEMOP(MO_UL
))
3670 static void gen_fetch_inc_conditional(DisasContext
*ctx
, MemOp memop
,
3671 TCGv EA
, TCGCond cond
, int addend
)
3673 TCGv t
= tcg_temp_new();
3674 TCGv t2
= tcg_temp_new();
3675 TCGv u
= tcg_temp_new();
3677 tcg_gen_qemu_ld_tl(t
, EA
, ctx
->mem_idx
, memop
);
3678 tcg_gen_addi_tl(t2
, EA
, MEMOP_GET_SIZE(memop
));
3679 tcg_gen_qemu_ld_tl(t2
, t2
, ctx
->mem_idx
, memop
);
3680 tcg_gen_addi_tl(u
, t
, addend
);
3682 /* E.g. for fetch and increment bounded... */
3683 /* mem(EA,s) = (t != t2 ? u = t + 1 : t) */
3684 tcg_gen_movcond_tl(cond
, u
, t
, t2
, u
, t
);
3685 tcg_gen_qemu_st_tl(u
, EA
, ctx
->mem_idx
, memop
);
3687 /* RT = (t != t2 ? t : u = 1<<(s*8-1)) */
3688 tcg_gen_movi_tl(u
, 1 << (MEMOP_GET_SIZE(memop
) * 8 - 1));
3689 tcg_gen_movcond_tl(cond
, cpu_gpr
[rD(ctx
->opcode
)], t
, t2
, t
, u
);
3696 static void gen_ld_atomic(DisasContext
*ctx
, MemOp memop
)
3698 uint32_t gpr_FC
= FC(ctx
->opcode
);
3699 TCGv EA
= tcg_temp_new();
3700 int rt
= rD(ctx
->opcode
);
3704 gen_addr_register(ctx
, EA
);
3706 src
= cpu_gpr
[(rt
+ 1) & 31];
3708 need_serial
= false;
3711 case 0: /* Fetch and add */
3712 tcg_gen_atomic_fetch_add_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3714 case 1: /* Fetch and xor */
3715 tcg_gen_atomic_fetch_xor_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3717 case 2: /* Fetch and or */
3718 tcg_gen_atomic_fetch_or_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3720 case 3: /* Fetch and 'and' */
3721 tcg_gen_atomic_fetch_and_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3723 case 4: /* Fetch and max unsigned */
3724 tcg_gen_atomic_fetch_umax_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3726 case 5: /* Fetch and max signed */
3727 tcg_gen_atomic_fetch_smax_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3729 case 6: /* Fetch and min unsigned */
3730 tcg_gen_atomic_fetch_umin_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3732 case 7: /* Fetch and min signed */
3733 tcg_gen_atomic_fetch_smin_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3736 tcg_gen_atomic_xchg_tl(dst
, EA
, src
, ctx
->mem_idx
, memop
);
3739 case 16: /* Compare and swap not equal */
3740 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3743 TCGv t0
= tcg_temp_new();
3744 TCGv t1
= tcg_temp_new();
3746 tcg_gen_qemu_ld_tl(t0
, EA
, ctx
->mem_idx
, memop
);
3747 if ((memop
& MO_SIZE
) == MO_64
|| TARGET_LONG_BITS
== 32) {
3748 tcg_gen_mov_tl(t1
, src
);
3750 tcg_gen_ext32u_tl(t1
, src
);
3752 tcg_gen_movcond_tl(TCG_COND_NE
, t1
, t0
, t1
,
3753 cpu_gpr
[(rt
+ 2) & 31], t0
);
3754 tcg_gen_qemu_st_tl(t1
, EA
, ctx
->mem_idx
, memop
);
3755 tcg_gen_mov_tl(dst
, t0
);
3762 case 24: /* Fetch and increment bounded */
3763 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3766 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_NE
, 1);
3769 case 25: /* Fetch and increment equal */
3770 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3773 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_EQ
, 1);
3776 case 28: /* Fetch and decrement bounded */
3777 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3780 gen_fetch_inc_conditional(ctx
, memop
, EA
, TCG_COND_NE
, -1);
3785 /* invoke data storage error handler */
3786 gen_exception_err(ctx
, POWERPC_EXCP_DSI
, POWERPC_EXCP_INVAL
);
3791 /* Restart with exclusive lock. */
3792 gen_helper_exit_atomic(cpu_env
);
3793 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3797 static void gen_lwat(DisasContext
*ctx
)
3799 gen_ld_atomic(ctx
, DEF_MEMOP(MO_UL
));
3803 static void gen_ldat(DisasContext
*ctx
)
3805 gen_ld_atomic(ctx
, DEF_MEMOP(MO_UQ
));
3809 static void gen_st_atomic(DisasContext
*ctx
, MemOp memop
)
3811 uint32_t gpr_FC
= FC(ctx
->opcode
);
3812 TCGv EA
= tcg_temp_new();
3815 gen_addr_register(ctx
, EA
);
3816 src
= cpu_gpr
[rD(ctx
->opcode
)];
3817 discard
= tcg_temp_new();
3821 case 0: /* add and Store */
3822 tcg_gen_atomic_add_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3824 case 1: /* xor and Store */
3825 tcg_gen_atomic_xor_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3827 case 2: /* Or and Store */
3828 tcg_gen_atomic_or_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3830 case 3: /* 'and' and Store */
3831 tcg_gen_atomic_and_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3833 case 4: /* Store max unsigned */
3834 tcg_gen_atomic_umax_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3836 case 5: /* Store max signed */
3837 tcg_gen_atomic_smax_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3839 case 6: /* Store min unsigned */
3840 tcg_gen_atomic_umin_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3842 case 7: /* Store min signed */
3843 tcg_gen_atomic_smin_fetch_tl(discard
, EA
, src
, ctx
->mem_idx
, memop
);
3845 case 24: /* Store twin */
3846 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3847 /* Restart with exclusive lock. */
3848 gen_helper_exit_atomic(cpu_env
);
3849 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3851 TCGv t
= tcg_temp_new();
3852 TCGv t2
= tcg_temp_new();
3853 TCGv s
= tcg_temp_new();
3854 TCGv s2
= tcg_temp_new();
3855 TCGv ea_plus_s
= tcg_temp_new();
3857 tcg_gen_qemu_ld_tl(t
, EA
, ctx
->mem_idx
, memop
);
3858 tcg_gen_addi_tl(ea_plus_s
, EA
, MEMOP_GET_SIZE(memop
));
3859 tcg_gen_qemu_ld_tl(t2
, ea_plus_s
, ctx
->mem_idx
, memop
);
3860 tcg_gen_movcond_tl(TCG_COND_EQ
, s
, t
, t2
, src
, t
);
3861 tcg_gen_movcond_tl(TCG_COND_EQ
, s2
, t
, t2
, src
, t2
);
3862 tcg_gen_qemu_st_tl(s
, EA
, ctx
->mem_idx
, memop
);
3863 tcg_gen_qemu_st_tl(s2
, ea_plus_s
, ctx
->mem_idx
, memop
);
3865 tcg_temp_free(ea_plus_s
);
3873 /* invoke data storage error handler */
3874 gen_exception_err(ctx
, POWERPC_EXCP_DSI
, POWERPC_EXCP_INVAL
);
3876 tcg_temp_free(discard
);
3880 static void gen_stwat(DisasContext
*ctx
)
3882 gen_st_atomic(ctx
, DEF_MEMOP(MO_UL
));
3886 static void gen_stdat(DisasContext
*ctx
)
3888 gen_st_atomic(ctx
, DEF_MEMOP(MO_UQ
));
3892 static void gen_conditional_store(DisasContext
*ctx
, MemOp memop
)
3894 TCGLabel
*l1
= gen_new_label();
3895 TCGLabel
*l2
= gen_new_label();
3896 TCGv t0
= tcg_temp_new();
3897 int reg
= rS(ctx
->opcode
);
3899 gen_set_access_type(ctx
, ACCESS_RES
);
3900 gen_addr_reg_index(ctx
, t0
);
3901 tcg_gen_brcond_tl(TCG_COND_NE
, t0
, cpu_reserve
, l1
);
3904 t0
= tcg_temp_new();
3905 tcg_gen_atomic_cmpxchg_tl(t0
, cpu_reserve
, cpu_reserve_val
,
3906 cpu_gpr
[reg
], ctx
->mem_idx
,
3907 DEF_MEMOP(memop
) | MO_ALIGN
);
3908 tcg_gen_setcond_tl(TCG_COND_EQ
, t0
, t0
, cpu_reserve_val
);
3909 tcg_gen_shli_tl(t0
, t0
, CRF_EQ_BIT
);
3910 tcg_gen_or_tl(t0
, t0
, cpu_so
);
3911 tcg_gen_trunc_tl_i32(cpu_crf
[0], t0
);
3918 * Address mismatch implies failure. But we still need to provide
3919 * the memory barrier semantics of the instruction.
3921 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_STRL
);
3922 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
3925 tcg_gen_movi_tl(cpu_reserve
, -1);
3928 #define STCX(name, memop) \
3929 static void gen_##name(DisasContext *ctx) \
3931 gen_conditional_store(ctx, memop); \
3934 STCX(stbcx_
, DEF_MEMOP(MO_UB
))
3935 STCX(sthcx_
, DEF_MEMOP(MO_UW
))
3936 STCX(stwcx_
, DEF_MEMOP(MO_UL
))
3938 #if defined(TARGET_PPC64)
3940 LARX(ldarx
, DEF_MEMOP(MO_UQ
))
3942 STCX(stdcx_
, DEF_MEMOP(MO_UQ
))
3945 static void gen_lqarx(DisasContext
*ctx
)
3947 int rd
= rD(ctx
->opcode
);
3950 if (unlikely((rd
& 1) || (rd
== rA(ctx
->opcode
)) ||
3951 (rd
== rB(ctx
->opcode
)))) {
3952 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
3956 gen_set_access_type(ctx
, ACCESS_RES
);
3957 EA
= tcg_temp_new();
3958 gen_addr_reg_index(ctx
, EA
);
3960 /* Note that the low part is always in RD+1, even in LE mode. */
3961 lo
= cpu_gpr
[rd
+ 1];
3964 if (tb_cflags(ctx
->base
.tb
) & CF_PARALLEL
) {
3965 if (HAVE_ATOMIC128
) {
3966 TCGv_i32 oi
= tcg_temp_new_i32();
3968 tcg_gen_movi_i32(oi
, make_memop_idx(MO_LE
| MO_128
| MO_ALIGN
,
3970 gen_helper_lq_le_parallel(lo
, cpu_env
, EA
, oi
);
3972 tcg_gen_movi_i32(oi
, make_memop_idx(MO_BE
| MO_128
| MO_ALIGN
,
3974 gen_helper_lq_be_parallel(lo
, cpu_env
, EA
, oi
);
3976 tcg_temp_free_i32(oi
);
3977 tcg_gen_ld_i64(hi
, cpu_env
, offsetof(CPUPPCState
, retxh
));
3979 /* Restart with exclusive lock. */
3980 gen_helper_exit_atomic(cpu_env
);
3981 ctx
->base
.is_jmp
= DISAS_NORETURN
;
3985 } else if (ctx
->le_mode
) {
3986 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_LEUQ
| MO_ALIGN_16
);
3987 tcg_gen_mov_tl(cpu_reserve
, EA
);
3988 gen_addr_add(ctx
, EA
, EA
, 8);
3989 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_LEUQ
);
3991 tcg_gen_qemu_ld_i64(hi
, EA
, ctx
->mem_idx
, MO_BEUQ
| MO_ALIGN_16
);
3992 tcg_gen_mov_tl(cpu_reserve
, EA
);
3993 gen_addr_add(ctx
, EA
, EA
, 8);
3994 tcg_gen_qemu_ld_i64(lo
, EA
, ctx
->mem_idx
, MO_BEUQ
);
3998 tcg_gen_st_tl(hi
, cpu_env
, offsetof(CPUPPCState
, reserve_val
));
3999 tcg_gen_st_tl(lo
, cpu_env
, offsetof(CPUPPCState
, reserve_val2
));
4003 static void gen_stqcx_(DisasContext
*ctx
)
4005 TCGLabel
*lab_fail
, *lab_over
;
4006 int rs
= rS(ctx
->opcode
);
4010 if (unlikely(rs
& 1)) {
4011 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4015 lab_fail
= gen_new_label();
4016 lab_over
= gen_new_label();
4018 gen_set_access_type(ctx
, ACCESS_RES
);
4019 EA
= tcg_temp_new();
4020 gen_addr_reg_index(ctx
, EA
);
4022 tcg_gen_brcond_tl(TCG_COND_NE
, EA
, cpu_reserve
, lab_fail
);
4025 cmp
= tcg_temp_new_i128();
4026 val
= tcg_temp_new_i128();
4028 tcg_gen_concat_i64_i128(cmp
, cpu_reserve_val2
, cpu_reserve_val
);
4030 /* Note that the low part is always in RS+1, even in LE mode. */
4031 tcg_gen_concat_i64_i128(val
, cpu_gpr
[rs
+ 1], cpu_gpr
[rs
]);
4033 tcg_gen_atomic_cmpxchg_i128(val
, cpu_reserve
, cmp
, val
, ctx
->mem_idx
,
4034 DEF_MEMOP(MO_128
| MO_ALIGN
));
4035 tcg_temp_free_i128(cmp
);
4037 t0
= tcg_temp_new();
4038 t1
= tcg_temp_new();
4039 tcg_gen_extr_i128_i64(t1
, t0
, val
);
4040 tcg_temp_free_i128(val
);
4042 tcg_gen_xor_tl(t1
, t1
, cpu_reserve_val2
);
4043 tcg_gen_xor_tl(t0
, t0
, cpu_reserve_val
);
4044 tcg_gen_or_tl(t0
, t0
, t1
);
4047 tcg_gen_setcondi_tl(TCG_COND_EQ
, t0
, t0
, 0);
4048 tcg_gen_shli_tl(t0
, t0
, CRF_EQ_BIT
);
4049 tcg_gen_or_tl(t0
, t0
, cpu_so
);
4050 tcg_gen_trunc_tl_i32(cpu_crf
[0], t0
);
4053 tcg_gen_br(lab_over
);
4054 gen_set_label(lab_fail
);
4057 * Address mismatch implies failure. But we still need to provide
4058 * the memory barrier semantics of the instruction.
4060 tcg_gen_mb(TCG_MO_ALL
| TCG_BAR_STRL
);
4061 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
4063 gen_set_label(lab_over
);
4064 tcg_gen_movi_tl(cpu_reserve
, -1);
4066 #endif /* defined(TARGET_PPC64) */
4069 static void gen_sync(DisasContext
*ctx
)
4071 TCGBar bar
= TCG_MO_ALL
;
4072 uint32_t l
= (ctx
->opcode
>> 21) & 3;
4074 if ((l
== 1) && (ctx
->insns_flags2
& PPC2_MEM_LWSYNC
)) {
4075 bar
= TCG_MO_LD_LD
| TCG_MO_LD_ST
| TCG_MO_ST_ST
;
4079 * We may need to check for a pending TLB flush.
4081 * We do this on ptesync (l == 2) on ppc64 and any sync pn ppc32.
4083 * Additionally, this can only happen in kernel mode however so
4084 * check MSR_PR as well.
4086 if (((l
== 2) || !(ctx
->insns_flags
& PPC_64B
)) && !ctx
->pr
) {
4087 gen_check_tlb_flush(ctx
, true);
4090 tcg_gen_mb(bar
| TCG_BAR_SC
);
4094 static void gen_wait(DisasContext
*ctx
)
4098 if (ctx
->insns_flags
& PPC_WAIT
) {
4099 /* v2.03-v2.07 define an older incompatible 'wait' encoding. */
4101 if (ctx
->insns_flags2
& PPC2_PM_ISA206
) {
4102 /* v2.06 introduced the WC field. WC > 0 may be treated as no-op. */
4103 wc
= WC(ctx
->opcode
);
4108 } else if (ctx
->insns_flags2
& PPC2_ISA300
) {
4109 /* v3.0 defines a new 'wait' encoding. */
4110 wc
= WC(ctx
->opcode
);
4111 if (ctx
->insns_flags2
& PPC2_ISA310
) {
4112 uint32_t pl
= PL(ctx
->opcode
);
4114 /* WC 1,2 may be treated as no-op. WC 3 is reserved. */
4120 /* PL 1-3 are reserved. If WC=2 then the insn is treated as noop. */
4121 if (pl
> 0 && wc
!= 2) {
4126 } else { /* ISA300 */
4127 /* WC 1-3 are reserved */
4135 warn_report("wait instruction decoded with wrong ISA flags.");
4141 * wait without WC field or with WC=0 waits for an exception / interrupt
4145 TCGv_i32 t0
= tcg_const_i32(1);
4146 tcg_gen_st_i32(t0
, cpu_env
,
4147 -offsetof(PowerPCCPU
, env
) + offsetof(CPUState
, halted
));
4148 tcg_temp_free_i32(t0
);
4149 /* Stop translation, as the CPU is supposed to sleep from now */
4150 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4154 * Other wait types must not just wait until an exception occurs because
4155 * ignoring their other wake-up conditions could cause a hang.
4157 * For v2.06 and 2.07, wc=1,2,3 are architected but may be implemented as
4160 * wc=1 and wc=3 explicitly allow the instruction to be treated as a no-op.
4162 * wc=2 waits for an implementation-specific condition, such could be
4163 * always true, so it can be implemented as a no-op.
4165 * For v3.1, wc=1,2 are architected but may be implemented as no-ops.
4167 * wc=1 (waitrsv) waits for an exception or a reservation to be lost.
4168 * Reservation-loss may have implementation-specific conditions, so it
4169 * can be implemented as a no-op.
4171 * wc=2 waits for an exception or an amount of time to pass. This
4172 * amount is implementation-specific so it can be implemented as a
4175 * ISA v3.1 allows for execution to resume "in the rare case of
4176 * an implementation-dependent event", so in any case software must
4177 * not depend on the architected resumption condition to become
4178 * true, so no-op implementations should be architecturally correct
4183 #if defined(TARGET_PPC64)
4184 static void gen_doze(DisasContext
*ctx
)
4186 #if defined(CONFIG_USER_ONLY)
4192 t
= tcg_const_i32(PPC_PM_DOZE
);
4193 gen_helper_pminsn(cpu_env
, t
);
4194 tcg_temp_free_i32(t
);
4195 /* Stop translation, as the CPU is supposed to sleep from now */
4196 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4197 #endif /* defined(CONFIG_USER_ONLY) */
4200 static void gen_nap(DisasContext
*ctx
)
4202 #if defined(CONFIG_USER_ONLY)
4208 t
= tcg_const_i32(PPC_PM_NAP
);
4209 gen_helper_pminsn(cpu_env
, t
);
4210 tcg_temp_free_i32(t
);
4211 /* Stop translation, as the CPU is supposed to sleep from now */
4212 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4213 #endif /* defined(CONFIG_USER_ONLY) */
4216 static void gen_stop(DisasContext
*ctx
)
4218 #if defined(CONFIG_USER_ONLY)
4224 t
= tcg_const_i32(PPC_PM_STOP
);
4225 gen_helper_pminsn(cpu_env
, t
);
4226 tcg_temp_free_i32(t
);
4227 /* Stop translation, as the CPU is supposed to sleep from now */
4228 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4229 #endif /* defined(CONFIG_USER_ONLY) */
4232 static void gen_sleep(DisasContext
*ctx
)
4234 #if defined(CONFIG_USER_ONLY)
4240 t
= tcg_const_i32(PPC_PM_SLEEP
);
4241 gen_helper_pminsn(cpu_env
, t
);
4242 tcg_temp_free_i32(t
);
4243 /* Stop translation, as the CPU is supposed to sleep from now */
4244 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4245 #endif /* defined(CONFIG_USER_ONLY) */
4248 static void gen_rvwinkle(DisasContext
*ctx
)
4250 #if defined(CONFIG_USER_ONLY)
4256 t
= tcg_const_i32(PPC_PM_RVWINKLE
);
4257 gen_helper_pminsn(cpu_env
, t
);
4258 tcg_temp_free_i32(t
);
4259 /* Stop translation, as the CPU is supposed to sleep from now */
4260 gen_exception_nip(ctx
, EXCP_HLT
, ctx
->base
.pc_next
);
4261 #endif /* defined(CONFIG_USER_ONLY) */
4263 #endif /* #if defined(TARGET_PPC64) */
4265 static inline void gen_update_cfar(DisasContext
*ctx
, target_ulong nip
)
4267 #if defined(TARGET_PPC64)
4268 if (ctx
->has_cfar
) {
4269 tcg_gen_movi_tl(cpu_cfar
, nip
);
4274 #if defined(TARGET_PPC64)
4275 static void pmu_count_insns(DisasContext
*ctx
)
4278 * Do not bother calling the helper if the PMU isn't counting
4281 if (!ctx
->pmu_insn_cnt
) {
4285 #if !defined(CONFIG_USER_ONLY)
4290 * The PMU insns_inc() helper stops the internal PMU timer if a
4291 * counter overflows happens. In that case, if the guest is
4292 * running with icount and we do not handle it beforehand,
4293 * the helper can trigger a 'bad icount read'.
4295 gen_icount_io_start(ctx
);
4297 /* Avoid helper calls when only PMC5-6 are enabled. */
4298 if (!ctx
->pmc_other
) {
4299 l
= gen_new_label();
4300 t0
= tcg_temp_new();
4302 gen_load_spr(t0
, SPR_POWER_PMC5
);
4303 tcg_gen_addi_tl(t0
, t0
, ctx
->base
.num_insns
);
4304 gen_store_spr(SPR_POWER_PMC5
, t0
);
4305 /* Check for overflow, if it's enabled */
4306 if (ctx
->mmcr0_pmcjce
) {
4307 tcg_gen_brcondi_tl(TCG_COND_LT
, t0
, PMC_COUNTER_NEGATIVE_VAL
, l
);
4308 gen_helper_handle_pmc5_overflow(cpu_env
);
4314 gen_helper_insns_inc(cpu_env
, tcg_constant_i32(ctx
->base
.num_insns
));
4318 * User mode can read (but not write) PMC5 and start/stop
4319 * the PMU via MMCR0_FC. In this case just increment
4320 * PMC5 with base.num_insns.
4322 TCGv t0
= tcg_temp_new();
4324 gen_load_spr(t0
, SPR_POWER_PMC5
);
4325 tcg_gen_addi_tl(t0
, t0
, ctx
->base
.num_insns
);
4326 gen_store_spr(SPR_POWER_PMC5
, t0
);
4329 #endif /* #if !defined(CONFIG_USER_ONLY) */
4332 static void pmu_count_insns(DisasContext
*ctx
)
4336 #endif /* #if defined(TARGET_PPC64) */
4338 static inline bool use_goto_tb(DisasContext
*ctx
, target_ulong dest
)
4340 return translator_use_goto_tb(&ctx
->base
, dest
);
4343 static void gen_lookup_and_goto_ptr(DisasContext
*ctx
)
4345 if (unlikely(ctx
->singlestep_enabled
)) {
4346 gen_debug_exception(ctx
);
4349 * tcg_gen_lookup_and_goto_ptr will exit the TB if
4350 * CF_NO_GOTO_PTR is set. Count insns now.
4352 if (ctx
->base
.tb
->flags
& CF_NO_GOTO_PTR
) {
4353 pmu_count_insns(ctx
);
4356 tcg_gen_lookup_and_goto_ptr();
4361 static void gen_goto_tb(DisasContext
*ctx
, int n
, target_ulong dest
)
4363 if (NARROW_MODE(ctx
)) {
4364 dest
= (uint32_t) dest
;
4366 if (use_goto_tb(ctx
, dest
)) {
4367 pmu_count_insns(ctx
);
4369 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
4370 tcg_gen_exit_tb(ctx
->base
.tb
, n
);
4372 tcg_gen_movi_tl(cpu_nip
, dest
& ~3);
4373 gen_lookup_and_goto_ptr(ctx
);
4377 static inline void gen_setlr(DisasContext
*ctx
, target_ulong nip
)
4379 if (NARROW_MODE(ctx
)) {
4380 nip
= (uint32_t)nip
;
4382 tcg_gen_movi_tl(cpu_lr
, nip
);
4386 static void gen_b(DisasContext
*ctx
)
4388 target_ulong li
, target
;
4390 /* sign extend LI */
4391 li
= LI(ctx
->opcode
);
4392 li
= (li
^ 0x02000000) - 0x02000000;
4393 if (likely(AA(ctx
->opcode
) == 0)) {
4394 target
= ctx
->cia
+ li
;
4398 if (LK(ctx
->opcode
)) {
4399 gen_setlr(ctx
, ctx
->base
.pc_next
);
4401 gen_update_cfar(ctx
, ctx
->cia
);
4402 gen_goto_tb(ctx
, 0, target
);
4403 ctx
->base
.is_jmp
= DISAS_NORETURN
;
4411 static void gen_bcond(DisasContext
*ctx
, int type
)
4413 uint32_t bo
= BO(ctx
->opcode
);
4417 if (type
== BCOND_LR
|| type
== BCOND_CTR
|| type
== BCOND_TAR
) {
4418 target
= tcg_temp_local_new();
4419 if (type
== BCOND_CTR
) {
4420 tcg_gen_mov_tl(target
, cpu_ctr
);
4421 } else if (type
== BCOND_TAR
) {
4422 gen_load_spr(target
, SPR_TAR
);
4424 tcg_gen_mov_tl(target
, cpu_lr
);
4429 if (LK(ctx
->opcode
)) {
4430 gen_setlr(ctx
, ctx
->base
.pc_next
);
4432 l1
= gen_new_label();
4433 if ((bo
& 0x4) == 0) {
4434 /* Decrement and test CTR */
4435 TCGv temp
= tcg_temp_new();
4437 if (type
== BCOND_CTR
) {
4439 * All ISAs up to v3 describe this form of bcctr as invalid but
4440 * some processors, ie. 64-bit server processors compliant with
4441 * arch 2.x, do implement a "test and decrement" logic instead,
4442 * as described in their respective UMs. This logic involves CTR
4443 * to act as both the branch target and a counter, which makes
4444 * it basically useless and thus never used in real code.
4446 * This form was hence chosen to trigger extra micro-architectural
4447 * side-effect on real HW needed for the Spectre v2 workaround.
4448 * It is up to guests that implement such workaround, ie. linux, to
4449 * use this form in a way it just triggers the side-effect without
4450 * doing anything else harmful.
4452 if (unlikely(!is_book3s_arch2x(ctx
))) {
4453 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4454 tcg_temp_free(temp
);
4455 tcg_temp_free(target
);
4459 if (NARROW_MODE(ctx
)) {
4460 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
4462 tcg_gen_mov_tl(temp
, cpu_ctr
);
4465 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
4467 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
4469 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
4471 tcg_gen_subi_tl(cpu_ctr
, cpu_ctr
, 1);
4472 if (NARROW_MODE(ctx
)) {
4473 tcg_gen_ext32u_tl(temp
, cpu_ctr
);
4475 tcg_gen_mov_tl(temp
, cpu_ctr
);
4478 tcg_gen_brcondi_tl(TCG_COND_NE
, temp
, 0, l1
);
4480 tcg_gen_brcondi_tl(TCG_COND_EQ
, temp
, 0, l1
);
4483 tcg_temp_free(temp
);
4485 if ((bo
& 0x10) == 0) {
4487 uint32_t bi
= BI(ctx
->opcode
);
4488 uint32_t mask
= 0x08 >> (bi
& 0x03);
4489 TCGv_i32 temp
= tcg_temp_new_i32();
4492 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
4493 tcg_gen_brcondi_i32(TCG_COND_EQ
, temp
, 0, l1
);
4495 tcg_gen_andi_i32(temp
, cpu_crf
[bi
>> 2], mask
);
4496 tcg_gen_brcondi_i32(TCG_COND_NE
, temp
, 0, l1
);
4498 tcg_temp_free_i32(temp
);
4500 gen_update_cfar(ctx
, ctx
->cia
);
4501 if (type
== BCOND_IM
) {
4502 target_ulong li
= (target_long
)((int16_t)(BD(ctx
->opcode
)));
4503 if (likely(AA(ctx
->opcode
) == 0)) {
4504 gen_goto_tb(ctx
, 0, ctx
->cia
+ li
);
4506 gen_goto_tb(ctx
, 0, li
);
4509 if (NARROW_MODE(ctx
)) {
4510 tcg_gen_andi_tl(cpu_nip
, target
, (uint32_t)~3);
4512 tcg_gen_andi_tl(cpu_nip
, target
, ~3);
4514 gen_lookup_and_goto_ptr(ctx
);
4515 tcg_temp_free(target
);
4517 if ((bo
& 0x14) != 0x14) {
4518 /* fallthrough case */
4520 gen_goto_tb(ctx
, 1, ctx
->base
.pc_next
);
4522 ctx
->base
.is_jmp
= DISAS_NORETURN
;
4525 static void gen_bc(DisasContext
*ctx
)
4527 gen_bcond(ctx
, BCOND_IM
);
4530 static void gen_bcctr(DisasContext
*ctx
)
4532 gen_bcond(ctx
, BCOND_CTR
);
4535 static void gen_bclr(DisasContext
*ctx
)
4537 gen_bcond(ctx
, BCOND_LR
);
4540 static void gen_bctar(DisasContext
*ctx
)
4542 gen_bcond(ctx
, BCOND_TAR
);
4545 /*** Condition register logical ***/
4546 #define GEN_CRLOGIC(name, tcg_op, opc) \
4547 static void glue(gen_, name)(DisasContext *ctx) \
4552 sh = (crbD(ctx->opcode) & 0x03) - (crbA(ctx->opcode) & 0x03); \
4553 t0 = tcg_temp_new_i32(); \
4555 tcg_gen_shri_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], sh); \
4557 tcg_gen_shli_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2], -sh); \
4559 tcg_gen_mov_i32(t0, cpu_crf[crbA(ctx->opcode) >> 2]); \
4560 t1 = tcg_temp_new_i32(); \
4561 sh = (crbD(ctx->opcode) & 0x03) - (crbB(ctx->opcode) & 0x03); \
4563 tcg_gen_shri_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], sh); \
4565 tcg_gen_shli_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2], -sh); \
4567 tcg_gen_mov_i32(t1, cpu_crf[crbB(ctx->opcode) >> 2]); \
4568 tcg_op(t0, t0, t1); \
4569 bitmask = 0x08 >> (crbD(ctx->opcode) & 0x03); \
4570 tcg_gen_andi_i32(t0, t0, bitmask); \
4571 tcg_gen_andi_i32(t1, cpu_crf[crbD(ctx->opcode) >> 2], ~bitmask); \
4572 tcg_gen_or_i32(cpu_crf[crbD(ctx->opcode) >> 2], t0, t1); \
4573 tcg_temp_free_i32(t0); \
4574 tcg_temp_free_i32(t1); \
4578 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08);
4580 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04);
4582 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09);
4584 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07);
4586 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01);
4588 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E);
4590 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D);
4592 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06);
4595 static void gen_mcrf(DisasContext
*ctx
)
4597 tcg_gen_mov_i32(cpu_crf
[crfD(ctx
->opcode
)], cpu_crf
[crfS(ctx
->opcode
)]);
4600 /*** System linkage ***/
4602 /* rfi (supervisor only) */
4603 static void gen_rfi(DisasContext
*ctx
)
4605 #if defined(CONFIG_USER_ONLY)
4609 * This instruction doesn't exist anymore on 64-bit server
4610 * processors compliant with arch 2.x
4612 if (is_book3s_arch2x(ctx
)) {
4613 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
4616 /* Restore CPU state */
4618 gen_icount_io_start(ctx
);
4619 gen_update_cfar(ctx
, ctx
->cia
);
4620 gen_helper_rfi(cpu_env
);
4621 ctx
->base
.is_jmp
= DISAS_EXIT
;
4625 #if defined(TARGET_PPC64)
4626 static void gen_rfid(DisasContext
*ctx
)
4628 #if defined(CONFIG_USER_ONLY)
4631 /* Restore CPU state */
4633 gen_icount_io_start(ctx
);
4634 gen_update_cfar(ctx
, ctx
->cia
);
4635 gen_helper_rfid(cpu_env
);
4636 ctx
->base
.is_jmp
= DISAS_EXIT
;
4640 #if !defined(CONFIG_USER_ONLY)
4641 static void gen_rfscv(DisasContext
*ctx
)
4643 #if defined(CONFIG_USER_ONLY)
4646 /* Restore CPU state */
4648 gen_icount_io_start(ctx
);
4649 gen_update_cfar(ctx
, ctx
->cia
);
4650 gen_helper_rfscv(cpu_env
);
4651 ctx
->base
.is_jmp
= DISAS_EXIT
;
4656 static void gen_hrfid(DisasContext
*ctx
)
4658 #if defined(CONFIG_USER_ONLY)
4661 /* Restore CPU state */
4663 gen_helper_hrfid(cpu_env
);
4664 ctx
->base
.is_jmp
= DISAS_EXIT
;
4670 #if defined(CONFIG_USER_ONLY)
4671 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
4673 #define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
4674 #define POWERPC_SYSCALL_VECTORED POWERPC_EXCP_SYSCALL_VECTORED
4676 static void gen_sc(DisasContext
*ctx
)
4680 lev
= (ctx
->opcode
>> 5) & 0x7F;
4681 gen_exception_err(ctx
, POWERPC_SYSCALL
, lev
);
4684 #if defined(TARGET_PPC64)
4685 #if !defined(CONFIG_USER_ONLY)
4686 static void gen_scv(DisasContext
*ctx
)
4688 uint32_t lev
= (ctx
->opcode
>> 5) & 0x7F;
4690 /* Set the PC back to the faulting instruction. */
4691 gen_update_nip(ctx
, ctx
->cia
);
4692 gen_helper_scv(cpu_env
, tcg_constant_i32(lev
));
4694 ctx
->base
.is_jmp
= DISAS_NORETURN
;
4701 /* Check for unconditional traps (always or never) */
4702 static bool check_unconditional_trap(DisasContext
*ctx
)
4705 if (TO(ctx
->opcode
) == 0) {
4709 if (TO(ctx
->opcode
) == 31) {
4710 gen_exception_err(ctx
, POWERPC_EXCP_PROGRAM
, POWERPC_EXCP_TRAP
);
4717 static void gen_tw(DisasContext
*ctx
)
4721 if (check_unconditional_trap(ctx
)) {
4724 t0
= tcg_const_i32(TO(ctx
->opcode
));
4725 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
4727 tcg_temp_free_i32(t0
);
4731 static void gen_twi(DisasContext
*ctx
)
4736 if (check_unconditional_trap(ctx
)) {
4739 t0
= tcg_const_tl(SIMM(ctx
->opcode
));
4740 t1
= tcg_const_i32(TO(ctx
->opcode
));
4741 gen_helper_tw(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4743 tcg_temp_free_i32(t1
);
4746 #if defined(TARGET_PPC64)
4748 static void gen_td(DisasContext
*ctx
)
4752 if (check_unconditional_trap(ctx
)) {
4755 t0
= tcg_const_i32(TO(ctx
->opcode
));
4756 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)],
4758 tcg_temp_free_i32(t0
);
4762 static void gen_tdi(DisasContext
*ctx
)
4767 if (check_unconditional_trap(ctx
)) {
4770 t0
= tcg_const_tl(SIMM(ctx
->opcode
));
4771 t1
= tcg_const_i32(TO(ctx
->opcode
));
4772 gen_helper_td(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)], t0
, t1
);
4774 tcg_temp_free_i32(t1
);
4778 /*** Processor control ***/
4781 static void gen_mcrxr(DisasContext
*ctx
)
4783 TCGv_i32 t0
= tcg_temp_new_i32();
4784 TCGv_i32 t1
= tcg_temp_new_i32();
4785 TCGv_i32 dst
= cpu_crf
[crfD(ctx
->opcode
)];
4787 tcg_gen_trunc_tl_i32(t0
, cpu_so
);
4788 tcg_gen_trunc_tl_i32(t1
, cpu_ov
);
4789 tcg_gen_trunc_tl_i32(dst
, cpu_ca
);
4790 tcg_gen_shli_i32(t0
, t0
, 3);
4791 tcg_gen_shli_i32(t1
, t1
, 2);
4792 tcg_gen_shli_i32(dst
, dst
, 1);
4793 tcg_gen_or_i32(dst
, dst
, t0
);
4794 tcg_gen_or_i32(dst
, dst
, t1
);
4795 tcg_temp_free_i32(t0
);
4796 tcg_temp_free_i32(t1
);
4798 tcg_gen_movi_tl(cpu_so
, 0);
4799 tcg_gen_movi_tl(cpu_ov
, 0);
4800 tcg_gen_movi_tl(cpu_ca
, 0);
4805 static void gen_mcrxrx(DisasContext
*ctx
)
4807 TCGv t0
= tcg_temp_new();
4808 TCGv t1
= tcg_temp_new();
4809 TCGv_i32 dst
= cpu_crf
[crfD(ctx
->opcode
)];
4811 /* copy OV and OV32 */
4812 tcg_gen_shli_tl(t0
, cpu_ov
, 1);
4813 tcg_gen_or_tl(t0
, t0
, cpu_ov32
);
4814 tcg_gen_shli_tl(t0
, t0
, 2);
4815 /* copy CA and CA32 */
4816 tcg_gen_shli_tl(t1
, cpu_ca
, 1);
4817 tcg_gen_or_tl(t1
, t1
, cpu_ca32
);
4818 tcg_gen_or_tl(t0
, t0
, t1
);
4819 tcg_gen_trunc_tl_i32(dst
, t0
);
4826 static void gen_mfcr(DisasContext
*ctx
)
4830 if (likely(ctx
->opcode
& 0x00100000)) {
4831 crm
= CRM(ctx
->opcode
);
4832 if (likely(crm
&& ((crm
& (crm
- 1)) == 0))) {
4834 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_crf
[7 - crn
]);
4835 tcg_gen_shli_tl(cpu_gpr
[rD(ctx
->opcode
)],
4836 cpu_gpr
[rD(ctx
->opcode
)], crn
* 4);
4839 TCGv_i32 t0
= tcg_temp_new_i32();
4840 tcg_gen_mov_i32(t0
, cpu_crf
[0]);
4841 tcg_gen_shli_i32(t0
, t0
, 4);
4842 tcg_gen_or_i32(t0
, t0
, cpu_crf
[1]);
4843 tcg_gen_shli_i32(t0
, t0
, 4);
4844 tcg_gen_or_i32(t0
, t0
, cpu_crf
[2]);
4845 tcg_gen_shli_i32(t0
, t0
, 4);
4846 tcg_gen_or_i32(t0
, t0
, cpu_crf
[3]);
4847 tcg_gen_shli_i32(t0
, t0
, 4);
4848 tcg_gen_or_i32(t0
, t0
, cpu_crf
[4]);
4849 tcg_gen_shli_i32(t0
, t0
, 4);
4850 tcg_gen_or_i32(t0
, t0
, cpu_crf
[5]);
4851 tcg_gen_shli_i32(t0
, t0
, 4);
4852 tcg_gen_or_i32(t0
, t0
, cpu_crf
[6]);
4853 tcg_gen_shli_i32(t0
, t0
, 4);
4854 tcg_gen_or_i32(t0
, t0
, cpu_crf
[7]);
4855 tcg_gen_extu_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
4856 tcg_temp_free_i32(t0
);
4861 static void gen_mfmsr(DisasContext
*ctx
)
4864 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], cpu_msr
);
4868 static inline void gen_op_mfspr(DisasContext
*ctx
)
4870 void (*read_cb
)(DisasContext
*ctx
, int gprn
, int sprn
);
4871 uint32_t sprn
= SPR(ctx
->opcode
);
4873 #if defined(CONFIG_USER_ONLY)
4874 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
4877 read_cb
= ctx
->spr_cb
[sprn
].uea_read
;
4878 } else if (ctx
->hv
) {
4879 read_cb
= ctx
->spr_cb
[sprn
].hea_read
;
4881 read_cb
= ctx
->spr_cb
[sprn
].oea_read
;
4884 if (likely(read_cb
!= NULL
)) {
4885 if (likely(read_cb
!= SPR_NOACCESS
)) {
4886 (*read_cb
)(ctx
, rD(ctx
->opcode
), sprn
);
4888 /* Privilege exception */
4890 * This is a hack to avoid warnings when running Linux:
4891 * this OS breaks the PowerPC virtualisation model,
4892 * allowing userland application to read the PVR
4894 if (sprn
!= SPR_PVR
) {
4895 qemu_log_mask(LOG_GUEST_ERROR
, "Trying to read privileged spr "
4896 "%d (0x%03x) at " TARGET_FMT_lx
"\n", sprn
, sprn
,
4899 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4902 /* ISA 2.07 defines these as no-ops */
4903 if ((ctx
->insns_flags2
& PPC2_ISA207S
) &&
4904 (sprn
>= 808 && sprn
<= 811)) {
4909 qemu_log_mask(LOG_GUEST_ERROR
,
4910 "Trying to read invalid spr %d (0x%03x) at "
4911 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->cia
);
4914 * The behaviour depends on MSR:PR and SPR# bit 0x10, it can
4915 * generate a priv, a hv emu or a no-op
4919 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4922 if (ctx
->pr
|| sprn
== 0 || sprn
== 4 || sprn
== 5 || sprn
== 6) {
4923 gen_hvpriv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
4929 static void gen_mfspr(DisasContext
*ctx
)
4935 static void gen_mftb(DisasContext
*ctx
)
4941 static void gen_mtcrf(DisasContext
*ctx
)
4945 crm
= CRM(ctx
->opcode
);
4946 if (likely((ctx
->opcode
& 0x00100000))) {
4947 if (crm
&& ((crm
& (crm
- 1)) == 0)) {
4948 TCGv_i32 temp
= tcg_temp_new_i32();
4950 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
4951 tcg_gen_shri_i32(temp
, temp
, crn
* 4);
4952 tcg_gen_andi_i32(cpu_crf
[7 - crn
], temp
, 0xf);
4953 tcg_temp_free_i32(temp
);
4956 TCGv_i32 temp
= tcg_temp_new_i32();
4957 tcg_gen_trunc_tl_i32(temp
, cpu_gpr
[rS(ctx
->opcode
)]);
4958 for (crn
= 0 ; crn
< 8 ; crn
++) {
4959 if (crm
& (1 << crn
)) {
4960 tcg_gen_shri_i32(cpu_crf
[7 - crn
], temp
, crn
* 4);
4961 tcg_gen_andi_i32(cpu_crf
[7 - crn
], cpu_crf
[7 - crn
], 0xf);
4964 tcg_temp_free_i32(temp
);
4969 #if defined(TARGET_PPC64)
4970 static void gen_mtmsrd(DisasContext
*ctx
)
4972 if (unlikely(!is_book3s_arch2x(ctx
))) {
4979 #if !defined(CONFIG_USER_ONLY)
4983 t0
= tcg_temp_new();
4984 t1
= tcg_temp_new();
4986 gen_icount_io_start(ctx
);
4988 if (ctx
->opcode
& 0x00010000) {
4989 /* L=1 form only updates EE and RI */
4990 mask
= (1ULL << MSR_RI
) | (1ULL << MSR_EE
);
4992 /* mtmsrd does not alter HV, S, ME, or LE */
4993 mask
= ~((1ULL << MSR_LE
) | (1ULL << MSR_ME
) | (1ULL << MSR_S
) |
4996 * XXX: we need to update nip before the store if we enter
4997 * power saving mode, we will exit the loop directly from
5000 gen_update_nip(ctx
, ctx
->base
.pc_next
);
5003 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], mask
);
5004 tcg_gen_andi_tl(t1
, cpu_msr
, ~mask
);
5005 tcg_gen_or_tl(t0
, t0
, t1
);
5007 gen_helper_store_msr(cpu_env
, t0
);
5009 /* Must stop the translation as machine state (may have) changed */
5010 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
5014 #endif /* !defined(CONFIG_USER_ONLY) */
5016 #endif /* defined(TARGET_PPC64) */
5018 static void gen_mtmsr(DisasContext
*ctx
)
5022 #if !defined(CONFIG_USER_ONLY)
5024 target_ulong mask
= 0xFFFFFFFF;
5026 t0
= tcg_temp_new();
5027 t1
= tcg_temp_new();
5029 gen_icount_io_start(ctx
);
5030 if (ctx
->opcode
& 0x00010000) {
5031 /* L=1 form only updates EE and RI */
5032 mask
&= (1ULL << MSR_RI
) | (1ULL << MSR_EE
);
5034 /* mtmsr does not alter S, ME, or LE */
5035 mask
&= ~((1ULL << MSR_LE
) | (1ULL << MSR_ME
) | (1ULL << MSR_S
));
5038 * XXX: we need to update nip before the store if we enter
5039 * power saving mode, we will exit the loop directly from
5042 gen_update_nip(ctx
, ctx
->base
.pc_next
);
5045 tcg_gen_andi_tl(t0
, cpu_gpr
[rS(ctx
->opcode
)], mask
);
5046 tcg_gen_andi_tl(t1
, cpu_msr
, ~mask
);
5047 tcg_gen_or_tl(t0
, t0
, t1
);
5049 gen_helper_store_msr(cpu_env
, t0
);
5051 /* Must stop the translation as machine state (may have) changed */
5052 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
5060 static void gen_mtspr(DisasContext
*ctx
)
5062 void (*write_cb
)(DisasContext
*ctx
, int sprn
, int gprn
);
5063 uint32_t sprn
= SPR(ctx
->opcode
);
5065 #if defined(CONFIG_USER_ONLY)
5066 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
5069 write_cb
= ctx
->spr_cb
[sprn
].uea_write
;
5070 } else if (ctx
->hv
) {
5071 write_cb
= ctx
->spr_cb
[sprn
].hea_write
;
5073 write_cb
= ctx
->spr_cb
[sprn
].oea_write
;
5076 if (likely(write_cb
!= NULL
)) {
5077 if (likely(write_cb
!= SPR_NOACCESS
)) {
5078 (*write_cb
)(ctx
, sprn
, rS(ctx
->opcode
));
5080 /* Privilege exception */
5081 qemu_log_mask(LOG_GUEST_ERROR
, "Trying to write privileged spr "
5082 "%d (0x%03x) at " TARGET_FMT_lx
"\n", sprn
, sprn
,
5084 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5087 /* ISA 2.07 defines these as no-ops */
5088 if ((ctx
->insns_flags2
& PPC2_ISA207S
) &&
5089 (sprn
>= 808 && sprn
<= 811)) {
5095 qemu_log_mask(LOG_GUEST_ERROR
,
5096 "Trying to write invalid spr %d (0x%03x) at "
5097 TARGET_FMT_lx
"\n", sprn
, sprn
, ctx
->cia
);
5101 * The behaviour depends on MSR:PR and SPR# bit 0x10, it can
5102 * generate a priv, a hv emu or a no-op
5106 gen_priv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5109 if (ctx
->pr
|| sprn
== 0) {
5110 gen_hvpriv_exception(ctx
, POWERPC_EXCP_PRIV_REG
);
5116 #if defined(TARGET_PPC64)
5118 static void gen_setb(DisasContext
*ctx
)
5120 TCGv_i32 t0
= tcg_temp_new_i32();
5121 TCGv_i32 t8
= tcg_constant_i32(8);
5122 TCGv_i32 tm1
= tcg_constant_i32(-1);
5123 int crf
= crfS(ctx
->opcode
);
5125 tcg_gen_setcondi_i32(TCG_COND_GEU
, t0
, cpu_crf
[crf
], 4);
5126 tcg_gen_movcond_i32(TCG_COND_GEU
, t0
, cpu_crf
[crf
], t8
, tm1
, t0
);
5127 tcg_gen_ext_i32_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
);
5129 tcg_temp_free_i32(t0
);
5133 /*** Cache management ***/
5136 static void gen_dcbf(DisasContext
*ctx
)
5138 /* XXX: specification says this is treated as a load by the MMU */
5140 gen_set_access_type(ctx
, ACCESS_CACHE
);
5141 t0
= tcg_temp_new();
5142 gen_addr_reg_index(ctx
, t0
);
5143 gen_qemu_ld8u(ctx
, t0
, t0
);
5147 /* dcbfep (external PID dcbf) */
5148 static void gen_dcbfep(DisasContext
*ctx
)
5150 /* XXX: specification says this is treated as a load by the MMU */
5153 gen_set_access_type(ctx
, ACCESS_CACHE
);
5154 t0
= tcg_temp_new();
5155 gen_addr_reg_index(ctx
, t0
);
5156 tcg_gen_qemu_ld_tl(t0
, t0
, PPC_TLB_EPID_LOAD
, DEF_MEMOP(MO_UB
));
5160 /* dcbi (Supervisor only) */
5161 static void gen_dcbi(DisasContext
*ctx
)
5163 #if defined(CONFIG_USER_ONLY)
5169 EA
= tcg_temp_new();
5170 gen_set_access_type(ctx
, ACCESS_CACHE
);
5171 gen_addr_reg_index(ctx
, EA
);
5172 val
= tcg_temp_new();
5173 /* XXX: specification says this should be treated as a store by the MMU */
5174 gen_qemu_ld8u(ctx
, val
, EA
);
5175 gen_qemu_st8(ctx
, val
, EA
);
5178 #endif /* defined(CONFIG_USER_ONLY) */
5182 static void gen_dcbst(DisasContext
*ctx
)
5184 /* XXX: specification say this is treated as a load by the MMU */
5186 gen_set_access_type(ctx
, ACCESS_CACHE
);
5187 t0
= tcg_temp_new();
5188 gen_addr_reg_index(ctx
, t0
);
5189 gen_qemu_ld8u(ctx
, t0
, t0
);
5193 /* dcbstep (dcbstep External PID version) */
5194 static void gen_dcbstep(DisasContext
*ctx
)
5196 /* XXX: specification say this is treated as a load by the MMU */
5198 gen_set_access_type(ctx
, ACCESS_CACHE
);
5199 t0
= tcg_temp_new();
5200 gen_addr_reg_index(ctx
, t0
);
5201 tcg_gen_qemu_ld_tl(t0
, t0
, PPC_TLB_EPID_LOAD
, DEF_MEMOP(MO_UB
));
5206 static void gen_dcbt(DisasContext
*ctx
)
5209 * interpreted as no-op
5210 * XXX: specification say this is treated as a load by the MMU but
5211 * does not generate any exception
5216 static void gen_dcbtep(DisasContext
*ctx
)
5219 * interpreted as no-op
5220 * XXX: specification say this is treated as a load by the MMU but
5221 * does not generate any exception
5226 static void gen_dcbtst(DisasContext
*ctx
)
5229 * interpreted as no-op
5230 * XXX: specification say this is treated as a load by the MMU but
5231 * does not generate any exception
5236 static void gen_dcbtstep(DisasContext
*ctx
)
5239 * interpreted as no-op
5240 * XXX: specification say this is treated as a load by the MMU but
5241 * does not generate any exception
5246 static void gen_dcbtls(DisasContext
*ctx
)
5248 /* Always fails locking the cache */
5249 TCGv t0
= tcg_temp_new();
5250 gen_load_spr(t0
, SPR_Exxx_L1CSR0
);
5251 tcg_gen_ori_tl(t0
, t0
, L1CSR0_CUL
);
5252 gen_store_spr(SPR_Exxx_L1CSR0
, t0
);
5257 static void gen_dcbz(DisasContext
*ctx
)
5262 gen_set_access_type(ctx
, ACCESS_CACHE
);
5263 tcgv_addr
= tcg_temp_new();
5264 tcgv_op
= tcg_const_i32(ctx
->opcode
& 0x03FF000);
5265 gen_addr_reg_index(ctx
, tcgv_addr
);
5266 gen_helper_dcbz(cpu_env
, tcgv_addr
, tcgv_op
);
5267 tcg_temp_free(tcgv_addr
);
5268 tcg_temp_free_i32(tcgv_op
);
5272 static void gen_dcbzep(DisasContext
*ctx
)
5277 gen_set_access_type(ctx
, ACCESS_CACHE
);
5278 tcgv_addr
= tcg_temp_new();
5279 tcgv_op
= tcg_const_i32(ctx
->opcode
& 0x03FF000);
5280 gen_addr_reg_index(ctx
, tcgv_addr
);
5281 gen_helper_dcbzep(cpu_env
, tcgv_addr
, tcgv_op
);
5282 tcg_temp_free(tcgv_addr
);
5283 tcg_temp_free_i32(tcgv_op
);
5287 static void gen_dst(DisasContext
*ctx
)
5289 if (rA(ctx
->opcode
) == 0) {
5290 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5292 /* interpreted as no-op */
5297 static void gen_dstst(DisasContext
*ctx
)
5299 if (rA(ctx
->opcode
) == 0) {
5300 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5302 /* interpreted as no-op */
5308 static void gen_dss(DisasContext
*ctx
)
5310 /* interpreted as no-op */
5314 static void gen_icbi(DisasContext
*ctx
)
5317 gen_set_access_type(ctx
, ACCESS_CACHE
);
5318 t0
= tcg_temp_new();
5319 gen_addr_reg_index(ctx
, t0
);
5320 gen_helper_icbi(cpu_env
, t0
);
5325 static void gen_icbiep(DisasContext
*ctx
)
5328 gen_set_access_type(ctx
, ACCESS_CACHE
);
5329 t0
= tcg_temp_new();
5330 gen_addr_reg_index(ctx
, t0
);
5331 gen_helper_icbiep(cpu_env
, t0
);
5337 static void gen_dcba(DisasContext
*ctx
)
5340 * interpreted as no-op
5341 * XXX: specification say this is treated as a store by the MMU
5342 * but does not generate any exception
5346 /*** Segment register manipulation ***/
5347 /* Supervisor only: */
5350 static void gen_mfsr(DisasContext
*ctx
)
5352 #if defined(CONFIG_USER_ONLY)
5358 t0
= tcg_const_tl(SR(ctx
->opcode
));
5359 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5361 #endif /* defined(CONFIG_USER_ONLY) */
5365 static void gen_mfsrin(DisasContext
*ctx
)
5367 #if defined(CONFIG_USER_ONLY)
5373 t0
= tcg_temp_new();
5374 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
5375 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5377 #endif /* defined(CONFIG_USER_ONLY) */
5381 static void gen_mtsr(DisasContext
*ctx
)
5383 #if defined(CONFIG_USER_ONLY)
5389 t0
= tcg_const_tl(SR(ctx
->opcode
));
5390 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
5392 #endif /* defined(CONFIG_USER_ONLY) */
5396 static void gen_mtsrin(DisasContext
*ctx
)
5398 #if defined(CONFIG_USER_ONLY)
5404 t0
= tcg_temp_new();
5405 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
5406 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rD(ctx
->opcode
)]);
5408 #endif /* defined(CONFIG_USER_ONLY) */
5411 #if defined(TARGET_PPC64)
5412 /* Specific implementation for PowerPC 64 "bridge" emulation using SLB */
5415 static void gen_mfsr_64b(DisasContext
*ctx
)
5417 #if defined(CONFIG_USER_ONLY)
5423 t0
= tcg_const_tl(SR(ctx
->opcode
));
5424 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5426 #endif /* defined(CONFIG_USER_ONLY) */
5430 static void gen_mfsrin_64b(DisasContext
*ctx
)
5432 #if defined(CONFIG_USER_ONLY)
5438 t0
= tcg_temp_new();
5439 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
5440 gen_helper_load_sr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
5442 #endif /* defined(CONFIG_USER_ONLY) */
5446 static void gen_mtsr_64b(DisasContext
*ctx
)
5448 #if defined(CONFIG_USER_ONLY)
5454 t0
= tcg_const_tl(SR(ctx
->opcode
));
5455 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
5457 #endif /* defined(CONFIG_USER_ONLY) */
5461 static void gen_mtsrin_64b(DisasContext
*ctx
)
5463 #if defined(CONFIG_USER_ONLY)
5469 t0
= tcg_temp_new();
5470 tcg_gen_extract_tl(t0
, cpu_gpr
[rB(ctx
->opcode
)], 28, 4);
5471 gen_helper_store_sr(cpu_env
, t0
, cpu_gpr
[rS(ctx
->opcode
)]);
5473 #endif /* defined(CONFIG_USER_ONLY) */
5476 #endif /* defined(TARGET_PPC64) */
5478 /*** Lookaside buffer management ***/
5479 /* Optional & supervisor only: */
5482 static void gen_tlbia(DisasContext
*ctx
)
5484 #if defined(CONFIG_USER_ONLY)
5489 gen_helper_tlbia(cpu_env
);
5490 #endif /* defined(CONFIG_USER_ONLY) */
5494 static void gen_tlbsync(DisasContext
*ctx
)
5496 #if defined(CONFIG_USER_ONLY)
5501 CHK_SV(ctx
); /* If gtse is set then tlbsync is supervisor privileged */
5503 CHK_HV(ctx
); /* Else hypervisor privileged */
5506 /* BookS does both ptesync and tlbsync make tlbsync a nop for server */
5507 if (ctx
->insns_flags
& PPC_BOOKE
) {
5508 gen_check_tlb_flush(ctx
, true);
5510 #endif /* defined(CONFIG_USER_ONLY) */
5513 /*** External control ***/
5517 static void gen_eciwx(DisasContext
*ctx
)
5520 /* Should check EAR[E] ! */
5521 gen_set_access_type(ctx
, ACCESS_EXT
);
5522 t0
= tcg_temp_new();
5523 gen_addr_reg_index(ctx
, t0
);
5524 tcg_gen_qemu_ld_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, ctx
->mem_idx
,
5525 DEF_MEMOP(MO_UL
| MO_ALIGN
));
5530 static void gen_ecowx(DisasContext
*ctx
)
5533 /* Should check EAR[E] ! */
5534 gen_set_access_type(ctx
, ACCESS_EXT
);
5535 t0
= tcg_temp_new();
5536 gen_addr_reg_index(ctx
, t0
);
5537 tcg_gen_qemu_st_tl(cpu_gpr
[rD(ctx
->opcode
)], t0
, ctx
->mem_idx
,
5538 DEF_MEMOP(MO_UL
| MO_ALIGN
));
5542 /* 602 - 603 - G2 TLB management */
5545 static void gen_tlbld_6xx(DisasContext
*ctx
)
5547 #if defined(CONFIG_USER_ONLY)
5551 gen_helper_6xx_tlbd(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5552 #endif /* defined(CONFIG_USER_ONLY) */
5556 static void gen_tlbli_6xx(DisasContext
*ctx
)
5558 #if defined(CONFIG_USER_ONLY)
5562 gen_helper_6xx_tlbi(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5563 #endif /* defined(CONFIG_USER_ONLY) */
5566 /* BookE specific instructions */
5568 /* XXX: not implemented on 440 ? */
5569 static void gen_mfapidi(DisasContext
*ctx
)
5572 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5575 /* XXX: not implemented on 440 ? */
5576 static void gen_tlbiva(DisasContext
*ctx
)
5578 #if defined(CONFIG_USER_ONLY)
5584 t0
= tcg_temp_new();
5585 gen_addr_reg_index(ctx
, t0
);
5586 gen_helper_tlbiva(cpu_env
, cpu_gpr
[rB(ctx
->opcode
)]);
5588 #endif /* defined(CONFIG_USER_ONLY) */
5591 /* All 405 MAC instructions are translated here */
5592 static inline void gen_405_mulladd_insn(DisasContext
*ctx
, int opc2
, int opc3
,
5593 int ra
, int rb
, int rt
, int Rc
)
5597 t0
= tcg_temp_local_new();
5598 t1
= tcg_temp_local_new();
5600 switch (opc3
& 0x0D) {
5602 /* macchw - macchw. - macchwo - macchwo. */
5603 /* macchws - macchws. - macchwso - macchwso. */
5604 /* nmacchw - nmacchw. - nmacchwo - nmacchwo. */
5605 /* nmacchws - nmacchws. - nmacchwso - nmacchwso. */
5606 /* mulchw - mulchw. */
5607 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5608 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5609 tcg_gen_ext16s_tl(t1
, t1
);
5612 /* macchwu - macchwu. - macchwuo - macchwuo. */
5613 /* macchwsu - macchwsu. - macchwsuo - macchwsuo. */
5614 /* mulchwu - mulchwu. */
5615 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5616 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5617 tcg_gen_ext16u_tl(t1
, t1
);
5620 /* machhw - machhw. - machhwo - machhwo. */
5621 /* machhws - machhws. - machhwso - machhwso. */
5622 /* nmachhw - nmachhw. - nmachhwo - nmachhwo. */
5623 /* nmachhws - nmachhws. - nmachhwso - nmachhwso. */
5624 /* mulhhw - mulhhw. */
5625 tcg_gen_sari_tl(t0
, cpu_gpr
[ra
], 16);
5626 tcg_gen_ext16s_tl(t0
, t0
);
5627 tcg_gen_sari_tl(t1
, cpu_gpr
[rb
], 16);
5628 tcg_gen_ext16s_tl(t1
, t1
);
5631 /* machhwu - machhwu. - machhwuo - machhwuo. */
5632 /* machhwsu - machhwsu. - machhwsuo - machhwsuo. */
5633 /* mulhhwu - mulhhwu. */
5634 tcg_gen_shri_tl(t0
, cpu_gpr
[ra
], 16);
5635 tcg_gen_ext16u_tl(t0
, t0
);
5636 tcg_gen_shri_tl(t1
, cpu_gpr
[rb
], 16);
5637 tcg_gen_ext16u_tl(t1
, t1
);
5640 /* maclhw - maclhw. - maclhwo - maclhwo. */
5641 /* maclhws - maclhws. - maclhwso - maclhwso. */
5642 /* nmaclhw - nmaclhw. - nmaclhwo - nmaclhwo. */
5643 /* nmaclhws - nmaclhws. - nmaclhwso - nmaclhwso. */
5644 /* mullhw - mullhw. */
5645 tcg_gen_ext16s_tl(t0
, cpu_gpr
[ra
]);
5646 tcg_gen_ext16s_tl(t1
, cpu_gpr
[rb
]);
5649 /* maclhwu - maclhwu. - maclhwuo - maclhwuo. */
5650 /* maclhwsu - maclhwsu. - maclhwsuo - maclhwsuo. */
5651 /* mullhwu - mullhwu. */
5652 tcg_gen_ext16u_tl(t0
, cpu_gpr
[ra
]);
5653 tcg_gen_ext16u_tl(t1
, cpu_gpr
[rb
]);
5657 /* (n)multiply-and-accumulate (0x0C / 0x0E) */
5658 tcg_gen_mul_tl(t1
, t0
, t1
);
5660 /* nmultiply-and-accumulate (0x0E) */
5661 tcg_gen_sub_tl(t0
, cpu_gpr
[rt
], t1
);
5663 /* multiply-and-accumulate (0x0C) */
5664 tcg_gen_add_tl(t0
, cpu_gpr
[rt
], t1
);
5668 /* Check overflow and/or saturate */
5669 TCGLabel
*l1
= gen_new_label();
5672 /* Start with XER OV disabled, the most likely case */
5673 tcg_gen_movi_tl(cpu_ov
, 0);
5677 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t1
);
5678 tcg_gen_brcondi_tl(TCG_COND_GE
, t1
, 0, l1
);
5679 tcg_gen_xor_tl(t1
, cpu_gpr
[rt
], t0
);
5680 tcg_gen_brcondi_tl(TCG_COND_LT
, t1
, 0, l1
);
5683 tcg_gen_sari_tl(t0
, cpu_gpr
[rt
], 31);
5684 tcg_gen_xori_tl(t0
, t0
, 0x7fffffff);
5688 tcg_gen_brcond_tl(TCG_COND_GEU
, t0
, t1
, l1
);
5691 tcg_gen_movi_tl(t0
, UINT32_MAX
);
5695 /* Check overflow */
5696 tcg_gen_movi_tl(cpu_ov
, 1);
5697 tcg_gen_movi_tl(cpu_so
, 1);
5700 tcg_gen_mov_tl(cpu_gpr
[rt
], t0
);
5703 tcg_gen_mul_tl(cpu_gpr
[rt
], t0
, t1
);
5707 if (unlikely(Rc
) != 0) {
5709 gen_set_Rc0(ctx
, cpu_gpr
[rt
]);
5713 #define GEN_MAC_HANDLER(name, opc2, opc3) \
5714 static void glue(gen_, name)(DisasContext *ctx) \
5716 gen_405_mulladd_insn(ctx, opc2, opc3, rA(ctx->opcode), rB(ctx->opcode), \
5717 rD(ctx->opcode), Rc(ctx->opcode)); \
5720 /* macchw - macchw. */
5721 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05);
5722 /* macchwo - macchwo. */
5723 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15);
5724 /* macchws - macchws. */
5725 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07);
5726 /* macchwso - macchwso. */
5727 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17);
5728 /* macchwsu - macchwsu. */
5729 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06);
5730 /* macchwsuo - macchwsuo. */
5731 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16);
5732 /* macchwu - macchwu. */
5733 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04);
5734 /* macchwuo - macchwuo. */
5735 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14);
5736 /* machhw - machhw. */
5737 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01);
5738 /* machhwo - machhwo. */
5739 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11);
5740 /* machhws - machhws. */
5741 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03);
5742 /* machhwso - machhwso. */
5743 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13);
5744 /* machhwsu - machhwsu. */
5745 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02);
5746 /* machhwsuo - machhwsuo. */
5747 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12);
5748 /* machhwu - machhwu. */
5749 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00);
5750 /* machhwuo - machhwuo. */
5751 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10);
5752 /* maclhw - maclhw. */
5753 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D);
5754 /* maclhwo - maclhwo. */
5755 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D);
5756 /* maclhws - maclhws. */
5757 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F);
5758 /* maclhwso - maclhwso. */
5759 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F);
5760 /* maclhwu - maclhwu. */
5761 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C);
5762 /* maclhwuo - maclhwuo. */
5763 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C);
5764 /* maclhwsu - maclhwsu. */
5765 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E);
5766 /* maclhwsuo - maclhwsuo. */
5767 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E);
5768 /* nmacchw - nmacchw. */
5769 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05);
5770 /* nmacchwo - nmacchwo. */
5771 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15);
5772 /* nmacchws - nmacchws. */
5773 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07);
5774 /* nmacchwso - nmacchwso. */
5775 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17);
5776 /* nmachhw - nmachhw. */
5777 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01);
5778 /* nmachhwo - nmachhwo. */
5779 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11);
5780 /* nmachhws - nmachhws. */
5781 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03);
5782 /* nmachhwso - nmachhwso. */
5783 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13);
5784 /* nmaclhw - nmaclhw. */
5785 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D);
5786 /* nmaclhwo - nmaclhwo. */
5787 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D);
5788 /* nmaclhws - nmaclhws. */
5789 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F);
5790 /* nmaclhwso - nmaclhwso. */
5791 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F);
5793 /* mulchw - mulchw. */
5794 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05);
5795 /* mulchwu - mulchwu. */
5796 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04);
5797 /* mulhhw - mulhhw. */
5798 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01);
5799 /* mulhhwu - mulhhwu. */
5800 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00);
5801 /* mullhw - mullhw. */
5802 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D);
5803 /* mullhwu - mullhwu. */
5804 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C);
5807 static void gen_mfdcr(DisasContext
*ctx
)
5809 #if defined(CONFIG_USER_ONLY)
5815 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5816 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, dcrn
);
5817 tcg_temp_free(dcrn
);
5818 #endif /* defined(CONFIG_USER_ONLY) */
5822 static void gen_mtdcr(DisasContext
*ctx
)
5824 #if defined(CONFIG_USER_ONLY)
5830 dcrn
= tcg_const_tl(SPR(ctx
->opcode
));
5831 gen_helper_store_dcr(cpu_env
, dcrn
, cpu_gpr
[rS(ctx
->opcode
)]);
5832 tcg_temp_free(dcrn
);
5833 #endif /* defined(CONFIG_USER_ONLY) */
5837 /* XXX: not implemented on 440 ? */
5838 static void gen_mfdcrx(DisasContext
*ctx
)
5840 #if defined(CONFIG_USER_ONLY)
5844 gen_helper_load_dcr(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5845 cpu_gpr
[rA(ctx
->opcode
)]);
5846 /* Note: Rc update flag set leads to undefined state of Rc0 */
5847 #endif /* defined(CONFIG_USER_ONLY) */
5851 /* XXX: not implemented on 440 ? */
5852 static void gen_mtdcrx(DisasContext
*ctx
)
5854 #if defined(CONFIG_USER_ONLY)
5858 gen_helper_store_dcr(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
5859 cpu_gpr
[rS(ctx
->opcode
)]);
5860 /* Note: Rc update flag set leads to undefined state of Rc0 */
5861 #endif /* defined(CONFIG_USER_ONLY) */
5865 static void gen_dccci(DisasContext
*ctx
)
5868 /* interpreted as no-op */
5872 static void gen_dcread(DisasContext
*ctx
)
5874 #if defined(CONFIG_USER_ONLY)
5880 gen_set_access_type(ctx
, ACCESS_CACHE
);
5881 EA
= tcg_temp_new();
5882 gen_addr_reg_index(ctx
, EA
);
5883 val
= tcg_temp_new();
5884 gen_qemu_ld32u(ctx
, val
, EA
);
5886 tcg_gen_mov_tl(cpu_gpr
[rD(ctx
->opcode
)], EA
);
5888 #endif /* defined(CONFIG_USER_ONLY) */
5892 static void gen_icbt_40x(DisasContext
*ctx
)
5895 * interpreted as no-op
5896 * XXX: specification say this is treated as a load by the MMU but
5897 * does not generate any exception
5902 static void gen_iccci(DisasContext
*ctx
)
5905 /* interpreted as no-op */
5909 static void gen_icread(DisasContext
*ctx
)
5912 /* interpreted as no-op */
5915 /* rfci (supervisor only) */
5916 static void gen_rfci_40x(DisasContext
*ctx
)
5918 #if defined(CONFIG_USER_ONLY)
5922 /* Restore CPU state */
5923 gen_helper_40x_rfci(cpu_env
);
5924 ctx
->base
.is_jmp
= DISAS_EXIT
;
5925 #endif /* defined(CONFIG_USER_ONLY) */
5928 static void gen_rfci(DisasContext
*ctx
)
5930 #if defined(CONFIG_USER_ONLY)
5934 /* Restore CPU state */
5935 gen_helper_rfci(cpu_env
);
5936 ctx
->base
.is_jmp
= DISAS_EXIT
;
5937 #endif /* defined(CONFIG_USER_ONLY) */
5940 /* BookE specific */
5942 /* XXX: not implemented on 440 ? */
5943 static void gen_rfdi(DisasContext
*ctx
)
5945 #if defined(CONFIG_USER_ONLY)
5949 /* Restore CPU state */
5950 gen_helper_rfdi(cpu_env
);
5951 ctx
->base
.is_jmp
= DISAS_EXIT
;
5952 #endif /* defined(CONFIG_USER_ONLY) */
5955 /* XXX: not implemented on 440 ? */
5956 static void gen_rfmci(DisasContext
*ctx
)
5958 #if defined(CONFIG_USER_ONLY)
5962 /* Restore CPU state */
5963 gen_helper_rfmci(cpu_env
);
5964 ctx
->base
.is_jmp
= DISAS_EXIT
;
5965 #endif /* defined(CONFIG_USER_ONLY) */
5968 /* TLB management - PowerPC 405 implementation */
5971 static void gen_tlbre_40x(DisasContext
*ctx
)
5973 #if defined(CONFIG_USER_ONLY)
5977 switch (rB(ctx
->opcode
)) {
5979 gen_helper_4xx_tlbre_hi(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5980 cpu_gpr
[rA(ctx
->opcode
)]);
5983 gen_helper_4xx_tlbre_lo(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
5984 cpu_gpr
[rA(ctx
->opcode
)]);
5987 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
5990 #endif /* defined(CONFIG_USER_ONLY) */
5993 /* tlbsx - tlbsx. */
5994 static void gen_tlbsx_40x(DisasContext
*ctx
)
5996 #if defined(CONFIG_USER_ONLY)
6002 t0
= tcg_temp_new();
6003 gen_addr_reg_index(ctx
, t0
);
6004 gen_helper_4xx_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
6006 if (Rc(ctx
->opcode
)) {
6007 TCGLabel
*l1
= gen_new_label();
6008 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
6009 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6010 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6013 #endif /* defined(CONFIG_USER_ONLY) */
6017 static void gen_tlbwe_40x(DisasContext
*ctx
)
6019 #if defined(CONFIG_USER_ONLY)
6024 switch (rB(ctx
->opcode
)) {
6026 gen_helper_4xx_tlbwe_hi(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6027 cpu_gpr
[rS(ctx
->opcode
)]);
6030 gen_helper_4xx_tlbwe_lo(cpu_env
, cpu_gpr
[rA(ctx
->opcode
)],
6031 cpu_gpr
[rS(ctx
->opcode
)]);
6034 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6037 #endif /* defined(CONFIG_USER_ONLY) */
6040 /* TLB management - PowerPC 440 implementation */
6043 static void gen_tlbre_440(DisasContext
*ctx
)
6045 #if defined(CONFIG_USER_ONLY)
6050 switch (rB(ctx
->opcode
)) {
6055 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6056 gen_helper_440_tlbre(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
,
6057 t0
, cpu_gpr
[rA(ctx
->opcode
)]);
6058 tcg_temp_free_i32(t0
);
6062 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6065 #endif /* defined(CONFIG_USER_ONLY) */
6068 /* tlbsx - tlbsx. */
6069 static void gen_tlbsx_440(DisasContext
*ctx
)
6071 #if defined(CONFIG_USER_ONLY)
6077 t0
= tcg_temp_new();
6078 gen_addr_reg_index(ctx
, t0
);
6079 gen_helper_440_tlbsx(cpu_gpr
[rD(ctx
->opcode
)], cpu_env
, t0
);
6081 if (Rc(ctx
->opcode
)) {
6082 TCGLabel
*l1
= gen_new_label();
6083 tcg_gen_trunc_tl_i32(cpu_crf
[0], cpu_so
);
6084 tcg_gen_brcondi_tl(TCG_COND_EQ
, cpu_gpr
[rD(ctx
->opcode
)], -1, l1
);
6085 tcg_gen_ori_i32(cpu_crf
[0], cpu_crf
[0], 0x02);
6088 #endif /* defined(CONFIG_USER_ONLY) */
6092 static void gen_tlbwe_440(DisasContext
*ctx
)
6094 #if defined(CONFIG_USER_ONLY)
6098 switch (rB(ctx
->opcode
)) {
6103 TCGv_i32 t0
= tcg_const_i32(rB(ctx
->opcode
));
6104 gen_helper_440_tlbwe(cpu_env
, t0
, cpu_gpr
[rA(ctx
->opcode
)],
6105 cpu_gpr
[rS(ctx
->opcode
)]);
6106 tcg_temp_free_i32(t0
);
6110 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6113 #endif /* defined(CONFIG_USER_ONLY) */
6116 /* TLB management - PowerPC BookE 2.06 implementation */
6119 static void gen_tlbre_booke206(DisasContext
*ctx
)
6121 #if defined(CONFIG_USER_ONLY)
6125 gen_helper_booke206_tlbre(cpu_env
);
6126 #endif /* defined(CONFIG_USER_ONLY) */
6129 /* tlbsx - tlbsx. */
6130 static void gen_tlbsx_booke206(DisasContext
*ctx
)
6132 #if defined(CONFIG_USER_ONLY)
6138 if (rA(ctx
->opcode
)) {
6139 t0
= tcg_temp_new();
6140 tcg_gen_mov_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)]);
6142 t0
= tcg_const_tl(0);
6145 tcg_gen_add_tl(t0
, t0
, cpu_gpr
[rB(ctx
->opcode
)]);
6146 gen_helper_booke206_tlbsx(cpu_env
, t0
);
6148 #endif /* defined(CONFIG_USER_ONLY) */
6152 static void gen_tlbwe_booke206(DisasContext
*ctx
)
6154 #if defined(CONFIG_USER_ONLY)
6158 gen_helper_booke206_tlbwe(cpu_env
);
6159 #endif /* defined(CONFIG_USER_ONLY) */
6162 static void gen_tlbivax_booke206(DisasContext
*ctx
)
6164 #if defined(CONFIG_USER_ONLY)
6170 t0
= tcg_temp_new();
6171 gen_addr_reg_index(ctx
, t0
);
6172 gen_helper_booke206_tlbivax(cpu_env
, t0
);
6174 #endif /* defined(CONFIG_USER_ONLY) */
6177 static void gen_tlbilx_booke206(DisasContext
*ctx
)
6179 #if defined(CONFIG_USER_ONLY)
6185 t0
= tcg_temp_new();
6186 gen_addr_reg_index(ctx
, t0
);
6188 switch ((ctx
->opcode
>> 21) & 0x3) {
6190 gen_helper_booke206_tlbilx0(cpu_env
, t0
);
6193 gen_helper_booke206_tlbilx1(cpu_env
, t0
);
6196 gen_helper_booke206_tlbilx3(cpu_env
, t0
);
6199 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6204 #endif /* defined(CONFIG_USER_ONLY) */
6208 static void gen_wrtee(DisasContext
*ctx
)
6210 #if defined(CONFIG_USER_ONLY)
6216 t0
= tcg_temp_new();
6217 tcg_gen_andi_tl(t0
, cpu_gpr
[rD(ctx
->opcode
)], (1 << MSR_EE
));
6218 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6219 tcg_gen_or_tl(cpu_msr
, cpu_msr
, t0
);
6220 gen_ppc_maybe_interrupt(ctx
);
6223 * Stop translation to have a chance to raise an exception if we
6224 * just set msr_ee to 1
6226 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
6227 #endif /* defined(CONFIG_USER_ONLY) */
6231 static void gen_wrteei(DisasContext
*ctx
)
6233 #if defined(CONFIG_USER_ONLY)
6237 if (ctx
->opcode
& 0x00008000) {
6238 tcg_gen_ori_tl(cpu_msr
, cpu_msr
, (1 << MSR_EE
));
6239 gen_ppc_maybe_interrupt(ctx
);
6240 /* Stop translation to have a chance to raise an exception */
6241 ctx
->base
.is_jmp
= DISAS_EXIT_UPDATE
;
6243 tcg_gen_andi_tl(cpu_msr
, cpu_msr
, ~(1 << MSR_EE
));
6245 #endif /* defined(CONFIG_USER_ONLY) */
6248 /* PowerPC 440 specific instructions */
6251 static void gen_dlmzb(DisasContext
*ctx
)
6253 TCGv_i32 t0
= tcg_const_i32(Rc(ctx
->opcode
));
6254 gen_helper_dlmzb(cpu_gpr
[rA(ctx
->opcode
)], cpu_env
,
6255 cpu_gpr
[rS(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)], t0
);
6256 tcg_temp_free_i32(t0
);
6259 /* mbar replaces eieio on 440 */
6260 static void gen_mbar(DisasContext
*ctx
)
6262 /* interpreted as no-op */
6265 /* msync replaces sync on 440 */
6266 static void gen_msync_4xx(DisasContext
*ctx
)
6268 /* Only e500 seems to treat reserved bits as invalid */
6269 if ((ctx
->insns_flags2
& PPC2_BOOKE206
) &&
6270 (ctx
->opcode
& 0x03FFF801)) {
6271 gen_inval_exception(ctx
, POWERPC_EXCP_INVAL_INVAL
);
6273 /* otherwise interpreted as no-op */
6277 static void gen_icbt_440(DisasContext
*ctx
)
6280 * interpreted as no-op
6281 * XXX: specification say this is treated as a load by the MMU but
6282 * does not generate any exception
6286 #if defined(TARGET_PPC64)
6287 static void gen_maddld(DisasContext
*ctx
)
6289 TCGv_i64 t1
= tcg_temp_new_i64();
6291 tcg_gen_mul_i64(t1
, cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rB(ctx
->opcode
)]);
6292 tcg_gen_add_i64(cpu_gpr
[rD(ctx
->opcode
)], t1
, cpu_gpr
[rC(ctx
->opcode
)]);
6293 tcg_temp_free_i64(t1
);
6296 /* maddhd maddhdu */
6297 static void gen_maddhd_maddhdu(DisasContext
*ctx
)
6299 TCGv_i64 lo
= tcg_temp_new_i64();
6300 TCGv_i64 hi
= tcg_temp_new_i64();
6301 TCGv_i64 t1
= tcg_temp_new_i64();
6303 if (Rc(ctx
->opcode
)) {
6304 tcg_gen_mulu2_i64(lo
, hi
, cpu_gpr
[rA(ctx
->opcode
)],
6305 cpu_gpr
[rB(ctx
->opcode
)]);
6306 tcg_gen_movi_i64(t1
, 0);
6308 tcg_gen_muls2_i64(lo
, hi
, cpu_gpr
[rA(ctx
->opcode
)],
6309 cpu_gpr
[rB(ctx
->opcode
)]);
6310 tcg_gen_sari_i64(t1
, cpu_gpr
[rC(ctx
->opcode
)], 63);
6312 tcg_gen_add2_i64(t1
, cpu_gpr
[rD(ctx
->opcode
)], lo
, hi
,
6313 cpu_gpr
[rC(ctx
->opcode
)], t1
);
6314 tcg_temp_free_i64(lo
);
6315 tcg_temp_free_i64(hi
);
6316 tcg_temp_free_i64(t1
);
6318 #endif /* defined(TARGET_PPC64) */
6320 static void gen_tbegin(DisasContext
*ctx
)
6322 if (unlikely(!ctx
->tm_enabled
)) {
6323 gen_exception_err(ctx
, POWERPC_EXCP_FU
, FSCR_IC_TM
);
6326 gen_helper_tbegin(cpu_env
);
6329 #define GEN_TM_NOOP(name) \
6330 static inline void gen_##name(DisasContext *ctx) \
6332 if (unlikely(!ctx->tm_enabled)) { \
6333 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6337 * Because tbegin always fails in QEMU, these user \
6338 * space instructions all have a simple implementation: \
6340 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6341 * = 0b0 || 0b00 || 0b0 \
6343 tcg_gen_movi_i32(cpu_crf[0], 0); \
6347 GEN_TM_NOOP(tabort
);
6348 GEN_TM_NOOP(tabortwc
);
6349 GEN_TM_NOOP(tabortwci
);
6350 GEN_TM_NOOP(tabortdc
);
6351 GEN_TM_NOOP(tabortdci
);
6354 static inline void gen_cp_abort(DisasContext
*ctx
)
6359 #define GEN_CP_PASTE_NOOP(name) \
6360 static inline void gen_##name(DisasContext *ctx) \
6363 * Generate invalid exception until we have an \
6364 * implementation of the copy paste facility \
6369 GEN_CP_PASTE_NOOP(copy
)
6370 GEN_CP_PASTE_NOOP(paste
)
6372 static void gen_tcheck(DisasContext
*ctx
)
6374 if (unlikely(!ctx
->tm_enabled
)) {
6375 gen_exception_err(ctx
, POWERPC_EXCP_FU
, FSCR_IC_TM
);
6379 * Because tbegin always fails, the tcheck implementation is
6382 * CR[CRF] = TDOOMED || MSR[TS] || 0b0
6383 * = 0b1 || 0b00 || 0b0
6385 tcg_gen_movi_i32(cpu_crf
[crfD(ctx
->opcode
)], 0x8);
6388 #if defined(CONFIG_USER_ONLY)
6389 #define GEN_TM_PRIV_NOOP(name) \
6390 static inline void gen_##name(DisasContext *ctx) \
6392 gen_priv_opc(ctx); \
6397 #define GEN_TM_PRIV_NOOP(name) \
6398 static inline void gen_##name(DisasContext *ctx) \
6401 if (unlikely(!ctx->tm_enabled)) { \
6402 gen_exception_err(ctx, POWERPC_EXCP_FU, FSCR_IC_TM); \
6406 * Because tbegin always fails, the implementation is \
6409 * CR[0] = 0b0 || MSR[TS] || 0b0 \
6410 * = 0b0 || 0b00 | 0b0 \
6412 tcg_gen_movi_i32(cpu_crf[0], 0); \
6417 GEN_TM_PRIV_NOOP(treclaim
);
6418 GEN_TM_PRIV_NOOP(trechkpt
);
6420 static inline void get_fpr(TCGv_i64 dst
, int regno
)
6422 tcg_gen_ld_i64(dst
, cpu_env
, fpr_offset(regno
));
6425 static inline void set_fpr(int regno
, TCGv_i64 src
)
6427 tcg_gen_st_i64(src
, cpu_env
, fpr_offset(regno
));
6429 * Before PowerISA v3.1 the result of doubleword 1 of the VSR
6430 * corresponding to the target FPR was undefined. However,
6431 * most (if not all) real hardware were setting the result to 0.
6432 * Starting at ISA v3.1, the result for doubleword 1 is now defined
6435 tcg_gen_st_i64(tcg_constant_i64(0), cpu_env
, vsr64_offset(regno
, false));
6438 static inline void get_avr64(TCGv_i64 dst
, int regno
, bool high
)
6440 tcg_gen_ld_i64(dst
, cpu_env
, avr64_offset(regno
, high
));
6443 static inline void set_avr64(int regno
, TCGv_i64 src
, bool high
)
6445 tcg_gen_st_i64(src
, cpu_env
, avr64_offset(regno
, high
));
6449 * Helpers for decodetree used by !function for decoding arguments.
6451 static int times_2(DisasContext
*ctx
, int x
)
6456 static int times_4(DisasContext
*ctx
, int x
)
6461 static int times_16(DisasContext
*ctx
, int x
)
6466 static int64_t dw_compose_ea(DisasContext
*ctx
, int x
)
6468 return deposit64(0xfffffffffffffe00, 3, 6, x
);
6472 * Helpers for trans_* functions to check for specific insns flags.
6473 * Use token pasting to ensure that we use the proper flag with the
6476 #define REQUIRE_INSNS_FLAGS(CTX, NAME) \
6478 if (((CTX)->insns_flags & PPC_##NAME) == 0) { \
6483 #define REQUIRE_INSNS_FLAGS2(CTX, NAME) \
6485 if (((CTX)->insns_flags2 & PPC2_##NAME) == 0) { \
6490 /* Then special-case the check for 64-bit so that we elide code for ppc32. */
6491 #if TARGET_LONG_BITS == 32
6492 # define REQUIRE_64BIT(CTX) return false
6494 # define REQUIRE_64BIT(CTX) REQUIRE_INSNS_FLAGS(CTX, 64B)
6497 #define REQUIRE_VECTOR(CTX) \
6499 if (unlikely(!(CTX)->altivec_enabled)) { \
6500 gen_exception((CTX), POWERPC_EXCP_VPU); \
6505 #define REQUIRE_VSX(CTX) \
6507 if (unlikely(!(CTX)->vsx_enabled)) { \
6508 gen_exception((CTX), POWERPC_EXCP_VSXU); \
6513 #define REQUIRE_FPU(ctx) \
6515 if (unlikely(!(ctx)->fpu_enabled)) { \
6516 gen_exception((ctx), POWERPC_EXCP_FPU); \
6521 #if !defined(CONFIG_USER_ONLY)
6522 #define REQUIRE_SV(CTX) \
6524 if (unlikely((CTX)->pr)) { \
6525 gen_priv_opc(CTX); \
6530 #define REQUIRE_HV(CTX) \
6532 if (unlikely((CTX)->pr || !(CTX)->hv)) { \
6533 gen_priv_opc(CTX); \
6538 #define REQUIRE_SV(CTX) do { gen_priv_opc(CTX); return true; } while (0)
6539 #define REQUIRE_HV(CTX) do { gen_priv_opc(CTX); return true; } while (0)
6543 * Helpers for implementing sets of trans_* functions.
6544 * Defer the implementation of NAME to FUNC, with optional extra arguments.
6546 #define TRANS(NAME, FUNC, ...) \
6547 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
6548 { return FUNC(ctx, a, __VA_ARGS__); }
6549 #define TRANS_FLAGS(FLAGS, NAME, FUNC, ...) \
6550 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
6552 REQUIRE_INSNS_FLAGS(ctx, FLAGS); \
6553 return FUNC(ctx, a, __VA_ARGS__); \
6555 #define TRANS_FLAGS2(FLAGS2, NAME, FUNC, ...) \
6556 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
6558 REQUIRE_INSNS_FLAGS2(ctx, FLAGS2); \
6559 return FUNC(ctx, a, __VA_ARGS__); \
6562 #define TRANS64(NAME, FUNC, ...) \
6563 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
6564 { REQUIRE_64BIT(ctx); return FUNC(ctx, a, __VA_ARGS__); }
6565 #define TRANS64_FLAGS2(FLAGS2, NAME, FUNC, ...) \
6566 static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
6568 REQUIRE_64BIT(ctx); \
6569 REQUIRE_INSNS_FLAGS2(ctx, FLAGS2); \
6570 return FUNC(ctx, a, __VA_ARGS__); \
6573 /* TODO: More TRANS* helpers for extra insn_flags checks. */
6576 #include "decode-insn32.c.inc"
6577 #include "decode-insn64.c.inc"
6578 #include "power8-pmu-regs.c.inc"
6581 * Incorporate CIA into the constant when R=1.
6582 * Validate that when R=1, RA=0.
6584 static bool resolve_PLS_D(DisasContext
*ctx
, arg_D
*d
, arg_PLS_D
*a
)
6590 if (unlikely(a
->ra
!= 0)) {
6599 #include "translate/fixedpoint-impl.c.inc"
6601 #include "translate/fp-impl.c.inc"
6603 #include "translate/vmx-impl.c.inc"
6605 #include "translate/vsx-impl.c.inc"
6607 #include "translate/dfp-impl.c.inc"
6609 #include "translate/spe-impl.c.inc"
6611 #include "translate/branch-impl.c.inc"
6613 #include "translate/processor-ctrl-impl.c.inc"
6615 #include "translate/storage-ctrl-impl.c.inc"
6618 static void gen_dform39(DisasContext
*ctx
)
6620 if ((ctx
->opcode
& 0x3) == 0) {
6621 if (ctx
->insns_flags2
& PPC2_ISA205
) {
6622 return gen_lfdp(ctx
);
6625 return gen_invalid(ctx
);
6629 static void gen_dform3D(DisasContext
*ctx
)
6631 if ((ctx
->opcode
& 3) == 0) { /* DS-FORM */
6633 if (ctx
->insns_flags2
& PPC2_ISA205
) {
6634 return gen_stfdp(ctx
);
6637 return gen_invalid(ctx
);
6640 #if defined(TARGET_PPC64)
6642 static void gen_brd(DisasContext
*ctx
)
6644 tcg_gen_bswap64_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
6648 static void gen_brw(DisasContext
*ctx
)
6650 tcg_gen_bswap64_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rS(ctx
->opcode
)]);
6651 tcg_gen_rotli_i64(cpu_gpr
[rA(ctx
->opcode
)], cpu_gpr
[rA(ctx
->opcode
)], 32);
6656 static void gen_brh(DisasContext
*ctx
)
6658 TCGv_i64 mask
= tcg_constant_i64(0x00ff00ff00ff00ffull
);
6659 TCGv_i64 t1
= tcg_temp_new_i64();
6660 TCGv_i64 t2
= tcg_temp_new_i64();
6662 tcg_gen_shri_i64(t1
, cpu_gpr
[rS(ctx
->opcode
)], 8);
6663 tcg_gen_and_i64(t2
, t1
, mask
);
6664 tcg_gen_and_i64(t1
, cpu_gpr
[rS(ctx
->opcode
)], mask
);
6665 tcg_gen_shli_i64(t1
, t1
, 8);
6666 tcg_gen_or_i64(cpu_gpr
[rA(ctx
->opcode
)], t1
, t2
);
6668 tcg_temp_free_i64(t1
);
6669 tcg_temp_free_i64(t2
);
6673 static opcode_t opcodes
[] = {
6674 #if defined(TARGET_PPC64)
6675 GEN_HANDLER_E(brd
, 0x1F, 0x1B, 0x05, 0x0000F801, PPC_NONE
, PPC2_ISA310
),
6676 GEN_HANDLER_E(brw
, 0x1F, 0x1B, 0x04, 0x0000F801, PPC_NONE
, PPC2_ISA310
),
6677 GEN_HANDLER_E(brh
, 0x1F, 0x1B, 0x06, 0x0000F801, PPC_NONE
, PPC2_ISA310
),
6679 GEN_HANDLER(invalid
, 0x00, 0x00, 0x00, 0xFFFFFFFF, PPC_NONE
),
6680 #if defined(TARGET_PPC64)
6681 GEN_HANDLER_E(cmpeqb
, 0x1F, 0x00, 0x07, 0x00600000, PPC_NONE
, PPC2_ISA300
),
6683 GEN_HANDLER_E(cmpb
, 0x1F, 0x1C, 0x0F, 0x00000001, PPC_NONE
, PPC2_ISA205
),
6684 GEN_HANDLER_E(cmprb
, 0x1F, 0x00, 0x06, 0x00400001, PPC_NONE
, PPC2_ISA300
),
6685 GEN_HANDLER(isel
, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL
),
6686 GEN_HANDLER(addic
, 0x0C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6687 GEN_HANDLER2(addic_
, "addic.", 0x0D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6688 GEN_HANDLER(mulhw
, 0x1F, 0x0B, 0x02, 0x00000400, PPC_INTEGER
),
6689 GEN_HANDLER(mulhwu
, 0x1F, 0x0B, 0x00, 0x00000400, PPC_INTEGER
),
6690 GEN_HANDLER(mullw
, 0x1F, 0x0B, 0x07, 0x00000000, PPC_INTEGER
),
6691 GEN_HANDLER(mullwo
, 0x1F, 0x0B, 0x17, 0x00000000, PPC_INTEGER
),
6692 GEN_HANDLER(mulli
, 0x07, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6693 #if defined(TARGET_PPC64)
6694 GEN_HANDLER(mulld
, 0x1F, 0x09, 0x07, 0x00000000, PPC_64B
),
6696 GEN_HANDLER(neg
, 0x1F, 0x08, 0x03, 0x0000F800, PPC_INTEGER
),
6697 GEN_HANDLER(nego
, 0x1F, 0x08, 0x13, 0x0000F800, PPC_INTEGER
),
6698 GEN_HANDLER(subfic
, 0x08, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6699 GEN_HANDLER2(andi_
, "andi.", 0x1C, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6700 GEN_HANDLER2(andis_
, "andis.", 0x1D, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6701 GEN_HANDLER(cntlzw
, 0x1F, 0x1A, 0x00, 0x00000000, PPC_INTEGER
),
6702 GEN_HANDLER_E(cnttzw
, 0x1F, 0x1A, 0x10, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6703 GEN_HANDLER_E(copy
, 0x1F, 0x06, 0x18, 0x03C00001, PPC_NONE
, PPC2_ISA300
),
6704 GEN_HANDLER_E(cp_abort
, 0x1F, 0x06, 0x1A, 0x03FFF801, PPC_NONE
, PPC2_ISA300
),
6705 GEN_HANDLER_E(paste
, 0x1F, 0x06, 0x1C, 0x03C00000, PPC_NONE
, PPC2_ISA300
),
6706 GEN_HANDLER(or, 0x1F, 0x1C, 0x0D, 0x00000000, PPC_INTEGER
),
6707 GEN_HANDLER(xor, 0x1F, 0x1C, 0x09, 0x00000000, PPC_INTEGER
),
6708 GEN_HANDLER(ori
, 0x18, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6709 GEN_HANDLER(oris
, 0x19, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6710 GEN_HANDLER(xori
, 0x1A, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6711 GEN_HANDLER(xoris
, 0x1B, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6712 GEN_HANDLER(popcntb
, 0x1F, 0x1A, 0x03, 0x0000F801, PPC_POPCNTB
),
6713 GEN_HANDLER(popcntw
, 0x1F, 0x1A, 0x0b, 0x0000F801, PPC_POPCNTWD
),
6714 GEN_HANDLER_E(prtyw
, 0x1F, 0x1A, 0x04, 0x0000F801, PPC_NONE
, PPC2_ISA205
),
6715 #if defined(TARGET_PPC64)
6716 GEN_HANDLER(popcntd
, 0x1F, 0x1A, 0x0F, 0x0000F801, PPC_POPCNTWD
),
6717 GEN_HANDLER(cntlzd
, 0x1F, 0x1A, 0x01, 0x00000000, PPC_64B
),
6718 GEN_HANDLER_E(cnttzd
, 0x1F, 0x1A, 0x11, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6719 GEN_HANDLER_E(darn
, 0x1F, 0x13, 0x17, 0x001CF801, PPC_NONE
, PPC2_ISA300
),
6720 GEN_HANDLER_E(prtyd
, 0x1F, 0x1A, 0x05, 0x0000F801, PPC_NONE
, PPC2_ISA205
),
6721 GEN_HANDLER_E(bpermd
, 0x1F, 0x1C, 0x07, 0x00000001, PPC_NONE
, PPC2_PERM_ISA206
),
6723 GEN_HANDLER(rlwimi
, 0x14, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6724 GEN_HANDLER(rlwinm
, 0x15, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6725 GEN_HANDLER(rlwnm
, 0x17, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6726 GEN_HANDLER(slw
, 0x1F, 0x18, 0x00, 0x00000000, PPC_INTEGER
),
6727 GEN_HANDLER(sraw
, 0x1F, 0x18, 0x18, 0x00000000, PPC_INTEGER
),
6728 GEN_HANDLER(srawi
, 0x1F, 0x18, 0x19, 0x00000000, PPC_INTEGER
),
6729 GEN_HANDLER(srw
, 0x1F, 0x18, 0x10, 0x00000000, PPC_INTEGER
),
6730 #if defined(TARGET_PPC64)
6731 GEN_HANDLER(sld
, 0x1F, 0x1B, 0x00, 0x00000000, PPC_64B
),
6732 GEN_HANDLER(srad
, 0x1F, 0x1A, 0x18, 0x00000000, PPC_64B
),
6733 GEN_HANDLER2(sradi0
, "sradi", 0x1F, 0x1A, 0x19, 0x00000000, PPC_64B
),
6734 GEN_HANDLER2(sradi1
, "sradi", 0x1F, 0x1B, 0x19, 0x00000000, PPC_64B
),
6735 GEN_HANDLER(srd
, 0x1F, 0x1B, 0x10, 0x00000000, PPC_64B
),
6736 GEN_HANDLER2_E(extswsli0
, "extswsli", 0x1F, 0x1A, 0x1B, 0x00000000,
6737 PPC_NONE
, PPC2_ISA300
),
6738 GEN_HANDLER2_E(extswsli1
, "extswsli", 0x1F, 0x1B, 0x1B, 0x00000000,
6739 PPC_NONE
, PPC2_ISA300
),
6741 /* handles lfdp, lxsd, lxssp */
6742 GEN_HANDLER_E(dform39
, 0x39, 0xFF, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA205
),
6743 /* handles stfdp, stxsd, stxssp */
6744 GEN_HANDLER_E(dform3D
, 0x3D, 0xFF, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA205
),
6745 GEN_HANDLER(lmw
, 0x2E, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6746 GEN_HANDLER(stmw
, 0x2F, 0xFF, 0xFF, 0x00000000, PPC_INTEGER
),
6747 GEN_HANDLER(lswi
, 0x1F, 0x15, 0x12, 0x00000001, PPC_STRING
),
6748 GEN_HANDLER(lswx
, 0x1F, 0x15, 0x10, 0x00000001, PPC_STRING
),
6749 GEN_HANDLER(stswi
, 0x1F, 0x15, 0x16, 0x00000001, PPC_STRING
),
6750 GEN_HANDLER(stswx
, 0x1F, 0x15, 0x14, 0x00000001, PPC_STRING
),
6751 GEN_HANDLER(eieio
, 0x1F, 0x16, 0x1A, 0x01FFF801, PPC_MEM_EIEIO
),
6752 GEN_HANDLER(isync
, 0x13, 0x16, 0x04, 0x03FFF801, PPC_MEM
),
6753 GEN_HANDLER_E(lbarx
, 0x1F, 0x14, 0x01, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6754 GEN_HANDLER_E(lharx
, 0x1F, 0x14, 0x03, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6755 GEN_HANDLER(lwarx
, 0x1F, 0x14, 0x00, 0x00000000, PPC_RES
),
6756 GEN_HANDLER_E(lwat
, 0x1F, 0x06, 0x12, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6757 GEN_HANDLER_E(stwat
, 0x1F, 0x06, 0x16, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6758 GEN_HANDLER_E(stbcx_
, 0x1F, 0x16, 0x15, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6759 GEN_HANDLER_E(sthcx_
, 0x1F, 0x16, 0x16, 0, PPC_NONE
, PPC2_ATOMIC_ISA206
),
6760 GEN_HANDLER2(stwcx_
, "stwcx.", 0x1F, 0x16, 0x04, 0x00000000, PPC_RES
),
6761 #if defined(TARGET_PPC64)
6762 GEN_HANDLER_E(ldat
, 0x1F, 0x06, 0x13, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6763 GEN_HANDLER_E(stdat
, 0x1F, 0x06, 0x17, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6764 GEN_HANDLER(ldarx
, 0x1F, 0x14, 0x02, 0x00000000, PPC_64B
),
6765 GEN_HANDLER_E(lqarx
, 0x1F, 0x14, 0x08, 0, PPC_NONE
, PPC2_LSQ_ISA207
),
6766 GEN_HANDLER2(stdcx_
, "stdcx.", 0x1F, 0x16, 0x06, 0x00000000, PPC_64B
),
6767 GEN_HANDLER_E(stqcx_
, 0x1F, 0x16, 0x05, 0, PPC_NONE
, PPC2_LSQ_ISA207
),
6769 GEN_HANDLER(sync
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_MEM_SYNC
),
6770 /* ISA v3.0 changed the extended opcode from 62 to 30 */
6771 GEN_HANDLER(wait
, 0x1F, 0x1E, 0x01, 0x039FF801, PPC_WAIT
),
6772 GEN_HANDLER_E(wait
, 0x1F, 0x1E, 0x00, 0x039CF801, PPC_NONE
, PPC2_ISA300
),
6773 GEN_HANDLER(b
, 0x12, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6774 GEN_HANDLER(bc
, 0x10, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6775 GEN_HANDLER(bcctr
, 0x13, 0x10, 0x10, 0x00000000, PPC_FLOW
),
6776 GEN_HANDLER(bclr
, 0x13, 0x10, 0x00, 0x00000000, PPC_FLOW
),
6777 GEN_HANDLER_E(bctar
, 0x13, 0x10, 0x11, 0x0000E000, PPC_NONE
, PPC2_BCTAR_ISA207
),
6778 GEN_HANDLER(mcrf
, 0x13, 0x00, 0xFF, 0x00000001, PPC_INTEGER
),
6779 GEN_HANDLER(rfi
, 0x13, 0x12, 0x01, 0x03FF8001, PPC_FLOW
),
6780 #if defined(TARGET_PPC64)
6781 GEN_HANDLER(rfid
, 0x13, 0x12, 0x00, 0x03FF8001, PPC_64B
),
6782 #if !defined(CONFIG_USER_ONLY)
6783 /* Top bit of opc2 corresponds with low bit of LEV, so use two handlers */
6784 GEN_HANDLER_E(scv
, 0x11, 0x10, 0xFF, 0x03FFF01E, PPC_NONE
, PPC2_ISA300
),
6785 GEN_HANDLER_E(scv
, 0x11, 0x00, 0xFF, 0x03FFF01E, PPC_NONE
, PPC2_ISA300
),
6786 GEN_HANDLER_E(rfscv
, 0x13, 0x12, 0x02, 0x03FF8001, PPC_NONE
, PPC2_ISA300
),
6788 GEN_HANDLER_E(stop
, 0x13, 0x12, 0x0b, 0x03FFF801, PPC_NONE
, PPC2_ISA300
),
6789 GEN_HANDLER_E(doze
, 0x13, 0x12, 0x0c, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6790 GEN_HANDLER_E(nap
, 0x13, 0x12, 0x0d, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6791 GEN_HANDLER_E(sleep
, 0x13, 0x12, 0x0e, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6792 GEN_HANDLER_E(rvwinkle
, 0x13, 0x12, 0x0f, 0x03FFF801, PPC_NONE
, PPC2_PM_ISA206
),
6793 GEN_HANDLER(hrfid
, 0x13, 0x12, 0x08, 0x03FF8001, PPC_64H
),
6795 /* Top bit of opc2 corresponds with low bit of LEV, so use two handlers */
6796 GEN_HANDLER(sc
, 0x11, 0x11, 0xFF, 0x03FFF01D, PPC_FLOW
),
6797 GEN_HANDLER(sc
, 0x11, 0x01, 0xFF, 0x03FFF01D, PPC_FLOW
),
6798 GEN_HANDLER(tw
, 0x1F, 0x04, 0x00, 0x00000001, PPC_FLOW
),
6799 GEN_HANDLER(twi
, 0x03, 0xFF, 0xFF, 0x00000000, PPC_FLOW
),
6800 #if defined(TARGET_PPC64)
6801 GEN_HANDLER(td
, 0x1F, 0x04, 0x02, 0x00000001, PPC_64B
),
6802 GEN_HANDLER(tdi
, 0x02, 0xFF, 0xFF, 0x00000000, PPC_64B
),
6804 GEN_HANDLER(mcrxr
, 0x1F, 0x00, 0x10, 0x007FF801, PPC_MISC
),
6805 GEN_HANDLER(mfcr
, 0x1F, 0x13, 0x00, 0x00000801, PPC_MISC
),
6806 GEN_HANDLER(mfmsr
, 0x1F, 0x13, 0x02, 0x001FF801, PPC_MISC
),
6807 GEN_HANDLER(mfspr
, 0x1F, 0x13, 0x0A, 0x00000001, PPC_MISC
),
6808 GEN_HANDLER(mftb
, 0x1F, 0x13, 0x0B, 0x00000001, PPC_MFTB
),
6809 GEN_HANDLER(mtcrf
, 0x1F, 0x10, 0x04, 0x00000801, PPC_MISC
),
6810 #if defined(TARGET_PPC64)
6811 GEN_HANDLER(mtmsrd
, 0x1F, 0x12, 0x05, 0x001EF801, PPC_64B
),
6812 GEN_HANDLER_E(setb
, 0x1F, 0x00, 0x04, 0x0003F801, PPC_NONE
, PPC2_ISA300
),
6813 GEN_HANDLER_E(mcrxrx
, 0x1F, 0x00, 0x12, 0x007FF801, PPC_NONE
, PPC2_ISA300
),
6815 GEN_HANDLER(mtmsr
, 0x1F, 0x12, 0x04, 0x001EF801, PPC_MISC
),
6816 GEN_HANDLER(mtspr
, 0x1F, 0x13, 0x0E, 0x00000000, PPC_MISC
),
6817 GEN_HANDLER(dcbf
, 0x1F, 0x16, 0x02, 0x03C00001, PPC_CACHE
),
6818 GEN_HANDLER_E(dcbfep
, 0x1F, 0x1F, 0x03, 0x03C00001, PPC_NONE
, PPC2_BOOKE206
),
6819 GEN_HANDLER(dcbi
, 0x1F, 0x16, 0x0E, 0x03E00001, PPC_CACHE
),
6820 GEN_HANDLER(dcbst
, 0x1F, 0x16, 0x01, 0x03E00001, PPC_CACHE
),
6821 GEN_HANDLER_E(dcbstep
, 0x1F, 0x1F, 0x01, 0x03E00001, PPC_NONE
, PPC2_BOOKE206
),
6822 GEN_HANDLER(dcbt
, 0x1F, 0x16, 0x08, 0x00000001, PPC_CACHE
),
6823 GEN_HANDLER_E(dcbtep
, 0x1F, 0x1F, 0x09, 0x00000001, PPC_NONE
, PPC2_BOOKE206
),
6824 GEN_HANDLER(dcbtst
, 0x1F, 0x16, 0x07, 0x00000001, PPC_CACHE
),
6825 GEN_HANDLER_E(dcbtstep
, 0x1F, 0x1F, 0x07, 0x00000001, PPC_NONE
, PPC2_BOOKE206
),
6826 GEN_HANDLER_E(dcbtls
, 0x1F, 0x06, 0x05, 0x02000001, PPC_BOOKE
, PPC2_BOOKE206
),
6827 GEN_HANDLER(dcbz
, 0x1F, 0x16, 0x1F, 0x03C00001, PPC_CACHE_DCBZ
),
6828 GEN_HANDLER_E(dcbzep
, 0x1F, 0x1F, 0x1F, 0x03C00001, PPC_NONE
, PPC2_BOOKE206
),
6829 GEN_HANDLER(dst
, 0x1F, 0x16, 0x0A, 0x01800001, PPC_ALTIVEC
),
6830 GEN_HANDLER(dstst
, 0x1F, 0x16, 0x0B, 0x01800001, PPC_ALTIVEC
),
6831 GEN_HANDLER(dss
, 0x1F, 0x16, 0x19, 0x019FF801, PPC_ALTIVEC
),
6832 GEN_HANDLER(icbi
, 0x1F, 0x16, 0x1E, 0x03E00001, PPC_CACHE_ICBI
),
6833 GEN_HANDLER_E(icbiep
, 0x1F, 0x1F, 0x1E, 0x03E00001, PPC_NONE
, PPC2_BOOKE206
),
6834 GEN_HANDLER(dcba
, 0x1F, 0x16, 0x17, 0x03E00001, PPC_CACHE_DCBA
),
6835 GEN_HANDLER(mfsr
, 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT
),
6836 GEN_HANDLER(mfsrin
, 0x1F, 0x13, 0x14, 0x001F0001, PPC_SEGMENT
),
6837 GEN_HANDLER(mtsr
, 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT
),
6838 GEN_HANDLER(mtsrin
, 0x1F, 0x12, 0x07, 0x001F0001, PPC_SEGMENT
),
6839 #if defined(TARGET_PPC64)
6840 GEN_HANDLER2(mfsr_64b
, "mfsr", 0x1F, 0x13, 0x12, 0x0010F801, PPC_SEGMENT_64B
),
6841 GEN_HANDLER2(mfsrin_64b
, "mfsrin", 0x1F, 0x13, 0x14, 0x001F0001,
6843 GEN_HANDLER2(mtsr_64b
, "mtsr", 0x1F, 0x12, 0x06, 0x0010F801, PPC_SEGMENT_64B
),
6844 GEN_HANDLER2(mtsrin_64b
, "mtsrin", 0x1F, 0x12, 0x07, 0x001F0001,
6847 GEN_HANDLER(tlbia
, 0x1F, 0x12, 0x0B, 0x03FFFC01, PPC_MEM_TLBIA
),
6849 * XXX Those instructions will need to be handled differently for
6850 * different ISA versions
6852 GEN_HANDLER(tlbsync
, 0x1F, 0x16, 0x11, 0x03FFF801, PPC_MEM_TLBSYNC
),
6853 GEN_HANDLER(eciwx
, 0x1F, 0x16, 0x0D, 0x00000001, PPC_EXTERN
),
6854 GEN_HANDLER(ecowx
, 0x1F, 0x16, 0x09, 0x00000001, PPC_EXTERN
),
6855 GEN_HANDLER2(tlbld_6xx
, "tlbld", 0x1F, 0x12, 0x1E, 0x03FF0001, PPC_6xx_TLB
),
6856 GEN_HANDLER2(tlbli_6xx
, "tlbli", 0x1F, 0x12, 0x1F, 0x03FF0001, PPC_6xx_TLB
),
6857 GEN_HANDLER(mfapidi
, 0x1F, 0x13, 0x08, 0x0000F801, PPC_MFAPIDI
),
6858 GEN_HANDLER(tlbiva
, 0x1F, 0x12, 0x18, 0x03FFF801, PPC_TLBIVA
),
6859 GEN_HANDLER(mfdcr
, 0x1F, 0x03, 0x0A, 0x00000001, PPC_DCR
),
6860 GEN_HANDLER(mtdcr
, 0x1F, 0x03, 0x0E, 0x00000001, PPC_DCR
),
6861 GEN_HANDLER(mfdcrx
, 0x1F, 0x03, 0x08, 0x00000000, PPC_DCRX
),
6862 GEN_HANDLER(mtdcrx
, 0x1F, 0x03, 0x0C, 0x00000000, PPC_DCRX
),
6863 GEN_HANDLER(dccci
, 0x1F, 0x06, 0x0E, 0x03E00001, PPC_4xx_COMMON
),
6864 GEN_HANDLER(dcread
, 0x1F, 0x06, 0x0F, 0x00000001, PPC_4xx_COMMON
),
6865 GEN_HANDLER2(icbt_40x
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001, PPC_40x_ICBT
),
6866 GEN_HANDLER(iccci
, 0x1F, 0x06, 0x1E, 0x00000001, PPC_4xx_COMMON
),
6867 GEN_HANDLER(icread
, 0x1F, 0x06, 0x1F, 0x03E00001, PPC_4xx_COMMON
),
6868 GEN_HANDLER2(rfci_40x
, "rfci", 0x13, 0x13, 0x01, 0x03FF8001, PPC_40x_EXCP
),
6869 GEN_HANDLER_E(rfci
, 0x13, 0x13, 0x01, 0x03FF8001, PPC_BOOKE
, PPC2_BOOKE206
),
6870 GEN_HANDLER(rfdi
, 0x13, 0x07, 0x01, 0x03FF8001, PPC_RFDI
),
6871 GEN_HANDLER(rfmci
, 0x13, 0x06, 0x01, 0x03FF8001, PPC_RFMCI
),
6872 GEN_HANDLER2(tlbre_40x
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_40x_TLB
),
6873 GEN_HANDLER2(tlbsx_40x
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_40x_TLB
),
6874 GEN_HANDLER2(tlbwe_40x
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_40x_TLB
),
6875 GEN_HANDLER2(tlbre_440
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001, PPC_BOOKE
),
6876 GEN_HANDLER2(tlbsx_440
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000, PPC_BOOKE
),
6877 GEN_HANDLER2(tlbwe_440
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001, PPC_BOOKE
),
6878 GEN_HANDLER2_E(tlbre_booke206
, "tlbre", 0x1F, 0x12, 0x1D, 0x00000001,
6879 PPC_NONE
, PPC2_BOOKE206
),
6880 GEN_HANDLER2_E(tlbsx_booke206
, "tlbsx", 0x1F, 0x12, 0x1C, 0x00000000,
6881 PPC_NONE
, PPC2_BOOKE206
),
6882 GEN_HANDLER2_E(tlbwe_booke206
, "tlbwe", 0x1F, 0x12, 0x1E, 0x00000001,
6883 PPC_NONE
, PPC2_BOOKE206
),
6884 GEN_HANDLER2_E(tlbivax_booke206
, "tlbivax", 0x1F, 0x12, 0x18, 0x00000001,
6885 PPC_NONE
, PPC2_BOOKE206
),
6886 GEN_HANDLER2_E(tlbilx_booke206
, "tlbilx", 0x1F, 0x12, 0x00, 0x03800001,
6887 PPC_NONE
, PPC2_BOOKE206
),
6888 GEN_HANDLER(wrtee
, 0x1F, 0x03, 0x04, 0x000FFC01, PPC_WRTEE
),
6889 GEN_HANDLER(wrteei
, 0x1F, 0x03, 0x05, 0x000E7C01, PPC_WRTEE
),
6890 GEN_HANDLER(dlmzb
, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC
),
6891 GEN_HANDLER_E(mbar
, 0x1F, 0x16, 0x1a, 0x001FF801,
6892 PPC_BOOKE
, PPC2_BOOKE206
),
6893 GEN_HANDLER(msync_4xx
, 0x1F, 0x16, 0x12, 0x039FF801, PPC_BOOKE
),
6894 GEN_HANDLER2_E(icbt_440
, "icbt", 0x1F, 0x16, 0x00, 0x03E00001,
6895 PPC_BOOKE
, PPC2_BOOKE206
),
6896 GEN_HANDLER2(icbt_440
, "icbt", 0x1F, 0x06, 0x08, 0x03E00001,
6898 GEN_HANDLER(lvsl
, 0x1f, 0x06, 0x00, 0x00000001, PPC_ALTIVEC
),
6899 GEN_HANDLER(lvsr
, 0x1f, 0x06, 0x01, 0x00000001, PPC_ALTIVEC
),
6900 GEN_HANDLER(mfvscr
, 0x04, 0x2, 0x18, 0x001ff800, PPC_ALTIVEC
),
6901 GEN_HANDLER(mtvscr
, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC
),
6902 #if defined(TARGET_PPC64)
6903 GEN_HANDLER_E(maddhd_maddhdu
, 0x04, 0x18, 0xFF, 0x00000000, PPC_NONE
,
6905 GEN_HANDLER_E(maddld
, 0x04, 0x19, 0xFF, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6908 #undef GEN_INT_ARITH_ADD
6909 #undef GEN_INT_ARITH_ADD_CONST
6910 #define GEN_INT_ARITH_ADD(name, opc3, add_ca, compute_ca, compute_ov) \
6911 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x00000000, PPC_INTEGER),
6912 #define GEN_INT_ARITH_ADD_CONST(name, opc3, const_val, \
6913 add_ca, compute_ca, compute_ov) \
6914 GEN_HANDLER(name, 0x1F, 0x0A, opc3, 0x0000F800, PPC_INTEGER),
6915 GEN_INT_ARITH_ADD(add
, 0x08, 0, 0, 0)
6916 GEN_INT_ARITH_ADD(addo
, 0x18, 0, 0, 1)
6917 GEN_INT_ARITH_ADD(addc
, 0x00, 0, 1, 0)
6918 GEN_INT_ARITH_ADD(addco
, 0x10, 0, 1, 1)
6919 GEN_INT_ARITH_ADD(adde
, 0x04, 1, 1, 0)
6920 GEN_INT_ARITH_ADD(addeo
, 0x14, 1, 1, 1)
6921 GEN_INT_ARITH_ADD_CONST(addme
, 0x07, -1LL, 1, 1, 0)
6922 GEN_INT_ARITH_ADD_CONST(addmeo
, 0x17, -1LL, 1, 1, 1)
6923 GEN_HANDLER_E(addex
, 0x1F, 0x0A, 0x05, 0x00000000, PPC_NONE
, PPC2_ISA300
),
6924 GEN_INT_ARITH_ADD_CONST(addze
, 0x06, 0, 1, 1, 0)
6925 GEN_INT_ARITH_ADD_CONST(addzeo
, 0x16, 0, 1, 1, 1)
6927 #undef GEN_INT_ARITH_DIVW
6928 #define GEN_INT_ARITH_DIVW(name, opc3, sign, compute_ov) \
6929 GEN_HANDLER(name, 0x1F, 0x0B, opc3, 0x00000000, PPC_INTEGER)
6930 GEN_INT_ARITH_DIVW(divwu
, 0x0E, 0, 0),
6931 GEN_INT_ARITH_DIVW(divwuo
, 0x1E, 0, 1),
6932 GEN_INT_ARITH_DIVW(divw
, 0x0F, 1, 0),
6933 GEN_INT_ARITH_DIVW(divwo
, 0x1F, 1, 1),
6934 GEN_HANDLER_E(divwe
, 0x1F, 0x0B, 0x0D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6935 GEN_HANDLER_E(divweo
, 0x1F, 0x0B, 0x1D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6936 GEN_HANDLER_E(divweu
, 0x1F, 0x0B, 0x0C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6937 GEN_HANDLER_E(divweuo
, 0x1F, 0x0B, 0x1C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6938 GEN_HANDLER_E(modsw
, 0x1F, 0x0B, 0x18, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6939 GEN_HANDLER_E(moduw
, 0x1F, 0x0B, 0x08, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6941 #if defined(TARGET_PPC64)
6942 #undef GEN_INT_ARITH_DIVD
6943 #define GEN_INT_ARITH_DIVD(name, opc3, sign, compute_ov) \
6944 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
6945 GEN_INT_ARITH_DIVD(divdu
, 0x0E, 0, 0),
6946 GEN_INT_ARITH_DIVD(divduo
, 0x1E, 0, 1),
6947 GEN_INT_ARITH_DIVD(divd
, 0x0F, 1, 0),
6948 GEN_INT_ARITH_DIVD(divdo
, 0x1F, 1, 1),
6950 GEN_HANDLER_E(divdeu
, 0x1F, 0x09, 0x0C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6951 GEN_HANDLER_E(divdeuo
, 0x1F, 0x09, 0x1C, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6952 GEN_HANDLER_E(divde
, 0x1F, 0x09, 0x0D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6953 GEN_HANDLER_E(divdeo
, 0x1F, 0x09, 0x1D, 0, PPC_NONE
, PPC2_DIVE_ISA206
),
6954 GEN_HANDLER_E(modsd
, 0x1F, 0x09, 0x18, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6955 GEN_HANDLER_E(modud
, 0x1F, 0x09, 0x08, 0x00000001, PPC_NONE
, PPC2_ISA300
),
6957 #undef GEN_INT_ARITH_MUL_HELPER
6958 #define GEN_INT_ARITH_MUL_HELPER(name, opc3) \
6959 GEN_HANDLER(name, 0x1F, 0x09, opc3, 0x00000000, PPC_64B)
6960 GEN_INT_ARITH_MUL_HELPER(mulhdu
, 0x00),
6961 GEN_INT_ARITH_MUL_HELPER(mulhd
, 0x02),
6962 GEN_INT_ARITH_MUL_HELPER(mulldo
, 0x17),
6965 #undef GEN_INT_ARITH_SUBF
6966 #undef GEN_INT_ARITH_SUBF_CONST
6967 #define GEN_INT_ARITH_SUBF(name, opc3, add_ca, compute_ca, compute_ov) \
6968 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x00000000, PPC_INTEGER),
6969 #define GEN_INT_ARITH_SUBF_CONST(name, opc3, const_val, \
6970 add_ca, compute_ca, compute_ov) \
6971 GEN_HANDLER(name, 0x1F, 0x08, opc3, 0x0000F800, PPC_INTEGER),
6972 GEN_INT_ARITH_SUBF(subf
, 0x01, 0, 0, 0)
6973 GEN_INT_ARITH_SUBF(subfo
, 0x11, 0, 0, 1)
6974 GEN_INT_ARITH_SUBF(subfc
, 0x00, 0, 1, 0)
6975 GEN_INT_ARITH_SUBF(subfco
, 0x10, 0, 1, 1)
6976 GEN_INT_ARITH_SUBF(subfe
, 0x04, 1, 1, 0)
6977 GEN_INT_ARITH_SUBF(subfeo
, 0x14, 1, 1, 1)
6978 GEN_INT_ARITH_SUBF_CONST(subfme
, 0x07, -1LL, 1, 1, 0)
6979 GEN_INT_ARITH_SUBF_CONST(subfmeo
, 0x17, -1LL, 1, 1, 1)
6980 GEN_INT_ARITH_SUBF_CONST(subfze
, 0x06, 0, 1, 1, 0)
6981 GEN_INT_ARITH_SUBF_CONST(subfzeo
, 0x16, 0, 1, 1, 1)
6985 #define GEN_LOGICAL2(name, tcg_op, opc, type) \
6986 GEN_HANDLER(name, 0x1F, 0x1C, opc, 0x00000000, type)
6987 #define GEN_LOGICAL1(name, tcg_op, opc, type) \
6988 GEN_HANDLER(name, 0x1F, 0x1A, opc, 0x00000000, type)
6989 GEN_LOGICAL2(and, tcg_gen_and_tl
, 0x00, PPC_INTEGER
),
6990 GEN_LOGICAL2(andc
, tcg_gen_andc_tl
, 0x01, PPC_INTEGER
),
6991 GEN_LOGICAL2(eqv
, tcg_gen_eqv_tl
, 0x08, PPC_INTEGER
),
6992 GEN_LOGICAL1(extsb
, tcg_gen_ext8s_tl
, 0x1D, PPC_INTEGER
),
6993 GEN_LOGICAL1(extsh
, tcg_gen_ext16s_tl
, 0x1C, PPC_INTEGER
),
6994 GEN_LOGICAL2(nand
, tcg_gen_nand_tl
, 0x0E, PPC_INTEGER
),
6995 GEN_LOGICAL2(nor
, tcg_gen_nor_tl
, 0x03, PPC_INTEGER
),
6996 GEN_LOGICAL2(orc
, tcg_gen_orc_tl
, 0x0C, PPC_INTEGER
),
6997 #if defined(TARGET_PPC64)
6998 GEN_LOGICAL1(extsw
, tcg_gen_ext32s_tl
, 0x1E, PPC_64B
),
7001 #if defined(TARGET_PPC64)
7004 #define GEN_PPC64_R2(name, opc1, opc2) \
7005 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
7006 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
7008 #define GEN_PPC64_R4(name, opc1, opc2) \
7009 GEN_HANDLER2(name##0, stringify(name), opc1, opc2, 0xFF, 0x00000000, PPC_64B),\
7010 GEN_HANDLER2(name##1, stringify(name), opc1, opc2 | 0x01, 0xFF, 0x00000000, \
7012 GEN_HANDLER2(name##2, stringify(name), opc1, opc2 | 0x10, 0xFF, 0x00000000, \
7014 GEN_HANDLER2(name##3, stringify(name), opc1, opc2 | 0x11, 0xFF, 0x00000000, \
7016 GEN_PPC64_R4(rldicl
, 0x1E, 0x00),
7017 GEN_PPC64_R4(rldicr
, 0x1E, 0x02),
7018 GEN_PPC64_R4(rldic
, 0x1E, 0x04),
7019 GEN_PPC64_R2(rldcl
, 0x1E, 0x08),
7020 GEN_PPC64_R2(rldcr
, 0x1E, 0x09),
7021 GEN_PPC64_R4(rldimi
, 0x1E, 0x06),
7025 #define GEN_LDX_E(name, ldop, opc2, opc3, type, type2, chk) \
7026 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000001, type, type2),
7028 #if defined(TARGET_PPC64)
7029 GEN_LDX_E(ldbr
, ld64ur_i64
, 0x14, 0x10, PPC_NONE
, PPC2_DBRX
, CHK_NONE
)
7031 /* HV/P7 and later only */
7032 GEN_LDX_HVRM(ldcix
, ld64_i64
, 0x15, 0x1b, PPC_CILDST
)
7033 GEN_LDX_HVRM(lwzcix
, ld32u
, 0x15, 0x18, PPC_CILDST
)
7034 GEN_LDX_HVRM(lhzcix
, ld16u
, 0x15, 0x19, PPC_CILDST
)
7035 GEN_LDX_HVRM(lbzcix
, ld8u
, 0x15, 0x1a, PPC_CILDST
)
7037 GEN_LDX(lhbr
, ld16ur
, 0x16, 0x18, PPC_INTEGER
)
7038 GEN_LDX(lwbr
, ld32ur
, 0x16, 0x10, PPC_INTEGER
)
7040 /* External PID based load */
7042 #define GEN_LDEPX(name, ldop, opc2, opc3) \
7043 GEN_HANDLER_E(name##epx, 0x1F, opc2, opc3, \
7044 0x00000001, PPC_NONE, PPC2_BOOKE206),
7046 GEN_LDEPX(lb
, DEF_MEMOP(MO_UB
), 0x1F, 0x02)
7047 GEN_LDEPX(lh
, DEF_MEMOP(MO_UW
), 0x1F, 0x08)
7048 GEN_LDEPX(lw
, DEF_MEMOP(MO_UL
), 0x1F, 0x00)
7049 #if defined(TARGET_PPC64)
7050 GEN_LDEPX(ld
, DEF_MEMOP(MO_UQ
), 0x1D, 0x00)
7054 #define GEN_STX_E(name, stop, opc2, opc3, type, type2, chk) \
7055 GEN_HANDLER_E(name##x, 0x1F, opc2, opc3, 0x00000000, type, type2),
7057 #if defined(TARGET_PPC64)
7058 GEN_STX_E(stdbr
, st64r_i64
, 0x14, 0x14, PPC_NONE
, PPC2_DBRX
, CHK_NONE
)
7059 GEN_STX_HVRM(stdcix
, st64_i64
, 0x15, 0x1f, PPC_CILDST
)
7060 GEN_STX_HVRM(stwcix
, st32
, 0x15, 0x1c, PPC_CILDST
)
7061 GEN_STX_HVRM(sthcix
, st16
, 0x15, 0x1d, PPC_CILDST
)
7062 GEN_STX_HVRM(stbcix
, st8
, 0x15, 0x1e, PPC_CILDST
)
7064 GEN_STX(sthbr
, st16r
, 0x16, 0x1C, PPC_INTEGER
)
7065 GEN_STX(stwbr
, st32r
, 0x16, 0x14, PPC_INTEGER
)
7068 #define GEN_STEPX(name, ldop, opc2, opc3) \
7069 GEN_HANDLER_E(name##epx, 0x1F, opc2, opc3, \
7070 0x00000001, PPC_NONE, PPC2_BOOKE206),
7072 GEN_STEPX(stb
, DEF_MEMOP(MO_UB
), 0x1F, 0x06)
7073 GEN_STEPX(sth
, DEF_MEMOP(MO_UW
), 0x1F, 0x0C)
7074 GEN_STEPX(stw
, DEF_MEMOP(MO_UL
), 0x1F, 0x04)
7075 #if defined(TARGET_PPC64)
7076 GEN_STEPX(std
, DEF_MEMOP(MO_UQ
), 0x1D, 0x04)
7080 #define GEN_CRLOGIC(name, tcg_op, opc) \
7081 GEN_HANDLER(name, 0x13, 0x01, opc, 0x00000001, PPC_INTEGER)
7082 GEN_CRLOGIC(crand
, tcg_gen_and_i32
, 0x08),
7083 GEN_CRLOGIC(crandc
, tcg_gen_andc_i32
, 0x04),
7084 GEN_CRLOGIC(creqv
, tcg_gen_eqv_i32
, 0x09),
7085 GEN_CRLOGIC(crnand
, tcg_gen_nand_i32
, 0x07),
7086 GEN_CRLOGIC(crnor
, tcg_gen_nor_i32
, 0x01),
7087 GEN_CRLOGIC(cror
, tcg_gen_or_i32
, 0x0E),
7088 GEN_CRLOGIC(crorc
, tcg_gen_orc_i32
, 0x0D),
7089 GEN_CRLOGIC(crxor
, tcg_gen_xor_i32
, 0x06),
7091 #undef GEN_MAC_HANDLER
7092 #define GEN_MAC_HANDLER(name, opc2, opc3) \
7093 GEN_HANDLER(name, 0x04, opc2, opc3, 0x00000000, PPC_405_MAC)
7094 GEN_MAC_HANDLER(macchw
, 0x0C, 0x05),
7095 GEN_MAC_HANDLER(macchwo
, 0x0C, 0x15),
7096 GEN_MAC_HANDLER(macchws
, 0x0C, 0x07),
7097 GEN_MAC_HANDLER(macchwso
, 0x0C, 0x17),
7098 GEN_MAC_HANDLER(macchwsu
, 0x0C, 0x06),
7099 GEN_MAC_HANDLER(macchwsuo
, 0x0C, 0x16),
7100 GEN_MAC_HANDLER(macchwu
, 0x0C, 0x04),
7101 GEN_MAC_HANDLER(macchwuo
, 0x0C, 0x14),
7102 GEN_MAC_HANDLER(machhw
, 0x0C, 0x01),
7103 GEN_MAC_HANDLER(machhwo
, 0x0C, 0x11),
7104 GEN_MAC_HANDLER(machhws
, 0x0C, 0x03),
7105 GEN_MAC_HANDLER(machhwso
, 0x0C, 0x13),
7106 GEN_MAC_HANDLER(machhwsu
, 0x0C, 0x02),
7107 GEN_MAC_HANDLER(machhwsuo
, 0x0C, 0x12),
7108 GEN_MAC_HANDLER(machhwu
, 0x0C, 0x00),
7109 GEN_MAC_HANDLER(machhwuo
, 0x0C, 0x10),
7110 GEN_MAC_HANDLER(maclhw
, 0x0C, 0x0D),
7111 GEN_MAC_HANDLER(maclhwo
, 0x0C, 0x1D),
7112 GEN_MAC_HANDLER(maclhws
, 0x0C, 0x0F),
7113 GEN_MAC_HANDLER(maclhwso
, 0x0C, 0x1F),
7114 GEN_MAC_HANDLER(maclhwu
, 0x0C, 0x0C),
7115 GEN_MAC_HANDLER(maclhwuo
, 0x0C, 0x1C),
7116 GEN_MAC_HANDLER(maclhwsu
, 0x0C, 0x0E),
7117 GEN_MAC_HANDLER(maclhwsuo
, 0x0C, 0x1E),
7118 GEN_MAC_HANDLER(nmacchw
, 0x0E, 0x05),
7119 GEN_MAC_HANDLER(nmacchwo
, 0x0E, 0x15),
7120 GEN_MAC_HANDLER(nmacchws
, 0x0E, 0x07),
7121 GEN_MAC_HANDLER(nmacchwso
, 0x0E, 0x17),
7122 GEN_MAC_HANDLER(nmachhw
, 0x0E, 0x01),
7123 GEN_MAC_HANDLER(nmachhwo
, 0x0E, 0x11),
7124 GEN_MAC_HANDLER(nmachhws
, 0x0E, 0x03),
7125 GEN_MAC_HANDLER(nmachhwso
, 0x0E, 0x13),
7126 GEN_MAC_HANDLER(nmaclhw
, 0x0E, 0x0D),
7127 GEN_MAC_HANDLER(nmaclhwo
, 0x0E, 0x1D),
7128 GEN_MAC_HANDLER(nmaclhws
, 0x0E, 0x0F),
7129 GEN_MAC_HANDLER(nmaclhwso
, 0x0E, 0x1F),
7130 GEN_MAC_HANDLER(mulchw
, 0x08, 0x05),
7131 GEN_MAC_HANDLER(mulchwu
, 0x08, 0x04),
7132 GEN_MAC_HANDLER(mulhhw
, 0x08, 0x01),
7133 GEN_MAC_HANDLER(mulhhwu
, 0x08, 0x00),
7134 GEN_MAC_HANDLER(mullhw
, 0x08, 0x0D),
7135 GEN_MAC_HANDLER(mullhwu
, 0x08, 0x0C),
7137 GEN_HANDLER2_E(tbegin
, "tbegin", 0x1F, 0x0E, 0x14, 0x01DFF800, \
7139 GEN_HANDLER2_E(tend
, "tend", 0x1F, 0x0E, 0x15, 0x01FFF800, \
7141 GEN_HANDLER2_E(tabort
, "tabort", 0x1F, 0x0E, 0x1C, 0x03E0F800, \
7143 GEN_HANDLER2_E(tabortwc
, "tabortwc", 0x1F, 0x0E, 0x18, 0x00000000, \
7145 GEN_HANDLER2_E(tabortwci
, "tabortwci", 0x1F, 0x0E, 0x1A, 0x00000000, \
7147 GEN_HANDLER2_E(tabortdc
, "tabortdc", 0x1F, 0x0E, 0x19, 0x00000000, \
7149 GEN_HANDLER2_E(tabortdci
, "tabortdci", 0x1F, 0x0E, 0x1B, 0x00000000, \
7151 GEN_HANDLER2_E(tsr
, "tsr", 0x1F, 0x0E, 0x17, 0x03DFF800, \
7153 GEN_HANDLER2_E(tcheck
, "tcheck", 0x1F, 0x0E, 0x16, 0x007FF800, \
7155 GEN_HANDLER2_E(treclaim
, "treclaim", 0x1F, 0x0E, 0x1D, 0x03E0F800, \
7157 GEN_HANDLER2_E(trechkpt
, "trechkpt", 0x1F, 0x0E, 0x1F, 0x03FFF800, \
7160 #include "translate/fp-ops.c.inc"
7162 #include "translate/vmx-ops.c.inc"
7164 #include "translate/vsx-ops.c.inc"
7166 #include "translate/spe-ops.c.inc"
7169 /*****************************************************************************/
7172 PPC_DIRECT
= 0, /* Opcode routine */
7173 PPC_INDIRECT
= 1, /* Indirect opcode table */
7176 #define PPC_OPCODE_MASK 0x3
7178 static inline int is_indirect_opcode(void *handler
)
7180 return ((uintptr_t)handler
& PPC_OPCODE_MASK
) == PPC_INDIRECT
;
7183 static inline opc_handler_t
**ind_table(void *handler
)
7185 return (opc_handler_t
**)((uintptr_t)handler
& ~PPC_OPCODE_MASK
);
7188 /* Instruction table creation */
7189 /* Opcodes tables creation */
7190 static void fill_new_table(opc_handler_t
**table
, int len
)
7194 for (i
= 0; i
< len
; i
++) {
7195 table
[i
] = &invalid_handler
;
7199 static int create_new_table(opc_handler_t
**table
, unsigned char idx
)
7201 opc_handler_t
**tmp
;
7203 tmp
= g_new(opc_handler_t
*, PPC_CPU_INDIRECT_OPCODES_LEN
);
7204 fill_new_table(tmp
, PPC_CPU_INDIRECT_OPCODES_LEN
);
7205 table
[idx
] = (opc_handler_t
*)((uintptr_t)tmp
| PPC_INDIRECT
);
7210 static int insert_in_table(opc_handler_t
**table
, unsigned char idx
,
7211 opc_handler_t
*handler
)
7213 if (table
[idx
] != &invalid_handler
) {
7216 table
[idx
] = handler
;
7221 static int register_direct_insn(opc_handler_t
**ppc_opcodes
,
7222 unsigned char idx
, opc_handler_t
*handler
)
7224 if (insert_in_table(ppc_opcodes
, idx
, handler
) < 0) {
7225 printf("*** ERROR: opcode %02x already assigned in main "
7226 "opcode table\n", idx
);
7233 static int register_ind_in_table(opc_handler_t
**table
,
7234 unsigned char idx1
, unsigned char idx2
,
7235 opc_handler_t
*handler
)
7237 if (table
[idx1
] == &invalid_handler
) {
7238 if (create_new_table(table
, idx1
) < 0) {
7239 printf("*** ERROR: unable to create indirect table "
7240 "idx=%02x\n", idx1
);
7244 if (!is_indirect_opcode(table
[idx1
])) {
7245 printf("*** ERROR: idx %02x already assigned to a direct "
7250 if (handler
!= NULL
&&
7251 insert_in_table(ind_table(table
[idx1
]), idx2
, handler
) < 0) {
7252 printf("*** ERROR: opcode %02x already assigned in "
7253 "opcode table %02x\n", idx2
, idx1
);
7260 static int register_ind_insn(opc_handler_t
**ppc_opcodes
,
7261 unsigned char idx1
, unsigned char idx2
,
7262 opc_handler_t
*handler
)
7264 return register_ind_in_table(ppc_opcodes
, idx1
, idx2
, handler
);
7267 static int register_dblind_insn(opc_handler_t
**ppc_opcodes
,
7268 unsigned char idx1
, unsigned char idx2
,
7269 unsigned char idx3
, opc_handler_t
*handler
)
7271 if (register_ind_in_table(ppc_opcodes
, idx1
, idx2
, NULL
) < 0) {
7272 printf("*** ERROR: unable to join indirect table idx "
7273 "[%02x-%02x]\n", idx1
, idx2
);
7276 if (register_ind_in_table(ind_table(ppc_opcodes
[idx1
]), idx2
, idx3
,
7278 printf("*** ERROR: unable to insert opcode "
7279 "[%02x-%02x-%02x]\n", idx1
, idx2
, idx3
);
7286 static int register_trplind_insn(opc_handler_t
**ppc_opcodes
,
7287 unsigned char idx1
, unsigned char idx2
,
7288 unsigned char idx3
, unsigned char idx4
,
7289 opc_handler_t
*handler
)
7291 opc_handler_t
**table
;
7293 if (register_ind_in_table(ppc_opcodes
, idx1
, idx2
, NULL
) < 0) {
7294 printf("*** ERROR: unable to join indirect table idx "
7295 "[%02x-%02x]\n", idx1
, idx2
);
7298 table
= ind_table(ppc_opcodes
[idx1
]);
7299 if (register_ind_in_table(table
, idx2
, idx3
, NULL
) < 0) {
7300 printf("*** ERROR: unable to join 2nd-level indirect table idx "
7301 "[%02x-%02x-%02x]\n", idx1
, idx2
, idx3
);
7304 table
= ind_table(table
[idx2
]);
7305 if (register_ind_in_table(table
, idx3
, idx4
, handler
) < 0) {
7306 printf("*** ERROR: unable to insert opcode "
7307 "[%02x-%02x-%02x-%02x]\n", idx1
, idx2
, idx3
, idx4
);
7312 static int register_insn(opc_handler_t
**ppc_opcodes
, opcode_t
*insn
)
7314 if (insn
->opc2
!= 0xFF) {
7315 if (insn
->opc3
!= 0xFF) {
7316 if (insn
->opc4
!= 0xFF) {
7317 if (register_trplind_insn(ppc_opcodes
, insn
->opc1
, insn
->opc2
,
7318 insn
->opc3
, insn
->opc4
,
7319 &insn
->handler
) < 0) {
7323 if (register_dblind_insn(ppc_opcodes
, insn
->opc1
, insn
->opc2
,
7324 insn
->opc3
, &insn
->handler
) < 0) {
7329 if (register_ind_insn(ppc_opcodes
, insn
->opc1
,
7330 insn
->opc2
, &insn
->handler
) < 0) {
7335 if (register_direct_insn(ppc_opcodes
, insn
->opc1
, &insn
->handler
) < 0) {
7343 static int test_opcode_table(opc_handler_t
**table
, int len
)
7347 for (i
= 0, count
= 0; i
< len
; i
++) {
7348 /* Consistency fixup */
7349 if (table
[i
] == NULL
) {
7350 table
[i
] = &invalid_handler
;
7352 if (table
[i
] != &invalid_handler
) {
7353 if (is_indirect_opcode(table
[i
])) {
7354 tmp
= test_opcode_table(ind_table(table
[i
]),
7355 PPC_CPU_INDIRECT_OPCODES_LEN
);
7358 table
[i
] = &invalid_handler
;
7371 static void fix_opcode_tables(opc_handler_t
**ppc_opcodes
)
7373 if (test_opcode_table(ppc_opcodes
, PPC_CPU_OPCODES_LEN
) == 0) {
7374 printf("*** WARNING: no opcode defined !\n");
7378 /*****************************************************************************/
7379 void create_ppc_opcodes(PowerPCCPU
*cpu
, Error
**errp
)
7381 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
7384 fill_new_table(cpu
->opcodes
, PPC_CPU_OPCODES_LEN
);
7385 for (opc
= opcodes
; opc
< &opcodes
[ARRAY_SIZE(opcodes
)]; opc
++) {
7386 if (((opc
->handler
.type
& pcc
->insns_flags
) != 0) ||
7387 ((opc
->handler
.type2
& pcc
->insns_flags2
) != 0)) {
7388 if (register_insn(cpu
->opcodes
, opc
) < 0) {
7389 error_setg(errp
, "ERROR initializing PowerPC instruction "
7390 "0x%02x 0x%02x 0x%02x", opc
->opc1
, opc
->opc2
,
7396 fix_opcode_tables(cpu
->opcodes
);
7401 void destroy_ppc_opcodes(PowerPCCPU
*cpu
)
7403 opc_handler_t
**table
, **table_2
;
7406 for (i
= 0; i
< PPC_CPU_OPCODES_LEN
; i
++) {
7407 if (cpu
->opcodes
[i
] == &invalid_handler
) {
7410 if (is_indirect_opcode(cpu
->opcodes
[i
])) {
7411 table
= ind_table(cpu
->opcodes
[i
]);
7412 for (j
= 0; j
< PPC_CPU_INDIRECT_OPCODES_LEN
; j
++) {
7413 if (table
[j
] == &invalid_handler
) {
7416 if (is_indirect_opcode(table
[j
])) {
7417 table_2
= ind_table(table
[j
]);
7418 for (k
= 0; k
< PPC_CPU_INDIRECT_OPCODES_LEN
; k
++) {
7419 if (table_2
[k
] != &invalid_handler
&&
7420 is_indirect_opcode(table_2
[k
])) {
7421 g_free((opc_handler_t
*)((uintptr_t)table_2
[k
] &
7425 g_free((opc_handler_t
*)((uintptr_t)table
[j
] &
7429 g_free((opc_handler_t
*)((uintptr_t)cpu
->opcodes
[i
] &
7435 int ppc_fixup_cpu(PowerPCCPU
*cpu
)
7437 CPUPPCState
*env
= &cpu
->env
;
7440 * TCG doesn't (yet) emulate some groups of instructions that are
7441 * implemented on some otherwise supported CPUs (e.g. VSX and
7442 * decimal floating point instructions on POWER7). We remove
7443 * unsupported instruction groups from the cpu state's instruction
7444 * masks and hope the guest can cope. For at least the pseries
7445 * machine, the unavailability of these instructions can be
7446 * advertised to the guest via the device tree.
7448 if ((env
->insns_flags
& ~PPC_TCG_INSNS
)
7449 || (env
->insns_flags2
& ~PPC_TCG_INSNS2
)) {
7450 warn_report("Disabling some instructions which are not "
7451 "emulated by TCG (0x%" PRIx64
", 0x%" PRIx64
")",
7452 env
->insns_flags
& ~PPC_TCG_INSNS
,
7453 env
->insns_flags2
& ~PPC_TCG_INSNS2
);
7455 env
->insns_flags
&= PPC_TCG_INSNS
;
7456 env
->insns_flags2
&= PPC_TCG_INSNS2
;
7460 static bool decode_legacy(PowerPCCPU
*cpu
, DisasContext
*ctx
, uint32_t insn
)
7462 opc_handler_t
**table
, *handler
;
7467 LOG_DISAS("translate opcode %08x (%02x %02x %02x %02x) (%s)\n",
7468 insn
, opc1(insn
), opc2(insn
), opc3(insn
), opc4(insn
),
7469 ctx
->le_mode
? "little" : "big");
7471 table
= cpu
->opcodes
;
7472 handler
= table
[opc1(insn
)];
7473 if (is_indirect_opcode(handler
)) {
7474 table
= ind_table(handler
);
7475 handler
= table
[opc2(insn
)];
7476 if (is_indirect_opcode(handler
)) {
7477 table
= ind_table(handler
);
7478 handler
= table
[opc3(insn
)];
7479 if (is_indirect_opcode(handler
)) {
7480 table
= ind_table(handler
);
7481 handler
= table
[opc4(insn
)];
7486 /* Is opcode *REALLY* valid ? */
7487 if (unlikely(handler
->handler
== &gen_invalid
)) {
7488 qemu_log_mask(LOG_GUEST_ERROR
, "invalid/unsupported opcode: "
7489 "%02x - %02x - %02x - %02x (%08x) "
7491 opc1(insn
), opc2(insn
), opc3(insn
), opc4(insn
),
7496 if (unlikely(handler
->type
& (PPC_SPE
| PPC_SPE_SINGLE
| PPC_SPE_DOUBLE
)
7498 inval
= handler
->inval2
;
7500 inval
= handler
->inval1
;
7503 if (unlikely((insn
& inval
) != 0)) {
7504 qemu_log_mask(LOG_GUEST_ERROR
, "invalid bits: %08x for opcode: "
7505 "%02x - %02x - %02x - %02x (%08x) "
7506 TARGET_FMT_lx
"\n", insn
& inval
,
7507 opc1(insn
), opc2(insn
), opc3(insn
), opc4(insn
),
7512 handler
->handler(ctx
);
7516 static void ppc_tr_init_disas_context(DisasContextBase
*dcbase
, CPUState
*cs
)
7518 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7519 CPUPPCState
*env
= cs
->env_ptr
;
7520 uint32_t hflags
= ctx
->base
.tb
->flags
;
7522 ctx
->spr_cb
= env
->spr_cb
;
7523 ctx
->pr
= (hflags
>> HFLAGS_PR
) & 1;
7524 ctx
->mem_idx
= (hflags
>> HFLAGS_DMMU_IDX
) & 7;
7525 ctx
->dr
= (hflags
>> HFLAGS_DR
) & 1;
7526 ctx
->hv
= (hflags
>> HFLAGS_HV
) & 1;
7527 ctx
->insns_flags
= env
->insns_flags
;
7528 ctx
->insns_flags2
= env
->insns_flags2
;
7529 ctx
->access_type
= -1;
7530 ctx
->need_access_type
= !mmu_is_64bit(env
->mmu_model
);
7531 ctx
->le_mode
= (hflags
>> HFLAGS_LE
) & 1;
7532 ctx
->default_tcg_memop_mask
= ctx
->le_mode
? MO_LE
: MO_BE
;
7533 ctx
->flags
= env
->flags
;
7534 #if defined(TARGET_PPC64)
7535 ctx
->sf_mode
= (hflags
>> HFLAGS_64
) & 1;
7536 ctx
->has_cfar
= !!(env
->flags
& POWERPC_FLAG_CFAR
);
7538 ctx
->lazy_tlb_flush
= env
->mmu_model
== POWERPC_MMU_32B
7539 || env
->mmu_model
& POWERPC_MMU_64
;
7541 ctx
->fpu_enabled
= (hflags
>> HFLAGS_FP
) & 1;
7542 ctx
->spe_enabled
= (hflags
>> HFLAGS_SPE
) & 1;
7543 ctx
->altivec_enabled
= (hflags
>> HFLAGS_VR
) & 1;
7544 ctx
->vsx_enabled
= (hflags
>> HFLAGS_VSX
) & 1;
7545 ctx
->tm_enabled
= (hflags
>> HFLAGS_TM
) & 1;
7546 ctx
->gtse
= (hflags
>> HFLAGS_GTSE
) & 1;
7547 ctx
->hr
= (hflags
>> HFLAGS_HR
) & 1;
7548 ctx
->mmcr0_pmcc0
= (hflags
>> HFLAGS_PMCC0
) & 1;
7549 ctx
->mmcr0_pmcc1
= (hflags
>> HFLAGS_PMCC1
) & 1;
7550 ctx
->mmcr0_pmcjce
= (hflags
>> HFLAGS_PMCJCE
) & 1;
7551 ctx
->pmc_other
= (hflags
>> HFLAGS_PMC_OTHER
) & 1;
7552 ctx
->pmu_insn_cnt
= (hflags
>> HFLAGS_INSN_CNT
) & 1;
7554 ctx
->singlestep_enabled
= 0;
7555 if ((hflags
>> HFLAGS_SE
) & 1) {
7556 ctx
->singlestep_enabled
|= CPU_SINGLE_STEP
;
7557 ctx
->base
.max_insns
= 1;
7559 if ((hflags
>> HFLAGS_BE
) & 1) {
7560 ctx
->singlestep_enabled
|= CPU_BRANCH_STEP
;
7564 static void ppc_tr_tb_start(DisasContextBase
*db
, CPUState
*cs
)
7568 static void ppc_tr_insn_start(DisasContextBase
*dcbase
, CPUState
*cs
)
7570 tcg_gen_insn_start(dcbase
->pc_next
);
7573 static bool is_prefix_insn(DisasContext
*ctx
, uint32_t insn
)
7575 REQUIRE_INSNS_FLAGS2(ctx
, ISA310
);
7576 return opc1(insn
) == 1;
7579 static void ppc_tr_translate_insn(DisasContextBase
*dcbase
, CPUState
*cs
)
7581 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7582 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
7583 CPUPPCState
*env
= cs
->env_ptr
;
7588 LOG_DISAS("----------------\n");
7589 LOG_DISAS("nip=" TARGET_FMT_lx
" super=%d ir=%d\n",
7590 ctx
->base
.pc_next
, ctx
->mem_idx
, (int)msr_ir
);
7592 ctx
->cia
= pc
= ctx
->base
.pc_next
;
7593 insn
= translator_ldl_swap(env
, dcbase
, pc
, need_byteswap(ctx
));
7594 ctx
->base
.pc_next
= pc
+= 4;
7596 if (!is_prefix_insn(ctx
, insn
)) {
7597 ok
= (decode_insn32(ctx
, insn
) ||
7598 decode_legacy(cpu
, ctx
, insn
));
7599 } else if ((pc
& 63) == 0) {
7601 * Power v3.1, section 1.9 Exceptions:
7602 * attempt to execute a prefixed instruction that crosses a
7603 * 64-byte address boundary (system alignment error).
7605 gen_exception_err(ctx
, POWERPC_EXCP_ALIGN
, POWERPC_EXCP_ALIGN_INSN
);
7608 uint32_t insn2
= translator_ldl_swap(env
, dcbase
, pc
,
7609 need_byteswap(ctx
));
7610 ctx
->base
.pc_next
= pc
+= 4;
7611 ok
= decode_insn64(ctx
, deposit64(insn2
, 32, 32, insn
));
7617 /* End the TB when crossing a page boundary. */
7618 if (ctx
->base
.is_jmp
== DISAS_NEXT
&& !(pc
& ~TARGET_PAGE_MASK
)) {
7619 ctx
->base
.is_jmp
= DISAS_TOO_MANY
;
7622 translator_loop_temp_check(&ctx
->base
);
7625 static void ppc_tr_tb_stop(DisasContextBase
*dcbase
, CPUState
*cs
)
7627 DisasContext
*ctx
= container_of(dcbase
, DisasContext
, base
);
7628 DisasJumpType is_jmp
= ctx
->base
.is_jmp
;
7629 target_ulong nip
= ctx
->base
.pc_next
;
7631 if (is_jmp
== DISAS_NORETURN
) {
7632 /* We have already exited the TB. */
7636 /* Honor single stepping. */
7637 if (unlikely(ctx
->singlestep_enabled
& CPU_SINGLE_STEP
)
7638 && (nip
<= 0x100 || nip
> 0xf00)) {
7640 case DISAS_TOO_MANY
:
7641 case DISAS_EXIT_UPDATE
:
7642 case DISAS_CHAIN_UPDATE
:
7643 gen_update_nip(ctx
, nip
);
7649 g_assert_not_reached();
7652 gen_debug_exception(ctx
);
7657 case DISAS_TOO_MANY
:
7658 if (use_goto_tb(ctx
, nip
)) {
7659 pmu_count_insns(ctx
);
7661 gen_update_nip(ctx
, nip
);
7662 tcg_gen_exit_tb(ctx
->base
.tb
, 0);
7666 case DISAS_CHAIN_UPDATE
:
7667 gen_update_nip(ctx
, nip
);
7671 * tcg_gen_lookup_and_goto_ptr will exit the TB if
7672 * CF_NO_GOTO_PTR is set. Count insns now.
7674 if (ctx
->base
.tb
->flags
& CF_NO_GOTO_PTR
) {
7675 pmu_count_insns(ctx
);
7678 tcg_gen_lookup_and_goto_ptr();
7681 case DISAS_EXIT_UPDATE
:
7682 gen_update_nip(ctx
, nip
);
7685 pmu_count_insns(ctx
);
7686 tcg_gen_exit_tb(NULL
, 0);
7690 g_assert_not_reached();
7694 static void ppc_tr_disas_log(const DisasContextBase
*dcbase
,
7695 CPUState
*cs
, FILE *logfile
)
7697 fprintf(logfile
, "IN: %s\n", lookup_symbol(dcbase
->pc_first
));
7698 target_disas(logfile
, cs
, dcbase
->pc_first
, dcbase
->tb
->size
);
7701 static const TranslatorOps ppc_tr_ops
= {
7702 .init_disas_context
= ppc_tr_init_disas_context
,
7703 .tb_start
= ppc_tr_tb_start
,
7704 .insn_start
= ppc_tr_insn_start
,
7705 .translate_insn
= ppc_tr_translate_insn
,
7706 .tb_stop
= ppc_tr_tb_stop
,
7707 .disas_log
= ppc_tr_disas_log
,
7710 void gen_intermediate_code(CPUState
*cs
, TranslationBlock
*tb
, int max_insns
,
7711 target_ulong pc
, void *host_pc
)
7715 translator_loop(cs
, tb
, max_insns
, pc
, host_pc
, &ppc_tr_ops
, &ctx
.base
);