4 Copyright (C) 2003 Thomas M. Ogrisegg <tom@fnord.at>
5 Copyright (C) 2003-2005 Fabrice Bellard
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
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/>.
28 #include "disas/disas.h"
37 #define DYNAMIC_PC 1 /* dynamic pc value */
38 #define JUMP_PC 2 /* dynamic pc value which takes only two values
39 according to jump_pc[T2] */
41 /* global register indexes */
42 static TCGv_ptr cpu_env
, cpu_regwptr
;
43 static TCGv cpu_cc_src
, cpu_cc_src2
, cpu_cc_dst
;
44 static TCGv_i32 cpu_cc_op
;
45 static TCGv_i32 cpu_psr
;
46 static TCGv cpu_fsr
, cpu_pc
, cpu_npc
, cpu_gregs
[8];
48 #ifndef CONFIG_USER_ONLY
53 static TCGv_i32 cpu_xcc
, cpu_asi
, cpu_fprs
;
55 static TCGv cpu_tick_cmpr
, cpu_stick_cmpr
, cpu_hstick_cmpr
;
56 static TCGv cpu_hintp
, cpu_htba
, cpu_hver
, cpu_ssr
, cpu_ver
;
57 static TCGv_i32 cpu_softint
;
61 /* Floating point registers */
62 static TCGv_i64 cpu_fpr
[TARGET_DPREGS
];
64 static target_ulong gen_opc_npc
[OPC_BUF_SIZE
];
65 static target_ulong gen_opc_jump_pc
[2];
67 #include "exec/gen-icount.h"
69 typedef struct DisasContext
{
70 target_ulong pc
; /* current Program Counter: integer or DYNAMIC_PC */
71 target_ulong npc
; /* next PC: integer or DYNAMIC_PC or JUMP_PC */
72 target_ulong jump_pc
[2]; /* used when JUMP_PC pc value is used */
76 int address_mask_32bit
;
78 uint32_t cc_op
; /* current CC operation */
79 struct TranslationBlock
*tb
;
94 // This function uses non-native bit order
95 #define GET_FIELD(X, FROM, TO) \
96 ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
98 // This function uses the order in the manuals, i.e. bit 0 is 2^0
99 #define GET_FIELD_SP(X, FROM, TO) \
100 GET_FIELD(X, 31 - (TO), 31 - (FROM))
102 #define GET_FIELDs(x,a,b) sign_extend (GET_FIELD(x,a,b), (b) - (a) + 1)
103 #define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
105 #ifdef TARGET_SPARC64
106 #define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
107 #define QFPREG(r) (((r & 1) << 5) | (r & 0x1c))
109 #define DFPREG(r) (r & 0x1e)
110 #define QFPREG(r) (r & 0x1c)
113 #define UA2005_HTRAP_MASK 0xff
114 #define V8_TRAP_MASK 0x7f
116 static int sign_extend(int x
, int len
)
119 return (x
<< len
) >> len
;
122 #define IS_IMM (insn & (1<<13))
124 static inline TCGv_i32
get_temp_i32(DisasContext
*dc
)
127 assert(dc
->n_t32
< ARRAY_SIZE(dc
->t32
));
128 dc
->t32
[dc
->n_t32
++] = t
= tcg_temp_new_i32();
132 static inline TCGv
get_temp_tl(DisasContext
*dc
)
135 assert(dc
->n_ttl
< ARRAY_SIZE(dc
->ttl
));
136 dc
->ttl
[dc
->n_ttl
++] = t
= tcg_temp_new();
140 static inline void gen_update_fprs_dirty(int rd
)
142 #if defined(TARGET_SPARC64)
143 tcg_gen_ori_i32(cpu_fprs
, cpu_fprs
, (rd
< 32) ?
1 : 2);
147 /* floating point registers moves */
148 static TCGv_i32
gen_load_fpr_F(DisasContext
*dc
, unsigned int src
)
150 #if TCG_TARGET_REG_BITS == 32
152 return TCGV_LOW(cpu_fpr
[src
/ 2]);
154 return TCGV_HIGH(cpu_fpr
[src
/ 2]);
158 return MAKE_TCGV_I32(GET_TCGV_I64(cpu_fpr
[src
/ 2]));
160 TCGv_i32 ret
= get_temp_i32(dc
);
161 TCGv_i64 t
= tcg_temp_new_i64();
163 tcg_gen_shri_i64(t
, cpu_fpr
[src
/ 2], 32);
164 tcg_gen_trunc_i64_i32(ret
, t
);
165 tcg_temp_free_i64(t
);
172 static void gen_store_fpr_F(DisasContext
*dc
, unsigned int dst
, TCGv_i32 v
)
174 #if TCG_TARGET_REG_BITS == 32
176 tcg_gen_mov_i32(TCGV_LOW(cpu_fpr
[dst
/ 2]), v
);
178 tcg_gen_mov_i32(TCGV_HIGH(cpu_fpr
[dst
/ 2]), v
);
181 TCGv_i64 t
= MAKE_TCGV_I64(GET_TCGV_I32(v
));
182 tcg_gen_deposit_i64(cpu_fpr
[dst
/ 2], cpu_fpr
[dst
/ 2], t
,
183 (dst
& 1 ?
0 : 32), 32);
185 gen_update_fprs_dirty(dst
);
188 static TCGv_i32
gen_dest_fpr_F(DisasContext
*dc
)
190 return get_temp_i32(dc
);
193 static TCGv_i64
gen_load_fpr_D(DisasContext
*dc
, unsigned int src
)
196 return cpu_fpr
[src
/ 2];
199 static void gen_store_fpr_D(DisasContext
*dc
, unsigned int dst
, TCGv_i64 v
)
202 tcg_gen_mov_i64(cpu_fpr
[dst
/ 2], v
);
203 gen_update_fprs_dirty(dst
);
206 static TCGv_i64
gen_dest_fpr_D(DisasContext
*dc
, unsigned int dst
)
208 return cpu_fpr
[DFPREG(dst
) / 2];
211 static void gen_op_load_fpr_QT0(unsigned int src
)
213 tcg_gen_st_i64(cpu_fpr
[src
/ 2], cpu_env
, offsetof(CPUSPARCState
, qt0
) +
214 offsetof(CPU_QuadU
, ll
.upper
));
215 tcg_gen_st_i64(cpu_fpr
[src
/2 + 1], cpu_env
, offsetof(CPUSPARCState
, qt0
) +
216 offsetof(CPU_QuadU
, ll
.lower
));
219 static void gen_op_load_fpr_QT1(unsigned int src
)
221 tcg_gen_st_i64(cpu_fpr
[src
/ 2], cpu_env
, offsetof(CPUSPARCState
, qt1
) +
222 offsetof(CPU_QuadU
, ll
.upper
));
223 tcg_gen_st_i64(cpu_fpr
[src
/2 + 1], cpu_env
, offsetof(CPUSPARCState
, qt1
) +
224 offsetof(CPU_QuadU
, ll
.lower
));
227 static void gen_op_store_QT0_fpr(unsigned int dst
)
229 tcg_gen_ld_i64(cpu_fpr
[dst
/ 2], cpu_env
, offsetof(CPUSPARCState
, qt0
) +
230 offsetof(CPU_QuadU
, ll
.upper
));
231 tcg_gen_ld_i64(cpu_fpr
[dst
/2 + 1], cpu_env
, offsetof(CPUSPARCState
, qt0
) +
232 offsetof(CPU_QuadU
, ll
.lower
));
235 #ifdef TARGET_SPARC64
236 static void gen_move_Q(unsigned int rd
, unsigned int rs
)
241 tcg_gen_mov_i64(cpu_fpr
[rd
/ 2], cpu_fpr
[rs
/ 2]);
242 tcg_gen_mov_i64(cpu_fpr
[rd
/ 2 + 1], cpu_fpr
[rs
/ 2 + 1]);
243 gen_update_fprs_dirty(rd
);
248 #ifdef CONFIG_USER_ONLY
249 #define supervisor(dc) 0
250 #ifdef TARGET_SPARC64
251 #define hypervisor(dc) 0
254 #define supervisor(dc) (dc->mem_idx >= MMU_KERNEL_IDX)
255 #ifdef TARGET_SPARC64
256 #define hypervisor(dc) (dc->mem_idx == MMU_HYPV_IDX)
261 #ifdef TARGET_SPARC64
263 #define AM_CHECK(dc) ((dc)->address_mask_32bit)
265 #define AM_CHECK(dc) (1)
269 static inline void gen_address_mask(DisasContext
*dc
, TCGv addr
)
271 #ifdef TARGET_SPARC64
273 tcg_gen_andi_tl(addr
, addr
, 0xffffffffULL
);
277 static inline TCGv
gen_load_gpr(DisasContext
*dc
, int reg
)
279 if (reg
== 0 || reg
>= 8) {
280 TCGv t
= get_temp_tl(dc
);
282 tcg_gen_movi_tl(t
, 0);
284 tcg_gen_ld_tl(t
, cpu_regwptr
, (reg
- 8) * sizeof(target_ulong
));
288 return cpu_gregs
[reg
];
292 static inline void gen_store_gpr(DisasContext
*dc
, int reg
, TCGv v
)
296 tcg_gen_mov_tl(cpu_gregs
[reg
], v
);
298 tcg_gen_st_tl(v
, cpu_regwptr
, (reg
- 8) * sizeof(target_ulong
));
303 static inline TCGv
gen_dest_gpr(DisasContext
*dc
, int reg
)
305 if (reg
== 0 || reg
>= 8) {
306 return get_temp_tl(dc
);
308 return cpu_gregs
[reg
];
312 static inline void gen_goto_tb(DisasContext
*s
, int tb_num
,
313 target_ulong pc
, target_ulong npc
)
315 TranslationBlock
*tb
;
318 if ((pc
& TARGET_PAGE_MASK
) == (tb
->pc
& TARGET_PAGE_MASK
) &&
319 (npc
& TARGET_PAGE_MASK
) == (tb
->pc
& TARGET_PAGE_MASK
) &&
321 /* jump to same page: we can use a direct jump */
322 tcg_gen_goto_tb(tb_num
);
323 tcg_gen_movi_tl(cpu_pc
, pc
);
324 tcg_gen_movi_tl(cpu_npc
, npc
);
325 tcg_gen_exit_tb((uintptr_t)tb
+ tb_num
);
327 /* jump to another page: currently not optimized */
328 tcg_gen_movi_tl(cpu_pc
, pc
);
329 tcg_gen_movi_tl(cpu_npc
, npc
);
335 static inline void gen_mov_reg_N(TCGv reg
, TCGv_i32 src
)
337 tcg_gen_extu_i32_tl(reg
, src
);
338 tcg_gen_shri_tl(reg
, reg
, PSR_NEG_SHIFT
);
339 tcg_gen_andi_tl(reg
, reg
, 0x1);
342 static inline void gen_mov_reg_Z(TCGv reg
, TCGv_i32 src
)
344 tcg_gen_extu_i32_tl(reg
, src
);
345 tcg_gen_shri_tl(reg
, reg
, PSR_ZERO_SHIFT
);
346 tcg_gen_andi_tl(reg
, reg
, 0x1);
349 static inline void gen_mov_reg_V(TCGv reg
, TCGv_i32 src
)
351 tcg_gen_extu_i32_tl(reg
, src
);
352 tcg_gen_shri_tl(reg
, reg
, PSR_OVF_SHIFT
);
353 tcg_gen_andi_tl(reg
, reg
, 0x1);
356 static inline void gen_mov_reg_C(TCGv reg
, TCGv_i32 src
)
358 tcg_gen_extu_i32_tl(reg
, src
);
359 tcg_gen_shri_tl(reg
, reg
, PSR_CARRY_SHIFT
);
360 tcg_gen_andi_tl(reg
, reg
, 0x1);
363 static inline void gen_op_addi_cc(TCGv dst
, TCGv src1
, target_long src2
)
365 tcg_gen_mov_tl(cpu_cc_src
, src1
);
366 tcg_gen_movi_tl(cpu_cc_src2
, src2
);
367 tcg_gen_addi_tl(cpu_cc_dst
, cpu_cc_src
, src2
);
368 tcg_gen_mov_tl(dst
, cpu_cc_dst
);
371 static inline void gen_op_add_cc(TCGv dst
, TCGv src1
, TCGv src2
)
373 tcg_gen_mov_tl(cpu_cc_src
, src1
);
374 tcg_gen_mov_tl(cpu_cc_src2
, src2
);
375 tcg_gen_add_tl(cpu_cc_dst
, cpu_cc_src
, cpu_cc_src2
);
376 tcg_gen_mov_tl(dst
, cpu_cc_dst
);
379 static TCGv_i32
gen_add32_carry32(void)
381 TCGv_i32 carry_32
, cc_src1_32
, cc_src2_32
;
383 /* Carry is computed from a previous add: (dst < src) */
384 #if TARGET_LONG_BITS == 64
385 cc_src1_32
= tcg_temp_new_i32();
386 cc_src2_32
= tcg_temp_new_i32();
387 tcg_gen_trunc_i64_i32(cc_src1_32
, cpu_cc_dst
);
388 tcg_gen_trunc_i64_i32(cc_src2_32
, cpu_cc_src
);
390 cc_src1_32
= cpu_cc_dst
;
391 cc_src2_32
= cpu_cc_src
;
394 carry_32
= tcg_temp_new_i32();
395 tcg_gen_setcond_i32(TCG_COND_LTU
, carry_32
, cc_src1_32
, cc_src2_32
);
397 #if TARGET_LONG_BITS == 64
398 tcg_temp_free_i32(cc_src1_32
);
399 tcg_temp_free_i32(cc_src2_32
);
405 static TCGv_i32
gen_sub32_carry32(void)
407 TCGv_i32 carry_32
, cc_src1_32
, cc_src2_32
;
409 /* Carry is computed from a previous borrow: (src1 < src2) */
410 #if TARGET_LONG_BITS == 64
411 cc_src1_32
= tcg_temp_new_i32();
412 cc_src2_32
= tcg_temp_new_i32();
413 tcg_gen_trunc_i64_i32(cc_src1_32
, cpu_cc_src
);
414 tcg_gen_trunc_i64_i32(cc_src2_32
, cpu_cc_src2
);
416 cc_src1_32
= cpu_cc_src
;
417 cc_src2_32
= cpu_cc_src2
;
420 carry_32
= tcg_temp_new_i32();
421 tcg_gen_setcond_i32(TCG_COND_LTU
, carry_32
, cc_src1_32
, cc_src2_32
);
423 #if TARGET_LONG_BITS == 64
424 tcg_temp_free_i32(cc_src1_32
);
425 tcg_temp_free_i32(cc_src2_32
);
431 static void gen_op_addx_int(DisasContext
*dc
, TCGv dst
, TCGv src1
,
432 TCGv src2
, int update_cc
)
440 /* Carry is known to be zero. Fall back to plain ADD. */
442 gen_op_add_cc(dst
, src1
, src2
);
444 tcg_gen_add_tl(dst
, src1
, src2
);
451 if (TARGET_LONG_BITS
== 32) {
452 /* We can re-use the host's hardware carry generation by using
453 an ADD2 opcode. We discard the low part of the output.
454 Ideally we'd combine this operation with the add that
455 generated the carry in the first place. */
456 carry
= tcg_temp_new();
457 tcg_gen_add2_tl(carry
, dst
, cpu_cc_src
, src1
, cpu_cc_src2
, src2
);
458 tcg_temp_free(carry
);
461 carry_32
= gen_add32_carry32();
467 carry_32
= gen_sub32_carry32();
471 /* We need external help to produce the carry. */
472 carry_32
= tcg_temp_new_i32();
473 gen_helper_compute_C_icc(carry_32
, cpu_env
);
477 #if TARGET_LONG_BITS == 64
478 carry
= tcg_temp_new();
479 tcg_gen_extu_i32_i64(carry
, carry_32
);
484 tcg_gen_add_tl(dst
, src1
, src2
);
485 tcg_gen_add_tl(dst
, dst
, carry
);
487 tcg_temp_free_i32(carry_32
);
488 #if TARGET_LONG_BITS == 64
489 tcg_temp_free(carry
);
494 tcg_gen_mov_tl(cpu_cc_src
, src1
);
495 tcg_gen_mov_tl(cpu_cc_src2
, src2
);
496 tcg_gen_mov_tl(cpu_cc_dst
, dst
);
497 tcg_gen_movi_i32(cpu_cc_op
, CC_OP_ADDX
);
498 dc
->cc_op
= CC_OP_ADDX
;
502 static inline void gen_op_subi_cc(TCGv dst
, TCGv src1
, target_long src2
, DisasContext
*dc
)
504 tcg_gen_mov_tl(cpu_cc_src
, src1
);
505 tcg_gen_movi_tl(cpu_cc_src2
, src2
);
507 tcg_gen_mov_tl(cpu_cc_dst
, src1
);
508 tcg_gen_movi_i32(cpu_cc_op
, CC_OP_LOGIC
);
509 dc
->cc_op
= CC_OP_LOGIC
;
511 tcg_gen_subi_tl(cpu_cc_dst
, cpu_cc_src
, src2
);
512 tcg_gen_movi_i32(cpu_cc_op
, CC_OP_SUB
);
513 dc
->cc_op
= CC_OP_SUB
;
515 tcg_gen_mov_tl(dst
, cpu_cc_dst
);
518 static inline void gen_op_sub_cc(TCGv dst
, TCGv src1
, TCGv src2
)
520 tcg_gen_mov_tl(cpu_cc_src
, src1
);
521 tcg_gen_mov_tl(cpu_cc_src2
, src2
);
522 tcg_gen_sub_tl(cpu_cc_dst
, cpu_cc_src
, cpu_cc_src2
);
523 tcg_gen_mov_tl(dst
, cpu_cc_dst
);
526 static void gen_op_subx_int(DisasContext
*dc
, TCGv dst
, TCGv src1
,
527 TCGv src2
, int update_cc
)
535 /* Carry is known to be zero. Fall back to plain SUB. */
537 gen_op_sub_cc(dst
, src1
, src2
);
539 tcg_gen_sub_tl(dst
, src1
, src2
);
546 carry_32
= gen_add32_carry32();
552 if (TARGET_LONG_BITS
== 32) {
553 /* We can re-use the host's hardware carry generation by using
554 a SUB2 opcode. We discard the low part of the output.
555 Ideally we'd combine this operation with the add that
556 generated the carry in the first place. */
557 carry
= tcg_temp_new();
558 tcg_gen_sub2_tl(carry
, dst
, cpu_cc_src
, src1
, cpu_cc_src2
, src2
);
559 tcg_temp_free(carry
);
562 carry_32
= gen_sub32_carry32();
566 /* We need external help to produce the carry. */
567 carry_32
= tcg_temp_new_i32();
568 gen_helper_compute_C_icc(carry_32
, cpu_env
);
572 #if TARGET_LONG_BITS == 64
573 carry
= tcg_temp_new();
574 tcg_gen_extu_i32_i64(carry
, carry_32
);
579 tcg_gen_sub_tl(dst
, src1
, src2
);
580 tcg_gen_sub_tl(dst
, dst
, carry
);
582 tcg_temp_free_i32(carry_32
);
583 #if TARGET_LONG_BITS == 64
584 tcg_temp_free(carry
);
589 tcg_gen_mov_tl(cpu_cc_src
, src1
);
590 tcg_gen_mov_tl(cpu_cc_src2
, src2
);
591 tcg_gen_mov_tl(cpu_cc_dst
, dst
);
592 tcg_gen_movi_i32(cpu_cc_op
, CC_OP_SUBX
);
593 dc
->cc_op
= CC_OP_SUBX
;
597 static inline void gen_op_mulscc(TCGv dst
, TCGv src1
, TCGv src2
)
599 TCGv r_temp
, zero
, t0
;
601 r_temp
= tcg_temp_new();
608 zero
= tcg_const_tl(0);
609 tcg_gen_andi_tl(cpu_cc_src
, src1
, 0xffffffff);
610 tcg_gen_andi_tl(r_temp
, cpu_y
, 0x1);
611 tcg_gen_andi_tl(cpu_cc_src2
, src2
, 0xffffffff);
612 tcg_gen_movcond_tl(TCG_COND_EQ
, cpu_cc_src2
, r_temp
, zero
,
617 // env->y = (b2 << 31) | (env->y >> 1);
618 tcg_gen_andi_tl(r_temp
, cpu_cc_src
, 0x1);
619 tcg_gen_shli_tl(r_temp
, r_temp
, 31);
620 tcg_gen_shri_tl(t0
, cpu_y
, 1);
621 tcg_gen_andi_tl(t0
, t0
, 0x7fffffff);
622 tcg_gen_or_tl(t0
, t0
, r_temp
);
623 tcg_gen_andi_tl(cpu_y
, t0
, 0xffffffff);
626 gen_mov_reg_N(t0
, cpu_psr
);
627 gen_mov_reg_V(r_temp
, cpu_psr
);
628 tcg_gen_xor_tl(t0
, t0
, r_temp
);
629 tcg_temp_free(r_temp
);
631 // T0 = (b1 << 31) | (T0 >> 1);
633 tcg_gen_shli_tl(t0
, t0
, 31);
634 tcg_gen_shri_tl(cpu_cc_src
, cpu_cc_src
, 1);
635 tcg_gen_or_tl(cpu_cc_src
, cpu_cc_src
, t0
);
638 tcg_gen_add_tl(cpu_cc_dst
, cpu_cc_src
, cpu_cc_src2
);
640 tcg_gen_mov_tl(dst
, cpu_cc_dst
);
643 static inline void gen_op_multiply(TCGv dst
, TCGv src1
, TCGv src2
, int sign_ext
)
645 #if TARGET_LONG_BITS == 32
647 tcg_gen_muls2_tl(dst
, cpu_y
, src1
, src2
);
649 tcg_gen_mulu2_tl(dst
, cpu_y
, src1
, src2
);
652 TCGv t0
= tcg_temp_new_i64();
653 TCGv t1
= tcg_temp_new_i64();
656 tcg_gen_ext32s_i64(t0
, src1
);
657 tcg_gen_ext32s_i64(t1
, src2
);
659 tcg_gen_ext32u_i64(t0
, src1
);
660 tcg_gen_ext32u_i64(t1
, src2
);
663 tcg_gen_mul_i64(dst
, t0
, t1
);
667 tcg_gen_shri_i64(cpu_y
, dst
, 32);
671 static inline void gen_op_umul(TCGv dst
, TCGv src1
, TCGv src2
)
673 /* zero-extend truncated operands before multiplication */
674 gen_op_multiply(dst
, src1
, src2
, 0);
677 static inline void gen_op_smul(TCGv dst
, TCGv src1
, TCGv src2
)
679 /* sign-extend truncated operands before multiplication */
680 gen_op_multiply(dst
, src1
, src2
, 1);
684 static inline void gen_op_eval_ba(TCGv dst
)
686 tcg_gen_movi_tl(dst
, 1);
690 static inline void gen_op_eval_be(TCGv dst
, TCGv_i32 src
)
692 gen_mov_reg_Z(dst
, src
);
696 static inline void gen_op_eval_ble(TCGv dst
, TCGv_i32 src
)
698 TCGv t0
= tcg_temp_new();
699 gen_mov_reg_N(t0
, src
);
700 gen_mov_reg_V(dst
, src
);
701 tcg_gen_xor_tl(dst
, dst
, t0
);
702 gen_mov_reg_Z(t0
, src
);
703 tcg_gen_or_tl(dst
, dst
, t0
);
708 static inline void gen_op_eval_bl(TCGv dst
, TCGv_i32 src
)
710 TCGv t0
= tcg_temp_new();
711 gen_mov_reg_V(t0
, src
);
712 gen_mov_reg_N(dst
, src
);
713 tcg_gen_xor_tl(dst
, dst
, t0
);
718 static inline void gen_op_eval_bleu(TCGv dst
, TCGv_i32 src
)
720 TCGv t0
= tcg_temp_new();
721 gen_mov_reg_Z(t0
, src
);
722 gen_mov_reg_C(dst
, src
);
723 tcg_gen_or_tl(dst
, dst
, t0
);
728 static inline void gen_op_eval_bcs(TCGv dst
, TCGv_i32 src
)
730 gen_mov_reg_C(dst
, src
);
734 static inline void gen_op_eval_bvs(TCGv dst
, TCGv_i32 src
)
736 gen_mov_reg_V(dst
, src
);
740 static inline void gen_op_eval_bn(TCGv dst
)
742 tcg_gen_movi_tl(dst
, 0);
746 static inline void gen_op_eval_bneg(TCGv dst
, TCGv_i32 src
)
748 gen_mov_reg_N(dst
, src
);
752 static inline void gen_op_eval_bne(TCGv dst
, TCGv_i32 src
)
754 gen_mov_reg_Z(dst
, src
);
755 tcg_gen_xori_tl(dst
, dst
, 0x1);
759 static inline void gen_op_eval_bg(TCGv dst
, TCGv_i32 src
)
761 gen_op_eval_ble(dst
, src
);
762 tcg_gen_xori_tl(dst
, dst
, 0x1);
766 static inline void gen_op_eval_bge(TCGv dst
, TCGv_i32 src
)
768 gen_op_eval_bl(dst
, src
);
769 tcg_gen_xori_tl(dst
, dst
, 0x1);
773 static inline void gen_op_eval_bgu(TCGv dst
, TCGv_i32 src
)
775 gen_op_eval_bleu(dst
, src
);
776 tcg_gen_xori_tl(dst
, dst
, 0x1);
780 static inline void gen_op_eval_bcc(TCGv dst
, TCGv_i32 src
)
782 gen_mov_reg_C(dst
, src
);
783 tcg_gen_xori_tl(dst
, dst
, 0x1);
787 static inline void gen_op_eval_bpos(TCGv dst
, TCGv_i32 src
)
789 gen_mov_reg_N(dst
, src
);
790 tcg_gen_xori_tl(dst
, dst
, 0x1);
794 static inline void gen_op_eval_bvc(TCGv dst
, TCGv_i32 src
)
796 gen_mov_reg_V(dst
, src
);
797 tcg_gen_xori_tl(dst
, dst
, 0x1);
801 FPSR bit field FCC1 | FCC0:
807 static inline void gen_mov_reg_FCC0(TCGv reg
, TCGv src
,
808 unsigned int fcc_offset
)
810 tcg_gen_shri_tl(reg
, src
, FSR_FCC0_SHIFT
+ fcc_offset
);
811 tcg_gen_andi_tl(reg
, reg
, 0x1);
814 static inline void gen_mov_reg_FCC1(TCGv reg
, TCGv src
,
815 unsigned int fcc_offset
)
817 tcg_gen_shri_tl(reg
, src
, FSR_FCC1_SHIFT
+ fcc_offset
);
818 tcg_gen_andi_tl(reg
, reg
, 0x1);
822 static inline void gen_op_eval_fbne(TCGv dst
, TCGv src
,
823 unsigned int fcc_offset
)
825 TCGv t0
= tcg_temp_new();
826 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
827 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
828 tcg_gen_or_tl(dst
, dst
, t0
);
832 // 1 or 2: FCC0 ^ FCC1
833 static inline void gen_op_eval_fblg(TCGv dst
, TCGv src
,
834 unsigned int fcc_offset
)
836 TCGv t0
= tcg_temp_new();
837 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
838 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
839 tcg_gen_xor_tl(dst
, dst
, t0
);
844 static inline void gen_op_eval_fbul(TCGv dst
, TCGv src
,
845 unsigned int fcc_offset
)
847 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
851 static inline void gen_op_eval_fbl(TCGv dst
, TCGv src
,
852 unsigned int fcc_offset
)
854 TCGv t0
= tcg_temp_new();
855 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
856 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
857 tcg_gen_andc_tl(dst
, dst
, t0
);
862 static inline void gen_op_eval_fbug(TCGv dst
, TCGv src
,
863 unsigned int fcc_offset
)
865 gen_mov_reg_FCC1(dst
, src
, fcc_offset
);
869 static inline void gen_op_eval_fbg(TCGv dst
, TCGv src
,
870 unsigned int fcc_offset
)
872 TCGv t0
= tcg_temp_new();
873 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
874 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
875 tcg_gen_andc_tl(dst
, t0
, dst
);
880 static inline void gen_op_eval_fbu(TCGv dst
, TCGv src
,
881 unsigned int fcc_offset
)
883 TCGv t0
= tcg_temp_new();
884 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
885 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
886 tcg_gen_and_tl(dst
, dst
, t0
);
891 static inline void gen_op_eval_fbe(TCGv dst
, TCGv src
,
892 unsigned int fcc_offset
)
894 TCGv t0
= tcg_temp_new();
895 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
896 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
897 tcg_gen_or_tl(dst
, dst
, t0
);
898 tcg_gen_xori_tl(dst
, dst
, 0x1);
902 // 0 or 3: !(FCC0 ^ FCC1)
903 static inline void gen_op_eval_fbue(TCGv dst
, TCGv src
,
904 unsigned int fcc_offset
)
906 TCGv t0
= tcg_temp_new();
907 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
908 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
909 tcg_gen_xor_tl(dst
, dst
, t0
);
910 tcg_gen_xori_tl(dst
, dst
, 0x1);
915 static inline void gen_op_eval_fbge(TCGv dst
, TCGv src
,
916 unsigned int fcc_offset
)
918 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
919 tcg_gen_xori_tl(dst
, dst
, 0x1);
922 // !1: !(FCC0 & !FCC1)
923 static inline void gen_op_eval_fbuge(TCGv dst
, TCGv src
,
924 unsigned int fcc_offset
)
926 TCGv t0
= tcg_temp_new();
927 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
928 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
929 tcg_gen_andc_tl(dst
, dst
, t0
);
930 tcg_gen_xori_tl(dst
, dst
, 0x1);
935 static inline void gen_op_eval_fble(TCGv dst
, TCGv src
,
936 unsigned int fcc_offset
)
938 gen_mov_reg_FCC1(dst
, src
, fcc_offset
);
939 tcg_gen_xori_tl(dst
, dst
, 0x1);
942 // !2: !(!FCC0 & FCC1)
943 static inline void gen_op_eval_fbule(TCGv dst
, TCGv src
,
944 unsigned int fcc_offset
)
946 TCGv t0
= tcg_temp_new();
947 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
948 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
949 tcg_gen_andc_tl(dst
, t0
, dst
);
950 tcg_gen_xori_tl(dst
, dst
, 0x1);
954 // !3: !(FCC0 & FCC1)
955 static inline void gen_op_eval_fbo(TCGv dst
, TCGv src
,
956 unsigned int fcc_offset
)
958 TCGv t0
= tcg_temp_new();
959 gen_mov_reg_FCC0(dst
, src
, fcc_offset
);
960 gen_mov_reg_FCC1(t0
, src
, fcc_offset
);
961 tcg_gen_and_tl(dst
, dst
, t0
);
962 tcg_gen_xori_tl(dst
, dst
, 0x1);
966 static inline void gen_branch2(DisasContext
*dc
, target_ulong pc1
,
967 target_ulong pc2
, TCGv r_cond
)
971 l1
= gen_new_label();
973 tcg_gen_brcondi_tl(TCG_COND_EQ
, r_cond
, 0, l1
);
975 gen_goto_tb(dc
, 0, pc1
, pc1
+ 4);
978 gen_goto_tb(dc
, 1, pc2
, pc2
+ 4);
981 static inline void gen_branch_a(DisasContext
*dc
, target_ulong pc1
,
982 target_ulong pc2
, TCGv r_cond
)
986 l1
= gen_new_label();
988 tcg_gen_brcondi_tl(TCG_COND_EQ
, r_cond
, 0, l1
);
990 gen_goto_tb(dc
, 0, pc2
, pc1
);
993 gen_goto_tb(dc
, 1, pc2
+ 4, pc2
+ 8);
996 static inline void gen_generic_branch(DisasContext
*dc
)
998 TCGv npc0
= tcg_const_tl(dc
->jump_pc
[0]);
999 TCGv npc1
= tcg_const_tl(dc
->jump_pc
[1]);
1000 TCGv zero
= tcg_const_tl(0);
1002 tcg_gen_movcond_tl(TCG_COND_NE
, cpu_npc
, cpu_cond
, zero
, npc0
, npc1
);
1004 tcg_temp_free(npc0
);
1005 tcg_temp_free(npc1
);
1006 tcg_temp_free(zero
);
1009 /* call this function before using the condition register as it may
1010 have been set for a jump */
1011 static inline void flush_cond(DisasContext
*dc
)
1013 if (dc
->npc
== JUMP_PC
) {
1014 gen_generic_branch(dc
);
1015 dc
->npc
= DYNAMIC_PC
;
1019 static inline void save_npc(DisasContext
*dc
)
1021 if (dc
->npc
== JUMP_PC
) {
1022 gen_generic_branch(dc
);
1023 dc
->npc
= DYNAMIC_PC
;
1024 } else if (dc
->npc
!= DYNAMIC_PC
) {
1025 tcg_gen_movi_tl(cpu_npc
, dc
->npc
);
1029 static inline void update_psr(DisasContext
*dc
)
1031 if (dc
->cc_op
!= CC_OP_FLAGS
) {
1032 dc
->cc_op
= CC_OP_FLAGS
;
1033 gen_helper_compute_psr(cpu_env
);
1037 static inline void save_state(DisasContext
*dc
)
1039 tcg_gen_movi_tl(cpu_pc
, dc
->pc
);
1043 static inline void gen_mov_pc_npc(DisasContext
*dc
)
1045 if (dc
->npc
== JUMP_PC
) {
1046 gen_generic_branch(dc
);
1047 tcg_gen_mov_tl(cpu_pc
, cpu_npc
);
1048 dc
->pc
= DYNAMIC_PC
;
1049 } else if (dc
->npc
== DYNAMIC_PC
) {
1050 tcg_gen_mov_tl(cpu_pc
, cpu_npc
);
1051 dc
->pc
= DYNAMIC_PC
;
1057 static inline void gen_op_next_insn(void)
1059 tcg_gen_mov_tl(cpu_pc
, cpu_npc
);
1060 tcg_gen_addi_tl(cpu_npc
, cpu_npc
, 4);
1063 static void free_compare(DisasCompare
*cmp
)
1066 tcg_temp_free(cmp
->c1
);
1069 tcg_temp_free(cmp
->c2
);
1073 static void gen_compare(DisasCompare
*cmp
, bool xcc
, unsigned int cond
,
1076 static int subcc_cond
[16] = {
1092 -1, /* no overflow */
1095 static int logic_cond
[16] = {
1097 TCG_COND_EQ
, /* eq: Z */
1098 TCG_COND_LE
, /* le: Z | (N ^ V) -> Z | N */
1099 TCG_COND_LT
, /* lt: N ^ V -> N */
1100 TCG_COND_EQ
, /* leu: C | Z -> Z */
1101 TCG_COND_NEVER
, /* ltu: C -> 0 */
1102 TCG_COND_LT
, /* neg: N */
1103 TCG_COND_NEVER
, /* vs: V -> 0 */
1105 TCG_COND_NE
, /* ne: !Z */
1106 TCG_COND_GT
, /* gt: !(Z | (N ^ V)) -> !(Z | N) */
1107 TCG_COND_GE
, /* ge: !(N ^ V) -> !N */
1108 TCG_COND_NE
, /* gtu: !(C | Z) -> !Z */
1109 TCG_COND_ALWAYS
, /* geu: !C -> 1 */
1110 TCG_COND_GE
, /* pos: !N */
1111 TCG_COND_ALWAYS
, /* vc: !V -> 1 */
1117 #ifdef TARGET_SPARC64
1127 switch (dc
->cc_op
) {
1129 cmp
->cond
= logic_cond
[cond
];
1131 cmp
->is_bool
= false;
1133 cmp
->c2
= tcg_const_tl(0);
1134 #ifdef TARGET_SPARC64
1137 cmp
->c1
= tcg_temp_new();
1138 tcg_gen_ext32s_tl(cmp
->c1
, cpu_cc_dst
);
1143 cmp
->c1
= cpu_cc_dst
;
1150 cmp
->cond
= (cond
== 6 ? TCG_COND_LT
: TCG_COND_GE
);
1151 goto do_compare_dst_0
;
1153 case 7: /* overflow */
1154 case 15: /* !overflow */
1158 cmp
->cond
= subcc_cond
[cond
];
1159 cmp
->is_bool
= false;
1160 #ifdef TARGET_SPARC64
1162 /* Note that sign-extension works for unsigned compares as
1163 long as both operands are sign-extended. */
1164 cmp
->g1
= cmp
->g2
= false;
1165 cmp
->c1
= tcg_temp_new();
1166 cmp
->c2
= tcg_temp_new();
1167 tcg_gen_ext32s_tl(cmp
->c1
, cpu_cc_src
);
1168 tcg_gen_ext32s_tl(cmp
->c2
, cpu_cc_src2
);
1172 cmp
->g1
= cmp
->g2
= true;
1173 cmp
->c1
= cpu_cc_src
;
1174 cmp
->c2
= cpu_cc_src2
;
1181 gen_helper_compute_psr(cpu_env
);
1182 dc
->cc_op
= CC_OP_FLAGS
;
1186 /* We're going to generate a boolean result. */
1187 cmp
->cond
= TCG_COND_NE
;
1188 cmp
->is_bool
= true;
1189 cmp
->g1
= cmp
->g2
= false;
1190 cmp
->c1
= r_dst
= tcg_temp_new();
1191 cmp
->c2
= tcg_const_tl(0);
1195 gen_op_eval_bn(r_dst
);
1198 gen_op_eval_be(r_dst
, r_src
);
1201 gen_op_eval_ble(r_dst
, r_src
);
1204 gen_op_eval_bl(r_dst
, r_src
);
1207 gen_op_eval_bleu(r_dst
, r_src
);
1210 gen_op_eval_bcs(r_dst
, r_src
);
1213 gen_op_eval_bneg(r_dst
, r_src
);
1216 gen_op_eval_bvs(r_dst
, r_src
);
1219 gen_op_eval_ba(r_dst
);
1222 gen_op_eval_bne(r_dst
, r_src
);
1225 gen_op_eval_bg(r_dst
, r_src
);
1228 gen_op_eval_bge(r_dst
, r_src
);
1231 gen_op_eval_bgu(r_dst
, r_src
);
1234 gen_op_eval_bcc(r_dst
, r_src
);
1237 gen_op_eval_bpos(r_dst
, r_src
);
1240 gen_op_eval_bvc(r_dst
, r_src
);
1247 static void gen_fcompare(DisasCompare
*cmp
, unsigned int cc
, unsigned int cond
)
1249 unsigned int offset
;
1252 /* For now we still generate a straight boolean result. */
1253 cmp
->cond
= TCG_COND_NE
;
1254 cmp
->is_bool
= true;
1255 cmp
->g1
= cmp
->g2
= false;
1256 cmp
->c1
= r_dst
= tcg_temp_new();
1257 cmp
->c2
= tcg_const_tl(0);
1277 gen_op_eval_bn(r_dst
);
1280 gen_op_eval_fbne(r_dst
, cpu_fsr
, offset
);
1283 gen_op_eval_fblg(r_dst
, cpu_fsr
, offset
);
1286 gen_op_eval_fbul(r_dst
, cpu_fsr
, offset
);
1289 gen_op_eval_fbl(r_dst
, cpu_fsr
, offset
);
1292 gen_op_eval_fbug(r_dst
, cpu_fsr
, offset
);
1295 gen_op_eval_fbg(r_dst
, cpu_fsr
, offset
);
1298 gen_op_eval_fbu(r_dst
, cpu_fsr
, offset
);
1301 gen_op_eval_ba(r_dst
);
1304 gen_op_eval_fbe(r_dst
, cpu_fsr
, offset
);
1307 gen_op_eval_fbue(r_dst
, cpu_fsr
, offset
);
1310 gen_op_eval_fbge(r_dst
, cpu_fsr
, offset
);
1313 gen_op_eval_fbuge(r_dst
, cpu_fsr
, offset
);
1316 gen_op_eval_fble(r_dst
, cpu_fsr
, offset
);
1319 gen_op_eval_fbule(r_dst
, cpu_fsr
, offset
);
1322 gen_op_eval_fbo(r_dst
, cpu_fsr
, offset
);
1327 static void gen_cond(TCGv r_dst
, unsigned int cc
, unsigned int cond
,
1331 gen_compare(&cmp
, cc
, cond
, dc
);
1333 /* The interface is to return a boolean in r_dst. */
1335 tcg_gen_mov_tl(r_dst
, cmp
.c1
);
1337 tcg_gen_setcond_tl(cmp
.cond
, r_dst
, cmp
.c1
, cmp
.c2
);
1343 static void gen_fcond(TCGv r_dst
, unsigned int cc
, unsigned int cond
)
1346 gen_fcompare(&cmp
, cc
, cond
);
1348 /* The interface is to return a boolean in r_dst. */
1350 tcg_gen_mov_tl(r_dst
, cmp
.c1
);
1352 tcg_gen_setcond_tl(cmp
.cond
, r_dst
, cmp
.c1
, cmp
.c2
);
1358 #ifdef TARGET_SPARC64
1360 static const int gen_tcg_cond_reg
[8] = {
1371 static void gen_compare_reg(DisasCompare
*cmp
, int cond
, TCGv r_src
)
1373 cmp
->cond
= tcg_invert_cond(gen_tcg_cond_reg
[cond
]);
1374 cmp
->is_bool
= false;
1378 cmp
->c2
= tcg_const_tl(0);
1381 static inline void gen_cond_reg(TCGv r_dst
, int cond
, TCGv r_src
)
1384 gen_compare_reg(&cmp
, cond
, r_src
);
1386 /* The interface is to return a boolean in r_dst. */
1387 tcg_gen_setcond_tl(cmp
.cond
, r_dst
, cmp
.c1
, cmp
.c2
);
1393 static void do_branch(DisasContext
*dc
, int32_t offset
, uint32_t insn
, int cc
)
1395 unsigned int cond
= GET_FIELD(insn
, 3, 6), a
= (insn
& (1 << 29));
1396 target_ulong target
= dc
->pc
+ offset
;
1398 #ifdef TARGET_SPARC64
1399 if (unlikely(AM_CHECK(dc
))) {
1400 target
&= 0xffffffffULL
;
1404 /* unconditional not taken */
1406 dc
->pc
= dc
->npc
+ 4;
1407 dc
->npc
= dc
->pc
+ 4;
1410 dc
->npc
= dc
->pc
+ 4;
1412 } else if (cond
== 0x8) {
1413 /* unconditional taken */
1416 dc
->npc
= dc
->pc
+ 4;
1420 tcg_gen_mov_tl(cpu_pc
, cpu_npc
);
1424 gen_cond(cpu_cond
, cc
, cond
, dc
);
1426 gen_branch_a(dc
, target
, dc
->npc
, cpu_cond
);
1430 dc
->jump_pc
[0] = target
;
1431 if (unlikely(dc
->npc
== DYNAMIC_PC
)) {
1432 dc
->jump_pc
[1] = DYNAMIC_PC
;
1433 tcg_gen_addi_tl(cpu_pc
, cpu_npc
, 4);
1435 dc
->jump_pc
[1] = dc
->npc
+ 4;
1442 static void do_fbranch(DisasContext
*dc
, int32_t offset
, uint32_t insn
, int cc
)
1444 unsigned int cond
= GET_FIELD(insn
, 3, 6), a
= (insn
& (1 << 29));
1445 target_ulong target
= dc
->pc
+ offset
;
1447 #ifdef TARGET_SPARC64
1448 if (unlikely(AM_CHECK(dc
))) {
1449 target
&= 0xffffffffULL
;
1453 /* unconditional not taken */
1455 dc
->pc
= dc
->npc
+ 4;
1456 dc
->npc
= dc
->pc
+ 4;
1459 dc
->npc
= dc
->pc
+ 4;
1461 } else if (cond
== 0x8) {
1462 /* unconditional taken */
1465 dc
->npc
= dc
->pc
+ 4;
1469 tcg_gen_mov_tl(cpu_pc
, cpu_npc
);
1473 gen_fcond(cpu_cond
, cc
, cond
);
1475 gen_branch_a(dc
, target
, dc
->npc
, cpu_cond
);
1479 dc
->jump_pc
[0] = target
;
1480 if (unlikely(dc
->npc
== DYNAMIC_PC
)) {
1481 dc
->jump_pc
[1] = DYNAMIC_PC
;
1482 tcg_gen_addi_tl(cpu_pc
, cpu_npc
, 4);
1484 dc
->jump_pc
[1] = dc
->npc
+ 4;
1491 #ifdef TARGET_SPARC64
1492 static void do_branch_reg(DisasContext
*dc
, int32_t offset
, uint32_t insn
,
1495 unsigned int cond
= GET_FIELD_SP(insn
, 25, 27), a
= (insn
& (1 << 29));
1496 target_ulong target
= dc
->pc
+ offset
;
1498 if (unlikely(AM_CHECK(dc
))) {
1499 target
&= 0xffffffffULL
;
1502 gen_cond_reg(cpu_cond
, cond
, r_reg
);
1504 gen_branch_a(dc
, target
, dc
->npc
, cpu_cond
);
1508 dc
->jump_pc
[0] = target
;
1509 if (unlikely(dc
->npc
== DYNAMIC_PC
)) {
1510 dc
->jump_pc
[1] = DYNAMIC_PC
;
1511 tcg_gen_addi_tl(cpu_pc
, cpu_npc
, 4);
1513 dc
->jump_pc
[1] = dc
->npc
+ 4;
1519 static inline void gen_op_fcmps(int fccno
, TCGv_i32 r_rs1
, TCGv_i32 r_rs2
)
1523 gen_helper_fcmps(cpu_env
, r_rs1
, r_rs2
);
1526 gen_helper_fcmps_fcc1(cpu_env
, r_rs1
, r_rs2
);
1529 gen_helper_fcmps_fcc2(cpu_env
, r_rs1
, r_rs2
);
1532 gen_helper_fcmps_fcc3(cpu_env
, r_rs1
, r_rs2
);
1537 static inline void gen_op_fcmpd(int fccno
, TCGv_i64 r_rs1
, TCGv_i64 r_rs2
)
1541 gen_helper_fcmpd(cpu_env
, r_rs1
, r_rs2
);
1544 gen_helper_fcmpd_fcc1(cpu_env
, r_rs1
, r_rs2
);
1547 gen_helper_fcmpd_fcc2(cpu_env
, r_rs1
, r_rs2
);
1550 gen_helper_fcmpd_fcc3(cpu_env
, r_rs1
, r_rs2
);
1555 static inline void gen_op_fcmpq(int fccno
)
1559 gen_helper_fcmpq(cpu_env
);
1562 gen_helper_fcmpq_fcc1(cpu_env
);
1565 gen_helper_fcmpq_fcc2(cpu_env
);
1568 gen_helper_fcmpq_fcc3(cpu_env
);
1573 static inline void gen_op_fcmpes(int fccno
, TCGv_i32 r_rs1
, TCGv_i32 r_rs2
)
1577 gen_helper_fcmpes(cpu_env
, r_rs1
, r_rs2
);
1580 gen_helper_fcmpes_fcc1(cpu_env
, r_rs1
, r_rs2
);
1583 gen_helper_fcmpes_fcc2(cpu_env
, r_rs1
, r_rs2
);
1586 gen_helper_fcmpes_fcc3(cpu_env
, r_rs1
, r_rs2
);
1591 static inline void gen_op_fcmped(int fccno
, TCGv_i64 r_rs1
, TCGv_i64 r_rs2
)
1595 gen_helper_fcmped(cpu_env
, r_rs1
, r_rs2
);
1598 gen_helper_fcmped_fcc1(cpu_env
, r_rs1
, r_rs2
);
1601 gen_helper_fcmped_fcc2(cpu_env
, r_rs1
, r_rs2
);
1604 gen_helper_fcmped_fcc3(cpu_env
, r_rs1
, r_rs2
);
1609 static inline void gen_op_fcmpeq(int fccno
)
1613 gen_helper_fcmpeq(cpu_env
);
1616 gen_helper_fcmpeq_fcc1(cpu_env
);
1619 gen_helper_fcmpeq_fcc2(cpu_env
);
1622 gen_helper_fcmpeq_fcc3(cpu_env
);
1629 static inline void gen_op_fcmps(int fccno
, TCGv r_rs1
, TCGv r_rs2
)
1631 gen_helper_fcmps(cpu_env
, r_rs1
, r_rs2
);
1634 static inline void gen_op_fcmpd(int fccno
, TCGv_i64 r_rs1
, TCGv_i64 r_rs2
)
1636 gen_helper_fcmpd(cpu_env
, r_rs1
, r_rs2
);
1639 static inline void gen_op_fcmpq(int fccno
)
1641 gen_helper_fcmpq(cpu_env
);
1644 static inline void gen_op_fcmpes(int fccno
, TCGv r_rs1
, TCGv r_rs2
)
1646 gen_helper_fcmpes(cpu_env
, r_rs1
, r_rs2
);
1649 static inline void gen_op_fcmped(int fccno
, TCGv_i64 r_rs1
, TCGv_i64 r_rs2
)
1651 gen_helper_fcmped(cpu_env
, r_rs1
, r_rs2
);
1654 static inline void gen_op_fcmpeq(int fccno
)
1656 gen_helper_fcmpeq(cpu_env
);
1660 static inline void gen_op_fpexception_im(int fsr_flags
)
1664 tcg_gen_andi_tl(cpu_fsr
, cpu_fsr
, FSR_FTT_NMASK
);
1665 tcg_gen_ori_tl(cpu_fsr
, cpu_fsr
, fsr_flags
);
1666 r_const
= tcg_const_i32(TT_FP_EXCP
);
1667 gen_helper_raise_exception(cpu_env
, r_const
);
1668 tcg_temp_free_i32(r_const
);
1671 static int gen_trap_ifnofpu(DisasContext
*dc
)
1673 #if !defined(CONFIG_USER_ONLY)
1674 if (!dc
->fpu_enabled
) {
1678 r_const
= tcg_const_i32(TT_NFPU_INSN
);
1679 gen_helper_raise_exception(cpu_env
, r_const
);
1680 tcg_temp_free_i32(r_const
);
1688 static inline void gen_op_clear_ieee_excp_and_FTT(void)
1690 tcg_gen_andi_tl(cpu_fsr
, cpu_fsr
, FSR_FTT_CEXC_NMASK
);
1693 static inline void gen_fop_FF(DisasContext
*dc
, int rd
, int rs
,
1694 void (*gen
)(TCGv_i32
, TCGv_ptr
, TCGv_i32
))
1698 src
= gen_load_fpr_F(dc
, rs
);
1699 dst
= gen_dest_fpr_F(dc
);
1701 gen(dst
, cpu_env
, src
);
1703 gen_store_fpr_F(dc
, rd
, dst
);
1706 static inline void gen_ne_fop_FF(DisasContext
*dc
, int rd
, int rs
,
1707 void (*gen
)(TCGv_i32
, TCGv_i32
))
1711 src
= gen_load_fpr_F(dc
, rs
);
1712 dst
= gen_dest_fpr_F(dc
);
1716 gen_store_fpr_F(dc
, rd
, dst
);
1719 static inline void gen_fop_FFF(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1720 void (*gen
)(TCGv_i32
, TCGv_ptr
, TCGv_i32
, TCGv_i32
))
1722 TCGv_i32 dst
, src1
, src2
;
1724 src1
= gen_load_fpr_F(dc
, rs1
);
1725 src2
= gen_load_fpr_F(dc
, rs2
);
1726 dst
= gen_dest_fpr_F(dc
);
1728 gen(dst
, cpu_env
, src1
, src2
);
1730 gen_store_fpr_F(dc
, rd
, dst
);
1733 #ifdef TARGET_SPARC64
1734 static inline void gen_ne_fop_FFF(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1735 void (*gen
)(TCGv_i32
, TCGv_i32
, TCGv_i32
))
1737 TCGv_i32 dst
, src1
, src2
;
1739 src1
= gen_load_fpr_F(dc
, rs1
);
1740 src2
= gen_load_fpr_F(dc
, rs2
);
1741 dst
= gen_dest_fpr_F(dc
);
1743 gen(dst
, src1
, src2
);
1745 gen_store_fpr_F(dc
, rd
, dst
);
1749 static inline void gen_fop_DD(DisasContext
*dc
, int rd
, int rs
,
1750 void (*gen
)(TCGv_i64
, TCGv_ptr
, TCGv_i64
))
1754 src
= gen_load_fpr_D(dc
, rs
);
1755 dst
= gen_dest_fpr_D(dc
, rd
);
1757 gen(dst
, cpu_env
, src
);
1759 gen_store_fpr_D(dc
, rd
, dst
);
1762 #ifdef TARGET_SPARC64
1763 static inline void gen_ne_fop_DD(DisasContext
*dc
, int rd
, int rs
,
1764 void (*gen
)(TCGv_i64
, TCGv_i64
))
1768 src
= gen_load_fpr_D(dc
, rs
);
1769 dst
= gen_dest_fpr_D(dc
, rd
);
1773 gen_store_fpr_D(dc
, rd
, dst
);
1777 static inline void gen_fop_DDD(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1778 void (*gen
)(TCGv_i64
, TCGv_ptr
, TCGv_i64
, TCGv_i64
))
1780 TCGv_i64 dst
, src1
, src2
;
1782 src1
= gen_load_fpr_D(dc
, rs1
);
1783 src2
= gen_load_fpr_D(dc
, rs2
);
1784 dst
= gen_dest_fpr_D(dc
, rd
);
1786 gen(dst
, cpu_env
, src1
, src2
);
1788 gen_store_fpr_D(dc
, rd
, dst
);
1791 #ifdef TARGET_SPARC64
1792 static inline void gen_ne_fop_DDD(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1793 void (*gen
)(TCGv_i64
, TCGv_i64
, TCGv_i64
))
1795 TCGv_i64 dst
, src1
, src2
;
1797 src1
= gen_load_fpr_D(dc
, rs1
);
1798 src2
= gen_load_fpr_D(dc
, rs2
);
1799 dst
= gen_dest_fpr_D(dc
, rd
);
1801 gen(dst
, src1
, src2
);
1803 gen_store_fpr_D(dc
, rd
, dst
);
1806 static inline void gen_gsr_fop_DDD(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1807 void (*gen
)(TCGv_i64
, TCGv_i64
, TCGv_i64
, TCGv_i64
))
1809 TCGv_i64 dst
, src1
, src2
;
1811 src1
= gen_load_fpr_D(dc
, rs1
);
1812 src2
= gen_load_fpr_D(dc
, rs2
);
1813 dst
= gen_dest_fpr_D(dc
, rd
);
1815 gen(dst
, cpu_gsr
, src1
, src2
);
1817 gen_store_fpr_D(dc
, rd
, dst
);
1820 static inline void gen_ne_fop_DDDD(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1821 void (*gen
)(TCGv_i64
, TCGv_i64
, TCGv_i64
, TCGv_i64
))
1823 TCGv_i64 dst
, src0
, src1
, src2
;
1825 src1
= gen_load_fpr_D(dc
, rs1
);
1826 src2
= gen_load_fpr_D(dc
, rs2
);
1827 src0
= gen_load_fpr_D(dc
, rd
);
1828 dst
= gen_dest_fpr_D(dc
, rd
);
1830 gen(dst
, src0
, src1
, src2
);
1832 gen_store_fpr_D(dc
, rd
, dst
);
1836 static inline void gen_fop_QQ(DisasContext
*dc
, int rd
, int rs
,
1837 void (*gen
)(TCGv_ptr
))
1839 gen_op_load_fpr_QT1(QFPREG(rs
));
1843 gen_op_store_QT0_fpr(QFPREG(rd
));
1844 gen_update_fprs_dirty(QFPREG(rd
));
1847 #ifdef TARGET_SPARC64
1848 static inline void gen_ne_fop_QQ(DisasContext
*dc
, int rd
, int rs
,
1849 void (*gen
)(TCGv_ptr
))
1851 gen_op_load_fpr_QT1(QFPREG(rs
));
1855 gen_op_store_QT0_fpr(QFPREG(rd
));
1856 gen_update_fprs_dirty(QFPREG(rd
));
1860 static inline void gen_fop_QQQ(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1861 void (*gen
)(TCGv_ptr
))
1863 gen_op_load_fpr_QT0(QFPREG(rs1
));
1864 gen_op_load_fpr_QT1(QFPREG(rs2
));
1868 gen_op_store_QT0_fpr(QFPREG(rd
));
1869 gen_update_fprs_dirty(QFPREG(rd
));
1872 static inline void gen_fop_DFF(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1873 void (*gen
)(TCGv_i64
, TCGv_ptr
, TCGv_i32
, TCGv_i32
))
1876 TCGv_i32 src1
, src2
;
1878 src1
= gen_load_fpr_F(dc
, rs1
);
1879 src2
= gen_load_fpr_F(dc
, rs2
);
1880 dst
= gen_dest_fpr_D(dc
, rd
);
1882 gen(dst
, cpu_env
, src1
, src2
);
1884 gen_store_fpr_D(dc
, rd
, dst
);
1887 static inline void gen_fop_QDD(DisasContext
*dc
, int rd
, int rs1
, int rs2
,
1888 void (*gen
)(TCGv_ptr
, TCGv_i64
, TCGv_i64
))
1890 TCGv_i64 src1
, src2
;
1892 src1
= gen_load_fpr_D(dc
, rs1
);
1893 src2
= gen_load_fpr_D(dc
, rs2
);
1895 gen(cpu_env
, src1
, src2
);
1897 gen_op_store_QT0_fpr(QFPREG(rd
));
1898 gen_update_fprs_dirty(QFPREG(rd
));
1901 #ifdef TARGET_SPARC64
1902 static inline void gen_fop_DF(DisasContext
*dc
, int rd
, int rs
,
1903 void (*gen
)(TCGv_i64
, TCGv_ptr
, TCGv_i32
))
1908 src
= gen_load_fpr_F(dc
, rs
);
1909 dst
= gen_dest_fpr_D(dc
, rd
);
1911 gen(dst
, cpu_env
, src
);
1913 gen_store_fpr_D(dc
, rd
, dst
);
1917 static inline void gen_ne_fop_DF(DisasContext
*dc
, int rd
, int rs
,
1918 void (*gen
)(TCGv_i64
, TCGv_ptr
, TCGv_i32
))
1923 src
= gen_load_fpr_F(dc
, rs
);
1924 dst
= gen_dest_fpr_D(dc
, rd
);
1926 gen(dst
, cpu_env
, src
);
1928 gen_store_fpr_D(dc
, rd
, dst
);
1931 static inline void gen_fop_FD(DisasContext
*dc
, int rd
, int rs
,
1932 void (*gen
)(TCGv_i32
, TCGv_ptr
, TCGv_i64
))
1937 src
= gen_load_fpr_D(dc
, rs
);
1938 dst
= gen_dest_fpr_F(dc
);
1940 gen(dst
, cpu_env
, src
);
1942 gen_store_fpr_F(dc
, rd
, dst
);
1945 static inline void gen_fop_FQ(DisasContext
*dc
, int rd
, int rs
,
1946 void (*gen
)(TCGv_i32
, TCGv_ptr
))
1950 gen_op_load_fpr_QT1(QFPREG(rs
));
1951 dst
= gen_dest_fpr_F(dc
);
1955 gen_store_fpr_F(dc
, rd
, dst
);
1958 static inline void gen_fop_DQ(DisasContext
*dc
, int rd
, int rs
,
1959 void (*gen
)(TCGv_i64
, TCGv_ptr
))
1963 gen_op_load_fpr_QT1(QFPREG(rs
));
1964 dst
= gen_dest_fpr_D(dc
, rd
);
1968 gen_store_fpr_D(dc
, rd
, dst
);
1971 static inline void gen_ne_fop_QF(DisasContext
*dc
, int rd
, int rs
,
1972 void (*gen
)(TCGv_ptr
, TCGv_i32
))
1976 src
= gen_load_fpr_F(dc
, rs
);
1980 gen_op_store_QT0_fpr(QFPREG(rd
));
1981 gen_update_fprs_dirty(QFPREG(rd
));
1984 static inline void gen_ne_fop_QD(DisasContext
*dc
, int rd
, int rs
,
1985 void (*gen
)(TCGv_ptr
, TCGv_i64
))
1989 src
= gen_load_fpr_D(dc
, rs
);
1993 gen_op_store_QT0_fpr(QFPREG(rd
));
1994 gen_update_fprs_dirty(QFPREG(rd
));
1998 #ifdef TARGET_SPARC64
1999 static inline TCGv_i32
gen_get_asi(int insn
, TCGv r_addr
)
2005 r_asi
= tcg_temp_new_i32();
2006 tcg_gen_mov_i32(r_asi
, cpu_asi
);
2008 asi
= GET_FIELD(insn
, 19, 26);
2009 r_asi
= tcg_const_i32(asi
);
2014 static inline void gen_ld_asi(TCGv dst
, TCGv addr
, int insn
, int size
,
2017 TCGv_i32 r_asi
, r_size
, r_sign
;
2019 r_asi
= gen_get_asi(insn
, addr
);
2020 r_size
= tcg_const_i32(size
);
2021 r_sign
= tcg_const_i32(sign
);
2022 gen_helper_ld_asi(dst
, cpu_env
, addr
, r_asi
, r_size
, r_sign
);
2023 tcg_temp_free_i32(r_sign
);
2024 tcg_temp_free_i32(r_size
);
2025 tcg_temp_free_i32(r_asi
);
2028 static inline void gen_st_asi(TCGv src
, TCGv addr
, int insn
, int size
)
2030 TCGv_i32 r_asi
, r_size
;
2032 r_asi
= gen_get_asi(insn
, addr
);
2033 r_size
= tcg_const_i32(size
);
2034 gen_helper_st_asi(cpu_env
, addr
, src
, r_asi
, r_size
);
2035 tcg_temp_free_i32(r_size
);
2036 tcg_temp_free_i32(r_asi
);
2039 static inline void gen_ldf_asi(TCGv addr
, int insn
, int size
, int rd
)
2041 TCGv_i32 r_asi
, r_size
, r_rd
;
2043 r_asi
= gen_get_asi(insn
, addr
);
2044 r_size
= tcg_const_i32(size
);
2045 r_rd
= tcg_const_i32(rd
);
2046 gen_helper_ldf_asi(cpu_env
, addr
, r_asi
, r_size
, r_rd
);
2047 tcg_temp_free_i32(r_rd
);
2048 tcg_temp_free_i32(r_size
);
2049 tcg_temp_free_i32(r_asi
);
2052 static inline void gen_stf_asi(TCGv addr
, int insn
, int size
, int rd
)
2054 TCGv_i32 r_asi
, r_size
, r_rd
;
2056 r_asi
= gen_get_asi(insn
, addr
);
2057 r_size
= tcg_const_i32(size
);
2058 r_rd
= tcg_const_i32(rd
);
2059 gen_helper_stf_asi(cpu_env
, addr
, r_asi
, r_size
, r_rd
);
2060 tcg_temp_free_i32(r_rd
);
2061 tcg_temp_free_i32(r_size
);
2062 tcg_temp_free_i32(r_asi
);
2065 static inline void gen_swap_asi(TCGv dst
, TCGv src
, TCGv addr
, int insn
)
2067 TCGv_i32 r_asi
, r_size
, r_sign
;
2068 TCGv_i64 t64
= tcg_temp_new_i64();
2070 r_asi
= gen_get_asi(insn
, addr
);
2071 r_size
= tcg_const_i32(4);
2072 r_sign
= tcg_const_i32(0);
2073 gen_helper_ld_asi(t64
, cpu_env
, addr
, r_asi
, r_size
, r_sign
);
2074 tcg_temp_free_i32(r_sign
);
2075 gen_helper_st_asi(cpu_env
, addr
, src
, r_asi
, r_size
);
2076 tcg_temp_free_i32(r_size
);
2077 tcg_temp_free_i32(r_asi
);
2078 tcg_gen_trunc_i64_tl(dst
, t64
);
2079 tcg_temp_free_i64(t64
);
2082 static inline void gen_ldda_asi(DisasContext
*dc
, TCGv hi
, TCGv addr
,
2085 TCGv_i32 r_asi
, r_rd
;
2087 r_asi
= gen_get_asi(insn
, addr
);
2088 r_rd
= tcg_const_i32(rd
);
2089 gen_helper_ldda_asi(cpu_env
, addr
, r_asi
, r_rd
);
2090 tcg_temp_free_i32(r_rd
);
2091 tcg_temp_free_i32(r_asi
);
2094 static inline void gen_stda_asi(DisasContext
*dc
, TCGv hi
, TCGv addr
,
2097 TCGv_i32 r_asi
, r_size
;
2098 TCGv lo
= gen_load_gpr(dc
, rd
+ 1);
2099 TCGv_i64 t64
= tcg_temp_new_i64();
2101 tcg_gen_concat_tl_i64(t64
, lo
, hi
);
2102 r_asi
= gen_get_asi(insn
, addr
);
2103 r_size
= tcg_const_i32(8);
2104 gen_helper_st_asi(cpu_env
, addr
, t64
, r_asi
, r_size
);
2105 tcg_temp_free_i32(r_size
);
2106 tcg_temp_free_i32(r_asi
);
2107 tcg_temp_free_i64(t64
);
2110 static inline void gen_casx_asi(DisasContext
*dc
, TCGv addr
,
2111 TCGv val2
, int insn
, int rd
)
2113 TCGv val1
= gen_load_gpr(dc
, rd
);
2114 TCGv dst
= gen_dest_gpr(dc
, rd
);
2115 TCGv_i32 r_asi
= gen_get_asi(insn
, addr
);
2117 gen_helper_casx_asi(dst
, cpu_env
, addr
, val1
, val2
, r_asi
);
2118 tcg_temp_free_i32(r_asi
);
2119 gen_store_gpr(dc
, rd
, dst
);
2122 #elif !defined(CONFIG_USER_ONLY)
2124 static inline void gen_ld_asi(TCGv dst
, TCGv addr
, int insn
, int size
,
2127 TCGv_i32 r_asi
, r_size
, r_sign
;
2128 TCGv_i64 t64
= tcg_temp_new_i64();
2130 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2131 r_size
= tcg_const_i32(size
);
2132 r_sign
= tcg_const_i32(sign
);
2133 gen_helper_ld_asi(t64
, cpu_env
, addr
, r_asi
, r_size
, r_sign
);
2134 tcg_temp_free_i32(r_sign
);
2135 tcg_temp_free_i32(r_size
);
2136 tcg_temp_free_i32(r_asi
);
2137 tcg_gen_trunc_i64_tl(dst
, t64
);
2138 tcg_temp_free_i64(t64
);
2141 static inline void gen_st_asi(TCGv src
, TCGv addr
, int insn
, int size
)
2143 TCGv_i32 r_asi
, r_size
;
2144 TCGv_i64 t64
= tcg_temp_new_i64();
2146 tcg_gen_extu_tl_i64(t64
, src
);
2147 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2148 r_size
= tcg_const_i32(size
);
2149 gen_helper_st_asi(cpu_env
, addr
, t64
, r_asi
, r_size
);
2150 tcg_temp_free_i32(r_size
);
2151 tcg_temp_free_i32(r_asi
);
2152 tcg_temp_free_i64(t64
);
2155 static inline void gen_swap_asi(TCGv dst
, TCGv src
, TCGv addr
, int insn
)
2157 TCGv_i32 r_asi
, r_size
, r_sign
;
2158 TCGv_i64 r_val
, t64
;
2160 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2161 r_size
= tcg_const_i32(4);
2162 r_sign
= tcg_const_i32(0);
2163 t64
= tcg_temp_new_i64();
2164 gen_helper_ld_asi(t64
, cpu_env
, addr
, r_asi
, r_size
, r_sign
);
2165 tcg_temp_free(r_sign
);
2166 r_val
= tcg_temp_new_i64();
2167 tcg_gen_extu_tl_i64(r_val
, src
);
2168 gen_helper_st_asi(cpu_env
, addr
, r_val
, r_asi
, r_size
);
2169 tcg_temp_free_i64(r_val
);
2170 tcg_temp_free_i32(r_size
);
2171 tcg_temp_free_i32(r_asi
);
2172 tcg_gen_trunc_i64_tl(dst
, t64
);
2173 tcg_temp_free_i64(t64
);
2176 static inline void gen_ldda_asi(DisasContext
*dc
, TCGv hi
, TCGv addr
,
2179 TCGv_i32 r_asi
, r_size
, r_sign
;
2183 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2184 r_size
= tcg_const_i32(8);
2185 r_sign
= tcg_const_i32(0);
2186 t64
= tcg_temp_new_i64();
2187 gen_helper_ld_asi(t64
, cpu_env
, addr
, r_asi
, r_size
, r_sign
);
2188 tcg_temp_free_i32(r_sign
);
2189 tcg_temp_free_i32(r_size
);
2190 tcg_temp_free_i32(r_asi
);
2192 t
= gen_dest_gpr(dc
, rd
+ 1);
2193 tcg_gen_trunc_i64_tl(t
, t64
);
2194 gen_store_gpr(dc
, rd
+ 1, t
);
2196 tcg_gen_shri_i64(t64
, t64
, 32);
2197 tcg_gen_trunc_i64_tl(hi
, t64
);
2198 tcg_temp_free_i64(t64
);
2199 gen_store_gpr(dc
, rd
, hi
);
2202 static inline void gen_stda_asi(DisasContext
*dc
, TCGv hi
, TCGv addr
,
2205 TCGv_i32 r_asi
, r_size
;
2206 TCGv lo
= gen_load_gpr(dc
, rd
+ 1);
2207 TCGv_i64 t64
= tcg_temp_new_i64();
2209 tcg_gen_concat_tl_i64(t64
, lo
, hi
);
2210 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2211 r_size
= tcg_const_i32(8);
2212 gen_helper_st_asi(cpu_env
, addr
, t64
, r_asi
, r_size
);
2213 tcg_temp_free_i32(r_size
);
2214 tcg_temp_free_i32(r_asi
);
2215 tcg_temp_free_i64(t64
);
2219 #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
2220 static inline void gen_cas_asi(DisasContext
*dc
, TCGv addr
,
2221 TCGv val2
, int insn
, int rd
)
2223 TCGv val1
= gen_load_gpr(dc
, rd
);
2224 TCGv dst
= gen_dest_gpr(dc
, rd
);
2225 #ifdef TARGET_SPARC64
2226 TCGv_i32 r_asi
= gen_get_asi(insn
, addr
);
2228 TCGv_i32 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2231 gen_helper_cas_asi(dst
, cpu_env
, addr
, val1
, val2
, r_asi
);
2232 tcg_temp_free_i32(r_asi
);
2233 gen_store_gpr(dc
, rd
, dst
);
2236 static inline void gen_ldstub_asi(TCGv dst
, TCGv addr
, int insn
)
2239 TCGv_i32 r_asi
, r_size
;
2241 gen_ld_asi(dst
, addr
, insn
, 1, 0);
2243 r_val
= tcg_const_i64(0xffULL
);
2244 r_asi
= tcg_const_i32(GET_FIELD(insn
, 19, 26));
2245 r_size
= tcg_const_i32(1);
2246 gen_helper_st_asi(cpu_env
, addr
, r_val
, r_asi
, r_size
);
2247 tcg_temp_free_i32(r_size
);
2248 tcg_temp_free_i32(r_asi
);
2249 tcg_temp_free_i64(r_val
);
2253 static TCGv
get_src1(DisasContext
*dc
, unsigned int insn
)
2255 unsigned int rs1
= GET_FIELD(insn
, 13, 17);
2256 return gen_load_gpr(dc
, rs1
);
2259 static TCGv
get_src2(DisasContext
*dc
, unsigned int insn
)
2261 if (IS_IMM
) { /* immediate */
2262 target_long simm
= GET_FIELDs(insn
, 19, 31);
2263 TCGv t
= get_temp_tl(dc
);
2264 tcg_gen_movi_tl(t
, simm
);
2266 } else { /* register */
2267 unsigned int rs2
= GET_FIELD(insn
, 27, 31);
2268 return gen_load_gpr(dc
, rs2
);
2272 #ifdef TARGET_SPARC64
2273 static void gen_fmovs(DisasContext
*dc
, DisasCompare
*cmp
, int rd
, int rs
)
2275 TCGv_i32 c32
, zero
, dst
, s1
, s2
;
2277 /* We have two choices here: extend the 32 bit data and use movcond_i64,
2278 or fold the comparison down to 32 bits and use movcond_i32. Choose
2280 c32
= tcg_temp_new_i32();
2282 tcg_gen_trunc_i64_i32(c32
, cmp
->c1
);
2284 TCGv_i64 c64
= tcg_temp_new_i64();
2285 tcg_gen_setcond_i64(cmp
->cond
, c64
, cmp
->c1
, cmp
->c2
);
2286 tcg_gen_trunc_i64_i32(c32
, c64
);
2287 tcg_temp_free_i64(c64
);
2290 s1
= gen_load_fpr_F(dc
, rs
);
2291 s2
= gen_load_fpr_F(dc
, rd
);
2292 dst
= gen_dest_fpr_F(dc
);
2293 zero
= tcg_const_i32(0);
2295 tcg_gen_movcond_i32(TCG_COND_NE
, dst
, c32
, zero
, s1
, s2
);
2297 tcg_temp_free_i32(c32
);
2298 tcg_temp_free_i32(zero
);
2299 gen_store_fpr_F(dc
, rd
, dst
);
2302 static void gen_fmovd(DisasContext
*dc
, DisasCompare
*cmp
, int rd
, int rs
)
2304 TCGv_i64 dst
= gen_dest_fpr_D(dc
, rd
);
2305 tcg_gen_movcond_i64(cmp
->cond
, dst
, cmp
->c1
, cmp
->c2
,
2306 gen_load_fpr_D(dc
, rs
),
2307 gen_load_fpr_D(dc
, rd
));
2308 gen_store_fpr_D(dc
, rd
, dst
);
2311 static void gen_fmovq(DisasContext
*dc
, DisasCompare
*cmp
, int rd
, int rs
)
2313 int qd
= QFPREG(rd
);
2314 int qs
= QFPREG(rs
);
2316 tcg_gen_movcond_i64(cmp
->cond
, cpu_fpr
[qd
/ 2], cmp
->c1
, cmp
->c2
,
2317 cpu_fpr
[qs
/ 2], cpu_fpr
[qd
/ 2]);
2318 tcg_gen_movcond_i64(cmp
->cond
, cpu_fpr
[qd
/ 2 + 1], cmp
->c1
, cmp
->c2
,
2319 cpu_fpr
[qs
/ 2 + 1], cpu_fpr
[qd
/ 2 + 1]);
2321 gen_update_fprs_dirty(qd
);
2324 static inline void gen_load_trap_state_at_tl(TCGv_ptr r_tsptr
, TCGv_ptr cpu_env
)
2326 TCGv_i32 r_tl
= tcg_temp_new_i32();
2328 /* load env->tl into r_tl */
2329 tcg_gen_ld_i32(r_tl
, cpu_env
, offsetof(CPUSPARCState
, tl
));
2331 /* tl = [0 ... MAXTL_MASK] where MAXTL_MASK must be power of 2 */
2332 tcg_gen_andi_i32(r_tl
, r_tl
, MAXTL_MASK
);
2334 /* calculate offset to current trap state from env->ts, reuse r_tl */
2335 tcg_gen_muli_i32(r_tl
, r_tl
, sizeof (trap_state
));
2336 tcg_gen_addi_ptr(r_tsptr
, cpu_env
, offsetof(CPUSPARCState
, ts
));
2338 /* tsptr = env->ts[env->tl & MAXTL_MASK] */
2340 TCGv_ptr r_tl_tmp
= tcg_temp_new_ptr();
2341 tcg_gen_ext_i32_ptr(r_tl_tmp
, r_tl
);
2342 tcg_gen_add_ptr(r_tsptr
, r_tsptr
, r_tl_tmp
);
2343 tcg_temp_free_ptr(r_tl_tmp
);
2346 tcg_temp_free_i32(r_tl
);
2349 static void gen_edge(DisasContext
*dc
, TCGv dst
, TCGv s1
, TCGv s2
,
2350 int width
, bool cc
, bool left
)
2352 TCGv lo1
, lo2
, t1
, t2
;
2353 uint64_t amask
, tabl
, tabr
;
2354 int shift
, imask
, omask
;
2357 tcg_gen_mov_tl(cpu_cc_src
, s1
);
2358 tcg_gen_mov_tl(cpu_cc_src2
, s2
);
2359 tcg_gen_sub_tl(cpu_cc_dst
, s1
, s2
);
2360 tcg_gen_movi_i32(cpu_cc_op
, CC_OP_SUB
);
2361 dc
->cc_op
= CC_OP_SUB
;
2364 /* Theory of operation: there are two tables, left and right (not to
2365 be confused with the left and right versions of the opcode). These
2366 are indexed by the low 3 bits of the inputs. To make things "easy",
2367 these tables are loaded into two constants, TABL and TABR below.
2368 The operation index = (input & imask) << shift calculates the index
2369 into the constant, while val = (table >> index) & omask calculates
2370 the value we're looking for. */
2377 tabl
= 0x80c0e0f0f8fcfeffULL
;
2378 tabr
= 0xff7f3f1f0f070301ULL
;
2380 tabl
= 0x0103070f1f3f7fffULL
;
2381 tabr
= 0xfffefcf8f0e0c080ULL
;
2401 tabl
= (2 << 2) | 3;
2402 tabr
= (3 << 2) | 1;
2404 tabl
= (1 << 2) | 3;
2405 tabr
= (3 << 2) | 2;
2412 lo1
= tcg_temp_new();
2413 lo2
= tcg_temp_new();
2414 tcg_gen_andi_tl(lo1
, s1
, imask
);
2415 tcg_gen_andi_tl(lo2
, s2
, imask
);
2416 tcg_gen_shli_tl(lo1
, lo1
, shift
);
2417 tcg_gen_shli_tl(lo2
, lo2
, shift
);
2419 t1
= tcg_const_tl(tabl
);
2420 t2
= tcg_const_tl(tabr
);
2421 tcg_gen_shr_tl(lo1
, t1
, lo1
);
2422 tcg_gen_shr_tl(lo2
, t2
, lo2
);
2423 tcg_gen_andi_tl(dst
, lo1
, omask
);
2424 tcg_gen_andi_tl(lo2
, lo2
, omask
);
2428 amask
&= 0xffffffffULL
;
2430 tcg_gen_andi_tl(s1
, s1
, amask
);
2431 tcg_gen_andi_tl(s2
, s2
, amask
);
2433 /* We want to compute
2434 dst = (s1 == s2 ? lo1 : lo1 & lo2).
2435 We've already done dst = lo1, so this reduces to
2436 dst &= (s1 == s2 ? -1 : lo2)
2441 tcg_gen_setcond_tl(TCG_COND_EQ
, t1
, s1
, s2
);
2442 tcg_gen_neg_tl(t1
, t1
);
2443 tcg_gen_or_tl(lo2
, lo2
, t1
);
2444 tcg_gen_and_tl(dst
, dst
, lo2
);
2452 static void gen_alignaddr(TCGv dst
, TCGv s1
, TCGv s2
, bool left
)
2454 TCGv tmp
= tcg_temp_new();
2456 tcg_gen_add_tl(tmp
, s1
, s2
);
2457 tcg_gen_andi_tl(dst
, tmp
, -8);
2459 tcg_gen_neg_tl(tmp
, tmp
);
2461 tcg_gen_deposit_tl(cpu_gsr
, cpu_gsr
, tmp
, 0, 3);
2466 static void gen_faligndata(TCGv dst
, TCGv gsr
, TCGv s1
, TCGv s2
)
2470 t1
= tcg_temp_new();
2471 t2
= tcg_temp_new();
2472 shift
= tcg_temp_new();
2474 tcg_gen_andi_tl(shift
, gsr
, 7);
2475 tcg_gen_shli_tl(shift
, shift
, 3);
2476 tcg_gen_shl_tl(t1
, s1
, shift
);
2478 /* A shift of 64 does not produce 0 in TCG. Divide this into a
2479 shift of (up to 63) followed by a constant shift of 1. */
2480 tcg_gen_xori_tl(shift
, shift
, 63);
2481 tcg_gen_shr_tl(t2
, s2
, shift
);
2482 tcg_gen_shri_tl(t2
, t2
, 1);
2484 tcg_gen_or_tl(dst
, t1
, t2
);
2488 tcg_temp_free(shift
);
2492 #define CHECK_IU_FEATURE(dc, FEATURE) \
2493 if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE)) \
2495 #define CHECK_FPU_FEATURE(dc, FEATURE) \
2496 if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE)) \
2499 /* before an instruction, dc->pc must be static */
2500 static void disas_sparc_insn(DisasContext
* dc
, unsigned int insn
)
2502 unsigned int opc
, rs1
, rs2
, rd
;
2503 TCGv cpu_src1
, cpu_src2
;
2504 TCGv_i32 cpu_src1_32
, cpu_src2_32
, cpu_dst_32
;
2505 TCGv_i64 cpu_src1_64
, cpu_src2_64
, cpu_dst_64
;
2508 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
| CPU_LOG_TB_OP_OPT
))) {
2509 tcg_gen_debug_insn_start(dc
->pc
);
2512 opc
= GET_FIELD(insn
, 0, 1);
2513 rd
= GET_FIELD(insn
, 2, 6);
2516 case 0: /* branches/sethi */
2518 unsigned int xop
= GET_FIELD(insn
, 7, 9);
2521 #ifdef TARGET_SPARC64
2522 case 0x1: /* V9 BPcc */
2526 target
= GET_FIELD_SP(insn
, 0, 18);
2527 target
= sign_extend(target
, 19);
2529 cc
= GET_FIELD_SP(insn
, 20, 21);
2531 do_branch(dc
, target
, insn
, 0);
2533 do_branch(dc
, target
, insn
, 1);
2538 case 0x3: /* V9 BPr */
2540 target
= GET_FIELD_SP(insn
, 0, 13) |
2541 (GET_FIELD_SP(insn
, 20, 21) << 14);
2542 target
= sign_extend(target
, 16);
2544 cpu_src1
= get_src1(dc
, insn
);
2545 do_branch_reg(dc
, target
, insn
, cpu_src1
);
2548 case 0x5: /* V9 FBPcc */
2550 int cc
= GET_FIELD_SP(insn
, 20, 21);
2551 if (gen_trap_ifnofpu(dc
)) {
2554 target
= GET_FIELD_SP(insn
, 0, 18);
2555 target
= sign_extend(target
, 19);
2557 do_fbranch(dc
, target
, insn
, cc
);
2561 case 0x7: /* CBN+x */
2566 case 0x2: /* BN+x */
2568 target
= GET_FIELD(insn
, 10, 31);
2569 target
= sign_extend(target
, 22);
2571 do_branch(dc
, target
, insn
, 0);
2574 case 0x6: /* FBN+x */
2576 if (gen_trap_ifnofpu(dc
)) {
2579 target
= GET_FIELD(insn
, 10, 31);
2580 target
= sign_extend(target
, 22);
2582 do_fbranch(dc
, target
, insn
, 0);
2585 case 0x4: /* SETHI */
2586 /* Special-case %g0 because that's the canonical nop. */
2588 uint32_t value
= GET_FIELD(insn
, 10, 31);
2589 TCGv t
= gen_dest_gpr(dc
, rd
);
2590 tcg_gen_movi_tl(t
, value
<< 10);
2591 gen_store_gpr(dc
, rd
, t
);
2594 case 0x0: /* UNIMPL */
2603 target_long target
= GET_FIELDs(insn
, 2, 31) << 2;
2604 TCGv o7
= gen_dest_gpr(dc
, 15);
2606 tcg_gen_movi_tl(o7
, dc
->pc
);
2607 gen_store_gpr(dc
, 15, o7
);
2610 #ifdef TARGET_SPARC64
2611 if (unlikely(AM_CHECK(dc
))) {
2612 target
&= 0xffffffffULL
;
2618 case 2: /* FPU & Logical Operations */
2620 unsigned int xop
= GET_FIELD(insn
, 7, 12);
2621 TCGv cpu_dst
= get_temp_tl(dc
);
2624 if (xop
== 0x3a) { /* generate trap */
2625 int cond
= GET_FIELD(insn
, 3, 6);
2637 /* Conditional trap. */
2639 #ifdef TARGET_SPARC64
2641 int cc
= GET_FIELD_SP(insn
, 11, 12);
2643 gen_compare(&cmp
, 0, cond
, dc
);
2644 } else if (cc
== 2) {
2645 gen_compare(&cmp
, 1, cond
, dc
);
2650 gen_compare(&cmp
, 0, cond
, dc
);
2652 l1
= gen_new_label();
2653 tcg_gen_brcond_tl(tcg_invert_cond(cmp
.cond
),
2654 cmp
.c1
, cmp
.c2
, l1
);
2658 mask
= ((dc
->def
->features
& CPU_FEATURE_HYPV
) && supervisor(dc
)
2659 ? UA2005_HTRAP_MASK
: V8_TRAP_MASK
);
2661 /* Don't use the normal temporaries, as they may well have
2662 gone out of scope with the branch above. While we're
2663 doing that we might as well pre-truncate to 32-bit. */
2664 trap
= tcg_temp_new_i32();
2666 rs1
= GET_FIELD_SP(insn
, 14, 18);
2668 rs2
= GET_FIELD_SP(insn
, 0, 6);
2670 tcg_gen_movi_i32(trap
, (rs2
& mask
) + TT_TRAP
);
2671 /* Signal that the trap value is fully constant. */
2674 TCGv t1
= gen_load_gpr(dc
, rs1
);
2675 tcg_gen_trunc_tl_i32(trap
, t1
);
2676 tcg_gen_addi_i32(trap
, trap
, rs2
);
2680 rs2
= GET_FIELD_SP(insn
, 0, 4);
2681 t1
= gen_load_gpr(dc
, rs1
);
2682 t2
= gen_load_gpr(dc
, rs2
);
2683 tcg_gen_add_tl(t1
, t1
, t2
);
2684 tcg_gen_trunc_tl_i32(trap
, t1
);
2687 tcg_gen_andi_i32(trap
, trap
, mask
);
2688 tcg_gen_addi_i32(trap
, trap
, TT_TRAP
);
2691 gen_helper_raise_exception(cpu_env
, trap
);
2692 tcg_temp_free_i32(trap
);
2695 /* An unconditional trap ends the TB. */
2699 /* A conditional trap falls through to the next insn. */
2703 } else if (xop
== 0x28) {
2704 rs1
= GET_FIELD(insn
, 13, 17);
2707 #ifndef TARGET_SPARC64
2708 case 0x01 ... 0x0e: /* undefined in the SPARCv8
2709 manual, rdy on the microSPARC
2711 case 0x0f: /* stbar in the SPARCv8 manual,
2712 rdy on the microSPARC II */
2713 case 0x10 ... 0x1f: /* implementation-dependent in the
2714 SPARCv8 manual, rdy on the
2717 if (rs1
== 0x11 && dc
->def
->features
& CPU_FEATURE_ASR17
) {
2718 TCGv t
= gen_dest_gpr(dc
, rd
);
2719 /* Read Asr17 for a Leon3 monoprocessor */
2720 tcg_gen_movi_tl(t
, (1 << 8) | (dc
->def
->nwindows
- 1));
2721 gen_store_gpr(dc
, rd
, t
);
2725 gen_store_gpr(dc
, rd
, cpu_y
);
2727 #ifdef TARGET_SPARC64
2728 case 0x2: /* V9 rdccr */
2730 gen_helper_rdccr(cpu_dst
, cpu_env
);
2731 gen_store_gpr(dc
, rd
, cpu_dst
);
2733 case 0x3: /* V9 rdasi */
2734 tcg_gen_ext_i32_tl(cpu_dst
, cpu_asi
);
2735 gen_store_gpr(dc
, rd
, cpu_dst
);
2737 case 0x4: /* V9 rdtick */
2741 r_tickptr
= tcg_temp_new_ptr();
2742 tcg_gen_ld_ptr(r_tickptr
, cpu_env
,
2743 offsetof(CPUSPARCState
, tick
));
2744 gen_helper_tick_get_count(cpu_dst
, r_tickptr
);
2745 tcg_temp_free_ptr(r_tickptr
);
2746 gen_store_gpr(dc
, rd
, cpu_dst
);
2749 case 0x5: /* V9 rdpc */
2751 TCGv t
= gen_dest_gpr(dc
, rd
);
2752 if (unlikely(AM_CHECK(dc
))) {
2753 tcg_gen_movi_tl(t
, dc
->pc
& 0xffffffffULL
);
2755 tcg_gen_movi_tl(t
, dc
->pc
);
2757 gen_store_gpr(dc
, rd
, t
);
2760 case 0x6: /* V9 rdfprs */
2761 tcg_gen_ext_i32_tl(cpu_dst
, cpu_fprs
);
2762 gen_store_gpr(dc
, rd
, cpu_dst
);
2764 case 0xf: /* V9 membar */
2765 break; /* no effect */
2766 case 0x13: /* Graphics Status */
2767 if (gen_trap_ifnofpu(dc
)) {
2770 gen_store_gpr(dc
, rd
, cpu_gsr
);
2772 case 0x16: /* Softint */
2773 tcg_gen_ext_i32_tl(cpu_dst
, cpu_softint
);
2774 gen_store_gpr(dc
, rd
, cpu_dst
);
2776 case 0x17: /* Tick compare */
2777 gen_store_gpr(dc
, rd
, cpu_tick_cmpr
);
2779 case 0x18: /* System tick */
2783 r_tickptr
= tcg_temp_new_ptr();
2784 tcg_gen_ld_ptr(r_tickptr
, cpu_env
,
2785 offsetof(CPUSPARCState
, stick
));
2786 gen_helper_tick_get_count(cpu_dst
, r_tickptr
);
2787 tcg_temp_free_ptr(r_tickptr
);
2788 gen_store_gpr(dc
, rd
, cpu_dst
);
2791 case 0x19: /* System tick compare */
2792 gen_store_gpr(dc
, rd
, cpu_stick_cmpr
);
2794 case 0x10: /* Performance Control */
2795 case 0x11: /* Performance Instrumentation Counter */
2796 case 0x12: /* Dispatch Control */
2797 case 0x14: /* Softint set, WO */
2798 case 0x15: /* Softint clear, WO */
2803 #if !defined(CONFIG_USER_ONLY)
2804 } else if (xop
== 0x29) { /* rdpsr / UA2005 rdhpr */
2805 #ifndef TARGET_SPARC64
2806 if (!supervisor(dc
)) {
2810 gen_helper_rdpsr(cpu_dst
, cpu_env
);
2812 CHECK_IU_FEATURE(dc
, HYPV
);
2813 if (!hypervisor(dc
))
2815 rs1
= GET_FIELD(insn
, 13, 17);
2818 // gen_op_rdhpstate();
2821 // gen_op_rdhtstate();
2824 tcg_gen_mov_tl(cpu_dst
, cpu_hintp
);
2827 tcg_gen_mov_tl(cpu_dst
, cpu_htba
);
2830 tcg_gen_mov_tl(cpu_dst
, cpu_hver
);
2832 case 31: // hstick_cmpr
2833 tcg_gen_mov_tl(cpu_dst
, cpu_hstick_cmpr
);
2839 gen_store_gpr(dc
, rd
, cpu_dst
);
2841 } else if (xop
== 0x2a) { /* rdwim / V9 rdpr */
2842 if (!supervisor(dc
)) {
2845 cpu_tmp0
= get_temp_tl(dc
);
2846 #ifdef TARGET_SPARC64
2847 rs1
= GET_FIELD(insn
, 13, 17);
2853 r_tsptr
= tcg_temp_new_ptr();
2854 gen_load_trap_state_at_tl(r_tsptr
, cpu_env
);
2855 tcg_gen_ld_tl(cpu_tmp0
, r_tsptr
,
2856 offsetof(trap_state
, tpc
));
2857 tcg_temp_free_ptr(r_tsptr
);
2864 r_tsptr
= tcg_temp_new_ptr();
2865 gen_load_trap_state_at_tl(r_tsptr
, cpu_env
);
2866 tcg_gen_ld_tl(cpu_tmp0
, r_tsptr
,
2867 offsetof(trap_state
, tnpc
));
2868 tcg_temp_free_ptr(r_tsptr
);
2875 r_tsptr
= tcg_temp_new_ptr();
2876 gen_load_trap_state_at_tl(r_tsptr
, cpu_env
);
2877 tcg_gen_ld_tl(cpu_tmp0
, r_tsptr
,
2878 offsetof(trap_state
, tstate
));
2879 tcg_temp_free_ptr(r_tsptr
);
2884 TCGv_ptr r_tsptr
= tcg_temp_new_ptr();
2886 gen_load_trap_state_at_tl(r_tsptr
, cpu_env
);
2887 tcg_gen_ld32s_tl(cpu_tmp0
, r_tsptr
,
2888 offsetof(trap_state
, tt
));
2889 tcg_temp_free_ptr(r_tsptr
);
2896 r_tickptr
= tcg_temp_new_ptr();
2897 tcg_gen_ld_ptr(r_tickptr
, cpu_env
,
2898 offsetof(CPUSPARCState
, tick
));
2899 gen_helper_tick_get_count(cpu_tmp0
, r_tickptr
);
2900 tcg_temp_free_ptr(r_tickptr
);
2904 tcg_gen_mov_tl(cpu_tmp0
, cpu_tbr
);
2907 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2908 offsetof(CPUSPARCState
, pstate
));
2911 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2912 offsetof(CPUSPARCState
, tl
));
2915 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2916 offsetof(CPUSPARCState
, psrpil
));
2919 gen_helper_rdcwp(cpu_tmp0
, cpu_env
);
2922 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2923 offsetof(CPUSPARCState
, cansave
));
2925 case 11: // canrestore
2926 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2927 offsetof(CPUSPARCState
, canrestore
));
2929 case 12: // cleanwin
2930 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2931 offsetof(CPUSPARCState
, cleanwin
));
2933 case 13: // otherwin
2934 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2935 offsetof(CPUSPARCState
, otherwin
));
2938 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2939 offsetof(CPUSPARCState
, wstate
));
2941 case 16: // UA2005 gl
2942 CHECK_IU_FEATURE(dc
, GL
);
2943 tcg_gen_ld32s_tl(cpu_tmp0
, cpu_env
,
2944 offsetof(CPUSPARCState
, gl
));
2946 case 26: // UA2005 strand status
2947 CHECK_IU_FEATURE(dc
, HYPV
);
2948 if (!hypervisor(dc
))
2950 tcg_gen_mov_tl(cpu_tmp0
, cpu_ssr
);
2953 tcg_gen_mov_tl(cpu_tmp0
, cpu_ver
);
2960 tcg_gen_ext_i32_tl(cpu_tmp0
, cpu_wim
);
2962 gen_store_gpr(dc
, rd
, cpu_tmp0
);
2964 } else if (xop
== 0x2b) { /* rdtbr / V9 flushw */
2965 #ifdef TARGET_SPARC64
2967 gen_helper_flushw(cpu_env
);
2969 if (!supervisor(dc
))
2971 gen_store_gpr(dc
, rd
, cpu_tbr
);
2975 } else if (xop
== 0x34) { /* FPU Operations */
2976 if (gen_trap_ifnofpu(dc
)) {
2979 gen_op_clear_ieee_excp_and_FTT();
2980 rs1
= GET_FIELD(insn
, 13, 17);
2981 rs2
= GET_FIELD(insn
, 27, 31);
2982 xop
= GET_FIELD(insn
, 18, 26);
2985 case 0x1: /* fmovs */
2986 cpu_src1_32
= gen_load_fpr_F(dc
, rs2
);
2987 gen_store_fpr_F(dc
, rd
, cpu_src1_32
);
2989 case 0x5: /* fnegs */
2990 gen_ne_fop_FF(dc
, rd
, rs2
, gen_helper_fnegs
);
2992 case 0x9: /* fabss */
2993 gen_ne_fop_FF(dc
, rd
, rs2
, gen_helper_fabss
);
2995 case 0x29: /* fsqrts */
2996 CHECK_FPU_FEATURE(dc
, FSQRT
);
2997 gen_fop_FF(dc
, rd
, rs2
, gen_helper_fsqrts
);
2999 case 0x2a: /* fsqrtd */
3000 CHECK_FPU_FEATURE(dc
, FSQRT
);
3001 gen_fop_DD(dc
, rd
, rs2
, gen_helper_fsqrtd
);
3003 case 0x2b: /* fsqrtq */
3004 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3005 gen_fop_QQ(dc
, rd
, rs2
, gen_helper_fsqrtq
);
3007 case 0x41: /* fadds */
3008 gen_fop_FFF(dc
, rd
, rs1
, rs2
, gen_helper_fadds
);
3010 case 0x42: /* faddd */
3011 gen_fop_DDD(dc
, rd
, rs1
, rs2
, gen_helper_faddd
);
3013 case 0x43: /* faddq */
3014 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3015 gen_fop_QQQ(dc
, rd
, rs1
, rs2
, gen_helper_faddq
);
3017 case 0x45: /* fsubs */
3018 gen_fop_FFF(dc
, rd
, rs1
, rs2
, gen_helper_fsubs
);
3020 case 0x46: /* fsubd */
3021 gen_fop_DDD(dc
, rd
, rs1
, rs2
, gen_helper_fsubd
);
3023 case 0x47: /* fsubq */
3024 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3025 gen_fop_QQQ(dc
, rd
, rs1
, rs2
, gen_helper_fsubq
);
3027 case 0x49: /* fmuls */
3028 CHECK_FPU_FEATURE(dc
, FMUL
);
3029 gen_fop_FFF(dc
, rd
, rs1
, rs2
, gen_helper_fmuls
);
3031 case 0x4a: /* fmuld */
3032 CHECK_FPU_FEATURE(dc
, FMUL
);
3033 gen_fop_DDD(dc
, rd
, rs1
, rs2
, gen_helper_fmuld
);
3035 case 0x4b: /* fmulq */
3036 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3037 CHECK_FPU_FEATURE(dc
, FMUL
);
3038 gen_fop_QQQ(dc
, rd
, rs1
, rs2
, gen_helper_fmulq
);
3040 case 0x4d: /* fdivs */
3041 gen_fop_FFF(dc
, rd
, rs1
, rs2
, gen_helper_fdivs
);
3043 case 0x4e: /* fdivd */
3044 gen_fop_DDD(dc
, rd
, rs1
, rs2
, gen_helper_fdivd
);
3046 case 0x4f: /* fdivq */
3047 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3048 gen_fop_QQQ(dc
, rd
, rs1
, rs2
, gen_helper_fdivq
);
3050 case 0x69: /* fsmuld */
3051 CHECK_FPU_FEATURE(dc
, FSMULD
);
3052 gen_fop_DFF(dc
, rd
, rs1
, rs2
, gen_helper_fsmuld
);
3054 case 0x6e: /* fdmulq */
3055 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3056 gen_fop_QDD(dc
, rd
, rs1
, rs2
, gen_helper_fdmulq
);
3058 case 0xc4: /* fitos */
3059 gen_fop_FF(dc
, rd
, rs2
, gen_helper_fitos
);
3061 case 0xc6: /* fdtos */
3062 gen_fop_FD(dc
, rd
, rs2
, gen_helper_fdtos
);
3064 case 0xc7: /* fqtos */
3065 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3066 gen_fop_FQ(dc
, rd
, rs2
, gen_helper_fqtos
);
3068 case 0xc8: /* fitod */
3069 gen_ne_fop_DF(dc
, rd
, rs2
, gen_helper_fitod
);
3071 case 0xc9: /* fstod */
3072 gen_ne_fop_DF(dc
, rd
, rs2
, gen_helper_fstod
);
3074 case 0xcb: /* fqtod */
3075 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3076 gen_fop_DQ(dc
, rd
, rs2
, gen_helper_fqtod
);
3078 case 0xcc: /* fitoq */
3079 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3080 gen_ne_fop_QF(dc
, rd
, rs2
, gen_helper_fitoq
);
3082 case 0xcd: /* fstoq */
3083 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3084 gen_ne_fop_QF(dc
, rd
, rs2
, gen_helper_fstoq
);
3086 case 0xce: /* fdtoq */
3087 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3088 gen_ne_fop_QD(dc
, rd
, rs2
, gen_helper_fdtoq
);
3090 case 0xd1: /* fstoi */
3091 gen_fop_FF(dc
, rd
, rs2
, gen_helper_fstoi
);
3093 case 0xd2: /* fdtoi */
3094 gen_fop_FD(dc
, rd
, rs2
, gen_helper_fdtoi
);
3096 case 0xd3: /* fqtoi */
3097 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3098 gen_fop_FQ(dc
, rd
, rs2
, gen_helper_fqtoi
);
3100 #ifdef TARGET_SPARC64
3101 case 0x2: /* V9 fmovd */
3102 cpu_src1_64
= gen_load_fpr_D(dc
, rs2
);
3103 gen_store_fpr_D(dc
, rd
, cpu_src1_64
);
3105 case 0x3: /* V9 fmovq */
3106 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3107 gen_move_Q(rd
, rs2
);
3109 case 0x6: /* V9 fnegd */
3110 gen_ne_fop_DD(dc
, rd
, rs2
, gen_helper_fnegd
);
3112 case 0x7: /* V9 fnegq */
3113 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3114 gen_ne_fop_QQ(dc
, rd
, rs2
, gen_helper_fnegq
);
3116 case 0xa: /* V9 fabsd */
3117 gen_ne_fop_DD(dc
, rd
, rs2
, gen_helper_fabsd
);
3119 case 0xb: /* V9 fabsq */
3120 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3121 gen_ne_fop_QQ(dc
, rd
, rs2
, gen_helper_fabsq
);
3123 case 0x81: /* V9 fstox */
3124 gen_fop_DF(dc
, rd
, rs2
, gen_helper_fstox
);
3126 case 0x82: /* V9 fdtox */
3127 gen_fop_DD(dc
, rd
, rs2
, gen_helper_fdtox
);
3129 case 0x83: /* V9 fqtox */
3130 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3131 gen_fop_DQ(dc
, rd
, rs2
, gen_helper_fqtox
);
3133 case 0x84: /* V9 fxtos */
3134 gen_fop_FD(dc
, rd
, rs2
, gen_helper_fxtos
);
3136 case 0x88: /* V9 fxtod */
3137 gen_fop_DD(dc
, rd
, rs2
, gen_helper_fxtod
);
3139 case 0x8c: /* V9 fxtoq */
3140 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3141 gen_ne_fop_QD(dc
, rd
, rs2
, gen_helper_fxtoq
);
3147 } else if (xop
== 0x35) { /* FPU Operations */
3148 #ifdef TARGET_SPARC64
3151 if (gen_trap_ifnofpu(dc
)) {
3154 gen_op_clear_ieee_excp_and_FTT();
3155 rs1
= GET_FIELD(insn
, 13, 17);
3156 rs2
= GET_FIELD(insn
, 27, 31);
3157 xop
= GET_FIELD(insn
, 18, 26);
3160 #ifdef TARGET_SPARC64
3164 cond = GET_FIELD_SP(insn, 10, 12); \
3165 cpu_src1 = get_src1(dc, insn); \
3166 gen_compare_reg(&cmp, cond, cpu_src1); \
3167 gen_fmov##sz(dc, &cmp, rd, rs2); \
3168 free_compare(&cmp); \
3171 if ((xop
& 0x11f) == 0x005) { /* V9 fmovsr */
3174 } else if ((xop
& 0x11f) == 0x006) { // V9 fmovdr
3177 } else if ((xop
& 0x11f) == 0x007) { // V9 fmovqr
3178 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3185 #ifdef TARGET_SPARC64
3186 #define FMOVCC(fcc, sz) \
3189 cond = GET_FIELD_SP(insn, 14, 17); \
3190 gen_fcompare(&cmp, fcc, cond); \
3191 gen_fmov##sz(dc, &cmp, rd, rs2); \
3192 free_compare(&cmp); \
3195 case 0x001: /* V9 fmovscc %fcc0 */
3198 case 0x002: /* V9 fmovdcc %fcc0 */
3201 case 0x003: /* V9 fmovqcc %fcc0 */
3202 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3205 case 0x041: /* V9 fmovscc %fcc1 */
3208 case 0x042: /* V9 fmovdcc %fcc1 */
3211 case 0x043: /* V9 fmovqcc %fcc1 */
3212 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3215 case 0x081: /* V9 fmovscc %fcc2 */
3218 case 0x082: /* V9 fmovdcc %fcc2 */
3221 case 0x083: /* V9 fmovqcc %fcc2 */
3222 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3225 case 0x0c1: /* V9 fmovscc %fcc3 */
3228 case 0x0c2: /* V9 fmovdcc %fcc3 */
3231 case 0x0c3: /* V9 fmovqcc %fcc3 */
3232 CHECK_FPU_FEATURE(dc
, FLOAT128
);
3236 #define FMOVCC(xcc, sz) \
3239 cond = GET_FIELD_SP(insn, 14, 17); \