target-mips: optimize gen_muldiv()
[qemu/qemu-JZ.git] / target-sparc / translate.c
blobd2188a040ee53186f915c5767a50ef8c620b4f32
1 /*
2 SPARC translation
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, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <stdarg.h>
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <inttypes.h>
28 #include "cpu.h"
29 #include "exec-all.h"
30 #include "disas.h"
31 #include "helper.h"
32 #include "tcg-op.h"
34 #define DEBUG_DISAS
36 #define DYNAMIC_PC 1 /* dynamic pc value */
37 #define JUMP_PC 2 /* dynamic pc value which takes only two values
38 according to jump_pc[T2] */
40 /* global register indexes */
41 static TCGv cpu_env, cpu_regwptr;
42 static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst;
43 static TCGv cpu_psr, cpu_fsr, cpu_pc, cpu_npc, cpu_gregs[8];
44 static TCGv cpu_y;
45 #ifndef CONFIG_USER_ONLY
46 static TCGv cpu_tbr;
47 #endif
48 static TCGv cpu_cond, cpu_src1, cpu_src2, cpu_dst, cpu_addr, cpu_val;
49 #ifdef TARGET_SPARC64
50 static TCGv cpu_xcc, cpu_asi, cpu_fprs, cpu_gsr;
51 static TCGv cpu_tick_cmpr, cpu_stick_cmpr, cpu_hstick_cmpr;
52 static TCGv cpu_hintp, cpu_htba, cpu_hver, cpu_ssr, cpu_ver, cpu_softint;
53 #else
54 static TCGv cpu_wim;
55 #endif
56 /* local register indexes (only used inside old micro ops) */
57 static TCGv cpu_tmp0, cpu_tmp32, cpu_tmp64;
58 /* Floating point registers */
59 static TCGv cpu_fpr[TARGET_FPREGS];
61 #include "gen-icount.h"
63 typedef struct DisasContext {
64 target_ulong pc; /* current Program Counter: integer or DYNAMIC_PC */
65 target_ulong npc; /* next PC: integer or DYNAMIC_PC or JUMP_PC */
66 target_ulong jump_pc[2]; /* used when JUMP_PC pc value is used */
67 int is_br;
68 int mem_idx;
69 int fpu_enabled;
70 int address_mask_32bit;
71 struct TranslationBlock *tb;
72 sparc_def_t *def;
73 } DisasContext;
75 // This function uses non-native bit order
76 #define GET_FIELD(X, FROM, TO) \
77 ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
79 // This function uses the order in the manuals, i.e. bit 0 is 2^0
80 #define GET_FIELD_SP(X, FROM, TO) \
81 GET_FIELD(X, 31 - (TO), 31 - (FROM))
83 #define GET_FIELDs(x,a,b) sign_extend (GET_FIELD(x,a,b), (b) - (a) + 1)
84 #define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
86 #ifdef TARGET_SPARC64
87 #define FFPREG(r) (r)
88 #define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
89 #define QFPREG(r) (((r & 1) << 5) | (r & 0x1c))
90 #else
91 #define FFPREG(r) (r)
92 #define DFPREG(r) (r & 0x1e)
93 #define QFPREG(r) (r & 0x1c)
94 #endif
96 #define UA2005_HTRAP_MASK 0xff
97 #define V8_TRAP_MASK 0x7f
99 static int sign_extend(int x, int len)
101 len = 32 - len;
102 return (x << len) >> len;
105 #define IS_IMM (insn & (1<<13))
107 /* floating point registers moves */
108 static void gen_op_load_fpr_DT0(unsigned int src)
110 tcg_gen_st_i32(cpu_fpr[src], cpu_env, offsetof(CPUSPARCState, dt0) +
111 offsetof(CPU_DoubleU, l.upper));
112 tcg_gen_st_i32(cpu_fpr[src + 1], cpu_env, offsetof(CPUSPARCState, dt0) +
113 offsetof(CPU_DoubleU, l.lower));
116 static void gen_op_load_fpr_DT1(unsigned int src)
118 tcg_gen_st_i32(cpu_fpr[src], cpu_env, offsetof(CPUSPARCState, dt1) +
119 offsetof(CPU_DoubleU, l.upper));
120 tcg_gen_st_i32(cpu_fpr[src + 1], cpu_env, offsetof(CPUSPARCState, dt1) +
121 offsetof(CPU_DoubleU, l.lower));
124 static void gen_op_store_DT0_fpr(unsigned int dst)
126 tcg_gen_ld_i32(cpu_fpr[dst], cpu_env, offsetof(CPUSPARCState, dt0) +
127 offsetof(CPU_DoubleU, l.upper));
128 tcg_gen_ld_i32(cpu_fpr[dst + 1], cpu_env, offsetof(CPUSPARCState, dt0) +
129 offsetof(CPU_DoubleU, l.lower));
132 static void gen_op_load_fpr_QT0(unsigned int src)
134 tcg_gen_st_i32(cpu_fpr[src], cpu_env, offsetof(CPUSPARCState, qt0) +
135 offsetof(CPU_QuadU, l.upmost));
136 tcg_gen_st_i32(cpu_fpr[src + 1], cpu_env, offsetof(CPUSPARCState, qt0) +
137 offsetof(CPU_QuadU, l.upper));
138 tcg_gen_st_i32(cpu_fpr[src + 2], cpu_env, offsetof(CPUSPARCState, qt0) +
139 offsetof(CPU_QuadU, l.lower));
140 tcg_gen_st_i32(cpu_fpr[src + 3], cpu_env, offsetof(CPUSPARCState, qt0) +
141 offsetof(CPU_QuadU, l.lowest));
144 static void gen_op_load_fpr_QT1(unsigned int src)
146 tcg_gen_st_i32(cpu_fpr[src], cpu_env, offsetof(CPUSPARCState, qt1) +
147 offsetof(CPU_QuadU, l.upmost));
148 tcg_gen_st_i32(cpu_fpr[src + 1], cpu_env, offsetof(CPUSPARCState, qt1) +
149 offsetof(CPU_QuadU, l.upper));
150 tcg_gen_st_i32(cpu_fpr[src + 2], cpu_env, offsetof(CPUSPARCState, qt1) +
151 offsetof(CPU_QuadU, l.lower));
152 tcg_gen_st_i32(cpu_fpr[src + 3], cpu_env, offsetof(CPUSPARCState, qt1) +
153 offsetof(CPU_QuadU, l.lowest));
156 static void gen_op_store_QT0_fpr(unsigned int dst)
158 tcg_gen_ld_i32(cpu_fpr[dst], cpu_env, offsetof(CPUSPARCState, qt0) +
159 offsetof(CPU_QuadU, l.upmost));
160 tcg_gen_ld_i32(cpu_fpr[dst + 1], cpu_env, offsetof(CPUSPARCState, qt0) +
161 offsetof(CPU_QuadU, l.upper));
162 tcg_gen_ld_i32(cpu_fpr[dst + 2], cpu_env, offsetof(CPUSPARCState, qt0) +
163 offsetof(CPU_QuadU, l.lower));
164 tcg_gen_ld_i32(cpu_fpr[dst + 3], cpu_env, offsetof(CPUSPARCState, qt0) +
165 offsetof(CPU_QuadU, l.lowest));
168 /* moves */
169 #ifdef CONFIG_USER_ONLY
170 #define supervisor(dc) 0
171 #ifdef TARGET_SPARC64
172 #define hypervisor(dc) 0
173 #endif
174 #else
175 #define supervisor(dc) (dc->mem_idx >= 1)
176 #ifdef TARGET_SPARC64
177 #define hypervisor(dc) (dc->mem_idx == 2)
178 #else
179 #endif
180 #endif
182 #ifdef TARGET_SPARC64
183 #ifndef TARGET_ABI32
184 #define AM_CHECK(dc) ((dc)->address_mask_32bit)
185 #else
186 #define AM_CHECK(dc) (1)
187 #endif
188 #endif
190 static inline void gen_address_mask(DisasContext *dc, TCGv addr)
192 #ifdef TARGET_SPARC64
193 if (AM_CHECK(dc))
194 tcg_gen_andi_tl(addr, addr, 0xffffffffULL);
195 #endif
198 static inline void gen_movl_reg_TN(int reg, TCGv tn)
200 if (reg == 0)
201 tcg_gen_movi_tl(tn, 0);
202 else if (reg < 8)
203 tcg_gen_mov_tl(tn, cpu_gregs[reg]);
204 else {
205 tcg_gen_ld_tl(tn, cpu_regwptr, (reg - 8) * sizeof(target_ulong));
209 static inline void gen_movl_TN_reg(int reg, TCGv tn)
211 if (reg == 0)
212 return;
213 else if (reg < 8)
214 tcg_gen_mov_tl(cpu_gregs[reg], tn);
215 else {
216 tcg_gen_st_tl(tn, cpu_regwptr, (reg - 8) * sizeof(target_ulong));
220 static inline void gen_goto_tb(DisasContext *s, int tb_num,
221 target_ulong pc, target_ulong npc)
223 TranslationBlock *tb;
225 tb = s->tb;
226 if ((pc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK) &&
227 (npc & TARGET_PAGE_MASK) == (tb->pc & TARGET_PAGE_MASK)) {
228 /* jump to same page: we can use a direct jump */
229 tcg_gen_goto_tb(tb_num);
230 tcg_gen_movi_tl(cpu_pc, pc);
231 tcg_gen_movi_tl(cpu_npc, npc);
232 tcg_gen_exit_tb((long)tb + tb_num);
233 } else {
234 /* jump to another page: currently not optimized */
235 tcg_gen_movi_tl(cpu_pc, pc);
236 tcg_gen_movi_tl(cpu_npc, npc);
237 tcg_gen_exit_tb(0);
241 // XXX suboptimal
242 static inline void gen_mov_reg_N(TCGv reg, TCGv src)
244 tcg_gen_extu_i32_tl(reg, src);
245 tcg_gen_shri_tl(reg, reg, PSR_NEG_SHIFT);
246 tcg_gen_andi_tl(reg, reg, 0x1);
249 static inline void gen_mov_reg_Z(TCGv reg, TCGv src)
251 tcg_gen_extu_i32_tl(reg, src);
252 tcg_gen_shri_tl(reg, reg, PSR_ZERO_SHIFT);
253 tcg_gen_andi_tl(reg, reg, 0x1);
256 static inline void gen_mov_reg_V(TCGv reg, TCGv src)
258 tcg_gen_extu_i32_tl(reg, src);
259 tcg_gen_shri_tl(reg, reg, PSR_OVF_SHIFT);
260 tcg_gen_andi_tl(reg, reg, 0x1);
263 static inline void gen_mov_reg_C(TCGv reg, TCGv src)
265 tcg_gen_extu_i32_tl(reg, src);
266 tcg_gen_shri_tl(reg, reg, PSR_CARRY_SHIFT);
267 tcg_gen_andi_tl(reg, reg, 0x1);
270 static inline void gen_cc_clear_icc(void)
272 tcg_gen_movi_i32(cpu_psr, 0);
275 #ifdef TARGET_SPARC64
276 static inline void gen_cc_clear_xcc(void)
278 tcg_gen_movi_i32(cpu_xcc, 0);
280 #endif
282 /* old op:
283 if (!T0)
284 env->psr |= PSR_ZERO;
285 if ((int32_t) T0 < 0)
286 env->psr |= PSR_NEG;
288 static inline void gen_cc_NZ_icc(TCGv dst)
290 TCGv r_temp;
291 int l1, l2;
293 l1 = gen_new_label();
294 l2 = gen_new_label();
295 r_temp = tcg_temp_new(TCG_TYPE_TL);
296 tcg_gen_andi_tl(r_temp, dst, 0xffffffffULL);
297 tcg_gen_brcondi_tl(TCG_COND_NE, r_temp, 0, l1);
298 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_ZERO);
299 gen_set_label(l1);
300 tcg_gen_ext32s_tl(r_temp, dst);
301 tcg_gen_brcondi_tl(TCG_COND_GE, r_temp, 0, l2);
302 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_NEG);
303 gen_set_label(l2);
304 tcg_temp_free(r_temp);
307 #ifdef TARGET_SPARC64
308 static inline void gen_cc_NZ_xcc(TCGv dst)
310 int l1, l2;
312 l1 = gen_new_label();
313 l2 = gen_new_label();
314 tcg_gen_brcondi_tl(TCG_COND_NE, dst, 0, l1);
315 tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_ZERO);
316 gen_set_label(l1);
317 tcg_gen_brcondi_tl(TCG_COND_GE, dst, 0, l2);
318 tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_NEG);
319 gen_set_label(l2);
321 #endif
323 /* old op:
324 if (T0 < src1)
325 env->psr |= PSR_CARRY;
327 static inline void gen_cc_C_add_icc(TCGv dst, TCGv src1)
329 TCGv r_temp1, r_temp2;
330 int l1;
332 l1 = gen_new_label();
333 r_temp1 = tcg_temp_new(TCG_TYPE_TL);
334 r_temp2 = tcg_temp_new(TCG_TYPE_TL);
335 tcg_gen_andi_tl(r_temp1, dst, 0xffffffffULL);
336 tcg_gen_andi_tl(r_temp2, src1, 0xffffffffULL);
337 tcg_gen_brcond_tl(TCG_COND_GEU, r_temp1, r_temp2, l1);
338 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_CARRY);
339 gen_set_label(l1);
340 tcg_temp_free(r_temp1);
341 tcg_temp_free(r_temp2);
344 #ifdef TARGET_SPARC64
345 static inline void gen_cc_C_add_xcc(TCGv dst, TCGv src1)
347 int l1;
349 l1 = gen_new_label();
350 tcg_gen_brcond_tl(TCG_COND_GEU, dst, src1, l1);
351 tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_CARRY);
352 gen_set_label(l1);
354 #endif
356 /* old op:
357 if (((src1 ^ T1 ^ -1) & (src1 ^ T0)) & (1 << 31))
358 env->psr |= PSR_OVF;
360 static inline void gen_cc_V_add_icc(TCGv dst, TCGv src1, TCGv src2)
362 TCGv r_temp;
364 r_temp = tcg_temp_new(TCG_TYPE_TL);
365 tcg_gen_xor_tl(r_temp, src1, src2);
366 tcg_gen_not_tl(r_temp, r_temp);
367 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
368 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
369 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 31));
370 tcg_gen_shri_tl(r_temp, r_temp, 31 - PSR_OVF_SHIFT);
371 tcg_gen_trunc_tl_i32(cpu_tmp32, r_temp);
372 tcg_temp_free(r_temp);
373 tcg_gen_or_i32(cpu_psr, cpu_psr, cpu_tmp32);
376 #ifdef TARGET_SPARC64
377 static inline void gen_cc_V_add_xcc(TCGv dst, TCGv src1, TCGv src2)
379 TCGv r_temp;
381 r_temp = tcg_temp_new(TCG_TYPE_TL);
382 tcg_gen_xor_tl(r_temp, src1, src2);
383 tcg_gen_not_tl(r_temp, r_temp);
384 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
385 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
386 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
387 tcg_gen_shri_tl(r_temp, r_temp, 63 - PSR_OVF_SHIFT);
388 tcg_gen_trunc_tl_i32(cpu_tmp32, r_temp);
389 tcg_temp_free(r_temp);
390 tcg_gen_or_i32(cpu_xcc, cpu_xcc, cpu_tmp32);
392 #endif
394 static inline void gen_add_tv(TCGv dst, TCGv src1, TCGv src2)
396 TCGv r_temp, r_const;
397 int l1;
399 l1 = gen_new_label();
401 r_temp = tcg_temp_new(TCG_TYPE_TL);
402 tcg_gen_xor_tl(r_temp, src1, src2);
403 tcg_gen_not_tl(r_temp, r_temp);
404 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
405 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
406 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 31));
407 tcg_gen_brcondi_tl(TCG_COND_EQ, r_temp, 0, l1);
408 r_const = tcg_const_i32(TT_TOVF);
409 tcg_gen_helper_0_1(raise_exception, r_const);
410 tcg_temp_free(r_const);
411 gen_set_label(l1);
412 tcg_temp_free(r_temp);
415 static inline void gen_cc_V_tag(TCGv src1, TCGv src2)
417 int l1;
419 l1 = gen_new_label();
420 tcg_gen_or_tl(cpu_tmp0, src1, src2);
421 tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0x3);
422 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_tmp0, 0, l1);
423 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
424 gen_set_label(l1);
427 static inline void gen_tag_tv(TCGv src1, TCGv src2)
429 int l1;
430 TCGv r_const;
432 l1 = gen_new_label();
433 tcg_gen_or_tl(cpu_tmp0, src1, src2);
434 tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0x3);
435 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_tmp0, 0, l1);
436 r_const = tcg_const_i32(TT_TOVF);
437 tcg_gen_helper_0_1(raise_exception, r_const);
438 tcg_temp_free(r_const);
439 gen_set_label(l1);
442 static inline void gen_op_add_cc(TCGv dst, TCGv src1, TCGv src2)
444 tcg_gen_mov_tl(cpu_cc_src, src1);
445 tcg_gen_mov_tl(cpu_cc_src2, src2);
446 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
447 gen_cc_clear_icc();
448 gen_cc_NZ_icc(cpu_cc_dst);
449 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
450 gen_cc_V_add_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
451 #ifdef TARGET_SPARC64
452 gen_cc_clear_xcc();
453 gen_cc_NZ_xcc(cpu_cc_dst);
454 gen_cc_C_add_xcc(cpu_cc_dst, cpu_cc_src);
455 gen_cc_V_add_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
456 #endif
457 tcg_gen_mov_tl(dst, cpu_cc_dst);
460 static inline void gen_op_addx_cc(TCGv dst, TCGv src1, TCGv src2)
462 tcg_gen_mov_tl(cpu_cc_src, src1);
463 tcg_gen_mov_tl(cpu_cc_src2, src2);
464 gen_mov_reg_C(cpu_tmp0, cpu_psr);
465 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_tmp0);
466 gen_cc_clear_icc();
467 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
468 #ifdef TARGET_SPARC64
469 gen_cc_clear_xcc();
470 gen_cc_C_add_xcc(cpu_cc_dst, cpu_cc_src);
471 #endif
472 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_dst, cpu_cc_src2);
473 gen_cc_NZ_icc(cpu_cc_dst);
474 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
475 gen_cc_V_add_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
476 #ifdef TARGET_SPARC64
477 gen_cc_NZ_xcc(cpu_cc_dst);
478 gen_cc_C_add_xcc(cpu_cc_dst, cpu_cc_src);
479 gen_cc_V_add_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
480 #endif
481 tcg_gen_mov_tl(dst, cpu_cc_dst);
484 static inline void gen_op_tadd_cc(TCGv dst, TCGv src1, TCGv src2)
486 tcg_gen_mov_tl(cpu_cc_src, src1);
487 tcg_gen_mov_tl(cpu_cc_src2, src2);
488 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
489 gen_cc_clear_icc();
490 gen_cc_NZ_icc(cpu_cc_dst);
491 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
492 gen_cc_V_add_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
493 gen_cc_V_tag(cpu_cc_src, cpu_cc_src2);
494 #ifdef TARGET_SPARC64
495 gen_cc_clear_xcc();
496 gen_cc_NZ_xcc(cpu_cc_dst);
497 gen_cc_C_add_xcc(cpu_cc_dst, cpu_cc_src);
498 gen_cc_V_add_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
499 #endif
500 tcg_gen_mov_tl(dst, cpu_cc_dst);
503 static inline void gen_op_tadd_ccTV(TCGv dst, TCGv src1, TCGv src2)
505 tcg_gen_mov_tl(cpu_cc_src, src1);
506 tcg_gen_mov_tl(cpu_cc_src2, src2);
507 gen_tag_tv(cpu_cc_src, cpu_cc_src2);
508 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
509 gen_add_tv(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
510 gen_cc_clear_icc();
511 gen_cc_NZ_icc(cpu_cc_dst);
512 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
513 #ifdef TARGET_SPARC64
514 gen_cc_clear_xcc();
515 gen_cc_NZ_xcc(cpu_cc_dst);
516 gen_cc_C_add_xcc(cpu_cc_dst, cpu_cc_src);
517 gen_cc_V_add_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
518 #endif
519 tcg_gen_mov_tl(dst, cpu_cc_dst);
522 /* old op:
523 if (src1 < T1)
524 env->psr |= PSR_CARRY;
526 static inline void gen_cc_C_sub_icc(TCGv src1, TCGv src2)
528 TCGv r_temp1, r_temp2;
529 int l1;
531 l1 = gen_new_label();
532 r_temp1 = tcg_temp_new(TCG_TYPE_TL);
533 r_temp2 = tcg_temp_new(TCG_TYPE_TL);
534 tcg_gen_andi_tl(r_temp1, src1, 0xffffffffULL);
535 tcg_gen_andi_tl(r_temp2, src2, 0xffffffffULL);
536 tcg_gen_brcond_tl(TCG_COND_GEU, r_temp1, r_temp2, l1);
537 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_CARRY);
538 gen_set_label(l1);
539 tcg_temp_free(r_temp1);
540 tcg_temp_free(r_temp2);
543 #ifdef TARGET_SPARC64
544 static inline void gen_cc_C_sub_xcc(TCGv src1, TCGv src2)
546 int l1;
548 l1 = gen_new_label();
549 tcg_gen_brcond_tl(TCG_COND_GEU, src1, src2, l1);
550 tcg_gen_ori_i32(cpu_xcc, cpu_xcc, PSR_CARRY);
551 gen_set_label(l1);
553 #endif
555 /* old op:
556 if (((src1 ^ T1) & (src1 ^ T0)) & (1 << 31))
557 env->psr |= PSR_OVF;
559 static inline void gen_cc_V_sub_icc(TCGv dst, TCGv src1, TCGv src2)
561 TCGv r_temp;
563 r_temp = tcg_temp_new(TCG_TYPE_TL);
564 tcg_gen_xor_tl(r_temp, src1, src2);
565 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
566 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
567 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 31));
568 tcg_gen_shri_tl(r_temp, r_temp, 31 - PSR_OVF_SHIFT);
569 tcg_gen_trunc_tl_i32(cpu_tmp32, r_temp);
570 tcg_gen_or_i32(cpu_psr, cpu_psr, cpu_tmp32);
571 tcg_temp_free(r_temp);
574 #ifdef TARGET_SPARC64
575 static inline void gen_cc_V_sub_xcc(TCGv dst, TCGv src1, TCGv src2)
577 TCGv r_temp;
579 r_temp = tcg_temp_new(TCG_TYPE_TL);
580 tcg_gen_xor_tl(r_temp, src1, src2);
581 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
582 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
583 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 63));
584 tcg_gen_shri_tl(r_temp, r_temp, 63 - PSR_OVF_SHIFT);
585 tcg_gen_trunc_tl_i32(cpu_tmp32, r_temp);
586 tcg_gen_or_i32(cpu_xcc, cpu_xcc, cpu_tmp32);
587 tcg_temp_free(r_temp);
589 #endif
591 static inline void gen_sub_tv(TCGv dst, TCGv src1, TCGv src2)
593 TCGv r_temp, r_const;
594 int l1;
596 l1 = gen_new_label();
598 r_temp = tcg_temp_new(TCG_TYPE_TL);
599 tcg_gen_xor_tl(r_temp, src1, src2);
600 tcg_gen_xor_tl(cpu_tmp0, src1, dst);
601 tcg_gen_and_tl(r_temp, r_temp, cpu_tmp0);
602 tcg_gen_andi_tl(r_temp, r_temp, (1ULL << 31));
603 tcg_gen_brcondi_tl(TCG_COND_EQ, r_temp, 0, l1);
604 r_const = tcg_const_i32(TT_TOVF);
605 tcg_gen_helper_0_1(raise_exception, r_const);
606 tcg_temp_free(r_const);
607 gen_set_label(l1);
608 tcg_temp_free(r_temp);
611 static inline void gen_op_sub_cc(TCGv dst, TCGv src1, TCGv src2)
613 tcg_gen_mov_tl(cpu_cc_src, src1);
614 tcg_gen_mov_tl(cpu_cc_src2, src2);
615 tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
616 gen_cc_clear_icc();
617 gen_cc_NZ_icc(cpu_cc_dst);
618 gen_cc_C_sub_icc(cpu_cc_src, cpu_cc_src2);
619 gen_cc_V_sub_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
620 #ifdef TARGET_SPARC64
621 gen_cc_clear_xcc();
622 gen_cc_NZ_xcc(cpu_cc_dst);
623 gen_cc_C_sub_xcc(cpu_cc_src, cpu_cc_src2);
624 gen_cc_V_sub_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
625 #endif
626 tcg_gen_mov_tl(dst, cpu_cc_dst);
629 static inline void gen_op_subx_cc(TCGv dst, TCGv src1, TCGv src2)
631 tcg_gen_mov_tl(cpu_cc_src, src1);
632 tcg_gen_mov_tl(cpu_cc_src2, src2);
633 gen_mov_reg_C(cpu_tmp0, cpu_psr);
634 tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_src, cpu_tmp0);
635 gen_cc_clear_icc();
636 gen_cc_C_sub_icc(cpu_cc_dst, cpu_cc_src);
637 #ifdef TARGET_SPARC64
638 gen_cc_clear_xcc();
639 gen_cc_C_sub_xcc(cpu_cc_dst, cpu_cc_src);
640 #endif
641 tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_dst, cpu_cc_src2);
642 gen_cc_NZ_icc(cpu_cc_dst);
643 gen_cc_C_sub_icc(cpu_cc_dst, cpu_cc_src);
644 gen_cc_V_sub_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
645 #ifdef TARGET_SPARC64
646 gen_cc_NZ_xcc(cpu_cc_dst);
647 gen_cc_C_sub_xcc(cpu_cc_dst, cpu_cc_src);
648 gen_cc_V_sub_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
649 #endif
650 tcg_gen_mov_tl(dst, cpu_cc_dst);
653 static inline void gen_op_tsub_cc(TCGv dst, TCGv src1, TCGv src2)
655 tcg_gen_mov_tl(cpu_cc_src, src1);
656 tcg_gen_mov_tl(cpu_cc_src2, src2);
657 tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
658 gen_cc_clear_icc();
659 gen_cc_NZ_icc(cpu_cc_dst);
660 gen_cc_C_sub_icc(cpu_cc_src, cpu_cc_src2);
661 gen_cc_V_sub_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
662 gen_cc_V_tag(cpu_cc_src, cpu_cc_src2);
663 #ifdef TARGET_SPARC64
664 gen_cc_clear_xcc();
665 gen_cc_NZ_xcc(cpu_cc_dst);
666 gen_cc_C_sub_xcc(cpu_cc_src, cpu_cc_src2);
667 gen_cc_V_sub_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
668 #endif
669 tcg_gen_mov_tl(dst, cpu_cc_dst);
672 static inline void gen_op_tsub_ccTV(TCGv dst, TCGv src1, TCGv src2)
674 tcg_gen_mov_tl(cpu_cc_src, src1);
675 tcg_gen_mov_tl(cpu_cc_src2, src2);
676 gen_tag_tv(cpu_cc_src, cpu_cc_src2);
677 tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
678 gen_sub_tv(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
679 gen_cc_clear_icc();
680 gen_cc_NZ_icc(cpu_cc_dst);
681 gen_cc_C_sub_icc(cpu_cc_src, cpu_cc_src2);
682 #ifdef TARGET_SPARC64
683 gen_cc_clear_xcc();
684 gen_cc_NZ_xcc(cpu_cc_dst);
685 gen_cc_C_sub_xcc(cpu_cc_src, cpu_cc_src2);
686 gen_cc_V_sub_xcc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
687 #endif
688 tcg_gen_mov_tl(dst, cpu_cc_dst);
691 static inline void gen_op_mulscc(TCGv dst, TCGv src1, TCGv src2)
693 TCGv r_temp;
694 int l1;
696 l1 = gen_new_label();
697 r_temp = tcg_temp_new(TCG_TYPE_TL);
699 /* old op:
700 if (!(env->y & 1))
701 T1 = 0;
703 tcg_gen_andi_tl(cpu_cc_src, src1, 0xffffffff);
704 tcg_gen_andi_tl(r_temp, cpu_y, 0x1);
705 tcg_gen_andi_tl(cpu_cc_src2, src2, 0xffffffff);
706 tcg_gen_brcondi_tl(TCG_COND_NE, r_temp, 0, l1);
707 tcg_gen_movi_tl(cpu_cc_src2, 0);
708 gen_set_label(l1);
710 // b2 = T0 & 1;
711 // env->y = (b2 << 31) | (env->y >> 1);
712 tcg_gen_andi_tl(r_temp, cpu_cc_src, 0x1);
713 tcg_gen_shli_tl(r_temp, r_temp, 31);
714 tcg_gen_shri_tl(cpu_tmp0, cpu_y, 1);
715 tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0x7fffffff);
716 tcg_gen_or_tl(cpu_tmp0, cpu_tmp0, r_temp);
717 tcg_gen_andi_tl(cpu_y, cpu_tmp0, 0xffffffff);
719 // b1 = N ^ V;
720 gen_mov_reg_N(cpu_tmp0, cpu_psr);
721 gen_mov_reg_V(r_temp, cpu_psr);
722 tcg_gen_xor_tl(cpu_tmp0, cpu_tmp0, r_temp);
723 tcg_temp_free(r_temp);
725 // T0 = (b1 << 31) | (T0 >> 1);
726 // src1 = T0;
727 tcg_gen_shli_tl(cpu_tmp0, cpu_tmp0, 31);
728 tcg_gen_shri_tl(cpu_cc_src, cpu_cc_src, 1);
729 tcg_gen_or_tl(cpu_cc_src, cpu_cc_src, cpu_tmp0);
731 /* do addition and update flags */
732 tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
734 gen_cc_clear_icc();
735 gen_cc_NZ_icc(cpu_cc_dst);
736 gen_cc_V_add_icc(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
737 gen_cc_C_add_icc(cpu_cc_dst, cpu_cc_src);
738 tcg_gen_mov_tl(dst, cpu_cc_dst);
741 static inline void gen_op_umul(TCGv dst, TCGv src1, TCGv src2)
743 TCGv r_temp, r_temp2;
745 r_temp = tcg_temp_new(TCG_TYPE_I64);
746 r_temp2 = tcg_temp_new(TCG_TYPE_I64);
748 tcg_gen_extu_tl_i64(r_temp, src2);
749 tcg_gen_extu_tl_i64(r_temp2, src1);
750 tcg_gen_mul_i64(r_temp2, r_temp, r_temp2);
752 tcg_gen_shri_i64(r_temp, r_temp2, 32);
753 tcg_gen_trunc_i64_tl(cpu_tmp0, r_temp);
754 tcg_temp_free(r_temp);
755 tcg_gen_andi_tl(cpu_y, cpu_tmp0, 0xffffffff);
756 #ifdef TARGET_SPARC64
757 tcg_gen_mov_i64(dst, r_temp2);
758 #else
759 tcg_gen_trunc_i64_tl(dst, r_temp2);
760 #endif
761 tcg_temp_free(r_temp2);
764 static inline void gen_op_smul(TCGv dst, TCGv src1, TCGv src2)
766 TCGv r_temp, r_temp2;
768 r_temp = tcg_temp_new(TCG_TYPE_I64);
769 r_temp2 = tcg_temp_new(TCG_TYPE_I64);
771 tcg_gen_ext_tl_i64(r_temp, src2);
772 tcg_gen_ext_tl_i64(r_temp2, src1);
773 tcg_gen_mul_i64(r_temp2, r_temp, r_temp2);
775 tcg_gen_shri_i64(r_temp, r_temp2, 32);
776 tcg_gen_trunc_i64_tl(cpu_tmp0, r_temp);
777 tcg_temp_free(r_temp);
778 tcg_gen_andi_tl(cpu_y, cpu_tmp0, 0xffffffff);
779 #ifdef TARGET_SPARC64
780 tcg_gen_mov_i64(dst, r_temp2);
781 #else
782 tcg_gen_trunc_i64_tl(dst, r_temp2);
783 #endif
784 tcg_temp_free(r_temp2);
787 #ifdef TARGET_SPARC64
788 static inline void gen_trap_ifdivzero_tl(TCGv divisor)
790 TCGv r_const;
791 int l1;
793 l1 = gen_new_label();
794 tcg_gen_brcondi_tl(TCG_COND_NE, divisor, 0, l1);
795 r_const = tcg_const_i32(TT_DIV_ZERO);
796 tcg_gen_helper_0_1(raise_exception, r_const);
797 tcg_temp_free(r_const);
798 gen_set_label(l1);
801 static inline void gen_op_sdivx(TCGv dst, TCGv src1, TCGv src2)
803 int l1, l2;
805 l1 = gen_new_label();
806 l2 = gen_new_label();
807 tcg_gen_mov_tl(cpu_cc_src, src1);
808 tcg_gen_mov_tl(cpu_cc_src2, src2);
809 gen_trap_ifdivzero_tl(cpu_cc_src2);
810 tcg_gen_brcondi_tl(TCG_COND_NE, cpu_cc_src, INT64_MIN, l1);
811 tcg_gen_brcondi_tl(TCG_COND_NE, cpu_cc_src2, -1, l1);
812 tcg_gen_movi_i64(dst, INT64_MIN);
813 tcg_gen_br(l2);
814 gen_set_label(l1);
815 tcg_gen_div_i64(dst, cpu_cc_src, cpu_cc_src2);
816 gen_set_label(l2);
818 #endif
820 static inline void gen_op_div_cc(TCGv dst)
822 int l1;
824 tcg_gen_mov_tl(cpu_cc_dst, dst);
825 gen_cc_clear_icc();
826 gen_cc_NZ_icc(cpu_cc_dst);
827 l1 = gen_new_label();
828 tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_cc_src2, 0, l1);
829 tcg_gen_ori_i32(cpu_psr, cpu_psr, PSR_OVF);
830 gen_set_label(l1);
833 static inline void gen_op_logic_cc(TCGv dst)
835 tcg_gen_mov_tl(cpu_cc_dst, dst);
837 gen_cc_clear_icc();
838 gen_cc_NZ_icc(cpu_cc_dst);
839 #ifdef TARGET_SPARC64
840 gen_cc_clear_xcc();
841 gen_cc_NZ_xcc(cpu_cc_dst);
842 #endif
845 // 1
846 static inline void gen_op_eval_ba(TCGv dst)
848 tcg_gen_movi_tl(dst, 1);
851 // Z
852 static inline void gen_op_eval_be(TCGv dst, TCGv src)
854 gen_mov_reg_Z(dst, src);
857 // Z | (N ^ V)
858 static inline void gen_op_eval_ble(TCGv dst, TCGv src)
860 gen_mov_reg_N(cpu_tmp0, src);
861 gen_mov_reg_V(dst, src);
862 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
863 gen_mov_reg_Z(cpu_tmp0, src);
864 tcg_gen_or_tl(dst, dst, cpu_tmp0);
867 // N ^ V
868 static inline void gen_op_eval_bl(TCGv dst, TCGv src)
870 gen_mov_reg_V(cpu_tmp0, src);
871 gen_mov_reg_N(dst, src);
872 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
875 // C | Z
876 static inline void gen_op_eval_bleu(TCGv dst, TCGv src)
878 gen_mov_reg_Z(cpu_tmp0, src);
879 gen_mov_reg_C(dst, src);
880 tcg_gen_or_tl(dst, dst, cpu_tmp0);
883 // C
884 static inline void gen_op_eval_bcs(TCGv dst, TCGv src)
886 gen_mov_reg_C(dst, src);
889 // V
890 static inline void gen_op_eval_bvs(TCGv dst, TCGv src)
892 gen_mov_reg_V(dst, src);
895 // 0
896 static inline void gen_op_eval_bn(TCGv dst)
898 tcg_gen_movi_tl(dst, 0);
901 // N
902 static inline void gen_op_eval_bneg(TCGv dst, TCGv src)
904 gen_mov_reg_N(dst, src);
907 // !Z
908 static inline void gen_op_eval_bne(TCGv dst, TCGv src)
910 gen_mov_reg_Z(dst, src);
911 tcg_gen_xori_tl(dst, dst, 0x1);
914 // !(Z | (N ^ V))
915 static inline void gen_op_eval_bg(TCGv dst, TCGv src)
917 gen_mov_reg_N(cpu_tmp0, src);
918 gen_mov_reg_V(dst, src);
919 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
920 gen_mov_reg_Z(cpu_tmp0, src);
921 tcg_gen_or_tl(dst, dst, cpu_tmp0);
922 tcg_gen_xori_tl(dst, dst, 0x1);
925 // !(N ^ V)
926 static inline void gen_op_eval_bge(TCGv dst, TCGv src)
928 gen_mov_reg_V(cpu_tmp0, src);
929 gen_mov_reg_N(dst, src);
930 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
931 tcg_gen_xori_tl(dst, dst, 0x1);
934 // !(C | Z)
935 static inline void gen_op_eval_bgu(TCGv dst, TCGv src)
937 gen_mov_reg_Z(cpu_tmp0, src);
938 gen_mov_reg_C(dst, src);
939 tcg_gen_or_tl(dst, dst, cpu_tmp0);
940 tcg_gen_xori_tl(dst, dst, 0x1);
943 // !C
944 static inline void gen_op_eval_bcc(TCGv dst, TCGv src)
946 gen_mov_reg_C(dst, src);
947 tcg_gen_xori_tl(dst, dst, 0x1);
950 // !N
951 static inline void gen_op_eval_bpos(TCGv dst, TCGv src)
953 gen_mov_reg_N(dst, src);
954 tcg_gen_xori_tl(dst, dst, 0x1);
957 // !V
958 static inline void gen_op_eval_bvc(TCGv dst, TCGv src)
960 gen_mov_reg_V(dst, src);
961 tcg_gen_xori_tl(dst, dst, 0x1);
965 FPSR bit field FCC1 | FCC0:
969 3 unordered
971 static inline void gen_mov_reg_FCC0(TCGv reg, TCGv src,
972 unsigned int fcc_offset)
974 tcg_gen_shri_tl(reg, src, FSR_FCC0_SHIFT + fcc_offset);
975 tcg_gen_andi_tl(reg, reg, 0x1);
978 static inline void gen_mov_reg_FCC1(TCGv reg, TCGv src,
979 unsigned int fcc_offset)
981 tcg_gen_shri_tl(reg, src, FSR_FCC1_SHIFT + fcc_offset);
982 tcg_gen_andi_tl(reg, reg, 0x1);
985 // !0: FCC0 | FCC1
986 static inline void gen_op_eval_fbne(TCGv dst, TCGv src,
987 unsigned int fcc_offset)
989 gen_mov_reg_FCC0(dst, src, fcc_offset);
990 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
991 tcg_gen_or_tl(dst, dst, cpu_tmp0);
994 // 1 or 2: FCC0 ^ FCC1
995 static inline void gen_op_eval_fblg(TCGv dst, TCGv src,
996 unsigned int fcc_offset)
998 gen_mov_reg_FCC0(dst, src, fcc_offset);
999 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1000 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
1003 // 1 or 3: FCC0
1004 static inline void gen_op_eval_fbul(TCGv dst, TCGv src,
1005 unsigned int fcc_offset)
1007 gen_mov_reg_FCC0(dst, src, fcc_offset);
1010 // 1: FCC0 & !FCC1
1011 static inline void gen_op_eval_fbl(TCGv dst, TCGv src,
1012 unsigned int fcc_offset)
1014 gen_mov_reg_FCC0(dst, src, fcc_offset);
1015 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1016 tcg_gen_xori_tl(cpu_tmp0, cpu_tmp0, 0x1);
1017 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1020 // 2 or 3: FCC1
1021 static inline void gen_op_eval_fbug(TCGv dst, TCGv src,
1022 unsigned int fcc_offset)
1024 gen_mov_reg_FCC1(dst, src, fcc_offset);
1027 // 2: !FCC0 & FCC1
1028 static inline void gen_op_eval_fbg(TCGv dst, TCGv src,
1029 unsigned int fcc_offset)
1031 gen_mov_reg_FCC0(dst, src, fcc_offset);
1032 tcg_gen_xori_tl(dst, dst, 0x1);
1033 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1034 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1037 // 3: FCC0 & FCC1
1038 static inline void gen_op_eval_fbu(TCGv dst, TCGv src,
1039 unsigned int fcc_offset)
1041 gen_mov_reg_FCC0(dst, src, fcc_offset);
1042 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1043 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1046 // 0: !(FCC0 | FCC1)
1047 static inline void gen_op_eval_fbe(TCGv dst, TCGv src,
1048 unsigned int fcc_offset)
1050 gen_mov_reg_FCC0(dst, src, fcc_offset);
1051 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1052 tcg_gen_or_tl(dst, dst, cpu_tmp0);
1053 tcg_gen_xori_tl(dst, dst, 0x1);
1056 // 0 or 3: !(FCC0 ^ FCC1)
1057 static inline void gen_op_eval_fbue(TCGv dst, TCGv src,
1058 unsigned int fcc_offset)
1060 gen_mov_reg_FCC0(dst, src, fcc_offset);
1061 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1062 tcg_gen_xor_tl(dst, dst, cpu_tmp0);
1063 tcg_gen_xori_tl(dst, dst, 0x1);
1066 // 0 or 2: !FCC0
1067 static inline void gen_op_eval_fbge(TCGv dst, TCGv src,
1068 unsigned int fcc_offset)
1070 gen_mov_reg_FCC0(dst, src, fcc_offset);
1071 tcg_gen_xori_tl(dst, dst, 0x1);
1074 // !1: !(FCC0 & !FCC1)
1075 static inline void gen_op_eval_fbuge(TCGv dst, TCGv src,
1076 unsigned int fcc_offset)
1078 gen_mov_reg_FCC0(dst, src, fcc_offset);
1079 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1080 tcg_gen_xori_tl(cpu_tmp0, cpu_tmp0, 0x1);
1081 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1082 tcg_gen_xori_tl(dst, dst, 0x1);
1085 // 0 or 1: !FCC1
1086 static inline void gen_op_eval_fble(TCGv dst, TCGv src,
1087 unsigned int fcc_offset)
1089 gen_mov_reg_FCC1(dst, src, fcc_offset);
1090 tcg_gen_xori_tl(dst, dst, 0x1);
1093 // !2: !(!FCC0 & FCC1)
1094 static inline void gen_op_eval_fbule(TCGv dst, TCGv src,
1095 unsigned int fcc_offset)
1097 gen_mov_reg_FCC0(dst, src, fcc_offset);
1098 tcg_gen_xori_tl(dst, dst, 0x1);
1099 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1100 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1101 tcg_gen_xori_tl(dst, dst, 0x1);
1104 // !3: !(FCC0 & FCC1)
1105 static inline void gen_op_eval_fbo(TCGv dst, TCGv src,
1106 unsigned int fcc_offset)
1108 gen_mov_reg_FCC0(dst, src, fcc_offset);
1109 gen_mov_reg_FCC1(cpu_tmp0, src, fcc_offset);
1110 tcg_gen_and_tl(dst, dst, cpu_tmp0);
1111 tcg_gen_xori_tl(dst, dst, 0x1);
1114 static inline void gen_branch2(DisasContext *dc, target_ulong pc1,
1115 target_ulong pc2, TCGv r_cond)
1117 int l1;
1119 l1 = gen_new_label();
1121 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
1123 gen_goto_tb(dc, 0, pc1, pc1 + 4);
1125 gen_set_label(l1);
1126 gen_goto_tb(dc, 1, pc2, pc2 + 4);
1129 static inline void gen_branch_a(DisasContext *dc, target_ulong pc1,
1130 target_ulong pc2, TCGv r_cond)
1132 int l1;
1134 l1 = gen_new_label();
1136 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
1138 gen_goto_tb(dc, 0, pc2, pc1);
1140 gen_set_label(l1);
1141 gen_goto_tb(dc, 1, pc2 + 4, pc2 + 8);
1144 static inline void gen_generic_branch(target_ulong npc1, target_ulong npc2,
1145 TCGv r_cond)
1147 int l1, l2;
1149 l1 = gen_new_label();
1150 l2 = gen_new_label();
1152 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
1154 tcg_gen_movi_tl(cpu_npc, npc1);
1155 tcg_gen_br(l2);
1157 gen_set_label(l1);
1158 tcg_gen_movi_tl(cpu_npc, npc2);
1159 gen_set_label(l2);
1162 /* call this function before using the condition register as it may
1163 have been set for a jump */
1164 static inline void flush_cond(DisasContext *dc, TCGv cond)
1166 if (dc->npc == JUMP_PC) {
1167 gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cond);
1168 dc->npc = DYNAMIC_PC;
1172 static inline void save_npc(DisasContext *dc, TCGv cond)
1174 if (dc->npc == JUMP_PC) {
1175 gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cond);
1176 dc->npc = DYNAMIC_PC;
1177 } else if (dc->npc != DYNAMIC_PC) {
1178 tcg_gen_movi_tl(cpu_npc, dc->npc);
1182 static inline void save_state(DisasContext *dc, TCGv cond)
1184 tcg_gen_movi_tl(cpu_pc, dc->pc);
1185 save_npc(dc, cond);
1188 static inline void gen_mov_pc_npc(DisasContext *dc, TCGv cond)
1190 if (dc->npc == JUMP_PC) {
1191 gen_generic_branch(dc->jump_pc[0], dc->jump_pc[1], cond);
1192 tcg_gen_mov_tl(cpu_pc, cpu_npc);
1193 dc->pc = DYNAMIC_PC;
1194 } else if (dc->npc == DYNAMIC_PC) {
1195 tcg_gen_mov_tl(cpu_pc, cpu_npc);
1196 dc->pc = DYNAMIC_PC;
1197 } else {
1198 dc->pc = dc->npc;
1202 static inline void gen_op_next_insn(void)
1204 tcg_gen_mov_tl(cpu_pc, cpu_npc);
1205 tcg_gen_addi_tl(cpu_npc, cpu_npc, 4);
1208 static inline void gen_cond(TCGv r_dst, unsigned int cc, unsigned int cond)
1210 TCGv r_src;
1212 #ifdef TARGET_SPARC64
1213 if (cc)
1214 r_src = cpu_xcc;
1215 else
1216 r_src = cpu_psr;
1217 #else
1218 r_src = cpu_psr;
1219 #endif
1220 switch (cond) {
1221 case 0x0:
1222 gen_op_eval_bn(r_dst);
1223 break;
1224 case 0x1:
1225 gen_op_eval_be(r_dst, r_src);
1226 break;
1227 case 0x2:
1228 gen_op_eval_ble(r_dst, r_src);
1229 break;
1230 case 0x3:
1231 gen_op_eval_bl(r_dst, r_src);
1232 break;
1233 case 0x4:
1234 gen_op_eval_bleu(r_dst, r_src);
1235 break;
1236 case 0x5:
1237 gen_op_eval_bcs(r_dst, r_src);
1238 break;
1239 case 0x6:
1240 gen_op_eval_bneg(r_dst, r_src);
1241 break;
1242 case 0x7:
1243 gen_op_eval_bvs(r_dst, r_src);
1244 break;
1245 case 0x8:
1246 gen_op_eval_ba(r_dst);
1247 break;
1248 case 0x9:
1249 gen_op_eval_bne(r_dst, r_src);
1250 break;
1251 case 0xa:
1252 gen_op_eval_bg(r_dst, r_src);
1253 break;
1254 case 0xb:
1255 gen_op_eval_bge(r_dst, r_src);
1256 break;
1257 case 0xc:
1258 gen_op_eval_bgu(r_dst, r_src);
1259 break;
1260 case 0xd:
1261 gen_op_eval_bcc(r_dst, r_src);
1262 break;
1263 case 0xe:
1264 gen_op_eval_bpos(r_dst, r_src);
1265 break;
1266 case 0xf:
1267 gen_op_eval_bvc(r_dst, r_src);
1268 break;
1272 static inline void gen_fcond(TCGv r_dst, unsigned int cc, unsigned int cond)
1274 unsigned int offset;
1276 switch (cc) {
1277 default:
1278 case 0x0:
1279 offset = 0;
1280 break;
1281 case 0x1:
1282 offset = 32 - 10;
1283 break;
1284 case 0x2:
1285 offset = 34 - 10;
1286 break;
1287 case 0x3:
1288 offset = 36 - 10;
1289 break;
1292 switch (cond) {
1293 case 0x0:
1294 gen_op_eval_bn(r_dst);
1295 break;
1296 case 0x1:
1297 gen_op_eval_fbne(r_dst, cpu_fsr, offset);
1298 break;
1299 case 0x2:
1300 gen_op_eval_fblg(r_dst, cpu_fsr, offset);
1301 break;
1302 case 0x3:
1303 gen_op_eval_fbul(r_dst, cpu_fsr, offset);
1304 break;
1305 case 0x4:
1306 gen_op_eval_fbl(r_dst, cpu_fsr, offset);
1307 break;
1308 case 0x5:
1309 gen_op_eval_fbug(r_dst, cpu_fsr, offset);
1310 break;
1311 case 0x6:
1312 gen_op_eval_fbg(r_dst, cpu_fsr, offset);
1313 break;
1314 case 0x7:
1315 gen_op_eval_fbu(r_dst, cpu_fsr, offset);
1316 break;
1317 case 0x8:
1318 gen_op_eval_ba(r_dst);
1319 break;
1320 case 0x9:
1321 gen_op_eval_fbe(r_dst, cpu_fsr, offset);
1322 break;
1323 case 0xa:
1324 gen_op_eval_fbue(r_dst, cpu_fsr, offset);
1325 break;
1326 case 0xb:
1327 gen_op_eval_fbge(r_dst, cpu_fsr, offset);
1328 break;
1329 case 0xc:
1330 gen_op_eval_fbuge(r_dst, cpu_fsr, offset);
1331 break;
1332 case 0xd:
1333 gen_op_eval_fble(r_dst, cpu_fsr, offset);
1334 break;
1335 case 0xe:
1336 gen_op_eval_fbule(r_dst, cpu_fsr, offset);
1337 break;
1338 case 0xf:
1339 gen_op_eval_fbo(r_dst, cpu_fsr, offset);
1340 break;
1344 #ifdef TARGET_SPARC64
1345 // Inverted logic
1346 static const int gen_tcg_cond_reg[8] = {
1348 TCG_COND_NE,
1349 TCG_COND_GT,
1350 TCG_COND_GE,
1352 TCG_COND_EQ,
1353 TCG_COND_LE,
1354 TCG_COND_LT,
1357 static inline void gen_cond_reg(TCGv r_dst, int cond, TCGv r_src)
1359 int l1;
1361 l1 = gen_new_label();
1362 tcg_gen_movi_tl(r_dst, 0);
1363 tcg_gen_brcondi_tl(gen_tcg_cond_reg[cond], r_src, 0, l1);
1364 tcg_gen_movi_tl(r_dst, 1);
1365 gen_set_label(l1);
1367 #endif
1369 /* XXX: potentially incorrect if dynamic npc */
1370 static void do_branch(DisasContext *dc, int32_t offset, uint32_t insn, int cc,
1371 TCGv r_cond)
1373 unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
1374 target_ulong target = dc->pc + offset;
1376 if (cond == 0x0) {
1377 /* unconditional not taken */
1378 if (a) {
1379 dc->pc = dc->npc + 4;
1380 dc->npc = dc->pc + 4;
1381 } else {
1382 dc->pc = dc->npc;
1383 dc->npc = dc->pc + 4;
1385 } else if (cond == 0x8) {
1386 /* unconditional taken */
1387 if (a) {
1388 dc->pc = target;
1389 dc->npc = dc->pc + 4;
1390 } else {
1391 dc->pc = dc->npc;
1392 dc->npc = target;
1394 } else {
1395 flush_cond(dc, r_cond);
1396 gen_cond(r_cond, cc, cond);
1397 if (a) {
1398 gen_branch_a(dc, target, dc->npc, r_cond);
1399 dc->is_br = 1;
1400 } else {
1401 dc->pc = dc->npc;
1402 dc->jump_pc[0] = target;
1403 dc->jump_pc[1] = dc->npc + 4;
1404 dc->npc = JUMP_PC;
1409 /* XXX: potentially incorrect if dynamic npc */
1410 static void do_fbranch(DisasContext *dc, int32_t offset, uint32_t insn, int cc,
1411 TCGv r_cond)
1413 unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
1414 target_ulong target = dc->pc + offset;
1416 if (cond == 0x0) {
1417 /* unconditional not taken */
1418 if (a) {
1419 dc->pc = dc->npc + 4;
1420 dc->npc = dc->pc + 4;
1421 } else {
1422 dc->pc = dc->npc;
1423 dc->npc = dc->pc + 4;
1425 } else if (cond == 0x8) {
1426 /* unconditional taken */
1427 if (a) {
1428 dc->pc = target;
1429 dc->npc = dc->pc + 4;
1430 } else {
1431 dc->pc = dc->npc;
1432 dc->npc = target;
1434 } else {
1435 flush_cond(dc, r_cond);
1436 gen_fcond(r_cond, cc, cond);
1437 if (a) {
1438 gen_branch_a(dc, target, dc->npc, r_cond);
1439 dc->is_br = 1;
1440 } else {
1441 dc->pc = dc->npc;
1442 dc->jump_pc[0] = target;
1443 dc->jump_pc[1] = dc->npc + 4;
1444 dc->npc = JUMP_PC;
1449 #ifdef TARGET_SPARC64
1450 /* XXX: potentially incorrect if dynamic npc */
1451 static void do_branch_reg(DisasContext *dc, int32_t offset, uint32_t insn,
1452 TCGv r_cond, TCGv r_reg)
1454 unsigned int cond = GET_FIELD_SP(insn, 25, 27), a = (insn & (1 << 29));
1455 target_ulong target = dc->pc + offset;
1457 flush_cond(dc, r_cond);
1458 gen_cond_reg(r_cond, cond, r_reg);
1459 if (a) {
1460 gen_branch_a(dc, target, dc->npc, r_cond);
1461 dc->is_br = 1;
1462 } else {
1463 dc->pc = dc->npc;
1464 dc->jump_pc[0] = target;
1465 dc->jump_pc[1] = dc->npc + 4;
1466 dc->npc = JUMP_PC;
1470 static GenOpFunc * const gen_fcmpd[4] = {
1471 helper_fcmpd,
1472 helper_fcmpd_fcc1,
1473 helper_fcmpd_fcc2,
1474 helper_fcmpd_fcc3,
1477 static GenOpFunc * const gen_fcmpq[4] = {
1478 helper_fcmpq,
1479 helper_fcmpq_fcc1,
1480 helper_fcmpq_fcc2,
1481 helper_fcmpq_fcc3,
1484 static GenOpFunc * const gen_fcmped[4] = {
1485 helper_fcmped,
1486 helper_fcmped_fcc1,
1487 helper_fcmped_fcc2,
1488 helper_fcmped_fcc3,
1491 static GenOpFunc * const gen_fcmpeq[4] = {
1492 helper_fcmpeq,
1493 helper_fcmpeq_fcc1,
1494 helper_fcmpeq_fcc2,
1495 helper_fcmpeq_fcc3,
1498 static inline void gen_op_fcmps(int fccno, TCGv r_rs1, TCGv r_rs2)
1500 switch (fccno) {
1501 case 0:
1502 tcg_gen_helper_0_2(helper_fcmps, r_rs1, r_rs2);
1503 break;
1504 case 1:
1505 tcg_gen_helper_0_2(helper_fcmps_fcc1, r_rs1, r_rs2);
1506 break;
1507 case 2:
1508 tcg_gen_helper_0_2(helper_fcmps_fcc2, r_rs1, r_rs2);
1509 break;
1510 case 3:
1511 tcg_gen_helper_0_2(helper_fcmps_fcc3, r_rs1, r_rs2);
1512 break;
1516 static inline void gen_op_fcmpd(int fccno)
1518 tcg_gen_helper_0_0(gen_fcmpd[fccno]);
1521 static inline void gen_op_fcmpq(int fccno)
1523 tcg_gen_helper_0_0(gen_fcmpq[fccno]);
1526 static inline void gen_op_fcmpes(int fccno, TCGv r_rs1, TCGv r_rs2)
1528 switch (fccno) {
1529 case 0:
1530 tcg_gen_helper_0_2(helper_fcmpes, r_rs1, r_rs2);
1531 break;
1532 case 1:
1533 tcg_gen_helper_0_2(helper_fcmpes_fcc1, r_rs1, r_rs2);
1534 break;
1535 case 2:
1536 tcg_gen_helper_0_2(helper_fcmpes_fcc2, r_rs1, r_rs2);
1537 break;
1538 case 3:
1539 tcg_gen_helper_0_2(helper_fcmpes_fcc3, r_rs1, r_rs2);
1540 break;
1544 static inline void gen_op_fcmped(int fccno)
1546 tcg_gen_helper_0_0(gen_fcmped[fccno]);
1549 static inline void gen_op_fcmpeq(int fccno)
1551 tcg_gen_helper_0_0(gen_fcmpeq[fccno]);
1554 #else
1556 static inline void gen_op_fcmps(int fccno, TCGv r_rs1, TCGv r_rs2)
1558 tcg_gen_helper_0_2(helper_fcmps, r_rs1, r_rs2);
1561 static inline void gen_op_fcmpd(int fccno)
1563 tcg_gen_helper_0_0(helper_fcmpd);
1566 static inline void gen_op_fcmpq(int fccno)
1568 tcg_gen_helper_0_0(helper_fcmpq);
1571 static inline void gen_op_fcmpes(int fccno, TCGv r_rs1, TCGv r_rs2)
1573 tcg_gen_helper_0_2(helper_fcmpes, r_rs1, r_rs2);
1576 static inline void gen_op_fcmped(int fccno)
1578 tcg_gen_helper_0_0(helper_fcmped);
1581 static inline void gen_op_fcmpeq(int fccno)
1583 tcg_gen_helper_0_0(helper_fcmpeq);
1585 #endif
1587 static inline void gen_op_fpexception_im(int fsr_flags)
1589 TCGv r_const;
1591 tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_NMASK);
1592 tcg_gen_ori_tl(cpu_fsr, cpu_fsr, fsr_flags);
1593 r_const = tcg_const_i32(TT_FP_EXCP);
1594 tcg_gen_helper_0_1(raise_exception, r_const);
1595 tcg_temp_free(r_const);
1598 static int gen_trap_ifnofpu(DisasContext *dc, TCGv r_cond)
1600 #if !defined(CONFIG_USER_ONLY)
1601 if (!dc->fpu_enabled) {
1602 TCGv r_const;
1604 save_state(dc, r_cond);
1605 r_const = tcg_const_i32(TT_NFPU_INSN);
1606 tcg_gen_helper_0_1(raise_exception, r_const);
1607 tcg_temp_free(r_const);
1608 dc->is_br = 1;
1609 return 1;
1611 #endif
1612 return 0;
1615 static inline void gen_op_clear_ieee_excp_and_FTT(void)
1617 tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_CEXC_NMASK);
1620 static inline void gen_clear_float_exceptions(void)
1622 tcg_gen_helper_0_0(helper_clear_float_exceptions);
1625 /* asi moves */
1626 #ifdef TARGET_SPARC64
1627 static inline TCGv gen_get_asi(int insn, TCGv r_addr)
1629 int asi;
1630 TCGv r_asi;
1632 if (IS_IMM) {
1633 r_asi = tcg_temp_new(TCG_TYPE_I32);
1634 tcg_gen_mov_i32(r_asi, cpu_asi);
1635 } else {
1636 asi = GET_FIELD(insn, 19, 26);
1637 r_asi = tcg_const_i32(asi);
1639 return r_asi;
1642 static inline void gen_ld_asi(TCGv dst, TCGv addr, int insn, int size,
1643 int sign)
1645 TCGv r_asi, r_size, r_sign;
1647 r_asi = gen_get_asi(insn, addr);
1648 r_size = tcg_const_i32(size);
1649 r_sign = tcg_const_i32(sign);
1650 tcg_gen_helper_1_4(helper_ld_asi, dst, addr, r_asi, r_size, r_sign);
1651 tcg_temp_free(r_sign);
1652 tcg_temp_free(r_size);
1653 tcg_temp_free(r_asi);
1656 static inline void gen_st_asi(TCGv src, TCGv addr, int insn, int size)
1658 TCGv r_asi, r_size;
1660 r_asi = gen_get_asi(insn, addr);
1661 r_size = tcg_const_i32(size);
1662 tcg_gen_helper_0_4(helper_st_asi, addr, src, r_asi, r_size);
1663 tcg_temp_free(r_size);
1664 tcg_temp_free(r_asi);
1667 static inline void gen_ldf_asi(TCGv addr, int insn, int size, int rd)
1669 TCGv r_asi, r_size, r_rd;
1671 r_asi = gen_get_asi(insn, addr);
1672 r_size = tcg_const_i32(size);
1673 r_rd = tcg_const_i32(rd);
1674 tcg_gen_helper_0_4(helper_ldf_asi, addr, r_asi, r_size, r_rd);
1675 tcg_temp_free(r_rd);
1676 tcg_temp_free(r_size);
1677 tcg_temp_free(r_asi);
1680 static inline void gen_stf_asi(TCGv addr, int insn, int size, int rd)
1682 TCGv r_asi, r_size, r_rd;
1684 r_asi = gen_get_asi(insn, addr);
1685 r_size = tcg_const_i32(size);
1686 r_rd = tcg_const_i32(rd);
1687 tcg_gen_helper_0_4(helper_stf_asi, addr, r_asi, r_size, r_rd);
1688 tcg_temp_free(r_rd);
1689 tcg_temp_free(r_size);
1690 tcg_temp_free(r_asi);
1693 static inline void gen_swap_asi(TCGv dst, TCGv addr, int insn)
1695 TCGv r_asi, r_size, r_sign;
1697 r_asi = gen_get_asi(insn, addr);
1698 r_size = tcg_const_i32(4);
1699 r_sign = tcg_const_i32(0);
1700 tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, addr, r_asi, r_size, r_sign);
1701 tcg_temp_free(r_sign);
1702 tcg_gen_helper_0_4(helper_st_asi, addr, dst, r_asi, r_size);
1703 tcg_temp_free(r_size);
1704 tcg_temp_free(r_asi);
1705 tcg_gen_trunc_i64_tl(dst, cpu_tmp64);
1708 static inline void gen_ldda_asi(TCGv hi, TCGv addr, int insn, int rd)
1710 TCGv r_asi, r_rd;
1712 r_asi = gen_get_asi(insn, addr);
1713 r_rd = tcg_const_i32(rd);
1714 tcg_gen_helper_0_3(helper_ldda_asi, addr, r_asi, r_rd);
1715 tcg_temp_free(r_rd);
1716 tcg_temp_free(r_asi);
1719 static inline void gen_stda_asi(TCGv hi, TCGv addr, int insn, int rd)
1721 TCGv r_asi, r_size;
1723 gen_movl_reg_TN(rd + 1, cpu_tmp0);
1724 tcg_gen_concat_tl_i64(cpu_tmp64, cpu_tmp0, hi);
1725 r_asi = gen_get_asi(insn, addr);
1726 r_size = tcg_const_i32(8);
1727 tcg_gen_helper_0_4(helper_st_asi, addr, cpu_tmp64, r_asi, r_size);
1728 tcg_temp_free(r_size);
1729 tcg_temp_free(r_asi);
1732 static inline void gen_cas_asi(TCGv dst, TCGv addr, TCGv val2, int insn,
1733 int rd)
1735 TCGv r_val1, r_asi;
1737 r_val1 = tcg_temp_new(TCG_TYPE_TL);
1738 gen_movl_reg_TN(rd, r_val1);
1739 r_asi = gen_get_asi(insn, addr);
1740 tcg_gen_helper_1_4(helper_cas_asi, dst, addr, r_val1, val2, r_asi);
1741 tcg_temp_free(r_asi);
1742 tcg_temp_free(r_val1);
1745 static inline void gen_casx_asi(TCGv dst, TCGv addr, TCGv val2, int insn,
1746 int rd)
1748 TCGv r_asi;
1750 gen_movl_reg_TN(rd, cpu_tmp64);
1751 r_asi = gen_get_asi(insn, addr);
1752 tcg_gen_helper_1_4(helper_casx_asi, dst, addr, cpu_tmp64, val2, r_asi);
1753 tcg_temp_free(r_asi);
1756 #elif !defined(CONFIG_USER_ONLY)
1758 static inline void gen_ld_asi(TCGv dst, TCGv addr, int insn, int size,
1759 int sign)
1761 TCGv r_asi, r_size, r_sign;
1763 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1764 r_size = tcg_const_i32(size);
1765 r_sign = tcg_const_i32(sign);
1766 tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, addr, r_asi, r_size, r_sign);
1767 tcg_temp_free(r_sign);
1768 tcg_temp_free(r_size);
1769 tcg_temp_free(r_asi);
1770 tcg_gen_trunc_i64_tl(dst, cpu_tmp64);
1773 static inline void gen_st_asi(TCGv src, TCGv addr, int insn, int size)
1775 TCGv r_asi, r_size;
1777 tcg_gen_extu_tl_i64(cpu_tmp64, src);
1778 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1779 r_size = tcg_const_i32(size);
1780 tcg_gen_helper_0_4(helper_st_asi, addr, cpu_tmp64, r_asi, r_size);
1781 tcg_temp_free(r_size);
1782 tcg_temp_free(r_asi);
1785 static inline void gen_swap_asi(TCGv dst, TCGv addr, int insn)
1787 TCGv r_asi, r_size, r_sign;
1789 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1790 r_size = tcg_const_i32(4);
1791 r_sign = tcg_const_i32(0);
1792 tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, addr, r_asi, r_size, r_sign);
1793 tcg_temp_free(r_sign);
1794 tcg_gen_helper_0_4(helper_st_asi, addr, dst, r_asi, r_size);
1795 tcg_temp_free(r_size);
1796 tcg_temp_free(r_asi);
1797 tcg_gen_trunc_i64_tl(dst, cpu_tmp64);
1800 static inline void gen_ldda_asi(TCGv hi, TCGv addr, int insn, int rd)
1802 TCGv r_asi, r_size, r_sign;
1804 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1805 r_size = tcg_const_i32(8);
1806 r_sign = tcg_const_i32(0);
1807 tcg_gen_helper_1_4(helper_ld_asi, cpu_tmp64, addr, r_asi, r_size, r_sign);
1808 tcg_temp_free(r_sign);
1809 tcg_temp_free(r_size);
1810 tcg_temp_free(r_asi);
1811 tcg_gen_trunc_i64_tl(cpu_tmp0, cpu_tmp64);
1812 gen_movl_TN_reg(rd + 1, cpu_tmp0);
1813 tcg_gen_shri_i64(cpu_tmp64, cpu_tmp64, 32);
1814 tcg_gen_trunc_i64_tl(hi, cpu_tmp64);
1815 gen_movl_TN_reg(rd, hi);
1818 static inline void gen_stda_asi(TCGv hi, TCGv addr, int insn, int rd)
1820 TCGv r_asi, r_size;
1822 gen_movl_reg_TN(rd + 1, cpu_tmp0);
1823 tcg_gen_concat_tl_i64(cpu_tmp64, cpu_tmp0, hi);
1824 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1825 r_size = tcg_const_i32(8);
1826 tcg_gen_helper_0_4(helper_st_asi, addr, cpu_tmp64, r_asi, r_size);
1827 tcg_temp_free(r_size);
1828 tcg_temp_free(r_asi);
1830 #endif
1832 #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
1833 static inline void gen_ldstub_asi(TCGv dst, TCGv addr, int insn)
1835 TCGv r_val, r_asi, r_size;
1837 gen_ld_asi(dst, addr, insn, 1, 0);
1839 r_val = tcg_const_i64(0xffULL);
1840 r_asi = tcg_const_i32(GET_FIELD(insn, 19, 26));
1841 r_size = tcg_const_i32(1);
1842 tcg_gen_helper_0_4(helper_st_asi, addr, r_val, r_asi, r_size);
1843 tcg_temp_free(r_size);
1844 tcg_temp_free(r_asi);
1845 tcg_temp_free(r_val);
1847 #endif
1849 static inline TCGv get_src1(unsigned int insn, TCGv def)
1851 TCGv r_rs1 = def;
1852 unsigned int rs1;
1854 rs1 = GET_FIELD(insn, 13, 17);
1855 if (rs1 == 0)
1856 r_rs1 = tcg_const_tl(0); // XXX how to free?
1857 else if (rs1 < 8)
1858 r_rs1 = cpu_gregs[rs1];
1859 else
1860 tcg_gen_ld_tl(def, cpu_regwptr, (rs1 - 8) * sizeof(target_ulong));
1861 return r_rs1;
1864 static inline TCGv get_src2(unsigned int insn, TCGv def)
1866 TCGv r_rs2 = def;
1867 unsigned int rs2;
1869 if (IS_IMM) { /* immediate */
1870 rs2 = GET_FIELDs(insn, 19, 31);
1871 r_rs2 = tcg_const_tl((int)rs2); // XXX how to free?
1872 } else { /* register */
1873 rs2 = GET_FIELD(insn, 27, 31);
1874 if (rs2 == 0)
1875 r_rs2 = tcg_const_tl(0); // XXX how to free?
1876 else if (rs2 < 8)
1877 r_rs2 = cpu_gregs[rs2];
1878 else
1879 tcg_gen_ld_tl(def, cpu_regwptr, (rs2 - 8) * sizeof(target_ulong));
1881 return r_rs2;
1884 #define CHECK_IU_FEATURE(dc, FEATURE) \
1885 if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE)) \
1886 goto illegal_insn;
1887 #define CHECK_FPU_FEATURE(dc, FEATURE) \
1888 if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE)) \
1889 goto nfpu_insn;
1891 /* before an instruction, dc->pc must be static */
1892 static void disas_sparc_insn(DisasContext * dc)
1894 unsigned int insn, opc, rs1, rs2, rd;
1896 if (unlikely(loglevel & CPU_LOG_TB_OP))
1897 tcg_gen_debug_insn_start(dc->pc);
1898 insn = ldl_code(dc->pc);
1899 opc = GET_FIELD(insn, 0, 1);
1901 rd = GET_FIELD(insn, 2, 6);
1903 cpu_src1 = tcg_temp_new(TCG_TYPE_TL); // const
1904 cpu_src2 = tcg_temp_new(TCG_TYPE_TL); // const
1906 switch (opc) {
1907 case 0: /* branches/sethi */
1909 unsigned int xop = GET_FIELD(insn, 7, 9);
1910 int32_t target;
1911 switch (xop) {
1912 #ifdef TARGET_SPARC64
1913 case 0x1: /* V9 BPcc */
1915 int cc;
1917 target = GET_FIELD_SP(insn, 0, 18);
1918 target = sign_extend(target, 18);
1919 target <<= 2;
1920 cc = GET_FIELD_SP(insn, 20, 21);
1921 if (cc == 0)
1922 do_branch(dc, target, insn, 0, cpu_cond);
1923 else if (cc == 2)
1924 do_branch(dc, target, insn, 1, cpu_cond);
1925 else
1926 goto illegal_insn;
1927 goto jmp_insn;
1929 case 0x3: /* V9 BPr */
1931 target = GET_FIELD_SP(insn, 0, 13) |
1932 (GET_FIELD_SP(insn, 20, 21) << 14);
1933 target = sign_extend(target, 16);
1934 target <<= 2;
1935 cpu_src1 = get_src1(insn, cpu_src1);
1936 do_branch_reg(dc, target, insn, cpu_cond, cpu_src1);
1937 goto jmp_insn;
1939 case 0x5: /* V9 FBPcc */
1941 int cc = GET_FIELD_SP(insn, 20, 21);
1942 if (gen_trap_ifnofpu(dc, cpu_cond))
1943 goto jmp_insn;
1944 target = GET_FIELD_SP(insn, 0, 18);
1945 target = sign_extend(target, 19);
1946 target <<= 2;
1947 do_fbranch(dc, target, insn, cc, cpu_cond);
1948 goto jmp_insn;
1950 #else
1951 case 0x7: /* CBN+x */
1953 goto ncp_insn;
1955 #endif
1956 case 0x2: /* BN+x */
1958 target = GET_FIELD(insn, 10, 31);
1959 target = sign_extend(target, 22);
1960 target <<= 2;
1961 do_branch(dc, target, insn, 0, cpu_cond);
1962 goto jmp_insn;
1964 case 0x6: /* FBN+x */
1966 if (gen_trap_ifnofpu(dc, cpu_cond))
1967 goto jmp_insn;
1968 target = GET_FIELD(insn, 10, 31);
1969 target = sign_extend(target, 22);
1970 target <<= 2;
1971 do_fbranch(dc, target, insn, 0, cpu_cond);
1972 goto jmp_insn;
1974 case 0x4: /* SETHI */
1975 if (rd) { // nop
1976 uint32_t value = GET_FIELD(insn, 10, 31);
1977 TCGv r_const;
1979 r_const = tcg_const_tl(value << 10);
1980 gen_movl_TN_reg(rd, r_const);
1981 tcg_temp_free(r_const);
1983 break;
1984 case 0x0: /* UNIMPL */
1985 default:
1986 goto illegal_insn;
1988 break;
1990 break;
1991 case 1:
1992 /*CALL*/ {
1993 target_long target = GET_FIELDs(insn, 2, 31) << 2;
1994 TCGv r_const;
1996 r_const = tcg_const_tl(dc->pc);
1997 gen_movl_TN_reg(15, r_const);
1998 tcg_temp_free(r_const);
1999 target += dc->pc;
2000 gen_mov_pc_npc(dc, cpu_cond);
2001 dc->npc = target;
2003 goto jmp_insn;
2004 case 2: /* FPU & Logical Operations */
2006 unsigned int xop = GET_FIELD(insn, 7, 12);
2007 if (xop == 0x3a) { /* generate trap */
2008 int cond;
2010 cpu_src1 = get_src1(insn, cpu_src1);
2011 if (IS_IMM) {
2012 rs2 = GET_FIELD(insn, 25, 31);
2013 tcg_gen_addi_tl(cpu_dst, cpu_src1, rs2);
2014 } else {
2015 rs2 = GET_FIELD(insn, 27, 31);
2016 if (rs2 != 0) {
2017 gen_movl_reg_TN(rs2, cpu_src2);
2018 tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
2019 } else
2020 tcg_gen_mov_tl(cpu_dst, cpu_src1);
2022 cond = GET_FIELD(insn, 3, 6);
2023 if (cond == 0x8) {
2024 save_state(dc, cpu_cond);
2025 if ((dc->def->features & CPU_FEATURE_HYPV) &&
2026 supervisor(dc))
2027 tcg_gen_andi_tl(cpu_dst, cpu_dst, UA2005_HTRAP_MASK);
2028 else
2029 tcg_gen_andi_tl(cpu_dst, cpu_dst, V8_TRAP_MASK);
2030 tcg_gen_addi_tl(cpu_dst, cpu_dst, TT_TRAP);
2031 tcg_gen_helper_0_1(raise_exception, cpu_dst);
2032 } else if (cond != 0) {
2033 TCGv r_cond = tcg_temp_new(TCG_TYPE_TL);
2034 int l1;
2035 #ifdef TARGET_SPARC64
2036 /* V9 icc/xcc */
2037 int cc = GET_FIELD_SP(insn, 11, 12);
2039 save_state(dc, cpu_cond);
2040 if (cc == 0)
2041 gen_cond(r_cond, 0, cond);
2042 else if (cc == 2)
2043 gen_cond(r_cond, 1, cond);
2044 else
2045 goto illegal_insn;
2046 #else
2047 save_state(dc, cpu_cond);
2048 gen_cond(r_cond, 0, cond);
2049 #endif
2050 l1 = gen_new_label();
2051 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
2053 if ((dc->def->features & CPU_FEATURE_HYPV) &&
2054 supervisor(dc))
2055 tcg_gen_andi_tl(cpu_dst, cpu_dst, UA2005_HTRAP_MASK);
2056 else
2057 tcg_gen_andi_tl(cpu_dst, cpu_dst, V8_TRAP_MASK);
2058 tcg_gen_addi_tl(cpu_dst, cpu_dst, TT_TRAP);
2059 tcg_gen_helper_0_1(raise_exception, cpu_dst);
2061 gen_set_label(l1);
2062 tcg_temp_free(r_cond);
2064 gen_op_next_insn();
2065 tcg_gen_exit_tb(0);
2066 dc->is_br = 1;
2067 goto jmp_insn;
2068 } else if (xop == 0x28) {
2069 rs1 = GET_FIELD(insn, 13, 17);
2070 switch(rs1) {
2071 case 0: /* rdy */
2072 #ifndef TARGET_SPARC64
2073 case 0x01 ... 0x0e: /* undefined in the SPARCv8
2074 manual, rdy on the microSPARC
2075 II */
2076 case 0x0f: /* stbar in the SPARCv8 manual,
2077 rdy on the microSPARC II */
2078 case 0x10 ... 0x1f: /* implementation-dependent in the
2079 SPARCv8 manual, rdy on the
2080 microSPARC II */
2081 #endif
2082 gen_movl_TN_reg(rd, cpu_y);
2083 break;
2084 #ifdef TARGET_SPARC64
2085 case 0x2: /* V9 rdccr */
2086 tcg_gen_helper_1_0(helper_rdccr, cpu_dst);
2087 gen_movl_TN_reg(rd, cpu_dst);
2088 break;
2089 case 0x3: /* V9 rdasi */
2090 tcg_gen_ext_i32_tl(cpu_dst, cpu_asi);
2091 gen_movl_TN_reg(rd, cpu_dst);
2092 break;
2093 case 0x4: /* V9 rdtick */
2095 TCGv r_tickptr;
2097 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
2098 tcg_gen_ld_ptr(r_tickptr, cpu_env,
2099 offsetof(CPUState, tick));
2100 tcg_gen_helper_1_1(helper_tick_get_count, cpu_dst,
2101 r_tickptr);
2102 tcg_temp_free(r_tickptr);
2103 gen_movl_TN_reg(rd, cpu_dst);
2105 break;
2106 case 0x5: /* V9 rdpc */
2108 TCGv r_const;
2110 r_const = tcg_const_tl(dc->pc);
2111 gen_movl_TN_reg(rd, r_const);
2112 tcg_temp_free(r_const);
2114 break;
2115 case 0x6: /* V9 rdfprs */
2116 tcg_gen_ext_i32_tl(cpu_dst, cpu_fprs);
2117 gen_movl_TN_reg(rd, cpu_dst);
2118 break;
2119 case 0xf: /* V9 membar */
2120 break; /* no effect */
2121 case 0x13: /* Graphics Status */
2122 if (gen_trap_ifnofpu(dc, cpu_cond))
2123 goto jmp_insn;
2124 gen_movl_TN_reg(rd, cpu_gsr);
2125 break;
2126 case 0x16: /* Softint */
2127 tcg_gen_ext_i32_tl(cpu_dst, cpu_softint);
2128 gen_movl_TN_reg(rd, cpu_dst);
2129 break;
2130 case 0x17: /* Tick compare */
2131 gen_movl_TN_reg(rd, cpu_tick_cmpr);
2132 break;
2133 case 0x18: /* System tick */
2135 TCGv r_tickptr;
2137 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
2138 tcg_gen_ld_ptr(r_tickptr, cpu_env,
2139 offsetof(CPUState, stick));
2140 tcg_gen_helper_1_1(helper_tick_get_count, cpu_dst,
2141 r_tickptr);
2142 tcg_temp_free(r_tickptr);
2143 gen_movl_TN_reg(rd, cpu_dst);
2145 break;
2146 case 0x19: /* System tick compare */
2147 gen_movl_TN_reg(rd, cpu_stick_cmpr);
2148 break;
2149 case 0x10: /* Performance Control */
2150 case 0x11: /* Performance Instrumentation Counter */
2151 case 0x12: /* Dispatch Control */
2152 case 0x14: /* Softint set, WO */
2153 case 0x15: /* Softint clear, WO */
2154 #endif
2155 default:
2156 goto illegal_insn;
2158 #if !defined(CONFIG_USER_ONLY)
2159 } else if (xop == 0x29) { /* rdpsr / UA2005 rdhpr */
2160 #ifndef TARGET_SPARC64
2161 if (!supervisor(dc))
2162 goto priv_insn;
2163 tcg_gen_helper_1_0(helper_rdpsr, cpu_dst);
2164 #else
2165 CHECK_IU_FEATURE(dc, HYPV);
2166 if (!hypervisor(dc))
2167 goto priv_insn;
2168 rs1 = GET_FIELD(insn, 13, 17);
2169 switch (rs1) {
2170 case 0: // hpstate
2171 // gen_op_rdhpstate();
2172 break;
2173 case 1: // htstate
2174 // gen_op_rdhtstate();
2175 break;
2176 case 3: // hintp
2177 tcg_gen_mov_tl(cpu_dst, cpu_hintp);
2178 break;
2179 case 5: // htba
2180 tcg_gen_mov_tl(cpu_dst, cpu_htba);
2181 break;
2182 case 6: // hver
2183 tcg_gen_mov_tl(cpu_dst, cpu_hver);
2184 break;
2185 case 31: // hstick_cmpr
2186 tcg_gen_mov_tl(cpu_dst, cpu_hstick_cmpr);
2187 break;
2188 default:
2189 goto illegal_insn;
2191 #endif
2192 gen_movl_TN_reg(rd, cpu_dst);
2193 break;
2194 } else if (xop == 0x2a) { /* rdwim / V9 rdpr */
2195 if (!supervisor(dc))
2196 goto priv_insn;
2197 #ifdef TARGET_SPARC64
2198 rs1 = GET_FIELD(insn, 13, 17);
2199 switch (rs1) {
2200 case 0: // tpc
2202 TCGv r_tsptr;
2204 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
2205 tcg_gen_ld_ptr(r_tsptr, cpu_env,
2206 offsetof(CPUState, tsptr));
2207 tcg_gen_ld_tl(cpu_tmp32, r_tsptr,
2208 offsetof(trap_state, tpc));
2209 tcg_temp_free(r_tsptr);
2210 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2212 break;
2213 case 1: // tnpc
2215 TCGv r_tsptr;
2217 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
2218 tcg_gen_ld_ptr(r_tsptr, cpu_env,
2219 offsetof(CPUState, tsptr));
2220 tcg_gen_ld_tl(cpu_tmp0, r_tsptr,
2221 offsetof(trap_state, tnpc));
2222 tcg_temp_free(r_tsptr);
2224 break;
2225 case 2: // tstate
2227 TCGv r_tsptr;
2229 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
2230 tcg_gen_ld_ptr(r_tsptr, cpu_env,
2231 offsetof(CPUState, tsptr));
2232 tcg_gen_ld_tl(cpu_tmp0, r_tsptr,
2233 offsetof(trap_state, tstate));
2234 tcg_temp_free(r_tsptr);
2236 break;
2237 case 3: // tt
2239 TCGv r_tsptr;
2241 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
2242 tcg_gen_ld_ptr(r_tsptr, cpu_env,
2243 offsetof(CPUState, tsptr));
2244 tcg_gen_ld_i32(cpu_tmp0, r_tsptr,
2245 offsetof(trap_state, tt));
2246 tcg_temp_free(r_tsptr);
2248 break;
2249 case 4: // tick
2251 TCGv r_tickptr;
2253 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
2254 tcg_gen_ld_ptr(r_tickptr, cpu_env,
2255 offsetof(CPUState, tick));
2256 tcg_gen_helper_1_1(helper_tick_get_count, cpu_tmp0,
2257 r_tickptr);
2258 gen_movl_TN_reg(rd, cpu_tmp0);
2259 tcg_temp_free(r_tickptr);
2261 break;
2262 case 5: // tba
2263 tcg_gen_mov_tl(cpu_tmp0, cpu_tbr);
2264 break;
2265 case 6: // pstate
2266 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2267 offsetof(CPUSPARCState, pstate));
2268 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2269 break;
2270 case 7: // tl
2271 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2272 offsetof(CPUSPARCState, tl));
2273 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2274 break;
2275 case 8: // pil
2276 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2277 offsetof(CPUSPARCState, psrpil));
2278 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2279 break;
2280 case 9: // cwp
2281 tcg_gen_helper_1_0(helper_rdcwp, cpu_tmp0);
2282 break;
2283 case 10: // cansave
2284 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2285 offsetof(CPUSPARCState, cansave));
2286 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2287 break;
2288 case 11: // canrestore
2289 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2290 offsetof(CPUSPARCState, canrestore));
2291 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2292 break;
2293 case 12: // cleanwin
2294 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2295 offsetof(CPUSPARCState, cleanwin));
2296 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2297 break;
2298 case 13: // otherwin
2299 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2300 offsetof(CPUSPARCState, otherwin));
2301 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2302 break;
2303 case 14: // wstate
2304 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2305 offsetof(CPUSPARCState, wstate));
2306 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2307 break;
2308 case 16: // UA2005 gl
2309 CHECK_IU_FEATURE(dc, GL);
2310 tcg_gen_ld_i32(cpu_tmp32, cpu_env,
2311 offsetof(CPUSPARCState, gl));
2312 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_tmp32);
2313 break;
2314 case 26: // UA2005 strand status
2315 CHECK_IU_FEATURE(dc, HYPV);
2316 if (!hypervisor(dc))
2317 goto priv_insn;
2318 tcg_gen_mov_tl(cpu_tmp0, cpu_ssr);
2319 break;
2320 case 31: // ver
2321 tcg_gen_mov_tl(cpu_tmp0, cpu_ver);
2322 break;
2323 case 15: // fq
2324 default:
2325 goto illegal_insn;
2327 #else
2328 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_wim);
2329 #endif
2330 gen_movl_TN_reg(rd, cpu_tmp0);
2331 break;
2332 } else if (xop == 0x2b) { /* rdtbr / V9 flushw */
2333 #ifdef TARGET_SPARC64
2334 save_state(dc, cpu_cond);
2335 tcg_gen_helper_0_0(helper_flushw);
2336 #else
2337 if (!supervisor(dc))
2338 goto priv_insn;
2339 gen_movl_TN_reg(rd, cpu_tbr);
2340 #endif
2341 break;
2342 #endif
2343 } else if (xop == 0x34) { /* FPU Operations */
2344 if (gen_trap_ifnofpu(dc, cpu_cond))
2345 goto jmp_insn;
2346 gen_op_clear_ieee_excp_and_FTT();
2347 rs1 = GET_FIELD(insn, 13, 17);
2348 rs2 = GET_FIELD(insn, 27, 31);
2349 xop = GET_FIELD(insn, 18, 26);
2350 switch (xop) {
2351 case 0x1: /* fmovs */
2352 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs2]);
2353 break;
2354 case 0x5: /* fnegs */
2355 tcg_gen_helper_1_1(helper_fnegs, cpu_fpr[rd],
2356 cpu_fpr[rs2]);
2357 break;
2358 case 0x9: /* fabss */
2359 tcg_gen_helper_1_1(helper_fabss, cpu_fpr[rd],
2360 cpu_fpr[rs2]);
2361 break;
2362 case 0x29: /* fsqrts */
2363 CHECK_FPU_FEATURE(dc, FSQRT);
2364 gen_clear_float_exceptions();
2365 tcg_gen_helper_1_1(helper_fsqrts, cpu_tmp32,
2366 cpu_fpr[rs2]);
2367 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2368 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2369 break;
2370 case 0x2a: /* fsqrtd */
2371 CHECK_FPU_FEATURE(dc, FSQRT);
2372 gen_op_load_fpr_DT1(DFPREG(rs2));
2373 gen_clear_float_exceptions();
2374 tcg_gen_helper_0_0(helper_fsqrtd);
2375 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2376 gen_op_store_DT0_fpr(DFPREG(rd));
2377 break;
2378 case 0x2b: /* fsqrtq */
2379 CHECK_FPU_FEATURE(dc, FLOAT128);
2380 gen_op_load_fpr_QT1(QFPREG(rs2));
2381 gen_clear_float_exceptions();
2382 tcg_gen_helper_0_0(helper_fsqrtq);
2383 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2384 gen_op_store_QT0_fpr(QFPREG(rd));
2385 break;
2386 case 0x41: /* fadds */
2387 gen_clear_float_exceptions();
2388 tcg_gen_helper_1_2(helper_fadds, cpu_tmp32,
2389 cpu_fpr[rs1], cpu_fpr[rs2]);
2390 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2391 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2392 break;
2393 case 0x42:
2394 gen_op_load_fpr_DT0(DFPREG(rs1));
2395 gen_op_load_fpr_DT1(DFPREG(rs2));
2396 gen_clear_float_exceptions();
2397 tcg_gen_helper_0_0(helper_faddd);
2398 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2399 gen_op_store_DT0_fpr(DFPREG(rd));
2400 break;
2401 case 0x43: /* faddq */
2402 CHECK_FPU_FEATURE(dc, FLOAT128);
2403 gen_op_load_fpr_QT0(QFPREG(rs1));
2404 gen_op_load_fpr_QT1(QFPREG(rs2));
2405 gen_clear_float_exceptions();
2406 tcg_gen_helper_0_0(helper_faddq);
2407 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2408 gen_op_store_QT0_fpr(QFPREG(rd));
2409 break;
2410 case 0x45: /* fsubs */
2411 gen_clear_float_exceptions();
2412 tcg_gen_helper_1_2(helper_fsubs, cpu_tmp32,
2413 cpu_fpr[rs1], cpu_fpr[rs2]);
2414 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2415 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2416 break;
2417 case 0x46:
2418 gen_op_load_fpr_DT0(DFPREG(rs1));
2419 gen_op_load_fpr_DT1(DFPREG(rs2));
2420 gen_clear_float_exceptions();
2421 tcg_gen_helper_0_0(helper_fsubd);
2422 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2423 gen_op_store_DT0_fpr(DFPREG(rd));
2424 break;
2425 case 0x47: /* fsubq */
2426 CHECK_FPU_FEATURE(dc, FLOAT128);
2427 gen_op_load_fpr_QT0(QFPREG(rs1));
2428 gen_op_load_fpr_QT1(QFPREG(rs2));
2429 gen_clear_float_exceptions();
2430 tcg_gen_helper_0_0(helper_fsubq);
2431 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2432 gen_op_store_QT0_fpr(QFPREG(rd));
2433 break;
2434 case 0x49: /* fmuls */
2435 CHECK_FPU_FEATURE(dc, FMUL);
2436 gen_clear_float_exceptions();
2437 tcg_gen_helper_1_2(helper_fmuls, cpu_tmp32,
2438 cpu_fpr[rs1], cpu_fpr[rs2]);
2439 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2440 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2441 break;
2442 case 0x4a: /* fmuld */
2443 CHECK_FPU_FEATURE(dc, FMUL);
2444 gen_op_load_fpr_DT0(DFPREG(rs1));
2445 gen_op_load_fpr_DT1(DFPREG(rs2));
2446 gen_clear_float_exceptions();
2447 tcg_gen_helper_0_0(helper_fmuld);
2448 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2449 gen_op_store_DT0_fpr(DFPREG(rd));
2450 break;
2451 case 0x4b: /* fmulq */
2452 CHECK_FPU_FEATURE(dc, FLOAT128);
2453 CHECK_FPU_FEATURE(dc, FMUL);
2454 gen_op_load_fpr_QT0(QFPREG(rs1));
2455 gen_op_load_fpr_QT1(QFPREG(rs2));
2456 gen_clear_float_exceptions();
2457 tcg_gen_helper_0_0(helper_fmulq);
2458 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2459 gen_op_store_QT0_fpr(QFPREG(rd));
2460 break;
2461 case 0x4d: /* fdivs */
2462 gen_clear_float_exceptions();
2463 tcg_gen_helper_1_2(helper_fdivs, cpu_tmp32,
2464 cpu_fpr[rs1], cpu_fpr[rs2]);
2465 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2466 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2467 break;
2468 case 0x4e:
2469 gen_op_load_fpr_DT0(DFPREG(rs1));
2470 gen_op_load_fpr_DT1(DFPREG(rs2));
2471 gen_clear_float_exceptions();
2472 tcg_gen_helper_0_0(helper_fdivd);
2473 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2474 gen_op_store_DT0_fpr(DFPREG(rd));
2475 break;
2476 case 0x4f: /* fdivq */
2477 CHECK_FPU_FEATURE(dc, FLOAT128);
2478 gen_op_load_fpr_QT0(QFPREG(rs1));
2479 gen_op_load_fpr_QT1(QFPREG(rs2));
2480 gen_clear_float_exceptions();
2481 tcg_gen_helper_0_0(helper_fdivq);
2482 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2483 gen_op_store_QT0_fpr(QFPREG(rd));
2484 break;
2485 case 0x69: /* fsmuld */
2486 CHECK_FPU_FEATURE(dc, FSMULD);
2487 gen_clear_float_exceptions();
2488 tcg_gen_helper_0_2(helper_fsmuld, cpu_fpr[rs1],
2489 cpu_fpr[rs2]);
2490 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2491 gen_op_store_DT0_fpr(DFPREG(rd));
2492 break;
2493 case 0x6e: /* fdmulq */
2494 CHECK_FPU_FEATURE(dc, FLOAT128);
2495 gen_op_load_fpr_DT0(DFPREG(rs1));
2496 gen_op_load_fpr_DT1(DFPREG(rs2));
2497 gen_clear_float_exceptions();
2498 tcg_gen_helper_0_0(helper_fdmulq);
2499 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2500 gen_op_store_QT0_fpr(QFPREG(rd));
2501 break;
2502 case 0xc4: /* fitos */
2503 gen_clear_float_exceptions();
2504 tcg_gen_helper_1_1(helper_fitos, cpu_tmp32,
2505 cpu_fpr[rs2]);
2506 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2507 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2508 break;
2509 case 0xc6: /* fdtos */
2510 gen_op_load_fpr_DT1(DFPREG(rs2));
2511 gen_clear_float_exceptions();
2512 tcg_gen_helper_1_0(helper_fdtos, cpu_tmp32);
2513 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2514 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2515 break;
2516 case 0xc7: /* fqtos */
2517 CHECK_FPU_FEATURE(dc, FLOAT128);
2518 gen_op_load_fpr_QT1(QFPREG(rs2));
2519 gen_clear_float_exceptions();
2520 tcg_gen_helper_1_0(helper_fqtos, cpu_tmp32);
2521 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2522 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2523 break;
2524 case 0xc8: /* fitod */
2525 tcg_gen_helper_0_1(helper_fitod, cpu_fpr[rs2]);
2526 gen_op_store_DT0_fpr(DFPREG(rd));
2527 break;
2528 case 0xc9: /* fstod */
2529 tcg_gen_helper_0_1(helper_fstod, cpu_fpr[rs2]);
2530 gen_op_store_DT0_fpr(DFPREG(rd));
2531 break;
2532 case 0xcb: /* fqtod */
2533 CHECK_FPU_FEATURE(dc, FLOAT128);
2534 gen_op_load_fpr_QT1(QFPREG(rs2));
2535 gen_clear_float_exceptions();
2536 tcg_gen_helper_0_0(helper_fqtod);
2537 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2538 gen_op_store_DT0_fpr(DFPREG(rd));
2539 break;
2540 case 0xcc: /* fitoq */
2541 CHECK_FPU_FEATURE(dc, FLOAT128);
2542 tcg_gen_helper_0_1(helper_fitoq, cpu_fpr[rs2]);
2543 gen_op_store_QT0_fpr(QFPREG(rd));
2544 break;
2545 case 0xcd: /* fstoq */
2546 CHECK_FPU_FEATURE(dc, FLOAT128);
2547 tcg_gen_helper_0_1(helper_fstoq, cpu_fpr[rs2]);
2548 gen_op_store_QT0_fpr(QFPREG(rd));
2549 break;
2550 case 0xce: /* fdtoq */
2551 CHECK_FPU_FEATURE(dc, FLOAT128);
2552 gen_op_load_fpr_DT1(DFPREG(rs2));
2553 tcg_gen_helper_0_0(helper_fdtoq);
2554 gen_op_store_QT0_fpr(QFPREG(rd));
2555 break;
2556 case 0xd1: /* fstoi */
2557 gen_clear_float_exceptions();
2558 tcg_gen_helper_1_1(helper_fstoi, cpu_tmp32,
2559 cpu_fpr[rs2]);
2560 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2561 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2562 break;
2563 case 0xd2: /* fdtoi */
2564 gen_op_load_fpr_DT1(DFPREG(rs2));
2565 gen_clear_float_exceptions();
2566 tcg_gen_helper_1_0(helper_fdtoi, cpu_tmp32);
2567 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2568 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2569 break;
2570 case 0xd3: /* fqtoi */
2571 CHECK_FPU_FEATURE(dc, FLOAT128);
2572 gen_op_load_fpr_QT1(QFPREG(rs2));
2573 gen_clear_float_exceptions();
2574 tcg_gen_helper_1_0(helper_fqtoi, cpu_tmp32);
2575 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2576 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2577 break;
2578 #ifdef TARGET_SPARC64
2579 case 0x2: /* V9 fmovd */
2580 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd)],
2581 cpu_fpr[DFPREG(rs2)]);
2582 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd) + 1],
2583 cpu_fpr[DFPREG(rs2) + 1]);
2584 break;
2585 case 0x3: /* V9 fmovq */
2586 CHECK_FPU_FEATURE(dc, FLOAT128);
2587 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd)],
2588 cpu_fpr[QFPREG(rs2)]);
2589 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 1],
2590 cpu_fpr[QFPREG(rs2) + 1]);
2591 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 2],
2592 cpu_fpr[QFPREG(rs2) + 2]);
2593 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 3],
2594 cpu_fpr[QFPREG(rs2) + 3]);
2595 break;
2596 case 0x6: /* V9 fnegd */
2597 gen_op_load_fpr_DT1(DFPREG(rs2));
2598 tcg_gen_helper_0_0(helper_fnegd);
2599 gen_op_store_DT0_fpr(DFPREG(rd));
2600 break;
2601 case 0x7: /* V9 fnegq */
2602 CHECK_FPU_FEATURE(dc, FLOAT128);
2603 gen_op_load_fpr_QT1(QFPREG(rs2));
2604 tcg_gen_helper_0_0(helper_fnegq);
2605 gen_op_store_QT0_fpr(QFPREG(rd));
2606 break;
2607 case 0xa: /* V9 fabsd */
2608 gen_op_load_fpr_DT1(DFPREG(rs2));
2609 tcg_gen_helper_0_0(helper_fabsd);
2610 gen_op_store_DT0_fpr(DFPREG(rd));
2611 break;
2612 case 0xb: /* V9 fabsq */
2613 CHECK_FPU_FEATURE(dc, FLOAT128);
2614 gen_op_load_fpr_QT1(QFPREG(rs2));
2615 tcg_gen_helper_0_0(helper_fabsq);
2616 gen_op_store_QT0_fpr(QFPREG(rd));
2617 break;
2618 case 0x81: /* V9 fstox */
2619 gen_clear_float_exceptions();
2620 tcg_gen_helper_0_1(helper_fstox, cpu_fpr[rs2]);
2621 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2622 gen_op_store_DT0_fpr(DFPREG(rd));
2623 break;
2624 case 0x82: /* V9 fdtox */
2625 gen_op_load_fpr_DT1(DFPREG(rs2));
2626 gen_clear_float_exceptions();
2627 tcg_gen_helper_0_0(helper_fdtox);
2628 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2629 gen_op_store_DT0_fpr(DFPREG(rd));
2630 break;
2631 case 0x83: /* V9 fqtox */
2632 CHECK_FPU_FEATURE(dc, FLOAT128);
2633 gen_op_load_fpr_QT1(QFPREG(rs2));
2634 gen_clear_float_exceptions();
2635 tcg_gen_helper_0_0(helper_fqtox);
2636 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2637 gen_op_store_DT0_fpr(DFPREG(rd));
2638 break;
2639 case 0x84: /* V9 fxtos */
2640 gen_op_load_fpr_DT1(DFPREG(rs2));
2641 gen_clear_float_exceptions();
2642 tcg_gen_helper_1_0(helper_fxtos, cpu_tmp32);
2643 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2644 tcg_gen_mov_i32(cpu_fpr[rd], cpu_tmp32);
2645 break;
2646 case 0x88: /* V9 fxtod */
2647 gen_op_load_fpr_DT1(DFPREG(rs2));
2648 gen_clear_float_exceptions();
2649 tcg_gen_helper_0_0(helper_fxtod);
2650 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2651 gen_op_store_DT0_fpr(DFPREG(rd));
2652 break;
2653 case 0x8c: /* V9 fxtoq */
2654 CHECK_FPU_FEATURE(dc, FLOAT128);
2655 gen_op_load_fpr_DT1(DFPREG(rs2));
2656 gen_clear_float_exceptions();
2657 tcg_gen_helper_0_0(helper_fxtoq);
2658 tcg_gen_helper_0_0(helper_check_ieee_exceptions);
2659 gen_op_store_QT0_fpr(QFPREG(rd));
2660 break;
2661 #endif
2662 default:
2663 goto illegal_insn;
2665 } else if (xop == 0x35) { /* FPU Operations */
2666 #ifdef TARGET_SPARC64
2667 int cond;
2668 #endif
2669 if (gen_trap_ifnofpu(dc, cpu_cond))
2670 goto jmp_insn;
2671 gen_op_clear_ieee_excp_and_FTT();
2672 rs1 = GET_FIELD(insn, 13, 17);
2673 rs2 = GET_FIELD(insn, 27, 31);
2674 xop = GET_FIELD(insn, 18, 26);
2675 #ifdef TARGET_SPARC64
2676 if ((xop & 0x11f) == 0x005) { // V9 fmovsr
2677 int l1;
2679 l1 = gen_new_label();
2680 cond = GET_FIELD_SP(insn, 14, 17);
2681 cpu_src1 = get_src1(insn, cpu_src1);
2682 tcg_gen_brcondi_tl(gen_tcg_cond_reg[cond], cpu_src1,
2683 0, l1);
2684 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs2]);
2685 gen_set_label(l1);
2686 break;
2687 } else if ((xop & 0x11f) == 0x006) { // V9 fmovdr
2688 int l1;
2690 l1 = gen_new_label();
2691 cond = GET_FIELD_SP(insn, 14, 17);
2692 cpu_src1 = get_src1(insn, cpu_src1);
2693 tcg_gen_brcondi_tl(gen_tcg_cond_reg[cond], cpu_src1,
2694 0, l1);
2695 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs2)]);
2696 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd) + 1], cpu_fpr[DFPREG(rs2) + 1]);
2697 gen_set_label(l1);
2698 break;
2699 } else if ((xop & 0x11f) == 0x007) { // V9 fmovqr
2700 int l1;
2702 CHECK_FPU_FEATURE(dc, FLOAT128);
2703 l1 = gen_new_label();
2704 cond = GET_FIELD_SP(insn, 14, 17);
2705 cpu_src1 = get_src1(insn, cpu_src1);
2706 tcg_gen_brcondi_tl(gen_tcg_cond_reg[cond], cpu_src1,
2707 0, l1);
2708 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd)], cpu_fpr[QFPREG(rs2)]);
2709 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 1], cpu_fpr[QFPREG(rs2) + 1]);
2710 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 2], cpu_fpr[QFPREG(rs2) + 2]);
2711 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 3], cpu_fpr[QFPREG(rs2) + 3]);
2712 gen_set_label(l1);
2713 break;
2715 #endif
2716 switch (xop) {
2717 #ifdef TARGET_SPARC64
2718 #define FMOVSCC(fcc) \
2720 TCGv r_cond; \
2721 int l1; \
2723 l1 = gen_new_label(); \
2724 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2725 cond = GET_FIELD_SP(insn, 14, 17); \
2726 gen_fcond(r_cond, fcc, cond); \
2727 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2728 0, l1); \
2729 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs2]); \
2730 gen_set_label(l1); \
2731 tcg_temp_free(r_cond); \
2733 #define FMOVDCC(fcc) \
2735 TCGv r_cond; \
2736 int l1; \
2738 l1 = gen_new_label(); \
2739 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2740 cond = GET_FIELD_SP(insn, 14, 17); \
2741 gen_fcond(r_cond, fcc, cond); \
2742 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2743 0, l1); \
2744 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd)], \
2745 cpu_fpr[DFPREG(rs2)]); \
2746 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd) + 1], \
2747 cpu_fpr[DFPREG(rs2) + 1]); \
2748 gen_set_label(l1); \
2749 tcg_temp_free(r_cond); \
2751 #define FMOVQCC(fcc) \
2753 TCGv r_cond; \
2754 int l1; \
2756 l1 = gen_new_label(); \
2757 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2758 cond = GET_FIELD_SP(insn, 14, 17); \
2759 gen_fcond(r_cond, fcc, cond); \
2760 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2761 0, l1); \
2762 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd)], \
2763 cpu_fpr[QFPREG(rs2)]); \
2764 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 1], \
2765 cpu_fpr[QFPREG(rs2) + 1]); \
2766 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 2], \
2767 cpu_fpr[QFPREG(rs2) + 2]); \
2768 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 3], \
2769 cpu_fpr[QFPREG(rs2) + 3]); \
2770 gen_set_label(l1); \
2771 tcg_temp_free(r_cond); \
2773 case 0x001: /* V9 fmovscc %fcc0 */
2774 FMOVSCC(0);
2775 break;
2776 case 0x002: /* V9 fmovdcc %fcc0 */
2777 FMOVDCC(0);
2778 break;
2779 case 0x003: /* V9 fmovqcc %fcc0 */
2780 CHECK_FPU_FEATURE(dc, FLOAT128);
2781 FMOVQCC(0);
2782 break;
2783 case 0x041: /* V9 fmovscc %fcc1 */
2784 FMOVSCC(1);
2785 break;
2786 case 0x042: /* V9 fmovdcc %fcc1 */
2787 FMOVDCC(1);
2788 break;
2789 case 0x043: /* V9 fmovqcc %fcc1 */
2790 CHECK_FPU_FEATURE(dc, FLOAT128);
2791 FMOVQCC(1);
2792 break;
2793 case 0x081: /* V9 fmovscc %fcc2 */
2794 FMOVSCC(2);
2795 break;
2796 case 0x082: /* V9 fmovdcc %fcc2 */
2797 FMOVDCC(2);
2798 break;
2799 case 0x083: /* V9 fmovqcc %fcc2 */
2800 CHECK_FPU_FEATURE(dc, FLOAT128);
2801 FMOVQCC(2);
2802 break;
2803 case 0x0c1: /* V9 fmovscc %fcc3 */
2804 FMOVSCC(3);
2805 break;
2806 case 0x0c2: /* V9 fmovdcc %fcc3 */
2807 FMOVDCC(3);
2808 break;
2809 case 0x0c3: /* V9 fmovqcc %fcc3 */
2810 CHECK_FPU_FEATURE(dc, FLOAT128);
2811 FMOVQCC(3);
2812 break;
2813 #undef FMOVSCC
2814 #undef FMOVDCC
2815 #undef FMOVQCC
2816 #define FMOVCC(size_FDQ, icc) \
2818 TCGv r_cond; \
2819 int l1; \
2821 l1 = gen_new_label(); \
2822 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2823 cond = GET_FIELD_SP(insn, 14, 17); \
2824 gen_cond(r_cond, icc, cond); \
2825 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2826 0, l1); \
2827 glue(glue(gen_op_load_fpr_, size_FDQ), T0) \
2828 (glue(size_FDQ, FPREG(rs2))); \
2829 glue(glue(gen_op_store_, size_FDQ), T0_fpr) \
2830 (glue(size_FDQ, FPREG(rd))); \
2831 gen_set_label(l1); \
2832 tcg_temp_free(r_cond); \
2834 #define FMOVSCC(icc) \
2836 TCGv r_cond; \
2837 int l1; \
2839 l1 = gen_new_label(); \
2840 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2841 cond = GET_FIELD_SP(insn, 14, 17); \
2842 gen_cond(r_cond, icc, cond); \
2843 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2844 0, l1); \
2845 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs2]); \
2846 gen_set_label(l1); \
2847 tcg_temp_free(r_cond); \
2849 #define FMOVDCC(icc) \
2851 TCGv r_cond; \
2852 int l1; \
2854 l1 = gen_new_label(); \
2855 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2856 cond = GET_FIELD_SP(insn, 14, 17); \
2857 gen_cond(r_cond, icc, cond); \
2858 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2859 0, l1); \
2860 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd)], \
2861 cpu_fpr[DFPREG(rs2)]); \
2862 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd) + 1], \
2863 cpu_fpr[DFPREG(rs2) + 1]); \
2864 gen_set_label(l1); \
2865 tcg_temp_free(r_cond); \
2867 #define FMOVQCC(icc) \
2869 TCGv r_cond; \
2870 int l1; \
2872 l1 = gen_new_label(); \
2873 r_cond = tcg_temp_new(TCG_TYPE_TL); \
2874 cond = GET_FIELD_SP(insn, 14, 17); \
2875 gen_cond(r_cond, icc, cond); \
2876 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, \
2877 0, l1); \
2878 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd)], \
2879 cpu_fpr[QFPREG(rs2)]); \
2880 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 1], \
2881 cpu_fpr[QFPREG(rs2) + 1]); \
2882 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 2], \
2883 cpu_fpr[QFPREG(rs2) + 2]); \
2884 tcg_gen_mov_i32(cpu_fpr[QFPREG(rd) + 3], \
2885 cpu_fpr[QFPREG(rs2) + 3]); \
2886 gen_set_label(l1); \
2887 tcg_temp_free(r_cond); \
2890 case 0x101: /* V9 fmovscc %icc */
2891 FMOVSCC(0);
2892 break;
2893 case 0x102: /* V9 fmovdcc %icc */
2894 FMOVDCC(0);
2895 case 0x103: /* V9 fmovqcc %icc */
2896 CHECK_FPU_FEATURE(dc, FLOAT128);
2897 FMOVQCC(0);
2898 break;
2899 case 0x181: /* V9 fmovscc %xcc */
2900 FMOVSCC(1);
2901 break;
2902 case 0x182: /* V9 fmovdcc %xcc */
2903 FMOVDCC(1);
2904 break;
2905 case 0x183: /* V9 fmovqcc %xcc */
2906 CHECK_FPU_FEATURE(dc, FLOAT128);
2907 FMOVQCC(1);
2908 break;
2909 #undef FMOVSCC
2910 #undef FMOVDCC
2911 #undef FMOVQCC
2912 #endif
2913 case 0x51: /* fcmps, V9 %fcc */
2914 gen_op_fcmps(rd & 3, cpu_fpr[rs1], cpu_fpr[rs2]);
2915 break;
2916 case 0x52: /* fcmpd, V9 %fcc */
2917 gen_op_load_fpr_DT0(DFPREG(rs1));
2918 gen_op_load_fpr_DT1(DFPREG(rs2));
2919 gen_op_fcmpd(rd & 3);
2920 break;
2921 case 0x53: /* fcmpq, V9 %fcc */
2922 CHECK_FPU_FEATURE(dc, FLOAT128);
2923 gen_op_load_fpr_QT0(QFPREG(rs1));
2924 gen_op_load_fpr_QT1(QFPREG(rs2));
2925 gen_op_fcmpq(rd & 3);
2926 break;
2927 case 0x55: /* fcmpes, V9 %fcc */
2928 gen_op_fcmpes(rd & 3, cpu_fpr[rs1], cpu_fpr[rs2]);
2929 break;
2930 case 0x56: /* fcmped, V9 %fcc */
2931 gen_op_load_fpr_DT0(DFPREG(rs1));
2932 gen_op_load_fpr_DT1(DFPREG(rs2));
2933 gen_op_fcmped(rd & 3);
2934 break;
2935 case 0x57: /* fcmpeq, V9 %fcc */
2936 CHECK_FPU_FEATURE(dc, FLOAT128);
2937 gen_op_load_fpr_QT0(QFPREG(rs1));
2938 gen_op_load_fpr_QT1(QFPREG(rs2));
2939 gen_op_fcmpeq(rd & 3);
2940 break;
2941 default:
2942 goto illegal_insn;
2944 } else if (xop == 0x2) {
2945 // clr/mov shortcut
2947 rs1 = GET_FIELD(insn, 13, 17);
2948 if (rs1 == 0) {
2949 // or %g0, x, y -> mov T0, x; mov y, T0
2950 if (IS_IMM) { /* immediate */
2951 TCGv r_const;
2953 rs2 = GET_FIELDs(insn, 19, 31);
2954 r_const = tcg_const_tl((int)rs2);
2955 gen_movl_TN_reg(rd, r_const);
2956 tcg_temp_free(r_const);
2957 } else { /* register */
2958 rs2 = GET_FIELD(insn, 27, 31);
2959 gen_movl_reg_TN(rs2, cpu_dst);
2960 gen_movl_TN_reg(rd, cpu_dst);
2962 } else {
2963 cpu_src1 = get_src1(insn, cpu_src1);
2964 if (IS_IMM) { /* immediate */
2965 rs2 = GET_FIELDs(insn, 19, 31);
2966 tcg_gen_ori_tl(cpu_dst, cpu_src1, (int)rs2);
2967 gen_movl_TN_reg(rd, cpu_dst);
2968 } else { /* register */
2969 // or x, %g0, y -> mov T1, x; mov y, T1
2970 rs2 = GET_FIELD(insn, 27, 31);
2971 if (rs2 != 0) {
2972 gen_movl_reg_TN(rs2, cpu_src2);
2973 tcg_gen_or_tl(cpu_dst, cpu_src1, cpu_src2);
2974 gen_movl_TN_reg(rd, cpu_dst);
2975 } else
2976 gen_movl_TN_reg(rd, cpu_src1);
2979 #ifdef TARGET_SPARC64
2980 } else if (xop == 0x25) { /* sll, V9 sllx */
2981 cpu_src1 = get_src1(insn, cpu_src1);
2982 if (IS_IMM) { /* immediate */
2983 rs2 = GET_FIELDs(insn, 20, 31);
2984 if (insn & (1 << 12)) {
2985 tcg_gen_shli_i64(cpu_dst, cpu_src1, rs2 & 0x3f);
2986 } else {
2987 tcg_gen_shli_i64(cpu_dst, cpu_src1, rs2 & 0x1f);
2989 } else { /* register */
2990 rs2 = GET_FIELD(insn, 27, 31);
2991 gen_movl_reg_TN(rs2, cpu_src2);
2992 if (insn & (1 << 12)) {
2993 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
2994 } else {
2995 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
2997 tcg_gen_shl_i64(cpu_dst, cpu_src1, cpu_tmp0);
2999 gen_movl_TN_reg(rd, cpu_dst);
3000 } else if (xop == 0x26) { /* srl, V9 srlx */
3001 cpu_src1 = get_src1(insn, cpu_src1);
3002 if (IS_IMM) { /* immediate */
3003 rs2 = GET_FIELDs(insn, 20, 31);
3004 if (insn & (1 << 12)) {
3005 tcg_gen_shri_i64(cpu_dst, cpu_src1, rs2 & 0x3f);
3006 } else {
3007 tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
3008 tcg_gen_shri_i64(cpu_dst, cpu_dst, rs2 & 0x1f);
3010 } else { /* register */
3011 rs2 = GET_FIELD(insn, 27, 31);
3012 gen_movl_reg_TN(rs2, cpu_src2);
3013 if (insn & (1 << 12)) {
3014 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
3015 tcg_gen_shr_i64(cpu_dst, cpu_src1, cpu_tmp0);
3016 } else {
3017 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
3018 tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
3019 tcg_gen_shr_i64(cpu_dst, cpu_dst, cpu_tmp0);
3022 gen_movl_TN_reg(rd, cpu_dst);
3023 } else if (xop == 0x27) { /* sra, V9 srax */
3024 cpu_src1 = get_src1(insn, cpu_src1);
3025 if (IS_IMM) { /* immediate */
3026 rs2 = GET_FIELDs(insn, 20, 31);
3027 if (insn & (1 << 12)) {
3028 tcg_gen_sari_i64(cpu_dst, cpu_src1, rs2 & 0x3f);
3029 } else {
3030 tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
3031 tcg_gen_ext32s_i64(cpu_dst, cpu_dst);
3032 tcg_gen_sari_i64(cpu_dst, cpu_dst, rs2 & 0x1f);
3034 } else { /* register */
3035 rs2 = GET_FIELD(insn, 27, 31);
3036 gen_movl_reg_TN(rs2, cpu_src2);
3037 if (insn & (1 << 12)) {
3038 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
3039 tcg_gen_sar_i64(cpu_dst, cpu_src1, cpu_tmp0);
3040 } else {
3041 tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
3042 tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
3043 tcg_gen_ext32s_i64(cpu_dst, cpu_dst);
3044 tcg_gen_sar_i64(cpu_dst, cpu_dst, cpu_tmp0);
3047 gen_movl_TN_reg(rd, cpu_dst);
3048 #endif
3049 } else if (xop < 0x36) {
3050 cpu_src1 = get_src1(insn, cpu_src1);
3051 cpu_src2 = get_src2(insn, cpu_src2);
3052 if (xop < 0x20) {
3053 switch (xop & ~0x10) {
3054 case 0x0:
3055 if (xop & 0x10)
3056 gen_op_add_cc(cpu_dst, cpu_src1, cpu_src2);
3057 else
3058 tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
3059 break;
3060 case 0x1:
3061 tcg_gen_and_tl(cpu_dst, cpu_src1, cpu_src2);
3062 if (xop & 0x10)
3063 gen_op_logic_cc(cpu_dst);
3064 break;
3065 case 0x2:
3066 tcg_gen_or_tl(cpu_dst, cpu_src1, cpu_src2);
3067 if (xop & 0x10)
3068 gen_op_logic_cc(cpu_dst);
3069 break;
3070 case 0x3:
3071 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
3072 if (xop & 0x10)
3073 gen_op_logic_cc(cpu_dst);
3074 break;
3075 case 0x4:
3076 if (xop & 0x10)
3077 gen_op_sub_cc(cpu_dst, cpu_src1, cpu_src2);
3078 else
3079 tcg_gen_sub_tl(cpu_dst, cpu_src1, cpu_src2);
3080 break;
3081 case 0x5:
3082 tcg_gen_andc_tl(cpu_dst, cpu_src1, cpu_src2);
3083 if (xop & 0x10)
3084 gen_op_logic_cc(cpu_dst);
3085 break;
3086 case 0x6:
3087 tcg_gen_orc_tl(cpu_dst, cpu_src1, cpu_src2);
3088 if (xop & 0x10)
3089 gen_op_logic_cc(cpu_dst);
3090 break;
3091 case 0x7:
3092 tcg_gen_not_tl(cpu_tmp0, cpu_src2);
3093 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_tmp0);
3094 if (xop & 0x10)
3095 gen_op_logic_cc(cpu_dst);
3096 break;
3097 case 0x8:
3098 if (xop & 0x10)
3099 gen_op_addx_cc(cpu_dst, cpu_src1, cpu_src2);
3100 else {
3101 gen_mov_reg_C(cpu_tmp0, cpu_psr);
3102 tcg_gen_add_tl(cpu_tmp0, cpu_src2, cpu_tmp0);
3103 tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_tmp0);
3105 break;
3106 #ifdef TARGET_SPARC64
3107 case 0x9: /* V9 mulx */
3108 tcg_gen_mul_i64(cpu_dst, cpu_src1, cpu_src2);
3109 break;
3110 #endif
3111 case 0xa:
3112 CHECK_IU_FEATURE(dc, MUL);
3113 gen_op_umul(cpu_dst, cpu_src1, cpu_src2);
3114 if (xop & 0x10)
3115 gen_op_logic_cc(cpu_dst);
3116 break;
3117 case 0xb:
3118 CHECK_IU_FEATURE(dc, MUL);
3119 gen_op_smul(cpu_dst, cpu_src1, cpu_src2);
3120 if (xop & 0x10)
3121 gen_op_logic_cc(cpu_dst);
3122 break;
3123 case 0xc:
3124 if (xop & 0x10)
3125 gen_op_subx_cc(cpu_dst, cpu_src1, cpu_src2);
3126 else {
3127 gen_mov_reg_C(cpu_tmp0, cpu_psr);
3128 tcg_gen_add_tl(cpu_tmp0, cpu_src2, cpu_tmp0);
3129 tcg_gen_sub_tl(cpu_dst, cpu_src1, cpu_tmp0);
3131 break;
3132 #ifdef TARGET_SPARC64
3133 case 0xd: /* V9 udivx */
3134 tcg_gen_mov_tl(cpu_cc_src, cpu_src1);
3135 tcg_gen_mov_tl(cpu_cc_src2, cpu_src2);
3136 gen_trap_ifdivzero_tl(cpu_cc_src2);
3137 tcg_gen_divu_i64(cpu_dst, cpu_cc_src, cpu_cc_src2);
3138 break;
3139 #endif
3140 case 0xe:
3141 CHECK_IU_FEATURE(dc, DIV);
3142 tcg_gen_helper_1_2(helper_udiv, cpu_dst, cpu_src1,
3143 cpu_src2);
3144 if (xop & 0x10)
3145 gen_op_div_cc(cpu_dst);
3146 break;
3147 case 0xf:
3148 CHECK_IU_FEATURE(dc, DIV);
3149 tcg_gen_helper_1_2(helper_sdiv, cpu_dst, cpu_src1,
3150 cpu_src2);
3151 if (xop & 0x10)
3152 gen_op_div_cc(cpu_dst);
3153 break;
3154 default:
3155 goto illegal_insn;
3157 gen_movl_TN_reg(rd, cpu_dst);
3158 } else {
3159 switch (xop) {
3160 case 0x20: /* taddcc */
3161 gen_op_tadd_cc(cpu_dst, cpu_src1, cpu_src2);
3162 gen_movl_TN_reg(rd, cpu_dst);
3163 break;
3164 case 0x21: /* tsubcc */
3165 gen_op_tsub_cc(cpu_dst, cpu_src1, cpu_src2);
3166 gen_movl_TN_reg(rd, cpu_dst);
3167 break;
3168 case 0x22: /* taddcctv */
3169 save_state(dc, cpu_cond);
3170 gen_op_tadd_ccTV(cpu_dst, cpu_src1, cpu_src2);
3171 gen_movl_TN_reg(rd, cpu_dst);
3172 break;
3173 case 0x23: /* tsubcctv */
3174 save_state(dc, cpu_cond);
3175 gen_op_tsub_ccTV(cpu_dst, cpu_src1, cpu_src2);
3176 gen_movl_TN_reg(rd, cpu_dst);
3177 break;
3178 case 0x24: /* mulscc */
3179 gen_op_mulscc(cpu_dst, cpu_src1, cpu_src2);
3180 gen_movl_TN_reg(rd, cpu_dst);
3181 break;
3182 #ifndef TARGET_SPARC64
3183 case 0x25: /* sll */
3184 if (IS_IMM) { /* immediate */
3185 rs2 = GET_FIELDs(insn, 20, 31);
3186 tcg_gen_shli_tl(cpu_dst, cpu_src1, rs2 & 0x1f);
3187 } else { /* register */
3188 tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
3189 tcg_gen_shl_tl(cpu_dst, cpu_src1, cpu_tmp0);
3191 gen_movl_TN_reg(rd, cpu_dst);
3192 break;
3193 case 0x26: /* srl */
3194 if (IS_IMM) { /* immediate */
3195 rs2 = GET_FIELDs(insn, 20, 31);
3196 tcg_gen_shri_tl(cpu_dst, cpu_src1, rs2 & 0x1f);
3197 } else { /* register */
3198 tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
3199 tcg_gen_shr_tl(cpu_dst, cpu_src1, cpu_tmp0);
3201 gen_movl_TN_reg(rd, cpu_dst);
3202 break;
3203 case 0x27: /* sra */
3204 if (IS_IMM) { /* immediate */
3205 rs2 = GET_FIELDs(insn, 20, 31);
3206 tcg_gen_sari_tl(cpu_dst, cpu_src1, rs2 & 0x1f);
3207 } else { /* register */
3208 tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
3209 tcg_gen_sar_tl(cpu_dst, cpu_src1, cpu_tmp0);
3211 gen_movl_TN_reg(rd, cpu_dst);
3212 break;
3213 #endif
3214 case 0x30:
3216 switch(rd) {
3217 case 0: /* wry */
3218 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
3219 tcg_gen_andi_tl(cpu_y, cpu_tmp0, 0xffffffff);
3220 break;
3221 #ifndef TARGET_SPARC64
3222 case 0x01 ... 0x0f: /* undefined in the
3223 SPARCv8 manual, nop
3224 on the microSPARC
3225 II */
3226 case 0x10 ... 0x1f: /* implementation-dependent
3227 in the SPARCv8
3228 manual, nop on the
3229 microSPARC II */
3230 break;
3231 #else
3232 case 0x2: /* V9 wrccr */
3233 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
3234 tcg_gen_helper_0_1(helper_wrccr, cpu_dst);
3235 break;
3236 case 0x3: /* V9 wrasi */
3237 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
3238 tcg_gen_trunc_tl_i32(cpu_asi, cpu_dst);
3239 break;
3240 case 0x6: /* V9 wrfprs */
3241 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
3242 tcg_gen_trunc_tl_i32(cpu_fprs, cpu_dst);
3243 save_state(dc, cpu_cond);
3244 gen_op_next_insn();
3245 tcg_gen_exit_tb(0);
3246 dc->is_br = 1;
3247 break;
3248 case 0xf: /* V9 sir, nop if user */
3249 #if !defined(CONFIG_USER_ONLY)
3250 if (supervisor(dc))
3251 ; // XXX
3252 #endif
3253 break;
3254 case 0x13: /* Graphics Status */
3255 if (gen_trap_ifnofpu(dc, cpu_cond))
3256 goto jmp_insn;
3257 tcg_gen_xor_tl(cpu_gsr, cpu_src1, cpu_src2);
3258 break;
3259 case 0x14: /* Softint set */
3260 if (!supervisor(dc))
3261 goto illegal_insn;
3262 tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
3263 tcg_gen_helper_0_1(helper_set_softint,
3264 cpu_tmp64);
3265 break;
3266 case 0x15: /* Softint clear */
3267 if (!supervisor(dc))
3268 goto illegal_insn;
3269 tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
3270 tcg_gen_helper_0_1(helper_clear_softint,
3271 cpu_tmp64);
3272 break;
3273 case 0x16: /* Softint write */
3274 if (!supervisor(dc))
3275 goto illegal_insn;
3276 tcg_gen_xor_tl(cpu_tmp64, cpu_src1, cpu_src2);
3277 tcg_gen_helper_0_1(helper_write_softint,
3278 cpu_tmp64);
3279 break;
3280 case 0x17: /* Tick compare */
3281 #if !defined(CONFIG_USER_ONLY)
3282 if (!supervisor(dc))
3283 goto illegal_insn;
3284 #endif
3286 TCGv r_tickptr;
3288 tcg_gen_xor_tl(cpu_tick_cmpr, cpu_src1,
3289 cpu_src2);
3290 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
3291 tcg_gen_ld_ptr(r_tickptr, cpu_env,
3292 offsetof(CPUState, tick));
3293 tcg_gen_helper_0_2(helper_tick_set_limit,
3294 r_tickptr, cpu_tick_cmpr);
3295 tcg_temp_free(r_tickptr);
3297 break;
3298 case 0x18: /* System tick */
3299 #if !defined(CONFIG_USER_ONLY)
3300 if (!supervisor(dc))
3301 goto illegal_insn;
3302 #endif
3304 TCGv r_tickptr;
3306 tcg_gen_xor_tl(cpu_dst, cpu_src1,
3307 cpu_src2);
3308 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
3309 tcg_gen_ld_ptr(r_tickptr, cpu_env,
3310 offsetof(CPUState, stick));
3311 tcg_gen_helper_0_2(helper_tick_set_count,
3312 r_tickptr, cpu_dst);
3313 tcg_temp_free(r_tickptr);
3315 break;
3316 case 0x19: /* System tick compare */
3317 #if !defined(CONFIG_USER_ONLY)
3318 if (!supervisor(dc))
3319 goto illegal_insn;
3320 #endif
3322 TCGv r_tickptr;
3324 tcg_gen_xor_tl(cpu_stick_cmpr, cpu_src1,
3325 cpu_src2);
3326 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
3327 tcg_gen_ld_ptr(r_tickptr, cpu_env,
3328 offsetof(CPUState, stick));
3329 tcg_gen_helper_0_2(helper_tick_set_limit,
3330 r_tickptr, cpu_stick_cmpr);
3331 tcg_temp_free(r_tickptr);
3333 break;
3335 case 0x10: /* Performance Control */
3336 case 0x11: /* Performance Instrumentation
3337 Counter */
3338 case 0x12: /* Dispatch Control */
3339 #endif
3340 default:
3341 goto illegal_insn;
3344 break;
3345 #if !defined(CONFIG_USER_ONLY)
3346 case 0x31: /* wrpsr, V9 saved, restored */
3348 if (!supervisor(dc))
3349 goto priv_insn;
3350 #ifdef TARGET_SPARC64
3351 switch (rd) {
3352 case 0:
3353 tcg_gen_helper_0_0(helper_saved);
3354 break;
3355 case 1:
3356 tcg_gen_helper_0_0(helper_restored);
3357 break;
3358 case 2: /* UA2005 allclean */
3359 case 3: /* UA2005 otherw */
3360 case 4: /* UA2005 normalw */
3361 case 5: /* UA2005 invalw */
3362 // XXX
3363 default:
3364 goto illegal_insn;
3366 #else
3367 tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
3368 tcg_gen_helper_0_1(helper_wrpsr, cpu_dst);
3369 save_state(dc, cpu_cond);
3370 gen_op_next_insn();
3371 tcg_gen_exit_tb(0);
3372 dc->is_br = 1;
3373 #endif
3375 break;
3376 case 0x32: /* wrwim, V9 wrpr */
3378 if (!supervisor(dc))
3379 goto priv_insn;
3380 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
3381 #ifdef TARGET_SPARC64
3382 switch (rd) {
3383 case 0: // tpc
3385 TCGv r_tsptr;
3387 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
3388 tcg_gen_ld_ptr(r_tsptr, cpu_env,
3389 offsetof(CPUState, tsptr));
3390 tcg_gen_st_tl(cpu_tmp0, r_tsptr,
3391 offsetof(trap_state, tpc));
3392 tcg_temp_free(r_tsptr);
3394 break;
3395 case 1: // tnpc
3397 TCGv r_tsptr;
3399 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
3400 tcg_gen_ld_ptr(r_tsptr, cpu_env,
3401 offsetof(CPUState, tsptr));
3402 tcg_gen_st_tl(cpu_tmp0, r_tsptr,
3403 offsetof(trap_state, tnpc));
3404 tcg_temp_free(r_tsptr);
3406 break;
3407 case 2: // tstate
3409 TCGv r_tsptr;
3411 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
3412 tcg_gen_ld_ptr(r_tsptr, cpu_env,
3413 offsetof(CPUState, tsptr));
3414 tcg_gen_st_tl(cpu_tmp0, r_tsptr,
3415 offsetof(trap_state,
3416 tstate));
3417 tcg_temp_free(r_tsptr);
3419 break;
3420 case 3: // tt
3422 TCGv r_tsptr;
3424 r_tsptr = tcg_temp_new(TCG_TYPE_PTR);
3425 tcg_gen_ld_ptr(r_tsptr, cpu_env,
3426 offsetof(CPUState, tsptr));
3427 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3428 tcg_gen_st_i32(cpu_tmp32, r_tsptr,
3429 offsetof(trap_state, tt));
3430 tcg_temp_free(r_tsptr);
3432 break;
3433 case 4: // tick
3435 TCGv r_tickptr;
3437 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
3438 tcg_gen_ld_ptr(r_tickptr, cpu_env,
3439 offsetof(CPUState, tick));
3440 tcg_gen_helper_0_2(helper_tick_set_count,
3441 r_tickptr, cpu_tmp0);
3442 tcg_temp_free(r_tickptr);
3444 break;
3445 case 5: // tba
3446 tcg_gen_mov_tl(cpu_tbr, cpu_tmp0);
3447 break;
3448 case 6: // pstate
3449 save_state(dc, cpu_cond);
3450 tcg_gen_helper_0_1(helper_wrpstate, cpu_tmp0);
3451 gen_op_next_insn();
3452 tcg_gen_exit_tb(0);
3453 dc->is_br = 1;
3454 break;
3455 case 7: // tl
3456 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3457 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3458 offsetof(CPUSPARCState, tl));
3459 break;
3460 case 8: // pil
3461 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3462 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3463 offsetof(CPUSPARCState,
3464 psrpil));
3465 break;
3466 case 9: // cwp
3467 tcg_gen_helper_0_1(helper_wrcwp, cpu_tmp0);
3468 break;
3469 case 10: // cansave
3470 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3471 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3472 offsetof(CPUSPARCState,
3473 cansave));
3474 break;
3475 case 11: // canrestore
3476 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3477 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3478 offsetof(CPUSPARCState,
3479 canrestore));
3480 break;
3481 case 12: // cleanwin
3482 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3483 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3484 offsetof(CPUSPARCState,
3485 cleanwin));
3486 break;
3487 case 13: // otherwin
3488 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3489 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3490 offsetof(CPUSPARCState,
3491 otherwin));
3492 break;
3493 case 14: // wstate
3494 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3495 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3496 offsetof(CPUSPARCState,
3497 wstate));
3498 break;
3499 case 16: // UA2005 gl
3500 CHECK_IU_FEATURE(dc, GL);
3501 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3502 tcg_gen_st_i32(cpu_tmp32, cpu_env,
3503 offsetof(CPUSPARCState, gl));
3504 break;
3505 case 26: // UA2005 strand status
3506 CHECK_IU_FEATURE(dc, HYPV);
3507 if (!hypervisor(dc))
3508 goto priv_insn;
3509 tcg_gen_mov_tl(cpu_ssr, cpu_tmp0);
3510 break;
3511 default:
3512 goto illegal_insn;
3514 #else
3515 tcg_gen_trunc_tl_i32(cpu_tmp32, cpu_tmp0);
3516 if (dc->def->nwindows != 32)
3517 tcg_gen_andi_tl(cpu_tmp32, cpu_tmp32,
3518 (1 << dc->def->nwindows) - 1);
3519 tcg_gen_mov_i32(cpu_wim, cpu_tmp32);
3520 #endif
3522 break;
3523 case 0x33: /* wrtbr, UA2005 wrhpr */
3525 #ifndef TARGET_SPARC64
3526 if (!supervisor(dc))
3527 goto priv_insn;
3528 tcg_gen_xor_tl(cpu_tbr, cpu_src1, cpu_src2);
3529 #else
3530 CHECK_IU_FEATURE(dc, HYPV);
3531 if (!hypervisor(dc))
3532 goto priv_insn;
3533 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
3534 switch (rd) {
3535 case 0: // hpstate
3536 // XXX gen_op_wrhpstate();
3537 save_state(dc, cpu_cond);
3538 gen_op_next_insn();
3539 tcg_gen_exit_tb(0);
3540 dc->is_br = 1;
3541 break;
3542 case 1: // htstate
3543 // XXX gen_op_wrhtstate();
3544 break;
3545 case 3: // hintp
3546 tcg_gen_mov_tl(cpu_hintp, cpu_tmp0);
3547 break;
3548 case 5: // htba
3549 tcg_gen_mov_tl(cpu_htba, cpu_tmp0);
3550 break;
3551 case 31: // hstick_cmpr
3553 TCGv r_tickptr;
3555 tcg_gen_mov_tl(cpu_hstick_cmpr, cpu_tmp0);
3556 r_tickptr = tcg_temp_new(TCG_TYPE_PTR);
3557 tcg_gen_ld_ptr(r_tickptr, cpu_env,
3558 offsetof(CPUState, hstick));
3559 tcg_gen_helper_0_2(helper_tick_set_limit,
3560 r_tickptr, cpu_hstick_cmpr);
3561 tcg_temp_free(r_tickptr);
3563 break;
3564 case 6: // hver readonly
3565 default:
3566 goto illegal_insn;
3568 #endif
3570 break;
3571 #endif
3572 #ifdef TARGET_SPARC64
3573 case 0x2c: /* V9 movcc */
3575 int cc = GET_FIELD_SP(insn, 11, 12);
3576 int cond = GET_FIELD_SP(insn, 14, 17);
3577 TCGv r_cond;
3578 int l1;
3580 r_cond = tcg_temp_new(TCG_TYPE_TL);
3581 if (insn & (1 << 18)) {
3582 if (cc == 0)
3583 gen_cond(r_cond, 0, cond);
3584 else if (cc == 2)
3585 gen_cond(r_cond, 1, cond);
3586 else
3587 goto illegal_insn;
3588 } else {
3589 gen_fcond(r_cond, cc, cond);
3592 l1 = gen_new_label();
3594 tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
3595 if (IS_IMM) { /* immediate */
3596 TCGv r_const;
3598 rs2 = GET_FIELD_SPs(insn, 0, 10);
3599 r_const = tcg_const_tl((int)rs2);
3600 gen_movl_TN_reg(rd, r_const);
3601 tcg_temp_free(r_const);
3602 } else {
3603 rs2 = GET_FIELD_SP(insn, 0, 4);
3604 gen_movl_reg_TN(rs2, cpu_tmp0);
3605 gen_movl_TN_reg(rd, cpu_tmp0);
3607 gen_set_label(l1);
3608 tcg_temp_free(r_cond);
3609 break;
3611 case 0x2d: /* V9 sdivx */
3612 gen_op_sdivx(cpu_dst, cpu_src1, cpu_src2);
3613 gen_movl_TN_reg(rd, cpu_dst);
3614 break;
3615 case 0x2e: /* V9 popc */
3617 cpu_src2 = get_src2(insn, cpu_src2);
3618 tcg_gen_helper_1_1(helper_popc, cpu_dst,
3619 cpu_src2);
3620 gen_movl_TN_reg(rd, cpu_dst);
3622 case 0x2f: /* V9 movr */
3624 int cond = GET_FIELD_SP(insn, 10, 12);
3625 int l1;
3627 cpu_src1 = get_src1(insn, cpu_src1);
3629 l1 = gen_new_label();
3631 tcg_gen_brcondi_tl(gen_tcg_cond_reg[cond],
3632 cpu_src1, 0, l1);
3633 if (IS_IMM) { /* immediate */
3634 TCGv r_const;
3636 rs2 = GET_FIELD_SPs(insn, 0, 9);
3637 r_const = tcg_const_tl((int)rs2);
3638 gen_movl_TN_reg(rd, r_const);
3639 tcg_temp_free(r_const);
3640 } else {
3641 rs2 = GET_FIELD_SP(insn, 0, 4);
3642 gen_movl_reg_TN(rs2, cpu_tmp0);
3643 gen_movl_TN_reg(rd, cpu_tmp0);
3645 gen_set_label(l1);
3646 break;
3648 #endif
3649 default:
3650 goto illegal_insn;
3653 } else if (xop == 0x36) { /* UltraSparc shutdown, VIS, V8 CPop1 */
3654 #ifdef TARGET_SPARC64
3655 int opf = GET_FIELD_SP(insn, 5, 13);
3656 rs1 = GET_FIELD(insn, 13, 17);
3657 rs2 = GET_FIELD(insn, 27, 31);
3658 if (gen_trap_ifnofpu(dc, cpu_cond))
3659 goto jmp_insn;
3661 switch (opf) {
3662 case 0x000: /* VIS I edge8cc */
3663 case 0x001: /* VIS II edge8n */
3664 case 0x002: /* VIS I edge8lcc */
3665 case 0x003: /* VIS II edge8ln */
3666 case 0x004: /* VIS I edge16cc */
3667 case 0x005: /* VIS II edge16n */
3668 case 0x006: /* VIS I edge16lcc */
3669 case 0x007: /* VIS II edge16ln */
3670 case 0x008: /* VIS I edge32cc */
3671 case 0x009: /* VIS II edge32n */
3672 case 0x00a: /* VIS I edge32lcc */
3673 case 0x00b: /* VIS II edge32ln */
3674 // XXX
3675 goto illegal_insn;
3676 case 0x010: /* VIS I array8 */
3677 CHECK_FPU_FEATURE(dc, VIS1);
3678 cpu_src1 = get_src1(insn, cpu_src1);
3679 gen_movl_reg_TN(rs2, cpu_src2);
3680 tcg_gen_helper_1_2(helper_array8, cpu_dst, cpu_src1,
3681 cpu_src2);
3682 gen_movl_TN_reg(rd, cpu_dst);
3683 break;
3684 case 0x012: /* VIS I array16 */
3685 CHECK_FPU_FEATURE(dc, VIS1);
3686 cpu_src1 = get_src1(insn, cpu_src1);
3687 gen_movl_reg_TN(rs2, cpu_src2);
3688 tcg_gen_helper_1_2(helper_array8, cpu_dst, cpu_src1,
3689 cpu_src2);
3690 tcg_gen_shli_i64(cpu_dst, cpu_dst, 1);
3691 gen_movl_TN_reg(rd, cpu_dst);
3692 break;
3693 case 0x014: /* VIS I array32 */
3694 CHECK_FPU_FEATURE(dc, VIS1);
3695 cpu_src1 = get_src1(insn, cpu_src1);
3696 gen_movl_reg_TN(rs2, cpu_src2);
3697 tcg_gen_helper_1_2(helper_array8, cpu_dst, cpu_src1,
3698 cpu_src2);
3699 tcg_gen_shli_i64(cpu_dst, cpu_dst, 2);
3700 gen_movl_TN_reg(rd, cpu_dst);
3701 break;
3702 case 0x018: /* VIS I alignaddr */
3703 CHECK_FPU_FEATURE(dc, VIS1);
3704 cpu_src1 = get_src1(insn, cpu_src1);
3705 gen_movl_reg_TN(rs2, cpu_src2);
3706 tcg_gen_helper_1_2(helper_alignaddr, cpu_dst, cpu_src1,
3707 cpu_src2);
3708 gen_movl_TN_reg(rd, cpu_dst);
3709 break;
3710 case 0x019: /* VIS II bmask */
3711 case 0x01a: /* VIS I alignaddrl */
3712 // XXX
3713 goto illegal_insn;
3714 case 0x020: /* VIS I fcmple16 */
3715 CHECK_FPU_FEATURE(dc, VIS1);
3716 gen_op_load_fpr_DT0(DFPREG(rs1));
3717 gen_op_load_fpr_DT1(DFPREG(rs2));
3718 tcg_gen_helper_0_0(helper_fcmple16);
3719 gen_op_store_DT0_fpr(DFPREG(rd));
3720 break;
3721 case 0x022: /* VIS I fcmpne16 */
3722 CHECK_FPU_FEATURE(dc, VIS1);
3723 gen_op_load_fpr_DT0(DFPREG(rs1));
3724 gen_op_load_fpr_DT1(DFPREG(rs2));
3725 tcg_gen_helper_0_0(helper_fcmpne16);
3726 gen_op_store_DT0_fpr(DFPREG(rd));
3727 break;
3728 case 0x024: /* VIS I fcmple32 */
3729 CHECK_FPU_FEATURE(dc, VIS1);
3730 gen_op_load_fpr_DT0(DFPREG(rs1));
3731 gen_op_load_fpr_DT1(DFPREG(rs2));
3732 tcg_gen_helper_0_0(helper_fcmple32);
3733 gen_op_store_DT0_fpr(DFPREG(rd));
3734 break;
3735 case 0x026: /* VIS I fcmpne32 */
3736 CHECK_FPU_FEATURE(dc, VIS1);
3737 gen_op_load_fpr_DT0(DFPREG(rs1));
3738 gen_op_load_fpr_DT1(DFPREG(rs2));
3739 tcg_gen_helper_0_0(helper_fcmpne32);
3740 gen_op_store_DT0_fpr(DFPREG(rd));
3741 break;
3742 case 0x028: /* VIS I fcmpgt16 */
3743 CHECK_FPU_FEATURE(dc, VIS1);
3744 gen_op_load_fpr_DT0(DFPREG(rs1));
3745 gen_op_load_fpr_DT1(DFPREG(rs2));
3746 tcg_gen_helper_0_0(helper_fcmpgt16);
3747 gen_op_store_DT0_fpr(DFPREG(rd));
3748 break;
3749 case 0x02a: /* VIS I fcmpeq16 */
3750 CHECK_FPU_FEATURE(dc, VIS1);
3751 gen_op_load_fpr_DT0(DFPREG(rs1));
3752 gen_op_load_fpr_DT1(DFPREG(rs2));
3753 tcg_gen_helper_0_0(helper_fcmpeq16);
3754 gen_op_store_DT0_fpr(DFPREG(rd));
3755 break;
3756 case 0x02c: /* VIS I fcmpgt32 */
3757 CHECK_FPU_FEATURE(dc, VIS1);
3758 gen_op_load_fpr_DT0(DFPREG(rs1));
3759 gen_op_load_fpr_DT1(DFPREG(rs2));
3760 tcg_gen_helper_0_0(helper_fcmpgt32);
3761 gen_op_store_DT0_fpr(DFPREG(rd));
3762 break;
3763 case 0x02e: /* VIS I fcmpeq32 */
3764 CHECK_FPU_FEATURE(dc, VIS1);
3765 gen_op_load_fpr_DT0(DFPREG(rs1));
3766 gen_op_load_fpr_DT1(DFPREG(rs2));
3767 tcg_gen_helper_0_0(helper_fcmpeq32);
3768 gen_op_store_DT0_fpr(DFPREG(rd));
3769 break;
3770 case 0x031: /* VIS I fmul8x16 */
3771 CHECK_FPU_FEATURE(dc, VIS1);
3772 gen_op_load_fpr_DT0(DFPREG(rs1));
3773 gen_op_load_fpr_DT1(DFPREG(rs2));
3774 tcg_gen_helper_0_0(helper_fmul8x16);
3775 gen_op_store_DT0_fpr(DFPREG(rd));
3776 break;
3777 case 0x033: /* VIS I fmul8x16au */
3778 CHECK_FPU_FEATURE(dc, VIS1);
3779 gen_op_load_fpr_DT0(DFPREG(rs1));
3780 gen_op_load_fpr_DT1(DFPREG(rs2));
3781 tcg_gen_helper_0_0(helper_fmul8x16au);
3782 gen_op_store_DT0_fpr(DFPREG(rd));
3783 break;
3784 case 0x035: /* VIS I fmul8x16al */
3785 CHECK_FPU_FEATURE(dc, VIS1);
3786 gen_op_load_fpr_DT0(DFPREG(rs1));
3787 gen_op_load_fpr_DT1(DFPREG(rs2));
3788 tcg_gen_helper_0_0(helper_fmul8x16al);
3789 gen_op_store_DT0_fpr(DFPREG(rd));
3790 break;
3791 case 0x036: /* VIS I fmul8sux16 */
3792 CHECK_FPU_FEATURE(dc, VIS1);
3793 gen_op_load_fpr_DT0(DFPREG(rs1));
3794 gen_op_load_fpr_DT1(DFPREG(rs2));
3795 tcg_gen_helper_0_0(helper_fmul8sux16);
3796 gen_op_store_DT0_fpr(DFPREG(rd));
3797 break;
3798 case 0x037: /* VIS I fmul8ulx16 */
3799 CHECK_FPU_FEATURE(dc, VIS1);
3800 gen_op_load_fpr_DT0(DFPREG(rs1));
3801 gen_op_load_fpr_DT1(DFPREG(rs2));
3802 tcg_gen_helper_0_0(helper_fmul8ulx16);
3803 gen_op_store_DT0_fpr(DFPREG(rd));
3804 break;
3805 case 0x038: /* VIS I fmuld8sux16 */
3806 CHECK_FPU_FEATURE(dc, VIS1);
3807 gen_op_load_fpr_DT0(DFPREG(rs1));
3808 gen_op_load_fpr_DT1(DFPREG(rs2));
3809 tcg_gen_helper_0_0(helper_fmuld8sux16);
3810 gen_op_store_DT0_fpr(DFPREG(rd));
3811 break;
3812 case 0x039: /* VIS I fmuld8ulx16 */
3813 CHECK_FPU_FEATURE(dc, VIS1);
3814 gen_op_load_fpr_DT0(DFPREG(rs1));
3815 gen_op_load_fpr_DT1(DFPREG(rs2));
3816 tcg_gen_helper_0_0(helper_fmuld8ulx16);
3817 gen_op_store_DT0_fpr(DFPREG(rd));
3818 break;
3819 case 0x03a: /* VIS I fpack32 */
3820 case 0x03b: /* VIS I fpack16 */
3821 case 0x03d: /* VIS I fpackfix */
3822 case 0x03e: /* VIS I pdist */
3823 // XXX
3824 goto illegal_insn;
3825 case 0x048: /* VIS I faligndata */
3826 CHECK_FPU_FEATURE(dc, VIS1);
3827 gen_op_load_fpr_DT0(DFPREG(rs1));
3828 gen_op_load_fpr_DT1(DFPREG(rs2));
3829 tcg_gen_helper_0_0(helper_faligndata);
3830 gen_op_store_DT0_fpr(DFPREG(rd));
3831 break;
3832 case 0x04b: /* VIS I fpmerge */
3833 CHECK_FPU_FEATURE(dc, VIS1);
3834 gen_op_load_fpr_DT0(DFPREG(rs1));
3835 gen_op_load_fpr_DT1(DFPREG(rs2));
3836 tcg_gen_helper_0_0(helper_fpmerge);
3837 gen_op_store_DT0_fpr(DFPREG(rd));
3838 break;
3839 case 0x04c: /* VIS II bshuffle */
3840 // XXX
3841 goto illegal_insn;
3842 case 0x04d: /* VIS I fexpand */
3843 CHECK_FPU_FEATURE(dc, VIS1);
3844 gen_op_load_fpr_DT0(DFPREG(rs1));
3845 gen_op_load_fpr_DT1(DFPREG(rs2));
3846 tcg_gen_helper_0_0(helper_fexpand);
3847 gen_op_store_DT0_fpr(DFPREG(rd));
3848 break;
3849 case 0x050: /* VIS I fpadd16 */
3850 CHECK_FPU_FEATURE(dc, VIS1);
3851 gen_op_load_fpr_DT0(DFPREG(rs1));
3852 gen_op_load_fpr_DT1(DFPREG(rs2));
3853 tcg_gen_helper_0_0(helper_fpadd16);
3854 gen_op_store_DT0_fpr(DFPREG(rd));
3855 break;
3856 case 0x051: /* VIS I fpadd16s */
3857 CHECK_FPU_FEATURE(dc, VIS1);
3858 tcg_gen_helper_1_2(helper_fpadd16s, cpu_fpr[rd],
3859 cpu_fpr[rs1], cpu_fpr[rs2]);
3860 break;
3861 case 0x052: /* VIS I fpadd32 */
3862 CHECK_FPU_FEATURE(dc, VIS1);
3863 gen_op_load_fpr_DT0(DFPREG(rs1));
3864 gen_op_load_fpr_DT1(DFPREG(rs2));
3865 tcg_gen_helper_0_0(helper_fpadd32);
3866 gen_op_store_DT0_fpr(DFPREG(rd));
3867 break;
3868 case 0x053: /* VIS I fpadd32s */
3869 CHECK_FPU_FEATURE(dc, VIS1);
3870 tcg_gen_helper_1_2(helper_fpadd32s, cpu_fpr[rd],
3871 cpu_fpr[rs1], cpu_fpr[rs2]);
3872 break;
3873 case 0x054: /* VIS I fpsub16 */
3874 CHECK_FPU_FEATURE(dc, VIS1);
3875 gen_op_load_fpr_DT0(DFPREG(rs1));
3876 gen_op_load_fpr_DT1(DFPREG(rs2));
3877 tcg_gen_helper_0_0(helper_fpsub16);
3878 gen_op_store_DT0_fpr(DFPREG(rd));
3879 break;
3880 case 0x055: /* VIS I fpsub16s */
3881 CHECK_FPU_FEATURE(dc, VIS1);
3882 tcg_gen_helper_1_2(helper_fpsub16s, cpu_fpr[rd],
3883 cpu_fpr[rs1], cpu_fpr[rs2]);
3884 break;
3885 case 0x056: /* VIS I fpsub32 */
3886 CHECK_FPU_FEATURE(dc, VIS1);
3887 gen_op_load_fpr_DT0(DFPREG(rs1));
3888 gen_op_load_fpr_DT1(DFPREG(rs2));
3889 tcg_gen_helper_0_0(helper_fpsub32);
3890 gen_op_store_DT0_fpr(DFPREG(rd));
3891 break;
3892 case 0x057: /* VIS I fpsub32s */
3893 CHECK_FPU_FEATURE(dc, VIS1);
3894 tcg_gen_helper_1_2(helper_fpsub32s, cpu_fpr[rd],
3895 cpu_fpr[rs1], cpu_fpr[rs2]);
3896 break;
3897 case 0x060: /* VIS I fzero */
3898 CHECK_FPU_FEATURE(dc, VIS1);
3899 tcg_gen_movi_i32(cpu_fpr[DFPREG(rd)], 0);
3900 tcg_gen_movi_i32(cpu_fpr[DFPREG(rd) + 1], 0);
3901 break;
3902 case 0x061: /* VIS I fzeros */
3903 CHECK_FPU_FEATURE(dc, VIS1);
3904 tcg_gen_movi_i32(cpu_fpr[rd], 0);
3905 break;
3906 case 0x062: /* VIS I fnor */
3907 CHECK_FPU_FEATURE(dc, VIS1);
3908 tcg_gen_nor_i32(cpu_tmp32, cpu_fpr[DFPREG(rs1)],
3909 cpu_fpr[DFPREG(rs2)]);
3910 tcg_gen_nor_i32(cpu_tmp32, cpu_fpr[DFPREG(rs1) + 1],
3911 cpu_fpr[DFPREG(rs2) + 1]);
3912 break;
3913 case 0x063: /* VIS I fnors */
3914 CHECK_FPU_FEATURE(dc, VIS1);
3915 tcg_gen_nor_i32(cpu_tmp32, cpu_fpr[rs1], cpu_fpr[rs2]);
3916 break;
3917 case 0x064: /* VIS I fandnot2 */
3918 CHECK_FPU_FEATURE(dc, VIS1);
3919 tcg_gen_andc_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)],
3920 cpu_fpr[DFPREG(rs2)]);
3921 tcg_gen_andc_i32(cpu_fpr[DFPREG(rd) + 1],
3922 cpu_fpr[DFPREG(rs1) + 1],
3923 cpu_fpr[DFPREG(rs2) + 1]);
3924 break;
3925 case 0x065: /* VIS I fandnot2s */
3926 CHECK_FPU_FEATURE(dc, VIS1);
3927 tcg_gen_andc_i32(cpu_fpr[rd], cpu_fpr[rs1], cpu_fpr[rs2]);
3928 break;
3929 case 0x066: /* VIS I fnot2 */
3930 CHECK_FPU_FEATURE(dc, VIS1);
3931 tcg_gen_not_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs2)]);
3932 tcg_gen_not_i32(cpu_fpr[DFPREG(rd) + 1],
3933 cpu_fpr[DFPREG(rs2) + 1]);
3934 break;
3935 case 0x067: /* VIS I fnot2s */
3936 CHECK_FPU_FEATURE(dc, VIS1);
3937 tcg_gen_not_i32(cpu_fpr[rd], cpu_fpr[rs2]);
3938 break;
3939 case 0x068: /* VIS I fandnot1 */
3940 CHECK_FPU_FEATURE(dc, VIS1);
3941 tcg_gen_andc_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs2)],
3942 cpu_fpr[DFPREG(rs1)]);
3943 tcg_gen_andc_i32(cpu_fpr[DFPREG(rd) + 1],
3944 cpu_fpr[DFPREG(rs2) + 1],
3945 cpu_fpr[DFPREG(rs1) + 1]);
3946 break;
3947 case 0x069: /* VIS I fandnot1s */
3948 CHECK_FPU_FEATURE(dc, VIS1);
3949 tcg_gen_andc_i32(cpu_fpr[rd], cpu_fpr[rs2], cpu_fpr[rs1]);
3950 break;
3951 case 0x06a: /* VIS I fnot1 */
3952 CHECK_FPU_FEATURE(dc, VIS1);
3953 tcg_gen_not_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)]);
3954 tcg_gen_not_i32(cpu_fpr[DFPREG(rd) + 1],
3955 cpu_fpr[DFPREG(rs1) + 1]);
3956 break;
3957 case 0x06b: /* VIS I fnot1s */
3958 CHECK_FPU_FEATURE(dc, VIS1);
3959 tcg_gen_not_i32(cpu_fpr[rd], cpu_fpr[rs1]);
3960 break;
3961 case 0x06c: /* VIS I fxor */
3962 CHECK_FPU_FEATURE(dc, VIS1);
3963 tcg_gen_xor_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)],
3964 cpu_fpr[DFPREG(rs2)]);
3965 tcg_gen_xor_i32(cpu_fpr[DFPREG(rd) + 1],
3966 cpu_fpr[DFPREG(rs1) + 1],
3967 cpu_fpr[DFPREG(rs2) + 1]);
3968 break;
3969 case 0x06d: /* VIS I fxors */
3970 CHECK_FPU_FEATURE(dc, VIS1);
3971 tcg_gen_xor_i32(cpu_fpr[rd], cpu_fpr[rs1], cpu_fpr[rs2]);
3972 break;
3973 case 0x06e: /* VIS I fnand */
3974 CHECK_FPU_FEATURE(dc, VIS1);
3975 tcg_gen_nand_i32(cpu_tmp32, cpu_fpr[DFPREG(rs1)],
3976 cpu_fpr[DFPREG(rs2)]);
3977 tcg_gen_nand_i32(cpu_tmp32, cpu_fpr[DFPREG(rs1) + 1],
3978 cpu_fpr[DFPREG(rs2) + 1]);
3979 break;
3980 case 0x06f: /* VIS I fnands */
3981 CHECK_FPU_FEATURE(dc, VIS1);
3982 tcg_gen_nand_i32(cpu_tmp32, cpu_fpr[rs1], cpu_fpr[rs2]);
3983 break;
3984 case 0x070: /* VIS I fand */
3985 CHECK_FPU_FEATURE(dc, VIS1);
3986 tcg_gen_and_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)],
3987 cpu_fpr[DFPREG(rs2)]);
3988 tcg_gen_and_i32(cpu_fpr[DFPREG(rd) + 1],
3989 cpu_fpr[DFPREG(rs1) + 1],
3990 cpu_fpr[DFPREG(rs2) + 1]);
3991 break;
3992 case 0x071: /* VIS I fands */
3993 CHECK_FPU_FEATURE(dc, VIS1);
3994 tcg_gen_and_i32(cpu_fpr[rd], cpu_fpr[rs1], cpu_fpr[rs2]);
3995 break;
3996 case 0x072: /* VIS I fxnor */
3997 CHECK_FPU_FEATURE(dc, VIS1);
3998 tcg_gen_xori_i32(cpu_tmp32, cpu_fpr[DFPREG(rs2)], -1);
3999 tcg_gen_xor_i32(cpu_fpr[DFPREG(rd)], cpu_tmp32,
4000 cpu_fpr[DFPREG(rs1)]);
4001 tcg_gen_xori_i32(cpu_tmp32, cpu_fpr[DFPREG(rs2) + 1], -1);
4002 tcg_gen_xor_i32(cpu_fpr[DFPREG(rd) + 1], cpu_tmp32,
4003 cpu_fpr[DFPREG(rs1) + 1]);
4004 break;
4005 case 0x073: /* VIS I fxnors */
4006 CHECK_FPU_FEATURE(dc, VIS1);
4007 tcg_gen_xori_i32(cpu_tmp32, cpu_fpr[rs2], -1);
4008 tcg_gen_xor_i32(cpu_fpr[rd], cpu_tmp32, cpu_fpr[rs1]);
4009 break;
4010 case 0x074: /* VIS I fsrc1 */
4011 CHECK_FPU_FEATURE(dc, VIS1);
4012 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)]);
4013 tcg_gen_mov_i32(cpu_fpr[DFPREG(rd) + 1],
4014 cpu_fpr[DFPREG(rs1) + 1]);
4015 break;
4016 case 0x075: /* VIS I fsrc1s */
4017 CHECK_FPU_FEATURE(dc, VIS1);
4018 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs1]);
4019 break;
4020 case 0x076: /* VIS I fornot2 */
4021 CHECK_FPU_FEATURE(dc, VIS1);
4022 tcg_gen_orc_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)],
4023 cpu_fpr[DFPREG(rs2)]);
4024 tcg_gen_orc_i32(cpu_fpr[DFPREG(rd) + 1],
4025 cpu_fpr[DFPREG(rs1) + 1],
4026 cpu_fpr[DFPREG(rs2) + 1]);
4027 break;
4028 case 0x077: /* VIS I fornot2s */
4029 CHECK_FPU_FEATURE(dc, VIS1);
4030 tcg_gen_orc_i32(cpu_fpr[rd], cpu_fpr[rs1], cpu_fpr[rs2]);
4031 break;
4032 case 0x078: /* VIS I fsrc2 */
4033 CHECK_FPU_FEATURE(dc, VIS1);
4034 gen_op_load_fpr_DT0(DFPREG(rs2));
4035 gen_op_store_DT0_fpr(DFPREG(rd));
4036 break;
4037 case 0x079: /* VIS I fsrc2s */
4038 CHECK_FPU_FEATURE(dc, VIS1);
4039 tcg_gen_mov_i32(cpu_fpr[rd], cpu_fpr[rs2]);
4040 break;
4041 case 0x07a: /* VIS I fornot1 */
4042 CHECK_FPU_FEATURE(dc, VIS1);
4043 tcg_gen_orc_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs2)],
4044 cpu_fpr[DFPREG(rs1)]);
4045 tcg_gen_orc_i32(cpu_fpr[DFPREG(rd) + 1],
4046 cpu_fpr[DFPREG(rs2) + 1],
4047 cpu_fpr[DFPREG(rs1) + 1]);
4048 break;
4049 case 0x07b: /* VIS I fornot1s */
4050 CHECK_FPU_FEATURE(dc, VIS1);
4051 tcg_gen_orc_i32(cpu_fpr[rd], cpu_fpr[rs2], cpu_fpr[rs1]);
4052 break;
4053 case 0x07c: /* VIS I for */
4054 CHECK_FPU_FEATURE(dc, VIS1);
4055 tcg_gen_or_i32(cpu_fpr[DFPREG(rd)], cpu_fpr[DFPREG(rs1)],
4056 cpu_fpr[DFPREG(rs2)]);
4057 tcg_gen_or_i32(cpu_fpr[DFPREG(rd) + 1],
4058 cpu_fpr[DFPREG(rs1) + 1],
4059 cpu_fpr[DFPREG(rs2) + 1]);
4060 break;
4061 case 0x07d: /* VIS I fors */
4062 CHECK_FPU_FEATURE(dc, VIS1);
4063 tcg_gen_or_i32(cpu_fpr[rd], cpu_fpr[rs1], cpu_fpr[rs2]);
4064 break;
4065 case 0x07e: /* VIS I fone */
4066 CHECK_FPU_FEATURE(dc, VIS1);
4067 tcg_gen_movi_i32(cpu_fpr[DFPREG(rd)], -1);
4068 tcg_gen_movi_i32(cpu_fpr[DFPREG(rd) + 1], -1);
4069 break;
4070 case 0x07f: /* VIS I fones */
4071 CHECK_FPU_FEATURE(dc, VIS1);
4072 tcg_gen_movi_i32(cpu_fpr[rd], -1);
4073 break;
4074 case 0x080: /* VIS I shutdown */
4075 case 0x081: /* VIS II siam */
4076 // XXX
4077 goto illegal_insn;
4078 default:
4079 goto illegal_insn;
4081 #else
4082 goto ncp_insn;
4083 #endif
4084 } else if (xop == 0x37) { /* V8 CPop2, V9 impdep2 */
4085 #ifdef TARGET_SPARC64
4086 goto illegal_insn;
4087 #else
4088 goto ncp_insn;
4089 #endif
4090 #ifdef TARGET_SPARC64
4091 } else if (xop == 0x39) { /* V9 return */
4092 TCGv r_const;
4094 save_state(dc, cpu_cond);
4095 cpu_src1 = get_src1(insn, cpu_src1);
4096 if (IS_IMM) { /* immediate */
4097 rs2 = GET_FIELDs(insn, 19, 31);
4098 tcg_gen_addi_tl(cpu_dst, cpu_src1, (int)rs2);
4099 } else { /* register */
4100 rs2 = GET_FIELD(insn, 27, 31);
4101 if (rs2) {
4102 gen_movl_reg_TN(rs2, cpu_src2);
4103 tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
4104 } else
4105 tcg_gen_mov_tl(cpu_dst, cpu_src1);
4107 tcg_gen_helper_0_0(helper_restore);
4108 gen_mov_pc_npc(dc, cpu_cond);
4109 r_const = tcg_const_i32(3);
4110 tcg_gen_helper_0_2(helper_check_align, cpu_dst, r_const);
4111 tcg_temp_free(r_const);
4112 tcg_gen_mov_tl(cpu_npc, cpu_dst);
4113 dc->npc = DYNAMIC_PC;
4114 goto jmp_insn;
4115 #endif
4116 } else {
4117 cpu_src1 = get_src1(insn, cpu_src1);
4118 if (IS_IMM) { /* immediate */
4119 rs2 = GET_FIELDs(insn, 19, 31);
4120 tcg_gen_addi_tl(cpu_dst, cpu_src1, (int)rs2);
4121 } else { /* register */
4122 rs2 = GET_FIELD(insn, 27, 31);
4123 if (rs2) {
4124 gen_movl_reg_TN(rs2, cpu_src2);
4125 tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
4126 } else
4127 tcg_gen_mov_tl(cpu_dst, cpu_src1);
4129 switch (xop) {
4130 case 0x38: /* jmpl */
4132 TCGv r_const;
4134 r_const = tcg_const_tl(dc->pc);
4135 gen_movl_TN_reg(rd, r_const);
4136 tcg_temp_free(r_const);
4137 gen_mov_pc_npc(dc, cpu_cond);
4138 r_const = tcg_const_i32(3);
4139 tcg_gen_helper_0_2(helper_check_align, cpu_dst,
4140 r_const);
4141 tcg_temp_free(r_const);
4142 tcg_gen_mov_tl(cpu_npc, cpu_dst);
4143 dc->npc = DYNAMIC_PC;
4145 goto jmp_insn;
4146 #if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
4147 case 0x39: /* rett, V9 return */
4149 TCGv r_const;
4151 if (!supervisor(dc))
4152 goto priv_insn;
4153 gen_mov_pc_npc(dc, cpu_cond);
4154 r_const = tcg_const_i32(3);
4155 tcg_gen_helper_0_2(helper_check_align, cpu_dst,
4156 r_const);
4157 tcg_temp_free(r_const);
4158 tcg_gen_mov_tl(cpu_npc, cpu_dst);
4159 dc->npc = DYNAMIC_PC;
4160 tcg_gen_helper_0_0(helper_rett);
4162 goto jmp_insn;
4163 #endif
4164 case 0x3b: /* flush */
4165 if (!((dc)->def->features & CPU_FEATURE_FLUSH))
4166 goto unimp_flush;
4167 tcg_gen_helper_0_1(helper_flush, cpu_dst);
4168 break;
4169 case 0x3c: /* save */
4170 save_state(dc, cpu_cond);
4171 tcg_gen_helper_0_0(helper_save);
4172 gen_movl_TN_reg(rd, cpu_dst);
4173 break;
4174 case 0x3d: /* restore */
4175 save_state(dc, cpu_cond);
4176 tcg_gen_helper_0_0(helper_restore);
4177 gen_movl_TN_reg(rd, cpu_dst);
4178 break;
4179 #if !defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
4180 case 0x3e: /* V9 done/retry */
4182 switch (rd) {
4183 case 0:
4184 if (!supervisor(dc))
4185 goto priv_insn;
4186 dc->npc = DYNAMIC_PC;
4187 dc->pc = DYNAMIC_PC;
4188 tcg_gen_helper_0_0(helper_done);
4189 goto jmp_insn;
4190 case 1:
4191 if (!supervisor(dc))
4192 goto priv_insn;
4193 dc->npc = DYNAMIC_PC;
4194 dc->pc = DYNAMIC_PC;
4195 tcg_gen_helper_0_0(helper_retry);
4196 goto jmp_insn;
4197 default:
4198 goto illegal_insn;
4201 break;
4202 #endif
4203 default:
4204 goto illegal_insn;
4207 break;
4209 break;
4210 case 3: /* load/store instructions */
4212 unsigned int xop = GET_FIELD(insn, 7, 12);
4214 cpu_src1 = get_src1(insn, cpu_src1);
4215 if (xop == 0x3c || xop == 0x3e) { // V9 casa/casxa
4216 rs2 = GET_FIELD(insn, 27, 31);
4217 gen_movl_reg_TN(rs2, cpu_src2);
4218 tcg_gen_mov_tl(cpu_addr, cpu_src1);
4219 } else if (IS_IMM) { /* immediate */
4220 rs2 = GET_FIELDs(insn, 19, 31);
4221 tcg_gen_addi_tl(cpu_addr, cpu_src1, (int)rs2);
4222 } else { /* register */
4223 rs2 = GET_FIELD(insn, 27, 31);
4224 if (rs2 != 0) {
4225 gen_movl_reg_TN(rs2, cpu_src2);
4226 tcg_gen_add_tl(cpu_addr, cpu_src1, cpu_src2);
4227 } else
4228 tcg_gen_mov_tl(cpu_addr, cpu_src1);
4230 if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) ||
4231 (xop > 0x17 && xop <= 0x1d ) ||
4232 (xop > 0x2c && xop <= 0x33) || xop == 0x1f || xop == 0x3d) {
4233 switch (xop) {
4234 case 0x0: /* load unsigned word */
4235 gen_address_mask(dc, cpu_addr);
4236 tcg_gen_qemu_ld32u(cpu_val, cpu_addr, dc->mem_idx);
4237 break;
4238 case 0x1: /* load unsigned byte */
4239 gen_address_mask(dc, cpu_addr);
4240 tcg_gen_qemu_ld8u(cpu_val, cpu_addr, dc->mem_idx);
4241 break;
4242 case 0x2: /* load unsigned halfword */
4243 gen_address_mask(dc, cpu_addr);
4244 tcg_gen_qemu_ld16u(cpu_val, cpu_addr, dc->mem_idx);
4245 break;
4246 case 0x3: /* load double word */
4247 if (rd & 1)
4248 goto illegal_insn;
4249 else {
4250 TCGv r_const;
4252 save_state(dc, cpu_cond);
4253 r_const = tcg_const_i32(7);
4254 tcg_gen_helper_0_2(helper_check_align, cpu_addr,
4255 r_const); // XXX remove
4256 tcg_temp_free(r_const);
4257 gen_address_mask(dc, cpu_addr);
4258 tcg_gen_qemu_ld64(cpu_tmp64, cpu_addr, dc->mem_idx);
4259 tcg_gen_trunc_i64_tl(cpu_tmp0, cpu_tmp64);
4260 tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0xffffffffULL);
4261 gen_movl_TN_reg(rd + 1, cpu_tmp0);
4262 tcg_gen_shri_i64(cpu_tmp64, cpu_tmp64, 32);
4263 tcg_gen_trunc_i64_tl(cpu_val, cpu_tmp64);
4264 tcg_gen_andi_tl(cpu_val, cpu_val, 0xffffffffULL);
4266 break;
4267 case 0x9: /* load signed byte */
4268 gen_address_mask(dc, cpu_addr);
4269 tcg_gen_qemu_ld8s(cpu_val, cpu_addr, dc->mem_idx);
4270 break;
4271 case 0xa: /* load signed halfword */
4272 gen_address_mask(dc, cpu_addr);
4273 tcg_gen_qemu_ld16s(cpu_val, cpu_addr, dc->mem_idx);
4274 break;
4275 case 0xd: /* ldstub -- XXX: should be atomically */
4277 TCGv r_const;
4279 gen_address_mask(dc, cpu_addr);
4280 tcg_gen_qemu_ld8s(cpu_val, cpu_addr, dc->mem_idx);
4281 r_const = tcg_const_tl(0xff);
4282 tcg_gen_qemu_st8(r_const, cpu_addr, dc->mem_idx);
4283 tcg_temp_free(r_const);
4285 break;
4286 case 0x0f: /* swap register with memory. Also
4287 atomically */
4288 CHECK_IU_FEATURE(dc, SWAP);
4289 gen_movl_reg_TN(rd, cpu_val);
4290 gen_address_mask(dc, cpu_addr);
4291 tcg_gen_qemu_ld32u(cpu_tmp0, cpu_addr, dc->mem_idx);
4292 tcg_gen_qemu_st32(cpu_val, cpu_addr, dc->mem_idx);
4293 tcg_gen_mov_tl(cpu_val, cpu_tmp0);
4294 break;
4295 #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
4296 case 0x10: /* load word alternate */
4297 #ifndef TARGET_SPARC64
4298 if (IS_IMM)
4299 goto illegal_insn;
4300 if (!supervisor(dc))
4301 goto priv_insn;
4302 #endif
4303 save_state(dc, cpu_cond);
4304 gen_ld_asi(cpu_val, cpu_addr, insn, 4, 0);
4305 break;
4306 case 0x11: /* load unsigned byte alternate */
4307 #ifndef TARGET_SPARC64
4308 if (IS_IMM)
4309 goto illegal_insn;
4310 if (!supervisor(dc))
4311 goto priv_insn;
4312 #endif
4313 save_state(dc, cpu_cond);
4314 gen_ld_asi(cpu_val, cpu_addr, insn, 1, 0);
4315 break;
4316 case 0x12: /* load unsigned halfword alternate */
4317 #ifndef TARGET_SPARC64
4318 if (IS_IMM)
4319 goto illegal_insn;
4320 if (!supervisor(dc))
4321 goto priv_insn;
4322 #endif
4323 save_state(dc, cpu_cond);
4324 gen_ld_asi(cpu_val, cpu_addr, insn, 2, 0);
4325 break;
4326 case 0x13: /* load double word alternate */
4327 #ifndef TARGET_SPARC64
4328 if (IS_IMM)
4329 goto illegal_insn;
4330 if (!supervisor(dc))
4331 goto priv_insn;
4332 #endif
4333 if (rd & 1)
4334 goto illegal_insn;
4335 save_state(dc, cpu_cond);
4336 gen_ldda_asi(cpu_val, cpu_addr, insn, rd);
4337 goto skip_move;
4338 case 0x19: /* load signed byte alternate */
4339 #ifndef TARGET_SPARC64
4340 if (IS_IMM)
4341 goto illegal_insn;
4342 if (!supervisor(dc))
4343 goto priv_insn;
4344 #endif
4345 save_state(dc, cpu_cond);
4346 gen_ld_asi(cpu_val, cpu_addr, insn, 1, 1);
4347 break;
4348 case 0x1a: /* load signed halfword alternate */
4349 #ifndef TARGET_SPARC64
4350 if (IS_IMM)
4351 goto illegal_insn;
4352 if (!supervisor(dc))
4353 goto priv_insn;
4354 #endif
4355 save_state(dc, cpu_cond);
4356 gen_ld_asi(cpu_val, cpu_addr, insn, 2, 1);
4357 break;
4358 case 0x1d: /* ldstuba -- XXX: should be atomically */
4359 #ifndef TARGET_SPARC64
4360 if (IS_IMM)
4361 goto illegal_insn;
4362 if (!supervisor(dc))
4363 goto priv_insn;
4364 #endif
4365 save_state(dc, cpu_cond);
4366 gen_ldstub_asi(cpu_val, cpu_addr, insn);
4367 break;
4368 case 0x1f: /* swap reg with alt. memory. Also
4369 atomically */
4370 CHECK_IU_FEATURE(dc, SWAP);
4371 #ifndef TARGET_SPARC64
4372 if (IS_IMM)
4373 goto illegal_insn;
4374 if (!supervisor(dc))
4375 goto priv_insn;
4376 #endif
4377 save_state(dc, cpu_cond);
4378 gen_movl_reg_TN(rd, cpu_val);
4379 gen_swap_asi(cpu_val, cpu_addr, insn);
4380 break;
4382 #ifndef TARGET_SPARC64
4383 case 0x30: /* ldc */
4384 case 0x31: /* ldcsr */
4385 case 0x33: /* lddc */
4386 goto ncp_insn;
4387 #endif
4388 #endif
4389 #ifdef TARGET_SPARC64
4390 case 0x08: /* V9 ldsw */
4391 gen_address_mask(dc, cpu_addr);
4392 tcg_gen_qemu_ld32s(cpu_val, cpu_addr, dc->mem_idx);
4393 break;
4394 case 0x0b: /* V9 ldx */
4395 gen_address_mask(dc, cpu_addr);
4396 tcg_gen_qemu_ld64(cpu_val, cpu_addr, dc->mem_idx);
4397 break;
4398 case 0x18: /* V9 ldswa */
4399 save_state(dc, cpu_cond);
4400 gen_ld_asi(cpu_val, cpu_addr, insn, 4, 1);
4401 break;
4402 case 0x1b: /* V9 ldxa */
4403 save_state(dc, cpu_cond);
4404 gen_ld_asi(cpu_val, cpu_addr, insn, 8, 0);
4405 break;
4406 case 0x2d: /* V9 prefetch, no effect */
4407 goto skip_move;
4408 case 0x30: /* V9 ldfa */
4409 save_state(dc, cpu_cond);
4410 gen_ldf_asi(cpu_addr, insn, 4, rd);
4411 goto skip_move;
4412 case 0x33: /* V9 lddfa */
4413 save_state(dc, cpu_cond);
4414 gen_ldf_asi(cpu_addr, insn, 8, DFPREG(rd));
4415 goto skip_move;
4416 case 0x3d: /* V9 prefetcha, no effect */
4417 goto skip_move;
4418 case 0x32: /* V9 ldqfa */
4419 CHECK_FPU_FEATURE(dc, FLOAT128);
4420 save_state(dc, cpu_cond);
4421 gen_ldf_asi(cpu_addr, insn, 16, QFPREG(rd));
4422 goto skip_move;
4423 #endif
4424 default:
4425 goto illegal_insn;
4427 gen_movl_TN_reg(rd, cpu_val);
4428 #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
4429 skip_move: ;
4430 #endif
4431 } else if (xop >= 0x20 && xop < 0x24) {
4432 if (gen_trap_ifnofpu(dc, cpu_cond))
4433 goto jmp_insn;
4434 save_state(dc, cpu_cond);
4435 switch (xop) {
4436 case 0x20: /* load fpreg */
4437 gen_address_mask(dc, cpu_addr);
4438 tcg_gen_qemu_ld32u(cpu_tmp0, cpu_addr, dc->mem_idx);
4439 tcg_gen_trunc_tl_i32(cpu_fpr[rd], cpu_tmp0);
4440 break;
4441 case 0x21: /* ldfsr, V9 ldxfsr */
4442 #ifdef TARGET_SPARC64
4443 gen_address_mask(dc, cpu_addr);
4444 if (rd == 1) {
4445 tcg_gen_qemu_ld64(cpu_tmp64, cpu_addr, dc->mem_idx);
4446 tcg_gen_helper_0_1(helper_ldxfsr, cpu_tmp64);
4447 } else
4448 #else
4450 tcg_gen_qemu_ld32u(cpu_tmp32, cpu_addr, dc->mem_idx);
4451 tcg_gen_helper_0_1(helper_ldfsr, cpu_tmp32);
4453 #endif
4454 break;
4455 case 0x22: /* load quad fpreg */
4457 TCGv r_const;
4459 CHECK_FPU_FEATURE(dc, FLOAT128);
4460 r_const = tcg_const_i32(dc->mem_idx);
4461 tcg_gen_helper_0_2(helper_ldqf, cpu_addr, r_const);
4462 tcg_temp_free(r_const);
4463 gen_op_store_QT0_fpr(QFPREG(rd));
4465 break;
4466 case 0x23: /* load double fpreg */
4468 TCGv r_const;
4470 r_const = tcg_const_i32(dc->mem_idx);
4471 tcg_gen_helper_0_2(helper_lddf, cpu_addr, r_const);
4472 tcg_temp_free(r_const);
4473 gen_op_store_DT0_fpr(DFPREG(rd));
4475 break;
4476 default:
4477 goto illegal_insn;
4479 } else if (xop < 8 || (xop >= 0x14 && xop < 0x18) || \
4480 xop == 0xe || xop == 0x1e) {
4481 gen_movl_reg_TN(rd, cpu_val);
4482 switch (xop) {
4483 case 0x4: /* store word */
4484 gen_address_mask(dc, cpu_addr);
4485 tcg_gen_qemu_st32(cpu_val, cpu_addr, dc->mem_idx);
4486 break;
4487 case 0x5: /* store byte */
4488 gen_address_mask(dc, cpu_addr);
4489 tcg_gen_qemu_st8(cpu_val, cpu_addr, dc->mem_idx);
4490 break;
4491 case 0x6: /* store halfword */
4492 gen_address_mask(dc, cpu_addr);
4493 tcg_gen_qemu_st16(cpu_val, cpu_addr, dc->mem_idx);
4494 break;
4495 case 0x7: /* store double word */
4496 if (rd & 1)
4497 goto illegal_insn;
4498 else {
4499 TCGv r_const;
4501 save_state(dc, cpu_cond);
4502 gen_address_mask(dc, cpu_addr);
4503 r_const = tcg_const_i32(7);
4504 tcg_gen_helper_0_2(helper_check_align, cpu_addr,
4505 r_const); // XXX remove
4506 tcg_temp_free(r_const);
4507 gen_movl_reg_TN(rd + 1, cpu_tmp0);
4508 tcg_gen_concat_tl_i64(cpu_tmp64, cpu_tmp0, cpu_val);
4509 tcg_gen_qemu_st64(cpu_tmp64, cpu_addr, dc->mem_idx);
4511 break;
4512 #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
4513 case 0x14: /* store word alternate */
4514 #ifndef TARGET_SPARC64
4515 if (IS_IMM)
4516 goto illegal_insn;
4517 if (!supervisor(dc))
4518 goto priv_insn;
4519 #endif
4520 save_state(dc, cpu_cond);
4521 gen_st_asi(cpu_val, cpu_addr, insn, 4);
4522 break;
4523 case 0x15: /* store byte alternate */
4524 #ifndef TARGET_SPARC64
4525 if (IS_IMM)
4526 goto illegal_insn;
4527 if (!supervisor(dc))
4528 goto priv_insn;
4529 #endif
4530 save_state(dc, cpu_cond);
4531 gen_st_asi(cpu_val, cpu_addr, insn, 1);
4532 break;
4533 case 0x16: /* store halfword alternate */
4534 #ifndef TARGET_SPARC64
4535 if (IS_IMM)
4536 goto illegal_insn;
4537 if (!supervisor(dc))
4538 goto priv_insn;
4539 #endif
4540 save_state(dc, cpu_cond);
4541 gen_st_asi(cpu_val, cpu_addr, insn, 2);
4542 break;
4543 case 0x17: /* store double word alternate */
4544 #ifndef TARGET_SPARC64
4545 if (IS_IMM)
4546 goto illegal_insn;
4547 if (!supervisor(dc))
4548 goto priv_insn;
4549 #endif
4550 if (rd & 1)
4551 goto illegal_insn;
4552 else {
4553 save_state(dc, cpu_cond);
4554 gen_stda_asi(cpu_val, cpu_addr, insn, rd);
4556 break;
4557 #endif
4558 #ifdef TARGET_SPARC64
4559 case 0x0e: /* V9 stx */
4560 gen_address_mask(dc, cpu_addr);
4561 tcg_gen_qemu_st64(cpu_val, cpu_addr, dc->mem_idx);
4562 break;
4563 case 0x1e: /* V9 stxa */
4564 save_state(dc, cpu_cond);
4565 gen_st_asi(cpu_val, cpu_addr, insn, 8);
4566 break;
4567 #endif
4568 default:
4569 goto illegal_insn;
4571 } else if (xop > 0x23 && xop < 0x28) {
4572 if (gen_trap_ifnofpu(dc, cpu_cond))
4573 goto jmp_insn;
4574 save_state(dc, cpu_cond);
4575 switch (xop) {
4576 case 0x24: /* store fpreg */
4577 gen_address_mask(dc, cpu_addr);
4578 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_fpr[rd]);
4579 tcg_gen_qemu_st32(cpu_tmp0, cpu_addr, dc->mem_idx);
4580 break;
4581 case 0x25: /* stfsr, V9 stxfsr */
4582 #ifdef TARGET_SPARC64
4583 gen_address_mask(dc, cpu_addr);
4584 tcg_gen_ld_i64(cpu_tmp64, cpu_env, offsetof(CPUState, fsr));
4585 if (rd == 1)
4586 tcg_gen_qemu_st64(cpu_tmp64, cpu_addr, dc->mem_idx);
4587 else
4588 tcg_gen_qemu_st32(cpu_tmp64, cpu_addr, dc->mem_idx);
4589 #else
4590 tcg_gen_ld_i32(cpu_tmp32, cpu_env, offsetof(CPUState, fsr));
4591 tcg_gen_qemu_st32(cpu_tmp32, cpu_addr, dc->mem_idx);
4592 #endif
4593 break;
4594 case 0x26:
4595 #ifdef TARGET_SPARC64
4596 /* V9 stqf, store quad fpreg */
4598 TCGv r_const;
4600 CHECK_FPU_FEATURE(dc, FLOAT128);
4601 gen_op_load_fpr_QT0(QFPREG(rd));
4602 r_const = tcg_const_i32(dc->mem_idx);
4603 tcg_gen_helper_0_2(helper_stqf, cpu_addr, r_const);
4604 tcg_temp_free(r_const);
4606 break;
4607 #else /* !TARGET_SPARC64 */
4608 /* stdfq, store floating point queue */
4609 #if defined(CONFIG_USER_ONLY)
4610 goto illegal_insn;
4611 #else
4612 if (!supervisor(dc))
4613 goto priv_insn;
4614 if (gen_trap_ifnofpu(dc, cpu_cond))
4615 goto jmp_insn;
4616 goto nfq_insn;
4617 #endif
4618 #endif
4619 case 0x27: /* store double fpreg */
4621 TCGv r_const;
4623 gen_op_load_fpr_DT0(DFPREG(rd));
4624 r_const = tcg_const_i32(dc->mem_idx);
4625 tcg_gen_helper_0_2(helper_stdf, cpu_addr, r_const);
4626 tcg_temp_free(r_const);
4628 break;
4629 default:
4630 goto illegal_insn;
4632 } else if (xop > 0x33 && xop < 0x3f) {
4633 save_state(dc, cpu_cond);
4634 switch (xop) {
4635 #ifdef TARGET_SPARC64
4636 case 0x34: /* V9 stfa */
4637 gen_stf_asi(cpu_addr, insn, 4, rd);
4638 break;
4639 case 0x36: /* V9 stqfa */
4641 TCGv r_const;
4643 CHECK_FPU_FEATURE(dc, FLOAT128);
4644 r_const = tcg_const_i32(7);
4645 tcg_gen_helper_0_2(helper_check_align, cpu_addr,
4646 r_const);
4647 tcg_temp_free(r_const);
4648 gen_op_load_fpr_QT0(QFPREG(rd));
4649 gen_stf_asi(cpu_addr, insn, 16, QFPREG(rd));
4651 break;
4652 case 0x37: /* V9 stdfa */
4653 gen_op_load_fpr_DT0(DFPREG(rd));
4654 gen_stf_asi(cpu_addr, insn, 8, DFPREG(rd));
4655 break;
4656 case 0x3c: /* V9 casa */
4657 gen_cas_asi(cpu_val, cpu_addr, cpu_src2, insn, rd);
4658 gen_movl_TN_reg(rd, cpu_val);
4659 break;
4660 case 0x3e: /* V9 casxa */
4661 gen_casx_asi(cpu_val, cpu_addr, cpu_src2, insn, rd);
4662 gen_movl_TN_reg(rd, cpu_val);
4663 break;
4664 #else
4665 case 0x34: /* stc */
4666 case 0x35: /* stcsr */
4667 case 0x36: /* stdcq */
4668 case 0x37: /* stdc */
4669 goto ncp_insn;
4670 #endif
4671 default:
4672 goto illegal_insn;
4675 else
4676 goto illegal_insn;
4678 break;
4680 /* default case for non jump instructions */
4681 if (dc->npc == DYNAMIC_PC) {
4682 dc->pc = DYNAMIC_PC;
4683 gen_op_next_insn();
4684 } else if (dc->npc == JUMP_PC) {
4685 /* we can do a static jump */
4686 gen_branch2(dc, dc->jump_pc[0], dc->jump_pc[1], cpu_cond);
4687 dc->is_br = 1;
4688 } else {
4689 dc->pc = dc->npc;
4690 dc->npc = dc->npc + 4;
4692 jmp_insn:
4693 return;
4694 illegal_insn:
4696 TCGv r_const;
4698 save_state(dc, cpu_cond);
4699 r_const = tcg_const_i32(TT_ILL_INSN);
4700 tcg_gen_helper_0_1(raise_exception, r_const);
4701 tcg_temp_free(r_const);
4702 dc->is_br = 1;
4704 return;
4705 unimp_flush:
4707 TCGv r_const;
4709 save_state(dc, cpu_cond);
4710 r_const = tcg_const_i32(TT_UNIMP_FLUSH);
4711 tcg_gen_helper_0_1(raise_exception, r_const);
4712 tcg_temp_free(r_const);
4713 dc->is_br = 1;
4715 return;
4716 #if !defined(CONFIG_USER_ONLY)
4717 priv_insn:
4719 TCGv r_const;
4721 save_state(dc, cpu_cond);
4722 r_const = tcg_const_i32(TT_PRIV_INSN);
4723 tcg_gen_helper_0_1(raise_exception, r_const);
4724 tcg_temp_free(r_const);
4725 dc->is_br = 1;
4727 return;
4728 #endif
4729 nfpu_insn:
4730 save_state(dc, cpu_cond);
4731 gen_op_fpexception_im(FSR_FTT_UNIMPFPOP);
4732 dc->is_br = 1;
4733 return;
4734 #if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
4735 nfq_insn:
4736 save_state(dc, cpu_cond);
4737 gen_op_fpexception_im(FSR_FTT_SEQ_ERROR);
4738 dc->is_br = 1;
4739 return;
4740 #endif
4741 #ifndef TARGET_SPARC64
4742 ncp_insn:
4744 TCGv r_const;
4746 save_state(dc, cpu_cond);
4747 r_const = tcg_const_i32(TT_NCP_INSN);
4748 tcg_gen_helper_0_1(raise_exception, r_const);
4749 tcg_temp_free(r_const);
4750 dc->is_br = 1;
4752 return;
4753 #endif
4756 static inline void gen_intermediate_code_internal(TranslationBlock * tb,
4757 int spc, CPUSPARCState *env)
4759 target_ulong pc_start, last_pc;
4760 uint16_t *gen_opc_end;
4761 DisasContext dc1, *dc = &dc1;
4762 int j, lj = -1;
4763 int num_insns;
4764 int max_insns;
4766 memset(dc, 0, sizeof(DisasContext));
4767 dc->tb = tb;
4768 pc_start = tb->pc;
4769 dc->pc = pc_start;
4770 last_pc = dc->pc;
4771 dc->npc = (target_ulong) tb->cs_base;
4772 dc->mem_idx = cpu_mmu_index(env);
4773 dc->def = env->def;
4774 if ((dc->def->features & CPU_FEATURE_FLOAT))
4775 dc->fpu_enabled = cpu_fpu_enabled(env);
4776 else
4777 dc->fpu_enabled = 0;
4778 #ifdef TARGET_SPARC64
4779 dc->address_mask_32bit = env->pstate & PS_AM;
4780 #endif
4781 gen_opc_end = gen_opc_buf + OPC_MAX_SIZE;
4783 cpu_tmp0 = tcg_temp_new(TCG_TYPE_TL);
4784 cpu_tmp32 = tcg_temp_new(TCG_TYPE_I32);
4785 cpu_tmp64 = tcg_temp_new(TCG_TYPE_I64);
4787 cpu_dst = tcg_temp_local_new(TCG_TYPE_TL);
4789 // loads and stores
4790 cpu_val = tcg_temp_local_new(TCG_TYPE_TL);
4791 cpu_addr = tcg_temp_local_new(TCG_TYPE_TL);
4793 num_insns = 0;
4794 max_insns = tb->cflags & CF_COUNT_MASK;
4795 if (max_insns == 0)
4796 max_insns = CF_COUNT_MASK;
4797 gen_icount_start();
4798 do {
4799 if (env->nb_breakpoints > 0) {
4800 for(j = 0; j < env->nb_breakpoints; j++) {
4801 if (env->breakpoints[j] == dc->pc) {
4802 if (dc->pc != pc_start)
4803 save_state(dc, cpu_cond);
4804 tcg_gen_helper_0_0(helper_debug);
4805 tcg_gen_exit_tb(0);
4806 dc->is_br = 1;
4807 goto exit_gen_loop;
4811 if (spc) {
4812 if (loglevel > 0)
4813 fprintf(logfile, "Search PC...\n");
4814 j = gen_opc_ptr - gen_opc_buf;
4815 if (lj < j) {
4816 lj++;
4817 while (lj < j)
4818 gen_opc_instr_start[lj++] = 0;
4819 gen_opc_pc[lj] = dc->pc;
4820 gen_opc_npc[lj] = dc->npc;
4821 gen_opc_instr_start[lj] = 1;
4822 gen_opc_icount[lj] = num_insns;
4825 if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO))
4826 gen_io_start();
4827 last_pc = dc->pc;
4828 disas_sparc_insn(dc);
4829 num_insns++;
4831 if (dc->is_br)
4832 break;
4833 /* if the next PC is different, we abort now */
4834 if (dc->pc != (last_pc + 4))
4835 break;
4836 /* if we reach a page boundary, we stop generation so that the
4837 PC of a TT_TFAULT exception is always in the right page */
4838 if ((dc->pc & (TARGET_PAGE_SIZE - 1)) == 0)
4839 break;
4840 /* if single step mode, we generate only one instruction and
4841 generate an exception */
4842 if (env->singlestep_enabled) {
4843 tcg_gen_movi_tl(cpu_pc, dc->pc);
4844 tcg_gen_exit_tb(0);
4845 break;
4847 } while ((gen_opc_ptr < gen_opc_end) &&
4848 (dc->pc - pc_start) < (TARGET_PAGE_SIZE - 32) &&
4849 num_insns < max_insns);
4851 exit_gen_loop:
4852 tcg_temp_free(cpu_addr);
4853 tcg_temp_free(cpu_val);
4854 tcg_temp_free(cpu_dst);
4855 tcg_temp_free(cpu_tmp64);
4856 tcg_temp_free(cpu_tmp32);
4857 tcg_temp_free(cpu_tmp0);
4858 if (tb->cflags & CF_LAST_IO)
4859 gen_io_end();
4860 if (!dc->is_br) {
4861 if (dc->pc != DYNAMIC_PC &&
4862 (dc->npc != DYNAMIC_PC && dc->npc != JUMP_PC)) {
4863 /* static PC and NPC: we can use direct chaining */
4864 gen_goto_tb(dc, 0, dc->pc, dc->npc);
4865 } else {
4866 if (dc->pc != DYNAMIC_PC)
4867 tcg_gen_movi_tl(cpu_pc, dc->pc);
4868 save_npc(dc, cpu_cond);
4869 tcg_gen_exit_tb(0);
4872 gen_icount_end(tb, num_insns);
4873 *gen_opc_ptr = INDEX_op_end;
4874 if (spc) {
4875 j = gen_opc_ptr - gen_opc_buf;
4876 lj++;
4877 while (lj <= j)
4878 gen_opc_instr_start[lj++] = 0;
4879 #if 0
4880 if (loglevel > 0) {
4881 page_dump(logfile);
4883 #endif
4884 gen_opc_jump_pc[0] = dc->jump_pc[0];
4885 gen_opc_jump_pc[1] = dc->jump_pc[1];
4886 } else {
4887 tb->size = last_pc + 4 - pc_start;
4888 tb->icount = num_insns;
4890 #ifdef DEBUG_DISAS
4891 if (loglevel & CPU_LOG_TB_IN_ASM) {
4892 fprintf(logfile, "--------------\n");
4893 fprintf(logfile, "IN: %s\n", lookup_symbol(pc_start));
4894 target_disas(logfile, pc_start, last_pc + 4 - pc_start, 0);
4895 fprintf(logfile, "\n");
4897 #endif
4900 void gen_intermediate_code(CPUSPARCState * env, TranslationBlock * tb)
4902 gen_intermediate_code_internal(tb, 0, env);
4905 void gen_intermediate_code_pc(CPUSPARCState * env, TranslationBlock * tb)
4907 gen_intermediate_code_internal(tb, 1, env);
4910 void gen_intermediate_code_init(CPUSPARCState *env)
4912 unsigned int i;
4913 static int inited;
4914 static const char * const gregnames[8] = {
4915 NULL, // g0 not used
4916 "g1",
4917 "g2",
4918 "g3",
4919 "g4",
4920 "g5",
4921 "g6",
4922 "g7",
4924 static const char * const fregnames[64] = {
4925 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
4926 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
4927 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
4928 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
4929 "f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39",
4930 "f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47",
4931 "f48", "f49", "f50", "f51", "f52", "f53", "f54", "f55",
4932 "f56", "f57", "f58", "f59", "f60", "f61", "f62", "f63",
4935 /* init various static tables */
4936 if (!inited) {
4937 inited = 1;
4939 cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
4940 cpu_regwptr = tcg_global_mem_new(TCG_TYPE_PTR, TCG_AREG0,
4941 offsetof(CPUState, regwptr),
4942 "regwptr");
4943 #ifdef TARGET_SPARC64
4944 cpu_xcc = tcg_global_mem_new(TCG_TYPE_I32,
4945 TCG_AREG0, offsetof(CPUState, xcc),
4946 "xcc");
4947 cpu_asi = tcg_global_mem_new(TCG_TYPE_I32,
4948 TCG_AREG0, offsetof(CPUState, asi),
4949 "asi");
4950 cpu_fprs = tcg_global_mem_new(TCG_TYPE_I32,
4951 TCG_AREG0, offsetof(CPUState, fprs),
4952 "fprs");
4953 cpu_gsr = tcg_global_mem_new(TCG_TYPE_TL,
4954 TCG_AREG0, offsetof(CPUState, gsr),
4955 "gsr");
4956 cpu_tick_cmpr = tcg_global_mem_new(TCG_TYPE_TL,
4957 TCG_AREG0,
4958 offsetof(CPUState, tick_cmpr),
4959 "tick_cmpr");
4960 cpu_stick_cmpr = tcg_global_mem_new(TCG_TYPE_TL,
4961 TCG_AREG0,
4962 offsetof(CPUState, stick_cmpr),
4963 "stick_cmpr");
4964 cpu_hstick_cmpr = tcg_global_mem_new(TCG_TYPE_TL,
4965 TCG_AREG0,
4966 offsetof(CPUState, hstick_cmpr),
4967 "hstick_cmpr");
4968 cpu_hintp = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4969 offsetof(CPUState, hintp),
4970 "hintp");
4971 cpu_htba = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4972 offsetof(CPUState, htba),
4973 "htba");
4974 cpu_hver = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4975 offsetof(CPUState, hver),
4976 "hver");
4977 cpu_ssr = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4978 offsetof(CPUState, ssr), "ssr");
4979 cpu_ver = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4980 offsetof(CPUState, version), "ver");
4981 cpu_softint = tcg_global_mem_new(TCG_TYPE_I32, TCG_AREG0,
4982 offsetof(CPUState, softint),
4983 "softint");
4984 #else
4985 cpu_wim = tcg_global_mem_new(TCG_TYPE_I32,
4986 TCG_AREG0, offsetof(CPUState, wim),
4987 "wim");
4988 #endif
4989 cpu_cond = tcg_global_mem_new(TCG_TYPE_TL,
4990 TCG_AREG0, offsetof(CPUState, cond),
4991 "cond");
4992 cpu_cc_src = tcg_global_mem_new(TCG_TYPE_TL,
4993 TCG_AREG0, offsetof(CPUState, cc_src),
4994 "cc_src");
4995 cpu_cc_src2 = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
4996 offsetof(CPUState, cc_src2),
4997 "cc_src2");
4998 cpu_cc_dst = tcg_global_mem_new(TCG_TYPE_TL,
4999 TCG_AREG0, offsetof(CPUState, cc_dst),
5000 "cc_dst");
5001 cpu_psr = tcg_global_mem_new(TCG_TYPE_I32,
5002 TCG_AREG0, offsetof(CPUState, psr),
5003 "psr");
5004 cpu_fsr = tcg_global_mem_new(TCG_TYPE_TL,
5005 TCG_AREG0, offsetof(CPUState, fsr),
5006 "fsr");
5007 cpu_pc = tcg_global_mem_new(TCG_TYPE_TL,
5008 TCG_AREG0, offsetof(CPUState, pc),
5009 "pc");
5010 cpu_npc = tcg_global_mem_new(TCG_TYPE_TL,
5011 TCG_AREG0, offsetof(CPUState, npc),
5012 "npc");
5013 cpu_y = tcg_global_mem_new(TCG_TYPE_TL,
5014 TCG_AREG0, offsetof(CPUState, y), "y");
5015 #ifndef CONFIG_USER_ONLY
5016 cpu_tbr = tcg_global_mem_new(TCG_TYPE_TL,
5017 TCG_AREG0, offsetof(CPUState, tbr),
5018 "tbr");
5019 #endif
5020 for (i = 1; i < 8; i++)
5021 cpu_gregs[i] = tcg_global_mem_new(TCG_TYPE_TL, TCG_AREG0,
5022 offsetof(CPUState, gregs[i]),
5023 gregnames[i]);
5024 for (i = 0; i < TARGET_FPREGS; i++)
5025 cpu_fpr[i] = tcg_global_mem_new(TCG_TYPE_I32, TCG_AREG0,
5026 offsetof(CPUState, fpr[i]),
5027 fregnames[i]);
5029 /* register helpers */
5031 #undef DEF_HELPER
5032 #define DEF_HELPER(ret, name, params) tcg_register_helper(name, #name);
5033 #include "helper.h"
5037 void gen_pc_load(CPUState *env, TranslationBlock *tb,
5038 unsigned long searched_pc, int pc_pos, void *puc)
5040 target_ulong npc;
5041 env->pc = gen_opc_pc[pc_pos];
5042 npc = gen_opc_npc[pc_pos];
5043 if (npc == 1) {
5044 /* dynamic NPC: already stored */
5045 } else if (npc == 2) {
5046 target_ulong t2 = (target_ulong)(unsigned long)puc;
5047 /* jump PC: use T2 and the jump targets of the translation */
5048 if (t2)
5049 env->npc = gen_opc_jump_pc[0];
5050 else
5051 env->npc = gen_opc_jump_pc[1];
5052 } else {
5053 env->npc = npc;