2 * Alpha emulation cpu translation for qemu.
4 * Copyright (c) 2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
27 #include "host-utils.h"
29 #include "qemu-common.h"
35 #undef ALPHA_DEBUG_DISAS
36 #define CONFIG_SOFTFLOAT_INLINE
38 #ifdef ALPHA_DEBUG_DISAS
39 # define LOG_DISAS(...) qemu_log_mask(CPU_LOG_TB_IN_ASM, ## __VA_ARGS__)
41 # define LOG_DISAS(...) do { } while (0)
44 typedef struct DisasContext DisasContext
;
46 struct TranslationBlock
*tb
;
51 /* Current rounding mode for this TB. */
53 /* Current flush-to-zero setting for this TB. */
57 /* Return values from translate_one, indicating the state of the TB.
58 Note that zero indicates that we are not exiting the TB. */
63 /* We have emitted one or more goto_tb. No fixup required. */
66 /* We are not using a goto_tb (for whatever reason), but have updated
67 the PC (for whatever reason), so there's no need to do it again on
71 /* We are exiting the TB, but have neither emitted a goto_tb, nor
72 updated the PC for the next instruction to be executed. */
75 /* We are ending the TB with a noreturn function call, e.g. longjmp.
76 No following code will be executed. */
80 /* global register indexes */
81 static TCGv_ptr cpu_env
;
82 static TCGv cpu_ir
[31];
83 static TCGv cpu_fir
[31];
85 static TCGv cpu_lock_addr
;
86 static TCGv cpu_lock_st_addr
;
87 static TCGv cpu_lock_value
;
88 #ifdef CONFIG_USER_ONLY
93 static char cpu_reg_names
[10*4+21*5 + 10*5+21*6];
95 #include "gen-icount.h"
97 static void alpha_translate_init(void)
101 static int done_init
= 0;
106 cpu_env
= tcg_global_reg_new_ptr(TCG_AREG0
, "env");
109 for (i
= 0; i
< 31; i
++) {
110 sprintf(p
, "ir%d", i
);
111 cpu_ir
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
112 offsetof(CPUState
, ir
[i
]), p
);
113 p
+= (i
< 10) ? 4 : 5;
115 sprintf(p
, "fir%d", i
);
116 cpu_fir
[i
] = tcg_global_mem_new_i64(TCG_AREG0
,
117 offsetof(CPUState
, fir
[i
]), p
);
118 p
+= (i
< 10) ? 5 : 6;
121 cpu_pc
= tcg_global_mem_new_i64(TCG_AREG0
,
122 offsetof(CPUState
, pc
), "pc");
124 cpu_lock_addr
= tcg_global_mem_new_i64(TCG_AREG0
,
125 offsetof(CPUState
, lock_addr
),
127 cpu_lock_st_addr
= tcg_global_mem_new_i64(TCG_AREG0
,
128 offsetof(CPUState
, lock_st_addr
),
130 cpu_lock_value
= tcg_global_mem_new_i64(TCG_AREG0
,
131 offsetof(CPUState
, lock_value
),
134 #ifdef CONFIG_USER_ONLY
135 cpu_uniq
= tcg_global_mem_new_i64(TCG_AREG0
,
136 offsetof(CPUState
, unique
), "uniq");
139 /* register helpers */
146 static void gen_excp_1(int exception
, int error_code
)
150 tmp1
= tcg_const_i32(exception
);
151 tmp2
= tcg_const_i32(error_code
);
152 gen_helper_excp(tmp1
, tmp2
);
153 tcg_temp_free_i32(tmp2
);
154 tcg_temp_free_i32(tmp1
);
157 static ExitStatus
gen_excp(DisasContext
*ctx
, int exception
, int error_code
)
159 tcg_gen_movi_i64(cpu_pc
, ctx
->pc
);
160 gen_excp_1(exception
, error_code
);
161 return EXIT_NORETURN
;
164 static inline ExitStatus
gen_invalid(DisasContext
*ctx
)
166 return gen_excp(ctx
, EXCP_OPCDEC
, 0);
169 static inline void gen_qemu_ldf(TCGv t0
, TCGv t1
, int flags
)
171 TCGv tmp
= tcg_temp_new();
172 TCGv_i32 tmp32
= tcg_temp_new_i32();
173 tcg_gen_qemu_ld32u(tmp
, t1
, flags
);
174 tcg_gen_trunc_i64_i32(tmp32
, tmp
);
175 gen_helper_memory_to_f(t0
, tmp32
);
176 tcg_temp_free_i32(tmp32
);
180 static inline void gen_qemu_ldg(TCGv t0
, TCGv t1
, int flags
)
182 TCGv tmp
= tcg_temp_new();
183 tcg_gen_qemu_ld64(tmp
, t1
, flags
);
184 gen_helper_memory_to_g(t0
, tmp
);
188 static inline void gen_qemu_lds(TCGv t0
, TCGv t1
, int flags
)
190 TCGv tmp
= tcg_temp_new();
191 TCGv_i32 tmp32
= tcg_temp_new_i32();
192 tcg_gen_qemu_ld32u(tmp
, t1
, flags
);
193 tcg_gen_trunc_i64_i32(tmp32
, tmp
);
194 gen_helper_memory_to_s(t0
, tmp32
);
195 tcg_temp_free_i32(tmp32
);
199 static inline void gen_qemu_ldl_l(TCGv t0
, TCGv t1
, int flags
)
201 tcg_gen_qemu_ld32s(t0
, t1
, flags
);
202 tcg_gen_mov_i64(cpu_lock_addr
, t1
);
203 tcg_gen_mov_i64(cpu_lock_value
, t0
);
206 static inline void gen_qemu_ldq_l(TCGv t0
, TCGv t1
, int flags
)
208 tcg_gen_qemu_ld64(t0
, t1
, flags
);
209 tcg_gen_mov_i64(cpu_lock_addr
, t1
);
210 tcg_gen_mov_i64(cpu_lock_value
, t0
);
213 static inline void gen_load_mem(DisasContext
*ctx
,
214 void (*tcg_gen_qemu_load
)(TCGv t0
, TCGv t1
,
216 int ra
, int rb
, int32_t disp16
, int fp
,
221 /* LDQ_U with ra $31 is UNOP. Other various loads are forms of
222 prefetches, which we can treat as nops. No worries about
223 missed exceptions here. */
224 if (unlikely(ra
== 31)) {
228 addr
= tcg_temp_new();
230 tcg_gen_addi_i64(addr
, cpu_ir
[rb
], disp16
);
232 tcg_gen_andi_i64(addr
, addr
, ~0x7);
238 tcg_gen_movi_i64(addr
, disp16
);
241 va
= (fp
? cpu_fir
[ra
] : cpu_ir
[ra
]);
242 tcg_gen_qemu_load(va
, addr
, ctx
->mem_idx
);
247 static inline void gen_qemu_stf(TCGv t0
, TCGv t1
, int flags
)
249 TCGv_i32 tmp32
= tcg_temp_new_i32();
250 TCGv tmp
= tcg_temp_new();
251 gen_helper_f_to_memory(tmp32
, t0
);
252 tcg_gen_extu_i32_i64(tmp
, tmp32
);
253 tcg_gen_qemu_st32(tmp
, t1
, flags
);
255 tcg_temp_free_i32(tmp32
);
258 static inline void gen_qemu_stg(TCGv t0
, TCGv t1
, int flags
)
260 TCGv tmp
= tcg_temp_new();
261 gen_helper_g_to_memory(tmp
, t0
);
262 tcg_gen_qemu_st64(tmp
, t1
, flags
);
266 static inline void gen_qemu_sts(TCGv t0
, TCGv t1
, int flags
)
268 TCGv_i32 tmp32
= tcg_temp_new_i32();
269 TCGv tmp
= tcg_temp_new();
270 gen_helper_s_to_memory(tmp32
, t0
);
271 tcg_gen_extu_i32_i64(tmp
, tmp32
);
272 tcg_gen_qemu_st32(tmp
, t1
, flags
);
274 tcg_temp_free_i32(tmp32
);
277 static inline void gen_store_mem(DisasContext
*ctx
,
278 void (*tcg_gen_qemu_store
)(TCGv t0
, TCGv t1
,
280 int ra
, int rb
, int32_t disp16
, int fp
,
285 addr
= tcg_temp_new();
287 tcg_gen_addi_i64(addr
, cpu_ir
[rb
], disp16
);
289 tcg_gen_andi_i64(addr
, addr
, ~0x7);
295 tcg_gen_movi_i64(addr
, disp16
);
299 va
= tcg_const_i64(0);
301 va
= (fp
? cpu_fir
[ra
] : cpu_ir
[ra
]);
303 tcg_gen_qemu_store(va
, addr
, ctx
->mem_idx
);
311 static ExitStatus
gen_store_conditional(DisasContext
*ctx
, int ra
, int rb
,
312 int32_t disp16
, int quad
)
317 /* ??? Don't bother storing anything. The user can't tell
318 the difference, since the zero register always reads zero. */
322 #if defined(CONFIG_USER_ONLY)
323 addr
= cpu_lock_st_addr
;
325 addr
= tcg_temp_local_new();
329 tcg_gen_addi_i64(addr
, cpu_ir
[rb
], disp16
);
331 tcg_gen_movi_i64(addr
, disp16
);
334 #if defined(CONFIG_USER_ONLY)
335 /* ??? This is handled via a complicated version of compare-and-swap
336 in the cpu_loop. Hopefully one day we'll have a real CAS opcode
337 in TCG so that this isn't necessary. */
338 return gen_excp(ctx
, quad
? EXCP_STQ_C
: EXCP_STL_C
, ra
);
340 /* ??? In system mode we are never multi-threaded, so CAS can be
341 implemented via a non-atomic load-compare-store sequence. */
343 int lab_fail
, lab_done
;
346 lab_fail
= gen_new_label();
347 lab_done
= gen_new_label();
348 tcg_gen_brcond_i64(TCG_COND_NE
, addr
, cpu_lock_addr
, lab_fail
);
350 val
= tcg_temp_new();
352 tcg_gen_qemu_ld64(val
, addr
, ctx
->mem_idx
);
354 tcg_gen_qemu_ld32s(val
, addr
, ctx
->mem_idx
);
356 tcg_gen_brcond_i64(TCG_COND_NE
, val
, cpu_lock_value
, lab_fail
);
359 tcg_gen_qemu_st64(cpu_ir
[ra
], addr
, ctx
->mem_idx
);
361 tcg_gen_qemu_st32(cpu_ir
[ra
], addr
, ctx
->mem_idx
);
363 tcg_gen_movi_i64(cpu_ir
[ra
], 1);
364 tcg_gen_br(lab_done
);
366 gen_set_label(lab_fail
);
367 tcg_gen_movi_i64(cpu_ir
[ra
], 0);
369 gen_set_label(lab_done
);
370 tcg_gen_movi_i64(cpu_lock_addr
, -1);
378 static int use_goto_tb(DisasContext
*ctx
, uint64_t dest
)
380 /* Check for the dest on the same page as the start of the TB. We
381 also want to suppress goto_tb in the case of single-steping and IO. */
382 return (((ctx
->tb
->pc
^ dest
) & TARGET_PAGE_MASK
) == 0
383 && !ctx
->env
->singlestep_enabled
384 && !(ctx
->tb
->cflags
& CF_LAST_IO
));
387 static ExitStatus
gen_bdirect(DisasContext
*ctx
, int ra
, int32_t disp
)
389 uint64_t dest
= ctx
->pc
+ (disp
<< 2);
392 tcg_gen_movi_i64(cpu_ir
[ra
], ctx
->pc
);
395 /* Notice branch-to-next; used to initialize RA with the PC. */
398 } else if (use_goto_tb(ctx
, dest
)) {
400 tcg_gen_movi_i64(cpu_pc
, dest
);
401 tcg_gen_exit_tb((tcg_target_long
)ctx
->tb
);
404 tcg_gen_movi_i64(cpu_pc
, dest
);
405 return EXIT_PC_UPDATED
;
409 static ExitStatus
gen_bcond_internal(DisasContext
*ctx
, TCGCond cond
,
410 TCGv cmp
, int32_t disp
)
412 uint64_t dest
= ctx
->pc
+ (disp
<< 2);
413 int lab_true
= gen_new_label();
415 if (use_goto_tb(ctx
, dest
)) {
416 tcg_gen_brcondi_i64(cond
, cmp
, 0, lab_true
);
419 tcg_gen_movi_i64(cpu_pc
, ctx
->pc
);
420 tcg_gen_exit_tb((tcg_target_long
)ctx
->tb
);
422 gen_set_label(lab_true
);
424 tcg_gen_movi_i64(cpu_pc
, dest
);
425 tcg_gen_exit_tb((tcg_target_long
)ctx
->tb
+ 1);
429 int lab_over
= gen_new_label();
431 /* ??? Consider using either
434 movcond pc, cond, 0, tmp, pc
441 The current diamond subgraph surely isn't efficient. */
443 tcg_gen_brcondi_i64(cond
, cmp
, 0, lab_true
);
444 tcg_gen_movi_i64(cpu_pc
, ctx
->pc
);
445 tcg_gen_br(lab_over
);
446 gen_set_label(lab_true
);
447 tcg_gen_movi_i64(cpu_pc
, dest
);
448 gen_set_label(lab_over
);
450 return EXIT_PC_UPDATED
;
454 static ExitStatus
gen_bcond(DisasContext
*ctx
, TCGCond cond
, int ra
,
455 int32_t disp
, int mask
)
459 if (unlikely(ra
== 31)) {
460 cmp_tmp
= tcg_const_i64(0);
462 cmp_tmp
= tcg_temp_new();
464 tcg_gen_andi_i64(cmp_tmp
, cpu_ir
[ra
], 1);
466 tcg_gen_mov_i64(cmp_tmp
, cpu_ir
[ra
]);
470 return gen_bcond_internal(ctx
, cond
, cmp_tmp
, disp
);
473 /* Fold -0.0 for comparison with COND. */
475 static void gen_fold_mzero(TCGCond cond
, TCGv dest
, TCGv src
)
477 uint64_t mzero
= 1ull << 63;
482 /* For <= or >, the -0.0 value directly compares the way we want. */
483 tcg_gen_mov_i64(dest
, src
);
488 /* For == or !=, we can simply mask off the sign bit and compare. */
489 tcg_gen_andi_i64(dest
, src
, mzero
- 1);
494 /* For >= or <, map -0.0 to +0.0 via comparison and mask. */
495 tcg_gen_setcondi_i64(TCG_COND_NE
, dest
, src
, mzero
);
496 tcg_gen_neg_i64(dest
, dest
);
497 tcg_gen_and_i64(dest
, dest
, src
);
505 static ExitStatus
gen_fbcond(DisasContext
*ctx
, TCGCond cond
, int ra
,
510 if (unlikely(ra
== 31)) {
511 /* Very uncommon case, but easier to optimize it to an integer
512 comparison than continuing with the floating point comparison. */
513 return gen_bcond(ctx
, cond
, ra
, disp
, 0);
516 cmp_tmp
= tcg_temp_new();
517 gen_fold_mzero(cond
, cmp_tmp
, cpu_fir
[ra
]);
518 return gen_bcond_internal(ctx
, cond
, cmp_tmp
, disp
);
521 static void gen_cmov(TCGCond cond
, int ra
, int rb
, int rc
,
522 int islit
, uint8_t lit
, int mask
)
524 TCGCond inv_cond
= tcg_invert_cond(cond
);
527 if (unlikely(rc
== 31))
530 l1
= gen_new_label();
534 TCGv tmp
= tcg_temp_new();
535 tcg_gen_andi_i64(tmp
, cpu_ir
[ra
], 1);
536 tcg_gen_brcondi_i64(inv_cond
, tmp
, 0, l1
);
539 tcg_gen_brcondi_i64(inv_cond
, cpu_ir
[ra
], 0, l1
);
541 /* Very uncommon case - Do not bother to optimize. */
542 TCGv tmp
= tcg_const_i64(0);
543 tcg_gen_brcondi_i64(inv_cond
, tmp
, 0, l1
);
548 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
550 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
554 static void gen_fcmov(TCGCond cond
, int ra
, int rb
, int rc
)
559 if (unlikely(rc
== 31)) {
563 cmp_tmp
= tcg_temp_new();
564 if (unlikely(ra
== 31)) {
565 tcg_gen_movi_i64(cmp_tmp
, 0);
567 gen_fold_mzero(cond
, cmp_tmp
, cpu_fir
[ra
]);
570 l1
= gen_new_label();
571 tcg_gen_brcondi_i64(tcg_invert_cond(cond
), cmp_tmp
, 0, l1
);
572 tcg_temp_free(cmp_tmp
);
575 tcg_gen_mov_i64(cpu_fir
[rc
], cpu_fir
[rb
]);
577 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
581 #define QUAL_RM_N 0x080 /* Round mode nearest even */
582 #define QUAL_RM_C 0x000 /* Round mode chopped */
583 #define QUAL_RM_M 0x040 /* Round mode minus infinity */
584 #define QUAL_RM_D 0x0c0 /* Round mode dynamic */
585 #define QUAL_RM_MASK 0x0c0
587 #define QUAL_U 0x100 /* Underflow enable (fp output) */
588 #define QUAL_V 0x100 /* Overflow enable (int output) */
589 #define QUAL_S 0x400 /* Software completion enable */
590 #define QUAL_I 0x200 /* Inexact detection enable */
592 static void gen_qual_roundmode(DisasContext
*ctx
, int fn11
)
596 fn11
&= QUAL_RM_MASK
;
597 if (fn11
== ctx
->tb_rm
) {
602 tmp
= tcg_temp_new_i32();
605 tcg_gen_movi_i32(tmp
, float_round_nearest_even
);
608 tcg_gen_movi_i32(tmp
, float_round_to_zero
);
611 tcg_gen_movi_i32(tmp
, float_round_down
);
614 tcg_gen_ld8u_i32(tmp
, cpu_env
, offsetof(CPUState
, fpcr_dyn_round
));
618 #if defined(CONFIG_SOFTFLOAT_INLINE)
619 /* ??? The "softfloat.h" interface is to call set_float_rounding_mode.
620 With CONFIG_SOFTFLOAT that expands to an out-of-line call that just
621 sets the one field. */
622 tcg_gen_st8_i32(tmp
, cpu_env
,
623 offsetof(CPUState
, fp_status
.float_rounding_mode
));
625 gen_helper_setroundmode(tmp
);
628 tcg_temp_free_i32(tmp
);
631 static void gen_qual_flushzero(DisasContext
*ctx
, int fn11
)
636 if (fn11
== ctx
->tb_ftz
) {
641 tmp
= tcg_temp_new_i32();
643 /* Underflow is enabled, use the FPCR setting. */
644 tcg_gen_ld8u_i32(tmp
, cpu_env
, offsetof(CPUState
, fpcr_flush_to_zero
));
646 /* Underflow is disabled, force flush-to-zero. */
647 tcg_gen_movi_i32(tmp
, 1);
650 #if defined(CONFIG_SOFTFLOAT_INLINE)
651 tcg_gen_st8_i32(tmp
, cpu_env
,
652 offsetof(CPUState
, fp_status
.flush_to_zero
));
654 gen_helper_setflushzero(tmp
);
657 tcg_temp_free_i32(tmp
);
660 static TCGv
gen_ieee_input(int reg
, int fn11
, int is_cmp
)
662 TCGv val
= tcg_temp_new();
664 tcg_gen_movi_i64(val
, 0);
665 } else if (fn11
& QUAL_S
) {
666 gen_helper_ieee_input_s(val
, cpu_fir
[reg
]);
668 gen_helper_ieee_input_cmp(val
, cpu_fir
[reg
]);
670 gen_helper_ieee_input(val
, cpu_fir
[reg
]);
675 static void gen_fp_exc_clear(void)
677 #if defined(CONFIG_SOFTFLOAT_INLINE)
678 TCGv_i32 zero
= tcg_const_i32(0);
679 tcg_gen_st8_i32(zero
, cpu_env
,
680 offsetof(CPUState
, fp_status
.float_exception_flags
));
681 tcg_temp_free_i32(zero
);
683 gen_helper_fp_exc_clear();
687 static void gen_fp_exc_raise_ignore(int rc
, int fn11
, int ignore
)
689 /* ??? We ought to be able to do something with imprecise exceptions.
690 E.g. notice we're still in the trap shadow of something within the
691 TB and do not generate the code to signal the exception; end the TB
692 when an exception is forced to arrive, either by consumption of a
693 register value or TRAPB or EXCB. */
694 TCGv_i32 exc
= tcg_temp_new_i32();
697 #if defined(CONFIG_SOFTFLOAT_INLINE)
698 tcg_gen_ld8u_i32(exc
, cpu_env
,
699 offsetof(CPUState
, fp_status
.float_exception_flags
));
701 gen_helper_fp_exc_get(exc
);
705 tcg_gen_andi_i32(exc
, exc
, ~ignore
);
708 /* ??? Pass in the regno of the destination so that the helper can
709 set EXC_MASK, which contains a bitmask of destination registers
710 that have caused arithmetic traps. A simple userspace emulation
711 does not require this. We do need it for a guest kernel's entArith,
712 or if we were to do something clever with imprecise exceptions. */
713 reg
= tcg_const_i32(rc
+ 32);
716 gen_helper_fp_exc_raise_s(exc
, reg
);
718 gen_helper_fp_exc_raise(exc
, reg
);
721 tcg_temp_free_i32(reg
);
722 tcg_temp_free_i32(exc
);
725 static inline void gen_fp_exc_raise(int rc
, int fn11
)
727 gen_fp_exc_raise_ignore(rc
, fn11
, fn11
& QUAL_I
? 0 : float_flag_inexact
);
730 static void gen_fcvtlq(int rb
, int rc
)
732 if (unlikely(rc
== 31)) {
735 if (unlikely(rb
== 31)) {
736 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
738 TCGv tmp
= tcg_temp_new();
740 /* The arithmetic right shift here, plus the sign-extended mask below
741 yields a sign-extended result without an explicit ext32s_i64. */
742 tcg_gen_sari_i64(tmp
, cpu_fir
[rb
], 32);
743 tcg_gen_shri_i64(cpu_fir
[rc
], cpu_fir
[rb
], 29);
744 tcg_gen_andi_i64(tmp
, tmp
, (int32_t)0xc0000000);
745 tcg_gen_andi_i64(cpu_fir
[rc
], cpu_fir
[rc
], 0x3fffffff);
746 tcg_gen_or_i64(cpu_fir
[rc
], cpu_fir
[rc
], tmp
);
752 static void gen_fcvtql(int rb
, int rc
)
754 if (unlikely(rc
== 31)) {
757 if (unlikely(rb
== 31)) {
758 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
760 TCGv tmp
= tcg_temp_new();
762 tcg_gen_andi_i64(tmp
, cpu_fir
[rb
], 0xC0000000);
763 tcg_gen_andi_i64(cpu_fir
[rc
], cpu_fir
[rb
], 0x3FFFFFFF);
764 tcg_gen_shli_i64(tmp
, tmp
, 32);
765 tcg_gen_shli_i64(cpu_fir
[rc
], cpu_fir
[rc
], 29);
766 tcg_gen_or_i64(cpu_fir
[rc
], cpu_fir
[rc
], tmp
);
772 static void gen_fcvtql_v(DisasContext
*ctx
, int rb
, int rc
)
775 int lab
= gen_new_label();
776 TCGv tmp
= tcg_temp_new();
778 tcg_gen_ext32s_i64(tmp
, cpu_fir
[rb
]);
779 tcg_gen_brcond_i64(TCG_COND_EQ
, tmp
, cpu_fir
[rb
], lab
);
780 gen_excp(ctx
, EXCP_ARITH
, EXC_M_IOV
);
787 #define FARITH2(name) \
788 static inline void glue(gen_f, name)(int rb, int rc) \
790 if (unlikely(rc == 31)) { \
794 gen_helper_ ## name (cpu_fir[rc], cpu_fir[rb]); \
796 TCGv tmp = tcg_const_i64(0); \
797 gen_helper_ ## name (cpu_fir[rc], tmp); \
798 tcg_temp_free(tmp); \
802 /* ??? VAX instruction qualifiers ignored. */
810 static void gen_ieee_arith2(DisasContext
*ctx
, void (*helper
)(TCGv
, TCGv
),
811 int rb
, int rc
, int fn11
)
815 /* ??? This is wrong: the instruction is not a nop, it still may
817 if (unlikely(rc
== 31)) {
821 gen_qual_roundmode(ctx
, fn11
);
822 gen_qual_flushzero(ctx
, fn11
);
825 vb
= gen_ieee_input(rb
, fn11
, 0);
826 helper(cpu_fir
[rc
], vb
);
829 gen_fp_exc_raise(rc
, fn11
);
832 #define IEEE_ARITH2(name) \
833 static inline void glue(gen_f, name)(DisasContext *ctx, \
834 int rb, int rc, int fn11) \
836 gen_ieee_arith2(ctx, gen_helper_##name, rb, rc, fn11); \
843 static void gen_fcvttq(DisasContext
*ctx
, int rb
, int rc
, int fn11
)
848 /* ??? This is wrong: the instruction is not a nop, it still may
850 if (unlikely(rc
== 31)) {
854 /* No need to set flushzero, since we have an integer output. */
856 vb
= gen_ieee_input(rb
, fn11
, 0);
858 /* Almost all integer conversions use cropped rounding, and most
859 also do not have integer overflow enabled. Special case that. */
862 gen_helper_cvttq_c(cpu_fir
[rc
], vb
);
864 case QUAL_V
| QUAL_RM_C
:
865 case QUAL_S
| QUAL_V
| QUAL_RM_C
:
866 ignore
= float_flag_inexact
;
868 case QUAL_S
| QUAL_V
| QUAL_I
| QUAL_RM_C
:
869 gen_helper_cvttq_svic(cpu_fir
[rc
], vb
);
872 gen_qual_roundmode(ctx
, fn11
);
873 gen_helper_cvttq(cpu_fir
[rc
], vb
);
874 ignore
|= (fn11
& QUAL_V
? 0 : float_flag_overflow
);
875 ignore
|= (fn11
& QUAL_I
? 0 : float_flag_inexact
);
880 gen_fp_exc_raise_ignore(rc
, fn11
, ignore
);
883 static void gen_ieee_intcvt(DisasContext
*ctx
, void (*helper
)(TCGv
, TCGv
),
884 int rb
, int rc
, int fn11
)
888 /* ??? This is wrong: the instruction is not a nop, it still may
890 if (unlikely(rc
== 31)) {
894 gen_qual_roundmode(ctx
, fn11
);
897 vb
= tcg_const_i64(0);
902 /* The only exception that can be raised by integer conversion
903 is inexact. Thus we only need to worry about exceptions when
904 inexact handling is requested. */
907 helper(cpu_fir
[rc
], vb
);
908 gen_fp_exc_raise(rc
, fn11
);
910 helper(cpu_fir
[rc
], vb
);
918 #define IEEE_INTCVT(name) \
919 static inline void glue(gen_f, name)(DisasContext *ctx, \
920 int rb, int rc, int fn11) \
922 gen_ieee_intcvt(ctx, gen_helper_##name, rb, rc, fn11); \
927 static void gen_cpys_internal(int ra
, int rb
, int rc
, int inv_a
, uint64_t mask
)
932 if (unlikely(rc
== 31)) {
936 vmask
= tcg_const_i64(mask
);
946 va
= tcg_temp_new_i64();
947 tcg_gen_mov_i64(va
, cpu_fir
[ra
]);
949 tcg_gen_andc_i64(va
, vmask
, va
);
951 tcg_gen_and_i64(va
, va
, vmask
);
959 vb
= tcg_temp_new_i64();
960 tcg_gen_andc_i64(vb
, cpu_fir
[rb
], vmask
);
963 switch (za
<< 1 | zb
) {
965 tcg_gen_or_i64(cpu_fir
[rc
], va
, vb
);
968 tcg_gen_mov_i64(cpu_fir
[rc
], va
);
971 tcg_gen_mov_i64(cpu_fir
[rc
], vb
);
974 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
978 tcg_temp_free(vmask
);
987 static inline void gen_fcpys(int ra
, int rb
, int rc
)
989 gen_cpys_internal(ra
, rb
, rc
, 0, 0x8000000000000000ULL
);
992 static inline void gen_fcpysn(int ra
, int rb
, int rc
)
994 gen_cpys_internal(ra
, rb
, rc
, 1, 0x8000000000000000ULL
);
997 static inline void gen_fcpyse(int ra
, int rb
, int rc
)
999 gen_cpys_internal(ra
, rb
, rc
, 0, 0xFFF0000000000000ULL
);
1002 #define FARITH3(name) \
1003 static inline void glue(gen_f, name)(int ra, int rb, int rc) \
1007 if (unlikely(rc == 31)) { \
1011 va = tcg_const_i64(0); \
1016 vb = tcg_const_i64(0); \
1021 gen_helper_ ## name (cpu_fir[rc], va, vb); \
1024 tcg_temp_free(va); \
1027 tcg_temp_free(vb); \
1031 /* ??? VAX instruction qualifiers ignored. */
1044 static void gen_ieee_arith3(DisasContext
*ctx
,
1045 void (*helper
)(TCGv
, TCGv
, TCGv
),
1046 int ra
, int rb
, int rc
, int fn11
)
1050 /* ??? This is wrong: the instruction is not a nop, it still may
1051 raise exceptions. */
1052 if (unlikely(rc
== 31)) {
1056 gen_qual_roundmode(ctx
, fn11
);
1057 gen_qual_flushzero(ctx
, fn11
);
1060 va
= gen_ieee_input(ra
, fn11
, 0);
1061 vb
= gen_ieee_input(rb
, fn11
, 0);
1062 helper(cpu_fir
[rc
], va
, vb
);
1066 gen_fp_exc_raise(rc
, fn11
);
1069 #define IEEE_ARITH3(name) \
1070 static inline void glue(gen_f, name)(DisasContext *ctx, \
1071 int ra, int rb, int rc, int fn11) \
1073 gen_ieee_arith3(ctx, gen_helper_##name, ra, rb, rc, fn11); \
1084 static void gen_ieee_compare(DisasContext
*ctx
,
1085 void (*helper
)(TCGv
, TCGv
, TCGv
),
1086 int ra
, int rb
, int rc
, int fn11
)
1090 /* ??? This is wrong: the instruction is not a nop, it still may
1091 raise exceptions. */
1092 if (unlikely(rc
== 31)) {
1098 va
= gen_ieee_input(ra
, fn11
, 1);
1099 vb
= gen_ieee_input(rb
, fn11
, 1);
1100 helper(cpu_fir
[rc
], va
, vb
);
1104 gen_fp_exc_raise(rc
, fn11
);
1107 #define IEEE_CMP3(name) \
1108 static inline void glue(gen_f, name)(DisasContext *ctx, \
1109 int ra, int rb, int rc, int fn11) \
1111 gen_ieee_compare(ctx, gen_helper_##name, ra, rb, rc, fn11); \
1118 static inline uint64_t zapnot_mask(uint8_t lit
)
1123 for (i
= 0; i
< 8; ++i
) {
1125 mask
|= 0xffull
<< (i
* 8);
1130 /* Implement zapnot with an immediate operand, which expands to some
1131 form of immediate AND. This is a basic building block in the
1132 definition of many of the other byte manipulation instructions. */
1133 static void gen_zapnoti(TCGv dest
, TCGv src
, uint8_t lit
)
1137 tcg_gen_movi_i64(dest
, 0);
1140 tcg_gen_ext8u_i64(dest
, src
);
1143 tcg_gen_ext16u_i64(dest
, src
);
1146 tcg_gen_ext32u_i64(dest
, src
);
1149 tcg_gen_mov_i64(dest
, src
);
1152 tcg_gen_andi_i64 (dest
, src
, zapnot_mask (lit
));
1157 static inline void gen_zapnot(int ra
, int rb
, int rc
, int islit
, uint8_t lit
)
1159 if (unlikely(rc
== 31))
1161 else if (unlikely(ra
== 31))
1162 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1164 gen_zapnoti(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1166 gen_helper_zapnot (cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1169 static inline void gen_zap(int ra
, int rb
, int rc
, int islit
, uint8_t lit
)
1171 if (unlikely(rc
== 31))
1173 else if (unlikely(ra
== 31))
1174 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1176 gen_zapnoti(cpu_ir
[rc
], cpu_ir
[ra
], ~lit
);
1178 gen_helper_zap (cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1182 /* EXTWH, EXTLH, EXTQH */
1183 static void gen_ext_h(int ra
, int rb
, int rc
, int islit
,
1184 uint8_t lit
, uint8_t byte_mask
)
1186 if (unlikely(rc
== 31))
1188 else if (unlikely(ra
== 31))
1189 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1192 lit
= (64 - (lit
& 7) * 8) & 0x3f;
1193 tcg_gen_shli_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1195 TCGv tmp1
= tcg_temp_new();
1196 tcg_gen_andi_i64(tmp1
, cpu_ir
[rb
], 7);
1197 tcg_gen_shli_i64(tmp1
, tmp1
, 3);
1198 tcg_gen_neg_i64(tmp1
, tmp1
);
1199 tcg_gen_andi_i64(tmp1
, tmp1
, 0x3f);
1200 tcg_gen_shl_i64(cpu_ir
[rc
], cpu_ir
[ra
], tmp1
);
1201 tcg_temp_free(tmp1
);
1203 gen_zapnoti(cpu_ir
[rc
], cpu_ir
[rc
], byte_mask
);
1207 /* EXTBL, EXTWL, EXTLL, EXTQL */
1208 static void gen_ext_l(int ra
, int rb
, int rc
, int islit
,
1209 uint8_t lit
, uint8_t byte_mask
)
1211 if (unlikely(rc
== 31))
1213 else if (unlikely(ra
== 31))
1214 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1217 tcg_gen_shri_i64(cpu_ir
[rc
], cpu_ir
[ra
], (lit
& 7) * 8);
1219 TCGv tmp
= tcg_temp_new();
1220 tcg_gen_andi_i64(tmp
, cpu_ir
[rb
], 7);
1221 tcg_gen_shli_i64(tmp
, tmp
, 3);
1222 tcg_gen_shr_i64(cpu_ir
[rc
], cpu_ir
[ra
], tmp
);
1225 gen_zapnoti(cpu_ir
[rc
], cpu_ir
[rc
], byte_mask
);
1229 /* INSWH, INSLH, INSQH */
1230 static void gen_ins_h(int ra
, int rb
, int rc
, int islit
,
1231 uint8_t lit
, uint8_t byte_mask
)
1233 if (unlikely(rc
== 31))
1235 else if (unlikely(ra
== 31) || (islit
&& (lit
& 7) == 0))
1236 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1238 TCGv tmp
= tcg_temp_new();
1240 /* The instruction description has us left-shift the byte mask
1241 and extract bits <15:8> and apply that zap at the end. This
1242 is equivalent to simply performing the zap first and shifting
1244 gen_zapnoti (tmp
, cpu_ir
[ra
], byte_mask
);
1247 /* Note that we have handled the lit==0 case above. */
1248 tcg_gen_shri_i64 (cpu_ir
[rc
], tmp
, 64 - (lit
& 7) * 8);
1250 TCGv shift
= tcg_temp_new();
1252 /* If (B & 7) == 0, we need to shift by 64 and leave a zero.
1253 Do this portably by splitting the shift into two parts:
1254 shift_count-1 and 1. Arrange for the -1 by using
1255 ones-complement instead of twos-complement in the negation:
1256 ~((B & 7) * 8) & 63. */
1258 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 7);
1259 tcg_gen_shli_i64(shift
, shift
, 3);
1260 tcg_gen_not_i64(shift
, shift
);
1261 tcg_gen_andi_i64(shift
, shift
, 0x3f);
1263 tcg_gen_shr_i64(cpu_ir
[rc
], tmp
, shift
);
1264 tcg_gen_shri_i64(cpu_ir
[rc
], cpu_ir
[rc
], 1);
1265 tcg_temp_free(shift
);
1271 /* INSBL, INSWL, INSLL, INSQL */
1272 static void gen_ins_l(int ra
, int rb
, int rc
, int islit
,
1273 uint8_t lit
, uint8_t byte_mask
)
1275 if (unlikely(rc
== 31))
1277 else if (unlikely(ra
== 31))
1278 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1280 TCGv tmp
= tcg_temp_new();
1282 /* The instruction description has us left-shift the byte mask
1283 the same number of byte slots as the data and apply the zap
1284 at the end. This is equivalent to simply performing the zap
1285 first and shifting afterward. */
1286 gen_zapnoti (tmp
, cpu_ir
[ra
], byte_mask
);
1289 tcg_gen_shli_i64(cpu_ir
[rc
], tmp
, (lit
& 7) * 8);
1291 TCGv shift
= tcg_temp_new();
1292 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 7);
1293 tcg_gen_shli_i64(shift
, shift
, 3);
1294 tcg_gen_shl_i64(cpu_ir
[rc
], tmp
, shift
);
1295 tcg_temp_free(shift
);
1301 /* MSKWH, MSKLH, MSKQH */
1302 static void gen_msk_h(int ra
, int rb
, int rc
, int islit
,
1303 uint8_t lit
, uint8_t byte_mask
)
1305 if (unlikely(rc
== 31))
1307 else if (unlikely(ra
== 31))
1308 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1310 gen_zapnoti (cpu_ir
[rc
], cpu_ir
[ra
], ~((byte_mask
<< (lit
& 7)) >> 8));
1312 TCGv shift
= tcg_temp_new();
1313 TCGv mask
= tcg_temp_new();
1315 /* The instruction description is as above, where the byte_mask
1316 is shifted left, and then we extract bits <15:8>. This can be
1317 emulated with a right-shift on the expanded byte mask. This
1318 requires extra care because for an input <2:0> == 0 we need a
1319 shift of 64 bits in order to generate a zero. This is done by
1320 splitting the shift into two parts, the variable shift - 1
1321 followed by a constant 1 shift. The code we expand below is
1322 equivalent to ~((B & 7) * 8) & 63. */
1324 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 7);
1325 tcg_gen_shli_i64(shift
, shift
, 3);
1326 tcg_gen_not_i64(shift
, shift
);
1327 tcg_gen_andi_i64(shift
, shift
, 0x3f);
1328 tcg_gen_movi_i64(mask
, zapnot_mask (byte_mask
));
1329 tcg_gen_shr_i64(mask
, mask
, shift
);
1330 tcg_gen_shri_i64(mask
, mask
, 1);
1332 tcg_gen_andc_i64(cpu_ir
[rc
], cpu_ir
[ra
], mask
);
1334 tcg_temp_free(mask
);
1335 tcg_temp_free(shift
);
1339 /* MSKBL, MSKWL, MSKLL, MSKQL */
1340 static void gen_msk_l(int ra
, int rb
, int rc
, int islit
,
1341 uint8_t lit
, uint8_t byte_mask
)
1343 if (unlikely(rc
== 31))
1345 else if (unlikely(ra
== 31))
1346 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1348 gen_zapnoti (cpu_ir
[rc
], cpu_ir
[ra
], ~(byte_mask
<< (lit
& 7)));
1350 TCGv shift
= tcg_temp_new();
1351 TCGv mask
= tcg_temp_new();
1353 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 7);
1354 tcg_gen_shli_i64(shift
, shift
, 3);
1355 tcg_gen_movi_i64(mask
, zapnot_mask (byte_mask
));
1356 tcg_gen_shl_i64(mask
, mask
, shift
);
1358 tcg_gen_andc_i64(cpu_ir
[rc
], cpu_ir
[ra
], mask
);
1360 tcg_temp_free(mask
);
1361 tcg_temp_free(shift
);
1365 /* Code to call arith3 helpers */
1366 #define ARITH3(name) \
1367 static inline void glue(gen_, name)(int ra, int rb, int rc, int islit,\
1370 if (unlikely(rc == 31)) \
1375 TCGv tmp = tcg_const_i64(lit); \
1376 gen_helper_ ## name(cpu_ir[rc], cpu_ir[ra], tmp); \
1377 tcg_temp_free(tmp); \
1379 gen_helper_ ## name (cpu_ir[rc], cpu_ir[ra], cpu_ir[rb]); \
1381 TCGv tmp1 = tcg_const_i64(0); \
1383 TCGv tmp2 = tcg_const_i64(lit); \
1384 gen_helper_ ## name (cpu_ir[rc], tmp1, tmp2); \
1385 tcg_temp_free(tmp2); \
1387 gen_helper_ ## name (cpu_ir[rc], tmp1, cpu_ir[rb]); \
1388 tcg_temp_free(tmp1); \
1409 #define MVIOP2(name) \
1410 static inline void glue(gen_, name)(int rb, int rc) \
1412 if (unlikely(rc == 31)) \
1414 if (unlikely(rb == 31)) \
1415 tcg_gen_movi_i64(cpu_ir[rc], 0); \
1417 gen_helper_ ## name (cpu_ir[rc], cpu_ir[rb]); \
1424 static void gen_cmp(TCGCond cond
, int ra
, int rb
, int rc
,
1425 int islit
, uint8_t lit
)
1429 if (unlikely(rc
== 31)) {
1434 va
= tcg_const_i64(0);
1439 vb
= tcg_const_i64(lit
);
1444 tcg_gen_setcond_i64(cond
, cpu_ir
[rc
], va
, vb
);
1454 static void gen_rx(int ra
, int set
)
1459 tcg_gen_ld8u_i64(cpu_ir
[ra
], cpu_env
, offsetof(CPUState
, intr_flag
));
1462 tmp
= tcg_const_i32(set
);
1463 tcg_gen_st8_i32(tmp
, cpu_env
, offsetof(CPUState
, intr_flag
));
1464 tcg_temp_free_i32(tmp
);
1467 #ifndef CONFIG_USER_ONLY
1469 #define PR_BYTE 0x100000
1470 #define PR_LONG 0x200000
1472 static int cpu_pr_data(int pr
)
1475 case 0: return offsetof(CPUAlphaState
, ps
) | PR_BYTE
;
1476 case 1: return offsetof(CPUAlphaState
, fen
) | PR_BYTE
;
1477 case 2: return offsetof(CPUAlphaState
, pcc_ofs
) | PR_LONG
;
1478 case 3: return offsetof(CPUAlphaState
, trap_arg0
);
1479 case 4: return offsetof(CPUAlphaState
, trap_arg1
);
1480 case 5: return offsetof(CPUAlphaState
, trap_arg2
);
1481 case 6: return offsetof(CPUAlphaState
, exc_addr
);
1482 case 7: return offsetof(CPUAlphaState
, palbr
);
1483 case 8: return offsetof(CPUAlphaState
, ptbr
);
1484 case 9: return offsetof(CPUAlphaState
, vptptr
);
1485 case 10: return offsetof(CPUAlphaState
, unique
);
1486 case 11: return offsetof(CPUAlphaState
, sysval
);
1487 case 12: return offsetof(CPUAlphaState
, usp
);
1490 return offsetof(CPUAlphaState
, shadow
[pr
- 32]);
1492 return offsetof(CPUAlphaState
, scratch
[pr
- 40]);
1497 static void gen_mfpr(int ra
, int regno
)
1499 int data
= cpu_pr_data(regno
);
1501 /* In our emulated PALcode, these processor registers have no
1502 side effects from reading. */
1507 /* The basic registers are data only, and unknown registers
1508 are read-zero, write-ignore. */
1510 tcg_gen_movi_i64(cpu_ir
[ra
], 0);
1511 } else if (data
& PR_BYTE
) {
1512 tcg_gen_ld8u_i64(cpu_ir
[ra
], cpu_env
, data
& ~PR_BYTE
);
1513 } else if (data
& PR_LONG
) {
1514 tcg_gen_ld32s_i64(cpu_ir
[ra
], cpu_env
, data
& ~PR_LONG
);
1516 tcg_gen_ld_i64(cpu_ir
[ra
], cpu_env
, data
);
1520 static void gen_mtpr(int rb
, int regno
)
1526 tmp
= tcg_const_i64(0);
1531 /* The basic registers are data only, and unknown registers
1532 are read-zero, write-ignore. */
1533 data
= cpu_pr_data(regno
);
1535 if (data
& PR_BYTE
) {
1536 tcg_gen_st8_i64(tmp
, cpu_env
, data
& ~PR_BYTE
);
1537 } else if (data
& PR_LONG
) {
1538 tcg_gen_st32_i64(tmp
, cpu_env
, data
& ~PR_LONG
);
1540 tcg_gen_st_i64(tmp
, cpu_env
, data
);
1548 #endif /* !USER_ONLY*/
1550 static ExitStatus
translate_one(DisasContext
*ctx
, uint32_t insn
)
1553 int32_t disp21
, disp16
, disp12
;
1555 uint8_t opc
, ra
, rb
, rc
, fpfn
, fn7
, fn2
, islit
, real_islit
;
1559 /* Decode all instruction fields */
1561 ra
= (insn
>> 21) & 0x1F;
1562 rb
= (insn
>> 16) & 0x1F;
1564 real_islit
= islit
= (insn
>> 12) & 1;
1565 if (rb
== 31 && !islit
) {
1569 lit
= (insn
>> 13) & 0xFF;
1570 palcode
= insn
& 0x03FFFFFF;
1571 disp21
= ((int32_t)((insn
& 0x001FFFFF) << 11)) >> 11;
1572 disp16
= (int16_t)(insn
& 0x0000FFFF);
1573 disp12
= (int32_t)((insn
& 0x00000FFF) << 20) >> 20;
1574 fn11
= (insn
>> 5) & 0x000007FF;
1576 fn7
= (insn
>> 5) & 0x0000007F;
1577 fn2
= (insn
>> 5) & 0x00000003;
1578 LOG_DISAS("opc %02x ra %2d rb %2d rc %2d disp16 %6d\n",
1579 opc
, ra
, rb
, rc
, disp16
);
1585 #ifdef CONFIG_USER_ONLY
1586 if (palcode
== 0x9E) {
1588 tcg_gen_mov_i64(cpu_ir
[IR_V0
], cpu_uniq
);
1590 } else if (palcode
== 0x9F) {
1592 tcg_gen_mov_i64(cpu_uniq
, cpu_ir
[IR_A0
]);
1596 if (palcode
>= 0x80 && palcode
< 0xC0) {
1597 /* Unprivileged PAL call */
1598 ret
= gen_excp(ctx
, EXCP_CALL_PAL
, palcode
& 0xBF);
1601 #ifndef CONFIG_USER_ONLY
1602 if (palcode
< 0x40) {
1603 /* Privileged PAL code */
1604 if (ctx
->mem_idx
!= MMU_KERNEL_IDX
) {
1607 ret
= gen_excp(ctx
, EXCP_CALL_PAL
, palcode
& 0x3F);
1610 /* Invalid PAL call */
1635 if (likely(ra
!= 31)) {
1637 tcg_gen_addi_i64(cpu_ir
[ra
], cpu_ir
[rb
], disp16
);
1639 tcg_gen_movi_i64(cpu_ir
[ra
], disp16
);
1644 if (likely(ra
!= 31)) {
1646 tcg_gen_addi_i64(cpu_ir
[ra
], cpu_ir
[rb
], disp16
<< 16);
1648 tcg_gen_movi_i64(cpu_ir
[ra
], disp16
<< 16);
1653 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_BWX
) {
1654 gen_load_mem(ctx
, &tcg_gen_qemu_ld8u
, ra
, rb
, disp16
, 0, 0);
1660 gen_load_mem(ctx
, &tcg_gen_qemu_ld64
, ra
, rb
, disp16
, 0, 1);
1664 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_BWX
) {
1665 gen_load_mem(ctx
, &tcg_gen_qemu_ld16u
, ra
, rb
, disp16
, 0, 0);
1671 gen_store_mem(ctx
, &tcg_gen_qemu_st16
, ra
, rb
, disp16
, 0, 0);
1675 gen_store_mem(ctx
, &tcg_gen_qemu_st8
, ra
, rb
, disp16
, 0, 0);
1679 gen_store_mem(ctx
, &tcg_gen_qemu_st64
, ra
, rb
, disp16
, 0, 1);
1685 if (likely(rc
!= 31)) {
1688 tcg_gen_addi_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1689 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1691 tcg_gen_add_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1692 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1696 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1698 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1704 if (likely(rc
!= 31)) {
1706 TCGv tmp
= tcg_temp_new();
1707 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 2);
1709 tcg_gen_addi_i64(tmp
, tmp
, lit
);
1711 tcg_gen_add_i64(tmp
, tmp
, cpu_ir
[rb
]);
1712 tcg_gen_ext32s_i64(cpu_ir
[rc
], tmp
);
1716 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1718 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1724 if (likely(rc
!= 31)) {
1727 tcg_gen_subi_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1729 tcg_gen_sub_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1730 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1733 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1735 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1736 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1742 if (likely(rc
!= 31)) {
1744 TCGv tmp
= tcg_temp_new();
1745 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 2);
1747 tcg_gen_subi_i64(tmp
, tmp
, lit
);
1749 tcg_gen_sub_i64(tmp
, tmp
, cpu_ir
[rb
]);
1750 tcg_gen_ext32s_i64(cpu_ir
[rc
], tmp
);
1754 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1756 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1757 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1764 gen_cmpbge(ra
, rb
, rc
, islit
, lit
);
1768 if (likely(rc
!= 31)) {
1770 TCGv tmp
= tcg_temp_new();
1771 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 3);
1773 tcg_gen_addi_i64(tmp
, tmp
, lit
);
1775 tcg_gen_add_i64(tmp
, tmp
, cpu_ir
[rb
]);
1776 tcg_gen_ext32s_i64(cpu_ir
[rc
], tmp
);
1780 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1782 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1788 if (likely(rc
!= 31)) {
1790 TCGv tmp
= tcg_temp_new();
1791 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 3);
1793 tcg_gen_subi_i64(tmp
, tmp
, lit
);
1795 tcg_gen_sub_i64(tmp
, tmp
, cpu_ir
[rb
]);
1796 tcg_gen_ext32s_i64(cpu_ir
[rc
], tmp
);
1800 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1802 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1803 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
1810 gen_cmp(TCG_COND_LTU
, ra
, rb
, rc
, islit
, lit
);
1814 if (likely(rc
!= 31)) {
1817 tcg_gen_addi_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1819 tcg_gen_add_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1822 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1824 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1830 if (likely(rc
!= 31)) {
1832 TCGv tmp
= tcg_temp_new();
1833 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 2);
1835 tcg_gen_addi_i64(cpu_ir
[rc
], tmp
, lit
);
1837 tcg_gen_add_i64(cpu_ir
[rc
], tmp
, cpu_ir
[rb
]);
1841 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1843 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1849 if (likely(rc
!= 31)) {
1852 tcg_gen_subi_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1854 tcg_gen_sub_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1857 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1859 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1865 if (likely(rc
!= 31)) {
1867 TCGv tmp
= tcg_temp_new();
1868 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 2);
1870 tcg_gen_subi_i64(cpu_ir
[rc
], tmp
, lit
);
1872 tcg_gen_sub_i64(cpu_ir
[rc
], tmp
, cpu_ir
[rb
]);
1876 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1878 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1884 gen_cmp(TCG_COND_EQ
, ra
, rb
, rc
, islit
, lit
);
1888 if (likely(rc
!= 31)) {
1890 TCGv tmp
= tcg_temp_new();
1891 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 3);
1893 tcg_gen_addi_i64(cpu_ir
[rc
], tmp
, lit
);
1895 tcg_gen_add_i64(cpu_ir
[rc
], tmp
, cpu_ir
[rb
]);
1899 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
1901 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1907 if (likely(rc
!= 31)) {
1909 TCGv tmp
= tcg_temp_new();
1910 tcg_gen_shli_i64(tmp
, cpu_ir
[ra
], 3);
1912 tcg_gen_subi_i64(cpu_ir
[rc
], tmp
, lit
);
1914 tcg_gen_sub_i64(cpu_ir
[rc
], tmp
, cpu_ir
[rb
]);
1918 tcg_gen_movi_i64(cpu_ir
[rc
], -lit
);
1920 tcg_gen_neg_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
1926 gen_cmp(TCG_COND_LEU
, ra
, rb
, rc
, islit
, lit
);
1930 gen_addlv(ra
, rb
, rc
, islit
, lit
);
1934 gen_sublv(ra
, rb
, rc
, islit
, lit
);
1938 gen_cmp(TCG_COND_LT
, ra
, rb
, rc
, islit
, lit
);
1942 gen_addqv(ra
, rb
, rc
, islit
, lit
);
1946 gen_subqv(ra
, rb
, rc
, islit
, lit
);
1950 gen_cmp(TCG_COND_LE
, ra
, rb
, rc
, islit
, lit
);
1960 if (likely(rc
!= 31)) {
1962 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1964 tcg_gen_andi_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1966 tcg_gen_and_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1971 if (likely(rc
!= 31)) {
1974 tcg_gen_andi_i64(cpu_ir
[rc
], cpu_ir
[ra
], ~lit
);
1976 tcg_gen_andc_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1978 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
1983 gen_cmov(TCG_COND_NE
, ra
, rb
, rc
, islit
, lit
, 1);
1987 gen_cmov(TCG_COND_EQ
, ra
, rb
, rc
, islit
, lit
, 1);
1991 if (likely(rc
!= 31)) {
1994 tcg_gen_ori_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
1996 tcg_gen_or_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
1999 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
2001 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2007 gen_cmov(TCG_COND_EQ
, ra
, rb
, rc
, islit
, lit
, 0);
2011 gen_cmov(TCG_COND_NE
, ra
, rb
, rc
, islit
, lit
, 0);
2015 if (likely(rc
!= 31)) {
2018 tcg_gen_ori_i64(cpu_ir
[rc
], cpu_ir
[ra
], ~lit
);
2020 tcg_gen_orc_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
2023 tcg_gen_movi_i64(cpu_ir
[rc
], ~lit
);
2025 tcg_gen_not_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2031 if (likely(rc
!= 31)) {
2034 tcg_gen_xori_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
2036 tcg_gen_xor_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
2039 tcg_gen_movi_i64(cpu_ir
[rc
], lit
);
2041 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2047 gen_cmov(TCG_COND_LT
, ra
, rb
, rc
, islit
, lit
, 0);
2051 gen_cmov(TCG_COND_GE
, ra
, rb
, rc
, islit
, lit
, 0);
2055 if (likely(rc
!= 31)) {
2058 tcg_gen_xori_i64(cpu_ir
[rc
], cpu_ir
[ra
], ~lit
);
2060 tcg_gen_eqv_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
2063 tcg_gen_movi_i64(cpu_ir
[rc
], ~lit
);
2065 tcg_gen_not_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2071 if (likely(rc
!= 31)) {
2072 uint64_t amask
= ctx
->tb
->flags
>> TB_FLAGS_AMASK_SHIFT
;
2075 tcg_gen_movi_i64(cpu_ir
[rc
], lit
& ~amask
);
2077 tcg_gen_andi_i64(cpu_ir
[rc
], cpu_ir
[rb
], ~amask
);
2083 gen_cmov(TCG_COND_LE
, ra
, rb
, rc
, islit
, lit
, 0);
2087 gen_cmov(TCG_COND_GT
, ra
, rb
, rc
, islit
, lit
, 0);
2092 tcg_gen_movi_i64(cpu_ir
[rc
], ctx
->env
->implver
);
2102 gen_msk_l(ra
, rb
, rc
, islit
, lit
, 0x01);
2106 gen_ext_l(ra
, rb
, rc
, islit
, lit
, 0x01);
2110 gen_ins_l(ra
, rb
, rc
, islit
, lit
, 0x01);
2114 gen_msk_l(ra
, rb
, rc
, islit
, lit
, 0x03);
2118 gen_ext_l(ra
, rb
, rc
, islit
, lit
, 0x03);
2122 gen_ins_l(ra
, rb
, rc
, islit
, lit
, 0x03);
2126 gen_msk_l(ra
, rb
, rc
, islit
, lit
, 0x0f);
2130 gen_ext_l(ra
, rb
, rc
, islit
, lit
, 0x0f);
2134 gen_ins_l(ra
, rb
, rc
, islit
, lit
, 0x0f);
2138 gen_zap(ra
, rb
, rc
, islit
, lit
);
2142 gen_zapnot(ra
, rb
, rc
, islit
, lit
);
2146 gen_msk_l(ra
, rb
, rc
, islit
, lit
, 0xff);
2150 if (likely(rc
!= 31)) {
2153 tcg_gen_shri_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
& 0x3f);
2155 TCGv shift
= tcg_temp_new();
2156 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 0x3f);
2157 tcg_gen_shr_i64(cpu_ir
[rc
], cpu_ir
[ra
], shift
);
2158 tcg_temp_free(shift
);
2161 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2166 gen_ext_l(ra
, rb
, rc
, islit
, lit
, 0xff);
2170 if (likely(rc
!= 31)) {
2173 tcg_gen_shli_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
& 0x3f);
2175 TCGv shift
= tcg_temp_new();
2176 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 0x3f);
2177 tcg_gen_shl_i64(cpu_ir
[rc
], cpu_ir
[ra
], shift
);
2178 tcg_temp_free(shift
);
2181 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2186 gen_ins_l(ra
, rb
, rc
, islit
, lit
, 0xff);
2190 if (likely(rc
!= 31)) {
2193 tcg_gen_sari_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
& 0x3f);
2195 TCGv shift
= tcg_temp_new();
2196 tcg_gen_andi_i64(shift
, cpu_ir
[rb
], 0x3f);
2197 tcg_gen_sar_i64(cpu_ir
[rc
], cpu_ir
[ra
], shift
);
2198 tcg_temp_free(shift
);
2201 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2206 gen_msk_h(ra
, rb
, rc
, islit
, lit
, 0x03);
2210 gen_ins_h(ra
, rb
, rc
, islit
, lit
, 0x03);
2214 gen_ext_h(ra
, rb
, rc
, islit
, lit
, 0x03);
2218 gen_msk_h(ra
, rb
, rc
, islit
, lit
, 0x0f);
2222 gen_ins_h(ra
, rb
, rc
, islit
, lit
, 0x0f);
2226 gen_ext_h(ra
, rb
, rc
, islit
, lit
, 0x0f);
2230 gen_msk_h(ra
, rb
, rc
, islit
, lit
, 0xff);
2234 gen_ins_h(ra
, rb
, rc
, islit
, lit
, 0xff);
2238 gen_ext_h(ra
, rb
, rc
, islit
, lit
, 0xff);
2248 if (likely(rc
!= 31)) {
2250 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2253 tcg_gen_muli_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
2255 tcg_gen_mul_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
2256 tcg_gen_ext32s_i64(cpu_ir
[rc
], cpu_ir
[rc
]);
2262 if (likely(rc
!= 31)) {
2264 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2266 tcg_gen_muli_i64(cpu_ir
[rc
], cpu_ir
[ra
], lit
);
2268 tcg_gen_mul_i64(cpu_ir
[rc
], cpu_ir
[ra
], cpu_ir
[rb
]);
2273 gen_umulh(ra
, rb
, rc
, islit
, lit
);
2277 gen_mullv(ra
, rb
, rc
, islit
, lit
);
2281 gen_mulqv(ra
, rb
, rc
, islit
, lit
);
2288 switch (fpfn
) { /* fn11 & 0x3F */
2291 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) == 0) {
2294 if (likely(rc
!= 31)) {
2296 TCGv_i32 tmp
= tcg_temp_new_i32();
2297 tcg_gen_trunc_i64_i32(tmp
, cpu_ir
[ra
]);
2298 gen_helper_memory_to_s(cpu_fir
[rc
], tmp
);
2299 tcg_temp_free_i32(tmp
);
2301 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
2306 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) {
2313 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) {
2314 gen_fsqrts(ctx
, rb
, rc
, fn11
);
2320 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) == 0) {
2323 if (likely(rc
!= 31)) {
2325 TCGv_i32 tmp
= tcg_temp_new_i32();
2326 tcg_gen_trunc_i64_i32(tmp
, cpu_ir
[ra
]);
2327 gen_helper_memory_to_f(cpu_fir
[rc
], tmp
);
2328 tcg_temp_free_i32(tmp
);
2330 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
2335 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) == 0) {
2338 if (likely(rc
!= 31)) {
2340 tcg_gen_mov_i64(cpu_fir
[rc
], cpu_ir
[ra
]);
2342 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
2347 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) {
2354 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) {
2355 gen_fsqrtt(ctx
, rb
, rc
, fn11
);
2364 /* VAX floating point */
2365 /* XXX: rounding mode and trap are ignored (!) */
2366 switch (fpfn
) { /* fn11 & 0x3F */
2369 gen_faddf(ra
, rb
, rc
);
2373 gen_fsubf(ra
, rb
, rc
);
2377 gen_fmulf(ra
, rb
, rc
);
2381 gen_fdivf(ra
, rb
, rc
);
2393 gen_faddg(ra
, rb
, rc
);
2397 gen_fsubg(ra
, rb
, rc
);
2401 gen_fmulg(ra
, rb
, rc
);
2405 gen_fdivg(ra
, rb
, rc
);
2409 gen_fcmpgeq(ra
, rb
, rc
);
2413 gen_fcmpglt(ra
, rb
, rc
);
2417 gen_fcmpgle(ra
, rb
, rc
);
2448 /* IEEE floating-point */
2449 switch (fpfn
) { /* fn11 & 0x3F */
2452 gen_fadds(ctx
, ra
, rb
, rc
, fn11
);
2456 gen_fsubs(ctx
, ra
, rb
, rc
, fn11
);
2460 gen_fmuls(ctx
, ra
, rb
, rc
, fn11
);
2464 gen_fdivs(ctx
, ra
, rb
, rc
, fn11
);
2468 gen_faddt(ctx
, ra
, rb
, rc
, fn11
);
2472 gen_fsubt(ctx
, ra
, rb
, rc
, fn11
);
2476 gen_fmult(ctx
, ra
, rb
, rc
, fn11
);
2480 gen_fdivt(ctx
, ra
, rb
, rc
, fn11
);
2484 gen_fcmptun(ctx
, ra
, rb
, rc
, fn11
);
2488 gen_fcmpteq(ctx
, ra
, rb
, rc
, fn11
);
2492 gen_fcmptlt(ctx
, ra
, rb
, rc
, fn11
);
2496 gen_fcmptle(ctx
, ra
, rb
, rc
, fn11
);
2499 if (fn11
== 0x2AC || fn11
== 0x6AC) {
2501 gen_fcvtst(ctx
, rb
, rc
, fn11
);
2504 gen_fcvtts(ctx
, rb
, rc
, fn11
);
2509 gen_fcvttq(ctx
, rb
, rc
, fn11
);
2513 gen_fcvtqs(ctx
, rb
, rc
, fn11
);
2517 gen_fcvtqt(ctx
, rb
, rc
, fn11
);
2530 if (likely(rc
!= 31)) {
2534 tcg_gen_movi_i64(cpu_fir
[rc
], 0);
2536 tcg_gen_mov_i64(cpu_fir
[rc
], cpu_fir
[ra
]);
2539 gen_fcpys(ra
, rb
, rc
);
2545 gen_fcpysn(ra
, rb
, rc
);
2549 gen_fcpyse(ra
, rb
, rc
);
2553 if (likely(ra
!= 31))
2554 gen_helper_store_fpcr(cpu_fir
[ra
]);
2556 TCGv tmp
= tcg_const_i64(0);
2557 gen_helper_store_fpcr(tmp
);
2563 if (likely(ra
!= 31))
2564 gen_helper_load_fpcr(cpu_fir
[ra
]);
2568 gen_fcmov(TCG_COND_EQ
, ra
, rb
, rc
);
2572 gen_fcmov(TCG_COND_NE
, ra
, rb
, rc
);
2576 gen_fcmov(TCG_COND_LT
, ra
, rb
, rc
);
2580 gen_fcmov(TCG_COND_GE
, ra
, rb
, rc
);
2584 gen_fcmov(TCG_COND_LE
, ra
, rb
, rc
);
2588 gen_fcmov(TCG_COND_GT
, ra
, rb
, rc
);
2598 /* ??? I'm pretty sure there's nothing that /sv needs to do that
2599 /v doesn't do. The only thing I can think is that /sv is a
2600 valid instruction merely for completeness in the ISA. */
2601 gen_fcvtql_v(ctx
, rb
, rc
);
2608 switch ((uint16_t)disp16
) {
2636 gen_helper_load_pcc(cpu_ir
[ra
]);
2658 /* HW_MFPR (PALcode) */
2659 #ifndef CONFIG_USER_ONLY
2660 if (ctx
->tb
->flags
& TB_FLAGS_PAL_MODE
) {
2661 gen_mfpr(ra
, insn
& 0xffff);
2667 /* JMP, JSR, RET, JSR_COROUTINE. These only differ by the branch
2668 prediction stack action, which of course we don't implement. */
2670 tcg_gen_andi_i64(cpu_pc
, cpu_ir
[rb
], ~3);
2672 tcg_gen_movi_i64(cpu_pc
, 0);
2675 tcg_gen_movi_i64(cpu_ir
[ra
], ctx
->pc
);
2677 ret
= EXIT_PC_UPDATED
;
2680 /* HW_LD (PALcode) */
2681 #ifndef CONFIG_USER_ONLY
2682 if (ctx
->tb
->flags
& TB_FLAGS_PAL_MODE
) {
2689 addr
= tcg_temp_new();
2691 tcg_gen_addi_i64(addr
, cpu_ir
[rb
], disp12
);
2693 tcg_gen_movi_i64(addr
, disp12
);
2694 switch ((insn
>> 12) & 0xF) {
2696 /* Longword physical access (hw_ldl/p) */
2697 gen_helper_ldl_phys(cpu_ir
[ra
], addr
);
2700 /* Quadword physical access (hw_ldq/p) */
2701 gen_helper_ldq_phys(cpu_ir
[ra
], addr
);
2704 /* Longword physical access with lock (hw_ldl_l/p) */
2705 gen_helper_ldl_l_phys(cpu_ir
[ra
], addr
);
2708 /* Quadword physical access with lock (hw_ldq_l/p) */
2709 gen_helper_ldq_l_phys(cpu_ir
[ra
], addr
);
2712 /* Longword virtual PTE fetch (hw_ldl/v) */
2715 /* Quadword virtual PTE fetch (hw_ldq/v) */
2719 /* Incpu_ir[ra]id */
2722 /* Incpu_ir[ra]id */
2725 /* Longword virtual access (hw_ldl) */
2728 /* Quadword virtual access (hw_ldq) */
2731 /* Longword virtual access with protection check (hw_ldl/w) */
2732 tcg_gen_qemu_ld32s(cpu_ir
[ra
], addr
, MMU_KERNEL_IDX
);
2735 /* Quadword virtual access with protection check (hw_ldq/w) */
2736 tcg_gen_qemu_ld64(cpu_ir
[ra
], addr
, MMU_KERNEL_IDX
);
2739 /* Longword virtual access with alt access mode (hw_ldl/a)*/
2742 /* Quadword virtual access with alt access mode (hw_ldq/a) */
2745 /* Longword virtual access with alternate access mode and
2746 protection checks (hw_ldl/wa) */
2747 tcg_gen_qemu_ld32s(cpu_ir
[ra
], addr
, MMU_USER_IDX
);
2750 /* Quadword virtual access with alternate access mode and
2751 protection checks (hw_ldq/wa) */
2752 tcg_gen_qemu_ld64(cpu_ir
[ra
], addr
, MMU_USER_IDX
);
2755 tcg_temp_free(addr
);
2764 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_BWX
) == 0) {
2767 if (likely(rc
!= 31)) {
2769 tcg_gen_movi_i64(cpu_ir
[rc
], (int64_t)((int8_t)lit
));
2771 tcg_gen_ext8s_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2776 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_BWX
) {
2777 if (likely(rc
!= 31)) {
2779 tcg_gen_movi_i64(cpu_ir
[rc
], (int64_t)((int16_t)lit
));
2781 tcg_gen_ext16s_i64(cpu_ir
[rc
], cpu_ir
[rb
]);
2789 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_CIX
) {
2790 if (likely(rc
!= 31)) {
2792 tcg_gen_movi_i64(cpu_ir
[rc
], ctpop64(lit
));
2794 gen_helper_ctpop(cpu_ir
[rc
], cpu_ir
[rb
]);
2802 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2803 gen_perr(ra
, rb
, rc
, islit
, lit
);
2809 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_CIX
) {
2810 if (likely(rc
!= 31)) {
2812 tcg_gen_movi_i64(cpu_ir
[rc
], clz64(lit
));
2814 gen_helper_ctlz(cpu_ir
[rc
], cpu_ir
[rb
]);
2822 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_CIX
) {
2823 if (likely(rc
!= 31)) {
2825 tcg_gen_movi_i64(cpu_ir
[rc
], ctz64(lit
));
2827 gen_helper_cttz(cpu_ir
[rc
], cpu_ir
[rb
]);
2835 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2836 if (real_islit
|| ra
!= 31) {
2845 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2846 if (real_islit
|| ra
!= 31) {
2855 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2856 if (real_islit
|| ra
!= 31) {
2865 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2866 if (real_islit
|| ra
!= 31) {
2875 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2876 gen_minsb8(ra
, rb
, rc
, islit
, lit
);
2882 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2883 gen_minsw4(ra
, rb
, rc
, islit
, lit
);
2889 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2890 gen_minub8(ra
, rb
, rc
, islit
, lit
);
2896 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2897 gen_minuw4(ra
, rb
, rc
, islit
, lit
);
2903 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2904 gen_maxub8(ra
, rb
, rc
, islit
, lit
);
2910 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2911 gen_maxuw4(ra
, rb
, rc
, islit
, lit
);
2917 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2918 gen_maxsb8(ra
, rb
, rc
, islit
, lit
);
2924 if (ctx
->tb
->flags
& TB_FLAGS_AMASK_MVI
) {
2925 gen_maxsw4(ra
, rb
, rc
, islit
, lit
);
2931 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) == 0) {
2934 if (likely(rc
!= 31)) {
2936 tcg_gen_mov_i64(cpu_ir
[rc
], cpu_fir
[ra
]);
2938 tcg_gen_movi_i64(cpu_ir
[rc
], 0);
2943 if ((ctx
->tb
->flags
& TB_FLAGS_AMASK_FIX
) == 0) {
2947 TCGv_i32 tmp1
= tcg_temp_new_i32();
2949 gen_helper_s_to_memory(tmp1
, cpu_fir
[ra
]);
2951 TCGv tmp2
= tcg_const_i64(0);
2952 gen_helper_s_to_memory(tmp1
, tmp2
);
2953 tcg_temp_free(tmp2
);
2955 tcg_gen_ext_i32_i64(cpu_ir
[rc
], tmp1
);
2956 tcg_temp_free_i32(tmp1
);
2964 /* HW_MTPR (PALcode) */
2965 #ifndef CONFIG_USER_ONLY
2966 if (ctx
->tb
->flags
& TB_FLAGS_PAL_MODE
) {
2967 gen_mtpr(rb
, insn
& 0xffff);
2973 /* HW_RET (PALcode) */
2974 #ifndef CONFIG_USER_ONLY
2975 if (ctx
->tb
->flags
& TB_FLAGS_PAL_MODE
) {
2977 /* Pre-EV6 CPUs interpreted this as HW_REI, loading the return
2978 address from EXC_ADDR. This turns out to be useful for our
2979 emulation PALcode, so continue to accept it. */
2980 TCGv tmp
= tcg_temp_new();
2981 tcg_gen_ld_i64(tmp
, cpu_env
, offsetof(CPUState
, exc_addr
));
2982 gen_helper_hw_ret(tmp
);
2985 gen_helper_hw_ret(cpu_ir
[rb
]);
2987 ret
= EXIT_PC_UPDATED
;
2993 /* HW_ST (PALcode) */
2994 #ifndef CONFIG_USER_ONLY
2995 if (ctx
->tb
->flags
& TB_FLAGS_PAL_MODE
) {
2997 addr
= tcg_temp_new();
2999 tcg_gen_addi_i64(addr
, cpu_ir
[rb
], disp12
);
3001 tcg_gen_movi_i64(addr
, disp12
);
3005 val
= tcg_temp_new();
3006 tcg_gen_movi_i64(val
, 0);
3008 switch ((insn
>> 12) & 0xF) {
3010 /* Longword physical access */
3011 gen_helper_stl_phys(addr
, val
);
3014 /* Quadword physical access */
3015 gen_helper_stq_phys(addr
, val
);
3018 /* Longword physical access with lock */
3019 gen_helper_stl_c_phys(val
, addr
, val
);
3022 /* Quadword physical access with lock */
3023 gen_helper_stq_c_phys(val
, addr
, val
);
3026 /* Longword virtual access */
3029 /* Quadword virtual access */
3050 /* Longword virtual access with alternate access mode */
3053 /* Quadword virtual access with alternate access mode */
3064 tcg_temp_free(addr
);
3071 gen_load_mem(ctx
, &gen_qemu_ldf
, ra
, rb
, disp16
, 1, 0);
3075 gen_load_mem(ctx
, &gen_qemu_ldg
, ra
, rb
, disp16
, 1, 0);
3079 gen_load_mem(ctx
, &gen_qemu_lds
, ra
, rb
, disp16
, 1, 0);
3083 gen_load_mem(ctx
, &tcg_gen_qemu_ld64
, ra
, rb
, disp16
, 1, 0);
3087 gen_store_mem(ctx
, &gen_qemu_stf
, ra
, rb
, disp16
, 1, 0);
3091 gen_store_mem(ctx
, &gen_qemu_stg
, ra
, rb
, disp16
, 1, 0);
3095 gen_store_mem(ctx
, &gen_qemu_sts
, ra
, rb
, disp16
, 1, 0);
3099 gen_store_mem(ctx
, &tcg_gen_qemu_st64
, ra
, rb
, disp16
, 1, 0);
3103 gen_load_mem(ctx
, &tcg_gen_qemu_ld32s
, ra
, rb
, disp16
, 0, 0);
3107 gen_load_mem(ctx
, &tcg_gen_qemu_ld64
, ra
, rb
, disp16
, 0, 0);
3111 gen_load_mem(ctx
, &gen_qemu_ldl_l
, ra
, rb
, disp16
, 0, 0);
3115 gen_load_mem(ctx
, &gen_qemu_ldq_l
, ra
, rb
, disp16
, 0, 0);
3119 gen_store_mem(ctx
, &tcg_gen_qemu_st32
, ra
, rb
, disp16
, 0, 0);
3123 gen_store_mem(ctx
, &tcg_gen_qemu_st64
, ra
, rb
, disp16
, 0, 0);
3127 ret
= gen_store_conditional(ctx
, ra
, rb
, disp16
, 0);
3131 ret
= gen_store_conditional(ctx
, ra
, rb
, disp16
, 1);
3135 ret
= gen_bdirect(ctx
, ra
, disp21
);
3137 case 0x31: /* FBEQ */
3138 ret
= gen_fbcond(ctx
, TCG_COND_EQ
, ra
, disp21
);
3140 case 0x32: /* FBLT */
3141 ret
= gen_fbcond(ctx
, TCG_COND_LT
, ra
, disp21
);
3143 case 0x33: /* FBLE */
3144 ret
= gen_fbcond(ctx
, TCG_COND_LE
, ra
, disp21
);
3148 ret
= gen_bdirect(ctx
, ra
, disp21
);
3150 case 0x35: /* FBNE */
3151 ret
= gen_fbcond(ctx
, TCG_COND_NE
, ra
, disp21
);
3153 case 0x36: /* FBGE */
3154 ret
= gen_fbcond(ctx
, TCG_COND_GE
, ra
, disp21
);
3156 case 0x37: /* FBGT */
3157 ret
= gen_fbcond(ctx
, TCG_COND_GT
, ra
, disp21
);
3161 ret
= gen_bcond(ctx
, TCG_COND_EQ
, ra
, disp21
, 1);
3165 ret
= gen_bcond(ctx
, TCG_COND_EQ
, ra
, disp21
, 0);
3169 ret
= gen_bcond(ctx
, TCG_COND_LT
, ra
, disp21
, 0);
3173 ret
= gen_bcond(ctx
, TCG_COND_LE
, ra
, disp21
, 0);
3177 ret
= gen_bcond(ctx
, TCG_COND_NE
, ra
, disp21
, 1);
3181 ret
= gen_bcond(ctx
, TCG_COND_NE
, ra
, disp21
, 0);
3185 ret
= gen_bcond(ctx
, TCG_COND_GE
, ra
, disp21
, 0);
3189 ret
= gen_bcond(ctx
, TCG_COND_GT
, ra
, disp21
, 0);
3192 ret
= gen_invalid(ctx
);
3199 static inline void gen_intermediate_code_internal(CPUState
*env
,
3200 TranslationBlock
*tb
,
3203 DisasContext ctx
, *ctxp
= &ctx
;
3204 target_ulong pc_start
;
3206 uint16_t *gen_opc_end
;
3214 gen_opc_end
= gen_opc_buf
+ OPC_MAX_SIZE
;
3219 ctx
.mem_idx
= cpu_mmu_index(env
);
3221 /* ??? Every TB begins with unset rounding mode, to be initialized on
3222 the first fp insn of the TB. Alternately we could define a proper
3223 default for every TB (e.g. QUAL_RM_N or QUAL_RM_D) and make sure
3224 to reset the FP_STATUS to that default at the end of any TB that
3225 changes the default. We could even (gasp) dynamiclly figure out
3226 what default would be most efficient given the running program. */
3228 /* Similarly for flush-to-zero. */
3232 max_insns
= tb
->cflags
& CF_COUNT_MASK
;
3234 max_insns
= CF_COUNT_MASK
;
3238 if (unlikely(!QTAILQ_EMPTY(&env
->breakpoints
))) {
3239 QTAILQ_FOREACH(bp
, &env
->breakpoints
, entry
) {
3240 if (bp
->pc
== ctx
.pc
) {
3241 gen_excp(&ctx
, EXCP_DEBUG
, 0);
3247 j
= gen_opc_ptr
- gen_opc_buf
;
3251 gen_opc_instr_start
[lj
++] = 0;
3253 gen_opc_pc
[lj
] = ctx
.pc
;
3254 gen_opc_instr_start
[lj
] = 1;
3255 gen_opc_icount
[lj
] = num_insns
;
3257 if (num_insns
+ 1 == max_insns
&& (tb
->cflags
& CF_LAST_IO
))
3259 insn
= ldl_code(ctx
.pc
);
3262 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
))) {
3263 tcg_gen_debug_insn_start(ctx
.pc
);
3267 ret
= translate_one(ctxp
, insn
);
3269 /* If we reach a page boundary, are single stepping,
3270 or exhaust instruction count, stop generation. */
3272 && ((ctx
.pc
& (TARGET_PAGE_SIZE
- 1)) == 0
3273 || gen_opc_ptr
>= gen_opc_end
3274 || num_insns
>= max_insns
3276 || env
->singlestep_enabled
)) {
3277 ret
= EXIT_PC_STALE
;
3279 } while (ret
== NO_EXIT
);
3281 if (tb
->cflags
& CF_LAST_IO
) {
3290 tcg_gen_movi_i64(cpu_pc
, ctx
.pc
);
3292 case EXIT_PC_UPDATED
:
3293 if (env
->singlestep_enabled
) {
3294 gen_excp_1(EXCP_DEBUG
, 0);
3303 gen_icount_end(tb
, num_insns
);
3304 *gen_opc_ptr
= INDEX_op_end
;
3306 j
= gen_opc_ptr
- gen_opc_buf
;
3309 gen_opc_instr_start
[lj
++] = 0;
3311 tb
->size
= ctx
.pc
- pc_start
;
3312 tb
->icount
= num_insns
;
3316 if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM
)) {
3317 qemu_log("IN: %s\n", lookup_symbol(pc_start
));
3318 log_target_disas(pc_start
, ctx
.pc
- pc_start
, 1);
3324 void gen_intermediate_code (CPUState
*env
, struct TranslationBlock
*tb
)
3326 gen_intermediate_code_internal(env
, tb
, 0);
3329 void gen_intermediate_code_pc (CPUState
*env
, struct TranslationBlock
*tb
)
3331 gen_intermediate_code_internal(env
, tb
, 1);
3339 static const struct cpu_def_t cpu_defs
[] = {
3340 { "ev4", IMPLVER_2106x
, 0 },
3341 { "ev5", IMPLVER_21164
, 0 },
3342 { "ev56", IMPLVER_21164
, AMASK_BWX
},
3343 { "pca56", IMPLVER_21164
, AMASK_BWX
| AMASK_MVI
},
3344 { "ev6", IMPLVER_21264
, AMASK_BWX
| AMASK_FIX
| AMASK_MVI
| AMASK_TRAP
},
3345 { "ev67", IMPLVER_21264
, (AMASK_BWX
| AMASK_FIX
| AMASK_CIX
3346 | AMASK_MVI
| AMASK_TRAP
| AMASK_PREFETCH
), },
3347 { "ev68", IMPLVER_21264
, (AMASK_BWX
| AMASK_FIX
| AMASK_CIX
3348 | AMASK_MVI
| AMASK_TRAP
| AMASK_PREFETCH
), },
3349 { "21064", IMPLVER_2106x
, 0 },
3350 { "21164", IMPLVER_21164
, 0 },
3351 { "21164a", IMPLVER_21164
, AMASK_BWX
},
3352 { "21164pc", IMPLVER_21164
, AMASK_BWX
| AMASK_MVI
},
3353 { "21264", IMPLVER_21264
, AMASK_BWX
| AMASK_FIX
| AMASK_MVI
| AMASK_TRAP
},
3354 { "21264a", IMPLVER_21264
, (AMASK_BWX
| AMASK_FIX
| AMASK_CIX
3355 | AMASK_MVI
| AMASK_TRAP
| AMASK_PREFETCH
), }
3358 CPUAlphaState
* cpu_alpha_init (const char *cpu_model
)
3361 int implver
, amask
, i
, max
;
3363 env
= qemu_mallocz(sizeof(CPUAlphaState
));
3365 alpha_translate_init();
3368 /* Default to ev67; no reason not to emulate insns by default. */
3369 implver
= IMPLVER_21264
;
3370 amask
= (AMASK_BWX
| AMASK_FIX
| AMASK_CIX
| AMASK_MVI
3371 | AMASK_TRAP
| AMASK_PREFETCH
);
3373 max
= ARRAY_SIZE(cpu_defs
);
3374 for (i
= 0; i
< max
; i
++) {
3375 if (strcmp (cpu_model
, cpu_defs
[i
].name
) == 0) {
3376 implver
= cpu_defs
[i
].implver
;
3377 amask
= cpu_defs
[i
].amask
;
3381 env
->implver
= implver
;
3384 #if defined (CONFIG_USER_ONLY)
3385 env
->ps
= PS_USER_MODE
;
3386 cpu_alpha_store_fpcr(env
, (FPCR_INVD
| FPCR_DZED
| FPCR_OVFD
3387 | FPCR_UNFD
| FPCR_INED
| FPCR_DNOD
));
3389 env
->lock_addr
= -1;
3392 qemu_init_vcpu(env
);
3396 void restore_state_to_opc(CPUState
*env
, TranslationBlock
*tb
, int pc_pos
)
3398 env
->pc
= gen_opc_pc
[pc_pos
];