xref: /openbmc/qemu/target/sparc/translate.c (revision 0b1183e315cce99102898bda54f69b685157a507)
1fcf5ef2aSThomas Huth /*
2fcf5ef2aSThomas Huth    SPARC translation
3fcf5ef2aSThomas Huth 
4fcf5ef2aSThomas Huth    Copyright (C) 2003 Thomas M. Ogrisegg <tom@fnord.at>
5fcf5ef2aSThomas Huth    Copyright (C) 2003-2005 Fabrice Bellard
6fcf5ef2aSThomas Huth 
7fcf5ef2aSThomas Huth    This library is free software; you can redistribute it and/or
8fcf5ef2aSThomas Huth    modify it under the terms of the GNU Lesser General Public
9fcf5ef2aSThomas Huth    License as published by the Free Software Foundation; either
10fcf5ef2aSThomas Huth    version 2 of the License, or (at your option) any later version.
11fcf5ef2aSThomas Huth 
12fcf5ef2aSThomas Huth    This library is distributed in the hope that it will be useful,
13fcf5ef2aSThomas Huth    but WITHOUT ANY WARRANTY; without even the implied warranty of
14fcf5ef2aSThomas Huth    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15fcf5ef2aSThomas Huth    Lesser General Public License for more details.
16fcf5ef2aSThomas Huth 
17fcf5ef2aSThomas Huth    You should have received a copy of the GNU Lesser General Public
18fcf5ef2aSThomas Huth    License along with this library; if not, see <http://www.gnu.org/licenses/>.
19fcf5ef2aSThomas Huth  */
20fcf5ef2aSThomas Huth 
21fcf5ef2aSThomas Huth #include "qemu/osdep.h"
22fcf5ef2aSThomas Huth 
23fcf5ef2aSThomas Huth #include "cpu.h"
24fcf5ef2aSThomas Huth #include "disas/disas.h"
25fcf5ef2aSThomas Huth #include "exec/helper-proto.h"
26fcf5ef2aSThomas Huth #include "exec/exec-all.h"
27fcf5ef2aSThomas Huth #include "tcg-op.h"
28fcf5ef2aSThomas Huth #include "exec/cpu_ldst.h"
29fcf5ef2aSThomas Huth 
30fcf5ef2aSThomas Huth #include "exec/helper-gen.h"
31fcf5ef2aSThomas Huth 
32fcf5ef2aSThomas Huth #include "trace-tcg.h"
33fcf5ef2aSThomas Huth #include "exec/log.h"
34fcf5ef2aSThomas Huth #include "asi.h"
35fcf5ef2aSThomas Huth 
36fcf5ef2aSThomas Huth 
37fcf5ef2aSThomas Huth #define DEBUG_DISAS
38fcf5ef2aSThomas Huth 
39fcf5ef2aSThomas Huth #define DYNAMIC_PC  1 /* dynamic pc value */
40fcf5ef2aSThomas Huth #define JUMP_PC     2 /* dynamic pc value which takes only two values
41fcf5ef2aSThomas Huth                          according to jump_pc[T2] */
42fcf5ef2aSThomas Huth 
43fcf5ef2aSThomas Huth /* global register indexes */
44fcf5ef2aSThomas Huth static TCGv_env cpu_env;
45fcf5ef2aSThomas Huth static TCGv_ptr cpu_regwptr;
46fcf5ef2aSThomas Huth static TCGv cpu_cc_src, cpu_cc_src2, cpu_cc_dst;
47fcf5ef2aSThomas Huth static TCGv_i32 cpu_cc_op;
48fcf5ef2aSThomas Huth static TCGv_i32 cpu_psr;
49fcf5ef2aSThomas Huth static TCGv cpu_fsr, cpu_pc, cpu_npc;
50fcf5ef2aSThomas Huth static TCGv cpu_regs[32];
51fcf5ef2aSThomas Huth static TCGv cpu_y;
52fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
53fcf5ef2aSThomas Huth static TCGv cpu_tbr;
54fcf5ef2aSThomas Huth #endif
55fcf5ef2aSThomas Huth static TCGv cpu_cond;
56fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
57fcf5ef2aSThomas Huth static TCGv_i32 cpu_xcc, cpu_fprs;
58fcf5ef2aSThomas Huth static TCGv cpu_gsr;
59fcf5ef2aSThomas Huth static TCGv cpu_tick_cmpr, cpu_stick_cmpr, cpu_hstick_cmpr;
60fcf5ef2aSThomas Huth static TCGv cpu_hintp, cpu_htba, cpu_hver, cpu_ssr, cpu_ver;
61fcf5ef2aSThomas Huth #else
62fcf5ef2aSThomas Huth static TCGv cpu_wim;
63fcf5ef2aSThomas Huth #endif
64fcf5ef2aSThomas Huth /* Floating point registers */
65fcf5ef2aSThomas Huth static TCGv_i64 cpu_fpr[TARGET_DPREGS];
66fcf5ef2aSThomas Huth 
67fcf5ef2aSThomas Huth #include "exec/gen-icount.h"
68fcf5ef2aSThomas Huth 
69fcf5ef2aSThomas Huth typedef struct DisasContext {
70fcf5ef2aSThomas Huth     target_ulong pc;    /* current Program Counter: integer or DYNAMIC_PC */
71fcf5ef2aSThomas Huth     target_ulong npc;   /* next PC: integer or DYNAMIC_PC or JUMP_PC */
72fcf5ef2aSThomas Huth     target_ulong jump_pc[2]; /* used when JUMP_PC pc value is used */
73fcf5ef2aSThomas Huth     int is_br;
74fcf5ef2aSThomas Huth     int mem_idx;
75c9b459aaSArtyom Tarasenko     bool fpu_enabled;
76c9b459aaSArtyom Tarasenko     bool address_mask_32bit;
77c9b459aaSArtyom Tarasenko     bool singlestep;
78c9b459aaSArtyom Tarasenko #ifndef CONFIG_USER_ONLY
79c9b459aaSArtyom Tarasenko     bool supervisor;
80c9b459aaSArtyom Tarasenko #ifdef TARGET_SPARC64
81c9b459aaSArtyom Tarasenko     bool hypervisor;
82c9b459aaSArtyom Tarasenko #endif
83c9b459aaSArtyom Tarasenko #endif
84c9b459aaSArtyom Tarasenko 
85fcf5ef2aSThomas Huth     uint32_t cc_op;  /* current CC operation */
86fcf5ef2aSThomas Huth     struct TranslationBlock *tb;
87fcf5ef2aSThomas Huth     sparc_def_t *def;
88fcf5ef2aSThomas Huth     TCGv_i32 t32[3];
89fcf5ef2aSThomas Huth     TCGv ttl[5];
90fcf5ef2aSThomas Huth     int n_t32;
91fcf5ef2aSThomas Huth     int n_ttl;
92fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
93fcf5ef2aSThomas Huth     int fprs_dirty;
94fcf5ef2aSThomas Huth     int asi;
95fcf5ef2aSThomas Huth #endif
96fcf5ef2aSThomas Huth } DisasContext;
97fcf5ef2aSThomas Huth 
98fcf5ef2aSThomas Huth typedef struct {
99fcf5ef2aSThomas Huth     TCGCond cond;
100fcf5ef2aSThomas Huth     bool is_bool;
101fcf5ef2aSThomas Huth     bool g1, g2;
102fcf5ef2aSThomas Huth     TCGv c1, c2;
103fcf5ef2aSThomas Huth } DisasCompare;
104fcf5ef2aSThomas Huth 
105fcf5ef2aSThomas Huth // This function uses non-native bit order
106fcf5ef2aSThomas Huth #define GET_FIELD(X, FROM, TO)                                  \
107fcf5ef2aSThomas Huth     ((X) >> (31 - (TO)) & ((1 << ((TO) - (FROM) + 1)) - 1))
108fcf5ef2aSThomas Huth 
109fcf5ef2aSThomas Huth // This function uses the order in the manuals, i.e. bit 0 is 2^0
110fcf5ef2aSThomas Huth #define GET_FIELD_SP(X, FROM, TO)               \
111fcf5ef2aSThomas Huth     GET_FIELD(X, 31 - (TO), 31 - (FROM))
112fcf5ef2aSThomas Huth 
113fcf5ef2aSThomas Huth #define GET_FIELDs(x,a,b) sign_extend (GET_FIELD(x,a,b), (b) - (a) + 1)
114fcf5ef2aSThomas Huth #define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
115fcf5ef2aSThomas Huth 
116fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
117fcf5ef2aSThomas Huth #define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
118fcf5ef2aSThomas Huth #define QFPREG(r) (((r & 1) << 5) | (r & 0x1c))
119fcf5ef2aSThomas Huth #else
120fcf5ef2aSThomas Huth #define DFPREG(r) (r & 0x1e)
121fcf5ef2aSThomas Huth #define QFPREG(r) (r & 0x1c)
122fcf5ef2aSThomas Huth #endif
123fcf5ef2aSThomas Huth 
124fcf5ef2aSThomas Huth #define UA2005_HTRAP_MASK 0xff
125fcf5ef2aSThomas Huth #define V8_TRAP_MASK 0x7f
126fcf5ef2aSThomas Huth 
127fcf5ef2aSThomas Huth static int sign_extend(int x, int len)
128fcf5ef2aSThomas Huth {
129fcf5ef2aSThomas Huth     len = 32 - len;
130fcf5ef2aSThomas Huth     return (x << len) >> len;
131fcf5ef2aSThomas Huth }
132fcf5ef2aSThomas Huth 
133fcf5ef2aSThomas Huth #define IS_IMM (insn & (1<<13))
134fcf5ef2aSThomas Huth 
135fcf5ef2aSThomas Huth static inline TCGv_i32 get_temp_i32(DisasContext *dc)
136fcf5ef2aSThomas Huth {
137fcf5ef2aSThomas Huth     TCGv_i32 t;
138fcf5ef2aSThomas Huth     assert(dc->n_t32 < ARRAY_SIZE(dc->t32));
139fcf5ef2aSThomas Huth     dc->t32[dc->n_t32++] = t = tcg_temp_new_i32();
140fcf5ef2aSThomas Huth     return t;
141fcf5ef2aSThomas Huth }
142fcf5ef2aSThomas Huth 
143fcf5ef2aSThomas Huth static inline TCGv get_temp_tl(DisasContext *dc)
144fcf5ef2aSThomas Huth {
145fcf5ef2aSThomas Huth     TCGv t;
146fcf5ef2aSThomas Huth     assert(dc->n_ttl < ARRAY_SIZE(dc->ttl));
147fcf5ef2aSThomas Huth     dc->ttl[dc->n_ttl++] = t = tcg_temp_new();
148fcf5ef2aSThomas Huth     return t;
149fcf5ef2aSThomas Huth }
150fcf5ef2aSThomas Huth 
151fcf5ef2aSThomas Huth static inline void gen_update_fprs_dirty(DisasContext *dc, int rd)
152fcf5ef2aSThomas Huth {
153fcf5ef2aSThomas Huth #if defined(TARGET_SPARC64)
154fcf5ef2aSThomas Huth     int bit = (rd < 32) ? 1 : 2;
155fcf5ef2aSThomas Huth     /* If we know we've already set this bit within the TB,
156fcf5ef2aSThomas Huth        we can avoid setting it again.  */
157fcf5ef2aSThomas Huth     if (!(dc->fprs_dirty & bit)) {
158fcf5ef2aSThomas Huth         dc->fprs_dirty |= bit;
159fcf5ef2aSThomas Huth         tcg_gen_ori_i32(cpu_fprs, cpu_fprs, bit);
160fcf5ef2aSThomas Huth     }
161fcf5ef2aSThomas Huth #endif
162fcf5ef2aSThomas Huth }
163fcf5ef2aSThomas Huth 
164fcf5ef2aSThomas Huth /* floating point registers moves */
165fcf5ef2aSThomas Huth static TCGv_i32 gen_load_fpr_F(DisasContext *dc, unsigned int src)
166fcf5ef2aSThomas Huth {
167fcf5ef2aSThomas Huth #if TCG_TARGET_REG_BITS == 32
168fcf5ef2aSThomas Huth     if (src & 1) {
169fcf5ef2aSThomas Huth         return TCGV_LOW(cpu_fpr[src / 2]);
170fcf5ef2aSThomas Huth     } else {
171fcf5ef2aSThomas Huth         return TCGV_HIGH(cpu_fpr[src / 2]);
172fcf5ef2aSThomas Huth     }
173fcf5ef2aSThomas Huth #else
174fcf5ef2aSThomas Huth     if (src & 1) {
175fcf5ef2aSThomas Huth         return MAKE_TCGV_I32(GET_TCGV_I64(cpu_fpr[src / 2]));
176fcf5ef2aSThomas Huth     } else {
177fcf5ef2aSThomas Huth         TCGv_i32 ret = get_temp_i32(dc);
178fcf5ef2aSThomas Huth         TCGv_i64 t = tcg_temp_new_i64();
179fcf5ef2aSThomas Huth 
180fcf5ef2aSThomas Huth         tcg_gen_shri_i64(t, cpu_fpr[src / 2], 32);
181fcf5ef2aSThomas Huth         tcg_gen_extrl_i64_i32(ret, t);
182fcf5ef2aSThomas Huth         tcg_temp_free_i64(t);
183fcf5ef2aSThomas Huth 
184fcf5ef2aSThomas Huth         return ret;
185fcf5ef2aSThomas Huth     }
186fcf5ef2aSThomas Huth #endif
187fcf5ef2aSThomas Huth }
188fcf5ef2aSThomas Huth 
189fcf5ef2aSThomas Huth static void gen_store_fpr_F(DisasContext *dc, unsigned int dst, TCGv_i32 v)
190fcf5ef2aSThomas Huth {
191fcf5ef2aSThomas Huth #if TCG_TARGET_REG_BITS == 32
192fcf5ef2aSThomas Huth     if (dst & 1) {
193fcf5ef2aSThomas Huth         tcg_gen_mov_i32(TCGV_LOW(cpu_fpr[dst / 2]), v);
194fcf5ef2aSThomas Huth     } else {
195fcf5ef2aSThomas Huth         tcg_gen_mov_i32(TCGV_HIGH(cpu_fpr[dst / 2]), v);
196fcf5ef2aSThomas Huth     }
197fcf5ef2aSThomas Huth #else
198fcf5ef2aSThomas Huth     TCGv_i64 t = MAKE_TCGV_I64(GET_TCGV_I32(v));
199fcf5ef2aSThomas Huth     tcg_gen_deposit_i64(cpu_fpr[dst / 2], cpu_fpr[dst / 2], t,
200fcf5ef2aSThomas Huth                         (dst & 1 ? 0 : 32), 32);
201fcf5ef2aSThomas Huth #endif
202fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, dst);
203fcf5ef2aSThomas Huth }
204fcf5ef2aSThomas Huth 
205fcf5ef2aSThomas Huth static TCGv_i32 gen_dest_fpr_F(DisasContext *dc)
206fcf5ef2aSThomas Huth {
207fcf5ef2aSThomas Huth     return get_temp_i32(dc);
208fcf5ef2aSThomas Huth }
209fcf5ef2aSThomas Huth 
210fcf5ef2aSThomas Huth static TCGv_i64 gen_load_fpr_D(DisasContext *dc, unsigned int src)
211fcf5ef2aSThomas Huth {
212fcf5ef2aSThomas Huth     src = DFPREG(src);
213fcf5ef2aSThomas Huth     return cpu_fpr[src / 2];
214fcf5ef2aSThomas Huth }
215fcf5ef2aSThomas Huth 
216fcf5ef2aSThomas Huth static void gen_store_fpr_D(DisasContext *dc, unsigned int dst, TCGv_i64 v)
217fcf5ef2aSThomas Huth {
218fcf5ef2aSThomas Huth     dst = DFPREG(dst);
219fcf5ef2aSThomas Huth     tcg_gen_mov_i64(cpu_fpr[dst / 2], v);
220fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, dst);
221fcf5ef2aSThomas Huth }
222fcf5ef2aSThomas Huth 
223fcf5ef2aSThomas Huth static TCGv_i64 gen_dest_fpr_D(DisasContext *dc, unsigned int dst)
224fcf5ef2aSThomas Huth {
225fcf5ef2aSThomas Huth     return cpu_fpr[DFPREG(dst) / 2];
226fcf5ef2aSThomas Huth }
227fcf5ef2aSThomas Huth 
228fcf5ef2aSThomas Huth static void gen_op_load_fpr_QT0(unsigned int src)
229fcf5ef2aSThomas Huth {
230fcf5ef2aSThomas Huth     tcg_gen_st_i64(cpu_fpr[src / 2], cpu_env, offsetof(CPUSPARCState, qt0) +
231fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.upper));
232fcf5ef2aSThomas Huth     tcg_gen_st_i64(cpu_fpr[src/2 + 1], cpu_env, offsetof(CPUSPARCState, qt0) +
233fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.lower));
234fcf5ef2aSThomas Huth }
235fcf5ef2aSThomas Huth 
236fcf5ef2aSThomas Huth static void gen_op_load_fpr_QT1(unsigned int src)
237fcf5ef2aSThomas Huth {
238fcf5ef2aSThomas Huth     tcg_gen_st_i64(cpu_fpr[src / 2], cpu_env, offsetof(CPUSPARCState, qt1) +
239fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.upper));
240fcf5ef2aSThomas Huth     tcg_gen_st_i64(cpu_fpr[src/2 + 1], cpu_env, offsetof(CPUSPARCState, qt1) +
241fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.lower));
242fcf5ef2aSThomas Huth }
243fcf5ef2aSThomas Huth 
244fcf5ef2aSThomas Huth static void gen_op_store_QT0_fpr(unsigned int dst)
245fcf5ef2aSThomas Huth {
246fcf5ef2aSThomas Huth     tcg_gen_ld_i64(cpu_fpr[dst / 2], cpu_env, offsetof(CPUSPARCState, qt0) +
247fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.upper));
248fcf5ef2aSThomas Huth     tcg_gen_ld_i64(cpu_fpr[dst/2 + 1], cpu_env, offsetof(CPUSPARCState, qt0) +
249fcf5ef2aSThomas Huth                    offsetof(CPU_QuadU, ll.lower));
250fcf5ef2aSThomas Huth }
251fcf5ef2aSThomas Huth 
252fcf5ef2aSThomas Huth static void gen_store_fpr_Q(DisasContext *dc, unsigned int dst,
253fcf5ef2aSThomas Huth                             TCGv_i64 v1, TCGv_i64 v2)
254fcf5ef2aSThomas Huth {
255fcf5ef2aSThomas Huth     dst = QFPREG(dst);
256fcf5ef2aSThomas Huth 
257fcf5ef2aSThomas Huth     tcg_gen_mov_i64(cpu_fpr[dst / 2], v1);
258fcf5ef2aSThomas Huth     tcg_gen_mov_i64(cpu_fpr[dst / 2 + 1], v2);
259fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, dst);
260fcf5ef2aSThomas Huth }
261fcf5ef2aSThomas Huth 
262fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
263fcf5ef2aSThomas Huth static TCGv_i64 gen_load_fpr_Q0(DisasContext *dc, unsigned int src)
264fcf5ef2aSThomas Huth {
265fcf5ef2aSThomas Huth     src = QFPREG(src);
266fcf5ef2aSThomas Huth     return cpu_fpr[src / 2];
267fcf5ef2aSThomas Huth }
268fcf5ef2aSThomas Huth 
269fcf5ef2aSThomas Huth static TCGv_i64 gen_load_fpr_Q1(DisasContext *dc, unsigned int src)
270fcf5ef2aSThomas Huth {
271fcf5ef2aSThomas Huth     src = QFPREG(src);
272fcf5ef2aSThomas Huth     return cpu_fpr[src / 2 + 1];
273fcf5ef2aSThomas Huth }
274fcf5ef2aSThomas Huth 
275fcf5ef2aSThomas Huth static void gen_move_Q(DisasContext *dc, unsigned int rd, unsigned int rs)
276fcf5ef2aSThomas Huth {
277fcf5ef2aSThomas Huth     rd = QFPREG(rd);
278fcf5ef2aSThomas Huth     rs = QFPREG(rs);
279fcf5ef2aSThomas Huth 
280fcf5ef2aSThomas Huth     tcg_gen_mov_i64(cpu_fpr[rd / 2], cpu_fpr[rs / 2]);
281fcf5ef2aSThomas Huth     tcg_gen_mov_i64(cpu_fpr[rd / 2 + 1], cpu_fpr[rs / 2 + 1]);
282fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, rd);
283fcf5ef2aSThomas Huth }
284fcf5ef2aSThomas Huth #endif
285fcf5ef2aSThomas Huth 
286fcf5ef2aSThomas Huth /* moves */
287fcf5ef2aSThomas Huth #ifdef CONFIG_USER_ONLY
288fcf5ef2aSThomas Huth #define supervisor(dc) 0
289fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
290fcf5ef2aSThomas Huth #define hypervisor(dc) 0
291fcf5ef2aSThomas Huth #endif
292fcf5ef2aSThomas Huth #else
293fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
294c9b459aaSArtyom Tarasenko #define hypervisor(dc) (dc->hypervisor)
295c9b459aaSArtyom Tarasenko #define supervisor(dc) (dc->supervisor | dc->hypervisor)
296fcf5ef2aSThomas Huth #else
297c9b459aaSArtyom Tarasenko #define supervisor(dc) (dc->supervisor)
298fcf5ef2aSThomas Huth #endif
299fcf5ef2aSThomas Huth #endif
300fcf5ef2aSThomas Huth 
301fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
302fcf5ef2aSThomas Huth #ifndef TARGET_ABI32
303fcf5ef2aSThomas Huth #define AM_CHECK(dc) ((dc)->address_mask_32bit)
304fcf5ef2aSThomas Huth #else
305fcf5ef2aSThomas Huth #define AM_CHECK(dc) (1)
306fcf5ef2aSThomas Huth #endif
307fcf5ef2aSThomas Huth #endif
308fcf5ef2aSThomas Huth 
309fcf5ef2aSThomas Huth static inline void gen_address_mask(DisasContext *dc, TCGv addr)
310fcf5ef2aSThomas Huth {
311fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
312fcf5ef2aSThomas Huth     if (AM_CHECK(dc))
313fcf5ef2aSThomas Huth         tcg_gen_andi_tl(addr, addr, 0xffffffffULL);
314fcf5ef2aSThomas Huth #endif
315fcf5ef2aSThomas Huth }
316fcf5ef2aSThomas Huth 
317fcf5ef2aSThomas Huth static inline TCGv gen_load_gpr(DisasContext *dc, int reg)
318fcf5ef2aSThomas Huth {
319fcf5ef2aSThomas Huth     if (reg > 0) {
320fcf5ef2aSThomas Huth         assert(reg < 32);
321fcf5ef2aSThomas Huth         return cpu_regs[reg];
322fcf5ef2aSThomas Huth     } else {
323fcf5ef2aSThomas Huth         TCGv t = get_temp_tl(dc);
324fcf5ef2aSThomas Huth         tcg_gen_movi_tl(t, 0);
325fcf5ef2aSThomas Huth         return t;
326fcf5ef2aSThomas Huth     }
327fcf5ef2aSThomas Huth }
328fcf5ef2aSThomas Huth 
329fcf5ef2aSThomas Huth static inline void gen_store_gpr(DisasContext *dc, int reg, TCGv v)
330fcf5ef2aSThomas Huth {
331fcf5ef2aSThomas Huth     if (reg > 0) {
332fcf5ef2aSThomas Huth         assert(reg < 32);
333fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_regs[reg], v);
334fcf5ef2aSThomas Huth     }
335fcf5ef2aSThomas Huth }
336fcf5ef2aSThomas Huth 
337fcf5ef2aSThomas Huth static inline TCGv gen_dest_gpr(DisasContext *dc, int reg)
338fcf5ef2aSThomas Huth {
339fcf5ef2aSThomas Huth     if (reg > 0) {
340fcf5ef2aSThomas Huth         assert(reg < 32);
341fcf5ef2aSThomas Huth         return cpu_regs[reg];
342fcf5ef2aSThomas Huth     } else {
343fcf5ef2aSThomas Huth         return get_temp_tl(dc);
344fcf5ef2aSThomas Huth     }
345fcf5ef2aSThomas Huth }
346fcf5ef2aSThomas Huth 
347fcf5ef2aSThomas Huth static inline bool use_goto_tb(DisasContext *s, target_ulong pc,
348fcf5ef2aSThomas Huth                                target_ulong npc)
349fcf5ef2aSThomas Huth {
350fcf5ef2aSThomas Huth     if (unlikely(s->singlestep)) {
351fcf5ef2aSThomas Huth         return false;
352fcf5ef2aSThomas Huth     }
353fcf5ef2aSThomas Huth 
354fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
355fcf5ef2aSThomas Huth     return (pc & TARGET_PAGE_MASK) == (s->tb->pc & TARGET_PAGE_MASK) &&
356fcf5ef2aSThomas Huth            (npc & TARGET_PAGE_MASK) == (s->tb->pc & TARGET_PAGE_MASK);
357fcf5ef2aSThomas Huth #else
358fcf5ef2aSThomas Huth     return true;
359fcf5ef2aSThomas Huth #endif
360fcf5ef2aSThomas Huth }
361fcf5ef2aSThomas Huth 
362fcf5ef2aSThomas Huth static inline void gen_goto_tb(DisasContext *s, int tb_num,
363fcf5ef2aSThomas Huth                                target_ulong pc, target_ulong npc)
364fcf5ef2aSThomas Huth {
365fcf5ef2aSThomas Huth     if (use_goto_tb(s, pc, npc))  {
366fcf5ef2aSThomas Huth         /* jump to same page: we can use a direct jump */
367fcf5ef2aSThomas Huth         tcg_gen_goto_tb(tb_num);
368fcf5ef2aSThomas Huth         tcg_gen_movi_tl(cpu_pc, pc);
369fcf5ef2aSThomas Huth         tcg_gen_movi_tl(cpu_npc, npc);
370fcf5ef2aSThomas Huth         tcg_gen_exit_tb((uintptr_t)s->tb + tb_num);
371fcf5ef2aSThomas Huth     } else {
372fcf5ef2aSThomas Huth         /* jump to another page: currently not optimized */
373fcf5ef2aSThomas Huth         tcg_gen_movi_tl(cpu_pc, pc);
374fcf5ef2aSThomas Huth         tcg_gen_movi_tl(cpu_npc, npc);
375fcf5ef2aSThomas Huth         tcg_gen_exit_tb(0);
376fcf5ef2aSThomas Huth     }
377fcf5ef2aSThomas Huth }
378fcf5ef2aSThomas Huth 
379fcf5ef2aSThomas Huth // XXX suboptimal
380fcf5ef2aSThomas Huth static inline void gen_mov_reg_N(TCGv reg, TCGv_i32 src)
381fcf5ef2aSThomas Huth {
382fcf5ef2aSThomas Huth     tcg_gen_extu_i32_tl(reg, src);
383*0b1183e3SPhilippe Mathieu-Daudé     tcg_gen_extract_tl(reg, reg, PSR_NEG_SHIFT, 1);
384fcf5ef2aSThomas Huth }
385fcf5ef2aSThomas Huth 
386fcf5ef2aSThomas Huth static inline void gen_mov_reg_Z(TCGv reg, TCGv_i32 src)
387fcf5ef2aSThomas Huth {
388fcf5ef2aSThomas Huth     tcg_gen_extu_i32_tl(reg, src);
389*0b1183e3SPhilippe Mathieu-Daudé     tcg_gen_extract_tl(reg, reg, PSR_ZERO_SHIFT, 1);
390fcf5ef2aSThomas Huth }
391fcf5ef2aSThomas Huth 
392fcf5ef2aSThomas Huth static inline void gen_mov_reg_V(TCGv reg, TCGv_i32 src)
393fcf5ef2aSThomas Huth {
394fcf5ef2aSThomas Huth     tcg_gen_extu_i32_tl(reg, src);
395*0b1183e3SPhilippe Mathieu-Daudé     tcg_gen_extract_tl(reg, reg, PSR_OVF_SHIFT, 1);
396fcf5ef2aSThomas Huth }
397fcf5ef2aSThomas Huth 
398fcf5ef2aSThomas Huth static inline void gen_mov_reg_C(TCGv reg, TCGv_i32 src)
399fcf5ef2aSThomas Huth {
400fcf5ef2aSThomas Huth     tcg_gen_extu_i32_tl(reg, src);
401*0b1183e3SPhilippe Mathieu-Daudé     tcg_gen_extract_tl(reg, reg, PSR_CARRY_SHIFT, 1);
402fcf5ef2aSThomas Huth }
403fcf5ef2aSThomas Huth 
404fcf5ef2aSThomas Huth static inline void gen_op_add_cc(TCGv dst, TCGv src1, TCGv src2)
405fcf5ef2aSThomas Huth {
406fcf5ef2aSThomas Huth     tcg_gen_mov_tl(cpu_cc_src, src1);
407fcf5ef2aSThomas Huth     tcg_gen_mov_tl(cpu_cc_src2, src2);
408fcf5ef2aSThomas Huth     tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
409fcf5ef2aSThomas Huth     tcg_gen_mov_tl(dst, cpu_cc_dst);
410fcf5ef2aSThomas Huth }
411fcf5ef2aSThomas Huth 
412fcf5ef2aSThomas Huth static TCGv_i32 gen_add32_carry32(void)
413fcf5ef2aSThomas Huth {
414fcf5ef2aSThomas Huth     TCGv_i32 carry_32, cc_src1_32, cc_src2_32;
415fcf5ef2aSThomas Huth 
416fcf5ef2aSThomas Huth     /* Carry is computed from a previous add: (dst < src)  */
417fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
418fcf5ef2aSThomas Huth     cc_src1_32 = tcg_temp_new_i32();
419fcf5ef2aSThomas Huth     cc_src2_32 = tcg_temp_new_i32();
420fcf5ef2aSThomas Huth     tcg_gen_extrl_i64_i32(cc_src1_32, cpu_cc_dst);
421fcf5ef2aSThomas Huth     tcg_gen_extrl_i64_i32(cc_src2_32, cpu_cc_src);
422fcf5ef2aSThomas Huth #else
423fcf5ef2aSThomas Huth     cc_src1_32 = cpu_cc_dst;
424fcf5ef2aSThomas Huth     cc_src2_32 = cpu_cc_src;
425fcf5ef2aSThomas Huth #endif
426fcf5ef2aSThomas Huth 
427fcf5ef2aSThomas Huth     carry_32 = tcg_temp_new_i32();
428fcf5ef2aSThomas Huth     tcg_gen_setcond_i32(TCG_COND_LTU, carry_32, cc_src1_32, cc_src2_32);
429fcf5ef2aSThomas Huth 
430fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
431fcf5ef2aSThomas Huth     tcg_temp_free_i32(cc_src1_32);
432fcf5ef2aSThomas Huth     tcg_temp_free_i32(cc_src2_32);
433fcf5ef2aSThomas Huth #endif
434fcf5ef2aSThomas Huth 
435fcf5ef2aSThomas Huth     return carry_32;
436fcf5ef2aSThomas Huth }
437fcf5ef2aSThomas Huth 
438fcf5ef2aSThomas Huth static TCGv_i32 gen_sub32_carry32(void)
439fcf5ef2aSThomas Huth {
440fcf5ef2aSThomas Huth     TCGv_i32 carry_32, cc_src1_32, cc_src2_32;
441fcf5ef2aSThomas Huth 
442fcf5ef2aSThomas Huth     /* Carry is computed from a previous borrow: (src1 < src2)  */
443fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
444fcf5ef2aSThomas Huth     cc_src1_32 = tcg_temp_new_i32();
445fcf5ef2aSThomas Huth     cc_src2_32 = tcg_temp_new_i32();
446fcf5ef2aSThomas Huth     tcg_gen_extrl_i64_i32(cc_src1_32, cpu_cc_src);
447fcf5ef2aSThomas Huth     tcg_gen_extrl_i64_i32(cc_src2_32, cpu_cc_src2);
448fcf5ef2aSThomas Huth #else
449fcf5ef2aSThomas Huth     cc_src1_32 = cpu_cc_src;
450fcf5ef2aSThomas Huth     cc_src2_32 = cpu_cc_src2;
451fcf5ef2aSThomas Huth #endif
452fcf5ef2aSThomas Huth 
453fcf5ef2aSThomas Huth     carry_32 = tcg_temp_new_i32();
454fcf5ef2aSThomas Huth     tcg_gen_setcond_i32(TCG_COND_LTU, carry_32, cc_src1_32, cc_src2_32);
455fcf5ef2aSThomas Huth 
456fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
457fcf5ef2aSThomas Huth     tcg_temp_free_i32(cc_src1_32);
458fcf5ef2aSThomas Huth     tcg_temp_free_i32(cc_src2_32);
459fcf5ef2aSThomas Huth #endif
460fcf5ef2aSThomas Huth 
461fcf5ef2aSThomas Huth     return carry_32;
462fcf5ef2aSThomas Huth }
463fcf5ef2aSThomas Huth 
464fcf5ef2aSThomas Huth static void gen_op_addx_int(DisasContext *dc, TCGv dst, TCGv src1,
465fcf5ef2aSThomas Huth                             TCGv src2, int update_cc)
466fcf5ef2aSThomas Huth {
467fcf5ef2aSThomas Huth     TCGv_i32 carry_32;
468fcf5ef2aSThomas Huth     TCGv carry;
469fcf5ef2aSThomas Huth 
470fcf5ef2aSThomas Huth     switch (dc->cc_op) {
471fcf5ef2aSThomas Huth     case CC_OP_DIV:
472fcf5ef2aSThomas Huth     case CC_OP_LOGIC:
473fcf5ef2aSThomas Huth         /* Carry is known to be zero.  Fall back to plain ADD.  */
474fcf5ef2aSThomas Huth         if (update_cc) {
475fcf5ef2aSThomas Huth             gen_op_add_cc(dst, src1, src2);
476fcf5ef2aSThomas Huth         } else {
477fcf5ef2aSThomas Huth             tcg_gen_add_tl(dst, src1, src2);
478fcf5ef2aSThomas Huth         }
479fcf5ef2aSThomas Huth         return;
480fcf5ef2aSThomas Huth 
481fcf5ef2aSThomas Huth     case CC_OP_ADD:
482fcf5ef2aSThomas Huth     case CC_OP_TADD:
483fcf5ef2aSThomas Huth     case CC_OP_TADDTV:
484fcf5ef2aSThomas Huth         if (TARGET_LONG_BITS == 32) {
485fcf5ef2aSThomas Huth             /* We can re-use the host's hardware carry generation by using
486fcf5ef2aSThomas Huth                an ADD2 opcode.  We discard the low part of the output.
487fcf5ef2aSThomas Huth                Ideally we'd combine this operation with the add that
488fcf5ef2aSThomas Huth                generated the carry in the first place.  */
489fcf5ef2aSThomas Huth             carry = tcg_temp_new();
490fcf5ef2aSThomas Huth             tcg_gen_add2_tl(carry, dst, cpu_cc_src, src1, cpu_cc_src2, src2);
491fcf5ef2aSThomas Huth             tcg_temp_free(carry);
492fcf5ef2aSThomas Huth             goto add_done;
493fcf5ef2aSThomas Huth         }
494fcf5ef2aSThomas Huth         carry_32 = gen_add32_carry32();
495fcf5ef2aSThomas Huth         break;
496fcf5ef2aSThomas Huth 
497fcf5ef2aSThomas Huth     case CC_OP_SUB:
498fcf5ef2aSThomas Huth     case CC_OP_TSUB:
499fcf5ef2aSThomas Huth     case CC_OP_TSUBTV:
500fcf5ef2aSThomas Huth         carry_32 = gen_sub32_carry32();
501fcf5ef2aSThomas Huth         break;
502fcf5ef2aSThomas Huth 
503fcf5ef2aSThomas Huth     default:
504fcf5ef2aSThomas Huth         /* We need external help to produce the carry.  */
505fcf5ef2aSThomas Huth         carry_32 = tcg_temp_new_i32();
506fcf5ef2aSThomas Huth         gen_helper_compute_C_icc(carry_32, cpu_env);
507fcf5ef2aSThomas Huth         break;
508fcf5ef2aSThomas Huth     }
509fcf5ef2aSThomas Huth 
510fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
511fcf5ef2aSThomas Huth     carry = tcg_temp_new();
512fcf5ef2aSThomas Huth     tcg_gen_extu_i32_i64(carry, carry_32);
513fcf5ef2aSThomas Huth #else
514fcf5ef2aSThomas Huth     carry = carry_32;
515fcf5ef2aSThomas Huth #endif
516fcf5ef2aSThomas Huth 
517fcf5ef2aSThomas Huth     tcg_gen_add_tl(dst, src1, src2);
518fcf5ef2aSThomas Huth     tcg_gen_add_tl(dst, dst, carry);
519fcf5ef2aSThomas Huth 
520fcf5ef2aSThomas Huth     tcg_temp_free_i32(carry_32);
521fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
522fcf5ef2aSThomas Huth     tcg_temp_free(carry);
523fcf5ef2aSThomas Huth #endif
524fcf5ef2aSThomas Huth 
525fcf5ef2aSThomas Huth  add_done:
526fcf5ef2aSThomas Huth     if (update_cc) {
527fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src, src1);
528fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src2, src2);
529fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_dst, dst);
530fcf5ef2aSThomas Huth         tcg_gen_movi_i32(cpu_cc_op, CC_OP_ADDX);
531fcf5ef2aSThomas Huth         dc->cc_op = CC_OP_ADDX;
532fcf5ef2aSThomas Huth     }
533fcf5ef2aSThomas Huth }
534fcf5ef2aSThomas Huth 
535fcf5ef2aSThomas Huth static inline void gen_op_sub_cc(TCGv dst, TCGv src1, TCGv src2)
536fcf5ef2aSThomas Huth {
537fcf5ef2aSThomas Huth     tcg_gen_mov_tl(cpu_cc_src, src1);
538fcf5ef2aSThomas Huth     tcg_gen_mov_tl(cpu_cc_src2, src2);
539fcf5ef2aSThomas Huth     tcg_gen_sub_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
540fcf5ef2aSThomas Huth     tcg_gen_mov_tl(dst, cpu_cc_dst);
541fcf5ef2aSThomas Huth }
542fcf5ef2aSThomas Huth 
543fcf5ef2aSThomas Huth static void gen_op_subx_int(DisasContext *dc, TCGv dst, TCGv src1,
544fcf5ef2aSThomas Huth                             TCGv src2, int update_cc)
545fcf5ef2aSThomas Huth {
546fcf5ef2aSThomas Huth     TCGv_i32 carry_32;
547fcf5ef2aSThomas Huth     TCGv carry;
548fcf5ef2aSThomas Huth 
549fcf5ef2aSThomas Huth     switch (dc->cc_op) {
550fcf5ef2aSThomas Huth     case CC_OP_DIV:
551fcf5ef2aSThomas Huth     case CC_OP_LOGIC:
552fcf5ef2aSThomas Huth         /* Carry is known to be zero.  Fall back to plain SUB.  */
553fcf5ef2aSThomas Huth         if (update_cc) {
554fcf5ef2aSThomas Huth             gen_op_sub_cc(dst, src1, src2);
555fcf5ef2aSThomas Huth         } else {
556fcf5ef2aSThomas Huth             tcg_gen_sub_tl(dst, src1, src2);
557fcf5ef2aSThomas Huth         }
558fcf5ef2aSThomas Huth         return;
559fcf5ef2aSThomas Huth 
560fcf5ef2aSThomas Huth     case CC_OP_ADD:
561fcf5ef2aSThomas Huth     case CC_OP_TADD:
562fcf5ef2aSThomas Huth     case CC_OP_TADDTV:
563fcf5ef2aSThomas Huth         carry_32 = gen_add32_carry32();
564fcf5ef2aSThomas Huth         break;
565fcf5ef2aSThomas Huth 
566fcf5ef2aSThomas Huth     case CC_OP_SUB:
567fcf5ef2aSThomas Huth     case CC_OP_TSUB:
568fcf5ef2aSThomas Huth     case CC_OP_TSUBTV:
569fcf5ef2aSThomas Huth         if (TARGET_LONG_BITS == 32) {
570fcf5ef2aSThomas Huth             /* We can re-use the host's hardware carry generation by using
571fcf5ef2aSThomas Huth                a SUB2 opcode.  We discard the low part of the output.
572fcf5ef2aSThomas Huth                Ideally we'd combine this operation with the add that
573fcf5ef2aSThomas Huth                generated the carry in the first place.  */
574fcf5ef2aSThomas Huth             carry = tcg_temp_new();
575fcf5ef2aSThomas Huth             tcg_gen_sub2_tl(carry, dst, cpu_cc_src, src1, cpu_cc_src2, src2);
576fcf5ef2aSThomas Huth             tcg_temp_free(carry);
577fcf5ef2aSThomas Huth             goto sub_done;
578fcf5ef2aSThomas Huth         }
579fcf5ef2aSThomas Huth         carry_32 = gen_sub32_carry32();
580fcf5ef2aSThomas Huth         break;
581fcf5ef2aSThomas Huth 
582fcf5ef2aSThomas Huth     default:
583fcf5ef2aSThomas Huth         /* We need external help to produce the carry.  */
584fcf5ef2aSThomas Huth         carry_32 = tcg_temp_new_i32();
585fcf5ef2aSThomas Huth         gen_helper_compute_C_icc(carry_32, cpu_env);
586fcf5ef2aSThomas Huth         break;
587fcf5ef2aSThomas Huth     }
588fcf5ef2aSThomas Huth 
589fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
590fcf5ef2aSThomas Huth     carry = tcg_temp_new();
591fcf5ef2aSThomas Huth     tcg_gen_extu_i32_i64(carry, carry_32);
592fcf5ef2aSThomas Huth #else
593fcf5ef2aSThomas Huth     carry = carry_32;
594fcf5ef2aSThomas Huth #endif
595fcf5ef2aSThomas Huth 
596fcf5ef2aSThomas Huth     tcg_gen_sub_tl(dst, src1, src2);
597fcf5ef2aSThomas Huth     tcg_gen_sub_tl(dst, dst, carry);
598fcf5ef2aSThomas Huth 
599fcf5ef2aSThomas Huth     tcg_temp_free_i32(carry_32);
600fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 64
601fcf5ef2aSThomas Huth     tcg_temp_free(carry);
602fcf5ef2aSThomas Huth #endif
603fcf5ef2aSThomas Huth 
604fcf5ef2aSThomas Huth  sub_done:
605fcf5ef2aSThomas Huth     if (update_cc) {
606fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src, src1);
607fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src2, src2);
608fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_dst, dst);
609fcf5ef2aSThomas Huth         tcg_gen_movi_i32(cpu_cc_op, CC_OP_SUBX);
610fcf5ef2aSThomas Huth         dc->cc_op = CC_OP_SUBX;
611fcf5ef2aSThomas Huth     }
612fcf5ef2aSThomas Huth }
613fcf5ef2aSThomas Huth 
614fcf5ef2aSThomas Huth static inline void gen_op_mulscc(TCGv dst, TCGv src1, TCGv src2)
615fcf5ef2aSThomas Huth {
616fcf5ef2aSThomas Huth     TCGv r_temp, zero, t0;
617fcf5ef2aSThomas Huth 
618fcf5ef2aSThomas Huth     r_temp = tcg_temp_new();
619fcf5ef2aSThomas Huth     t0 = tcg_temp_new();
620fcf5ef2aSThomas Huth 
621fcf5ef2aSThomas Huth     /* old op:
622fcf5ef2aSThomas Huth     if (!(env->y & 1))
623fcf5ef2aSThomas Huth         T1 = 0;
624fcf5ef2aSThomas Huth     */
625fcf5ef2aSThomas Huth     zero = tcg_const_tl(0);
626fcf5ef2aSThomas Huth     tcg_gen_andi_tl(cpu_cc_src, src1, 0xffffffff);
627fcf5ef2aSThomas Huth     tcg_gen_andi_tl(r_temp, cpu_y, 0x1);
628fcf5ef2aSThomas Huth     tcg_gen_andi_tl(cpu_cc_src2, src2, 0xffffffff);
629fcf5ef2aSThomas Huth     tcg_gen_movcond_tl(TCG_COND_EQ, cpu_cc_src2, r_temp, zero,
630fcf5ef2aSThomas Huth                        zero, cpu_cc_src2);
631fcf5ef2aSThomas Huth     tcg_temp_free(zero);
632fcf5ef2aSThomas Huth 
633fcf5ef2aSThomas Huth     // b2 = T0 & 1;
634fcf5ef2aSThomas Huth     // env->y = (b2 << 31) | (env->y >> 1);
635fcf5ef2aSThomas Huth     tcg_gen_andi_tl(r_temp, cpu_cc_src, 0x1);
636fcf5ef2aSThomas Huth     tcg_gen_shli_tl(r_temp, r_temp, 31);
637*0b1183e3SPhilippe Mathieu-Daudé     tcg_gen_extract_tl(t0, cpu_y, 1, 31);
638fcf5ef2aSThomas Huth     tcg_gen_or_tl(t0, t0, r_temp);
639fcf5ef2aSThomas Huth     tcg_gen_andi_tl(cpu_y, t0, 0xffffffff);
640fcf5ef2aSThomas Huth 
641fcf5ef2aSThomas Huth     // b1 = N ^ V;
642fcf5ef2aSThomas Huth     gen_mov_reg_N(t0, cpu_psr);
643fcf5ef2aSThomas Huth     gen_mov_reg_V(r_temp, cpu_psr);
644fcf5ef2aSThomas Huth     tcg_gen_xor_tl(t0, t0, r_temp);
645fcf5ef2aSThomas Huth     tcg_temp_free(r_temp);
646fcf5ef2aSThomas Huth 
647fcf5ef2aSThomas Huth     // T0 = (b1 << 31) | (T0 >> 1);
648fcf5ef2aSThomas Huth     // src1 = T0;
649fcf5ef2aSThomas Huth     tcg_gen_shli_tl(t0, t0, 31);
650fcf5ef2aSThomas Huth     tcg_gen_shri_tl(cpu_cc_src, cpu_cc_src, 1);
651fcf5ef2aSThomas Huth     tcg_gen_or_tl(cpu_cc_src, cpu_cc_src, t0);
652fcf5ef2aSThomas Huth     tcg_temp_free(t0);
653fcf5ef2aSThomas Huth 
654fcf5ef2aSThomas Huth     tcg_gen_add_tl(cpu_cc_dst, cpu_cc_src, cpu_cc_src2);
655fcf5ef2aSThomas Huth 
656fcf5ef2aSThomas Huth     tcg_gen_mov_tl(dst, cpu_cc_dst);
657fcf5ef2aSThomas Huth }
658fcf5ef2aSThomas Huth 
659fcf5ef2aSThomas Huth static inline void gen_op_multiply(TCGv dst, TCGv src1, TCGv src2, int sign_ext)
660fcf5ef2aSThomas Huth {
661fcf5ef2aSThomas Huth #if TARGET_LONG_BITS == 32
662fcf5ef2aSThomas Huth     if (sign_ext) {
663fcf5ef2aSThomas Huth         tcg_gen_muls2_tl(dst, cpu_y, src1, src2);
664fcf5ef2aSThomas Huth     } else {
665fcf5ef2aSThomas Huth         tcg_gen_mulu2_tl(dst, cpu_y, src1, src2);
666fcf5ef2aSThomas Huth     }
667fcf5ef2aSThomas Huth #else
668fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new_i64();
669fcf5ef2aSThomas Huth     TCGv t1 = tcg_temp_new_i64();
670fcf5ef2aSThomas Huth 
671fcf5ef2aSThomas Huth     if (sign_ext) {
672fcf5ef2aSThomas Huth         tcg_gen_ext32s_i64(t0, src1);
673fcf5ef2aSThomas Huth         tcg_gen_ext32s_i64(t1, src2);
674fcf5ef2aSThomas Huth     } else {
675fcf5ef2aSThomas Huth         tcg_gen_ext32u_i64(t0, src1);
676fcf5ef2aSThomas Huth         tcg_gen_ext32u_i64(t1, src2);
677fcf5ef2aSThomas Huth     }
678fcf5ef2aSThomas Huth 
679fcf5ef2aSThomas Huth     tcg_gen_mul_i64(dst, t0, t1);
680fcf5ef2aSThomas Huth     tcg_temp_free(t0);
681fcf5ef2aSThomas Huth     tcg_temp_free(t1);
682fcf5ef2aSThomas Huth 
683fcf5ef2aSThomas Huth     tcg_gen_shri_i64(cpu_y, dst, 32);
684fcf5ef2aSThomas Huth #endif
685fcf5ef2aSThomas Huth }
686fcf5ef2aSThomas Huth 
687fcf5ef2aSThomas Huth static inline void gen_op_umul(TCGv dst, TCGv src1, TCGv src2)
688fcf5ef2aSThomas Huth {
689fcf5ef2aSThomas Huth     /* zero-extend truncated operands before multiplication */
690fcf5ef2aSThomas Huth     gen_op_multiply(dst, src1, src2, 0);
691fcf5ef2aSThomas Huth }
692fcf5ef2aSThomas Huth 
693fcf5ef2aSThomas Huth static inline void gen_op_smul(TCGv dst, TCGv src1, TCGv src2)
694fcf5ef2aSThomas Huth {
695fcf5ef2aSThomas Huth     /* sign-extend truncated operands before multiplication */
696fcf5ef2aSThomas Huth     gen_op_multiply(dst, src1, src2, 1);
697fcf5ef2aSThomas Huth }
698fcf5ef2aSThomas Huth 
699fcf5ef2aSThomas Huth // 1
700fcf5ef2aSThomas Huth static inline void gen_op_eval_ba(TCGv dst)
701fcf5ef2aSThomas Huth {
702fcf5ef2aSThomas Huth     tcg_gen_movi_tl(dst, 1);
703fcf5ef2aSThomas Huth }
704fcf5ef2aSThomas Huth 
705fcf5ef2aSThomas Huth // Z
706fcf5ef2aSThomas Huth static inline void gen_op_eval_be(TCGv dst, TCGv_i32 src)
707fcf5ef2aSThomas Huth {
708fcf5ef2aSThomas Huth     gen_mov_reg_Z(dst, src);
709fcf5ef2aSThomas Huth }
710fcf5ef2aSThomas Huth 
711fcf5ef2aSThomas Huth // Z | (N ^ V)
712fcf5ef2aSThomas Huth static inline void gen_op_eval_ble(TCGv dst, TCGv_i32 src)
713fcf5ef2aSThomas Huth {
714fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
715fcf5ef2aSThomas Huth     gen_mov_reg_N(t0, src);
716fcf5ef2aSThomas Huth     gen_mov_reg_V(dst, src);
717fcf5ef2aSThomas Huth     tcg_gen_xor_tl(dst, dst, t0);
718fcf5ef2aSThomas Huth     gen_mov_reg_Z(t0, src);
719fcf5ef2aSThomas Huth     tcg_gen_or_tl(dst, dst, t0);
720fcf5ef2aSThomas Huth     tcg_temp_free(t0);
721fcf5ef2aSThomas Huth }
722fcf5ef2aSThomas Huth 
723fcf5ef2aSThomas Huth // N ^ V
724fcf5ef2aSThomas Huth static inline void gen_op_eval_bl(TCGv dst, TCGv_i32 src)
725fcf5ef2aSThomas Huth {
726fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
727fcf5ef2aSThomas Huth     gen_mov_reg_V(t0, src);
728fcf5ef2aSThomas Huth     gen_mov_reg_N(dst, src);
729fcf5ef2aSThomas Huth     tcg_gen_xor_tl(dst, dst, t0);
730fcf5ef2aSThomas Huth     tcg_temp_free(t0);
731fcf5ef2aSThomas Huth }
732fcf5ef2aSThomas Huth 
733fcf5ef2aSThomas Huth // C | Z
734fcf5ef2aSThomas Huth static inline void gen_op_eval_bleu(TCGv dst, TCGv_i32 src)
735fcf5ef2aSThomas Huth {
736fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
737fcf5ef2aSThomas Huth     gen_mov_reg_Z(t0, src);
738fcf5ef2aSThomas Huth     gen_mov_reg_C(dst, src);
739fcf5ef2aSThomas Huth     tcg_gen_or_tl(dst, dst, t0);
740fcf5ef2aSThomas Huth     tcg_temp_free(t0);
741fcf5ef2aSThomas Huth }
742fcf5ef2aSThomas Huth 
743fcf5ef2aSThomas Huth // C
744fcf5ef2aSThomas Huth static inline void gen_op_eval_bcs(TCGv dst, TCGv_i32 src)
745fcf5ef2aSThomas Huth {
746fcf5ef2aSThomas Huth     gen_mov_reg_C(dst, src);
747fcf5ef2aSThomas Huth }
748fcf5ef2aSThomas Huth 
749fcf5ef2aSThomas Huth // V
750fcf5ef2aSThomas Huth static inline void gen_op_eval_bvs(TCGv dst, TCGv_i32 src)
751fcf5ef2aSThomas Huth {
752fcf5ef2aSThomas Huth     gen_mov_reg_V(dst, src);
753fcf5ef2aSThomas Huth }
754fcf5ef2aSThomas Huth 
755fcf5ef2aSThomas Huth // 0
756fcf5ef2aSThomas Huth static inline void gen_op_eval_bn(TCGv dst)
757fcf5ef2aSThomas Huth {
758fcf5ef2aSThomas Huth     tcg_gen_movi_tl(dst, 0);
759fcf5ef2aSThomas Huth }
760fcf5ef2aSThomas Huth 
761fcf5ef2aSThomas Huth // N
762fcf5ef2aSThomas Huth static inline void gen_op_eval_bneg(TCGv dst, TCGv_i32 src)
763fcf5ef2aSThomas Huth {
764fcf5ef2aSThomas Huth     gen_mov_reg_N(dst, src);
765fcf5ef2aSThomas Huth }
766fcf5ef2aSThomas Huth 
767fcf5ef2aSThomas Huth // !Z
768fcf5ef2aSThomas Huth static inline void gen_op_eval_bne(TCGv dst, TCGv_i32 src)
769fcf5ef2aSThomas Huth {
770fcf5ef2aSThomas Huth     gen_mov_reg_Z(dst, src);
771fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
772fcf5ef2aSThomas Huth }
773fcf5ef2aSThomas Huth 
774fcf5ef2aSThomas Huth // !(Z | (N ^ V))
775fcf5ef2aSThomas Huth static inline void gen_op_eval_bg(TCGv dst, TCGv_i32 src)
776fcf5ef2aSThomas Huth {
777fcf5ef2aSThomas Huth     gen_op_eval_ble(dst, src);
778fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
779fcf5ef2aSThomas Huth }
780fcf5ef2aSThomas Huth 
781fcf5ef2aSThomas Huth // !(N ^ V)
782fcf5ef2aSThomas Huth static inline void gen_op_eval_bge(TCGv dst, TCGv_i32 src)
783fcf5ef2aSThomas Huth {
784fcf5ef2aSThomas Huth     gen_op_eval_bl(dst, src);
785fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
786fcf5ef2aSThomas Huth }
787fcf5ef2aSThomas Huth 
788fcf5ef2aSThomas Huth // !(C | Z)
789fcf5ef2aSThomas Huth static inline void gen_op_eval_bgu(TCGv dst, TCGv_i32 src)
790fcf5ef2aSThomas Huth {
791fcf5ef2aSThomas Huth     gen_op_eval_bleu(dst, src);
792fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
793fcf5ef2aSThomas Huth }
794fcf5ef2aSThomas Huth 
795fcf5ef2aSThomas Huth // !C
796fcf5ef2aSThomas Huth static inline void gen_op_eval_bcc(TCGv dst, TCGv_i32 src)
797fcf5ef2aSThomas Huth {
798fcf5ef2aSThomas Huth     gen_mov_reg_C(dst, src);
799fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
800fcf5ef2aSThomas Huth }
801fcf5ef2aSThomas Huth 
802fcf5ef2aSThomas Huth // !N
803fcf5ef2aSThomas Huth static inline void gen_op_eval_bpos(TCGv dst, TCGv_i32 src)
804fcf5ef2aSThomas Huth {
805fcf5ef2aSThomas Huth     gen_mov_reg_N(dst, src);
806fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
807fcf5ef2aSThomas Huth }
808fcf5ef2aSThomas Huth 
809fcf5ef2aSThomas Huth // !V
810fcf5ef2aSThomas Huth static inline void gen_op_eval_bvc(TCGv dst, TCGv_i32 src)
811fcf5ef2aSThomas Huth {
812fcf5ef2aSThomas Huth     gen_mov_reg_V(dst, src);
813fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
814fcf5ef2aSThomas Huth }
815fcf5ef2aSThomas Huth 
816fcf5ef2aSThomas Huth /*
817fcf5ef2aSThomas Huth   FPSR bit field FCC1 | FCC0:
818fcf5ef2aSThomas Huth    0 =
819fcf5ef2aSThomas Huth    1 <
820fcf5ef2aSThomas Huth    2 >
821fcf5ef2aSThomas Huth    3 unordered
822fcf5ef2aSThomas Huth */
823fcf5ef2aSThomas Huth static inline void gen_mov_reg_FCC0(TCGv reg, TCGv src,
824fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
825fcf5ef2aSThomas Huth {
826fcf5ef2aSThomas Huth     tcg_gen_shri_tl(reg, src, FSR_FCC0_SHIFT + fcc_offset);
827fcf5ef2aSThomas Huth     tcg_gen_andi_tl(reg, reg, 0x1);
828fcf5ef2aSThomas Huth }
829fcf5ef2aSThomas Huth 
830fcf5ef2aSThomas Huth static inline void gen_mov_reg_FCC1(TCGv reg, TCGv src,
831fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
832fcf5ef2aSThomas Huth {
833fcf5ef2aSThomas Huth     tcg_gen_shri_tl(reg, src, FSR_FCC1_SHIFT + fcc_offset);
834fcf5ef2aSThomas Huth     tcg_gen_andi_tl(reg, reg, 0x1);
835fcf5ef2aSThomas Huth }
836fcf5ef2aSThomas Huth 
837fcf5ef2aSThomas Huth // !0: FCC0 | FCC1
838fcf5ef2aSThomas Huth static inline void gen_op_eval_fbne(TCGv dst, TCGv src,
839fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
840fcf5ef2aSThomas Huth {
841fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
842fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
843fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
844fcf5ef2aSThomas Huth     tcg_gen_or_tl(dst, dst, t0);
845fcf5ef2aSThomas Huth     tcg_temp_free(t0);
846fcf5ef2aSThomas Huth }
847fcf5ef2aSThomas Huth 
848fcf5ef2aSThomas Huth // 1 or 2: FCC0 ^ FCC1
849fcf5ef2aSThomas Huth static inline void gen_op_eval_fblg(TCGv dst, TCGv src,
850fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
851fcf5ef2aSThomas Huth {
852fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
853fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
854fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
855fcf5ef2aSThomas Huth     tcg_gen_xor_tl(dst, dst, t0);
856fcf5ef2aSThomas Huth     tcg_temp_free(t0);
857fcf5ef2aSThomas Huth }
858fcf5ef2aSThomas Huth 
859fcf5ef2aSThomas Huth // 1 or 3: FCC0
860fcf5ef2aSThomas Huth static inline void gen_op_eval_fbul(TCGv dst, TCGv src,
861fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
862fcf5ef2aSThomas Huth {
863fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
864fcf5ef2aSThomas Huth }
865fcf5ef2aSThomas Huth 
866fcf5ef2aSThomas Huth // 1: FCC0 & !FCC1
867fcf5ef2aSThomas Huth static inline void gen_op_eval_fbl(TCGv dst, TCGv src,
868fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
869fcf5ef2aSThomas Huth {
870fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
871fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
872fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
873fcf5ef2aSThomas Huth     tcg_gen_andc_tl(dst, dst, t0);
874fcf5ef2aSThomas Huth     tcg_temp_free(t0);
875fcf5ef2aSThomas Huth }
876fcf5ef2aSThomas Huth 
877fcf5ef2aSThomas Huth // 2 or 3: FCC1
878fcf5ef2aSThomas Huth static inline void gen_op_eval_fbug(TCGv dst, TCGv src,
879fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
880fcf5ef2aSThomas Huth {
881fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(dst, src, fcc_offset);
882fcf5ef2aSThomas Huth }
883fcf5ef2aSThomas Huth 
884fcf5ef2aSThomas Huth // 2: !FCC0 & FCC1
885fcf5ef2aSThomas Huth static inline void gen_op_eval_fbg(TCGv dst, TCGv src,
886fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
887fcf5ef2aSThomas Huth {
888fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
889fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
890fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
891fcf5ef2aSThomas Huth     tcg_gen_andc_tl(dst, t0, dst);
892fcf5ef2aSThomas Huth     tcg_temp_free(t0);
893fcf5ef2aSThomas Huth }
894fcf5ef2aSThomas Huth 
895fcf5ef2aSThomas Huth // 3: FCC0 & FCC1
896fcf5ef2aSThomas Huth static inline void gen_op_eval_fbu(TCGv dst, TCGv src,
897fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
898fcf5ef2aSThomas Huth {
899fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
900fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
901fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
902fcf5ef2aSThomas Huth     tcg_gen_and_tl(dst, dst, t0);
903fcf5ef2aSThomas Huth     tcg_temp_free(t0);
904fcf5ef2aSThomas Huth }
905fcf5ef2aSThomas Huth 
906fcf5ef2aSThomas Huth // 0: !(FCC0 | FCC1)
907fcf5ef2aSThomas Huth static inline void gen_op_eval_fbe(TCGv dst, TCGv src,
908fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
909fcf5ef2aSThomas Huth {
910fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
911fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
912fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
913fcf5ef2aSThomas Huth     tcg_gen_or_tl(dst, dst, t0);
914fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
915fcf5ef2aSThomas Huth     tcg_temp_free(t0);
916fcf5ef2aSThomas Huth }
917fcf5ef2aSThomas Huth 
918fcf5ef2aSThomas Huth // 0 or 3: !(FCC0 ^ FCC1)
919fcf5ef2aSThomas Huth static inline void gen_op_eval_fbue(TCGv dst, TCGv src,
920fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
921fcf5ef2aSThomas Huth {
922fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
923fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
924fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
925fcf5ef2aSThomas Huth     tcg_gen_xor_tl(dst, dst, t0);
926fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
927fcf5ef2aSThomas Huth     tcg_temp_free(t0);
928fcf5ef2aSThomas Huth }
929fcf5ef2aSThomas Huth 
930fcf5ef2aSThomas Huth // 0 or 2: !FCC0
931fcf5ef2aSThomas Huth static inline void gen_op_eval_fbge(TCGv dst, TCGv src,
932fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
933fcf5ef2aSThomas Huth {
934fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
935fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
936fcf5ef2aSThomas Huth }
937fcf5ef2aSThomas Huth 
938fcf5ef2aSThomas Huth // !1: !(FCC0 & !FCC1)
939fcf5ef2aSThomas Huth static inline void gen_op_eval_fbuge(TCGv dst, TCGv src,
940fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
941fcf5ef2aSThomas Huth {
942fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
943fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
944fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
945fcf5ef2aSThomas Huth     tcg_gen_andc_tl(dst, dst, t0);
946fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
947fcf5ef2aSThomas Huth     tcg_temp_free(t0);
948fcf5ef2aSThomas Huth }
949fcf5ef2aSThomas Huth 
950fcf5ef2aSThomas Huth // 0 or 1: !FCC1
951fcf5ef2aSThomas Huth static inline void gen_op_eval_fble(TCGv dst, TCGv src,
952fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
953fcf5ef2aSThomas Huth {
954fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(dst, src, fcc_offset);
955fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
956fcf5ef2aSThomas Huth }
957fcf5ef2aSThomas Huth 
958fcf5ef2aSThomas Huth // !2: !(!FCC0 & FCC1)
959fcf5ef2aSThomas Huth static inline void gen_op_eval_fbule(TCGv dst, TCGv src,
960fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
961fcf5ef2aSThomas Huth {
962fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
963fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
964fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
965fcf5ef2aSThomas Huth     tcg_gen_andc_tl(dst, t0, dst);
966fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
967fcf5ef2aSThomas Huth     tcg_temp_free(t0);
968fcf5ef2aSThomas Huth }
969fcf5ef2aSThomas Huth 
970fcf5ef2aSThomas Huth // !3: !(FCC0 & FCC1)
971fcf5ef2aSThomas Huth static inline void gen_op_eval_fbo(TCGv dst, TCGv src,
972fcf5ef2aSThomas Huth                                     unsigned int fcc_offset)
973fcf5ef2aSThomas Huth {
974fcf5ef2aSThomas Huth     TCGv t0 = tcg_temp_new();
975fcf5ef2aSThomas Huth     gen_mov_reg_FCC0(dst, src, fcc_offset);
976fcf5ef2aSThomas Huth     gen_mov_reg_FCC1(t0, src, fcc_offset);
977fcf5ef2aSThomas Huth     tcg_gen_and_tl(dst, dst, t0);
978fcf5ef2aSThomas Huth     tcg_gen_xori_tl(dst, dst, 0x1);
979fcf5ef2aSThomas Huth     tcg_temp_free(t0);
980fcf5ef2aSThomas Huth }
981fcf5ef2aSThomas Huth 
982fcf5ef2aSThomas Huth static inline void gen_branch2(DisasContext *dc, target_ulong pc1,
983fcf5ef2aSThomas Huth                                target_ulong pc2, TCGv r_cond)
984fcf5ef2aSThomas Huth {
985fcf5ef2aSThomas Huth     TCGLabel *l1 = gen_new_label();
986fcf5ef2aSThomas Huth 
987fcf5ef2aSThomas Huth     tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond, 0, l1);
988fcf5ef2aSThomas Huth 
989fcf5ef2aSThomas Huth     gen_goto_tb(dc, 0, pc1, pc1 + 4);
990fcf5ef2aSThomas Huth 
991fcf5ef2aSThomas Huth     gen_set_label(l1);
992fcf5ef2aSThomas Huth     gen_goto_tb(dc, 1, pc2, pc2 + 4);
993fcf5ef2aSThomas Huth }
994fcf5ef2aSThomas Huth 
995fcf5ef2aSThomas Huth static void gen_branch_a(DisasContext *dc, target_ulong pc1)
996fcf5ef2aSThomas Huth {
997fcf5ef2aSThomas Huth     TCGLabel *l1 = gen_new_label();
998fcf5ef2aSThomas Huth     target_ulong npc = dc->npc;
999fcf5ef2aSThomas Huth 
1000fcf5ef2aSThomas Huth     tcg_gen_brcondi_tl(TCG_COND_EQ, cpu_cond, 0, l1);
1001fcf5ef2aSThomas Huth 
1002fcf5ef2aSThomas Huth     gen_goto_tb(dc, 0, npc, pc1);
1003fcf5ef2aSThomas Huth 
1004fcf5ef2aSThomas Huth     gen_set_label(l1);
1005fcf5ef2aSThomas Huth     gen_goto_tb(dc, 1, npc + 4, npc + 8);
1006fcf5ef2aSThomas Huth 
1007fcf5ef2aSThomas Huth     dc->is_br = 1;
1008fcf5ef2aSThomas Huth }
1009fcf5ef2aSThomas Huth 
1010fcf5ef2aSThomas Huth static void gen_branch_n(DisasContext *dc, target_ulong pc1)
1011fcf5ef2aSThomas Huth {
1012fcf5ef2aSThomas Huth     target_ulong npc = dc->npc;
1013fcf5ef2aSThomas Huth 
1014fcf5ef2aSThomas Huth     if (likely(npc != DYNAMIC_PC)) {
1015fcf5ef2aSThomas Huth         dc->pc = npc;
1016fcf5ef2aSThomas Huth         dc->jump_pc[0] = pc1;
1017fcf5ef2aSThomas Huth         dc->jump_pc[1] = npc + 4;
1018fcf5ef2aSThomas Huth         dc->npc = JUMP_PC;
1019fcf5ef2aSThomas Huth     } else {
1020fcf5ef2aSThomas Huth         TCGv t, z;
1021fcf5ef2aSThomas Huth 
1022fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_pc, cpu_npc);
1023fcf5ef2aSThomas Huth 
1024fcf5ef2aSThomas Huth         tcg_gen_addi_tl(cpu_npc, cpu_npc, 4);
1025fcf5ef2aSThomas Huth         t = tcg_const_tl(pc1);
1026fcf5ef2aSThomas Huth         z = tcg_const_tl(0);
1027fcf5ef2aSThomas Huth         tcg_gen_movcond_tl(TCG_COND_NE, cpu_npc, cpu_cond, z, t, cpu_npc);
1028fcf5ef2aSThomas Huth         tcg_temp_free(t);
1029fcf5ef2aSThomas Huth         tcg_temp_free(z);
1030fcf5ef2aSThomas Huth 
1031fcf5ef2aSThomas Huth         dc->pc = DYNAMIC_PC;
1032fcf5ef2aSThomas Huth     }
1033fcf5ef2aSThomas Huth }
1034fcf5ef2aSThomas Huth 
1035fcf5ef2aSThomas Huth static inline void gen_generic_branch(DisasContext *dc)
1036fcf5ef2aSThomas Huth {
1037fcf5ef2aSThomas Huth     TCGv npc0 = tcg_const_tl(dc->jump_pc[0]);
1038fcf5ef2aSThomas Huth     TCGv npc1 = tcg_const_tl(dc->jump_pc[1]);
1039fcf5ef2aSThomas Huth     TCGv zero = tcg_const_tl(0);
1040fcf5ef2aSThomas Huth 
1041fcf5ef2aSThomas Huth     tcg_gen_movcond_tl(TCG_COND_NE, cpu_npc, cpu_cond, zero, npc0, npc1);
1042fcf5ef2aSThomas Huth 
1043fcf5ef2aSThomas Huth     tcg_temp_free(npc0);
1044fcf5ef2aSThomas Huth     tcg_temp_free(npc1);
1045fcf5ef2aSThomas Huth     tcg_temp_free(zero);
1046fcf5ef2aSThomas Huth }
1047fcf5ef2aSThomas Huth 
1048fcf5ef2aSThomas Huth /* call this function before using the condition register as it may
1049fcf5ef2aSThomas Huth    have been set for a jump */
1050fcf5ef2aSThomas Huth static inline void flush_cond(DisasContext *dc)
1051fcf5ef2aSThomas Huth {
1052fcf5ef2aSThomas Huth     if (dc->npc == JUMP_PC) {
1053fcf5ef2aSThomas Huth         gen_generic_branch(dc);
1054fcf5ef2aSThomas Huth         dc->npc = DYNAMIC_PC;
1055fcf5ef2aSThomas Huth     }
1056fcf5ef2aSThomas Huth }
1057fcf5ef2aSThomas Huth 
1058fcf5ef2aSThomas Huth static inline void save_npc(DisasContext *dc)
1059fcf5ef2aSThomas Huth {
1060fcf5ef2aSThomas Huth     if (dc->npc == JUMP_PC) {
1061fcf5ef2aSThomas Huth         gen_generic_branch(dc);
1062fcf5ef2aSThomas Huth         dc->npc = DYNAMIC_PC;
1063fcf5ef2aSThomas Huth     } else if (dc->npc != DYNAMIC_PC) {
1064fcf5ef2aSThomas Huth         tcg_gen_movi_tl(cpu_npc, dc->npc);
1065fcf5ef2aSThomas Huth     }
1066fcf5ef2aSThomas Huth }
1067fcf5ef2aSThomas Huth 
1068fcf5ef2aSThomas Huth static inline void update_psr(DisasContext *dc)
1069fcf5ef2aSThomas Huth {
1070fcf5ef2aSThomas Huth     if (dc->cc_op != CC_OP_FLAGS) {
1071fcf5ef2aSThomas Huth         dc->cc_op = CC_OP_FLAGS;
1072fcf5ef2aSThomas Huth         gen_helper_compute_psr(cpu_env);
1073fcf5ef2aSThomas Huth     }
1074fcf5ef2aSThomas Huth }
1075fcf5ef2aSThomas Huth 
1076fcf5ef2aSThomas Huth static inline void save_state(DisasContext *dc)
1077fcf5ef2aSThomas Huth {
1078fcf5ef2aSThomas Huth     tcg_gen_movi_tl(cpu_pc, dc->pc);
1079fcf5ef2aSThomas Huth     save_npc(dc);
1080fcf5ef2aSThomas Huth }
1081fcf5ef2aSThomas Huth 
1082fcf5ef2aSThomas Huth static void gen_exception(DisasContext *dc, int which)
1083fcf5ef2aSThomas Huth {
1084fcf5ef2aSThomas Huth     TCGv_i32 t;
1085fcf5ef2aSThomas Huth 
1086fcf5ef2aSThomas Huth     save_state(dc);
1087fcf5ef2aSThomas Huth     t = tcg_const_i32(which);
1088fcf5ef2aSThomas Huth     gen_helper_raise_exception(cpu_env, t);
1089fcf5ef2aSThomas Huth     tcg_temp_free_i32(t);
1090fcf5ef2aSThomas Huth     dc->is_br = 1;
1091fcf5ef2aSThomas Huth }
1092fcf5ef2aSThomas Huth 
1093fcf5ef2aSThomas Huth static void gen_check_align(TCGv addr, int mask)
1094fcf5ef2aSThomas Huth {
1095fcf5ef2aSThomas Huth     TCGv_i32 r_mask = tcg_const_i32(mask);
1096fcf5ef2aSThomas Huth     gen_helper_check_align(cpu_env, addr, r_mask);
1097fcf5ef2aSThomas Huth     tcg_temp_free_i32(r_mask);
1098fcf5ef2aSThomas Huth }
1099fcf5ef2aSThomas Huth 
1100fcf5ef2aSThomas Huth static inline void gen_mov_pc_npc(DisasContext *dc)
1101fcf5ef2aSThomas Huth {
1102fcf5ef2aSThomas Huth     if (dc->npc == JUMP_PC) {
1103fcf5ef2aSThomas Huth         gen_generic_branch(dc);
1104fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_pc, cpu_npc);
1105fcf5ef2aSThomas Huth         dc->pc = DYNAMIC_PC;
1106fcf5ef2aSThomas Huth     } else if (dc->npc == DYNAMIC_PC) {
1107fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_pc, cpu_npc);
1108fcf5ef2aSThomas Huth         dc->pc = DYNAMIC_PC;
1109fcf5ef2aSThomas Huth     } else {
1110fcf5ef2aSThomas Huth         dc->pc = dc->npc;
1111fcf5ef2aSThomas Huth     }
1112fcf5ef2aSThomas Huth }
1113fcf5ef2aSThomas Huth 
1114fcf5ef2aSThomas Huth static inline void gen_op_next_insn(void)
1115fcf5ef2aSThomas Huth {
1116fcf5ef2aSThomas Huth     tcg_gen_mov_tl(cpu_pc, cpu_npc);
1117fcf5ef2aSThomas Huth     tcg_gen_addi_tl(cpu_npc, cpu_npc, 4);
1118fcf5ef2aSThomas Huth }
1119fcf5ef2aSThomas Huth 
1120fcf5ef2aSThomas Huth static void free_compare(DisasCompare *cmp)
1121fcf5ef2aSThomas Huth {
1122fcf5ef2aSThomas Huth     if (!cmp->g1) {
1123fcf5ef2aSThomas Huth         tcg_temp_free(cmp->c1);
1124fcf5ef2aSThomas Huth     }
1125fcf5ef2aSThomas Huth     if (!cmp->g2) {
1126fcf5ef2aSThomas Huth         tcg_temp_free(cmp->c2);
1127fcf5ef2aSThomas Huth     }
1128fcf5ef2aSThomas Huth }
1129fcf5ef2aSThomas Huth 
1130fcf5ef2aSThomas Huth static void gen_compare(DisasCompare *cmp, bool xcc, unsigned int cond,
1131fcf5ef2aSThomas Huth                         DisasContext *dc)
1132fcf5ef2aSThomas Huth {
1133fcf5ef2aSThomas Huth     static int subcc_cond[16] = {
1134fcf5ef2aSThomas Huth         TCG_COND_NEVER,
1135fcf5ef2aSThomas Huth         TCG_COND_EQ,
1136fcf5ef2aSThomas Huth         TCG_COND_LE,
1137fcf5ef2aSThomas Huth         TCG_COND_LT,
1138fcf5ef2aSThomas Huth         TCG_COND_LEU,
1139fcf5ef2aSThomas Huth         TCG_COND_LTU,
1140fcf5ef2aSThomas Huth         -1, /* neg */
1141fcf5ef2aSThomas Huth         -1, /* overflow */
1142fcf5ef2aSThomas Huth         TCG_COND_ALWAYS,
1143fcf5ef2aSThomas Huth         TCG_COND_NE,
1144fcf5ef2aSThomas Huth         TCG_COND_GT,
1145fcf5ef2aSThomas Huth         TCG_COND_GE,
1146fcf5ef2aSThomas Huth         TCG_COND_GTU,
1147fcf5ef2aSThomas Huth         TCG_COND_GEU,
1148fcf5ef2aSThomas Huth         -1, /* pos */
1149fcf5ef2aSThomas Huth         -1, /* no overflow */
1150fcf5ef2aSThomas Huth     };
1151fcf5ef2aSThomas Huth 
1152fcf5ef2aSThomas Huth     static int logic_cond[16] = {
1153fcf5ef2aSThomas Huth         TCG_COND_NEVER,
1154fcf5ef2aSThomas Huth         TCG_COND_EQ,     /* eq:  Z */
1155fcf5ef2aSThomas Huth         TCG_COND_LE,     /* le:  Z | (N ^ V) -> Z | N */
1156fcf5ef2aSThomas Huth         TCG_COND_LT,     /* lt:  N ^ V -> N */
1157fcf5ef2aSThomas Huth         TCG_COND_EQ,     /* leu: C | Z -> Z */
1158fcf5ef2aSThomas Huth         TCG_COND_NEVER,  /* ltu: C -> 0 */
1159fcf5ef2aSThomas Huth         TCG_COND_LT,     /* neg: N */
1160fcf5ef2aSThomas Huth         TCG_COND_NEVER,  /* vs:  V -> 0 */
1161fcf5ef2aSThomas Huth         TCG_COND_ALWAYS,
1162fcf5ef2aSThomas Huth         TCG_COND_NE,     /* ne:  !Z */
1163fcf5ef2aSThomas Huth         TCG_COND_GT,     /* gt:  !(Z | (N ^ V)) -> !(Z | N) */
1164fcf5ef2aSThomas Huth         TCG_COND_GE,     /* ge:  !(N ^ V) -> !N */
1165fcf5ef2aSThomas Huth         TCG_COND_NE,     /* gtu: !(C | Z) -> !Z */
1166fcf5ef2aSThomas Huth         TCG_COND_ALWAYS, /* geu: !C -> 1 */
1167fcf5ef2aSThomas Huth         TCG_COND_GE,     /* pos: !N */
1168fcf5ef2aSThomas Huth         TCG_COND_ALWAYS, /* vc:  !V -> 1 */
1169fcf5ef2aSThomas Huth     };
1170fcf5ef2aSThomas Huth 
1171fcf5ef2aSThomas Huth     TCGv_i32 r_src;
1172fcf5ef2aSThomas Huth     TCGv r_dst;
1173fcf5ef2aSThomas Huth 
1174fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1175fcf5ef2aSThomas Huth     if (xcc) {
1176fcf5ef2aSThomas Huth         r_src = cpu_xcc;
1177fcf5ef2aSThomas Huth     } else {
1178fcf5ef2aSThomas Huth         r_src = cpu_psr;
1179fcf5ef2aSThomas Huth     }
1180fcf5ef2aSThomas Huth #else
1181fcf5ef2aSThomas Huth     r_src = cpu_psr;
1182fcf5ef2aSThomas Huth #endif
1183fcf5ef2aSThomas Huth 
1184fcf5ef2aSThomas Huth     switch (dc->cc_op) {
1185fcf5ef2aSThomas Huth     case CC_OP_LOGIC:
1186fcf5ef2aSThomas Huth         cmp->cond = logic_cond[cond];
1187fcf5ef2aSThomas Huth     do_compare_dst_0:
1188fcf5ef2aSThomas Huth         cmp->is_bool = false;
1189fcf5ef2aSThomas Huth         cmp->g2 = false;
1190fcf5ef2aSThomas Huth         cmp->c2 = tcg_const_tl(0);
1191fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1192fcf5ef2aSThomas Huth         if (!xcc) {
1193fcf5ef2aSThomas Huth             cmp->g1 = false;
1194fcf5ef2aSThomas Huth             cmp->c1 = tcg_temp_new();
1195fcf5ef2aSThomas Huth             tcg_gen_ext32s_tl(cmp->c1, cpu_cc_dst);
1196fcf5ef2aSThomas Huth             break;
1197fcf5ef2aSThomas Huth         }
1198fcf5ef2aSThomas Huth #endif
1199fcf5ef2aSThomas Huth         cmp->g1 = true;
1200fcf5ef2aSThomas Huth         cmp->c1 = cpu_cc_dst;
1201fcf5ef2aSThomas Huth         break;
1202fcf5ef2aSThomas Huth 
1203fcf5ef2aSThomas Huth     case CC_OP_SUB:
1204fcf5ef2aSThomas Huth         switch (cond) {
1205fcf5ef2aSThomas Huth         case 6:  /* neg */
1206fcf5ef2aSThomas Huth         case 14: /* pos */
1207fcf5ef2aSThomas Huth             cmp->cond = (cond == 6 ? TCG_COND_LT : TCG_COND_GE);
1208fcf5ef2aSThomas Huth             goto do_compare_dst_0;
1209fcf5ef2aSThomas Huth 
1210fcf5ef2aSThomas Huth         case 7: /* overflow */
1211fcf5ef2aSThomas Huth         case 15: /* !overflow */
1212fcf5ef2aSThomas Huth             goto do_dynamic;
1213fcf5ef2aSThomas Huth 
1214fcf5ef2aSThomas Huth         default:
1215fcf5ef2aSThomas Huth             cmp->cond = subcc_cond[cond];
1216fcf5ef2aSThomas Huth             cmp->is_bool = false;
1217fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1218fcf5ef2aSThomas Huth             if (!xcc) {
1219fcf5ef2aSThomas Huth                 /* Note that sign-extension works for unsigned compares as
1220fcf5ef2aSThomas Huth                    long as both operands are sign-extended.  */
1221fcf5ef2aSThomas Huth                 cmp->g1 = cmp->g2 = false;
1222fcf5ef2aSThomas Huth                 cmp->c1 = tcg_temp_new();
1223fcf5ef2aSThomas Huth                 cmp->c2 = tcg_temp_new();
1224fcf5ef2aSThomas Huth                 tcg_gen_ext32s_tl(cmp->c1, cpu_cc_src);
1225fcf5ef2aSThomas Huth                 tcg_gen_ext32s_tl(cmp->c2, cpu_cc_src2);
1226fcf5ef2aSThomas Huth                 break;
1227fcf5ef2aSThomas Huth             }
1228fcf5ef2aSThomas Huth #endif
1229fcf5ef2aSThomas Huth             cmp->g1 = cmp->g2 = true;
1230fcf5ef2aSThomas Huth             cmp->c1 = cpu_cc_src;
1231fcf5ef2aSThomas Huth             cmp->c2 = cpu_cc_src2;
1232fcf5ef2aSThomas Huth             break;
1233fcf5ef2aSThomas Huth         }
1234fcf5ef2aSThomas Huth         break;
1235fcf5ef2aSThomas Huth 
1236fcf5ef2aSThomas Huth     default:
1237fcf5ef2aSThomas Huth     do_dynamic:
1238fcf5ef2aSThomas Huth         gen_helper_compute_psr(cpu_env);
1239fcf5ef2aSThomas Huth         dc->cc_op = CC_OP_FLAGS;
1240fcf5ef2aSThomas Huth         /* FALLTHRU */
1241fcf5ef2aSThomas Huth 
1242fcf5ef2aSThomas Huth     case CC_OP_FLAGS:
1243fcf5ef2aSThomas Huth         /* We're going to generate a boolean result.  */
1244fcf5ef2aSThomas Huth         cmp->cond = TCG_COND_NE;
1245fcf5ef2aSThomas Huth         cmp->is_bool = true;
1246fcf5ef2aSThomas Huth         cmp->g1 = cmp->g2 = false;
1247fcf5ef2aSThomas Huth         cmp->c1 = r_dst = tcg_temp_new();
1248fcf5ef2aSThomas Huth         cmp->c2 = tcg_const_tl(0);
1249fcf5ef2aSThomas Huth 
1250fcf5ef2aSThomas Huth         switch (cond) {
1251fcf5ef2aSThomas Huth         case 0x0:
1252fcf5ef2aSThomas Huth             gen_op_eval_bn(r_dst);
1253fcf5ef2aSThomas Huth             break;
1254fcf5ef2aSThomas Huth         case 0x1:
1255fcf5ef2aSThomas Huth             gen_op_eval_be(r_dst, r_src);
1256fcf5ef2aSThomas Huth             break;
1257fcf5ef2aSThomas Huth         case 0x2:
1258fcf5ef2aSThomas Huth             gen_op_eval_ble(r_dst, r_src);
1259fcf5ef2aSThomas Huth             break;
1260fcf5ef2aSThomas Huth         case 0x3:
1261fcf5ef2aSThomas Huth             gen_op_eval_bl(r_dst, r_src);
1262fcf5ef2aSThomas Huth             break;
1263fcf5ef2aSThomas Huth         case 0x4:
1264fcf5ef2aSThomas Huth             gen_op_eval_bleu(r_dst, r_src);
1265fcf5ef2aSThomas Huth             break;
1266fcf5ef2aSThomas Huth         case 0x5:
1267fcf5ef2aSThomas Huth             gen_op_eval_bcs(r_dst, r_src);
1268fcf5ef2aSThomas Huth             break;
1269fcf5ef2aSThomas Huth         case 0x6:
1270fcf5ef2aSThomas Huth             gen_op_eval_bneg(r_dst, r_src);
1271fcf5ef2aSThomas Huth             break;
1272fcf5ef2aSThomas Huth         case 0x7:
1273fcf5ef2aSThomas Huth             gen_op_eval_bvs(r_dst, r_src);
1274fcf5ef2aSThomas Huth             break;
1275fcf5ef2aSThomas Huth         case 0x8:
1276fcf5ef2aSThomas Huth             gen_op_eval_ba(r_dst);
1277fcf5ef2aSThomas Huth             break;
1278fcf5ef2aSThomas Huth         case 0x9:
1279fcf5ef2aSThomas Huth             gen_op_eval_bne(r_dst, r_src);
1280fcf5ef2aSThomas Huth             break;
1281fcf5ef2aSThomas Huth         case 0xa:
1282fcf5ef2aSThomas Huth             gen_op_eval_bg(r_dst, r_src);
1283fcf5ef2aSThomas Huth             break;
1284fcf5ef2aSThomas Huth         case 0xb:
1285fcf5ef2aSThomas Huth             gen_op_eval_bge(r_dst, r_src);
1286fcf5ef2aSThomas Huth             break;
1287fcf5ef2aSThomas Huth         case 0xc:
1288fcf5ef2aSThomas Huth             gen_op_eval_bgu(r_dst, r_src);
1289fcf5ef2aSThomas Huth             break;
1290fcf5ef2aSThomas Huth         case 0xd:
1291fcf5ef2aSThomas Huth             gen_op_eval_bcc(r_dst, r_src);
1292fcf5ef2aSThomas Huth             break;
1293fcf5ef2aSThomas Huth         case 0xe:
1294fcf5ef2aSThomas Huth             gen_op_eval_bpos(r_dst, r_src);
1295fcf5ef2aSThomas Huth             break;
1296fcf5ef2aSThomas Huth         case 0xf:
1297fcf5ef2aSThomas Huth             gen_op_eval_bvc(r_dst, r_src);
1298fcf5ef2aSThomas Huth             break;
1299fcf5ef2aSThomas Huth         }
1300fcf5ef2aSThomas Huth         break;
1301fcf5ef2aSThomas Huth     }
1302fcf5ef2aSThomas Huth }
1303fcf5ef2aSThomas Huth 
1304fcf5ef2aSThomas Huth static void gen_fcompare(DisasCompare *cmp, unsigned int cc, unsigned int cond)
1305fcf5ef2aSThomas Huth {
1306fcf5ef2aSThomas Huth     unsigned int offset;
1307fcf5ef2aSThomas Huth     TCGv r_dst;
1308fcf5ef2aSThomas Huth 
1309fcf5ef2aSThomas Huth     /* For now we still generate a straight boolean result.  */
1310fcf5ef2aSThomas Huth     cmp->cond = TCG_COND_NE;
1311fcf5ef2aSThomas Huth     cmp->is_bool = true;
1312fcf5ef2aSThomas Huth     cmp->g1 = cmp->g2 = false;
1313fcf5ef2aSThomas Huth     cmp->c1 = r_dst = tcg_temp_new();
1314fcf5ef2aSThomas Huth     cmp->c2 = tcg_const_tl(0);
1315fcf5ef2aSThomas Huth 
1316fcf5ef2aSThomas Huth     switch (cc) {
1317fcf5ef2aSThomas Huth     default:
1318fcf5ef2aSThomas Huth     case 0x0:
1319fcf5ef2aSThomas Huth         offset = 0;
1320fcf5ef2aSThomas Huth         break;
1321fcf5ef2aSThomas Huth     case 0x1:
1322fcf5ef2aSThomas Huth         offset = 32 - 10;
1323fcf5ef2aSThomas Huth         break;
1324fcf5ef2aSThomas Huth     case 0x2:
1325fcf5ef2aSThomas Huth         offset = 34 - 10;
1326fcf5ef2aSThomas Huth         break;
1327fcf5ef2aSThomas Huth     case 0x3:
1328fcf5ef2aSThomas Huth         offset = 36 - 10;
1329fcf5ef2aSThomas Huth         break;
1330fcf5ef2aSThomas Huth     }
1331fcf5ef2aSThomas Huth 
1332fcf5ef2aSThomas Huth     switch (cond) {
1333fcf5ef2aSThomas Huth     case 0x0:
1334fcf5ef2aSThomas Huth         gen_op_eval_bn(r_dst);
1335fcf5ef2aSThomas Huth         break;
1336fcf5ef2aSThomas Huth     case 0x1:
1337fcf5ef2aSThomas Huth         gen_op_eval_fbne(r_dst, cpu_fsr, offset);
1338fcf5ef2aSThomas Huth         break;
1339fcf5ef2aSThomas Huth     case 0x2:
1340fcf5ef2aSThomas Huth         gen_op_eval_fblg(r_dst, cpu_fsr, offset);
1341fcf5ef2aSThomas Huth         break;
1342fcf5ef2aSThomas Huth     case 0x3:
1343fcf5ef2aSThomas Huth         gen_op_eval_fbul(r_dst, cpu_fsr, offset);
1344fcf5ef2aSThomas Huth         break;
1345fcf5ef2aSThomas Huth     case 0x4:
1346fcf5ef2aSThomas Huth         gen_op_eval_fbl(r_dst, cpu_fsr, offset);
1347fcf5ef2aSThomas Huth         break;
1348fcf5ef2aSThomas Huth     case 0x5:
1349fcf5ef2aSThomas Huth         gen_op_eval_fbug(r_dst, cpu_fsr, offset);
1350fcf5ef2aSThomas Huth         break;
1351fcf5ef2aSThomas Huth     case 0x6:
1352fcf5ef2aSThomas Huth         gen_op_eval_fbg(r_dst, cpu_fsr, offset);
1353fcf5ef2aSThomas Huth         break;
1354fcf5ef2aSThomas Huth     case 0x7:
1355fcf5ef2aSThomas Huth         gen_op_eval_fbu(r_dst, cpu_fsr, offset);
1356fcf5ef2aSThomas Huth         break;
1357fcf5ef2aSThomas Huth     case 0x8:
1358fcf5ef2aSThomas Huth         gen_op_eval_ba(r_dst);
1359fcf5ef2aSThomas Huth         break;
1360fcf5ef2aSThomas Huth     case 0x9:
1361fcf5ef2aSThomas Huth         gen_op_eval_fbe(r_dst, cpu_fsr, offset);
1362fcf5ef2aSThomas Huth         break;
1363fcf5ef2aSThomas Huth     case 0xa:
1364fcf5ef2aSThomas Huth         gen_op_eval_fbue(r_dst, cpu_fsr, offset);
1365fcf5ef2aSThomas Huth         break;
1366fcf5ef2aSThomas Huth     case 0xb:
1367fcf5ef2aSThomas Huth         gen_op_eval_fbge(r_dst, cpu_fsr, offset);
1368fcf5ef2aSThomas Huth         break;
1369fcf5ef2aSThomas Huth     case 0xc:
1370fcf5ef2aSThomas Huth         gen_op_eval_fbuge(r_dst, cpu_fsr, offset);
1371fcf5ef2aSThomas Huth         break;
1372fcf5ef2aSThomas Huth     case 0xd:
1373fcf5ef2aSThomas Huth         gen_op_eval_fble(r_dst, cpu_fsr, offset);
1374fcf5ef2aSThomas Huth         break;
1375fcf5ef2aSThomas Huth     case 0xe:
1376fcf5ef2aSThomas Huth         gen_op_eval_fbule(r_dst, cpu_fsr, offset);
1377fcf5ef2aSThomas Huth         break;
1378fcf5ef2aSThomas Huth     case 0xf:
1379fcf5ef2aSThomas Huth         gen_op_eval_fbo(r_dst, cpu_fsr, offset);
1380fcf5ef2aSThomas Huth         break;
1381fcf5ef2aSThomas Huth     }
1382fcf5ef2aSThomas Huth }
1383fcf5ef2aSThomas Huth 
1384fcf5ef2aSThomas Huth static void gen_cond(TCGv r_dst, unsigned int cc, unsigned int cond,
1385fcf5ef2aSThomas Huth                      DisasContext *dc)
1386fcf5ef2aSThomas Huth {
1387fcf5ef2aSThomas Huth     DisasCompare cmp;
1388fcf5ef2aSThomas Huth     gen_compare(&cmp, cc, cond, dc);
1389fcf5ef2aSThomas Huth 
1390fcf5ef2aSThomas Huth     /* The interface is to return a boolean in r_dst.  */
1391fcf5ef2aSThomas Huth     if (cmp.is_bool) {
1392fcf5ef2aSThomas Huth         tcg_gen_mov_tl(r_dst, cmp.c1);
1393fcf5ef2aSThomas Huth     } else {
1394fcf5ef2aSThomas Huth         tcg_gen_setcond_tl(cmp.cond, r_dst, cmp.c1, cmp.c2);
1395fcf5ef2aSThomas Huth     }
1396fcf5ef2aSThomas Huth 
1397fcf5ef2aSThomas Huth     free_compare(&cmp);
1398fcf5ef2aSThomas Huth }
1399fcf5ef2aSThomas Huth 
1400fcf5ef2aSThomas Huth static void gen_fcond(TCGv r_dst, unsigned int cc, unsigned int cond)
1401fcf5ef2aSThomas Huth {
1402fcf5ef2aSThomas Huth     DisasCompare cmp;
1403fcf5ef2aSThomas Huth     gen_fcompare(&cmp, cc, cond);
1404fcf5ef2aSThomas Huth 
1405fcf5ef2aSThomas Huth     /* The interface is to return a boolean in r_dst.  */
1406fcf5ef2aSThomas Huth     if (cmp.is_bool) {
1407fcf5ef2aSThomas Huth         tcg_gen_mov_tl(r_dst, cmp.c1);
1408fcf5ef2aSThomas Huth     } else {
1409fcf5ef2aSThomas Huth         tcg_gen_setcond_tl(cmp.cond, r_dst, cmp.c1, cmp.c2);
1410fcf5ef2aSThomas Huth     }
1411fcf5ef2aSThomas Huth 
1412fcf5ef2aSThomas Huth     free_compare(&cmp);
1413fcf5ef2aSThomas Huth }
1414fcf5ef2aSThomas Huth 
1415fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1416fcf5ef2aSThomas Huth // Inverted logic
1417fcf5ef2aSThomas Huth static const int gen_tcg_cond_reg[8] = {
1418fcf5ef2aSThomas Huth     -1,
1419fcf5ef2aSThomas Huth     TCG_COND_NE,
1420fcf5ef2aSThomas Huth     TCG_COND_GT,
1421fcf5ef2aSThomas Huth     TCG_COND_GE,
1422fcf5ef2aSThomas Huth     -1,
1423fcf5ef2aSThomas Huth     TCG_COND_EQ,
1424fcf5ef2aSThomas Huth     TCG_COND_LE,
1425fcf5ef2aSThomas Huth     TCG_COND_LT,
1426fcf5ef2aSThomas Huth };
1427fcf5ef2aSThomas Huth 
1428fcf5ef2aSThomas Huth static void gen_compare_reg(DisasCompare *cmp, int cond, TCGv r_src)
1429fcf5ef2aSThomas Huth {
1430fcf5ef2aSThomas Huth     cmp->cond = tcg_invert_cond(gen_tcg_cond_reg[cond]);
1431fcf5ef2aSThomas Huth     cmp->is_bool = false;
1432fcf5ef2aSThomas Huth     cmp->g1 = true;
1433fcf5ef2aSThomas Huth     cmp->g2 = false;
1434fcf5ef2aSThomas Huth     cmp->c1 = r_src;
1435fcf5ef2aSThomas Huth     cmp->c2 = tcg_const_tl(0);
1436fcf5ef2aSThomas Huth }
1437fcf5ef2aSThomas Huth 
1438fcf5ef2aSThomas Huth static inline void gen_cond_reg(TCGv r_dst, int cond, TCGv r_src)
1439fcf5ef2aSThomas Huth {
1440fcf5ef2aSThomas Huth     DisasCompare cmp;
1441fcf5ef2aSThomas Huth     gen_compare_reg(&cmp, cond, r_src);
1442fcf5ef2aSThomas Huth 
1443fcf5ef2aSThomas Huth     /* The interface is to return a boolean in r_dst.  */
1444fcf5ef2aSThomas Huth     tcg_gen_setcond_tl(cmp.cond, r_dst, cmp.c1, cmp.c2);
1445fcf5ef2aSThomas Huth 
1446fcf5ef2aSThomas Huth     free_compare(&cmp);
1447fcf5ef2aSThomas Huth }
1448fcf5ef2aSThomas Huth #endif
1449fcf5ef2aSThomas Huth 
1450fcf5ef2aSThomas Huth static void do_branch(DisasContext *dc, int32_t offset, uint32_t insn, int cc)
1451fcf5ef2aSThomas Huth {
1452fcf5ef2aSThomas Huth     unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
1453fcf5ef2aSThomas Huth     target_ulong target = dc->pc + offset;
1454fcf5ef2aSThomas Huth 
1455fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1456fcf5ef2aSThomas Huth     if (unlikely(AM_CHECK(dc))) {
1457fcf5ef2aSThomas Huth         target &= 0xffffffffULL;
1458fcf5ef2aSThomas Huth     }
1459fcf5ef2aSThomas Huth #endif
1460fcf5ef2aSThomas Huth     if (cond == 0x0) {
1461fcf5ef2aSThomas Huth         /* unconditional not taken */
1462fcf5ef2aSThomas Huth         if (a) {
1463fcf5ef2aSThomas Huth             dc->pc = dc->npc + 4;
1464fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1465fcf5ef2aSThomas Huth         } else {
1466fcf5ef2aSThomas Huth             dc->pc = dc->npc;
1467fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1468fcf5ef2aSThomas Huth         }
1469fcf5ef2aSThomas Huth     } else if (cond == 0x8) {
1470fcf5ef2aSThomas Huth         /* unconditional taken */
1471fcf5ef2aSThomas Huth         if (a) {
1472fcf5ef2aSThomas Huth             dc->pc = target;
1473fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1474fcf5ef2aSThomas Huth         } else {
1475fcf5ef2aSThomas Huth             dc->pc = dc->npc;
1476fcf5ef2aSThomas Huth             dc->npc = target;
1477fcf5ef2aSThomas Huth             tcg_gen_mov_tl(cpu_pc, cpu_npc);
1478fcf5ef2aSThomas Huth         }
1479fcf5ef2aSThomas Huth     } else {
1480fcf5ef2aSThomas Huth         flush_cond(dc);
1481fcf5ef2aSThomas Huth         gen_cond(cpu_cond, cc, cond, dc);
1482fcf5ef2aSThomas Huth         if (a) {
1483fcf5ef2aSThomas Huth             gen_branch_a(dc, target);
1484fcf5ef2aSThomas Huth         } else {
1485fcf5ef2aSThomas Huth             gen_branch_n(dc, target);
1486fcf5ef2aSThomas Huth         }
1487fcf5ef2aSThomas Huth     }
1488fcf5ef2aSThomas Huth }
1489fcf5ef2aSThomas Huth 
1490fcf5ef2aSThomas Huth static void do_fbranch(DisasContext *dc, int32_t offset, uint32_t insn, int cc)
1491fcf5ef2aSThomas Huth {
1492fcf5ef2aSThomas Huth     unsigned int cond = GET_FIELD(insn, 3, 6), a = (insn & (1 << 29));
1493fcf5ef2aSThomas Huth     target_ulong target = dc->pc + offset;
1494fcf5ef2aSThomas Huth 
1495fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1496fcf5ef2aSThomas Huth     if (unlikely(AM_CHECK(dc))) {
1497fcf5ef2aSThomas Huth         target &= 0xffffffffULL;
1498fcf5ef2aSThomas Huth     }
1499fcf5ef2aSThomas Huth #endif
1500fcf5ef2aSThomas Huth     if (cond == 0x0) {
1501fcf5ef2aSThomas Huth         /* unconditional not taken */
1502fcf5ef2aSThomas Huth         if (a) {
1503fcf5ef2aSThomas Huth             dc->pc = dc->npc + 4;
1504fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1505fcf5ef2aSThomas Huth         } else {
1506fcf5ef2aSThomas Huth             dc->pc = dc->npc;
1507fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1508fcf5ef2aSThomas Huth         }
1509fcf5ef2aSThomas Huth     } else if (cond == 0x8) {
1510fcf5ef2aSThomas Huth         /* unconditional taken */
1511fcf5ef2aSThomas Huth         if (a) {
1512fcf5ef2aSThomas Huth             dc->pc = target;
1513fcf5ef2aSThomas Huth             dc->npc = dc->pc + 4;
1514fcf5ef2aSThomas Huth         } else {
1515fcf5ef2aSThomas Huth             dc->pc = dc->npc;
1516fcf5ef2aSThomas Huth             dc->npc = target;
1517fcf5ef2aSThomas Huth             tcg_gen_mov_tl(cpu_pc, cpu_npc);
1518fcf5ef2aSThomas Huth         }
1519fcf5ef2aSThomas Huth     } else {
1520fcf5ef2aSThomas Huth         flush_cond(dc);
1521fcf5ef2aSThomas Huth         gen_fcond(cpu_cond, cc, cond);
1522fcf5ef2aSThomas Huth         if (a) {
1523fcf5ef2aSThomas Huth             gen_branch_a(dc, target);
1524fcf5ef2aSThomas Huth         } else {
1525fcf5ef2aSThomas Huth             gen_branch_n(dc, target);
1526fcf5ef2aSThomas Huth         }
1527fcf5ef2aSThomas Huth     }
1528fcf5ef2aSThomas Huth }
1529fcf5ef2aSThomas Huth 
1530fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1531fcf5ef2aSThomas Huth static void do_branch_reg(DisasContext *dc, int32_t offset, uint32_t insn,
1532fcf5ef2aSThomas Huth                           TCGv r_reg)
1533fcf5ef2aSThomas Huth {
1534fcf5ef2aSThomas Huth     unsigned int cond = GET_FIELD_SP(insn, 25, 27), a = (insn & (1 << 29));
1535fcf5ef2aSThomas Huth     target_ulong target = dc->pc + offset;
1536fcf5ef2aSThomas Huth 
1537fcf5ef2aSThomas Huth     if (unlikely(AM_CHECK(dc))) {
1538fcf5ef2aSThomas Huth         target &= 0xffffffffULL;
1539fcf5ef2aSThomas Huth     }
1540fcf5ef2aSThomas Huth     flush_cond(dc);
1541fcf5ef2aSThomas Huth     gen_cond_reg(cpu_cond, cond, r_reg);
1542fcf5ef2aSThomas Huth     if (a) {
1543fcf5ef2aSThomas Huth         gen_branch_a(dc, target);
1544fcf5ef2aSThomas Huth     } else {
1545fcf5ef2aSThomas Huth         gen_branch_n(dc, target);
1546fcf5ef2aSThomas Huth     }
1547fcf5ef2aSThomas Huth }
1548fcf5ef2aSThomas Huth 
1549fcf5ef2aSThomas Huth static inline void gen_op_fcmps(int fccno, TCGv_i32 r_rs1, TCGv_i32 r_rs2)
1550fcf5ef2aSThomas Huth {
1551fcf5ef2aSThomas Huth     switch (fccno) {
1552fcf5ef2aSThomas Huth     case 0:
1553fcf5ef2aSThomas Huth         gen_helper_fcmps(cpu_fsr, cpu_env, r_rs1, r_rs2);
1554fcf5ef2aSThomas Huth         break;
1555fcf5ef2aSThomas Huth     case 1:
1556fcf5ef2aSThomas Huth         gen_helper_fcmps_fcc1(cpu_fsr, cpu_env, r_rs1, r_rs2);
1557fcf5ef2aSThomas Huth         break;
1558fcf5ef2aSThomas Huth     case 2:
1559fcf5ef2aSThomas Huth         gen_helper_fcmps_fcc2(cpu_fsr, cpu_env, r_rs1, r_rs2);
1560fcf5ef2aSThomas Huth         break;
1561fcf5ef2aSThomas Huth     case 3:
1562fcf5ef2aSThomas Huth         gen_helper_fcmps_fcc3(cpu_fsr, cpu_env, r_rs1, r_rs2);
1563fcf5ef2aSThomas Huth         break;
1564fcf5ef2aSThomas Huth     }
1565fcf5ef2aSThomas Huth }
1566fcf5ef2aSThomas Huth 
1567fcf5ef2aSThomas Huth static inline void gen_op_fcmpd(int fccno, TCGv_i64 r_rs1, TCGv_i64 r_rs2)
1568fcf5ef2aSThomas Huth {
1569fcf5ef2aSThomas Huth     switch (fccno) {
1570fcf5ef2aSThomas Huth     case 0:
1571fcf5ef2aSThomas Huth         gen_helper_fcmpd(cpu_fsr, cpu_env, r_rs1, r_rs2);
1572fcf5ef2aSThomas Huth         break;
1573fcf5ef2aSThomas Huth     case 1:
1574fcf5ef2aSThomas Huth         gen_helper_fcmpd_fcc1(cpu_fsr, cpu_env, r_rs1, r_rs2);
1575fcf5ef2aSThomas Huth         break;
1576fcf5ef2aSThomas Huth     case 2:
1577fcf5ef2aSThomas Huth         gen_helper_fcmpd_fcc2(cpu_fsr, cpu_env, r_rs1, r_rs2);
1578fcf5ef2aSThomas Huth         break;
1579fcf5ef2aSThomas Huth     case 3:
1580fcf5ef2aSThomas Huth         gen_helper_fcmpd_fcc3(cpu_fsr, cpu_env, r_rs1, r_rs2);
1581fcf5ef2aSThomas Huth         break;
1582fcf5ef2aSThomas Huth     }
1583fcf5ef2aSThomas Huth }
1584fcf5ef2aSThomas Huth 
1585fcf5ef2aSThomas Huth static inline void gen_op_fcmpq(int fccno)
1586fcf5ef2aSThomas Huth {
1587fcf5ef2aSThomas Huth     switch (fccno) {
1588fcf5ef2aSThomas Huth     case 0:
1589fcf5ef2aSThomas Huth         gen_helper_fcmpq(cpu_fsr, cpu_env);
1590fcf5ef2aSThomas Huth         break;
1591fcf5ef2aSThomas Huth     case 1:
1592fcf5ef2aSThomas Huth         gen_helper_fcmpq_fcc1(cpu_fsr, cpu_env);
1593fcf5ef2aSThomas Huth         break;
1594fcf5ef2aSThomas Huth     case 2:
1595fcf5ef2aSThomas Huth         gen_helper_fcmpq_fcc2(cpu_fsr, cpu_env);
1596fcf5ef2aSThomas Huth         break;
1597fcf5ef2aSThomas Huth     case 3:
1598fcf5ef2aSThomas Huth         gen_helper_fcmpq_fcc3(cpu_fsr, cpu_env);
1599fcf5ef2aSThomas Huth         break;
1600fcf5ef2aSThomas Huth     }
1601fcf5ef2aSThomas Huth }
1602fcf5ef2aSThomas Huth 
1603fcf5ef2aSThomas Huth static inline void gen_op_fcmpes(int fccno, TCGv_i32 r_rs1, TCGv_i32 r_rs2)
1604fcf5ef2aSThomas Huth {
1605fcf5ef2aSThomas Huth     switch (fccno) {
1606fcf5ef2aSThomas Huth     case 0:
1607fcf5ef2aSThomas Huth         gen_helper_fcmpes(cpu_fsr, cpu_env, r_rs1, r_rs2);
1608fcf5ef2aSThomas Huth         break;
1609fcf5ef2aSThomas Huth     case 1:
1610fcf5ef2aSThomas Huth         gen_helper_fcmpes_fcc1(cpu_fsr, cpu_env, r_rs1, r_rs2);
1611fcf5ef2aSThomas Huth         break;
1612fcf5ef2aSThomas Huth     case 2:
1613fcf5ef2aSThomas Huth         gen_helper_fcmpes_fcc2(cpu_fsr, cpu_env, r_rs1, r_rs2);
1614fcf5ef2aSThomas Huth         break;
1615fcf5ef2aSThomas Huth     case 3:
1616fcf5ef2aSThomas Huth         gen_helper_fcmpes_fcc3(cpu_fsr, cpu_env, r_rs1, r_rs2);
1617fcf5ef2aSThomas Huth         break;
1618fcf5ef2aSThomas Huth     }
1619fcf5ef2aSThomas Huth }
1620fcf5ef2aSThomas Huth 
1621fcf5ef2aSThomas Huth static inline void gen_op_fcmped(int fccno, TCGv_i64 r_rs1, TCGv_i64 r_rs2)
1622fcf5ef2aSThomas Huth {
1623fcf5ef2aSThomas Huth     switch (fccno) {
1624fcf5ef2aSThomas Huth     case 0:
1625fcf5ef2aSThomas Huth         gen_helper_fcmped(cpu_fsr, cpu_env, r_rs1, r_rs2);
1626fcf5ef2aSThomas Huth         break;
1627fcf5ef2aSThomas Huth     case 1:
1628fcf5ef2aSThomas Huth         gen_helper_fcmped_fcc1(cpu_fsr, cpu_env, r_rs1, r_rs2);
1629fcf5ef2aSThomas Huth         break;
1630fcf5ef2aSThomas Huth     case 2:
1631fcf5ef2aSThomas Huth         gen_helper_fcmped_fcc2(cpu_fsr, cpu_env, r_rs1, r_rs2);
1632fcf5ef2aSThomas Huth         break;
1633fcf5ef2aSThomas Huth     case 3:
1634fcf5ef2aSThomas Huth         gen_helper_fcmped_fcc3(cpu_fsr, cpu_env, r_rs1, r_rs2);
1635fcf5ef2aSThomas Huth         break;
1636fcf5ef2aSThomas Huth     }
1637fcf5ef2aSThomas Huth }
1638fcf5ef2aSThomas Huth 
1639fcf5ef2aSThomas Huth static inline void gen_op_fcmpeq(int fccno)
1640fcf5ef2aSThomas Huth {
1641fcf5ef2aSThomas Huth     switch (fccno) {
1642fcf5ef2aSThomas Huth     case 0:
1643fcf5ef2aSThomas Huth         gen_helper_fcmpeq(cpu_fsr, cpu_env);
1644fcf5ef2aSThomas Huth         break;
1645fcf5ef2aSThomas Huth     case 1:
1646fcf5ef2aSThomas Huth         gen_helper_fcmpeq_fcc1(cpu_fsr, cpu_env);
1647fcf5ef2aSThomas Huth         break;
1648fcf5ef2aSThomas Huth     case 2:
1649fcf5ef2aSThomas Huth         gen_helper_fcmpeq_fcc2(cpu_fsr, cpu_env);
1650fcf5ef2aSThomas Huth         break;
1651fcf5ef2aSThomas Huth     case 3:
1652fcf5ef2aSThomas Huth         gen_helper_fcmpeq_fcc3(cpu_fsr, cpu_env);
1653fcf5ef2aSThomas Huth         break;
1654fcf5ef2aSThomas Huth     }
1655fcf5ef2aSThomas Huth }
1656fcf5ef2aSThomas Huth 
1657fcf5ef2aSThomas Huth #else
1658fcf5ef2aSThomas Huth 
1659fcf5ef2aSThomas Huth static inline void gen_op_fcmps(int fccno, TCGv r_rs1, TCGv r_rs2)
1660fcf5ef2aSThomas Huth {
1661fcf5ef2aSThomas Huth     gen_helper_fcmps(cpu_fsr, cpu_env, r_rs1, r_rs2);
1662fcf5ef2aSThomas Huth }
1663fcf5ef2aSThomas Huth 
1664fcf5ef2aSThomas Huth static inline void gen_op_fcmpd(int fccno, TCGv_i64 r_rs1, TCGv_i64 r_rs2)
1665fcf5ef2aSThomas Huth {
1666fcf5ef2aSThomas Huth     gen_helper_fcmpd(cpu_fsr, cpu_env, r_rs1, r_rs2);
1667fcf5ef2aSThomas Huth }
1668fcf5ef2aSThomas Huth 
1669fcf5ef2aSThomas Huth static inline void gen_op_fcmpq(int fccno)
1670fcf5ef2aSThomas Huth {
1671fcf5ef2aSThomas Huth     gen_helper_fcmpq(cpu_fsr, cpu_env);
1672fcf5ef2aSThomas Huth }
1673fcf5ef2aSThomas Huth 
1674fcf5ef2aSThomas Huth static inline void gen_op_fcmpes(int fccno, TCGv r_rs1, TCGv r_rs2)
1675fcf5ef2aSThomas Huth {
1676fcf5ef2aSThomas Huth     gen_helper_fcmpes(cpu_fsr, cpu_env, r_rs1, r_rs2);
1677fcf5ef2aSThomas Huth }
1678fcf5ef2aSThomas Huth 
1679fcf5ef2aSThomas Huth static inline void gen_op_fcmped(int fccno, TCGv_i64 r_rs1, TCGv_i64 r_rs2)
1680fcf5ef2aSThomas Huth {
1681fcf5ef2aSThomas Huth     gen_helper_fcmped(cpu_fsr, cpu_env, r_rs1, r_rs2);
1682fcf5ef2aSThomas Huth }
1683fcf5ef2aSThomas Huth 
1684fcf5ef2aSThomas Huth static inline void gen_op_fcmpeq(int fccno)
1685fcf5ef2aSThomas Huth {
1686fcf5ef2aSThomas Huth     gen_helper_fcmpeq(cpu_fsr, cpu_env);
1687fcf5ef2aSThomas Huth }
1688fcf5ef2aSThomas Huth #endif
1689fcf5ef2aSThomas Huth 
1690fcf5ef2aSThomas Huth static void gen_op_fpexception_im(DisasContext *dc, int fsr_flags)
1691fcf5ef2aSThomas Huth {
1692fcf5ef2aSThomas Huth     tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_NMASK);
1693fcf5ef2aSThomas Huth     tcg_gen_ori_tl(cpu_fsr, cpu_fsr, fsr_flags);
1694fcf5ef2aSThomas Huth     gen_exception(dc, TT_FP_EXCP);
1695fcf5ef2aSThomas Huth }
1696fcf5ef2aSThomas Huth 
1697fcf5ef2aSThomas Huth static int gen_trap_ifnofpu(DisasContext *dc)
1698fcf5ef2aSThomas Huth {
1699fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
1700fcf5ef2aSThomas Huth     if (!dc->fpu_enabled) {
1701fcf5ef2aSThomas Huth         gen_exception(dc, TT_NFPU_INSN);
1702fcf5ef2aSThomas Huth         return 1;
1703fcf5ef2aSThomas Huth     }
1704fcf5ef2aSThomas Huth #endif
1705fcf5ef2aSThomas Huth     return 0;
1706fcf5ef2aSThomas Huth }
1707fcf5ef2aSThomas Huth 
1708fcf5ef2aSThomas Huth static inline void gen_op_clear_ieee_excp_and_FTT(void)
1709fcf5ef2aSThomas Huth {
1710fcf5ef2aSThomas Huth     tcg_gen_andi_tl(cpu_fsr, cpu_fsr, FSR_FTT_CEXC_NMASK);
1711fcf5ef2aSThomas Huth }
1712fcf5ef2aSThomas Huth 
1713fcf5ef2aSThomas Huth static inline void gen_fop_FF(DisasContext *dc, int rd, int rs,
1714fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i32, TCGv_ptr, TCGv_i32))
1715fcf5ef2aSThomas Huth {
1716fcf5ef2aSThomas Huth     TCGv_i32 dst, src;
1717fcf5ef2aSThomas Huth 
1718fcf5ef2aSThomas Huth     src = gen_load_fpr_F(dc, rs);
1719fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1720fcf5ef2aSThomas Huth 
1721fcf5ef2aSThomas Huth     gen(dst, cpu_env, src);
1722fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1723fcf5ef2aSThomas Huth 
1724fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1725fcf5ef2aSThomas Huth }
1726fcf5ef2aSThomas Huth 
1727fcf5ef2aSThomas Huth static inline void gen_ne_fop_FF(DisasContext *dc, int rd, int rs,
1728fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_i32, TCGv_i32))
1729fcf5ef2aSThomas Huth {
1730fcf5ef2aSThomas Huth     TCGv_i32 dst, src;
1731fcf5ef2aSThomas Huth 
1732fcf5ef2aSThomas Huth     src = gen_load_fpr_F(dc, rs);
1733fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1734fcf5ef2aSThomas Huth 
1735fcf5ef2aSThomas Huth     gen(dst, src);
1736fcf5ef2aSThomas Huth 
1737fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1738fcf5ef2aSThomas Huth }
1739fcf5ef2aSThomas Huth 
1740fcf5ef2aSThomas Huth static inline void gen_fop_FFF(DisasContext *dc, int rd, int rs1, int rs2,
1741fcf5ef2aSThomas Huth                         void (*gen)(TCGv_i32, TCGv_ptr, TCGv_i32, TCGv_i32))
1742fcf5ef2aSThomas Huth {
1743fcf5ef2aSThomas Huth     TCGv_i32 dst, src1, src2;
1744fcf5ef2aSThomas Huth 
1745fcf5ef2aSThomas Huth     src1 = gen_load_fpr_F(dc, rs1);
1746fcf5ef2aSThomas Huth     src2 = gen_load_fpr_F(dc, rs2);
1747fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1748fcf5ef2aSThomas Huth 
1749fcf5ef2aSThomas Huth     gen(dst, cpu_env, src1, src2);
1750fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1751fcf5ef2aSThomas Huth 
1752fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1753fcf5ef2aSThomas Huth }
1754fcf5ef2aSThomas Huth 
1755fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1756fcf5ef2aSThomas Huth static inline void gen_ne_fop_FFF(DisasContext *dc, int rd, int rs1, int rs2,
1757fcf5ef2aSThomas Huth                                   void (*gen)(TCGv_i32, TCGv_i32, TCGv_i32))
1758fcf5ef2aSThomas Huth {
1759fcf5ef2aSThomas Huth     TCGv_i32 dst, src1, src2;
1760fcf5ef2aSThomas Huth 
1761fcf5ef2aSThomas Huth     src1 = gen_load_fpr_F(dc, rs1);
1762fcf5ef2aSThomas Huth     src2 = gen_load_fpr_F(dc, rs2);
1763fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1764fcf5ef2aSThomas Huth 
1765fcf5ef2aSThomas Huth     gen(dst, src1, src2);
1766fcf5ef2aSThomas Huth 
1767fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1768fcf5ef2aSThomas Huth }
1769fcf5ef2aSThomas Huth #endif
1770fcf5ef2aSThomas Huth 
1771fcf5ef2aSThomas Huth static inline void gen_fop_DD(DisasContext *dc, int rd, int rs,
1772fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i64, TCGv_ptr, TCGv_i64))
1773fcf5ef2aSThomas Huth {
1774fcf5ef2aSThomas Huth     TCGv_i64 dst, src;
1775fcf5ef2aSThomas Huth 
1776fcf5ef2aSThomas Huth     src = gen_load_fpr_D(dc, rs);
1777fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1778fcf5ef2aSThomas Huth 
1779fcf5ef2aSThomas Huth     gen(dst, cpu_env, src);
1780fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1781fcf5ef2aSThomas Huth 
1782fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1783fcf5ef2aSThomas Huth }
1784fcf5ef2aSThomas Huth 
1785fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1786fcf5ef2aSThomas Huth static inline void gen_ne_fop_DD(DisasContext *dc, int rd, int rs,
1787fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_i64, TCGv_i64))
1788fcf5ef2aSThomas Huth {
1789fcf5ef2aSThomas Huth     TCGv_i64 dst, src;
1790fcf5ef2aSThomas Huth 
1791fcf5ef2aSThomas Huth     src = gen_load_fpr_D(dc, rs);
1792fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1793fcf5ef2aSThomas Huth 
1794fcf5ef2aSThomas Huth     gen(dst, src);
1795fcf5ef2aSThomas Huth 
1796fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1797fcf5ef2aSThomas Huth }
1798fcf5ef2aSThomas Huth #endif
1799fcf5ef2aSThomas Huth 
1800fcf5ef2aSThomas Huth static inline void gen_fop_DDD(DisasContext *dc, int rd, int rs1, int rs2,
1801fcf5ef2aSThomas Huth                         void (*gen)(TCGv_i64, TCGv_ptr, TCGv_i64, TCGv_i64))
1802fcf5ef2aSThomas Huth {
1803fcf5ef2aSThomas Huth     TCGv_i64 dst, src1, src2;
1804fcf5ef2aSThomas Huth 
1805fcf5ef2aSThomas Huth     src1 = gen_load_fpr_D(dc, rs1);
1806fcf5ef2aSThomas Huth     src2 = gen_load_fpr_D(dc, rs2);
1807fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1808fcf5ef2aSThomas Huth 
1809fcf5ef2aSThomas Huth     gen(dst, cpu_env, src1, src2);
1810fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1811fcf5ef2aSThomas Huth 
1812fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1813fcf5ef2aSThomas Huth }
1814fcf5ef2aSThomas Huth 
1815fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1816fcf5ef2aSThomas Huth static inline void gen_ne_fop_DDD(DisasContext *dc, int rd, int rs1, int rs2,
1817fcf5ef2aSThomas Huth                                   void (*gen)(TCGv_i64, TCGv_i64, TCGv_i64))
1818fcf5ef2aSThomas Huth {
1819fcf5ef2aSThomas Huth     TCGv_i64 dst, src1, src2;
1820fcf5ef2aSThomas Huth 
1821fcf5ef2aSThomas Huth     src1 = gen_load_fpr_D(dc, rs1);
1822fcf5ef2aSThomas Huth     src2 = gen_load_fpr_D(dc, rs2);
1823fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1824fcf5ef2aSThomas Huth 
1825fcf5ef2aSThomas Huth     gen(dst, src1, src2);
1826fcf5ef2aSThomas Huth 
1827fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1828fcf5ef2aSThomas Huth }
1829fcf5ef2aSThomas Huth 
1830fcf5ef2aSThomas Huth static inline void gen_gsr_fop_DDD(DisasContext *dc, int rd, int rs1, int rs2,
1831fcf5ef2aSThomas Huth                            void (*gen)(TCGv_i64, TCGv_i64, TCGv_i64, TCGv_i64))
1832fcf5ef2aSThomas Huth {
1833fcf5ef2aSThomas Huth     TCGv_i64 dst, src1, src2;
1834fcf5ef2aSThomas Huth 
1835fcf5ef2aSThomas Huth     src1 = gen_load_fpr_D(dc, rs1);
1836fcf5ef2aSThomas Huth     src2 = gen_load_fpr_D(dc, rs2);
1837fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1838fcf5ef2aSThomas Huth 
1839fcf5ef2aSThomas Huth     gen(dst, cpu_gsr, src1, src2);
1840fcf5ef2aSThomas Huth 
1841fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1842fcf5ef2aSThomas Huth }
1843fcf5ef2aSThomas Huth 
1844fcf5ef2aSThomas Huth static inline void gen_ne_fop_DDDD(DisasContext *dc, int rd, int rs1, int rs2,
1845fcf5ef2aSThomas Huth                            void (*gen)(TCGv_i64, TCGv_i64, TCGv_i64, TCGv_i64))
1846fcf5ef2aSThomas Huth {
1847fcf5ef2aSThomas Huth     TCGv_i64 dst, src0, src1, src2;
1848fcf5ef2aSThomas Huth 
1849fcf5ef2aSThomas Huth     src1 = gen_load_fpr_D(dc, rs1);
1850fcf5ef2aSThomas Huth     src2 = gen_load_fpr_D(dc, rs2);
1851fcf5ef2aSThomas Huth     src0 = gen_load_fpr_D(dc, rd);
1852fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1853fcf5ef2aSThomas Huth 
1854fcf5ef2aSThomas Huth     gen(dst, src0, src1, src2);
1855fcf5ef2aSThomas Huth 
1856fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1857fcf5ef2aSThomas Huth }
1858fcf5ef2aSThomas Huth #endif
1859fcf5ef2aSThomas Huth 
1860fcf5ef2aSThomas Huth static inline void gen_fop_QQ(DisasContext *dc, int rd, int rs,
1861fcf5ef2aSThomas Huth                               void (*gen)(TCGv_ptr))
1862fcf5ef2aSThomas Huth {
1863fcf5ef2aSThomas Huth     gen_op_load_fpr_QT1(QFPREG(rs));
1864fcf5ef2aSThomas Huth 
1865fcf5ef2aSThomas Huth     gen(cpu_env);
1866fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1867fcf5ef2aSThomas Huth 
1868fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
1869fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
1870fcf5ef2aSThomas Huth }
1871fcf5ef2aSThomas Huth 
1872fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1873fcf5ef2aSThomas Huth static inline void gen_ne_fop_QQ(DisasContext *dc, int rd, int rs,
1874fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_ptr))
1875fcf5ef2aSThomas Huth {
1876fcf5ef2aSThomas Huth     gen_op_load_fpr_QT1(QFPREG(rs));
1877fcf5ef2aSThomas Huth 
1878fcf5ef2aSThomas Huth     gen(cpu_env);
1879fcf5ef2aSThomas Huth 
1880fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
1881fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
1882fcf5ef2aSThomas Huth }
1883fcf5ef2aSThomas Huth #endif
1884fcf5ef2aSThomas Huth 
1885fcf5ef2aSThomas Huth static inline void gen_fop_QQQ(DisasContext *dc, int rd, int rs1, int rs2,
1886fcf5ef2aSThomas Huth                                void (*gen)(TCGv_ptr))
1887fcf5ef2aSThomas Huth {
1888fcf5ef2aSThomas Huth     gen_op_load_fpr_QT0(QFPREG(rs1));
1889fcf5ef2aSThomas Huth     gen_op_load_fpr_QT1(QFPREG(rs2));
1890fcf5ef2aSThomas Huth 
1891fcf5ef2aSThomas Huth     gen(cpu_env);
1892fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1893fcf5ef2aSThomas Huth 
1894fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
1895fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
1896fcf5ef2aSThomas Huth }
1897fcf5ef2aSThomas Huth 
1898fcf5ef2aSThomas Huth static inline void gen_fop_DFF(DisasContext *dc, int rd, int rs1, int rs2,
1899fcf5ef2aSThomas Huth                         void (*gen)(TCGv_i64, TCGv_ptr, TCGv_i32, TCGv_i32))
1900fcf5ef2aSThomas Huth {
1901fcf5ef2aSThomas Huth     TCGv_i64 dst;
1902fcf5ef2aSThomas Huth     TCGv_i32 src1, src2;
1903fcf5ef2aSThomas Huth 
1904fcf5ef2aSThomas Huth     src1 = gen_load_fpr_F(dc, rs1);
1905fcf5ef2aSThomas Huth     src2 = gen_load_fpr_F(dc, rs2);
1906fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1907fcf5ef2aSThomas Huth 
1908fcf5ef2aSThomas Huth     gen(dst, cpu_env, src1, src2);
1909fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1910fcf5ef2aSThomas Huth 
1911fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1912fcf5ef2aSThomas Huth }
1913fcf5ef2aSThomas Huth 
1914fcf5ef2aSThomas Huth static inline void gen_fop_QDD(DisasContext *dc, int rd, int rs1, int rs2,
1915fcf5ef2aSThomas Huth                                void (*gen)(TCGv_ptr, TCGv_i64, TCGv_i64))
1916fcf5ef2aSThomas Huth {
1917fcf5ef2aSThomas Huth     TCGv_i64 src1, src2;
1918fcf5ef2aSThomas Huth 
1919fcf5ef2aSThomas Huth     src1 = gen_load_fpr_D(dc, rs1);
1920fcf5ef2aSThomas Huth     src2 = gen_load_fpr_D(dc, rs2);
1921fcf5ef2aSThomas Huth 
1922fcf5ef2aSThomas Huth     gen(cpu_env, src1, src2);
1923fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1924fcf5ef2aSThomas Huth 
1925fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
1926fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
1927fcf5ef2aSThomas Huth }
1928fcf5ef2aSThomas Huth 
1929fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
1930fcf5ef2aSThomas Huth static inline void gen_fop_DF(DisasContext *dc, int rd, int rs,
1931fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i64, TCGv_ptr, TCGv_i32))
1932fcf5ef2aSThomas Huth {
1933fcf5ef2aSThomas Huth     TCGv_i64 dst;
1934fcf5ef2aSThomas Huth     TCGv_i32 src;
1935fcf5ef2aSThomas Huth 
1936fcf5ef2aSThomas Huth     src = gen_load_fpr_F(dc, rs);
1937fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1938fcf5ef2aSThomas Huth 
1939fcf5ef2aSThomas Huth     gen(dst, cpu_env, src);
1940fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1941fcf5ef2aSThomas Huth 
1942fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1943fcf5ef2aSThomas Huth }
1944fcf5ef2aSThomas Huth #endif
1945fcf5ef2aSThomas Huth 
1946fcf5ef2aSThomas Huth static inline void gen_ne_fop_DF(DisasContext *dc, int rd, int rs,
1947fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_i64, TCGv_ptr, TCGv_i32))
1948fcf5ef2aSThomas Huth {
1949fcf5ef2aSThomas Huth     TCGv_i64 dst;
1950fcf5ef2aSThomas Huth     TCGv_i32 src;
1951fcf5ef2aSThomas Huth 
1952fcf5ef2aSThomas Huth     src = gen_load_fpr_F(dc, rs);
1953fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1954fcf5ef2aSThomas Huth 
1955fcf5ef2aSThomas Huth     gen(dst, cpu_env, src);
1956fcf5ef2aSThomas Huth 
1957fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
1958fcf5ef2aSThomas Huth }
1959fcf5ef2aSThomas Huth 
1960fcf5ef2aSThomas Huth static inline void gen_fop_FD(DisasContext *dc, int rd, int rs,
1961fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i32, TCGv_ptr, TCGv_i64))
1962fcf5ef2aSThomas Huth {
1963fcf5ef2aSThomas Huth     TCGv_i32 dst;
1964fcf5ef2aSThomas Huth     TCGv_i64 src;
1965fcf5ef2aSThomas Huth 
1966fcf5ef2aSThomas Huth     src = gen_load_fpr_D(dc, rs);
1967fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1968fcf5ef2aSThomas Huth 
1969fcf5ef2aSThomas Huth     gen(dst, cpu_env, src);
1970fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1971fcf5ef2aSThomas Huth 
1972fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1973fcf5ef2aSThomas Huth }
1974fcf5ef2aSThomas Huth 
1975fcf5ef2aSThomas Huth static inline void gen_fop_FQ(DisasContext *dc, int rd, int rs,
1976fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i32, TCGv_ptr))
1977fcf5ef2aSThomas Huth {
1978fcf5ef2aSThomas Huth     TCGv_i32 dst;
1979fcf5ef2aSThomas Huth 
1980fcf5ef2aSThomas Huth     gen_op_load_fpr_QT1(QFPREG(rs));
1981fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
1982fcf5ef2aSThomas Huth 
1983fcf5ef2aSThomas Huth     gen(dst, cpu_env);
1984fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1985fcf5ef2aSThomas Huth 
1986fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
1987fcf5ef2aSThomas Huth }
1988fcf5ef2aSThomas Huth 
1989fcf5ef2aSThomas Huth static inline void gen_fop_DQ(DisasContext *dc, int rd, int rs,
1990fcf5ef2aSThomas Huth                               void (*gen)(TCGv_i64, TCGv_ptr))
1991fcf5ef2aSThomas Huth {
1992fcf5ef2aSThomas Huth     TCGv_i64 dst;
1993fcf5ef2aSThomas Huth 
1994fcf5ef2aSThomas Huth     gen_op_load_fpr_QT1(QFPREG(rs));
1995fcf5ef2aSThomas Huth     dst = gen_dest_fpr_D(dc, rd);
1996fcf5ef2aSThomas Huth 
1997fcf5ef2aSThomas Huth     gen(dst, cpu_env);
1998fcf5ef2aSThomas Huth     gen_helper_check_ieee_exceptions(cpu_fsr, cpu_env);
1999fcf5ef2aSThomas Huth 
2000fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
2001fcf5ef2aSThomas Huth }
2002fcf5ef2aSThomas Huth 
2003fcf5ef2aSThomas Huth static inline void gen_ne_fop_QF(DisasContext *dc, int rd, int rs,
2004fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_ptr, TCGv_i32))
2005fcf5ef2aSThomas Huth {
2006fcf5ef2aSThomas Huth     TCGv_i32 src;
2007fcf5ef2aSThomas Huth 
2008fcf5ef2aSThomas Huth     src = gen_load_fpr_F(dc, rs);
2009fcf5ef2aSThomas Huth 
2010fcf5ef2aSThomas Huth     gen(cpu_env, src);
2011fcf5ef2aSThomas Huth 
2012fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
2013fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
2014fcf5ef2aSThomas Huth }
2015fcf5ef2aSThomas Huth 
2016fcf5ef2aSThomas Huth static inline void gen_ne_fop_QD(DisasContext *dc, int rd, int rs,
2017fcf5ef2aSThomas Huth                                  void (*gen)(TCGv_ptr, TCGv_i64))
2018fcf5ef2aSThomas Huth {
2019fcf5ef2aSThomas Huth     TCGv_i64 src;
2020fcf5ef2aSThomas Huth 
2021fcf5ef2aSThomas Huth     src = gen_load_fpr_D(dc, rs);
2022fcf5ef2aSThomas Huth 
2023fcf5ef2aSThomas Huth     gen(cpu_env, src);
2024fcf5ef2aSThomas Huth 
2025fcf5ef2aSThomas Huth     gen_op_store_QT0_fpr(QFPREG(rd));
2026fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, QFPREG(rd));
2027fcf5ef2aSThomas Huth }
2028fcf5ef2aSThomas Huth 
2029fcf5ef2aSThomas Huth static void gen_swap(DisasContext *dc, TCGv dst, TCGv src,
2030fcf5ef2aSThomas Huth                      TCGv addr, int mmu_idx, TCGMemOp memop)
2031fcf5ef2aSThomas Huth {
2032fcf5ef2aSThomas Huth     gen_address_mask(dc, addr);
2033fcf5ef2aSThomas Huth     tcg_gen_atomic_xchg_tl(dst, addr, src, mmu_idx, memop);
2034fcf5ef2aSThomas Huth }
2035fcf5ef2aSThomas Huth 
2036fcf5ef2aSThomas Huth static void gen_ldstub(DisasContext *dc, TCGv dst, TCGv addr, int mmu_idx)
2037fcf5ef2aSThomas Huth {
2038fcf5ef2aSThomas Huth     TCGv m1 = tcg_const_tl(0xff);
2039fcf5ef2aSThomas Huth     gen_address_mask(dc, addr);
2040fcf5ef2aSThomas Huth     tcg_gen_atomic_xchg_tl(dst, addr, m1, mmu_idx, MO_UB);
2041fcf5ef2aSThomas Huth     tcg_temp_free(m1);
2042fcf5ef2aSThomas Huth }
2043fcf5ef2aSThomas Huth 
2044fcf5ef2aSThomas Huth /* asi moves */
2045fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
2046fcf5ef2aSThomas Huth typedef enum {
2047fcf5ef2aSThomas Huth     GET_ASI_HELPER,
2048fcf5ef2aSThomas Huth     GET_ASI_EXCP,
2049fcf5ef2aSThomas Huth     GET_ASI_DIRECT,
2050fcf5ef2aSThomas Huth     GET_ASI_DTWINX,
2051fcf5ef2aSThomas Huth     GET_ASI_BLOCK,
2052fcf5ef2aSThomas Huth     GET_ASI_SHORT,
2053fcf5ef2aSThomas Huth     GET_ASI_BCOPY,
2054fcf5ef2aSThomas Huth     GET_ASI_BFILL,
2055fcf5ef2aSThomas Huth } ASIType;
2056fcf5ef2aSThomas Huth 
2057fcf5ef2aSThomas Huth typedef struct {
2058fcf5ef2aSThomas Huth     ASIType type;
2059fcf5ef2aSThomas Huth     int asi;
2060fcf5ef2aSThomas Huth     int mem_idx;
2061fcf5ef2aSThomas Huth     TCGMemOp memop;
2062fcf5ef2aSThomas Huth } DisasASI;
2063fcf5ef2aSThomas Huth 
2064fcf5ef2aSThomas Huth static DisasASI get_asi(DisasContext *dc, int insn, TCGMemOp memop)
2065fcf5ef2aSThomas Huth {
2066fcf5ef2aSThomas Huth     int asi = GET_FIELD(insn, 19, 26);
2067fcf5ef2aSThomas Huth     ASIType type = GET_ASI_HELPER;
2068fcf5ef2aSThomas Huth     int mem_idx = dc->mem_idx;
2069fcf5ef2aSThomas Huth 
2070fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
2071fcf5ef2aSThomas Huth     /* Before v9, all asis are immediate and privileged.  */
2072fcf5ef2aSThomas Huth     if (IS_IMM) {
2073fcf5ef2aSThomas Huth         gen_exception(dc, TT_ILL_INSN);
2074fcf5ef2aSThomas Huth         type = GET_ASI_EXCP;
2075fcf5ef2aSThomas Huth     } else if (supervisor(dc)
2076fcf5ef2aSThomas Huth                /* Note that LEON accepts ASI_USERDATA in user mode, for
2077fcf5ef2aSThomas Huth                   use with CASA.  Also note that previous versions of
2078fcf5ef2aSThomas Huth                   QEMU allowed (and old versions of gcc emitted) ASI_P
2079fcf5ef2aSThomas Huth                   for LEON, which is incorrect.  */
2080fcf5ef2aSThomas Huth                || (asi == ASI_USERDATA
2081fcf5ef2aSThomas Huth                    && (dc->def->features & CPU_FEATURE_CASA))) {
2082fcf5ef2aSThomas Huth         switch (asi) {
2083fcf5ef2aSThomas Huth         case ASI_USERDATA:   /* User data access */
2084fcf5ef2aSThomas Huth             mem_idx = MMU_USER_IDX;
2085fcf5ef2aSThomas Huth             type = GET_ASI_DIRECT;
2086fcf5ef2aSThomas Huth             break;
2087fcf5ef2aSThomas Huth         case ASI_KERNELDATA: /* Supervisor data access */
2088fcf5ef2aSThomas Huth             mem_idx = MMU_KERNEL_IDX;
2089fcf5ef2aSThomas Huth             type = GET_ASI_DIRECT;
2090fcf5ef2aSThomas Huth             break;
2091fcf5ef2aSThomas Huth         case ASI_M_BYPASS:    /* MMU passthrough */
2092fcf5ef2aSThomas Huth         case ASI_LEON_BYPASS: /* LEON MMU passthrough */
2093fcf5ef2aSThomas Huth             mem_idx = MMU_PHYS_IDX;
2094fcf5ef2aSThomas Huth             type = GET_ASI_DIRECT;
2095fcf5ef2aSThomas Huth             break;
2096fcf5ef2aSThomas Huth         case ASI_M_BCOPY: /* Block copy, sta access */
2097fcf5ef2aSThomas Huth             mem_idx = MMU_KERNEL_IDX;
2098fcf5ef2aSThomas Huth             type = GET_ASI_BCOPY;
2099fcf5ef2aSThomas Huth             break;
2100fcf5ef2aSThomas Huth         case ASI_M_BFILL: /* Block fill, stda access */
2101fcf5ef2aSThomas Huth             mem_idx = MMU_KERNEL_IDX;
2102fcf5ef2aSThomas Huth             type = GET_ASI_BFILL;
2103fcf5ef2aSThomas Huth             break;
2104fcf5ef2aSThomas Huth         }
2105fcf5ef2aSThomas Huth     } else {
2106fcf5ef2aSThomas Huth         gen_exception(dc, TT_PRIV_INSN);
2107fcf5ef2aSThomas Huth         type = GET_ASI_EXCP;
2108fcf5ef2aSThomas Huth     }
2109fcf5ef2aSThomas Huth #else
2110fcf5ef2aSThomas Huth     if (IS_IMM) {
2111fcf5ef2aSThomas Huth         asi = dc->asi;
2112fcf5ef2aSThomas Huth     }
2113fcf5ef2aSThomas Huth     /* With v9, all asis below 0x80 are privileged.  */
2114fcf5ef2aSThomas Huth     /* ??? We ought to check cpu_has_hypervisor, but we didn't copy
2115fcf5ef2aSThomas Huth        down that bit into DisasContext.  For the moment that's ok,
2116fcf5ef2aSThomas Huth        since the direct implementations below doesn't have any ASIs
2117fcf5ef2aSThomas Huth        in the restricted [0x30, 0x7f] range, and the check will be
2118fcf5ef2aSThomas Huth        done properly in the helper.  */
2119fcf5ef2aSThomas Huth     if (!supervisor(dc) && asi < 0x80) {
2120fcf5ef2aSThomas Huth         gen_exception(dc, TT_PRIV_ACT);
2121fcf5ef2aSThomas Huth         type = GET_ASI_EXCP;
2122fcf5ef2aSThomas Huth     } else {
2123fcf5ef2aSThomas Huth         switch (asi) {
2124fcf5ef2aSThomas Huth         case ASI_REAL:      /* Bypass */
2125fcf5ef2aSThomas Huth         case ASI_REAL_IO:   /* Bypass, non-cacheable */
2126fcf5ef2aSThomas Huth         case ASI_REAL_L:    /* Bypass LE */
2127fcf5ef2aSThomas Huth         case ASI_REAL_IO_L: /* Bypass, non-cacheable LE */
2128fcf5ef2aSThomas Huth         case ASI_TWINX_REAL:   /* Real address, twinx */
2129fcf5ef2aSThomas Huth         case ASI_TWINX_REAL_L: /* Real address, twinx, LE */
2130fcf5ef2aSThomas Huth         case ASI_QUAD_LDD_PHYS:
2131fcf5ef2aSThomas Huth         case ASI_QUAD_LDD_PHYS_L:
2132fcf5ef2aSThomas Huth             mem_idx = MMU_PHYS_IDX;
2133fcf5ef2aSThomas Huth             break;
2134fcf5ef2aSThomas Huth         case ASI_N:  /* Nucleus */
2135fcf5ef2aSThomas Huth         case ASI_NL: /* Nucleus LE */
2136fcf5ef2aSThomas Huth         case ASI_TWINX_N:
2137fcf5ef2aSThomas Huth         case ASI_TWINX_NL:
2138fcf5ef2aSThomas Huth         case ASI_NUCLEUS_QUAD_LDD:
2139fcf5ef2aSThomas Huth         case ASI_NUCLEUS_QUAD_LDD_L:
21409a10756dSArtyom Tarasenko             if (hypervisor(dc)) {
214184f8f587SArtyom Tarasenko                 mem_idx = MMU_PHYS_IDX;
21429a10756dSArtyom Tarasenko             } else {
2143fcf5ef2aSThomas Huth                 mem_idx = MMU_NUCLEUS_IDX;
21449a10756dSArtyom Tarasenko             }
2145fcf5ef2aSThomas Huth             break;
2146fcf5ef2aSThomas Huth         case ASI_AIUP:  /* As if user primary */
2147fcf5ef2aSThomas Huth         case ASI_AIUPL: /* As if user primary LE */
2148fcf5ef2aSThomas Huth         case ASI_TWINX_AIUP:
2149fcf5ef2aSThomas Huth         case ASI_TWINX_AIUP_L:
2150fcf5ef2aSThomas Huth         case ASI_BLK_AIUP_4V:
2151fcf5ef2aSThomas Huth         case ASI_BLK_AIUP_L_4V:
2152fcf5ef2aSThomas Huth         case ASI_BLK_AIUP:
2153fcf5ef2aSThomas Huth         case ASI_BLK_AIUPL:
2154fcf5ef2aSThomas Huth             mem_idx = MMU_USER_IDX;
2155fcf5ef2aSThomas Huth             break;
2156fcf5ef2aSThomas Huth         case ASI_AIUS:  /* As if user secondary */
2157fcf5ef2aSThomas Huth         case ASI_AIUSL: /* As if user secondary LE */
2158fcf5ef2aSThomas Huth         case ASI_TWINX_AIUS:
2159fcf5ef2aSThomas Huth         case ASI_TWINX_AIUS_L:
2160fcf5ef2aSThomas Huth         case ASI_BLK_AIUS_4V:
2161fcf5ef2aSThomas Huth         case ASI_BLK_AIUS_L_4V:
2162fcf5ef2aSThomas Huth         case ASI_BLK_AIUS:
2163fcf5ef2aSThomas Huth         case ASI_BLK_AIUSL:
2164fcf5ef2aSThomas Huth             mem_idx = MMU_USER_SECONDARY_IDX;
2165fcf5ef2aSThomas Huth             break;
2166fcf5ef2aSThomas Huth         case ASI_S:  /* Secondary */
2167fcf5ef2aSThomas Huth         case ASI_SL: /* Secondary LE */
2168fcf5ef2aSThomas Huth         case ASI_TWINX_S:
2169fcf5ef2aSThomas Huth         case ASI_TWINX_SL:
2170fcf5ef2aSThomas Huth         case ASI_BLK_COMMIT_S:
2171fcf5ef2aSThomas Huth         case ASI_BLK_S:
2172fcf5ef2aSThomas Huth         case ASI_BLK_SL:
2173fcf5ef2aSThomas Huth         case ASI_FL8_S:
2174fcf5ef2aSThomas Huth         case ASI_FL8_SL:
2175fcf5ef2aSThomas Huth         case ASI_FL16_S:
2176fcf5ef2aSThomas Huth         case ASI_FL16_SL:
2177fcf5ef2aSThomas Huth             if (mem_idx == MMU_USER_IDX) {
2178fcf5ef2aSThomas Huth                 mem_idx = MMU_USER_SECONDARY_IDX;
2179fcf5ef2aSThomas Huth             } else if (mem_idx == MMU_KERNEL_IDX) {
2180fcf5ef2aSThomas Huth                 mem_idx = MMU_KERNEL_SECONDARY_IDX;
2181fcf5ef2aSThomas Huth             }
2182fcf5ef2aSThomas Huth             break;
2183fcf5ef2aSThomas Huth         case ASI_P:  /* Primary */
2184fcf5ef2aSThomas Huth         case ASI_PL: /* Primary LE */
2185fcf5ef2aSThomas Huth         case ASI_TWINX_P:
2186fcf5ef2aSThomas Huth         case ASI_TWINX_PL:
2187fcf5ef2aSThomas Huth         case ASI_BLK_COMMIT_P:
2188fcf5ef2aSThomas Huth         case ASI_BLK_P:
2189fcf5ef2aSThomas Huth         case ASI_BLK_PL:
2190fcf5ef2aSThomas Huth         case ASI_FL8_P:
2191fcf5ef2aSThomas Huth         case ASI_FL8_PL:
2192fcf5ef2aSThomas Huth         case ASI_FL16_P:
2193fcf5ef2aSThomas Huth         case ASI_FL16_PL:
2194fcf5ef2aSThomas Huth             break;
2195fcf5ef2aSThomas Huth         }
2196fcf5ef2aSThomas Huth         switch (asi) {
2197fcf5ef2aSThomas Huth         case ASI_REAL:
2198fcf5ef2aSThomas Huth         case ASI_REAL_IO:
2199fcf5ef2aSThomas Huth         case ASI_REAL_L:
2200fcf5ef2aSThomas Huth         case ASI_REAL_IO_L:
2201fcf5ef2aSThomas Huth         case ASI_N:
2202fcf5ef2aSThomas Huth         case ASI_NL:
2203fcf5ef2aSThomas Huth         case ASI_AIUP:
2204fcf5ef2aSThomas Huth         case ASI_AIUPL:
2205fcf5ef2aSThomas Huth         case ASI_AIUS:
2206fcf5ef2aSThomas Huth         case ASI_AIUSL:
2207fcf5ef2aSThomas Huth         case ASI_S:
2208fcf5ef2aSThomas Huth         case ASI_SL:
2209fcf5ef2aSThomas Huth         case ASI_P:
2210fcf5ef2aSThomas Huth         case ASI_PL:
2211fcf5ef2aSThomas Huth             type = GET_ASI_DIRECT;
2212fcf5ef2aSThomas Huth             break;
2213fcf5ef2aSThomas Huth         case ASI_TWINX_REAL:
2214fcf5ef2aSThomas Huth         case ASI_TWINX_REAL_L:
2215fcf5ef2aSThomas Huth         case ASI_TWINX_N:
2216fcf5ef2aSThomas Huth         case ASI_TWINX_NL:
2217fcf5ef2aSThomas Huth         case ASI_TWINX_AIUP:
2218fcf5ef2aSThomas Huth         case ASI_TWINX_AIUP_L:
2219fcf5ef2aSThomas Huth         case ASI_TWINX_AIUS:
2220fcf5ef2aSThomas Huth         case ASI_TWINX_AIUS_L:
2221fcf5ef2aSThomas Huth         case ASI_TWINX_P:
2222fcf5ef2aSThomas Huth         case ASI_TWINX_PL:
2223fcf5ef2aSThomas Huth         case ASI_TWINX_S:
2224fcf5ef2aSThomas Huth         case ASI_TWINX_SL:
2225fcf5ef2aSThomas Huth         case ASI_QUAD_LDD_PHYS:
2226fcf5ef2aSThomas Huth         case ASI_QUAD_LDD_PHYS_L:
2227fcf5ef2aSThomas Huth         case ASI_NUCLEUS_QUAD_LDD:
2228fcf5ef2aSThomas Huth         case ASI_NUCLEUS_QUAD_LDD_L:
2229fcf5ef2aSThomas Huth             type = GET_ASI_DTWINX;
2230fcf5ef2aSThomas Huth             break;
2231fcf5ef2aSThomas Huth         case ASI_BLK_COMMIT_P:
2232fcf5ef2aSThomas Huth         case ASI_BLK_COMMIT_S:
2233fcf5ef2aSThomas Huth         case ASI_BLK_AIUP_4V:
2234fcf5ef2aSThomas Huth         case ASI_BLK_AIUP_L_4V:
2235fcf5ef2aSThomas Huth         case ASI_BLK_AIUP:
2236fcf5ef2aSThomas Huth         case ASI_BLK_AIUPL:
2237fcf5ef2aSThomas Huth         case ASI_BLK_AIUS_4V:
2238fcf5ef2aSThomas Huth         case ASI_BLK_AIUS_L_4V:
2239fcf5ef2aSThomas Huth         case ASI_BLK_AIUS:
2240fcf5ef2aSThomas Huth         case ASI_BLK_AIUSL:
2241fcf5ef2aSThomas Huth         case ASI_BLK_S:
2242fcf5ef2aSThomas Huth         case ASI_BLK_SL:
2243fcf5ef2aSThomas Huth         case ASI_BLK_P:
2244fcf5ef2aSThomas Huth         case ASI_BLK_PL:
2245fcf5ef2aSThomas Huth             type = GET_ASI_BLOCK;
2246fcf5ef2aSThomas Huth             break;
2247fcf5ef2aSThomas Huth         case ASI_FL8_S:
2248fcf5ef2aSThomas Huth         case ASI_FL8_SL:
2249fcf5ef2aSThomas Huth         case ASI_FL8_P:
2250fcf5ef2aSThomas Huth         case ASI_FL8_PL:
2251fcf5ef2aSThomas Huth             memop = MO_UB;
2252fcf5ef2aSThomas Huth             type = GET_ASI_SHORT;
2253fcf5ef2aSThomas Huth             break;
2254fcf5ef2aSThomas Huth         case ASI_FL16_S:
2255fcf5ef2aSThomas Huth         case ASI_FL16_SL:
2256fcf5ef2aSThomas Huth         case ASI_FL16_P:
2257fcf5ef2aSThomas Huth         case ASI_FL16_PL:
2258fcf5ef2aSThomas Huth             memop = MO_TEUW;
2259fcf5ef2aSThomas Huth             type = GET_ASI_SHORT;
2260fcf5ef2aSThomas Huth             break;
2261fcf5ef2aSThomas Huth         }
2262fcf5ef2aSThomas Huth         /* The little-endian asis all have bit 3 set.  */
2263fcf5ef2aSThomas Huth         if (asi & 8) {
2264fcf5ef2aSThomas Huth             memop ^= MO_BSWAP;
2265fcf5ef2aSThomas Huth         }
2266fcf5ef2aSThomas Huth     }
2267fcf5ef2aSThomas Huth #endif
2268fcf5ef2aSThomas Huth 
2269fcf5ef2aSThomas Huth     return (DisasASI){ type, asi, mem_idx, memop };
2270fcf5ef2aSThomas Huth }
2271fcf5ef2aSThomas Huth 
2272fcf5ef2aSThomas Huth static void gen_ld_asi(DisasContext *dc, TCGv dst, TCGv addr,
2273fcf5ef2aSThomas Huth                        int insn, TCGMemOp memop)
2274fcf5ef2aSThomas Huth {
2275fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, memop);
2276fcf5ef2aSThomas Huth 
2277fcf5ef2aSThomas Huth     switch (da.type) {
2278fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2279fcf5ef2aSThomas Huth         break;
2280fcf5ef2aSThomas Huth     case GET_ASI_DTWINX: /* Reserved for ldda.  */
2281fcf5ef2aSThomas Huth         gen_exception(dc, TT_ILL_INSN);
2282fcf5ef2aSThomas Huth         break;
2283fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2284fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2285fcf5ef2aSThomas Huth         tcg_gen_qemu_ld_tl(dst, addr, da.mem_idx, da.memop);
2286fcf5ef2aSThomas Huth         break;
2287fcf5ef2aSThomas Huth     default:
2288fcf5ef2aSThomas Huth         {
2289fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2290fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(memop);
2291fcf5ef2aSThomas Huth 
2292fcf5ef2aSThomas Huth             save_state(dc);
2293fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
2294fcf5ef2aSThomas Huth             gen_helper_ld_asi(dst, cpu_env, addr, r_asi, r_mop);
2295fcf5ef2aSThomas Huth #else
2296fcf5ef2aSThomas Huth             {
2297fcf5ef2aSThomas Huth                 TCGv_i64 t64 = tcg_temp_new_i64();
2298fcf5ef2aSThomas Huth                 gen_helper_ld_asi(t64, cpu_env, addr, r_asi, r_mop);
2299fcf5ef2aSThomas Huth                 tcg_gen_trunc_i64_tl(dst, t64);
2300fcf5ef2aSThomas Huth                 tcg_temp_free_i64(t64);
2301fcf5ef2aSThomas Huth             }
2302fcf5ef2aSThomas Huth #endif
2303fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2304fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2305fcf5ef2aSThomas Huth         }
2306fcf5ef2aSThomas Huth         break;
2307fcf5ef2aSThomas Huth     }
2308fcf5ef2aSThomas Huth }
2309fcf5ef2aSThomas Huth 
2310fcf5ef2aSThomas Huth static void gen_st_asi(DisasContext *dc, TCGv src, TCGv addr,
2311fcf5ef2aSThomas Huth                        int insn, TCGMemOp memop)
2312fcf5ef2aSThomas Huth {
2313fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, memop);
2314fcf5ef2aSThomas Huth 
2315fcf5ef2aSThomas Huth     switch (da.type) {
2316fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2317fcf5ef2aSThomas Huth         break;
2318fcf5ef2aSThomas Huth     case GET_ASI_DTWINX: /* Reserved for stda.  */
23193390537bSArtyom Tarasenko #ifndef TARGET_SPARC64
2320fcf5ef2aSThomas Huth         gen_exception(dc, TT_ILL_INSN);
2321fcf5ef2aSThomas Huth         break;
23223390537bSArtyom Tarasenko #else
23233390537bSArtyom Tarasenko         if (!(dc->def->features & CPU_FEATURE_HYPV)) {
23243390537bSArtyom Tarasenko             /* Pre OpenSPARC CPUs don't have these */
23253390537bSArtyom Tarasenko             gen_exception(dc, TT_ILL_INSN);
23263390537bSArtyom Tarasenko             return;
23273390537bSArtyom Tarasenko         }
23283390537bSArtyom Tarasenko         /* in OpenSPARC T1+ CPUs TWINX ASIs in store instructions
23293390537bSArtyom Tarasenko          * are ST_BLKINIT_ ASIs */
23303390537bSArtyom Tarasenko         /* fall through */
23313390537bSArtyom Tarasenko #endif
2332fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2333fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2334fcf5ef2aSThomas Huth         tcg_gen_qemu_st_tl(src, addr, da.mem_idx, da.memop);
2335fcf5ef2aSThomas Huth         break;
2336fcf5ef2aSThomas Huth #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
2337fcf5ef2aSThomas Huth     case GET_ASI_BCOPY:
2338fcf5ef2aSThomas Huth         /* Copy 32 bytes from the address in SRC to ADDR.  */
2339fcf5ef2aSThomas Huth         /* ??? The original qemu code suggests 4-byte alignment, dropping
2340fcf5ef2aSThomas Huth            the low bits, but the only place I can see this used is in the
2341fcf5ef2aSThomas Huth            Linux kernel with 32 byte alignment, which would make more sense
2342fcf5ef2aSThomas Huth            as a cacheline-style operation.  */
2343fcf5ef2aSThomas Huth         {
2344fcf5ef2aSThomas Huth             TCGv saddr = tcg_temp_new();
2345fcf5ef2aSThomas Huth             TCGv daddr = tcg_temp_new();
2346fcf5ef2aSThomas Huth             TCGv four = tcg_const_tl(4);
2347fcf5ef2aSThomas Huth             TCGv_i32 tmp = tcg_temp_new_i32();
2348fcf5ef2aSThomas Huth             int i;
2349fcf5ef2aSThomas Huth 
2350fcf5ef2aSThomas Huth             tcg_gen_andi_tl(saddr, src, -4);
2351fcf5ef2aSThomas Huth             tcg_gen_andi_tl(daddr, addr, -4);
2352fcf5ef2aSThomas Huth             for (i = 0; i < 32; i += 4) {
2353fcf5ef2aSThomas Huth                 /* Since the loads and stores are paired, allow the
2354fcf5ef2aSThomas Huth                    copy to happen in the host endianness.  */
2355fcf5ef2aSThomas Huth                 tcg_gen_qemu_ld_i32(tmp, saddr, da.mem_idx, MO_UL);
2356fcf5ef2aSThomas Huth                 tcg_gen_qemu_st_i32(tmp, daddr, da.mem_idx, MO_UL);
2357fcf5ef2aSThomas Huth                 tcg_gen_add_tl(saddr, saddr, four);
2358fcf5ef2aSThomas Huth                 tcg_gen_add_tl(daddr, daddr, four);
2359fcf5ef2aSThomas Huth             }
2360fcf5ef2aSThomas Huth 
2361fcf5ef2aSThomas Huth             tcg_temp_free(saddr);
2362fcf5ef2aSThomas Huth             tcg_temp_free(daddr);
2363fcf5ef2aSThomas Huth             tcg_temp_free(four);
2364fcf5ef2aSThomas Huth             tcg_temp_free_i32(tmp);
2365fcf5ef2aSThomas Huth         }
2366fcf5ef2aSThomas Huth         break;
2367fcf5ef2aSThomas Huth #endif
2368fcf5ef2aSThomas Huth     default:
2369fcf5ef2aSThomas Huth         {
2370fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2371fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(memop & MO_SIZE);
2372fcf5ef2aSThomas Huth 
2373fcf5ef2aSThomas Huth             save_state(dc);
2374fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
2375fcf5ef2aSThomas Huth             gen_helper_st_asi(cpu_env, addr, src, r_asi, r_mop);
2376fcf5ef2aSThomas Huth #else
2377fcf5ef2aSThomas Huth             {
2378fcf5ef2aSThomas Huth                 TCGv_i64 t64 = tcg_temp_new_i64();
2379fcf5ef2aSThomas Huth                 tcg_gen_extu_tl_i64(t64, src);
2380fcf5ef2aSThomas Huth                 gen_helper_st_asi(cpu_env, addr, t64, r_asi, r_mop);
2381fcf5ef2aSThomas Huth                 tcg_temp_free_i64(t64);
2382fcf5ef2aSThomas Huth             }
2383fcf5ef2aSThomas Huth #endif
2384fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2385fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2386fcf5ef2aSThomas Huth 
2387fcf5ef2aSThomas Huth             /* A write to a TLB register may alter page maps.  End the TB. */
2388fcf5ef2aSThomas Huth             dc->npc = DYNAMIC_PC;
2389fcf5ef2aSThomas Huth         }
2390fcf5ef2aSThomas Huth         break;
2391fcf5ef2aSThomas Huth     }
2392fcf5ef2aSThomas Huth }
2393fcf5ef2aSThomas Huth 
2394fcf5ef2aSThomas Huth static void gen_swap_asi(DisasContext *dc, TCGv dst, TCGv src,
2395fcf5ef2aSThomas Huth                          TCGv addr, int insn)
2396fcf5ef2aSThomas Huth {
2397fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEUL);
2398fcf5ef2aSThomas Huth 
2399fcf5ef2aSThomas Huth     switch (da.type) {
2400fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2401fcf5ef2aSThomas Huth         break;
2402fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2403fcf5ef2aSThomas Huth         gen_swap(dc, dst, src, addr, da.mem_idx, da.memop);
2404fcf5ef2aSThomas Huth         break;
2405fcf5ef2aSThomas Huth     default:
2406fcf5ef2aSThomas Huth         /* ??? Should be DAE_invalid_asi.  */
2407fcf5ef2aSThomas Huth         gen_exception(dc, TT_DATA_ACCESS);
2408fcf5ef2aSThomas Huth         break;
2409fcf5ef2aSThomas Huth     }
2410fcf5ef2aSThomas Huth }
2411fcf5ef2aSThomas Huth 
2412fcf5ef2aSThomas Huth static void gen_cas_asi(DisasContext *dc, TCGv addr, TCGv cmpv,
2413fcf5ef2aSThomas Huth                         int insn, int rd)
2414fcf5ef2aSThomas Huth {
2415fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEUL);
2416fcf5ef2aSThomas Huth     TCGv oldv;
2417fcf5ef2aSThomas Huth 
2418fcf5ef2aSThomas Huth     switch (da.type) {
2419fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2420fcf5ef2aSThomas Huth         return;
2421fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2422fcf5ef2aSThomas Huth         oldv = tcg_temp_new();
2423fcf5ef2aSThomas Huth         tcg_gen_atomic_cmpxchg_tl(oldv, addr, cmpv, gen_load_gpr(dc, rd),
2424fcf5ef2aSThomas Huth                                   da.mem_idx, da.memop);
2425fcf5ef2aSThomas Huth         gen_store_gpr(dc, rd, oldv);
2426fcf5ef2aSThomas Huth         tcg_temp_free(oldv);
2427fcf5ef2aSThomas Huth         break;
2428fcf5ef2aSThomas Huth     default:
2429fcf5ef2aSThomas Huth         /* ??? Should be DAE_invalid_asi.  */
2430fcf5ef2aSThomas Huth         gen_exception(dc, TT_DATA_ACCESS);
2431fcf5ef2aSThomas Huth         break;
2432fcf5ef2aSThomas Huth     }
2433fcf5ef2aSThomas Huth }
2434fcf5ef2aSThomas Huth 
2435fcf5ef2aSThomas Huth static void gen_ldstub_asi(DisasContext *dc, TCGv dst, TCGv addr, int insn)
2436fcf5ef2aSThomas Huth {
2437fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_UB);
2438fcf5ef2aSThomas Huth 
2439fcf5ef2aSThomas Huth     switch (da.type) {
2440fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2441fcf5ef2aSThomas Huth         break;
2442fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2443fcf5ef2aSThomas Huth         gen_ldstub(dc, dst, addr, da.mem_idx);
2444fcf5ef2aSThomas Huth         break;
2445fcf5ef2aSThomas Huth     default:
24463db010c3SRichard Henderson         /* ??? In theory, this should be raise DAE_invalid_asi.
24473db010c3SRichard Henderson            But the SS-20 roms do ldstuba [%l0] #ASI_M_CTL, %o1.  */
24483db010c3SRichard Henderson         if (parallel_cpus) {
24493db010c3SRichard Henderson             gen_helper_exit_atomic(cpu_env);
24503db010c3SRichard Henderson         } else {
24513db010c3SRichard Henderson             TCGv_i32 r_asi = tcg_const_i32(da.asi);
24523db010c3SRichard Henderson             TCGv_i32 r_mop = tcg_const_i32(MO_UB);
24533db010c3SRichard Henderson             TCGv_i64 s64, t64;
24543db010c3SRichard Henderson 
24553db010c3SRichard Henderson             save_state(dc);
24563db010c3SRichard Henderson             t64 = tcg_temp_new_i64();
24573db010c3SRichard Henderson             gen_helper_ld_asi(t64, cpu_env, addr, r_asi, r_mop);
24583db010c3SRichard Henderson 
24593db010c3SRichard Henderson             s64 = tcg_const_i64(0xff);
24603db010c3SRichard Henderson             gen_helper_st_asi(cpu_env, addr, s64, r_asi, r_mop);
24613db010c3SRichard Henderson             tcg_temp_free_i64(s64);
24623db010c3SRichard Henderson             tcg_temp_free_i32(r_mop);
24633db010c3SRichard Henderson             tcg_temp_free_i32(r_asi);
24643db010c3SRichard Henderson 
24653db010c3SRichard Henderson             tcg_gen_trunc_i64_tl(dst, t64);
24663db010c3SRichard Henderson             tcg_temp_free_i64(t64);
24673db010c3SRichard Henderson 
24683db010c3SRichard Henderson             /* End the TB.  */
24693db010c3SRichard Henderson             dc->npc = DYNAMIC_PC;
24703db010c3SRichard Henderson         }
2471fcf5ef2aSThomas Huth         break;
2472fcf5ef2aSThomas Huth     }
2473fcf5ef2aSThomas Huth }
2474fcf5ef2aSThomas Huth #endif
2475fcf5ef2aSThomas Huth 
2476fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
2477fcf5ef2aSThomas Huth static void gen_ldf_asi(DisasContext *dc, TCGv addr,
2478fcf5ef2aSThomas Huth                         int insn, int size, int rd)
2479fcf5ef2aSThomas Huth {
2480fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, (size == 4 ? MO_TEUL : MO_TEQ));
2481fcf5ef2aSThomas Huth     TCGv_i32 d32;
2482fcf5ef2aSThomas Huth     TCGv_i64 d64;
2483fcf5ef2aSThomas Huth 
2484fcf5ef2aSThomas Huth     switch (da.type) {
2485fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2486fcf5ef2aSThomas Huth         break;
2487fcf5ef2aSThomas Huth 
2488fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2489fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2490fcf5ef2aSThomas Huth         switch (size) {
2491fcf5ef2aSThomas Huth         case 4:
2492fcf5ef2aSThomas Huth             d32 = gen_dest_fpr_F(dc);
2493fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i32(d32, addr, da.mem_idx, da.memop);
2494fcf5ef2aSThomas Huth             gen_store_fpr_F(dc, rd, d32);
2495fcf5ef2aSThomas Huth             break;
2496fcf5ef2aSThomas Huth         case 8:
2497fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i64(cpu_fpr[rd / 2], addr, da.mem_idx,
2498fcf5ef2aSThomas Huth                                 da.memop | MO_ALIGN_4);
2499fcf5ef2aSThomas Huth             break;
2500fcf5ef2aSThomas Huth         case 16:
2501fcf5ef2aSThomas Huth             d64 = tcg_temp_new_i64();
2502fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i64(d64, addr, da.mem_idx, da.memop | MO_ALIGN_4);
2503fcf5ef2aSThomas Huth             tcg_gen_addi_tl(addr, addr, 8);
2504fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i64(cpu_fpr[rd/2+1], addr, da.mem_idx,
2505fcf5ef2aSThomas Huth                                 da.memop | MO_ALIGN_4);
2506fcf5ef2aSThomas Huth             tcg_gen_mov_i64(cpu_fpr[rd / 2], d64);
2507fcf5ef2aSThomas Huth             tcg_temp_free_i64(d64);
2508fcf5ef2aSThomas Huth             break;
2509fcf5ef2aSThomas Huth         default:
2510fcf5ef2aSThomas Huth             g_assert_not_reached();
2511fcf5ef2aSThomas Huth         }
2512fcf5ef2aSThomas Huth         break;
2513fcf5ef2aSThomas Huth 
2514fcf5ef2aSThomas Huth     case GET_ASI_BLOCK:
2515fcf5ef2aSThomas Huth         /* Valid for lddfa on aligned registers only.  */
2516fcf5ef2aSThomas Huth         if (size == 8 && (rd & 7) == 0) {
2517fcf5ef2aSThomas Huth             TCGMemOp memop;
2518fcf5ef2aSThomas Huth             TCGv eight;
2519fcf5ef2aSThomas Huth             int i;
2520fcf5ef2aSThomas Huth 
2521fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2522fcf5ef2aSThomas Huth 
2523fcf5ef2aSThomas Huth             /* The first operation checks required alignment.  */
2524fcf5ef2aSThomas Huth             memop = da.memop | MO_ALIGN_64;
2525fcf5ef2aSThomas Huth             eight = tcg_const_tl(8);
2526fcf5ef2aSThomas Huth             for (i = 0; ; ++i) {
2527fcf5ef2aSThomas Huth                 tcg_gen_qemu_ld_i64(cpu_fpr[rd / 2 + i], addr,
2528fcf5ef2aSThomas Huth                                     da.mem_idx, memop);
2529fcf5ef2aSThomas Huth                 if (i == 7) {
2530fcf5ef2aSThomas Huth                     break;
2531fcf5ef2aSThomas Huth                 }
2532fcf5ef2aSThomas Huth                 tcg_gen_add_tl(addr, addr, eight);
2533fcf5ef2aSThomas Huth                 memop = da.memop;
2534fcf5ef2aSThomas Huth             }
2535fcf5ef2aSThomas Huth             tcg_temp_free(eight);
2536fcf5ef2aSThomas Huth         } else {
2537fcf5ef2aSThomas Huth             gen_exception(dc, TT_ILL_INSN);
2538fcf5ef2aSThomas Huth         }
2539fcf5ef2aSThomas Huth         break;
2540fcf5ef2aSThomas Huth 
2541fcf5ef2aSThomas Huth     case GET_ASI_SHORT:
2542fcf5ef2aSThomas Huth         /* Valid for lddfa only.  */
2543fcf5ef2aSThomas Huth         if (size == 8) {
2544fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2545fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i64(cpu_fpr[rd / 2], addr, da.mem_idx, da.memop);
2546fcf5ef2aSThomas Huth         } else {
2547fcf5ef2aSThomas Huth             gen_exception(dc, TT_ILL_INSN);
2548fcf5ef2aSThomas Huth         }
2549fcf5ef2aSThomas Huth         break;
2550fcf5ef2aSThomas Huth 
2551fcf5ef2aSThomas Huth     default:
2552fcf5ef2aSThomas Huth         {
2553fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2554fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(da.memop);
2555fcf5ef2aSThomas Huth 
2556fcf5ef2aSThomas Huth             save_state(dc);
2557fcf5ef2aSThomas Huth             /* According to the table in the UA2011 manual, the only
2558fcf5ef2aSThomas Huth                other asis that are valid for ldfa/lddfa/ldqfa are
2559fcf5ef2aSThomas Huth                the NO_FAULT asis.  We still need a helper for these,
2560fcf5ef2aSThomas Huth                but we can just use the integer asi helper for them.  */
2561fcf5ef2aSThomas Huth             switch (size) {
2562fcf5ef2aSThomas Huth             case 4:
2563fcf5ef2aSThomas Huth                 d64 = tcg_temp_new_i64();
2564fcf5ef2aSThomas Huth                 gen_helper_ld_asi(d64, cpu_env, addr, r_asi, r_mop);
2565fcf5ef2aSThomas Huth                 d32 = gen_dest_fpr_F(dc);
2566fcf5ef2aSThomas Huth                 tcg_gen_extrl_i64_i32(d32, d64);
2567fcf5ef2aSThomas Huth                 tcg_temp_free_i64(d64);
2568fcf5ef2aSThomas Huth                 gen_store_fpr_F(dc, rd, d32);
2569fcf5ef2aSThomas Huth                 break;
2570fcf5ef2aSThomas Huth             case 8:
2571fcf5ef2aSThomas Huth                 gen_helper_ld_asi(cpu_fpr[rd / 2], cpu_env, addr, r_asi, r_mop);
2572fcf5ef2aSThomas Huth                 break;
2573fcf5ef2aSThomas Huth             case 16:
2574fcf5ef2aSThomas Huth                 d64 = tcg_temp_new_i64();
2575fcf5ef2aSThomas Huth                 gen_helper_ld_asi(d64, cpu_env, addr, r_asi, r_mop);
2576fcf5ef2aSThomas Huth                 tcg_gen_addi_tl(addr, addr, 8);
2577fcf5ef2aSThomas Huth                 gen_helper_ld_asi(cpu_fpr[rd/2+1], cpu_env, addr, r_asi, r_mop);
2578fcf5ef2aSThomas Huth                 tcg_gen_mov_i64(cpu_fpr[rd / 2], d64);
2579fcf5ef2aSThomas Huth                 tcg_temp_free_i64(d64);
2580fcf5ef2aSThomas Huth                 break;
2581fcf5ef2aSThomas Huth             default:
2582fcf5ef2aSThomas Huth                 g_assert_not_reached();
2583fcf5ef2aSThomas Huth             }
2584fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2585fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2586fcf5ef2aSThomas Huth         }
2587fcf5ef2aSThomas Huth         break;
2588fcf5ef2aSThomas Huth     }
2589fcf5ef2aSThomas Huth }
2590fcf5ef2aSThomas Huth 
2591fcf5ef2aSThomas Huth static void gen_stf_asi(DisasContext *dc, TCGv addr,
2592fcf5ef2aSThomas Huth                         int insn, int size, int rd)
2593fcf5ef2aSThomas Huth {
2594fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, (size == 4 ? MO_TEUL : MO_TEQ));
2595fcf5ef2aSThomas Huth     TCGv_i32 d32;
2596fcf5ef2aSThomas Huth 
2597fcf5ef2aSThomas Huth     switch (da.type) {
2598fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2599fcf5ef2aSThomas Huth         break;
2600fcf5ef2aSThomas Huth 
2601fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2602fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2603fcf5ef2aSThomas Huth         switch (size) {
2604fcf5ef2aSThomas Huth         case 4:
2605fcf5ef2aSThomas Huth             d32 = gen_load_fpr_F(dc, rd);
2606fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i32(d32, addr, da.mem_idx, da.memop);
2607fcf5ef2aSThomas Huth             break;
2608fcf5ef2aSThomas Huth         case 8:
2609fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i64(cpu_fpr[rd / 2], addr, da.mem_idx,
2610fcf5ef2aSThomas Huth                                 da.memop | MO_ALIGN_4);
2611fcf5ef2aSThomas Huth             break;
2612fcf5ef2aSThomas Huth         case 16:
2613fcf5ef2aSThomas Huth             /* Only 4-byte alignment required.  However, it is legal for the
2614fcf5ef2aSThomas Huth                cpu to signal the alignment fault, and the OS trap handler is
2615fcf5ef2aSThomas Huth                required to fix it up.  Requiring 16-byte alignment here avoids
2616fcf5ef2aSThomas Huth                having to probe the second page before performing the first
2617fcf5ef2aSThomas Huth                write.  */
2618fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i64(cpu_fpr[rd / 2], addr, da.mem_idx,
2619fcf5ef2aSThomas Huth                                 da.memop | MO_ALIGN_16);
2620fcf5ef2aSThomas Huth             tcg_gen_addi_tl(addr, addr, 8);
2621fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i64(cpu_fpr[rd/2+1], addr, da.mem_idx, da.memop);
2622fcf5ef2aSThomas Huth             break;
2623fcf5ef2aSThomas Huth         default:
2624fcf5ef2aSThomas Huth             g_assert_not_reached();
2625fcf5ef2aSThomas Huth         }
2626fcf5ef2aSThomas Huth         break;
2627fcf5ef2aSThomas Huth 
2628fcf5ef2aSThomas Huth     case GET_ASI_BLOCK:
2629fcf5ef2aSThomas Huth         /* Valid for stdfa on aligned registers only.  */
2630fcf5ef2aSThomas Huth         if (size == 8 && (rd & 7) == 0) {
2631fcf5ef2aSThomas Huth             TCGMemOp memop;
2632fcf5ef2aSThomas Huth             TCGv eight;
2633fcf5ef2aSThomas Huth             int i;
2634fcf5ef2aSThomas Huth 
2635fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2636fcf5ef2aSThomas Huth 
2637fcf5ef2aSThomas Huth             /* The first operation checks required alignment.  */
2638fcf5ef2aSThomas Huth             memop = da.memop | MO_ALIGN_64;
2639fcf5ef2aSThomas Huth             eight = tcg_const_tl(8);
2640fcf5ef2aSThomas Huth             for (i = 0; ; ++i) {
2641fcf5ef2aSThomas Huth                 tcg_gen_qemu_st_i64(cpu_fpr[rd / 2 + i], addr,
2642fcf5ef2aSThomas Huth                                     da.mem_idx, memop);
2643fcf5ef2aSThomas Huth                 if (i == 7) {
2644fcf5ef2aSThomas Huth                     break;
2645fcf5ef2aSThomas Huth                 }
2646fcf5ef2aSThomas Huth                 tcg_gen_add_tl(addr, addr, eight);
2647fcf5ef2aSThomas Huth                 memop = da.memop;
2648fcf5ef2aSThomas Huth             }
2649fcf5ef2aSThomas Huth             tcg_temp_free(eight);
2650fcf5ef2aSThomas Huth         } else {
2651fcf5ef2aSThomas Huth             gen_exception(dc, TT_ILL_INSN);
2652fcf5ef2aSThomas Huth         }
2653fcf5ef2aSThomas Huth         break;
2654fcf5ef2aSThomas Huth 
2655fcf5ef2aSThomas Huth     case GET_ASI_SHORT:
2656fcf5ef2aSThomas Huth         /* Valid for stdfa only.  */
2657fcf5ef2aSThomas Huth         if (size == 8) {
2658fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2659fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i64(cpu_fpr[rd / 2], addr, da.mem_idx, da.memop);
2660fcf5ef2aSThomas Huth         } else {
2661fcf5ef2aSThomas Huth             gen_exception(dc, TT_ILL_INSN);
2662fcf5ef2aSThomas Huth         }
2663fcf5ef2aSThomas Huth         break;
2664fcf5ef2aSThomas Huth 
2665fcf5ef2aSThomas Huth     default:
2666fcf5ef2aSThomas Huth         /* According to the table in the UA2011 manual, the only
2667fcf5ef2aSThomas Huth            other asis that are valid for ldfa/lddfa/ldqfa are
2668fcf5ef2aSThomas Huth            the PST* asis, which aren't currently handled.  */
2669fcf5ef2aSThomas Huth         gen_exception(dc, TT_ILL_INSN);
2670fcf5ef2aSThomas Huth         break;
2671fcf5ef2aSThomas Huth     }
2672fcf5ef2aSThomas Huth }
2673fcf5ef2aSThomas Huth 
2674fcf5ef2aSThomas Huth static void gen_ldda_asi(DisasContext *dc, TCGv addr, int insn, int rd)
2675fcf5ef2aSThomas Huth {
2676fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEQ);
2677fcf5ef2aSThomas Huth     TCGv_i64 hi = gen_dest_gpr(dc, rd);
2678fcf5ef2aSThomas Huth     TCGv_i64 lo = gen_dest_gpr(dc, rd + 1);
2679fcf5ef2aSThomas Huth 
2680fcf5ef2aSThomas Huth     switch (da.type) {
2681fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2682fcf5ef2aSThomas Huth         return;
2683fcf5ef2aSThomas Huth 
2684fcf5ef2aSThomas Huth     case GET_ASI_DTWINX:
2685fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2686fcf5ef2aSThomas Huth         tcg_gen_qemu_ld_i64(hi, addr, da.mem_idx, da.memop | MO_ALIGN_16);
2687fcf5ef2aSThomas Huth         tcg_gen_addi_tl(addr, addr, 8);
2688fcf5ef2aSThomas Huth         tcg_gen_qemu_ld_i64(lo, addr, da.mem_idx, da.memop);
2689fcf5ef2aSThomas Huth         break;
2690fcf5ef2aSThomas Huth 
2691fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2692fcf5ef2aSThomas Huth         {
2693fcf5ef2aSThomas Huth             TCGv_i64 tmp = tcg_temp_new_i64();
2694fcf5ef2aSThomas Huth 
2695fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2696fcf5ef2aSThomas Huth             tcg_gen_qemu_ld_i64(tmp, addr, da.mem_idx, da.memop);
2697fcf5ef2aSThomas Huth 
2698fcf5ef2aSThomas Huth             /* Note that LE ldda acts as if each 32-bit register
2699fcf5ef2aSThomas Huth                result is byte swapped.  Having just performed one
2700fcf5ef2aSThomas Huth                64-bit bswap, we need now to swap the writebacks.  */
2701fcf5ef2aSThomas Huth             if ((da.memop & MO_BSWAP) == MO_TE) {
2702fcf5ef2aSThomas Huth                 tcg_gen_extr32_i64(lo, hi, tmp);
2703fcf5ef2aSThomas Huth             } else {
2704fcf5ef2aSThomas Huth                 tcg_gen_extr32_i64(hi, lo, tmp);
2705fcf5ef2aSThomas Huth             }
2706fcf5ef2aSThomas Huth             tcg_temp_free_i64(tmp);
2707fcf5ef2aSThomas Huth         }
2708fcf5ef2aSThomas Huth         break;
2709fcf5ef2aSThomas Huth 
2710fcf5ef2aSThomas Huth     default:
2711fcf5ef2aSThomas Huth         /* ??? In theory we've handled all of the ASIs that are valid
2712fcf5ef2aSThomas Huth            for ldda, and this should raise DAE_invalid_asi.  However,
2713fcf5ef2aSThomas Huth            real hardware allows others.  This can be seen with e.g.
2714fcf5ef2aSThomas Huth            FreeBSD 10.3 wrt ASI_IC_TAG.  */
2715fcf5ef2aSThomas Huth         {
2716fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2717fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(da.memop);
2718fcf5ef2aSThomas Huth             TCGv_i64 tmp = tcg_temp_new_i64();
2719fcf5ef2aSThomas Huth 
2720fcf5ef2aSThomas Huth             save_state(dc);
2721fcf5ef2aSThomas Huth             gen_helper_ld_asi(tmp, cpu_env, addr, r_asi, r_mop);
2722fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2723fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2724fcf5ef2aSThomas Huth 
2725fcf5ef2aSThomas Huth             /* See above.  */
2726fcf5ef2aSThomas Huth             if ((da.memop & MO_BSWAP) == MO_TE) {
2727fcf5ef2aSThomas Huth                 tcg_gen_extr32_i64(lo, hi, tmp);
2728fcf5ef2aSThomas Huth             } else {
2729fcf5ef2aSThomas Huth                 tcg_gen_extr32_i64(hi, lo, tmp);
2730fcf5ef2aSThomas Huth             }
2731fcf5ef2aSThomas Huth             tcg_temp_free_i64(tmp);
2732fcf5ef2aSThomas Huth         }
2733fcf5ef2aSThomas Huth         break;
2734fcf5ef2aSThomas Huth     }
2735fcf5ef2aSThomas Huth 
2736fcf5ef2aSThomas Huth     gen_store_gpr(dc, rd, hi);
2737fcf5ef2aSThomas Huth     gen_store_gpr(dc, rd + 1, lo);
2738fcf5ef2aSThomas Huth }
2739fcf5ef2aSThomas Huth 
2740fcf5ef2aSThomas Huth static void gen_stda_asi(DisasContext *dc, TCGv hi, TCGv addr,
2741fcf5ef2aSThomas Huth                          int insn, int rd)
2742fcf5ef2aSThomas Huth {
2743fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEQ);
2744fcf5ef2aSThomas Huth     TCGv lo = gen_load_gpr(dc, rd + 1);
2745fcf5ef2aSThomas Huth 
2746fcf5ef2aSThomas Huth     switch (da.type) {
2747fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2748fcf5ef2aSThomas Huth         break;
2749fcf5ef2aSThomas Huth 
2750fcf5ef2aSThomas Huth     case GET_ASI_DTWINX:
2751fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2752fcf5ef2aSThomas Huth         tcg_gen_qemu_st_i64(hi, addr, da.mem_idx, da.memop | MO_ALIGN_16);
2753fcf5ef2aSThomas Huth         tcg_gen_addi_tl(addr, addr, 8);
2754fcf5ef2aSThomas Huth         tcg_gen_qemu_st_i64(lo, addr, da.mem_idx, da.memop);
2755fcf5ef2aSThomas Huth         break;
2756fcf5ef2aSThomas Huth 
2757fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2758fcf5ef2aSThomas Huth         {
2759fcf5ef2aSThomas Huth             TCGv_i64 t64 = tcg_temp_new_i64();
2760fcf5ef2aSThomas Huth 
2761fcf5ef2aSThomas Huth             /* Note that LE stda acts as if each 32-bit register result is
2762fcf5ef2aSThomas Huth                byte swapped.  We will perform one 64-bit LE store, so now
2763fcf5ef2aSThomas Huth                we must swap the order of the construction.  */
2764fcf5ef2aSThomas Huth             if ((da.memop & MO_BSWAP) == MO_TE) {
2765fcf5ef2aSThomas Huth                 tcg_gen_concat32_i64(t64, lo, hi);
2766fcf5ef2aSThomas Huth             } else {
2767fcf5ef2aSThomas Huth                 tcg_gen_concat32_i64(t64, hi, lo);
2768fcf5ef2aSThomas Huth             }
2769fcf5ef2aSThomas Huth             gen_address_mask(dc, addr);
2770fcf5ef2aSThomas Huth             tcg_gen_qemu_st_i64(t64, addr, da.mem_idx, da.memop);
2771fcf5ef2aSThomas Huth             tcg_temp_free_i64(t64);
2772fcf5ef2aSThomas Huth         }
2773fcf5ef2aSThomas Huth         break;
2774fcf5ef2aSThomas Huth 
2775fcf5ef2aSThomas Huth     default:
2776fcf5ef2aSThomas Huth         /* ??? In theory we've handled all of the ASIs that are valid
2777fcf5ef2aSThomas Huth            for stda, and this should raise DAE_invalid_asi.  */
2778fcf5ef2aSThomas Huth         {
2779fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2780fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(da.memop);
2781fcf5ef2aSThomas Huth             TCGv_i64 t64 = tcg_temp_new_i64();
2782fcf5ef2aSThomas Huth 
2783fcf5ef2aSThomas Huth             /* See above.  */
2784fcf5ef2aSThomas Huth             if ((da.memop & MO_BSWAP) == MO_TE) {
2785fcf5ef2aSThomas Huth                 tcg_gen_concat32_i64(t64, lo, hi);
2786fcf5ef2aSThomas Huth             } else {
2787fcf5ef2aSThomas Huth                 tcg_gen_concat32_i64(t64, hi, lo);
2788fcf5ef2aSThomas Huth             }
2789fcf5ef2aSThomas Huth 
2790fcf5ef2aSThomas Huth             save_state(dc);
2791fcf5ef2aSThomas Huth             gen_helper_st_asi(cpu_env, addr, t64, r_asi, r_mop);
2792fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2793fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2794fcf5ef2aSThomas Huth             tcg_temp_free_i64(t64);
2795fcf5ef2aSThomas Huth         }
2796fcf5ef2aSThomas Huth         break;
2797fcf5ef2aSThomas Huth     }
2798fcf5ef2aSThomas Huth }
2799fcf5ef2aSThomas Huth 
2800fcf5ef2aSThomas Huth static void gen_casx_asi(DisasContext *dc, TCGv addr, TCGv cmpv,
2801fcf5ef2aSThomas Huth                          int insn, int rd)
2802fcf5ef2aSThomas Huth {
2803fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEQ);
2804fcf5ef2aSThomas Huth     TCGv oldv;
2805fcf5ef2aSThomas Huth 
2806fcf5ef2aSThomas Huth     switch (da.type) {
2807fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2808fcf5ef2aSThomas Huth         return;
2809fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2810fcf5ef2aSThomas Huth         oldv = tcg_temp_new();
2811fcf5ef2aSThomas Huth         tcg_gen_atomic_cmpxchg_tl(oldv, addr, cmpv, gen_load_gpr(dc, rd),
2812fcf5ef2aSThomas Huth                                   da.mem_idx, da.memop);
2813fcf5ef2aSThomas Huth         gen_store_gpr(dc, rd, oldv);
2814fcf5ef2aSThomas Huth         tcg_temp_free(oldv);
2815fcf5ef2aSThomas Huth         break;
2816fcf5ef2aSThomas Huth     default:
2817fcf5ef2aSThomas Huth         /* ??? Should be DAE_invalid_asi.  */
2818fcf5ef2aSThomas Huth         gen_exception(dc, TT_DATA_ACCESS);
2819fcf5ef2aSThomas Huth         break;
2820fcf5ef2aSThomas Huth     }
2821fcf5ef2aSThomas Huth }
2822fcf5ef2aSThomas Huth 
2823fcf5ef2aSThomas Huth #elif !defined(CONFIG_USER_ONLY)
2824fcf5ef2aSThomas Huth static void gen_ldda_asi(DisasContext *dc, TCGv addr, int insn, int rd)
2825fcf5ef2aSThomas Huth {
2826fcf5ef2aSThomas Huth     /* ??? Work around an apparent bug in Ubuntu gcc 4.8.2-10ubuntu2+12,
2827fcf5ef2aSThomas Huth        whereby "rd + 1" elicits "error: array subscript is above array".
2828fcf5ef2aSThomas Huth        Since we have already asserted that rd is even, the semantics
2829fcf5ef2aSThomas Huth        are unchanged.  */
2830fcf5ef2aSThomas Huth     TCGv lo = gen_dest_gpr(dc, rd | 1);
2831fcf5ef2aSThomas Huth     TCGv hi = gen_dest_gpr(dc, rd);
2832fcf5ef2aSThomas Huth     TCGv_i64 t64 = tcg_temp_new_i64();
2833fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEQ);
2834fcf5ef2aSThomas Huth 
2835fcf5ef2aSThomas Huth     switch (da.type) {
2836fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2837fcf5ef2aSThomas Huth         tcg_temp_free_i64(t64);
2838fcf5ef2aSThomas Huth         return;
2839fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2840fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2841fcf5ef2aSThomas Huth         tcg_gen_qemu_ld_i64(t64, addr, da.mem_idx, da.memop);
2842fcf5ef2aSThomas Huth         break;
2843fcf5ef2aSThomas Huth     default:
2844fcf5ef2aSThomas Huth         {
2845fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2846fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(MO_Q);
2847fcf5ef2aSThomas Huth 
2848fcf5ef2aSThomas Huth             save_state(dc);
2849fcf5ef2aSThomas Huth             gen_helper_ld_asi(t64, cpu_env, addr, r_asi, r_mop);
2850fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2851fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2852fcf5ef2aSThomas Huth         }
2853fcf5ef2aSThomas Huth         break;
2854fcf5ef2aSThomas Huth     }
2855fcf5ef2aSThomas Huth 
2856fcf5ef2aSThomas Huth     tcg_gen_extr_i64_i32(lo, hi, t64);
2857fcf5ef2aSThomas Huth     tcg_temp_free_i64(t64);
2858fcf5ef2aSThomas Huth     gen_store_gpr(dc, rd | 1, lo);
2859fcf5ef2aSThomas Huth     gen_store_gpr(dc, rd, hi);
2860fcf5ef2aSThomas Huth }
2861fcf5ef2aSThomas Huth 
2862fcf5ef2aSThomas Huth static void gen_stda_asi(DisasContext *dc, TCGv hi, TCGv addr,
2863fcf5ef2aSThomas Huth                          int insn, int rd)
2864fcf5ef2aSThomas Huth {
2865fcf5ef2aSThomas Huth     DisasASI da = get_asi(dc, insn, MO_TEQ);
2866fcf5ef2aSThomas Huth     TCGv lo = gen_load_gpr(dc, rd + 1);
2867fcf5ef2aSThomas Huth     TCGv_i64 t64 = tcg_temp_new_i64();
2868fcf5ef2aSThomas Huth 
2869fcf5ef2aSThomas Huth     tcg_gen_concat_tl_i64(t64, lo, hi);
2870fcf5ef2aSThomas Huth 
2871fcf5ef2aSThomas Huth     switch (da.type) {
2872fcf5ef2aSThomas Huth     case GET_ASI_EXCP:
2873fcf5ef2aSThomas Huth         break;
2874fcf5ef2aSThomas Huth     case GET_ASI_DIRECT:
2875fcf5ef2aSThomas Huth         gen_address_mask(dc, addr);
2876fcf5ef2aSThomas Huth         tcg_gen_qemu_st_i64(t64, addr, da.mem_idx, da.memop);
2877fcf5ef2aSThomas Huth         break;
2878fcf5ef2aSThomas Huth     case GET_ASI_BFILL:
2879fcf5ef2aSThomas Huth         /* Store 32 bytes of T64 to ADDR.  */
2880fcf5ef2aSThomas Huth         /* ??? The original qemu code suggests 8-byte alignment, dropping
2881fcf5ef2aSThomas Huth            the low bits, but the only place I can see this used is in the
2882fcf5ef2aSThomas Huth            Linux kernel with 32 byte alignment, which would make more sense
2883fcf5ef2aSThomas Huth            as a cacheline-style operation.  */
2884fcf5ef2aSThomas Huth         {
2885fcf5ef2aSThomas Huth             TCGv d_addr = tcg_temp_new();
2886fcf5ef2aSThomas Huth             TCGv eight = tcg_const_tl(8);
2887fcf5ef2aSThomas Huth             int i;
2888fcf5ef2aSThomas Huth 
2889fcf5ef2aSThomas Huth             tcg_gen_andi_tl(d_addr, addr, -8);
2890fcf5ef2aSThomas Huth             for (i = 0; i < 32; i += 8) {
2891fcf5ef2aSThomas Huth                 tcg_gen_qemu_st_i64(t64, d_addr, da.mem_idx, da.memop);
2892fcf5ef2aSThomas Huth                 tcg_gen_add_tl(d_addr, d_addr, eight);
2893fcf5ef2aSThomas Huth             }
2894fcf5ef2aSThomas Huth 
2895fcf5ef2aSThomas Huth             tcg_temp_free(d_addr);
2896fcf5ef2aSThomas Huth             tcg_temp_free(eight);
2897fcf5ef2aSThomas Huth         }
2898fcf5ef2aSThomas Huth         break;
2899fcf5ef2aSThomas Huth     default:
2900fcf5ef2aSThomas Huth         {
2901fcf5ef2aSThomas Huth             TCGv_i32 r_asi = tcg_const_i32(da.asi);
2902fcf5ef2aSThomas Huth             TCGv_i32 r_mop = tcg_const_i32(MO_Q);
2903fcf5ef2aSThomas Huth 
2904fcf5ef2aSThomas Huth             save_state(dc);
2905fcf5ef2aSThomas Huth             gen_helper_st_asi(cpu_env, addr, t64, r_asi, r_mop);
2906fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_mop);
2907fcf5ef2aSThomas Huth             tcg_temp_free_i32(r_asi);
2908fcf5ef2aSThomas Huth         }
2909fcf5ef2aSThomas Huth         break;
2910fcf5ef2aSThomas Huth     }
2911fcf5ef2aSThomas Huth 
2912fcf5ef2aSThomas Huth     tcg_temp_free_i64(t64);
2913fcf5ef2aSThomas Huth }
2914fcf5ef2aSThomas Huth #endif
2915fcf5ef2aSThomas Huth 
2916fcf5ef2aSThomas Huth static TCGv get_src1(DisasContext *dc, unsigned int insn)
2917fcf5ef2aSThomas Huth {
2918fcf5ef2aSThomas Huth     unsigned int rs1 = GET_FIELD(insn, 13, 17);
2919fcf5ef2aSThomas Huth     return gen_load_gpr(dc, rs1);
2920fcf5ef2aSThomas Huth }
2921fcf5ef2aSThomas Huth 
2922fcf5ef2aSThomas Huth static TCGv get_src2(DisasContext *dc, unsigned int insn)
2923fcf5ef2aSThomas Huth {
2924fcf5ef2aSThomas Huth     if (IS_IMM) { /* immediate */
2925fcf5ef2aSThomas Huth         target_long simm = GET_FIELDs(insn, 19, 31);
2926fcf5ef2aSThomas Huth         TCGv t = get_temp_tl(dc);
2927fcf5ef2aSThomas Huth         tcg_gen_movi_tl(t, simm);
2928fcf5ef2aSThomas Huth         return t;
2929fcf5ef2aSThomas Huth     } else {      /* register */
2930fcf5ef2aSThomas Huth         unsigned int rs2 = GET_FIELD(insn, 27, 31);
2931fcf5ef2aSThomas Huth         return gen_load_gpr(dc, rs2);
2932fcf5ef2aSThomas Huth     }
2933fcf5ef2aSThomas Huth }
2934fcf5ef2aSThomas Huth 
2935fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
2936fcf5ef2aSThomas Huth static void gen_fmovs(DisasContext *dc, DisasCompare *cmp, int rd, int rs)
2937fcf5ef2aSThomas Huth {
2938fcf5ef2aSThomas Huth     TCGv_i32 c32, zero, dst, s1, s2;
2939fcf5ef2aSThomas Huth 
2940fcf5ef2aSThomas Huth     /* We have two choices here: extend the 32 bit data and use movcond_i64,
2941fcf5ef2aSThomas Huth        or fold the comparison down to 32 bits and use movcond_i32.  Choose
2942fcf5ef2aSThomas Huth        the later.  */
2943fcf5ef2aSThomas Huth     c32 = tcg_temp_new_i32();
2944fcf5ef2aSThomas Huth     if (cmp->is_bool) {
2945fcf5ef2aSThomas Huth         tcg_gen_extrl_i64_i32(c32, cmp->c1);
2946fcf5ef2aSThomas Huth     } else {
2947fcf5ef2aSThomas Huth         TCGv_i64 c64 = tcg_temp_new_i64();
2948fcf5ef2aSThomas Huth         tcg_gen_setcond_i64(cmp->cond, c64, cmp->c1, cmp->c2);
2949fcf5ef2aSThomas Huth         tcg_gen_extrl_i64_i32(c32, c64);
2950fcf5ef2aSThomas Huth         tcg_temp_free_i64(c64);
2951fcf5ef2aSThomas Huth     }
2952fcf5ef2aSThomas Huth 
2953fcf5ef2aSThomas Huth     s1 = gen_load_fpr_F(dc, rs);
2954fcf5ef2aSThomas Huth     s2 = gen_load_fpr_F(dc, rd);
2955fcf5ef2aSThomas Huth     dst = gen_dest_fpr_F(dc);
2956fcf5ef2aSThomas Huth     zero = tcg_const_i32(0);
2957fcf5ef2aSThomas Huth 
2958fcf5ef2aSThomas Huth     tcg_gen_movcond_i32(TCG_COND_NE, dst, c32, zero, s1, s2);
2959fcf5ef2aSThomas Huth 
2960fcf5ef2aSThomas Huth     tcg_temp_free_i32(c32);
2961fcf5ef2aSThomas Huth     tcg_temp_free_i32(zero);
2962fcf5ef2aSThomas Huth     gen_store_fpr_F(dc, rd, dst);
2963fcf5ef2aSThomas Huth }
2964fcf5ef2aSThomas Huth 
2965fcf5ef2aSThomas Huth static void gen_fmovd(DisasContext *dc, DisasCompare *cmp, int rd, int rs)
2966fcf5ef2aSThomas Huth {
2967fcf5ef2aSThomas Huth     TCGv_i64 dst = gen_dest_fpr_D(dc, rd);
2968fcf5ef2aSThomas Huth     tcg_gen_movcond_i64(cmp->cond, dst, cmp->c1, cmp->c2,
2969fcf5ef2aSThomas Huth                         gen_load_fpr_D(dc, rs),
2970fcf5ef2aSThomas Huth                         gen_load_fpr_D(dc, rd));
2971fcf5ef2aSThomas Huth     gen_store_fpr_D(dc, rd, dst);
2972fcf5ef2aSThomas Huth }
2973fcf5ef2aSThomas Huth 
2974fcf5ef2aSThomas Huth static void gen_fmovq(DisasContext *dc, DisasCompare *cmp, int rd, int rs)
2975fcf5ef2aSThomas Huth {
2976fcf5ef2aSThomas Huth     int qd = QFPREG(rd);
2977fcf5ef2aSThomas Huth     int qs = QFPREG(rs);
2978fcf5ef2aSThomas Huth 
2979fcf5ef2aSThomas Huth     tcg_gen_movcond_i64(cmp->cond, cpu_fpr[qd / 2], cmp->c1, cmp->c2,
2980fcf5ef2aSThomas Huth                         cpu_fpr[qs / 2], cpu_fpr[qd / 2]);
2981fcf5ef2aSThomas Huth     tcg_gen_movcond_i64(cmp->cond, cpu_fpr[qd / 2 + 1], cmp->c1, cmp->c2,
2982fcf5ef2aSThomas Huth                         cpu_fpr[qs / 2 + 1], cpu_fpr[qd / 2 + 1]);
2983fcf5ef2aSThomas Huth 
2984fcf5ef2aSThomas Huth     gen_update_fprs_dirty(dc, qd);
2985fcf5ef2aSThomas Huth }
2986fcf5ef2aSThomas Huth 
2987fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
2988fcf5ef2aSThomas Huth static inline void gen_load_trap_state_at_tl(TCGv_ptr r_tsptr, TCGv_env cpu_env)
2989fcf5ef2aSThomas Huth {
2990fcf5ef2aSThomas Huth     TCGv_i32 r_tl = tcg_temp_new_i32();
2991fcf5ef2aSThomas Huth 
2992fcf5ef2aSThomas Huth     /* load env->tl into r_tl */
2993fcf5ef2aSThomas Huth     tcg_gen_ld_i32(r_tl, cpu_env, offsetof(CPUSPARCState, tl));
2994fcf5ef2aSThomas Huth 
2995fcf5ef2aSThomas Huth     /* tl = [0 ... MAXTL_MASK] where MAXTL_MASK must be power of 2 */
2996fcf5ef2aSThomas Huth     tcg_gen_andi_i32(r_tl, r_tl, MAXTL_MASK);
2997fcf5ef2aSThomas Huth 
2998fcf5ef2aSThomas Huth     /* calculate offset to current trap state from env->ts, reuse r_tl */
2999fcf5ef2aSThomas Huth     tcg_gen_muli_i32(r_tl, r_tl, sizeof (trap_state));
3000fcf5ef2aSThomas Huth     tcg_gen_addi_ptr(r_tsptr, cpu_env, offsetof(CPUSPARCState, ts));
3001fcf5ef2aSThomas Huth 
3002fcf5ef2aSThomas Huth     /* tsptr = env->ts[env->tl & MAXTL_MASK] */
3003fcf5ef2aSThomas Huth     {
3004fcf5ef2aSThomas Huth         TCGv_ptr r_tl_tmp = tcg_temp_new_ptr();
3005fcf5ef2aSThomas Huth         tcg_gen_ext_i32_ptr(r_tl_tmp, r_tl);
3006fcf5ef2aSThomas Huth         tcg_gen_add_ptr(r_tsptr, r_tsptr, r_tl_tmp);
3007fcf5ef2aSThomas Huth         tcg_temp_free_ptr(r_tl_tmp);
3008fcf5ef2aSThomas Huth     }
3009fcf5ef2aSThomas Huth 
3010fcf5ef2aSThomas Huth     tcg_temp_free_i32(r_tl);
3011fcf5ef2aSThomas Huth }
3012fcf5ef2aSThomas Huth #endif
3013fcf5ef2aSThomas Huth 
3014fcf5ef2aSThomas Huth static void gen_edge(DisasContext *dc, TCGv dst, TCGv s1, TCGv s2,
3015fcf5ef2aSThomas Huth                      int width, bool cc, bool left)
3016fcf5ef2aSThomas Huth {
3017fcf5ef2aSThomas Huth     TCGv lo1, lo2, t1, t2;
3018fcf5ef2aSThomas Huth     uint64_t amask, tabl, tabr;
3019fcf5ef2aSThomas Huth     int shift, imask, omask;
3020fcf5ef2aSThomas Huth 
3021fcf5ef2aSThomas Huth     if (cc) {
3022fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src, s1);
3023fcf5ef2aSThomas Huth         tcg_gen_mov_tl(cpu_cc_src2, s2);
3024fcf5ef2aSThomas Huth         tcg_gen_sub_tl(cpu_cc_dst, s1, s2);
3025fcf5ef2aSThomas Huth         tcg_gen_movi_i32(cpu_cc_op, CC_OP_SUB);
3026fcf5ef2aSThomas Huth         dc->cc_op = CC_OP_SUB;
3027fcf5ef2aSThomas Huth     }
3028fcf5ef2aSThomas Huth 
3029fcf5ef2aSThomas Huth     /* Theory of operation: there are two tables, left and right (not to
3030fcf5ef2aSThomas Huth        be confused with the left and right versions of the opcode).  These
3031fcf5ef2aSThomas Huth        are indexed by the low 3 bits of the inputs.  To make things "easy",
3032fcf5ef2aSThomas Huth        these tables are loaded into two constants, TABL and TABR below.
3033fcf5ef2aSThomas Huth        The operation index = (input & imask) << shift calculates the index
3034fcf5ef2aSThomas Huth        into the constant, while val = (table >> index) & omask calculates
3035fcf5ef2aSThomas Huth        the value we're looking for.  */
3036fcf5ef2aSThomas Huth     switch (width) {
3037fcf5ef2aSThomas Huth     case 8:
3038fcf5ef2aSThomas Huth         imask = 0x7;
3039fcf5ef2aSThomas Huth         shift = 3;
3040fcf5ef2aSThomas Huth         omask = 0xff;
3041fcf5ef2aSThomas Huth         if (left) {
3042fcf5ef2aSThomas Huth             tabl = 0x80c0e0f0f8fcfeffULL;
3043fcf5ef2aSThomas Huth             tabr = 0xff7f3f1f0f070301ULL;
3044fcf5ef2aSThomas Huth         } else {
3045fcf5ef2aSThomas Huth             tabl = 0x0103070f1f3f7fffULL;
3046fcf5ef2aSThomas Huth             tabr = 0xfffefcf8f0e0c080ULL;
3047fcf5ef2aSThomas Huth         }
3048fcf5ef2aSThomas Huth         break;
3049fcf5ef2aSThomas Huth     case 16:
3050fcf5ef2aSThomas Huth         imask = 0x6;
3051fcf5ef2aSThomas Huth         shift = 1;
3052fcf5ef2aSThomas Huth         omask = 0xf;
3053fcf5ef2aSThomas Huth         if (left) {
3054fcf5ef2aSThomas Huth             tabl = 0x8cef;
3055fcf5ef2aSThomas Huth             tabr = 0xf731;
3056fcf5ef2aSThomas Huth         } else {
3057fcf5ef2aSThomas Huth             tabl = 0x137f;
3058fcf5ef2aSThomas Huth             tabr = 0xfec8;
3059fcf5ef2aSThomas Huth         }
3060fcf5ef2aSThomas Huth         break;
3061fcf5ef2aSThomas Huth     case 32:
3062fcf5ef2aSThomas Huth         imask = 0x4;
3063fcf5ef2aSThomas Huth         shift = 0;
3064fcf5ef2aSThomas Huth         omask = 0x3;
3065fcf5ef2aSThomas Huth         if (left) {
3066fcf5ef2aSThomas Huth             tabl = (2 << 2) | 3;
3067fcf5ef2aSThomas Huth             tabr = (3 << 2) | 1;
3068fcf5ef2aSThomas Huth         } else {
3069fcf5ef2aSThomas Huth             tabl = (1 << 2) | 3;
3070fcf5ef2aSThomas Huth             tabr = (3 << 2) | 2;
3071fcf5ef2aSThomas Huth         }
3072fcf5ef2aSThomas Huth         break;
3073fcf5ef2aSThomas Huth     default:
3074fcf5ef2aSThomas Huth         abort();
3075fcf5ef2aSThomas Huth     }
3076fcf5ef2aSThomas Huth 
3077fcf5ef2aSThomas Huth     lo1 = tcg_temp_new();
3078fcf5ef2aSThomas Huth     lo2 = tcg_temp_new();
3079fcf5ef2aSThomas Huth     tcg_gen_andi_tl(lo1, s1, imask);
3080fcf5ef2aSThomas Huth     tcg_gen_andi_tl(lo2, s2, imask);
3081fcf5ef2aSThomas Huth     tcg_gen_shli_tl(lo1, lo1, shift);
3082fcf5ef2aSThomas Huth     tcg_gen_shli_tl(lo2, lo2, shift);
3083fcf5ef2aSThomas Huth 
3084fcf5ef2aSThomas Huth     t1 = tcg_const_tl(tabl);
3085fcf5ef2aSThomas Huth     t2 = tcg_const_tl(tabr);
3086fcf5ef2aSThomas Huth     tcg_gen_shr_tl(lo1, t1, lo1);
3087fcf5ef2aSThomas Huth     tcg_gen_shr_tl(lo2, t2, lo2);
3088fcf5ef2aSThomas Huth     tcg_gen_andi_tl(dst, lo1, omask);
3089fcf5ef2aSThomas Huth     tcg_gen_andi_tl(lo2, lo2, omask);
3090fcf5ef2aSThomas Huth 
3091fcf5ef2aSThomas Huth     amask = -8;
3092fcf5ef2aSThomas Huth     if (AM_CHECK(dc)) {
3093fcf5ef2aSThomas Huth         amask &= 0xffffffffULL;
3094fcf5ef2aSThomas Huth     }
3095fcf5ef2aSThomas Huth     tcg_gen_andi_tl(s1, s1, amask);
3096fcf5ef2aSThomas Huth     tcg_gen_andi_tl(s2, s2, amask);
3097fcf5ef2aSThomas Huth 
3098fcf5ef2aSThomas Huth     /* We want to compute
3099fcf5ef2aSThomas Huth         dst = (s1 == s2 ? lo1 : lo1 & lo2).
3100fcf5ef2aSThomas Huth        We've already done dst = lo1, so this reduces to
3101fcf5ef2aSThomas Huth         dst &= (s1 == s2 ? -1 : lo2)
3102fcf5ef2aSThomas Huth        Which we perform by
3103fcf5ef2aSThomas Huth         lo2 |= -(s1 == s2)
3104fcf5ef2aSThomas Huth         dst &= lo2
3105fcf5ef2aSThomas Huth     */
3106fcf5ef2aSThomas Huth     tcg_gen_setcond_tl(TCG_COND_EQ, t1, s1, s2);
3107fcf5ef2aSThomas Huth     tcg_gen_neg_tl(t1, t1);
3108fcf5ef2aSThomas Huth     tcg_gen_or_tl(lo2, lo2, t1);
3109fcf5ef2aSThomas Huth     tcg_gen_and_tl(dst, dst, lo2);
3110fcf5ef2aSThomas Huth 
3111fcf5ef2aSThomas Huth     tcg_temp_free(lo1);
3112fcf5ef2aSThomas Huth     tcg_temp_free(lo2);
3113fcf5ef2aSThomas Huth     tcg_temp_free(t1);
3114fcf5ef2aSThomas Huth     tcg_temp_free(t2);
3115fcf5ef2aSThomas Huth }
3116fcf5ef2aSThomas Huth 
3117fcf5ef2aSThomas Huth static void gen_alignaddr(TCGv dst, TCGv s1, TCGv s2, bool left)
3118fcf5ef2aSThomas Huth {
3119fcf5ef2aSThomas Huth     TCGv tmp = tcg_temp_new();
3120fcf5ef2aSThomas Huth 
3121fcf5ef2aSThomas Huth     tcg_gen_add_tl(tmp, s1, s2);
3122fcf5ef2aSThomas Huth     tcg_gen_andi_tl(dst, tmp, -8);
3123fcf5ef2aSThomas Huth     if (left) {
3124fcf5ef2aSThomas Huth         tcg_gen_neg_tl(tmp, tmp);
3125fcf5ef2aSThomas Huth     }
3126fcf5ef2aSThomas Huth     tcg_gen_deposit_tl(cpu_gsr, cpu_gsr, tmp, 0, 3);
3127fcf5ef2aSThomas Huth 
3128fcf5ef2aSThomas Huth     tcg_temp_free(tmp);
3129fcf5ef2aSThomas Huth }
3130fcf5ef2aSThomas Huth 
3131fcf5ef2aSThomas Huth static void gen_faligndata(TCGv dst, TCGv gsr, TCGv s1, TCGv s2)
3132fcf5ef2aSThomas Huth {
3133fcf5ef2aSThomas Huth     TCGv t1, t2, shift;
3134fcf5ef2aSThomas Huth 
3135fcf5ef2aSThomas Huth     t1 = tcg_temp_new();
3136fcf5ef2aSThomas Huth     t2 = tcg_temp_new();
3137fcf5ef2aSThomas Huth     shift = tcg_temp_new();
3138fcf5ef2aSThomas Huth 
3139fcf5ef2aSThomas Huth     tcg_gen_andi_tl(shift, gsr, 7);
3140fcf5ef2aSThomas Huth     tcg_gen_shli_tl(shift, shift, 3);
3141fcf5ef2aSThomas Huth     tcg_gen_shl_tl(t1, s1, shift);
3142fcf5ef2aSThomas Huth 
3143fcf5ef2aSThomas Huth     /* A shift of 64 does not produce 0 in TCG.  Divide this into a
3144fcf5ef2aSThomas Huth        shift of (up to 63) followed by a constant shift of 1.  */
3145fcf5ef2aSThomas Huth     tcg_gen_xori_tl(shift, shift, 63);
3146fcf5ef2aSThomas Huth     tcg_gen_shr_tl(t2, s2, shift);
3147fcf5ef2aSThomas Huth     tcg_gen_shri_tl(t2, t2, 1);
3148fcf5ef2aSThomas Huth 
3149fcf5ef2aSThomas Huth     tcg_gen_or_tl(dst, t1, t2);
3150fcf5ef2aSThomas Huth 
3151fcf5ef2aSThomas Huth     tcg_temp_free(t1);
3152fcf5ef2aSThomas Huth     tcg_temp_free(t2);
3153fcf5ef2aSThomas Huth     tcg_temp_free(shift);
3154fcf5ef2aSThomas Huth }
3155fcf5ef2aSThomas Huth #endif
3156fcf5ef2aSThomas Huth 
3157fcf5ef2aSThomas Huth #define CHECK_IU_FEATURE(dc, FEATURE)                      \
3158fcf5ef2aSThomas Huth     if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE))  \
3159fcf5ef2aSThomas Huth         goto illegal_insn;
3160fcf5ef2aSThomas Huth #define CHECK_FPU_FEATURE(dc, FEATURE)                     \
3161fcf5ef2aSThomas Huth     if (!((dc)->def->features & CPU_FEATURE_ ## FEATURE))  \
3162fcf5ef2aSThomas Huth         goto nfpu_insn;
3163fcf5ef2aSThomas Huth 
3164fcf5ef2aSThomas Huth /* before an instruction, dc->pc must be static */
3165fcf5ef2aSThomas Huth static void disas_sparc_insn(DisasContext * dc, unsigned int insn)
3166fcf5ef2aSThomas Huth {
3167fcf5ef2aSThomas Huth     unsigned int opc, rs1, rs2, rd;
3168fcf5ef2aSThomas Huth     TCGv cpu_src1, cpu_src2;
3169fcf5ef2aSThomas Huth     TCGv_i32 cpu_src1_32, cpu_src2_32, cpu_dst_32;
3170fcf5ef2aSThomas Huth     TCGv_i64 cpu_src1_64, cpu_src2_64, cpu_dst_64;
3171fcf5ef2aSThomas Huth     target_long simm;
3172fcf5ef2aSThomas Huth 
3173fcf5ef2aSThomas Huth     opc = GET_FIELD(insn, 0, 1);
3174fcf5ef2aSThomas Huth     rd = GET_FIELD(insn, 2, 6);
3175fcf5ef2aSThomas Huth 
3176fcf5ef2aSThomas Huth     switch (opc) {
3177fcf5ef2aSThomas Huth     case 0:                     /* branches/sethi */
3178fcf5ef2aSThomas Huth         {
3179fcf5ef2aSThomas Huth             unsigned int xop = GET_FIELD(insn, 7, 9);
3180fcf5ef2aSThomas Huth             int32_t target;
3181fcf5ef2aSThomas Huth             switch (xop) {
3182fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3183fcf5ef2aSThomas Huth             case 0x1:           /* V9 BPcc */
3184fcf5ef2aSThomas Huth                 {
3185fcf5ef2aSThomas Huth                     int cc;
3186fcf5ef2aSThomas Huth 
3187fcf5ef2aSThomas Huth                     target = GET_FIELD_SP(insn, 0, 18);
3188fcf5ef2aSThomas Huth                     target = sign_extend(target, 19);
3189fcf5ef2aSThomas Huth                     target <<= 2;
3190fcf5ef2aSThomas Huth                     cc = GET_FIELD_SP(insn, 20, 21);
3191fcf5ef2aSThomas Huth                     if (cc == 0)
3192fcf5ef2aSThomas Huth                         do_branch(dc, target, insn, 0);
3193fcf5ef2aSThomas Huth                     else if (cc == 2)
3194fcf5ef2aSThomas Huth                         do_branch(dc, target, insn, 1);
3195fcf5ef2aSThomas Huth                     else
3196fcf5ef2aSThomas Huth                         goto illegal_insn;
3197fcf5ef2aSThomas Huth                     goto jmp_insn;
3198fcf5ef2aSThomas Huth                 }
3199fcf5ef2aSThomas Huth             case 0x3:           /* V9 BPr */
3200fcf5ef2aSThomas Huth                 {
3201fcf5ef2aSThomas Huth                     target = GET_FIELD_SP(insn, 0, 13) |
3202fcf5ef2aSThomas Huth                         (GET_FIELD_SP(insn, 20, 21) << 14);
3203fcf5ef2aSThomas Huth                     target = sign_extend(target, 16);
3204fcf5ef2aSThomas Huth                     target <<= 2;
3205fcf5ef2aSThomas Huth                     cpu_src1 = get_src1(dc, insn);
3206fcf5ef2aSThomas Huth                     do_branch_reg(dc, target, insn, cpu_src1);
3207fcf5ef2aSThomas Huth                     goto jmp_insn;
3208fcf5ef2aSThomas Huth                 }
3209fcf5ef2aSThomas Huth             case 0x5:           /* V9 FBPcc */
3210fcf5ef2aSThomas Huth                 {
3211fcf5ef2aSThomas Huth                     int cc = GET_FIELD_SP(insn, 20, 21);
3212fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
3213fcf5ef2aSThomas Huth                         goto jmp_insn;
3214fcf5ef2aSThomas Huth                     }
3215fcf5ef2aSThomas Huth                     target = GET_FIELD_SP(insn, 0, 18);
3216fcf5ef2aSThomas Huth                     target = sign_extend(target, 19);
3217fcf5ef2aSThomas Huth                     target <<= 2;
3218fcf5ef2aSThomas Huth                     do_fbranch(dc, target, insn, cc);
3219fcf5ef2aSThomas Huth                     goto jmp_insn;
3220fcf5ef2aSThomas Huth                 }
3221fcf5ef2aSThomas Huth #else
3222fcf5ef2aSThomas Huth             case 0x7:           /* CBN+x */
3223fcf5ef2aSThomas Huth                 {
3224fcf5ef2aSThomas Huth                     goto ncp_insn;
3225fcf5ef2aSThomas Huth                 }
3226fcf5ef2aSThomas Huth #endif
3227fcf5ef2aSThomas Huth             case 0x2:           /* BN+x */
3228fcf5ef2aSThomas Huth                 {
3229fcf5ef2aSThomas Huth                     target = GET_FIELD(insn, 10, 31);
3230fcf5ef2aSThomas Huth                     target = sign_extend(target, 22);
3231fcf5ef2aSThomas Huth                     target <<= 2;
3232fcf5ef2aSThomas Huth                     do_branch(dc, target, insn, 0);
3233fcf5ef2aSThomas Huth                     goto jmp_insn;
3234fcf5ef2aSThomas Huth                 }
3235fcf5ef2aSThomas Huth             case 0x6:           /* FBN+x */
3236fcf5ef2aSThomas Huth                 {
3237fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
3238fcf5ef2aSThomas Huth                         goto jmp_insn;
3239fcf5ef2aSThomas Huth                     }
3240fcf5ef2aSThomas Huth                     target = GET_FIELD(insn, 10, 31);
3241fcf5ef2aSThomas Huth                     target = sign_extend(target, 22);
3242fcf5ef2aSThomas Huth                     target <<= 2;
3243fcf5ef2aSThomas Huth                     do_fbranch(dc, target, insn, 0);
3244fcf5ef2aSThomas Huth                     goto jmp_insn;
3245fcf5ef2aSThomas Huth                 }
3246fcf5ef2aSThomas Huth             case 0x4:           /* SETHI */
3247fcf5ef2aSThomas Huth                 /* Special-case %g0 because that's the canonical nop.  */
3248fcf5ef2aSThomas Huth                 if (rd) {
3249fcf5ef2aSThomas Huth                     uint32_t value = GET_FIELD(insn, 10, 31);
3250fcf5ef2aSThomas Huth                     TCGv t = gen_dest_gpr(dc, rd);
3251fcf5ef2aSThomas Huth                     tcg_gen_movi_tl(t, value << 10);
3252fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, t);
3253fcf5ef2aSThomas Huth                 }
3254fcf5ef2aSThomas Huth                 break;
3255fcf5ef2aSThomas Huth             case 0x0:           /* UNIMPL */
3256fcf5ef2aSThomas Huth             default:
3257fcf5ef2aSThomas Huth                 goto illegal_insn;
3258fcf5ef2aSThomas Huth             }
3259fcf5ef2aSThomas Huth             break;
3260fcf5ef2aSThomas Huth         }
3261fcf5ef2aSThomas Huth         break;
3262fcf5ef2aSThomas Huth     case 1:                     /*CALL*/
3263fcf5ef2aSThomas Huth         {
3264fcf5ef2aSThomas Huth             target_long target = GET_FIELDs(insn, 2, 31) << 2;
3265fcf5ef2aSThomas Huth             TCGv o7 = gen_dest_gpr(dc, 15);
3266fcf5ef2aSThomas Huth 
3267fcf5ef2aSThomas Huth             tcg_gen_movi_tl(o7, dc->pc);
3268fcf5ef2aSThomas Huth             gen_store_gpr(dc, 15, o7);
3269fcf5ef2aSThomas Huth             target += dc->pc;
3270fcf5ef2aSThomas Huth             gen_mov_pc_npc(dc);
3271fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3272fcf5ef2aSThomas Huth             if (unlikely(AM_CHECK(dc))) {
3273fcf5ef2aSThomas Huth                 target &= 0xffffffffULL;
3274fcf5ef2aSThomas Huth             }
3275fcf5ef2aSThomas Huth #endif
3276fcf5ef2aSThomas Huth             dc->npc = target;
3277fcf5ef2aSThomas Huth         }
3278fcf5ef2aSThomas Huth         goto jmp_insn;
3279fcf5ef2aSThomas Huth     case 2:                     /* FPU & Logical Operations */
3280fcf5ef2aSThomas Huth         {
3281fcf5ef2aSThomas Huth             unsigned int xop = GET_FIELD(insn, 7, 12);
3282fcf5ef2aSThomas Huth             TCGv cpu_dst = get_temp_tl(dc);
3283fcf5ef2aSThomas Huth             TCGv cpu_tmp0;
3284fcf5ef2aSThomas Huth 
3285fcf5ef2aSThomas Huth             if (xop == 0x3a) {  /* generate trap */
3286fcf5ef2aSThomas Huth                 int cond = GET_FIELD(insn, 3, 6);
3287fcf5ef2aSThomas Huth                 TCGv_i32 trap;
3288fcf5ef2aSThomas Huth                 TCGLabel *l1 = NULL;
3289fcf5ef2aSThomas Huth                 int mask;
3290fcf5ef2aSThomas Huth 
3291fcf5ef2aSThomas Huth                 if (cond == 0) {
3292fcf5ef2aSThomas Huth                     /* Trap never.  */
3293fcf5ef2aSThomas Huth                     break;
3294fcf5ef2aSThomas Huth                 }
3295fcf5ef2aSThomas Huth 
3296fcf5ef2aSThomas Huth                 save_state(dc);
3297fcf5ef2aSThomas Huth 
3298fcf5ef2aSThomas Huth                 if (cond != 8) {
3299fcf5ef2aSThomas Huth                     /* Conditional trap.  */
3300fcf5ef2aSThomas Huth                     DisasCompare cmp;
3301fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3302fcf5ef2aSThomas Huth                     /* V9 icc/xcc */
3303fcf5ef2aSThomas Huth                     int cc = GET_FIELD_SP(insn, 11, 12);
3304fcf5ef2aSThomas Huth                     if (cc == 0) {
3305fcf5ef2aSThomas Huth                         gen_compare(&cmp, 0, cond, dc);
3306fcf5ef2aSThomas Huth                     } else if (cc == 2) {
3307fcf5ef2aSThomas Huth                         gen_compare(&cmp, 1, cond, dc);
3308fcf5ef2aSThomas Huth                     } else {
3309fcf5ef2aSThomas Huth                         goto illegal_insn;
3310fcf5ef2aSThomas Huth                     }
3311fcf5ef2aSThomas Huth #else
3312fcf5ef2aSThomas Huth                     gen_compare(&cmp, 0, cond, dc);
3313fcf5ef2aSThomas Huth #endif
3314fcf5ef2aSThomas Huth                     l1 = gen_new_label();
3315fcf5ef2aSThomas Huth                     tcg_gen_brcond_tl(tcg_invert_cond(cmp.cond),
3316fcf5ef2aSThomas Huth                                       cmp.c1, cmp.c2, l1);
3317fcf5ef2aSThomas Huth                     free_compare(&cmp);
3318fcf5ef2aSThomas Huth                 }
3319fcf5ef2aSThomas Huth 
3320fcf5ef2aSThomas Huth                 mask = ((dc->def->features & CPU_FEATURE_HYPV) && supervisor(dc)
3321fcf5ef2aSThomas Huth                         ? UA2005_HTRAP_MASK : V8_TRAP_MASK);
3322fcf5ef2aSThomas Huth 
3323fcf5ef2aSThomas Huth                 /* Don't use the normal temporaries, as they may well have
3324fcf5ef2aSThomas Huth                    gone out of scope with the branch above.  While we're
3325fcf5ef2aSThomas Huth                    doing that we might as well pre-truncate to 32-bit.  */
3326fcf5ef2aSThomas Huth                 trap = tcg_temp_new_i32();
3327fcf5ef2aSThomas Huth 
3328fcf5ef2aSThomas Huth                 rs1 = GET_FIELD_SP(insn, 14, 18);
3329fcf5ef2aSThomas Huth                 if (IS_IMM) {
33305c65df36SArtyom Tarasenko                     rs2 = GET_FIELD_SP(insn, 0, 7);
3331fcf5ef2aSThomas Huth                     if (rs1 == 0) {
3332fcf5ef2aSThomas Huth                         tcg_gen_movi_i32(trap, (rs2 & mask) + TT_TRAP);
3333fcf5ef2aSThomas Huth                         /* Signal that the trap value is fully constant.  */
3334fcf5ef2aSThomas Huth                         mask = 0;
3335fcf5ef2aSThomas Huth                     } else {
3336fcf5ef2aSThomas Huth                         TCGv t1 = gen_load_gpr(dc, rs1);
3337fcf5ef2aSThomas Huth                         tcg_gen_trunc_tl_i32(trap, t1);
3338fcf5ef2aSThomas Huth                         tcg_gen_addi_i32(trap, trap, rs2);
3339fcf5ef2aSThomas Huth                     }
3340fcf5ef2aSThomas Huth                 } else {
3341fcf5ef2aSThomas Huth                     TCGv t1, t2;
3342fcf5ef2aSThomas Huth                     rs2 = GET_FIELD_SP(insn, 0, 4);
3343fcf5ef2aSThomas Huth                     t1 = gen_load_gpr(dc, rs1);
3344fcf5ef2aSThomas Huth                     t2 = gen_load_gpr(dc, rs2);
3345fcf5ef2aSThomas Huth                     tcg_gen_add_tl(t1, t1, t2);
3346fcf5ef2aSThomas Huth                     tcg_gen_trunc_tl_i32(trap, t1);
3347fcf5ef2aSThomas Huth                 }
3348fcf5ef2aSThomas Huth                 if (mask != 0) {
3349fcf5ef2aSThomas Huth                     tcg_gen_andi_i32(trap, trap, mask);
3350fcf5ef2aSThomas Huth                     tcg_gen_addi_i32(trap, trap, TT_TRAP);
3351fcf5ef2aSThomas Huth                 }
3352fcf5ef2aSThomas Huth 
3353fcf5ef2aSThomas Huth                 gen_helper_raise_exception(cpu_env, trap);
3354fcf5ef2aSThomas Huth                 tcg_temp_free_i32(trap);
3355fcf5ef2aSThomas Huth 
3356fcf5ef2aSThomas Huth                 if (cond == 8) {
3357fcf5ef2aSThomas Huth                     /* An unconditional trap ends the TB.  */
3358fcf5ef2aSThomas Huth                     dc->is_br = 1;
3359fcf5ef2aSThomas Huth                     goto jmp_insn;
3360fcf5ef2aSThomas Huth                 } else {
3361fcf5ef2aSThomas Huth                     /* A conditional trap falls through to the next insn.  */
3362fcf5ef2aSThomas Huth                     gen_set_label(l1);
3363fcf5ef2aSThomas Huth                     break;
3364fcf5ef2aSThomas Huth                 }
3365fcf5ef2aSThomas Huth             } else if (xop == 0x28) {
3366fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3367fcf5ef2aSThomas Huth                 switch(rs1) {
3368fcf5ef2aSThomas Huth                 case 0: /* rdy */
3369fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
3370fcf5ef2aSThomas Huth                 case 0x01 ... 0x0e: /* undefined in the SPARCv8
3371fcf5ef2aSThomas Huth                                        manual, rdy on the microSPARC
3372fcf5ef2aSThomas Huth                                        II */
3373fcf5ef2aSThomas Huth                 case 0x0f:          /* stbar in the SPARCv8 manual,
3374fcf5ef2aSThomas Huth                                        rdy on the microSPARC II */
3375fcf5ef2aSThomas Huth                 case 0x10 ... 0x1f: /* implementation-dependent in the
3376fcf5ef2aSThomas Huth                                        SPARCv8 manual, rdy on the
3377fcf5ef2aSThomas Huth                                        microSPARC II */
3378fcf5ef2aSThomas Huth                     /* Read Asr17 */
3379fcf5ef2aSThomas Huth                     if (rs1 == 0x11 && dc->def->features & CPU_FEATURE_ASR17) {
3380fcf5ef2aSThomas Huth                         TCGv t = gen_dest_gpr(dc, rd);
3381fcf5ef2aSThomas Huth                         /* Read Asr17 for a Leon3 monoprocessor */
3382fcf5ef2aSThomas Huth                         tcg_gen_movi_tl(t, (1 << 8) | (dc->def->nwindows - 1));
3383fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, t);
3384fcf5ef2aSThomas Huth                         break;
3385fcf5ef2aSThomas Huth                     }
3386fcf5ef2aSThomas Huth #endif
3387fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_y);
3388fcf5ef2aSThomas Huth                     break;
3389fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3390fcf5ef2aSThomas Huth                 case 0x2: /* V9 rdccr */
3391fcf5ef2aSThomas Huth                     update_psr(dc);
3392fcf5ef2aSThomas Huth                     gen_helper_rdccr(cpu_dst, cpu_env);
3393fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
3394fcf5ef2aSThomas Huth                     break;
3395fcf5ef2aSThomas Huth                 case 0x3: /* V9 rdasi */
3396fcf5ef2aSThomas Huth                     tcg_gen_movi_tl(cpu_dst, dc->asi);
3397fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
3398fcf5ef2aSThomas Huth                     break;
3399fcf5ef2aSThomas Huth                 case 0x4: /* V9 rdtick */
3400fcf5ef2aSThomas Huth                     {
3401fcf5ef2aSThomas Huth                         TCGv_ptr r_tickptr;
3402fcf5ef2aSThomas Huth                         TCGv_i32 r_const;
3403fcf5ef2aSThomas Huth 
3404fcf5ef2aSThomas Huth                         r_tickptr = tcg_temp_new_ptr();
3405fcf5ef2aSThomas Huth                         r_const = tcg_const_i32(dc->mem_idx);
3406fcf5ef2aSThomas Huth                         tcg_gen_ld_ptr(r_tickptr, cpu_env,
3407fcf5ef2aSThomas Huth                                        offsetof(CPUSPARCState, tick));
3408fcf5ef2aSThomas Huth                         gen_helper_tick_get_count(cpu_dst, cpu_env, r_tickptr,
3409fcf5ef2aSThomas Huth                                                   r_const);
3410fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tickptr);
3411fcf5ef2aSThomas Huth                         tcg_temp_free_i32(r_const);
3412fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
3413fcf5ef2aSThomas Huth                     }
3414fcf5ef2aSThomas Huth                     break;
3415fcf5ef2aSThomas Huth                 case 0x5: /* V9 rdpc */
3416fcf5ef2aSThomas Huth                     {
3417fcf5ef2aSThomas Huth                         TCGv t = gen_dest_gpr(dc, rd);
3418fcf5ef2aSThomas Huth                         if (unlikely(AM_CHECK(dc))) {
3419fcf5ef2aSThomas Huth                             tcg_gen_movi_tl(t, dc->pc & 0xffffffffULL);
3420fcf5ef2aSThomas Huth                         } else {
3421fcf5ef2aSThomas Huth                             tcg_gen_movi_tl(t, dc->pc);
3422fcf5ef2aSThomas Huth                         }
3423fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, t);
3424fcf5ef2aSThomas Huth                     }
3425fcf5ef2aSThomas Huth                     break;
3426fcf5ef2aSThomas Huth                 case 0x6: /* V9 rdfprs */
3427fcf5ef2aSThomas Huth                     tcg_gen_ext_i32_tl(cpu_dst, cpu_fprs);
3428fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
3429fcf5ef2aSThomas Huth                     break;
3430fcf5ef2aSThomas Huth                 case 0xf: /* V9 membar */
3431fcf5ef2aSThomas Huth                     break; /* no effect */
3432fcf5ef2aSThomas Huth                 case 0x13: /* Graphics Status */
3433fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
3434fcf5ef2aSThomas Huth                         goto jmp_insn;
3435fcf5ef2aSThomas Huth                     }
3436fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_gsr);
3437fcf5ef2aSThomas Huth                     break;
3438fcf5ef2aSThomas Huth                 case 0x16: /* Softint */
3439fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_dst, cpu_env,
3440fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, softint));
3441fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
3442fcf5ef2aSThomas Huth                     break;
3443fcf5ef2aSThomas Huth                 case 0x17: /* Tick compare */
3444fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_tick_cmpr);
3445fcf5ef2aSThomas Huth                     break;
3446fcf5ef2aSThomas Huth                 case 0x18: /* System tick */
3447fcf5ef2aSThomas Huth                     {
3448fcf5ef2aSThomas Huth                         TCGv_ptr r_tickptr;
3449fcf5ef2aSThomas Huth                         TCGv_i32 r_const;
3450fcf5ef2aSThomas Huth 
3451fcf5ef2aSThomas Huth                         r_tickptr = tcg_temp_new_ptr();
3452fcf5ef2aSThomas Huth                         r_const = tcg_const_i32(dc->mem_idx);
3453fcf5ef2aSThomas Huth                         tcg_gen_ld_ptr(r_tickptr, cpu_env,
3454fcf5ef2aSThomas Huth                                        offsetof(CPUSPARCState, stick));
3455fcf5ef2aSThomas Huth                         gen_helper_tick_get_count(cpu_dst, cpu_env, r_tickptr,
3456fcf5ef2aSThomas Huth                                                   r_const);
3457fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tickptr);
3458fcf5ef2aSThomas Huth                         tcg_temp_free_i32(r_const);
3459fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
3460fcf5ef2aSThomas Huth                     }
3461fcf5ef2aSThomas Huth                     break;
3462fcf5ef2aSThomas Huth                 case 0x19: /* System tick compare */
3463fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_stick_cmpr);
3464fcf5ef2aSThomas Huth                     break;
3465b8e31b3cSArtyom Tarasenko                 case 0x1a: /* UltraSPARC-T1 Strand status */
3466b8e31b3cSArtyom Tarasenko                     /* XXX HYPV check maybe not enough, UA2005 & UA2007 describe
3467b8e31b3cSArtyom Tarasenko                      * this ASR as impl. dep
3468b8e31b3cSArtyom Tarasenko                      */
3469b8e31b3cSArtyom Tarasenko                     CHECK_IU_FEATURE(dc, HYPV);
3470b8e31b3cSArtyom Tarasenko                     {
3471b8e31b3cSArtyom Tarasenko                         TCGv t = gen_dest_gpr(dc, rd);
3472b8e31b3cSArtyom Tarasenko                         tcg_gen_movi_tl(t, 1UL);
3473b8e31b3cSArtyom Tarasenko                         gen_store_gpr(dc, rd, t);
3474b8e31b3cSArtyom Tarasenko                     }
3475b8e31b3cSArtyom Tarasenko                     break;
3476fcf5ef2aSThomas Huth                 case 0x10: /* Performance Control */
3477fcf5ef2aSThomas Huth                 case 0x11: /* Performance Instrumentation Counter */
3478fcf5ef2aSThomas Huth                 case 0x12: /* Dispatch Control */
3479fcf5ef2aSThomas Huth                 case 0x14: /* Softint set, WO */
3480fcf5ef2aSThomas Huth                 case 0x15: /* Softint clear, WO */
3481fcf5ef2aSThomas Huth #endif
3482fcf5ef2aSThomas Huth                 default:
3483fcf5ef2aSThomas Huth                     goto illegal_insn;
3484fcf5ef2aSThomas Huth                 }
3485fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
3486fcf5ef2aSThomas Huth             } else if (xop == 0x29) { /* rdpsr / UA2005 rdhpr */
3487fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
3488fcf5ef2aSThomas Huth                 if (!supervisor(dc)) {
3489fcf5ef2aSThomas Huth                     goto priv_insn;
3490fcf5ef2aSThomas Huth                 }
3491fcf5ef2aSThomas Huth                 update_psr(dc);
3492fcf5ef2aSThomas Huth                 gen_helper_rdpsr(cpu_dst, cpu_env);
3493fcf5ef2aSThomas Huth #else
3494fcf5ef2aSThomas Huth                 CHECK_IU_FEATURE(dc, HYPV);
3495fcf5ef2aSThomas Huth                 if (!hypervisor(dc))
3496fcf5ef2aSThomas Huth                     goto priv_insn;
3497fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3498fcf5ef2aSThomas Huth                 switch (rs1) {
3499fcf5ef2aSThomas Huth                 case 0: // hpstate
3500f7f17ef7SArtyom Tarasenko                     tcg_gen_ld_i64(cpu_dst, cpu_env,
3501f7f17ef7SArtyom Tarasenko                                    offsetof(CPUSPARCState, hpstate));
3502fcf5ef2aSThomas Huth                     break;
3503fcf5ef2aSThomas Huth                 case 1: // htstate
3504fcf5ef2aSThomas Huth                     // gen_op_rdhtstate();
3505fcf5ef2aSThomas Huth                     break;
3506fcf5ef2aSThomas Huth                 case 3: // hintp
3507fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_dst, cpu_hintp);
3508fcf5ef2aSThomas Huth                     break;
3509fcf5ef2aSThomas Huth                 case 5: // htba
3510fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_dst, cpu_htba);
3511fcf5ef2aSThomas Huth                     break;
3512fcf5ef2aSThomas Huth                 case 6: // hver
3513fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_dst, cpu_hver);
3514fcf5ef2aSThomas Huth                     break;
3515fcf5ef2aSThomas Huth                 case 31: // hstick_cmpr
3516fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_dst, cpu_hstick_cmpr);
3517fcf5ef2aSThomas Huth                     break;
3518fcf5ef2aSThomas Huth                 default:
3519fcf5ef2aSThomas Huth                     goto illegal_insn;
3520fcf5ef2aSThomas Huth                 }
3521fcf5ef2aSThomas Huth #endif
3522fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_dst);
3523fcf5ef2aSThomas Huth                 break;
3524fcf5ef2aSThomas Huth             } else if (xop == 0x2a) { /* rdwim / V9 rdpr */
3525fcf5ef2aSThomas Huth                 if (!supervisor(dc)) {
3526fcf5ef2aSThomas Huth                     goto priv_insn;
3527fcf5ef2aSThomas Huth                 }
3528fcf5ef2aSThomas Huth                 cpu_tmp0 = get_temp_tl(dc);
3529fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3530fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3531fcf5ef2aSThomas Huth                 switch (rs1) {
3532fcf5ef2aSThomas Huth                 case 0: // tpc
3533fcf5ef2aSThomas Huth                     {
3534fcf5ef2aSThomas Huth                         TCGv_ptr r_tsptr;
3535fcf5ef2aSThomas Huth 
3536fcf5ef2aSThomas Huth                         r_tsptr = tcg_temp_new_ptr();
3537fcf5ef2aSThomas Huth                         gen_load_trap_state_at_tl(r_tsptr, cpu_env);
3538fcf5ef2aSThomas Huth                         tcg_gen_ld_tl(cpu_tmp0, r_tsptr,
3539fcf5ef2aSThomas Huth                                       offsetof(trap_state, tpc));
3540fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tsptr);
3541fcf5ef2aSThomas Huth                     }
3542fcf5ef2aSThomas Huth                     break;
3543fcf5ef2aSThomas Huth                 case 1: // tnpc
3544fcf5ef2aSThomas Huth                     {
3545fcf5ef2aSThomas Huth                         TCGv_ptr r_tsptr;
3546fcf5ef2aSThomas Huth 
3547fcf5ef2aSThomas Huth                         r_tsptr = tcg_temp_new_ptr();
3548fcf5ef2aSThomas Huth                         gen_load_trap_state_at_tl(r_tsptr, cpu_env);
3549fcf5ef2aSThomas Huth                         tcg_gen_ld_tl(cpu_tmp0, r_tsptr,
3550fcf5ef2aSThomas Huth                                       offsetof(trap_state, tnpc));
3551fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tsptr);
3552fcf5ef2aSThomas Huth                     }
3553fcf5ef2aSThomas Huth                     break;
3554fcf5ef2aSThomas Huth                 case 2: // tstate
3555fcf5ef2aSThomas Huth                     {
3556fcf5ef2aSThomas Huth                         TCGv_ptr r_tsptr;
3557fcf5ef2aSThomas Huth 
3558fcf5ef2aSThomas Huth                         r_tsptr = tcg_temp_new_ptr();
3559fcf5ef2aSThomas Huth                         gen_load_trap_state_at_tl(r_tsptr, cpu_env);
3560fcf5ef2aSThomas Huth                         tcg_gen_ld_tl(cpu_tmp0, r_tsptr,
3561fcf5ef2aSThomas Huth                                       offsetof(trap_state, tstate));
3562fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tsptr);
3563fcf5ef2aSThomas Huth                     }
3564fcf5ef2aSThomas Huth                     break;
3565fcf5ef2aSThomas Huth                 case 3: // tt
3566fcf5ef2aSThomas Huth                     {
3567fcf5ef2aSThomas Huth                         TCGv_ptr r_tsptr = tcg_temp_new_ptr();
3568fcf5ef2aSThomas Huth 
3569fcf5ef2aSThomas Huth                         gen_load_trap_state_at_tl(r_tsptr, cpu_env);
3570fcf5ef2aSThomas Huth                         tcg_gen_ld32s_tl(cpu_tmp0, r_tsptr,
3571fcf5ef2aSThomas Huth                                          offsetof(trap_state, tt));
3572fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tsptr);
3573fcf5ef2aSThomas Huth                     }
3574fcf5ef2aSThomas Huth                     break;
3575fcf5ef2aSThomas Huth                 case 4: // tick
3576fcf5ef2aSThomas Huth                     {
3577fcf5ef2aSThomas Huth                         TCGv_ptr r_tickptr;
3578fcf5ef2aSThomas Huth                         TCGv_i32 r_const;
3579fcf5ef2aSThomas Huth 
3580fcf5ef2aSThomas Huth                         r_tickptr = tcg_temp_new_ptr();
3581fcf5ef2aSThomas Huth                         r_const = tcg_const_i32(dc->mem_idx);
3582fcf5ef2aSThomas Huth                         tcg_gen_ld_ptr(r_tickptr, cpu_env,
3583fcf5ef2aSThomas Huth                                        offsetof(CPUSPARCState, tick));
3584fcf5ef2aSThomas Huth                         gen_helper_tick_get_count(cpu_tmp0, cpu_env,
3585fcf5ef2aSThomas Huth                                                   r_tickptr, r_const);
3586fcf5ef2aSThomas Huth                         tcg_temp_free_ptr(r_tickptr);
3587fcf5ef2aSThomas Huth                         tcg_temp_free_i32(r_const);
3588fcf5ef2aSThomas Huth                     }
3589fcf5ef2aSThomas Huth                     break;
3590fcf5ef2aSThomas Huth                 case 5: // tba
3591fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_tmp0, cpu_tbr);
3592fcf5ef2aSThomas Huth                     break;
3593fcf5ef2aSThomas Huth                 case 6: // pstate
3594fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3595fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, pstate));
3596fcf5ef2aSThomas Huth                     break;
3597fcf5ef2aSThomas Huth                 case 7: // tl
3598fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3599fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, tl));
3600fcf5ef2aSThomas Huth                     break;
3601fcf5ef2aSThomas Huth                 case 8: // pil
3602fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3603fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, psrpil));
3604fcf5ef2aSThomas Huth                     break;
3605fcf5ef2aSThomas Huth                 case 9: // cwp
3606fcf5ef2aSThomas Huth                     gen_helper_rdcwp(cpu_tmp0, cpu_env);
3607fcf5ef2aSThomas Huth                     break;
3608fcf5ef2aSThomas Huth                 case 10: // cansave
3609fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3610fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, cansave));
3611fcf5ef2aSThomas Huth                     break;
3612fcf5ef2aSThomas Huth                 case 11: // canrestore
3613fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3614fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, canrestore));
3615fcf5ef2aSThomas Huth                     break;
3616fcf5ef2aSThomas Huth                 case 12: // cleanwin
3617fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3618fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, cleanwin));
3619fcf5ef2aSThomas Huth                     break;
3620fcf5ef2aSThomas Huth                 case 13: // otherwin
3621fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3622fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, otherwin));
3623fcf5ef2aSThomas Huth                     break;
3624fcf5ef2aSThomas Huth                 case 14: // wstate
3625fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3626fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, wstate));
3627fcf5ef2aSThomas Huth                     break;
3628fcf5ef2aSThomas Huth                 case 16: // UA2005 gl
3629fcf5ef2aSThomas Huth                     CHECK_IU_FEATURE(dc, GL);
3630fcf5ef2aSThomas Huth                     tcg_gen_ld32s_tl(cpu_tmp0, cpu_env,
3631fcf5ef2aSThomas Huth                                      offsetof(CPUSPARCState, gl));
3632fcf5ef2aSThomas Huth                     break;
3633fcf5ef2aSThomas Huth                 case 26: // UA2005 strand status
3634fcf5ef2aSThomas Huth                     CHECK_IU_FEATURE(dc, HYPV);
3635fcf5ef2aSThomas Huth                     if (!hypervisor(dc))
3636fcf5ef2aSThomas Huth                         goto priv_insn;
3637fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_tmp0, cpu_ssr);
3638fcf5ef2aSThomas Huth                     break;
3639fcf5ef2aSThomas Huth                 case 31: // ver
3640fcf5ef2aSThomas Huth                     tcg_gen_mov_tl(cpu_tmp0, cpu_ver);
3641fcf5ef2aSThomas Huth                     break;
3642fcf5ef2aSThomas Huth                 case 15: // fq
3643fcf5ef2aSThomas Huth                 default:
3644fcf5ef2aSThomas Huth                     goto illegal_insn;
3645fcf5ef2aSThomas Huth                 }
3646fcf5ef2aSThomas Huth #else
3647fcf5ef2aSThomas Huth                 tcg_gen_ext_i32_tl(cpu_tmp0, cpu_wim);
3648fcf5ef2aSThomas Huth #endif
3649fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_tmp0);
3650fcf5ef2aSThomas Huth                 break;
3651fcf5ef2aSThomas Huth             } else if (xop == 0x2b) { /* rdtbr / V9 flushw */
3652fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3653fcf5ef2aSThomas Huth                 gen_helper_flushw(cpu_env);
3654fcf5ef2aSThomas Huth #else
3655fcf5ef2aSThomas Huth                 if (!supervisor(dc))
3656fcf5ef2aSThomas Huth                     goto priv_insn;
3657fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_tbr);
3658fcf5ef2aSThomas Huth #endif
3659fcf5ef2aSThomas Huth                 break;
3660fcf5ef2aSThomas Huth #endif
3661fcf5ef2aSThomas Huth             } else if (xop == 0x34) {   /* FPU Operations */
3662fcf5ef2aSThomas Huth                 if (gen_trap_ifnofpu(dc)) {
3663fcf5ef2aSThomas Huth                     goto jmp_insn;
3664fcf5ef2aSThomas Huth                 }
3665fcf5ef2aSThomas Huth                 gen_op_clear_ieee_excp_and_FTT();
3666fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3667fcf5ef2aSThomas Huth                 rs2 = GET_FIELD(insn, 27, 31);
3668fcf5ef2aSThomas Huth                 xop = GET_FIELD(insn, 18, 26);
3669fcf5ef2aSThomas Huth 
3670fcf5ef2aSThomas Huth                 switch (xop) {
3671fcf5ef2aSThomas Huth                 case 0x1: /* fmovs */
3672fcf5ef2aSThomas Huth                     cpu_src1_32 = gen_load_fpr_F(dc, rs2);
3673fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_src1_32);
3674fcf5ef2aSThomas Huth                     break;
3675fcf5ef2aSThomas Huth                 case 0x5: /* fnegs */
3676fcf5ef2aSThomas Huth                     gen_ne_fop_FF(dc, rd, rs2, gen_helper_fnegs);
3677fcf5ef2aSThomas Huth                     break;
3678fcf5ef2aSThomas Huth                 case 0x9: /* fabss */
3679fcf5ef2aSThomas Huth                     gen_ne_fop_FF(dc, rd, rs2, gen_helper_fabss);
3680fcf5ef2aSThomas Huth                     break;
3681fcf5ef2aSThomas Huth                 case 0x29: /* fsqrts */
3682fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FSQRT);
3683fcf5ef2aSThomas Huth                     gen_fop_FF(dc, rd, rs2, gen_helper_fsqrts);
3684fcf5ef2aSThomas Huth                     break;
3685fcf5ef2aSThomas Huth                 case 0x2a: /* fsqrtd */
3686fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FSQRT);
3687fcf5ef2aSThomas Huth                     gen_fop_DD(dc, rd, rs2, gen_helper_fsqrtd);
3688fcf5ef2aSThomas Huth                     break;
3689fcf5ef2aSThomas Huth                 case 0x2b: /* fsqrtq */
3690fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3691fcf5ef2aSThomas Huth                     gen_fop_QQ(dc, rd, rs2, gen_helper_fsqrtq);
3692fcf5ef2aSThomas Huth                     break;
3693fcf5ef2aSThomas Huth                 case 0x41: /* fadds */
3694fcf5ef2aSThomas Huth                     gen_fop_FFF(dc, rd, rs1, rs2, gen_helper_fadds);
3695fcf5ef2aSThomas Huth                     break;
3696fcf5ef2aSThomas Huth                 case 0x42: /* faddd */
3697fcf5ef2aSThomas Huth                     gen_fop_DDD(dc, rd, rs1, rs2, gen_helper_faddd);
3698fcf5ef2aSThomas Huth                     break;
3699fcf5ef2aSThomas Huth                 case 0x43: /* faddq */
3700fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3701fcf5ef2aSThomas Huth                     gen_fop_QQQ(dc, rd, rs1, rs2, gen_helper_faddq);
3702fcf5ef2aSThomas Huth                     break;
3703fcf5ef2aSThomas Huth                 case 0x45: /* fsubs */
3704fcf5ef2aSThomas Huth                     gen_fop_FFF(dc, rd, rs1, rs2, gen_helper_fsubs);
3705fcf5ef2aSThomas Huth                     break;
3706fcf5ef2aSThomas Huth                 case 0x46: /* fsubd */
3707fcf5ef2aSThomas Huth                     gen_fop_DDD(dc, rd, rs1, rs2, gen_helper_fsubd);
3708fcf5ef2aSThomas Huth                     break;
3709fcf5ef2aSThomas Huth                 case 0x47: /* fsubq */
3710fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3711fcf5ef2aSThomas Huth                     gen_fop_QQQ(dc, rd, rs1, rs2, gen_helper_fsubq);
3712fcf5ef2aSThomas Huth                     break;
3713fcf5ef2aSThomas Huth                 case 0x49: /* fmuls */
3714fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FMUL);
3715fcf5ef2aSThomas Huth                     gen_fop_FFF(dc, rd, rs1, rs2, gen_helper_fmuls);
3716fcf5ef2aSThomas Huth                     break;
3717fcf5ef2aSThomas Huth                 case 0x4a: /* fmuld */
3718fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FMUL);
3719fcf5ef2aSThomas Huth                     gen_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmuld);
3720fcf5ef2aSThomas Huth                     break;
3721fcf5ef2aSThomas Huth                 case 0x4b: /* fmulq */
3722fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3723fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FMUL);
3724fcf5ef2aSThomas Huth                     gen_fop_QQQ(dc, rd, rs1, rs2, gen_helper_fmulq);
3725fcf5ef2aSThomas Huth                     break;
3726fcf5ef2aSThomas Huth                 case 0x4d: /* fdivs */
3727fcf5ef2aSThomas Huth                     gen_fop_FFF(dc, rd, rs1, rs2, gen_helper_fdivs);
3728fcf5ef2aSThomas Huth                     break;
3729fcf5ef2aSThomas Huth                 case 0x4e: /* fdivd */
3730fcf5ef2aSThomas Huth                     gen_fop_DDD(dc, rd, rs1, rs2, gen_helper_fdivd);
3731fcf5ef2aSThomas Huth                     break;
3732fcf5ef2aSThomas Huth                 case 0x4f: /* fdivq */
3733fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3734fcf5ef2aSThomas Huth                     gen_fop_QQQ(dc, rd, rs1, rs2, gen_helper_fdivq);
3735fcf5ef2aSThomas Huth                     break;
3736fcf5ef2aSThomas Huth                 case 0x69: /* fsmuld */
3737fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FSMULD);
3738fcf5ef2aSThomas Huth                     gen_fop_DFF(dc, rd, rs1, rs2, gen_helper_fsmuld);
3739fcf5ef2aSThomas Huth                     break;
3740fcf5ef2aSThomas Huth                 case 0x6e: /* fdmulq */
3741fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3742fcf5ef2aSThomas Huth                     gen_fop_QDD(dc, rd, rs1, rs2, gen_helper_fdmulq);
3743fcf5ef2aSThomas Huth                     break;
3744fcf5ef2aSThomas Huth                 case 0xc4: /* fitos */
3745fcf5ef2aSThomas Huth                     gen_fop_FF(dc, rd, rs2, gen_helper_fitos);
3746fcf5ef2aSThomas Huth                     break;
3747fcf5ef2aSThomas Huth                 case 0xc6: /* fdtos */
3748fcf5ef2aSThomas Huth                     gen_fop_FD(dc, rd, rs2, gen_helper_fdtos);
3749fcf5ef2aSThomas Huth                     break;
3750fcf5ef2aSThomas Huth                 case 0xc7: /* fqtos */
3751fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3752fcf5ef2aSThomas Huth                     gen_fop_FQ(dc, rd, rs2, gen_helper_fqtos);
3753fcf5ef2aSThomas Huth                     break;
3754fcf5ef2aSThomas Huth                 case 0xc8: /* fitod */
3755fcf5ef2aSThomas Huth                     gen_ne_fop_DF(dc, rd, rs2, gen_helper_fitod);
3756fcf5ef2aSThomas Huth                     break;
3757fcf5ef2aSThomas Huth                 case 0xc9: /* fstod */
3758fcf5ef2aSThomas Huth                     gen_ne_fop_DF(dc, rd, rs2, gen_helper_fstod);
3759fcf5ef2aSThomas Huth                     break;
3760fcf5ef2aSThomas Huth                 case 0xcb: /* fqtod */
3761fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3762fcf5ef2aSThomas Huth                     gen_fop_DQ(dc, rd, rs2, gen_helper_fqtod);
3763fcf5ef2aSThomas Huth                     break;
3764fcf5ef2aSThomas Huth                 case 0xcc: /* fitoq */
3765fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3766fcf5ef2aSThomas Huth                     gen_ne_fop_QF(dc, rd, rs2, gen_helper_fitoq);
3767fcf5ef2aSThomas Huth                     break;
3768fcf5ef2aSThomas Huth                 case 0xcd: /* fstoq */
3769fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3770fcf5ef2aSThomas Huth                     gen_ne_fop_QF(dc, rd, rs2, gen_helper_fstoq);
3771fcf5ef2aSThomas Huth                     break;
3772fcf5ef2aSThomas Huth                 case 0xce: /* fdtoq */
3773fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3774fcf5ef2aSThomas Huth                     gen_ne_fop_QD(dc, rd, rs2, gen_helper_fdtoq);
3775fcf5ef2aSThomas Huth                     break;
3776fcf5ef2aSThomas Huth                 case 0xd1: /* fstoi */
3777fcf5ef2aSThomas Huth                     gen_fop_FF(dc, rd, rs2, gen_helper_fstoi);
3778fcf5ef2aSThomas Huth                     break;
3779fcf5ef2aSThomas Huth                 case 0xd2: /* fdtoi */
3780fcf5ef2aSThomas Huth                     gen_fop_FD(dc, rd, rs2, gen_helper_fdtoi);
3781fcf5ef2aSThomas Huth                     break;
3782fcf5ef2aSThomas Huth                 case 0xd3: /* fqtoi */
3783fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3784fcf5ef2aSThomas Huth                     gen_fop_FQ(dc, rd, rs2, gen_helper_fqtoi);
3785fcf5ef2aSThomas Huth                     break;
3786fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3787fcf5ef2aSThomas Huth                 case 0x2: /* V9 fmovd */
3788fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs2);
3789fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_src1_64);
3790fcf5ef2aSThomas Huth                     break;
3791fcf5ef2aSThomas Huth                 case 0x3: /* V9 fmovq */
3792fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3793fcf5ef2aSThomas Huth                     gen_move_Q(dc, rd, rs2);
3794fcf5ef2aSThomas Huth                     break;
3795fcf5ef2aSThomas Huth                 case 0x6: /* V9 fnegd */
3796fcf5ef2aSThomas Huth                     gen_ne_fop_DD(dc, rd, rs2, gen_helper_fnegd);
3797fcf5ef2aSThomas Huth                     break;
3798fcf5ef2aSThomas Huth                 case 0x7: /* V9 fnegq */
3799fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3800fcf5ef2aSThomas Huth                     gen_ne_fop_QQ(dc, rd, rs2, gen_helper_fnegq);
3801fcf5ef2aSThomas Huth                     break;
3802fcf5ef2aSThomas Huth                 case 0xa: /* V9 fabsd */
3803fcf5ef2aSThomas Huth                     gen_ne_fop_DD(dc, rd, rs2, gen_helper_fabsd);
3804fcf5ef2aSThomas Huth                     break;
3805fcf5ef2aSThomas Huth                 case 0xb: /* V9 fabsq */
3806fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3807fcf5ef2aSThomas Huth                     gen_ne_fop_QQ(dc, rd, rs2, gen_helper_fabsq);
3808fcf5ef2aSThomas Huth                     break;
3809fcf5ef2aSThomas Huth                 case 0x81: /* V9 fstox */
3810fcf5ef2aSThomas Huth                     gen_fop_DF(dc, rd, rs2, gen_helper_fstox);
3811fcf5ef2aSThomas Huth                     break;
3812fcf5ef2aSThomas Huth                 case 0x82: /* V9 fdtox */
3813fcf5ef2aSThomas Huth                     gen_fop_DD(dc, rd, rs2, gen_helper_fdtox);
3814fcf5ef2aSThomas Huth                     break;
3815fcf5ef2aSThomas Huth                 case 0x83: /* V9 fqtox */
3816fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3817fcf5ef2aSThomas Huth                     gen_fop_DQ(dc, rd, rs2, gen_helper_fqtox);
3818fcf5ef2aSThomas Huth                     break;
3819fcf5ef2aSThomas Huth                 case 0x84: /* V9 fxtos */
3820fcf5ef2aSThomas Huth                     gen_fop_FD(dc, rd, rs2, gen_helper_fxtos);
3821fcf5ef2aSThomas Huth                     break;
3822fcf5ef2aSThomas Huth                 case 0x88: /* V9 fxtod */
3823fcf5ef2aSThomas Huth                     gen_fop_DD(dc, rd, rs2, gen_helper_fxtod);
3824fcf5ef2aSThomas Huth                     break;
3825fcf5ef2aSThomas Huth                 case 0x8c: /* V9 fxtoq */
3826fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3827fcf5ef2aSThomas Huth                     gen_ne_fop_QD(dc, rd, rs2, gen_helper_fxtoq);
3828fcf5ef2aSThomas Huth                     break;
3829fcf5ef2aSThomas Huth #endif
3830fcf5ef2aSThomas Huth                 default:
3831fcf5ef2aSThomas Huth                     goto illegal_insn;
3832fcf5ef2aSThomas Huth                 }
3833fcf5ef2aSThomas Huth             } else if (xop == 0x35) {   /* FPU Operations */
3834fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3835fcf5ef2aSThomas Huth                 int cond;
3836fcf5ef2aSThomas Huth #endif
3837fcf5ef2aSThomas Huth                 if (gen_trap_ifnofpu(dc)) {
3838fcf5ef2aSThomas Huth                     goto jmp_insn;
3839fcf5ef2aSThomas Huth                 }
3840fcf5ef2aSThomas Huth                 gen_op_clear_ieee_excp_and_FTT();
3841fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3842fcf5ef2aSThomas Huth                 rs2 = GET_FIELD(insn, 27, 31);
3843fcf5ef2aSThomas Huth                 xop = GET_FIELD(insn, 18, 26);
3844fcf5ef2aSThomas Huth 
3845fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3846fcf5ef2aSThomas Huth #define FMOVR(sz)                                                  \
3847fcf5ef2aSThomas Huth                 do {                                               \
3848fcf5ef2aSThomas Huth                     DisasCompare cmp;                              \
3849fcf5ef2aSThomas Huth                     cond = GET_FIELD_SP(insn, 10, 12);             \
3850fcf5ef2aSThomas Huth                     cpu_src1 = get_src1(dc, insn);                 \
3851fcf5ef2aSThomas Huth                     gen_compare_reg(&cmp, cond, cpu_src1);         \
3852fcf5ef2aSThomas Huth                     gen_fmov##sz(dc, &cmp, rd, rs2);               \
3853fcf5ef2aSThomas Huth                     free_compare(&cmp);                            \
3854fcf5ef2aSThomas Huth                 } while (0)
3855fcf5ef2aSThomas Huth 
3856fcf5ef2aSThomas Huth                 if ((xop & 0x11f) == 0x005) { /* V9 fmovsr */
3857fcf5ef2aSThomas Huth                     FMOVR(s);
3858fcf5ef2aSThomas Huth                     break;
3859fcf5ef2aSThomas Huth                 } else if ((xop & 0x11f) == 0x006) { // V9 fmovdr
3860fcf5ef2aSThomas Huth                     FMOVR(d);
3861fcf5ef2aSThomas Huth                     break;
3862fcf5ef2aSThomas Huth                 } else if ((xop & 0x11f) == 0x007) { // V9 fmovqr
3863fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
3864fcf5ef2aSThomas Huth                     FMOVR(q);
3865fcf5ef2aSThomas Huth                     break;
3866fcf5ef2aSThomas Huth                 }
3867fcf5ef2aSThomas Huth #undef FMOVR
3868fcf5ef2aSThomas Huth #endif
3869fcf5ef2aSThomas Huth                 switch (xop) {
3870fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
3871fcf5ef2aSThomas Huth #define FMOVCC(fcc, sz)                                                 \
3872fcf5ef2aSThomas Huth                     do {                                                \
3873fcf5ef2aSThomas Huth                         DisasCompare cmp;                               \
3874fcf5ef2aSThomas Huth                         cond = GET_FIELD_SP(insn, 14, 17);              \
3875fcf5ef2aSThomas Huth                         gen_fcompare(&cmp, fcc, cond);                  \
3876fcf5ef2aSThomas Huth                         gen_fmov##sz(dc, &cmp, rd, rs2);                \
3877fcf5ef2aSThomas Huth                         free_compare(&cmp);                             \
3878fcf5ef2aSThomas Huth                     } while (0)
3879fcf5ef2aSThomas Huth 
3880fcf5ef2aSThomas Huth                     case 0x001: /* V9 fmovscc %fcc0 */
3881fcf5ef2aSThomas Huth                         FMOVCC(0, s);
3882fcf5ef2aSThomas Huth                         break;
3883fcf5ef2aSThomas Huth                     case 0x002: /* V9 fmovdcc %fcc0 */
3884fcf5ef2aSThomas Huth                         FMOVCC(0, d);
3885fcf5ef2aSThomas Huth                         break;
3886fcf5ef2aSThomas Huth                     case 0x003: /* V9 fmovqcc %fcc0 */
3887fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3888fcf5ef2aSThomas Huth                         FMOVCC(0, q);
3889fcf5ef2aSThomas Huth                         break;
3890fcf5ef2aSThomas Huth                     case 0x041: /* V9 fmovscc %fcc1 */
3891fcf5ef2aSThomas Huth                         FMOVCC(1, s);
3892fcf5ef2aSThomas Huth                         break;
3893fcf5ef2aSThomas Huth                     case 0x042: /* V9 fmovdcc %fcc1 */
3894fcf5ef2aSThomas Huth                         FMOVCC(1, d);
3895fcf5ef2aSThomas Huth                         break;
3896fcf5ef2aSThomas Huth                     case 0x043: /* V9 fmovqcc %fcc1 */
3897fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3898fcf5ef2aSThomas Huth                         FMOVCC(1, q);
3899fcf5ef2aSThomas Huth                         break;
3900fcf5ef2aSThomas Huth                     case 0x081: /* V9 fmovscc %fcc2 */
3901fcf5ef2aSThomas Huth                         FMOVCC(2, s);
3902fcf5ef2aSThomas Huth                         break;
3903fcf5ef2aSThomas Huth                     case 0x082: /* V9 fmovdcc %fcc2 */
3904fcf5ef2aSThomas Huth                         FMOVCC(2, d);
3905fcf5ef2aSThomas Huth                         break;
3906fcf5ef2aSThomas Huth                     case 0x083: /* V9 fmovqcc %fcc2 */
3907fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3908fcf5ef2aSThomas Huth                         FMOVCC(2, q);
3909fcf5ef2aSThomas Huth                         break;
3910fcf5ef2aSThomas Huth                     case 0x0c1: /* V9 fmovscc %fcc3 */
3911fcf5ef2aSThomas Huth                         FMOVCC(3, s);
3912fcf5ef2aSThomas Huth                         break;
3913fcf5ef2aSThomas Huth                     case 0x0c2: /* V9 fmovdcc %fcc3 */
3914fcf5ef2aSThomas Huth                         FMOVCC(3, d);
3915fcf5ef2aSThomas Huth                         break;
3916fcf5ef2aSThomas Huth                     case 0x0c3: /* V9 fmovqcc %fcc3 */
3917fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3918fcf5ef2aSThomas Huth                         FMOVCC(3, q);
3919fcf5ef2aSThomas Huth                         break;
3920fcf5ef2aSThomas Huth #undef FMOVCC
3921fcf5ef2aSThomas Huth #define FMOVCC(xcc, sz)                                                 \
3922fcf5ef2aSThomas Huth                     do {                                                \
3923fcf5ef2aSThomas Huth                         DisasCompare cmp;                               \
3924fcf5ef2aSThomas Huth                         cond = GET_FIELD_SP(insn, 14, 17);              \
3925fcf5ef2aSThomas Huth                         gen_compare(&cmp, xcc, cond, dc);               \
3926fcf5ef2aSThomas Huth                         gen_fmov##sz(dc, &cmp, rd, rs2);                \
3927fcf5ef2aSThomas Huth                         free_compare(&cmp);                             \
3928fcf5ef2aSThomas Huth                     } while (0)
3929fcf5ef2aSThomas Huth 
3930fcf5ef2aSThomas Huth                     case 0x101: /* V9 fmovscc %icc */
3931fcf5ef2aSThomas Huth                         FMOVCC(0, s);
3932fcf5ef2aSThomas Huth                         break;
3933fcf5ef2aSThomas Huth                     case 0x102: /* V9 fmovdcc %icc */
3934fcf5ef2aSThomas Huth                         FMOVCC(0, d);
3935fcf5ef2aSThomas Huth                         break;
3936fcf5ef2aSThomas Huth                     case 0x103: /* V9 fmovqcc %icc */
3937fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3938fcf5ef2aSThomas Huth                         FMOVCC(0, q);
3939fcf5ef2aSThomas Huth                         break;
3940fcf5ef2aSThomas Huth                     case 0x181: /* V9 fmovscc %xcc */
3941fcf5ef2aSThomas Huth                         FMOVCC(1, s);
3942fcf5ef2aSThomas Huth                         break;
3943fcf5ef2aSThomas Huth                     case 0x182: /* V9 fmovdcc %xcc */
3944fcf5ef2aSThomas Huth                         FMOVCC(1, d);
3945fcf5ef2aSThomas Huth                         break;
3946fcf5ef2aSThomas Huth                     case 0x183: /* V9 fmovqcc %xcc */
3947fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3948fcf5ef2aSThomas Huth                         FMOVCC(1, q);
3949fcf5ef2aSThomas Huth                         break;
3950fcf5ef2aSThomas Huth #undef FMOVCC
3951fcf5ef2aSThomas Huth #endif
3952fcf5ef2aSThomas Huth                     case 0x51: /* fcmps, V9 %fcc */
3953fcf5ef2aSThomas Huth                         cpu_src1_32 = gen_load_fpr_F(dc, rs1);
3954fcf5ef2aSThomas Huth                         cpu_src2_32 = gen_load_fpr_F(dc, rs2);
3955fcf5ef2aSThomas Huth                         gen_op_fcmps(rd & 3, cpu_src1_32, cpu_src2_32);
3956fcf5ef2aSThomas Huth                         break;
3957fcf5ef2aSThomas Huth                     case 0x52: /* fcmpd, V9 %fcc */
3958fcf5ef2aSThomas Huth                         cpu_src1_64 = gen_load_fpr_D(dc, rs1);
3959fcf5ef2aSThomas Huth                         cpu_src2_64 = gen_load_fpr_D(dc, rs2);
3960fcf5ef2aSThomas Huth                         gen_op_fcmpd(rd & 3, cpu_src1_64, cpu_src2_64);
3961fcf5ef2aSThomas Huth                         break;
3962fcf5ef2aSThomas Huth                     case 0x53: /* fcmpq, V9 %fcc */
3963fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3964fcf5ef2aSThomas Huth                         gen_op_load_fpr_QT0(QFPREG(rs1));
3965fcf5ef2aSThomas Huth                         gen_op_load_fpr_QT1(QFPREG(rs2));
3966fcf5ef2aSThomas Huth                         gen_op_fcmpq(rd & 3);
3967fcf5ef2aSThomas Huth                         break;
3968fcf5ef2aSThomas Huth                     case 0x55: /* fcmpes, V9 %fcc */
3969fcf5ef2aSThomas Huth                         cpu_src1_32 = gen_load_fpr_F(dc, rs1);
3970fcf5ef2aSThomas Huth                         cpu_src2_32 = gen_load_fpr_F(dc, rs2);
3971fcf5ef2aSThomas Huth                         gen_op_fcmpes(rd & 3, cpu_src1_32, cpu_src2_32);
3972fcf5ef2aSThomas Huth                         break;
3973fcf5ef2aSThomas Huth                     case 0x56: /* fcmped, V9 %fcc */
3974fcf5ef2aSThomas Huth                         cpu_src1_64 = gen_load_fpr_D(dc, rs1);
3975fcf5ef2aSThomas Huth                         cpu_src2_64 = gen_load_fpr_D(dc, rs2);
3976fcf5ef2aSThomas Huth                         gen_op_fcmped(rd & 3, cpu_src1_64, cpu_src2_64);
3977fcf5ef2aSThomas Huth                         break;
3978fcf5ef2aSThomas Huth                     case 0x57: /* fcmpeq, V9 %fcc */
3979fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
3980fcf5ef2aSThomas Huth                         gen_op_load_fpr_QT0(QFPREG(rs1));
3981fcf5ef2aSThomas Huth                         gen_op_load_fpr_QT1(QFPREG(rs2));
3982fcf5ef2aSThomas Huth                         gen_op_fcmpeq(rd & 3);
3983fcf5ef2aSThomas Huth                         break;
3984fcf5ef2aSThomas Huth                     default:
3985fcf5ef2aSThomas Huth                         goto illegal_insn;
3986fcf5ef2aSThomas Huth                 }
3987fcf5ef2aSThomas Huth             } else if (xop == 0x2) {
3988fcf5ef2aSThomas Huth                 TCGv dst = gen_dest_gpr(dc, rd);
3989fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
3990fcf5ef2aSThomas Huth                 if (rs1 == 0) {
3991fcf5ef2aSThomas Huth                     /* clr/mov shortcut : or %g0, x, y -> mov x, y */
3992fcf5ef2aSThomas Huth                     if (IS_IMM) {       /* immediate */
3993fcf5ef2aSThomas Huth                         simm = GET_FIELDs(insn, 19, 31);
3994fcf5ef2aSThomas Huth                         tcg_gen_movi_tl(dst, simm);
3995fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, dst);
3996fcf5ef2aSThomas Huth                     } else {            /* register */
3997fcf5ef2aSThomas Huth                         rs2 = GET_FIELD(insn, 27, 31);
3998fcf5ef2aSThomas Huth                         if (rs2 == 0) {
3999fcf5ef2aSThomas Huth                             tcg_gen_movi_tl(dst, 0);
4000fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, dst);
4001fcf5ef2aSThomas Huth                         } else {
4002fcf5ef2aSThomas Huth                             cpu_src2 = gen_load_gpr(dc, rs2);
4003fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, cpu_src2);
4004fcf5ef2aSThomas Huth                         }
4005fcf5ef2aSThomas Huth                     }
4006fcf5ef2aSThomas Huth                 } else {
4007fcf5ef2aSThomas Huth                     cpu_src1 = get_src1(dc, insn);
4008fcf5ef2aSThomas Huth                     if (IS_IMM) {       /* immediate */
4009fcf5ef2aSThomas Huth                         simm = GET_FIELDs(insn, 19, 31);
4010fcf5ef2aSThomas Huth                         tcg_gen_ori_tl(dst, cpu_src1, simm);
4011fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, dst);
4012fcf5ef2aSThomas Huth                     } else {            /* register */
4013fcf5ef2aSThomas Huth                         rs2 = GET_FIELD(insn, 27, 31);
4014fcf5ef2aSThomas Huth                         if (rs2 == 0) {
4015fcf5ef2aSThomas Huth                             /* mov shortcut:  or x, %g0, y -> mov x, y */
4016fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, cpu_src1);
4017fcf5ef2aSThomas Huth                         } else {
4018fcf5ef2aSThomas Huth                             cpu_src2 = gen_load_gpr(dc, rs2);
4019fcf5ef2aSThomas Huth                             tcg_gen_or_tl(dst, cpu_src1, cpu_src2);
4020fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, dst);
4021fcf5ef2aSThomas Huth                         }
4022fcf5ef2aSThomas Huth                     }
4023fcf5ef2aSThomas Huth                 }
4024fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4025fcf5ef2aSThomas Huth             } else if (xop == 0x25) { /* sll, V9 sllx */
4026fcf5ef2aSThomas Huth                 cpu_src1 = get_src1(dc, insn);
4027fcf5ef2aSThomas Huth                 if (IS_IMM) {   /* immediate */
4028fcf5ef2aSThomas Huth                     simm = GET_FIELDs(insn, 20, 31);
4029fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4030fcf5ef2aSThomas Huth                         tcg_gen_shli_i64(cpu_dst, cpu_src1, simm & 0x3f);
4031fcf5ef2aSThomas Huth                     } else {
4032fcf5ef2aSThomas Huth                         tcg_gen_shli_i64(cpu_dst, cpu_src1, simm & 0x1f);
4033fcf5ef2aSThomas Huth                     }
4034fcf5ef2aSThomas Huth                 } else {                /* register */
4035fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
4036fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4037fcf5ef2aSThomas Huth                     cpu_tmp0 = get_temp_tl(dc);
4038fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4039fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
4040fcf5ef2aSThomas Huth                     } else {
4041fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
4042fcf5ef2aSThomas Huth                     }
4043fcf5ef2aSThomas Huth                     tcg_gen_shl_i64(cpu_dst, cpu_src1, cpu_tmp0);
4044fcf5ef2aSThomas Huth                 }
4045fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_dst);
4046fcf5ef2aSThomas Huth             } else if (xop == 0x26) { /* srl, V9 srlx */
4047fcf5ef2aSThomas Huth                 cpu_src1 = get_src1(dc, insn);
4048fcf5ef2aSThomas Huth                 if (IS_IMM) {   /* immediate */
4049fcf5ef2aSThomas Huth                     simm = GET_FIELDs(insn, 20, 31);
4050fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4051fcf5ef2aSThomas Huth                         tcg_gen_shri_i64(cpu_dst, cpu_src1, simm & 0x3f);
4052fcf5ef2aSThomas Huth                     } else {
4053fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
4054fcf5ef2aSThomas Huth                         tcg_gen_shri_i64(cpu_dst, cpu_dst, simm & 0x1f);
4055fcf5ef2aSThomas Huth                     }
4056fcf5ef2aSThomas Huth                 } else {                /* register */
4057fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
4058fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4059fcf5ef2aSThomas Huth                     cpu_tmp0 = get_temp_tl(dc);
4060fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4061fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
4062fcf5ef2aSThomas Huth                         tcg_gen_shr_i64(cpu_dst, cpu_src1, cpu_tmp0);
4063fcf5ef2aSThomas Huth                     } else {
4064fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
4065fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_dst, cpu_src1, 0xffffffffULL);
4066fcf5ef2aSThomas Huth                         tcg_gen_shr_i64(cpu_dst, cpu_dst, cpu_tmp0);
4067fcf5ef2aSThomas Huth                     }
4068fcf5ef2aSThomas Huth                 }
4069fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_dst);
4070fcf5ef2aSThomas Huth             } else if (xop == 0x27) { /* sra, V9 srax */
4071fcf5ef2aSThomas Huth                 cpu_src1 = get_src1(dc, insn);
4072fcf5ef2aSThomas Huth                 if (IS_IMM) {   /* immediate */
4073fcf5ef2aSThomas Huth                     simm = GET_FIELDs(insn, 20, 31);
4074fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4075fcf5ef2aSThomas Huth                         tcg_gen_sari_i64(cpu_dst, cpu_src1, simm & 0x3f);
4076fcf5ef2aSThomas Huth                     } else {
4077fcf5ef2aSThomas Huth                         tcg_gen_ext32s_i64(cpu_dst, cpu_src1);
4078fcf5ef2aSThomas Huth                         tcg_gen_sari_i64(cpu_dst, cpu_dst, simm & 0x1f);
4079fcf5ef2aSThomas Huth                     }
4080fcf5ef2aSThomas Huth                 } else {                /* register */
4081fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
4082fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4083fcf5ef2aSThomas Huth                     cpu_tmp0 = get_temp_tl(dc);
4084fcf5ef2aSThomas Huth                     if (insn & (1 << 12)) {
4085fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x3f);
4086fcf5ef2aSThomas Huth                         tcg_gen_sar_i64(cpu_dst, cpu_src1, cpu_tmp0);
4087fcf5ef2aSThomas Huth                     } else {
4088fcf5ef2aSThomas Huth                         tcg_gen_andi_i64(cpu_tmp0, cpu_src2, 0x1f);
4089fcf5ef2aSThomas Huth                         tcg_gen_ext32s_i64(cpu_dst, cpu_src1);
4090fcf5ef2aSThomas Huth                         tcg_gen_sar_i64(cpu_dst, cpu_dst, cpu_tmp0);
4091fcf5ef2aSThomas Huth                     }
4092fcf5ef2aSThomas Huth                 }
4093fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_dst);
4094fcf5ef2aSThomas Huth #endif
4095fcf5ef2aSThomas Huth             } else if (xop < 0x36) {
4096fcf5ef2aSThomas Huth                 if (xop < 0x20) {
4097fcf5ef2aSThomas Huth                     cpu_src1 = get_src1(dc, insn);
4098fcf5ef2aSThomas Huth                     cpu_src2 = get_src2(dc, insn);
4099fcf5ef2aSThomas Huth                     switch (xop & ~0x10) {
4100fcf5ef2aSThomas Huth                     case 0x0: /* add */
4101fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4102fcf5ef2aSThomas Huth                             gen_op_add_cc(cpu_dst, cpu_src1, cpu_src2);
4103fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_ADD);
4104fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_ADD;
4105fcf5ef2aSThomas Huth                         } else {
4106fcf5ef2aSThomas Huth                             tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
4107fcf5ef2aSThomas Huth                         }
4108fcf5ef2aSThomas Huth                         break;
4109fcf5ef2aSThomas Huth                     case 0x1: /* and */
4110fcf5ef2aSThomas Huth                         tcg_gen_and_tl(cpu_dst, cpu_src1, cpu_src2);
4111fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4112fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4113fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4114fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4115fcf5ef2aSThomas Huth                         }
4116fcf5ef2aSThomas Huth                         break;
4117fcf5ef2aSThomas Huth                     case 0x2: /* or */
4118fcf5ef2aSThomas Huth                         tcg_gen_or_tl(cpu_dst, cpu_src1, cpu_src2);
4119fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4120fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4121fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4122fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4123fcf5ef2aSThomas Huth                         }
4124fcf5ef2aSThomas Huth                         break;
4125fcf5ef2aSThomas Huth                     case 0x3: /* xor */
4126fcf5ef2aSThomas Huth                         tcg_gen_xor_tl(cpu_dst, cpu_src1, cpu_src2);
4127fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4128fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4129fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4130fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4131fcf5ef2aSThomas Huth                         }
4132fcf5ef2aSThomas Huth                         break;
4133fcf5ef2aSThomas Huth                     case 0x4: /* sub */
4134fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4135fcf5ef2aSThomas Huth                             gen_op_sub_cc(cpu_dst, cpu_src1, cpu_src2);
4136fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_SUB);
4137fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_SUB;
4138fcf5ef2aSThomas Huth                         } else {
4139fcf5ef2aSThomas Huth                             tcg_gen_sub_tl(cpu_dst, cpu_src1, cpu_src2);
4140fcf5ef2aSThomas Huth                         }
4141fcf5ef2aSThomas Huth                         break;
4142fcf5ef2aSThomas Huth                     case 0x5: /* andn */
4143fcf5ef2aSThomas Huth                         tcg_gen_andc_tl(cpu_dst, cpu_src1, cpu_src2);
4144fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4145fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4146fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4147fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4148fcf5ef2aSThomas Huth                         }
4149fcf5ef2aSThomas Huth                         break;
4150fcf5ef2aSThomas Huth                     case 0x6: /* orn */
4151fcf5ef2aSThomas Huth                         tcg_gen_orc_tl(cpu_dst, cpu_src1, cpu_src2);
4152fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4153fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4154fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4155fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4156fcf5ef2aSThomas Huth                         }
4157fcf5ef2aSThomas Huth                         break;
4158fcf5ef2aSThomas Huth                     case 0x7: /* xorn */
4159fcf5ef2aSThomas Huth                         tcg_gen_eqv_tl(cpu_dst, cpu_src1, cpu_src2);
4160fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4161fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4162fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4163fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4164fcf5ef2aSThomas Huth                         }
4165fcf5ef2aSThomas Huth                         break;
4166fcf5ef2aSThomas Huth                     case 0x8: /* addx, V9 addc */
4167fcf5ef2aSThomas Huth                         gen_op_addx_int(dc, cpu_dst, cpu_src1, cpu_src2,
4168fcf5ef2aSThomas Huth                                         (xop & 0x10));
4169fcf5ef2aSThomas Huth                         break;
4170fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4171fcf5ef2aSThomas Huth                     case 0x9: /* V9 mulx */
4172fcf5ef2aSThomas Huth                         tcg_gen_mul_i64(cpu_dst, cpu_src1, cpu_src2);
4173fcf5ef2aSThomas Huth                         break;
4174fcf5ef2aSThomas Huth #endif
4175fcf5ef2aSThomas Huth                     case 0xa: /* umul */
4176fcf5ef2aSThomas Huth                         CHECK_IU_FEATURE(dc, MUL);
4177fcf5ef2aSThomas Huth                         gen_op_umul(cpu_dst, cpu_src1, cpu_src2);
4178fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4179fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4180fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4181fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4182fcf5ef2aSThomas Huth                         }
4183fcf5ef2aSThomas Huth                         break;
4184fcf5ef2aSThomas Huth                     case 0xb: /* smul */
4185fcf5ef2aSThomas Huth                         CHECK_IU_FEATURE(dc, MUL);
4186fcf5ef2aSThomas Huth                         gen_op_smul(cpu_dst, cpu_src1, cpu_src2);
4187fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4188fcf5ef2aSThomas Huth                             tcg_gen_mov_tl(cpu_cc_dst, cpu_dst);
4189fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_LOGIC);
4190fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_LOGIC;
4191fcf5ef2aSThomas Huth                         }
4192fcf5ef2aSThomas Huth                         break;
4193fcf5ef2aSThomas Huth                     case 0xc: /* subx, V9 subc */
4194fcf5ef2aSThomas Huth                         gen_op_subx_int(dc, cpu_dst, cpu_src1, cpu_src2,
4195fcf5ef2aSThomas Huth                                         (xop & 0x10));
4196fcf5ef2aSThomas Huth                         break;
4197fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4198fcf5ef2aSThomas Huth                     case 0xd: /* V9 udivx */
4199fcf5ef2aSThomas Huth                         gen_helper_udivx(cpu_dst, cpu_env, cpu_src1, cpu_src2);
4200fcf5ef2aSThomas Huth                         break;
4201fcf5ef2aSThomas Huth #endif
4202fcf5ef2aSThomas Huth                     case 0xe: /* udiv */
4203fcf5ef2aSThomas Huth                         CHECK_IU_FEATURE(dc, DIV);
4204fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4205fcf5ef2aSThomas Huth                             gen_helper_udiv_cc(cpu_dst, cpu_env, cpu_src1,
4206fcf5ef2aSThomas Huth                                                cpu_src2);
4207fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_DIV;
4208fcf5ef2aSThomas Huth                         } else {
4209fcf5ef2aSThomas Huth                             gen_helper_udiv(cpu_dst, cpu_env, cpu_src1,
4210fcf5ef2aSThomas Huth                                             cpu_src2);
4211fcf5ef2aSThomas Huth                         }
4212fcf5ef2aSThomas Huth                         break;
4213fcf5ef2aSThomas Huth                     case 0xf: /* sdiv */
4214fcf5ef2aSThomas Huth                         CHECK_IU_FEATURE(dc, DIV);
4215fcf5ef2aSThomas Huth                         if (xop & 0x10) {
4216fcf5ef2aSThomas Huth                             gen_helper_sdiv_cc(cpu_dst, cpu_env, cpu_src1,
4217fcf5ef2aSThomas Huth                                                cpu_src2);
4218fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_DIV;
4219fcf5ef2aSThomas Huth                         } else {
4220fcf5ef2aSThomas Huth                             gen_helper_sdiv(cpu_dst, cpu_env, cpu_src1,
4221fcf5ef2aSThomas Huth                                             cpu_src2);
4222fcf5ef2aSThomas Huth                         }
4223fcf5ef2aSThomas Huth                         break;
4224fcf5ef2aSThomas Huth                     default:
4225fcf5ef2aSThomas Huth                         goto illegal_insn;
4226fcf5ef2aSThomas Huth                     }
4227fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4228fcf5ef2aSThomas Huth                 } else {
4229fcf5ef2aSThomas Huth                     cpu_src1 = get_src1(dc, insn);
4230fcf5ef2aSThomas Huth                     cpu_src2 = get_src2(dc, insn);
4231fcf5ef2aSThomas Huth                     switch (xop) {
4232fcf5ef2aSThomas Huth                     case 0x20: /* taddcc */
4233fcf5ef2aSThomas Huth                         gen_op_add_cc(cpu_dst, cpu_src1, cpu_src2);
4234fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4235fcf5ef2aSThomas Huth                         tcg_gen_movi_i32(cpu_cc_op, CC_OP_TADD);
4236fcf5ef2aSThomas Huth                         dc->cc_op = CC_OP_TADD;
4237fcf5ef2aSThomas Huth                         break;
4238fcf5ef2aSThomas Huth                     case 0x21: /* tsubcc */
4239fcf5ef2aSThomas Huth                         gen_op_sub_cc(cpu_dst, cpu_src1, cpu_src2);
4240fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4241fcf5ef2aSThomas Huth                         tcg_gen_movi_i32(cpu_cc_op, CC_OP_TSUB);
4242fcf5ef2aSThomas Huth                         dc->cc_op = CC_OP_TSUB;
4243fcf5ef2aSThomas Huth                         break;
4244fcf5ef2aSThomas Huth                     case 0x22: /* taddcctv */
4245fcf5ef2aSThomas Huth                         gen_helper_taddcctv(cpu_dst, cpu_env,
4246fcf5ef2aSThomas Huth                                             cpu_src1, cpu_src2);
4247fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4248fcf5ef2aSThomas Huth                         dc->cc_op = CC_OP_TADDTV;
4249fcf5ef2aSThomas Huth                         break;
4250fcf5ef2aSThomas Huth                     case 0x23: /* tsubcctv */
4251fcf5ef2aSThomas Huth                         gen_helper_tsubcctv(cpu_dst, cpu_env,
4252fcf5ef2aSThomas Huth                                             cpu_src1, cpu_src2);
4253fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4254fcf5ef2aSThomas Huth                         dc->cc_op = CC_OP_TSUBTV;
4255fcf5ef2aSThomas Huth                         break;
4256fcf5ef2aSThomas Huth                     case 0x24: /* mulscc */
4257fcf5ef2aSThomas Huth                         update_psr(dc);
4258fcf5ef2aSThomas Huth                         gen_op_mulscc(cpu_dst, cpu_src1, cpu_src2);
4259fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4260fcf5ef2aSThomas Huth                         tcg_gen_movi_i32(cpu_cc_op, CC_OP_ADD);
4261fcf5ef2aSThomas Huth                         dc->cc_op = CC_OP_ADD;
4262fcf5ef2aSThomas Huth                         break;
4263fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
4264fcf5ef2aSThomas Huth                     case 0x25:  /* sll */
4265fcf5ef2aSThomas Huth                         if (IS_IMM) { /* immediate */
4266fcf5ef2aSThomas Huth                             simm = GET_FIELDs(insn, 20, 31);
4267fcf5ef2aSThomas Huth                             tcg_gen_shli_tl(cpu_dst, cpu_src1, simm & 0x1f);
4268fcf5ef2aSThomas Huth                         } else { /* register */
4269fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4270fcf5ef2aSThomas Huth                             tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
4271fcf5ef2aSThomas Huth                             tcg_gen_shl_tl(cpu_dst, cpu_src1, cpu_tmp0);
4272fcf5ef2aSThomas Huth                         }
4273fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4274fcf5ef2aSThomas Huth                         break;
4275fcf5ef2aSThomas Huth                     case 0x26:  /* srl */
4276fcf5ef2aSThomas Huth                         if (IS_IMM) { /* immediate */
4277fcf5ef2aSThomas Huth                             simm = GET_FIELDs(insn, 20, 31);
4278fcf5ef2aSThomas Huth                             tcg_gen_shri_tl(cpu_dst, cpu_src1, simm & 0x1f);
4279fcf5ef2aSThomas Huth                         } else { /* register */
4280fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4281fcf5ef2aSThomas Huth                             tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
4282fcf5ef2aSThomas Huth                             tcg_gen_shr_tl(cpu_dst, cpu_src1, cpu_tmp0);
4283fcf5ef2aSThomas Huth                         }
4284fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4285fcf5ef2aSThomas Huth                         break;
4286fcf5ef2aSThomas Huth                     case 0x27:  /* sra */
4287fcf5ef2aSThomas Huth                         if (IS_IMM) { /* immediate */
4288fcf5ef2aSThomas Huth                             simm = GET_FIELDs(insn, 20, 31);
4289fcf5ef2aSThomas Huth                             tcg_gen_sari_tl(cpu_dst, cpu_src1, simm & 0x1f);
4290fcf5ef2aSThomas Huth                         } else { /* register */
4291fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4292fcf5ef2aSThomas Huth                             tcg_gen_andi_tl(cpu_tmp0, cpu_src2, 0x1f);
4293fcf5ef2aSThomas Huth                             tcg_gen_sar_tl(cpu_dst, cpu_src1, cpu_tmp0);
4294fcf5ef2aSThomas Huth                         }
4295fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4296fcf5ef2aSThomas Huth                         break;
4297fcf5ef2aSThomas Huth #endif
4298fcf5ef2aSThomas Huth                     case 0x30:
4299fcf5ef2aSThomas Huth                         {
4300fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4301fcf5ef2aSThomas Huth                             switch(rd) {
4302fcf5ef2aSThomas Huth                             case 0: /* wry */
4303fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4304fcf5ef2aSThomas Huth                                 tcg_gen_andi_tl(cpu_y, cpu_tmp0, 0xffffffff);
4305fcf5ef2aSThomas Huth                                 break;
4306fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
4307fcf5ef2aSThomas Huth                             case 0x01 ... 0x0f: /* undefined in the
4308fcf5ef2aSThomas Huth                                                    SPARCv8 manual, nop
4309fcf5ef2aSThomas Huth                                                    on the microSPARC
4310fcf5ef2aSThomas Huth                                                    II */
4311fcf5ef2aSThomas Huth                             case 0x10 ... 0x1f: /* implementation-dependent
4312fcf5ef2aSThomas Huth                                                    in the SPARCv8
4313fcf5ef2aSThomas Huth                                                    manual, nop on the
4314fcf5ef2aSThomas Huth                                                    microSPARC II */
4315fcf5ef2aSThomas Huth                                 if ((rd == 0x13) && (dc->def->features &
4316fcf5ef2aSThomas Huth                                                      CPU_FEATURE_POWERDOWN)) {
4317fcf5ef2aSThomas Huth                                     /* LEON3 power-down */
4318fcf5ef2aSThomas Huth                                     save_state(dc);
4319fcf5ef2aSThomas Huth                                     gen_helper_power_down(cpu_env);
4320fcf5ef2aSThomas Huth                                 }
4321fcf5ef2aSThomas Huth                                 break;
4322fcf5ef2aSThomas Huth #else
4323fcf5ef2aSThomas Huth                             case 0x2: /* V9 wrccr */
4324fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4325fcf5ef2aSThomas Huth                                 gen_helper_wrccr(cpu_env, cpu_tmp0);
4326fcf5ef2aSThomas Huth                                 tcg_gen_movi_i32(cpu_cc_op, CC_OP_FLAGS);
4327fcf5ef2aSThomas Huth                                 dc->cc_op = CC_OP_FLAGS;
4328fcf5ef2aSThomas Huth                                 break;
4329fcf5ef2aSThomas Huth                             case 0x3: /* V9 wrasi */
4330fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4331fcf5ef2aSThomas Huth                                 tcg_gen_andi_tl(cpu_tmp0, cpu_tmp0, 0xff);
4332fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4333fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState, asi));
4334fcf5ef2aSThomas Huth                                 /* End TB to notice changed ASI.  */
4335fcf5ef2aSThomas Huth                                 save_state(dc);
4336fcf5ef2aSThomas Huth                                 gen_op_next_insn();
4337fcf5ef2aSThomas Huth                                 tcg_gen_exit_tb(0);
4338fcf5ef2aSThomas Huth                                 dc->is_br = 1;
4339fcf5ef2aSThomas Huth                                 break;
4340fcf5ef2aSThomas Huth                             case 0x6: /* V9 wrfprs */
4341fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4342fcf5ef2aSThomas Huth                                 tcg_gen_trunc_tl_i32(cpu_fprs, cpu_tmp0);
4343fcf5ef2aSThomas Huth                                 dc->fprs_dirty = 0;
4344fcf5ef2aSThomas Huth                                 save_state(dc);
4345fcf5ef2aSThomas Huth                                 gen_op_next_insn();
4346fcf5ef2aSThomas Huth                                 tcg_gen_exit_tb(0);
4347fcf5ef2aSThomas Huth                                 dc->is_br = 1;
4348fcf5ef2aSThomas Huth                                 break;
4349fcf5ef2aSThomas Huth                             case 0xf: /* V9 sir, nop if user */
4350fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
4351fcf5ef2aSThomas Huth                                 if (supervisor(dc)) {
4352fcf5ef2aSThomas Huth                                     ; // XXX
4353fcf5ef2aSThomas Huth                                 }
4354fcf5ef2aSThomas Huth #endif
4355fcf5ef2aSThomas Huth                                 break;
4356fcf5ef2aSThomas Huth                             case 0x13: /* Graphics Status */
4357fcf5ef2aSThomas Huth                                 if (gen_trap_ifnofpu(dc)) {
4358fcf5ef2aSThomas Huth                                     goto jmp_insn;
4359fcf5ef2aSThomas Huth                                 }
4360fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_gsr, cpu_src1, cpu_src2);
4361fcf5ef2aSThomas Huth                                 break;
4362fcf5ef2aSThomas Huth                             case 0x14: /* Softint set */
4363fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4364fcf5ef2aSThomas Huth                                     goto illegal_insn;
4365fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4366fcf5ef2aSThomas Huth                                 gen_helper_set_softint(cpu_env, cpu_tmp0);
4367fcf5ef2aSThomas Huth                                 break;
4368fcf5ef2aSThomas Huth                             case 0x15: /* Softint clear */
4369fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4370fcf5ef2aSThomas Huth                                     goto illegal_insn;
4371fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4372fcf5ef2aSThomas Huth                                 gen_helper_clear_softint(cpu_env, cpu_tmp0);
4373fcf5ef2aSThomas Huth                                 break;
4374fcf5ef2aSThomas Huth                             case 0x16: /* Softint write */
4375fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4376fcf5ef2aSThomas Huth                                     goto illegal_insn;
4377fcf5ef2aSThomas Huth                                 tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4378fcf5ef2aSThomas Huth                                 gen_helper_write_softint(cpu_env, cpu_tmp0);
4379fcf5ef2aSThomas Huth                                 break;
4380fcf5ef2aSThomas Huth                             case 0x17: /* Tick compare */
4381fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
4382fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4383fcf5ef2aSThomas Huth                                     goto illegal_insn;
4384fcf5ef2aSThomas Huth #endif
4385fcf5ef2aSThomas Huth                                 {
4386fcf5ef2aSThomas Huth                                     TCGv_ptr r_tickptr;
4387fcf5ef2aSThomas Huth 
4388fcf5ef2aSThomas Huth                                     tcg_gen_xor_tl(cpu_tick_cmpr, cpu_src1,
4389fcf5ef2aSThomas Huth                                                    cpu_src2);
4390fcf5ef2aSThomas Huth                                     r_tickptr = tcg_temp_new_ptr();
4391fcf5ef2aSThomas Huth                                     tcg_gen_ld_ptr(r_tickptr, cpu_env,
4392fcf5ef2aSThomas Huth                                                    offsetof(CPUSPARCState, tick));
4393fcf5ef2aSThomas Huth                                     gen_helper_tick_set_limit(r_tickptr,
4394fcf5ef2aSThomas Huth                                                               cpu_tick_cmpr);
4395fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tickptr);
4396fcf5ef2aSThomas Huth                                 }
4397fcf5ef2aSThomas Huth                                 break;
4398fcf5ef2aSThomas Huth                             case 0x18: /* System tick */
4399fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
4400fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4401fcf5ef2aSThomas Huth                                     goto illegal_insn;
4402fcf5ef2aSThomas Huth #endif
4403fcf5ef2aSThomas Huth                                 {
4404fcf5ef2aSThomas Huth                                     TCGv_ptr r_tickptr;
4405fcf5ef2aSThomas Huth 
4406fcf5ef2aSThomas Huth                                     tcg_gen_xor_tl(cpu_tmp0, cpu_src1,
4407fcf5ef2aSThomas Huth                                                    cpu_src2);
4408fcf5ef2aSThomas Huth                                     r_tickptr = tcg_temp_new_ptr();
4409fcf5ef2aSThomas Huth                                     tcg_gen_ld_ptr(r_tickptr, cpu_env,
4410fcf5ef2aSThomas Huth                                                    offsetof(CPUSPARCState, stick));
4411fcf5ef2aSThomas Huth                                     gen_helper_tick_set_count(r_tickptr,
4412fcf5ef2aSThomas Huth                                                               cpu_tmp0);
4413fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tickptr);
4414fcf5ef2aSThomas Huth                                 }
4415fcf5ef2aSThomas Huth                                 break;
4416fcf5ef2aSThomas Huth                             case 0x19: /* System tick compare */
4417fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
4418fcf5ef2aSThomas Huth                                 if (!supervisor(dc))
4419fcf5ef2aSThomas Huth                                     goto illegal_insn;
4420fcf5ef2aSThomas Huth #endif
4421fcf5ef2aSThomas Huth                                 {
4422fcf5ef2aSThomas Huth                                     TCGv_ptr r_tickptr;
4423fcf5ef2aSThomas Huth 
4424fcf5ef2aSThomas Huth                                     tcg_gen_xor_tl(cpu_stick_cmpr, cpu_src1,
4425fcf5ef2aSThomas Huth                                                    cpu_src2);
4426fcf5ef2aSThomas Huth                                     r_tickptr = tcg_temp_new_ptr();
4427fcf5ef2aSThomas Huth                                     tcg_gen_ld_ptr(r_tickptr, cpu_env,
4428fcf5ef2aSThomas Huth                                                    offsetof(CPUSPARCState, stick));
4429fcf5ef2aSThomas Huth                                     gen_helper_tick_set_limit(r_tickptr,
4430fcf5ef2aSThomas Huth                                                               cpu_stick_cmpr);
4431fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tickptr);
4432fcf5ef2aSThomas Huth                                 }
4433fcf5ef2aSThomas Huth                                 break;
4434fcf5ef2aSThomas Huth 
4435fcf5ef2aSThomas Huth                             case 0x10: /* Performance Control */
4436fcf5ef2aSThomas Huth                             case 0x11: /* Performance Instrumentation
4437fcf5ef2aSThomas Huth                                           Counter */
4438fcf5ef2aSThomas Huth                             case 0x12: /* Dispatch Control */
4439fcf5ef2aSThomas Huth #endif
4440fcf5ef2aSThomas Huth                             default:
4441fcf5ef2aSThomas Huth                                 goto illegal_insn;
4442fcf5ef2aSThomas Huth                             }
4443fcf5ef2aSThomas Huth                         }
4444fcf5ef2aSThomas Huth                         break;
4445fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
4446fcf5ef2aSThomas Huth                     case 0x31: /* wrpsr, V9 saved, restored */
4447fcf5ef2aSThomas Huth                         {
4448fcf5ef2aSThomas Huth                             if (!supervisor(dc))
4449fcf5ef2aSThomas Huth                                 goto priv_insn;
4450fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4451fcf5ef2aSThomas Huth                             switch (rd) {
4452fcf5ef2aSThomas Huth                             case 0:
4453fcf5ef2aSThomas Huth                                 gen_helper_saved(cpu_env);
4454fcf5ef2aSThomas Huth                                 break;
4455fcf5ef2aSThomas Huth                             case 1:
4456fcf5ef2aSThomas Huth                                 gen_helper_restored(cpu_env);
4457fcf5ef2aSThomas Huth                                 break;
4458fcf5ef2aSThomas Huth                             case 2: /* UA2005 allclean */
4459fcf5ef2aSThomas Huth                             case 3: /* UA2005 otherw */
4460fcf5ef2aSThomas Huth                             case 4: /* UA2005 normalw */
4461fcf5ef2aSThomas Huth                             case 5: /* UA2005 invalw */
4462fcf5ef2aSThomas Huth                                 // XXX
4463fcf5ef2aSThomas Huth                             default:
4464fcf5ef2aSThomas Huth                                 goto illegal_insn;
4465fcf5ef2aSThomas Huth                             }
4466fcf5ef2aSThomas Huth #else
4467fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4468fcf5ef2aSThomas Huth                             tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4469fcf5ef2aSThomas Huth                             gen_helper_wrpsr(cpu_env, cpu_tmp0);
4470fcf5ef2aSThomas Huth                             tcg_gen_movi_i32(cpu_cc_op, CC_OP_FLAGS);
4471fcf5ef2aSThomas Huth                             dc->cc_op = CC_OP_FLAGS;
4472fcf5ef2aSThomas Huth                             save_state(dc);
4473fcf5ef2aSThomas Huth                             gen_op_next_insn();
4474fcf5ef2aSThomas Huth                             tcg_gen_exit_tb(0);
4475fcf5ef2aSThomas Huth                             dc->is_br = 1;
4476fcf5ef2aSThomas Huth #endif
4477fcf5ef2aSThomas Huth                         }
4478fcf5ef2aSThomas Huth                         break;
4479fcf5ef2aSThomas Huth                     case 0x32: /* wrwim, V9 wrpr */
4480fcf5ef2aSThomas Huth                         {
4481fcf5ef2aSThomas Huth                             if (!supervisor(dc))
4482fcf5ef2aSThomas Huth                                 goto priv_insn;
4483fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4484fcf5ef2aSThomas Huth                             tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4485fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4486fcf5ef2aSThomas Huth                             switch (rd) {
4487fcf5ef2aSThomas Huth                             case 0: // tpc
4488fcf5ef2aSThomas Huth                                 {
4489fcf5ef2aSThomas Huth                                     TCGv_ptr r_tsptr;
4490fcf5ef2aSThomas Huth 
4491fcf5ef2aSThomas Huth                                     r_tsptr = tcg_temp_new_ptr();
4492fcf5ef2aSThomas Huth                                     gen_load_trap_state_at_tl(r_tsptr, cpu_env);
4493fcf5ef2aSThomas Huth                                     tcg_gen_st_tl(cpu_tmp0, r_tsptr,
4494fcf5ef2aSThomas Huth                                                   offsetof(trap_state, tpc));
4495fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tsptr);
4496fcf5ef2aSThomas Huth                                 }
4497fcf5ef2aSThomas Huth                                 break;
4498fcf5ef2aSThomas Huth                             case 1: // tnpc
4499fcf5ef2aSThomas Huth                                 {
4500fcf5ef2aSThomas Huth                                     TCGv_ptr r_tsptr;
4501fcf5ef2aSThomas Huth 
4502fcf5ef2aSThomas Huth                                     r_tsptr = tcg_temp_new_ptr();
4503fcf5ef2aSThomas Huth                                     gen_load_trap_state_at_tl(r_tsptr, cpu_env);
4504fcf5ef2aSThomas Huth                                     tcg_gen_st_tl(cpu_tmp0, r_tsptr,
4505fcf5ef2aSThomas Huth                                                   offsetof(trap_state, tnpc));
4506fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tsptr);
4507fcf5ef2aSThomas Huth                                 }
4508fcf5ef2aSThomas Huth                                 break;
4509fcf5ef2aSThomas Huth                             case 2: // tstate
4510fcf5ef2aSThomas Huth                                 {
4511fcf5ef2aSThomas Huth                                     TCGv_ptr r_tsptr;
4512fcf5ef2aSThomas Huth 
4513fcf5ef2aSThomas Huth                                     r_tsptr = tcg_temp_new_ptr();
4514fcf5ef2aSThomas Huth                                     gen_load_trap_state_at_tl(r_tsptr, cpu_env);
4515fcf5ef2aSThomas Huth                                     tcg_gen_st_tl(cpu_tmp0, r_tsptr,
4516fcf5ef2aSThomas Huth                                                   offsetof(trap_state,
4517fcf5ef2aSThomas Huth                                                            tstate));
4518fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tsptr);
4519fcf5ef2aSThomas Huth                                 }
4520fcf5ef2aSThomas Huth                                 break;
4521fcf5ef2aSThomas Huth                             case 3: // tt
4522fcf5ef2aSThomas Huth                                 {
4523fcf5ef2aSThomas Huth                                     TCGv_ptr r_tsptr;
4524fcf5ef2aSThomas Huth 
4525fcf5ef2aSThomas Huth                                     r_tsptr = tcg_temp_new_ptr();
4526fcf5ef2aSThomas Huth                                     gen_load_trap_state_at_tl(r_tsptr, cpu_env);
4527fcf5ef2aSThomas Huth                                     tcg_gen_st32_tl(cpu_tmp0, r_tsptr,
4528fcf5ef2aSThomas Huth                                                     offsetof(trap_state, tt));
4529fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tsptr);
4530fcf5ef2aSThomas Huth                                 }
4531fcf5ef2aSThomas Huth                                 break;
4532fcf5ef2aSThomas Huth                             case 4: // tick
4533fcf5ef2aSThomas Huth                                 {
4534fcf5ef2aSThomas Huth                                     TCGv_ptr r_tickptr;
4535fcf5ef2aSThomas Huth 
4536fcf5ef2aSThomas Huth                                     r_tickptr = tcg_temp_new_ptr();
4537fcf5ef2aSThomas Huth                                     tcg_gen_ld_ptr(r_tickptr, cpu_env,
4538fcf5ef2aSThomas Huth                                                    offsetof(CPUSPARCState, tick));
4539fcf5ef2aSThomas Huth                                     gen_helper_tick_set_count(r_tickptr,
4540fcf5ef2aSThomas Huth                                                               cpu_tmp0);
4541fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tickptr);
4542fcf5ef2aSThomas Huth                                 }
4543fcf5ef2aSThomas Huth                                 break;
4544fcf5ef2aSThomas Huth                             case 5: // tba
4545fcf5ef2aSThomas Huth                                 tcg_gen_mov_tl(cpu_tbr, cpu_tmp0);
4546fcf5ef2aSThomas Huth                                 break;
4547fcf5ef2aSThomas Huth                             case 6: // pstate
4548fcf5ef2aSThomas Huth                                 save_state(dc);
4549fcf5ef2aSThomas Huth                                 gen_helper_wrpstate(cpu_env, cpu_tmp0);
4550fcf5ef2aSThomas Huth                                 dc->npc = DYNAMIC_PC;
4551fcf5ef2aSThomas Huth                                 break;
4552fcf5ef2aSThomas Huth                             case 7: // tl
4553fcf5ef2aSThomas Huth                                 save_state(dc);
4554fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4555fcf5ef2aSThomas Huth                                                offsetof(CPUSPARCState, tl));
4556fcf5ef2aSThomas Huth                                 dc->npc = DYNAMIC_PC;
4557fcf5ef2aSThomas Huth                                 break;
4558fcf5ef2aSThomas Huth                             case 8: // pil
4559fcf5ef2aSThomas Huth                                 gen_helper_wrpil(cpu_env, cpu_tmp0);
4560fcf5ef2aSThomas Huth                                 break;
4561fcf5ef2aSThomas Huth                             case 9: // cwp
4562fcf5ef2aSThomas Huth                                 gen_helper_wrcwp(cpu_env, cpu_tmp0);
4563fcf5ef2aSThomas Huth                                 break;
4564fcf5ef2aSThomas Huth                             case 10: // cansave
4565fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4566fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState,
4567fcf5ef2aSThomas Huth                                                          cansave));
4568fcf5ef2aSThomas Huth                                 break;
4569fcf5ef2aSThomas Huth                             case 11: // canrestore
4570fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4571fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState,
4572fcf5ef2aSThomas Huth                                                          canrestore));
4573fcf5ef2aSThomas Huth                                 break;
4574fcf5ef2aSThomas Huth                             case 12: // cleanwin
4575fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4576fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState,
4577fcf5ef2aSThomas Huth                                                          cleanwin));
4578fcf5ef2aSThomas Huth                                 break;
4579fcf5ef2aSThomas Huth                             case 13: // otherwin
4580fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4581fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState,
4582fcf5ef2aSThomas Huth                                                          otherwin));
4583fcf5ef2aSThomas Huth                                 break;
4584fcf5ef2aSThomas Huth                             case 14: // wstate
4585fcf5ef2aSThomas Huth                                 tcg_gen_st32_tl(cpu_tmp0, cpu_env,
4586fcf5ef2aSThomas Huth                                                 offsetof(CPUSPARCState,
4587fcf5ef2aSThomas Huth                                                          wstate));
4588fcf5ef2aSThomas Huth                                 break;
4589fcf5ef2aSThomas Huth                             case 16: // UA2005 gl
4590fcf5ef2aSThomas Huth                                 CHECK_IU_FEATURE(dc, GL);
4591cbc3a6a4SArtyom Tarasenko                                 gen_helper_wrgl(cpu_env, cpu_tmp0);
4592fcf5ef2aSThomas Huth                                 break;
4593fcf5ef2aSThomas Huth                             case 26: // UA2005 strand status
4594fcf5ef2aSThomas Huth                                 CHECK_IU_FEATURE(dc, HYPV);
4595fcf5ef2aSThomas Huth                                 if (!hypervisor(dc))
4596fcf5ef2aSThomas Huth                                     goto priv_insn;
4597fcf5ef2aSThomas Huth                                 tcg_gen_mov_tl(cpu_ssr, cpu_tmp0);
4598fcf5ef2aSThomas Huth                                 break;
4599fcf5ef2aSThomas Huth                             default:
4600fcf5ef2aSThomas Huth                                 goto illegal_insn;
4601fcf5ef2aSThomas Huth                             }
4602fcf5ef2aSThomas Huth #else
4603fcf5ef2aSThomas Huth                             tcg_gen_trunc_tl_i32(cpu_wim, cpu_tmp0);
4604fcf5ef2aSThomas Huth                             if (dc->def->nwindows != 32) {
4605fcf5ef2aSThomas Huth                                 tcg_gen_andi_tl(cpu_wim, cpu_wim,
4606fcf5ef2aSThomas Huth                                                 (1 << dc->def->nwindows) - 1);
4607fcf5ef2aSThomas Huth                             }
4608fcf5ef2aSThomas Huth #endif
4609fcf5ef2aSThomas Huth                         }
4610fcf5ef2aSThomas Huth                         break;
4611fcf5ef2aSThomas Huth                     case 0x33: /* wrtbr, UA2005 wrhpr */
4612fcf5ef2aSThomas Huth                         {
4613fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
4614fcf5ef2aSThomas Huth                             if (!supervisor(dc))
4615fcf5ef2aSThomas Huth                                 goto priv_insn;
4616fcf5ef2aSThomas Huth                             tcg_gen_xor_tl(cpu_tbr, cpu_src1, cpu_src2);
4617fcf5ef2aSThomas Huth #else
4618fcf5ef2aSThomas Huth                             CHECK_IU_FEATURE(dc, HYPV);
4619fcf5ef2aSThomas Huth                             if (!hypervisor(dc))
4620fcf5ef2aSThomas Huth                                 goto priv_insn;
4621fcf5ef2aSThomas Huth                             cpu_tmp0 = get_temp_tl(dc);
4622fcf5ef2aSThomas Huth                             tcg_gen_xor_tl(cpu_tmp0, cpu_src1, cpu_src2);
4623fcf5ef2aSThomas Huth                             switch (rd) {
4624fcf5ef2aSThomas Huth                             case 0: // hpstate
4625f7f17ef7SArtyom Tarasenko                                 tcg_gen_st_i64(cpu_tmp0, cpu_env,
4626f7f17ef7SArtyom Tarasenko                                                offsetof(CPUSPARCState,
4627f7f17ef7SArtyom Tarasenko                                                         hpstate));
4628fcf5ef2aSThomas Huth                                 save_state(dc);
4629fcf5ef2aSThomas Huth                                 gen_op_next_insn();
4630fcf5ef2aSThomas Huth                                 tcg_gen_exit_tb(0);
4631fcf5ef2aSThomas Huth                                 dc->is_br = 1;
4632fcf5ef2aSThomas Huth                                 break;
4633fcf5ef2aSThomas Huth                             case 1: // htstate
4634fcf5ef2aSThomas Huth                                 // XXX gen_op_wrhtstate();
4635fcf5ef2aSThomas Huth                                 break;
4636fcf5ef2aSThomas Huth                             case 3: // hintp
4637fcf5ef2aSThomas Huth                                 tcg_gen_mov_tl(cpu_hintp, cpu_tmp0);
4638fcf5ef2aSThomas Huth                                 break;
4639fcf5ef2aSThomas Huth                             case 5: // htba
4640fcf5ef2aSThomas Huth                                 tcg_gen_mov_tl(cpu_htba, cpu_tmp0);
4641fcf5ef2aSThomas Huth                                 break;
4642fcf5ef2aSThomas Huth                             case 31: // hstick_cmpr
4643fcf5ef2aSThomas Huth                                 {
4644fcf5ef2aSThomas Huth                                     TCGv_ptr r_tickptr;
4645fcf5ef2aSThomas Huth 
4646fcf5ef2aSThomas Huth                                     tcg_gen_mov_tl(cpu_hstick_cmpr, cpu_tmp0);
4647fcf5ef2aSThomas Huth                                     r_tickptr = tcg_temp_new_ptr();
4648fcf5ef2aSThomas Huth                                     tcg_gen_ld_ptr(r_tickptr, cpu_env,
4649fcf5ef2aSThomas Huth                                                    offsetof(CPUSPARCState, hstick));
4650fcf5ef2aSThomas Huth                                     gen_helper_tick_set_limit(r_tickptr,
4651fcf5ef2aSThomas Huth                                                               cpu_hstick_cmpr);
4652fcf5ef2aSThomas Huth                                     tcg_temp_free_ptr(r_tickptr);
4653fcf5ef2aSThomas Huth                                 }
4654fcf5ef2aSThomas Huth                                 break;
4655fcf5ef2aSThomas Huth                             case 6: // hver readonly
4656fcf5ef2aSThomas Huth                             default:
4657fcf5ef2aSThomas Huth                                 goto illegal_insn;
4658fcf5ef2aSThomas Huth                             }
4659fcf5ef2aSThomas Huth #endif
4660fcf5ef2aSThomas Huth                         }
4661fcf5ef2aSThomas Huth                         break;
4662fcf5ef2aSThomas Huth #endif
4663fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4664fcf5ef2aSThomas Huth                     case 0x2c: /* V9 movcc */
4665fcf5ef2aSThomas Huth                         {
4666fcf5ef2aSThomas Huth                             int cc = GET_FIELD_SP(insn, 11, 12);
4667fcf5ef2aSThomas Huth                             int cond = GET_FIELD_SP(insn, 14, 17);
4668fcf5ef2aSThomas Huth                             DisasCompare cmp;
4669fcf5ef2aSThomas Huth                             TCGv dst;
4670fcf5ef2aSThomas Huth 
4671fcf5ef2aSThomas Huth                             if (insn & (1 << 18)) {
4672fcf5ef2aSThomas Huth                                 if (cc == 0) {
4673fcf5ef2aSThomas Huth                                     gen_compare(&cmp, 0, cond, dc);
4674fcf5ef2aSThomas Huth                                 } else if (cc == 2) {
4675fcf5ef2aSThomas Huth                                     gen_compare(&cmp, 1, cond, dc);
4676fcf5ef2aSThomas Huth                                 } else {
4677fcf5ef2aSThomas Huth                                     goto illegal_insn;
4678fcf5ef2aSThomas Huth                                 }
4679fcf5ef2aSThomas Huth                             } else {
4680fcf5ef2aSThomas Huth                                 gen_fcompare(&cmp, cc, cond);
4681fcf5ef2aSThomas Huth                             }
4682fcf5ef2aSThomas Huth 
4683fcf5ef2aSThomas Huth                             /* The get_src2 above loaded the normal 13-bit
4684fcf5ef2aSThomas Huth                                immediate field, not the 11-bit field we have
4685fcf5ef2aSThomas Huth                                in movcc.  But it did handle the reg case.  */
4686fcf5ef2aSThomas Huth                             if (IS_IMM) {
4687fcf5ef2aSThomas Huth                                 simm = GET_FIELD_SPs(insn, 0, 10);
4688fcf5ef2aSThomas Huth                                 tcg_gen_movi_tl(cpu_src2, simm);
4689fcf5ef2aSThomas Huth                             }
4690fcf5ef2aSThomas Huth 
4691fcf5ef2aSThomas Huth                             dst = gen_load_gpr(dc, rd);
4692fcf5ef2aSThomas Huth                             tcg_gen_movcond_tl(cmp.cond, dst,
4693fcf5ef2aSThomas Huth                                                cmp.c1, cmp.c2,
4694fcf5ef2aSThomas Huth                                                cpu_src2, dst);
4695fcf5ef2aSThomas Huth                             free_compare(&cmp);
4696fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, dst);
4697fcf5ef2aSThomas Huth                             break;
4698fcf5ef2aSThomas Huth                         }
4699fcf5ef2aSThomas Huth                     case 0x2d: /* V9 sdivx */
4700fcf5ef2aSThomas Huth                         gen_helper_sdivx(cpu_dst, cpu_env, cpu_src1, cpu_src2);
4701fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4702fcf5ef2aSThomas Huth                         break;
4703fcf5ef2aSThomas Huth                     case 0x2e: /* V9 popc */
470408da3180SRichard Henderson                         tcg_gen_ctpop_tl(cpu_dst, cpu_src2);
4705fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, cpu_dst);
4706fcf5ef2aSThomas Huth                         break;
4707fcf5ef2aSThomas Huth                     case 0x2f: /* V9 movr */
4708fcf5ef2aSThomas Huth                         {
4709fcf5ef2aSThomas Huth                             int cond = GET_FIELD_SP(insn, 10, 12);
4710fcf5ef2aSThomas Huth                             DisasCompare cmp;
4711fcf5ef2aSThomas Huth                             TCGv dst;
4712fcf5ef2aSThomas Huth 
4713fcf5ef2aSThomas Huth                             gen_compare_reg(&cmp, cond, cpu_src1);
4714fcf5ef2aSThomas Huth 
4715fcf5ef2aSThomas Huth                             /* The get_src2 above loaded the normal 13-bit
4716fcf5ef2aSThomas Huth                                immediate field, not the 10-bit field we have
4717fcf5ef2aSThomas Huth                                in movr.  But it did handle the reg case.  */
4718fcf5ef2aSThomas Huth                             if (IS_IMM) {
4719fcf5ef2aSThomas Huth                                 simm = GET_FIELD_SPs(insn, 0, 9);
4720fcf5ef2aSThomas Huth                                 tcg_gen_movi_tl(cpu_src2, simm);
4721fcf5ef2aSThomas Huth                             }
4722fcf5ef2aSThomas Huth 
4723fcf5ef2aSThomas Huth                             dst = gen_load_gpr(dc, rd);
4724fcf5ef2aSThomas Huth                             tcg_gen_movcond_tl(cmp.cond, dst,
4725fcf5ef2aSThomas Huth                                                cmp.c1, cmp.c2,
4726fcf5ef2aSThomas Huth                                                cpu_src2, dst);
4727fcf5ef2aSThomas Huth                             free_compare(&cmp);
4728fcf5ef2aSThomas Huth                             gen_store_gpr(dc, rd, dst);
4729fcf5ef2aSThomas Huth                             break;
4730fcf5ef2aSThomas Huth                         }
4731fcf5ef2aSThomas Huth #endif
4732fcf5ef2aSThomas Huth                     default:
4733fcf5ef2aSThomas Huth                         goto illegal_insn;
4734fcf5ef2aSThomas Huth                     }
4735fcf5ef2aSThomas Huth                 }
4736fcf5ef2aSThomas Huth             } else if (xop == 0x36) { /* UltraSparc shutdown, VIS, V8 CPop1 */
4737fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
4738fcf5ef2aSThomas Huth                 int opf = GET_FIELD_SP(insn, 5, 13);
4739fcf5ef2aSThomas Huth                 rs1 = GET_FIELD(insn, 13, 17);
4740fcf5ef2aSThomas Huth                 rs2 = GET_FIELD(insn, 27, 31);
4741fcf5ef2aSThomas Huth                 if (gen_trap_ifnofpu(dc)) {
4742fcf5ef2aSThomas Huth                     goto jmp_insn;
4743fcf5ef2aSThomas Huth                 }
4744fcf5ef2aSThomas Huth 
4745fcf5ef2aSThomas Huth                 switch (opf) {
4746fcf5ef2aSThomas Huth                 case 0x000: /* VIS I edge8cc */
4747fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4748fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4749fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4750fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 8, 1, 0);
4751fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4752fcf5ef2aSThomas Huth                     break;
4753fcf5ef2aSThomas Huth                 case 0x001: /* VIS II edge8n */
4754fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4755fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4756fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4757fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 8, 0, 0);
4758fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4759fcf5ef2aSThomas Huth                     break;
4760fcf5ef2aSThomas Huth                 case 0x002: /* VIS I edge8lcc */
4761fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4762fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4763fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4764fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 8, 1, 1);
4765fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4766fcf5ef2aSThomas Huth                     break;
4767fcf5ef2aSThomas Huth                 case 0x003: /* VIS II edge8ln */
4768fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4769fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4770fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4771fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 8, 0, 1);
4772fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4773fcf5ef2aSThomas Huth                     break;
4774fcf5ef2aSThomas Huth                 case 0x004: /* VIS I edge16cc */
4775fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4776fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4777fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4778fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 16, 1, 0);
4779fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4780fcf5ef2aSThomas Huth                     break;
4781fcf5ef2aSThomas Huth                 case 0x005: /* VIS II edge16n */
4782fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4783fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4784fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4785fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 16, 0, 0);
4786fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4787fcf5ef2aSThomas Huth                     break;
4788fcf5ef2aSThomas Huth                 case 0x006: /* VIS I edge16lcc */
4789fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4790fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4791fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4792fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 16, 1, 1);
4793fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4794fcf5ef2aSThomas Huth                     break;
4795fcf5ef2aSThomas Huth                 case 0x007: /* VIS II edge16ln */
4796fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4797fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4798fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4799fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 16, 0, 1);
4800fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4801fcf5ef2aSThomas Huth                     break;
4802fcf5ef2aSThomas Huth                 case 0x008: /* VIS I edge32cc */
4803fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4804fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4805fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4806fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 32, 1, 0);
4807fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4808fcf5ef2aSThomas Huth                     break;
4809fcf5ef2aSThomas Huth                 case 0x009: /* VIS II edge32n */
4810fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4811fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4812fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4813fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 32, 0, 0);
4814fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4815fcf5ef2aSThomas Huth                     break;
4816fcf5ef2aSThomas Huth                 case 0x00a: /* VIS I edge32lcc */
4817fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4818fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4819fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4820fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 32, 1, 1);
4821fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4822fcf5ef2aSThomas Huth                     break;
4823fcf5ef2aSThomas Huth                 case 0x00b: /* VIS II edge32ln */
4824fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4825fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4826fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4827fcf5ef2aSThomas Huth                     gen_edge(dc, cpu_dst, cpu_src1, cpu_src2, 32, 0, 1);
4828fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4829fcf5ef2aSThomas Huth                     break;
4830fcf5ef2aSThomas Huth                 case 0x010: /* VIS I array8 */
4831fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4832fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4833fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4834fcf5ef2aSThomas Huth                     gen_helper_array8(cpu_dst, cpu_src1, cpu_src2);
4835fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4836fcf5ef2aSThomas Huth                     break;
4837fcf5ef2aSThomas Huth                 case 0x012: /* VIS I array16 */
4838fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4839fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4840fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4841fcf5ef2aSThomas Huth                     gen_helper_array8(cpu_dst, cpu_src1, cpu_src2);
4842fcf5ef2aSThomas Huth                     tcg_gen_shli_i64(cpu_dst, cpu_dst, 1);
4843fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4844fcf5ef2aSThomas Huth                     break;
4845fcf5ef2aSThomas Huth                 case 0x014: /* VIS I array32 */
4846fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4847fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4848fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4849fcf5ef2aSThomas Huth                     gen_helper_array8(cpu_dst, cpu_src1, cpu_src2);
4850fcf5ef2aSThomas Huth                     tcg_gen_shli_i64(cpu_dst, cpu_dst, 2);
4851fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4852fcf5ef2aSThomas Huth                     break;
4853fcf5ef2aSThomas Huth                 case 0x018: /* VIS I alignaddr */
4854fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4855fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4856fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4857fcf5ef2aSThomas Huth                     gen_alignaddr(cpu_dst, cpu_src1, cpu_src2, 0);
4858fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4859fcf5ef2aSThomas Huth                     break;
4860fcf5ef2aSThomas Huth                 case 0x01a: /* VIS I alignaddrl */
4861fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4862fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4863fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4864fcf5ef2aSThomas Huth                     gen_alignaddr(cpu_dst, cpu_src1, cpu_src2, 1);
4865fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4866fcf5ef2aSThomas Huth                     break;
4867fcf5ef2aSThomas Huth                 case 0x019: /* VIS II bmask */
4868fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4869fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rs1);
4870fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
4871fcf5ef2aSThomas Huth                     tcg_gen_add_tl(cpu_dst, cpu_src1, cpu_src2);
4872fcf5ef2aSThomas Huth                     tcg_gen_deposit_tl(cpu_gsr, cpu_gsr, cpu_dst, 32, 32);
4873fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4874fcf5ef2aSThomas Huth                     break;
4875fcf5ef2aSThomas Huth                 case 0x020: /* VIS I fcmple16 */
4876fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4877fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4878fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4879fcf5ef2aSThomas Huth                     gen_helper_fcmple16(cpu_dst, cpu_src1_64, cpu_src2_64);
4880fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4881fcf5ef2aSThomas Huth                     break;
4882fcf5ef2aSThomas Huth                 case 0x022: /* VIS I fcmpne16 */
4883fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4884fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4885fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4886fcf5ef2aSThomas Huth                     gen_helper_fcmpne16(cpu_dst, cpu_src1_64, cpu_src2_64);
4887fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4888fcf5ef2aSThomas Huth                     break;
4889fcf5ef2aSThomas Huth                 case 0x024: /* VIS I fcmple32 */
4890fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4891fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4892fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4893fcf5ef2aSThomas Huth                     gen_helper_fcmple32(cpu_dst, cpu_src1_64, cpu_src2_64);
4894fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4895fcf5ef2aSThomas Huth                     break;
4896fcf5ef2aSThomas Huth                 case 0x026: /* VIS I fcmpne32 */
4897fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4898fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4899fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4900fcf5ef2aSThomas Huth                     gen_helper_fcmpne32(cpu_dst, cpu_src1_64, cpu_src2_64);
4901fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4902fcf5ef2aSThomas Huth                     break;
4903fcf5ef2aSThomas Huth                 case 0x028: /* VIS I fcmpgt16 */
4904fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4905fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4906fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4907fcf5ef2aSThomas Huth                     gen_helper_fcmpgt16(cpu_dst, cpu_src1_64, cpu_src2_64);
4908fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4909fcf5ef2aSThomas Huth                     break;
4910fcf5ef2aSThomas Huth                 case 0x02a: /* VIS I fcmpeq16 */
4911fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4912fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4913fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4914fcf5ef2aSThomas Huth                     gen_helper_fcmpeq16(cpu_dst, cpu_src1_64, cpu_src2_64);
4915fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4916fcf5ef2aSThomas Huth                     break;
4917fcf5ef2aSThomas Huth                 case 0x02c: /* VIS I fcmpgt32 */
4918fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4919fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4920fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4921fcf5ef2aSThomas Huth                     gen_helper_fcmpgt32(cpu_dst, cpu_src1_64, cpu_src2_64);
4922fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4923fcf5ef2aSThomas Huth                     break;
4924fcf5ef2aSThomas Huth                 case 0x02e: /* VIS I fcmpeq32 */
4925fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4926fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
4927fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_D(dc, rs2);
4928fcf5ef2aSThomas Huth                     gen_helper_fcmpeq32(cpu_dst, cpu_src1_64, cpu_src2_64);
4929fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_dst);
4930fcf5ef2aSThomas Huth                     break;
4931fcf5ef2aSThomas Huth                 case 0x031: /* VIS I fmul8x16 */
4932fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4933fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmul8x16);
4934fcf5ef2aSThomas Huth                     break;
4935fcf5ef2aSThomas Huth                 case 0x033: /* VIS I fmul8x16au */
4936fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4937fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmul8x16au);
4938fcf5ef2aSThomas Huth                     break;
4939fcf5ef2aSThomas Huth                 case 0x035: /* VIS I fmul8x16al */
4940fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4941fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmul8x16al);
4942fcf5ef2aSThomas Huth                     break;
4943fcf5ef2aSThomas Huth                 case 0x036: /* VIS I fmul8sux16 */
4944fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4945fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmul8sux16);
4946fcf5ef2aSThomas Huth                     break;
4947fcf5ef2aSThomas Huth                 case 0x037: /* VIS I fmul8ulx16 */
4948fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4949fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmul8ulx16);
4950fcf5ef2aSThomas Huth                     break;
4951fcf5ef2aSThomas Huth                 case 0x038: /* VIS I fmuld8sux16 */
4952fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4953fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmuld8sux16);
4954fcf5ef2aSThomas Huth                     break;
4955fcf5ef2aSThomas Huth                 case 0x039: /* VIS I fmuld8ulx16 */
4956fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4957fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fmuld8ulx16);
4958fcf5ef2aSThomas Huth                     break;
4959fcf5ef2aSThomas Huth                 case 0x03a: /* VIS I fpack32 */
4960fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4961fcf5ef2aSThomas Huth                     gen_gsr_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpack32);
4962fcf5ef2aSThomas Huth                     break;
4963fcf5ef2aSThomas Huth                 case 0x03b: /* VIS I fpack16 */
4964fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4965fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs2);
4966fcf5ef2aSThomas Huth                     cpu_dst_32 = gen_dest_fpr_F(dc);
4967fcf5ef2aSThomas Huth                     gen_helper_fpack16(cpu_dst_32, cpu_gsr, cpu_src1_64);
4968fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_dst_32);
4969fcf5ef2aSThomas Huth                     break;
4970fcf5ef2aSThomas Huth                 case 0x03d: /* VIS I fpackfix */
4971fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4972fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs2);
4973fcf5ef2aSThomas Huth                     cpu_dst_32 = gen_dest_fpr_F(dc);
4974fcf5ef2aSThomas Huth                     gen_helper_fpackfix(cpu_dst_32, cpu_gsr, cpu_src1_64);
4975fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_dst_32);
4976fcf5ef2aSThomas Huth                     break;
4977fcf5ef2aSThomas Huth                 case 0x03e: /* VIS I pdist */
4978fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4979fcf5ef2aSThomas Huth                     gen_ne_fop_DDDD(dc, rd, rs1, rs2, gen_helper_pdist);
4980fcf5ef2aSThomas Huth                     break;
4981fcf5ef2aSThomas Huth                 case 0x048: /* VIS I faligndata */
4982fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4983fcf5ef2aSThomas Huth                     gen_gsr_fop_DDD(dc, rd, rs1, rs2, gen_faligndata);
4984fcf5ef2aSThomas Huth                     break;
4985fcf5ef2aSThomas Huth                 case 0x04b: /* VIS I fpmerge */
4986fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4987fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpmerge);
4988fcf5ef2aSThomas Huth                     break;
4989fcf5ef2aSThomas Huth                 case 0x04c: /* VIS II bshuffle */
4990fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS2);
4991fcf5ef2aSThomas Huth                     gen_gsr_fop_DDD(dc, rd, rs1, rs2, gen_helper_bshuffle);
4992fcf5ef2aSThomas Huth                     break;
4993fcf5ef2aSThomas Huth                 case 0x04d: /* VIS I fexpand */
4994fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4995fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fexpand);
4996fcf5ef2aSThomas Huth                     break;
4997fcf5ef2aSThomas Huth                 case 0x050: /* VIS I fpadd16 */
4998fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
4999fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpadd16);
5000fcf5ef2aSThomas Huth                     break;
5001fcf5ef2aSThomas Huth                 case 0x051: /* VIS I fpadd16s */
5002fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5003fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, gen_helper_fpadd16s);
5004fcf5ef2aSThomas Huth                     break;
5005fcf5ef2aSThomas Huth                 case 0x052: /* VIS I fpadd32 */
5006fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5007fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpadd32);
5008fcf5ef2aSThomas Huth                     break;
5009fcf5ef2aSThomas Huth                 case 0x053: /* VIS I fpadd32s */
5010fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5011fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_add_i32);
5012fcf5ef2aSThomas Huth                     break;
5013fcf5ef2aSThomas Huth                 case 0x054: /* VIS I fpsub16 */
5014fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5015fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpsub16);
5016fcf5ef2aSThomas Huth                     break;
5017fcf5ef2aSThomas Huth                 case 0x055: /* VIS I fpsub16s */
5018fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5019fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, gen_helper_fpsub16s);
5020fcf5ef2aSThomas Huth                     break;
5021fcf5ef2aSThomas Huth                 case 0x056: /* VIS I fpsub32 */
5022fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5023fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, gen_helper_fpsub32);
5024fcf5ef2aSThomas Huth                     break;
5025fcf5ef2aSThomas Huth                 case 0x057: /* VIS I fpsub32s */
5026fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5027fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_sub_i32);
5028fcf5ef2aSThomas Huth                     break;
5029fcf5ef2aSThomas Huth                 case 0x060: /* VIS I fzero */
5030fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5031fcf5ef2aSThomas Huth                     cpu_dst_64 = gen_dest_fpr_D(dc, rd);
5032fcf5ef2aSThomas Huth                     tcg_gen_movi_i64(cpu_dst_64, 0);
5033fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_dst_64);
5034fcf5ef2aSThomas Huth                     break;
5035fcf5ef2aSThomas Huth                 case 0x061: /* VIS I fzeros */
5036fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5037fcf5ef2aSThomas Huth                     cpu_dst_32 = gen_dest_fpr_F(dc);
5038fcf5ef2aSThomas Huth                     tcg_gen_movi_i32(cpu_dst_32, 0);
5039fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_dst_32);
5040fcf5ef2aSThomas Huth                     break;
5041fcf5ef2aSThomas Huth                 case 0x062: /* VIS I fnor */
5042fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5043fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_nor_i64);
5044fcf5ef2aSThomas Huth                     break;
5045fcf5ef2aSThomas Huth                 case 0x063: /* VIS I fnors */
5046fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5047fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_nor_i32);
5048fcf5ef2aSThomas Huth                     break;
5049fcf5ef2aSThomas Huth                 case 0x064: /* VIS I fandnot2 */
5050fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5051fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_andc_i64);
5052fcf5ef2aSThomas Huth                     break;
5053fcf5ef2aSThomas Huth                 case 0x065: /* VIS I fandnot2s */
5054fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5055fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_andc_i32);
5056fcf5ef2aSThomas Huth                     break;
5057fcf5ef2aSThomas Huth                 case 0x066: /* VIS I fnot2 */
5058fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5059fcf5ef2aSThomas Huth                     gen_ne_fop_DD(dc, rd, rs2, tcg_gen_not_i64);
5060fcf5ef2aSThomas Huth                     break;
5061fcf5ef2aSThomas Huth                 case 0x067: /* VIS I fnot2s */
5062fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5063fcf5ef2aSThomas Huth                     gen_ne_fop_FF(dc, rd, rs2, tcg_gen_not_i32);
5064fcf5ef2aSThomas Huth                     break;
5065fcf5ef2aSThomas Huth                 case 0x068: /* VIS I fandnot1 */
5066fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5067fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs2, rs1, tcg_gen_andc_i64);
5068fcf5ef2aSThomas Huth                     break;
5069fcf5ef2aSThomas Huth                 case 0x069: /* VIS I fandnot1s */
5070fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5071fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs2, rs1, tcg_gen_andc_i32);
5072fcf5ef2aSThomas Huth                     break;
5073fcf5ef2aSThomas Huth                 case 0x06a: /* VIS I fnot1 */
5074fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5075fcf5ef2aSThomas Huth                     gen_ne_fop_DD(dc, rd, rs1, tcg_gen_not_i64);
5076fcf5ef2aSThomas Huth                     break;
5077fcf5ef2aSThomas Huth                 case 0x06b: /* VIS I fnot1s */
5078fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5079fcf5ef2aSThomas Huth                     gen_ne_fop_FF(dc, rd, rs1, tcg_gen_not_i32);
5080fcf5ef2aSThomas Huth                     break;
5081fcf5ef2aSThomas Huth                 case 0x06c: /* VIS I fxor */
5082fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5083fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_xor_i64);
5084fcf5ef2aSThomas Huth                     break;
5085fcf5ef2aSThomas Huth                 case 0x06d: /* VIS I fxors */
5086fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5087fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_xor_i32);
5088fcf5ef2aSThomas Huth                     break;
5089fcf5ef2aSThomas Huth                 case 0x06e: /* VIS I fnand */
5090fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5091fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_nand_i64);
5092fcf5ef2aSThomas Huth                     break;
5093fcf5ef2aSThomas Huth                 case 0x06f: /* VIS I fnands */
5094fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5095fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_nand_i32);
5096fcf5ef2aSThomas Huth                     break;
5097fcf5ef2aSThomas Huth                 case 0x070: /* VIS I fand */
5098fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5099fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_and_i64);
5100fcf5ef2aSThomas Huth                     break;
5101fcf5ef2aSThomas Huth                 case 0x071: /* VIS I fands */
5102fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5103fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_and_i32);
5104fcf5ef2aSThomas Huth                     break;
5105fcf5ef2aSThomas Huth                 case 0x072: /* VIS I fxnor */
5106fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5107fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_eqv_i64);
5108fcf5ef2aSThomas Huth                     break;
5109fcf5ef2aSThomas Huth                 case 0x073: /* VIS I fxnors */
5110fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5111fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_eqv_i32);
5112fcf5ef2aSThomas Huth                     break;
5113fcf5ef2aSThomas Huth                 case 0x074: /* VIS I fsrc1 */
5114fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5115fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs1);
5116fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_src1_64);
5117fcf5ef2aSThomas Huth                     break;
5118fcf5ef2aSThomas Huth                 case 0x075: /* VIS I fsrc1s */
5119fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5120fcf5ef2aSThomas Huth                     cpu_src1_32 = gen_load_fpr_F(dc, rs1);
5121fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_src1_32);
5122fcf5ef2aSThomas Huth                     break;
5123fcf5ef2aSThomas Huth                 case 0x076: /* VIS I fornot2 */
5124fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5125fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_orc_i64);
5126fcf5ef2aSThomas Huth                     break;
5127fcf5ef2aSThomas Huth                 case 0x077: /* VIS I fornot2s */
5128fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5129fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_orc_i32);
5130fcf5ef2aSThomas Huth                     break;
5131fcf5ef2aSThomas Huth                 case 0x078: /* VIS I fsrc2 */
5132fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5133fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rs2);
5134fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_src1_64);
5135fcf5ef2aSThomas Huth                     break;
5136fcf5ef2aSThomas Huth                 case 0x079: /* VIS I fsrc2s */
5137fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5138fcf5ef2aSThomas Huth                     cpu_src1_32 = gen_load_fpr_F(dc, rs2);
5139fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_src1_32);
5140fcf5ef2aSThomas Huth                     break;
5141fcf5ef2aSThomas Huth                 case 0x07a: /* VIS I fornot1 */
5142fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5143fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs2, rs1, tcg_gen_orc_i64);
5144fcf5ef2aSThomas Huth                     break;
5145fcf5ef2aSThomas Huth                 case 0x07b: /* VIS I fornot1s */
5146fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5147fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs2, rs1, tcg_gen_orc_i32);
5148fcf5ef2aSThomas Huth                     break;
5149fcf5ef2aSThomas Huth                 case 0x07c: /* VIS I for */
5150fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5151fcf5ef2aSThomas Huth                     gen_ne_fop_DDD(dc, rd, rs1, rs2, tcg_gen_or_i64);
5152fcf5ef2aSThomas Huth                     break;
5153fcf5ef2aSThomas Huth                 case 0x07d: /* VIS I fors */
5154fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5155fcf5ef2aSThomas Huth                     gen_ne_fop_FFF(dc, rd, rs1, rs2, tcg_gen_or_i32);
5156fcf5ef2aSThomas Huth                     break;
5157fcf5ef2aSThomas Huth                 case 0x07e: /* VIS I fone */
5158fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5159fcf5ef2aSThomas Huth                     cpu_dst_64 = gen_dest_fpr_D(dc, rd);
5160fcf5ef2aSThomas Huth                     tcg_gen_movi_i64(cpu_dst_64, -1);
5161fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_dst_64);
5162fcf5ef2aSThomas Huth                     break;
5163fcf5ef2aSThomas Huth                 case 0x07f: /* VIS I fones */
5164fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, VIS1);
5165fcf5ef2aSThomas Huth                     cpu_dst_32 = gen_dest_fpr_F(dc);
5166fcf5ef2aSThomas Huth                     tcg_gen_movi_i32(cpu_dst_32, -1);
5167fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_dst_32);
5168fcf5ef2aSThomas Huth                     break;
5169fcf5ef2aSThomas Huth                 case 0x080: /* VIS I shutdown */
5170fcf5ef2aSThomas Huth                 case 0x081: /* VIS II siam */
5171fcf5ef2aSThomas Huth                     // XXX
5172fcf5ef2aSThomas Huth                     goto illegal_insn;
5173fcf5ef2aSThomas Huth                 default:
5174fcf5ef2aSThomas Huth                     goto illegal_insn;
5175fcf5ef2aSThomas Huth                 }
5176fcf5ef2aSThomas Huth #else
5177fcf5ef2aSThomas Huth                 goto ncp_insn;
5178fcf5ef2aSThomas Huth #endif
5179fcf5ef2aSThomas Huth             } else if (xop == 0x37) { /* V8 CPop2, V9 impdep2 */
5180fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5181fcf5ef2aSThomas Huth                 goto illegal_insn;
5182fcf5ef2aSThomas Huth #else
5183fcf5ef2aSThomas Huth                 goto ncp_insn;
5184fcf5ef2aSThomas Huth #endif
5185fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5186fcf5ef2aSThomas Huth             } else if (xop == 0x39) { /* V9 return */
5187fcf5ef2aSThomas Huth                 save_state(dc);
5188fcf5ef2aSThomas Huth                 cpu_src1 = get_src1(dc, insn);
5189fcf5ef2aSThomas Huth                 cpu_tmp0 = get_temp_tl(dc);
5190fcf5ef2aSThomas Huth                 if (IS_IMM) {   /* immediate */
5191fcf5ef2aSThomas Huth                     simm = GET_FIELDs(insn, 19, 31);
5192fcf5ef2aSThomas Huth                     tcg_gen_addi_tl(cpu_tmp0, cpu_src1, simm);
5193fcf5ef2aSThomas Huth                 } else {                /* register */
5194fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
5195fcf5ef2aSThomas Huth                     if (rs2) {
5196fcf5ef2aSThomas Huth                         cpu_src2 = gen_load_gpr(dc, rs2);
5197fcf5ef2aSThomas Huth                         tcg_gen_add_tl(cpu_tmp0, cpu_src1, cpu_src2);
5198fcf5ef2aSThomas Huth                     } else {
5199fcf5ef2aSThomas Huth                         tcg_gen_mov_tl(cpu_tmp0, cpu_src1);
5200fcf5ef2aSThomas Huth                     }
5201fcf5ef2aSThomas Huth                 }
5202fcf5ef2aSThomas Huth                 gen_helper_restore(cpu_env);
5203fcf5ef2aSThomas Huth                 gen_mov_pc_npc(dc);
5204fcf5ef2aSThomas Huth                 gen_check_align(cpu_tmp0, 3);
5205fcf5ef2aSThomas Huth                 tcg_gen_mov_tl(cpu_npc, cpu_tmp0);
5206fcf5ef2aSThomas Huth                 dc->npc = DYNAMIC_PC;
5207fcf5ef2aSThomas Huth                 goto jmp_insn;
5208fcf5ef2aSThomas Huth #endif
5209fcf5ef2aSThomas Huth             } else {
5210fcf5ef2aSThomas Huth                 cpu_src1 = get_src1(dc, insn);
5211fcf5ef2aSThomas Huth                 cpu_tmp0 = get_temp_tl(dc);
5212fcf5ef2aSThomas Huth                 if (IS_IMM) {   /* immediate */
5213fcf5ef2aSThomas Huth                     simm = GET_FIELDs(insn, 19, 31);
5214fcf5ef2aSThomas Huth                     tcg_gen_addi_tl(cpu_tmp0, cpu_src1, simm);
5215fcf5ef2aSThomas Huth                 } else {                /* register */
5216fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
5217fcf5ef2aSThomas Huth                     if (rs2) {
5218fcf5ef2aSThomas Huth                         cpu_src2 = gen_load_gpr(dc, rs2);
5219fcf5ef2aSThomas Huth                         tcg_gen_add_tl(cpu_tmp0, cpu_src1, cpu_src2);
5220fcf5ef2aSThomas Huth                     } else {
5221fcf5ef2aSThomas Huth                         tcg_gen_mov_tl(cpu_tmp0, cpu_src1);
5222fcf5ef2aSThomas Huth                     }
5223fcf5ef2aSThomas Huth                 }
5224fcf5ef2aSThomas Huth                 switch (xop) {
5225fcf5ef2aSThomas Huth                 case 0x38:      /* jmpl */
5226fcf5ef2aSThomas Huth                     {
5227fcf5ef2aSThomas Huth                         TCGv t = gen_dest_gpr(dc, rd);
5228fcf5ef2aSThomas Huth                         tcg_gen_movi_tl(t, dc->pc);
5229fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd, t);
5230fcf5ef2aSThomas Huth 
5231fcf5ef2aSThomas Huth                         gen_mov_pc_npc(dc);
5232fcf5ef2aSThomas Huth                         gen_check_align(cpu_tmp0, 3);
5233fcf5ef2aSThomas Huth                         gen_address_mask(dc, cpu_tmp0);
5234fcf5ef2aSThomas Huth                         tcg_gen_mov_tl(cpu_npc, cpu_tmp0);
5235fcf5ef2aSThomas Huth                         dc->npc = DYNAMIC_PC;
5236fcf5ef2aSThomas Huth                     }
5237fcf5ef2aSThomas Huth                     goto jmp_insn;
5238fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
5239fcf5ef2aSThomas Huth                 case 0x39:      /* rett, V9 return */
5240fcf5ef2aSThomas Huth                     {
5241fcf5ef2aSThomas Huth                         if (!supervisor(dc))
5242fcf5ef2aSThomas Huth                             goto priv_insn;
5243fcf5ef2aSThomas Huth                         gen_mov_pc_npc(dc);
5244fcf5ef2aSThomas Huth                         gen_check_align(cpu_tmp0, 3);
5245fcf5ef2aSThomas Huth                         tcg_gen_mov_tl(cpu_npc, cpu_tmp0);
5246fcf5ef2aSThomas Huth                         dc->npc = DYNAMIC_PC;
5247fcf5ef2aSThomas Huth                         gen_helper_rett(cpu_env);
5248fcf5ef2aSThomas Huth                     }
5249fcf5ef2aSThomas Huth                     goto jmp_insn;
5250fcf5ef2aSThomas Huth #endif
5251fcf5ef2aSThomas Huth                 case 0x3b: /* flush */
5252fcf5ef2aSThomas Huth                     if (!((dc)->def->features & CPU_FEATURE_FLUSH))
5253fcf5ef2aSThomas Huth                         goto unimp_flush;
5254fcf5ef2aSThomas Huth                     /* nop */
5255fcf5ef2aSThomas Huth                     break;
5256fcf5ef2aSThomas Huth                 case 0x3c:      /* save */
5257fcf5ef2aSThomas Huth                     gen_helper_save(cpu_env);
5258fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_tmp0);
5259fcf5ef2aSThomas Huth                     break;
5260fcf5ef2aSThomas Huth                 case 0x3d:      /* restore */
5261fcf5ef2aSThomas Huth                     gen_helper_restore(cpu_env);
5262fcf5ef2aSThomas Huth                     gen_store_gpr(dc, rd, cpu_tmp0);
5263fcf5ef2aSThomas Huth                     break;
5264fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
5265fcf5ef2aSThomas Huth                 case 0x3e:      /* V9 done/retry */
5266fcf5ef2aSThomas Huth                     {
5267fcf5ef2aSThomas Huth                         switch (rd) {
5268fcf5ef2aSThomas Huth                         case 0:
5269fcf5ef2aSThomas Huth                             if (!supervisor(dc))
5270fcf5ef2aSThomas Huth                                 goto priv_insn;
5271fcf5ef2aSThomas Huth                             dc->npc = DYNAMIC_PC;
5272fcf5ef2aSThomas Huth                             dc->pc = DYNAMIC_PC;
5273fcf5ef2aSThomas Huth                             gen_helper_done(cpu_env);
5274fcf5ef2aSThomas Huth                             goto jmp_insn;
5275fcf5ef2aSThomas Huth                         case 1:
5276fcf5ef2aSThomas Huth                             if (!supervisor(dc))
5277fcf5ef2aSThomas Huth                                 goto priv_insn;
5278fcf5ef2aSThomas Huth                             dc->npc = DYNAMIC_PC;
5279fcf5ef2aSThomas Huth                             dc->pc = DYNAMIC_PC;
5280fcf5ef2aSThomas Huth                             gen_helper_retry(cpu_env);
5281fcf5ef2aSThomas Huth                             goto jmp_insn;
5282fcf5ef2aSThomas Huth                         default:
5283fcf5ef2aSThomas Huth                             goto illegal_insn;
5284fcf5ef2aSThomas Huth                         }
5285fcf5ef2aSThomas Huth                     }
5286fcf5ef2aSThomas Huth                     break;
5287fcf5ef2aSThomas Huth #endif
5288fcf5ef2aSThomas Huth                 default:
5289fcf5ef2aSThomas Huth                     goto illegal_insn;
5290fcf5ef2aSThomas Huth                 }
5291fcf5ef2aSThomas Huth             }
5292fcf5ef2aSThomas Huth             break;
5293fcf5ef2aSThomas Huth         }
5294fcf5ef2aSThomas Huth         break;
5295fcf5ef2aSThomas Huth     case 3:                     /* load/store instructions */
5296fcf5ef2aSThomas Huth         {
5297fcf5ef2aSThomas Huth             unsigned int xop = GET_FIELD(insn, 7, 12);
5298fcf5ef2aSThomas Huth             /* ??? gen_address_mask prevents us from using a source
5299fcf5ef2aSThomas Huth                register directly.  Always generate a temporary.  */
5300fcf5ef2aSThomas Huth             TCGv cpu_addr = get_temp_tl(dc);
5301fcf5ef2aSThomas Huth 
5302fcf5ef2aSThomas Huth             tcg_gen_mov_tl(cpu_addr, get_src1(dc, insn));
5303fcf5ef2aSThomas Huth             if (xop == 0x3c || xop == 0x3e) {
5304fcf5ef2aSThomas Huth                 /* V9 casa/casxa : no offset */
5305fcf5ef2aSThomas Huth             } else if (IS_IMM) {     /* immediate */
5306fcf5ef2aSThomas Huth                 simm = GET_FIELDs(insn, 19, 31);
5307fcf5ef2aSThomas Huth                 if (simm != 0) {
5308fcf5ef2aSThomas Huth                     tcg_gen_addi_tl(cpu_addr, cpu_addr, simm);
5309fcf5ef2aSThomas Huth                 }
5310fcf5ef2aSThomas Huth             } else {            /* register */
5311fcf5ef2aSThomas Huth                 rs2 = GET_FIELD(insn, 27, 31);
5312fcf5ef2aSThomas Huth                 if (rs2 != 0) {
5313fcf5ef2aSThomas Huth                     tcg_gen_add_tl(cpu_addr, cpu_addr, gen_load_gpr(dc, rs2));
5314fcf5ef2aSThomas Huth                 }
5315fcf5ef2aSThomas Huth             }
5316fcf5ef2aSThomas Huth             if (xop < 4 || (xop > 7 && xop < 0x14 && xop != 0x0e) ||
5317fcf5ef2aSThomas Huth                 (xop > 0x17 && xop <= 0x1d ) ||
5318fcf5ef2aSThomas Huth                 (xop > 0x2c && xop <= 0x33) || xop == 0x1f || xop == 0x3d) {
5319fcf5ef2aSThomas Huth                 TCGv cpu_val = gen_dest_gpr(dc, rd);
5320fcf5ef2aSThomas Huth 
5321fcf5ef2aSThomas Huth                 switch (xop) {
5322fcf5ef2aSThomas Huth                 case 0x0:       /* ld, V9 lduw, load unsigned word */
5323fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5324fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld32u(cpu_val, cpu_addr, dc->mem_idx);
5325fcf5ef2aSThomas Huth                     break;
5326fcf5ef2aSThomas Huth                 case 0x1:       /* ldub, load unsigned byte */
5327fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5328fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld8u(cpu_val, cpu_addr, dc->mem_idx);
5329fcf5ef2aSThomas Huth                     break;
5330fcf5ef2aSThomas Huth                 case 0x2:       /* lduh, load unsigned halfword */
5331fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5332fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld16u(cpu_val, cpu_addr, dc->mem_idx);
5333fcf5ef2aSThomas Huth                     break;
5334fcf5ef2aSThomas Huth                 case 0x3:       /* ldd, load double word */
5335fcf5ef2aSThomas Huth                     if (rd & 1)
5336fcf5ef2aSThomas Huth                         goto illegal_insn;
5337fcf5ef2aSThomas Huth                     else {
5338fcf5ef2aSThomas Huth                         TCGv_i64 t64;
5339fcf5ef2aSThomas Huth 
5340fcf5ef2aSThomas Huth                         gen_address_mask(dc, cpu_addr);
5341fcf5ef2aSThomas Huth                         t64 = tcg_temp_new_i64();
5342fcf5ef2aSThomas Huth                         tcg_gen_qemu_ld64(t64, cpu_addr, dc->mem_idx);
5343fcf5ef2aSThomas Huth                         tcg_gen_trunc_i64_tl(cpu_val, t64);
5344fcf5ef2aSThomas Huth                         tcg_gen_ext32u_tl(cpu_val, cpu_val);
5345fcf5ef2aSThomas Huth                         gen_store_gpr(dc, rd + 1, cpu_val);
5346fcf5ef2aSThomas Huth                         tcg_gen_shri_i64(t64, t64, 32);
5347fcf5ef2aSThomas Huth                         tcg_gen_trunc_i64_tl(cpu_val, t64);
5348fcf5ef2aSThomas Huth                         tcg_temp_free_i64(t64);
5349fcf5ef2aSThomas Huth                         tcg_gen_ext32u_tl(cpu_val, cpu_val);
5350fcf5ef2aSThomas Huth                     }
5351fcf5ef2aSThomas Huth                     break;
5352fcf5ef2aSThomas Huth                 case 0x9:       /* ldsb, load signed byte */
5353fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5354fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld8s(cpu_val, cpu_addr, dc->mem_idx);
5355fcf5ef2aSThomas Huth                     break;
5356fcf5ef2aSThomas Huth                 case 0xa:       /* ldsh, load signed halfword */
5357fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5358fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld16s(cpu_val, cpu_addr, dc->mem_idx);
5359fcf5ef2aSThomas Huth                     break;
5360fcf5ef2aSThomas Huth                 case 0xd:       /* ldstub */
5361fcf5ef2aSThomas Huth                     gen_ldstub(dc, cpu_val, cpu_addr, dc->mem_idx);
5362fcf5ef2aSThomas Huth                     break;
5363fcf5ef2aSThomas Huth                 case 0x0f:
5364fcf5ef2aSThomas Huth                     /* swap, swap register with memory. Also atomically */
5365fcf5ef2aSThomas Huth                     CHECK_IU_FEATURE(dc, SWAP);
5366fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rd);
5367fcf5ef2aSThomas Huth                     gen_swap(dc, cpu_val, cpu_src1, cpu_addr,
5368fcf5ef2aSThomas Huth                              dc->mem_idx, MO_TEUL);
5369fcf5ef2aSThomas Huth                     break;
5370fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
5371fcf5ef2aSThomas Huth                 case 0x10:      /* lda, V9 lduwa, load word alternate */
5372fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_TEUL);
5373fcf5ef2aSThomas Huth                     break;
5374fcf5ef2aSThomas Huth                 case 0x11:      /* lduba, load unsigned byte alternate */
5375fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_UB);
5376fcf5ef2aSThomas Huth                     break;
5377fcf5ef2aSThomas Huth                 case 0x12:      /* lduha, load unsigned halfword alternate */
5378fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_TEUW);
5379fcf5ef2aSThomas Huth                     break;
5380fcf5ef2aSThomas Huth                 case 0x13:      /* ldda, load double word alternate */
5381fcf5ef2aSThomas Huth                     if (rd & 1) {
5382fcf5ef2aSThomas Huth                         goto illegal_insn;
5383fcf5ef2aSThomas Huth                     }
5384fcf5ef2aSThomas Huth                     gen_ldda_asi(dc, cpu_addr, insn, rd);
5385fcf5ef2aSThomas Huth                     goto skip_move;
5386fcf5ef2aSThomas Huth                 case 0x19:      /* ldsba, load signed byte alternate */
5387fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_SB);
5388fcf5ef2aSThomas Huth                     break;
5389fcf5ef2aSThomas Huth                 case 0x1a:      /* ldsha, load signed halfword alternate */
5390fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_TESW);
5391fcf5ef2aSThomas Huth                     break;
5392fcf5ef2aSThomas Huth                 case 0x1d:      /* ldstuba -- XXX: should be atomically */
5393fcf5ef2aSThomas Huth                     gen_ldstub_asi(dc, cpu_val, cpu_addr, insn);
5394fcf5ef2aSThomas Huth                     break;
5395fcf5ef2aSThomas Huth                 case 0x1f:      /* swapa, swap reg with alt. memory. Also
5396fcf5ef2aSThomas Huth                                    atomically */
5397fcf5ef2aSThomas Huth                     CHECK_IU_FEATURE(dc, SWAP);
5398fcf5ef2aSThomas Huth                     cpu_src1 = gen_load_gpr(dc, rd);
5399fcf5ef2aSThomas Huth                     gen_swap_asi(dc, cpu_val, cpu_src1, cpu_addr, insn);
5400fcf5ef2aSThomas Huth                     break;
5401fcf5ef2aSThomas Huth 
5402fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
5403fcf5ef2aSThomas Huth                 case 0x30: /* ldc */
5404fcf5ef2aSThomas Huth                 case 0x31: /* ldcsr */
5405fcf5ef2aSThomas Huth                 case 0x33: /* lddc */
5406fcf5ef2aSThomas Huth                     goto ncp_insn;
5407fcf5ef2aSThomas Huth #endif
5408fcf5ef2aSThomas Huth #endif
5409fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5410fcf5ef2aSThomas Huth                 case 0x08: /* V9 ldsw */
5411fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5412fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld32s(cpu_val, cpu_addr, dc->mem_idx);
5413fcf5ef2aSThomas Huth                     break;
5414fcf5ef2aSThomas Huth                 case 0x0b: /* V9 ldx */
5415fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5416fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld64(cpu_val, cpu_addr, dc->mem_idx);
5417fcf5ef2aSThomas Huth                     break;
5418fcf5ef2aSThomas Huth                 case 0x18: /* V9 ldswa */
5419fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_TESL);
5420fcf5ef2aSThomas Huth                     break;
5421fcf5ef2aSThomas Huth                 case 0x1b: /* V9 ldxa */
5422fcf5ef2aSThomas Huth                     gen_ld_asi(dc, cpu_val, cpu_addr, insn, MO_TEQ);
5423fcf5ef2aSThomas Huth                     break;
5424fcf5ef2aSThomas Huth                 case 0x2d: /* V9 prefetch, no effect */
5425fcf5ef2aSThomas Huth                     goto skip_move;
5426fcf5ef2aSThomas Huth                 case 0x30: /* V9 ldfa */
5427fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5428fcf5ef2aSThomas Huth                         goto jmp_insn;
5429fcf5ef2aSThomas Huth                     }
5430fcf5ef2aSThomas Huth                     gen_ldf_asi(dc, cpu_addr, insn, 4, rd);
5431fcf5ef2aSThomas Huth                     gen_update_fprs_dirty(dc, rd);
5432fcf5ef2aSThomas Huth                     goto skip_move;
5433fcf5ef2aSThomas Huth                 case 0x33: /* V9 lddfa */
5434fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5435fcf5ef2aSThomas Huth                         goto jmp_insn;
5436fcf5ef2aSThomas Huth                     }
5437fcf5ef2aSThomas Huth                     gen_ldf_asi(dc, cpu_addr, insn, 8, DFPREG(rd));
5438fcf5ef2aSThomas Huth                     gen_update_fprs_dirty(dc, DFPREG(rd));
5439fcf5ef2aSThomas Huth                     goto skip_move;
5440fcf5ef2aSThomas Huth                 case 0x3d: /* V9 prefetcha, no effect */
5441fcf5ef2aSThomas Huth                     goto skip_move;
5442fcf5ef2aSThomas Huth                 case 0x32: /* V9 ldqfa */
5443fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
5444fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5445fcf5ef2aSThomas Huth                         goto jmp_insn;
5446fcf5ef2aSThomas Huth                     }
5447fcf5ef2aSThomas Huth                     gen_ldf_asi(dc, cpu_addr, insn, 16, QFPREG(rd));
5448fcf5ef2aSThomas Huth                     gen_update_fprs_dirty(dc, QFPREG(rd));
5449fcf5ef2aSThomas Huth                     goto skip_move;
5450fcf5ef2aSThomas Huth #endif
5451fcf5ef2aSThomas Huth                 default:
5452fcf5ef2aSThomas Huth                     goto illegal_insn;
5453fcf5ef2aSThomas Huth                 }
5454fcf5ef2aSThomas Huth                 gen_store_gpr(dc, rd, cpu_val);
5455fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
5456fcf5ef2aSThomas Huth             skip_move: ;
5457fcf5ef2aSThomas Huth #endif
5458fcf5ef2aSThomas Huth             } else if (xop >= 0x20 && xop < 0x24) {
5459fcf5ef2aSThomas Huth                 if (gen_trap_ifnofpu(dc)) {
5460fcf5ef2aSThomas Huth                     goto jmp_insn;
5461fcf5ef2aSThomas Huth                 }
5462fcf5ef2aSThomas Huth                 switch (xop) {
5463fcf5ef2aSThomas Huth                 case 0x20:      /* ldf, load fpreg */
5464fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5465fcf5ef2aSThomas Huth                     cpu_dst_32 = gen_dest_fpr_F(dc);
5466fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld_i32(cpu_dst_32, cpu_addr,
5467fcf5ef2aSThomas Huth                                         dc->mem_idx, MO_TEUL);
5468fcf5ef2aSThomas Huth                     gen_store_fpr_F(dc, rd, cpu_dst_32);
5469fcf5ef2aSThomas Huth                     break;
5470fcf5ef2aSThomas Huth                 case 0x21:      /* ldfsr, V9 ldxfsr */
5471fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5472fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5473fcf5ef2aSThomas Huth                     if (rd == 1) {
5474fcf5ef2aSThomas Huth                         TCGv_i64 t64 = tcg_temp_new_i64();
5475fcf5ef2aSThomas Huth                         tcg_gen_qemu_ld_i64(t64, cpu_addr,
5476fcf5ef2aSThomas Huth                                             dc->mem_idx, MO_TEQ);
5477fcf5ef2aSThomas Huth                         gen_helper_ldxfsr(cpu_fsr, cpu_env, cpu_fsr, t64);
5478fcf5ef2aSThomas Huth                         tcg_temp_free_i64(t64);
5479fcf5ef2aSThomas Huth                         break;
5480fcf5ef2aSThomas Huth                     }
5481fcf5ef2aSThomas Huth #endif
5482fcf5ef2aSThomas Huth                     cpu_dst_32 = get_temp_i32(dc);
5483fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld_i32(cpu_dst_32, cpu_addr,
5484fcf5ef2aSThomas Huth                                         dc->mem_idx, MO_TEUL);
5485fcf5ef2aSThomas Huth                     gen_helper_ldfsr(cpu_fsr, cpu_env, cpu_fsr, cpu_dst_32);
5486fcf5ef2aSThomas Huth                     break;
5487fcf5ef2aSThomas Huth                 case 0x22:      /* ldqf, load quad fpreg */
5488fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
5489fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5490fcf5ef2aSThomas Huth                     cpu_src1_64 = tcg_temp_new_i64();
5491fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld_i64(cpu_src1_64, cpu_addr, dc->mem_idx,
5492fcf5ef2aSThomas Huth                                         MO_TEQ | MO_ALIGN_4);
5493fcf5ef2aSThomas Huth                     tcg_gen_addi_tl(cpu_addr, cpu_addr, 8);
5494fcf5ef2aSThomas Huth                     cpu_src2_64 = tcg_temp_new_i64();
5495fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld_i64(cpu_src2_64, cpu_addr, dc->mem_idx,
5496fcf5ef2aSThomas Huth                                         MO_TEQ | MO_ALIGN_4);
5497fcf5ef2aSThomas Huth                     gen_store_fpr_Q(dc, rd, cpu_src1_64, cpu_src2_64);
5498fcf5ef2aSThomas Huth                     tcg_temp_free_i64(cpu_src1_64);
5499fcf5ef2aSThomas Huth                     tcg_temp_free_i64(cpu_src2_64);
5500fcf5ef2aSThomas Huth                     break;
5501fcf5ef2aSThomas Huth                 case 0x23:      /* lddf, load double fpreg */
5502fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5503fcf5ef2aSThomas Huth                     cpu_dst_64 = gen_dest_fpr_D(dc, rd);
5504fcf5ef2aSThomas Huth                     tcg_gen_qemu_ld_i64(cpu_dst_64, cpu_addr, dc->mem_idx,
5505fcf5ef2aSThomas Huth                                         MO_TEQ | MO_ALIGN_4);
5506fcf5ef2aSThomas Huth                     gen_store_fpr_D(dc, rd, cpu_dst_64);
5507fcf5ef2aSThomas Huth                     break;
5508fcf5ef2aSThomas Huth                 default:
5509fcf5ef2aSThomas Huth                     goto illegal_insn;
5510fcf5ef2aSThomas Huth                 }
5511fcf5ef2aSThomas Huth             } else if (xop < 8 || (xop >= 0x14 && xop < 0x18) ||
5512fcf5ef2aSThomas Huth                        xop == 0xe || xop == 0x1e) {
5513fcf5ef2aSThomas Huth                 TCGv cpu_val = gen_load_gpr(dc, rd);
5514fcf5ef2aSThomas Huth 
5515fcf5ef2aSThomas Huth                 switch (xop) {
5516fcf5ef2aSThomas Huth                 case 0x4: /* st, store word */
5517fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5518fcf5ef2aSThomas Huth                     tcg_gen_qemu_st32(cpu_val, cpu_addr, dc->mem_idx);
5519fcf5ef2aSThomas Huth                     break;
5520fcf5ef2aSThomas Huth                 case 0x5: /* stb, store byte */
5521fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5522fcf5ef2aSThomas Huth                     tcg_gen_qemu_st8(cpu_val, cpu_addr, dc->mem_idx);
5523fcf5ef2aSThomas Huth                     break;
5524fcf5ef2aSThomas Huth                 case 0x6: /* sth, store halfword */
5525fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5526fcf5ef2aSThomas Huth                     tcg_gen_qemu_st16(cpu_val, cpu_addr, dc->mem_idx);
5527fcf5ef2aSThomas Huth                     break;
5528fcf5ef2aSThomas Huth                 case 0x7: /* std, store double word */
5529fcf5ef2aSThomas Huth                     if (rd & 1)
5530fcf5ef2aSThomas Huth                         goto illegal_insn;
5531fcf5ef2aSThomas Huth                     else {
5532fcf5ef2aSThomas Huth                         TCGv_i64 t64;
5533fcf5ef2aSThomas Huth                         TCGv lo;
5534fcf5ef2aSThomas Huth 
5535fcf5ef2aSThomas Huth                         gen_address_mask(dc, cpu_addr);
5536fcf5ef2aSThomas Huth                         lo = gen_load_gpr(dc, rd + 1);
5537fcf5ef2aSThomas Huth                         t64 = tcg_temp_new_i64();
5538fcf5ef2aSThomas Huth                         tcg_gen_concat_tl_i64(t64, lo, cpu_val);
5539fcf5ef2aSThomas Huth                         tcg_gen_qemu_st64(t64, cpu_addr, dc->mem_idx);
5540fcf5ef2aSThomas Huth                         tcg_temp_free_i64(t64);
5541fcf5ef2aSThomas Huth                     }
5542fcf5ef2aSThomas Huth                     break;
5543fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
5544fcf5ef2aSThomas Huth                 case 0x14: /* sta, V9 stwa, store word alternate */
5545fcf5ef2aSThomas Huth                     gen_st_asi(dc, cpu_val, cpu_addr, insn, MO_TEUL);
5546fcf5ef2aSThomas Huth                     break;
5547fcf5ef2aSThomas Huth                 case 0x15: /* stba, store byte alternate */
5548fcf5ef2aSThomas Huth                     gen_st_asi(dc, cpu_val, cpu_addr, insn, MO_UB);
5549fcf5ef2aSThomas Huth                     break;
5550fcf5ef2aSThomas Huth                 case 0x16: /* stha, store halfword alternate */
5551fcf5ef2aSThomas Huth                     gen_st_asi(dc, cpu_val, cpu_addr, insn, MO_TEUW);
5552fcf5ef2aSThomas Huth                     break;
5553fcf5ef2aSThomas Huth                 case 0x17: /* stda, store double word alternate */
5554fcf5ef2aSThomas Huth                     if (rd & 1) {
5555fcf5ef2aSThomas Huth                         goto illegal_insn;
5556fcf5ef2aSThomas Huth                     }
5557fcf5ef2aSThomas Huth                     gen_stda_asi(dc, cpu_val, cpu_addr, insn, rd);
5558fcf5ef2aSThomas Huth                     break;
5559fcf5ef2aSThomas Huth #endif
5560fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5561fcf5ef2aSThomas Huth                 case 0x0e: /* V9 stx */
5562fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5563fcf5ef2aSThomas Huth                     tcg_gen_qemu_st64(cpu_val, cpu_addr, dc->mem_idx);
5564fcf5ef2aSThomas Huth                     break;
5565fcf5ef2aSThomas Huth                 case 0x1e: /* V9 stxa */
5566fcf5ef2aSThomas Huth                     gen_st_asi(dc, cpu_val, cpu_addr, insn, MO_TEQ);
5567fcf5ef2aSThomas Huth                     break;
5568fcf5ef2aSThomas Huth #endif
5569fcf5ef2aSThomas Huth                 default:
5570fcf5ef2aSThomas Huth                     goto illegal_insn;
5571fcf5ef2aSThomas Huth                 }
5572fcf5ef2aSThomas Huth             } else if (xop > 0x23 && xop < 0x28) {
5573fcf5ef2aSThomas Huth                 if (gen_trap_ifnofpu(dc)) {
5574fcf5ef2aSThomas Huth                     goto jmp_insn;
5575fcf5ef2aSThomas Huth                 }
5576fcf5ef2aSThomas Huth                 switch (xop) {
5577fcf5ef2aSThomas Huth                 case 0x24: /* stf, store fpreg */
5578fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5579fcf5ef2aSThomas Huth                     cpu_src1_32 = gen_load_fpr_F(dc, rd);
5580fcf5ef2aSThomas Huth                     tcg_gen_qemu_st_i32(cpu_src1_32, cpu_addr,
5581fcf5ef2aSThomas Huth                                         dc->mem_idx, MO_TEUL);
5582fcf5ef2aSThomas Huth                     break;
5583fcf5ef2aSThomas Huth                 case 0x25: /* stfsr, V9 stxfsr */
5584fcf5ef2aSThomas Huth                     {
5585fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5586fcf5ef2aSThomas Huth                         gen_address_mask(dc, cpu_addr);
5587fcf5ef2aSThomas Huth                         if (rd == 1) {
5588fcf5ef2aSThomas Huth                             tcg_gen_qemu_st64(cpu_fsr, cpu_addr, dc->mem_idx);
5589fcf5ef2aSThomas Huth                             break;
5590fcf5ef2aSThomas Huth                         }
5591fcf5ef2aSThomas Huth #endif
5592fcf5ef2aSThomas Huth                         tcg_gen_qemu_st32(cpu_fsr, cpu_addr, dc->mem_idx);
5593fcf5ef2aSThomas Huth                     }
5594fcf5ef2aSThomas Huth                     break;
5595fcf5ef2aSThomas Huth                 case 0x26:
5596fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5597fcf5ef2aSThomas Huth                     /* V9 stqf, store quad fpreg */
5598fcf5ef2aSThomas Huth                     CHECK_FPU_FEATURE(dc, FLOAT128);
5599fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5600fcf5ef2aSThomas Huth                     /* ??? While stqf only requires 4-byte alignment, it is
5601fcf5ef2aSThomas Huth                        legal for the cpu to signal the unaligned exception.
5602fcf5ef2aSThomas Huth                        The OS trap handler is then required to fix it up.
5603fcf5ef2aSThomas Huth                        For qemu, this avoids having to probe the second page
5604fcf5ef2aSThomas Huth                        before performing the first write.  */
5605fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_Q0(dc, rd);
5606fcf5ef2aSThomas Huth                     tcg_gen_qemu_st_i64(cpu_src1_64, cpu_addr,
5607fcf5ef2aSThomas Huth                                         dc->mem_idx, MO_TEQ | MO_ALIGN_16);
5608fcf5ef2aSThomas Huth                     tcg_gen_addi_tl(cpu_addr, cpu_addr, 8);
5609fcf5ef2aSThomas Huth                     cpu_src2_64 = gen_load_fpr_Q1(dc, rd);
5610fcf5ef2aSThomas Huth                     tcg_gen_qemu_st_i64(cpu_src1_64, cpu_addr,
5611fcf5ef2aSThomas Huth                                         dc->mem_idx, MO_TEQ);
5612fcf5ef2aSThomas Huth                     break;
5613fcf5ef2aSThomas Huth #else /* !TARGET_SPARC64 */
5614fcf5ef2aSThomas Huth                     /* stdfq, store floating point queue */
5615fcf5ef2aSThomas Huth #if defined(CONFIG_USER_ONLY)
5616fcf5ef2aSThomas Huth                     goto illegal_insn;
5617fcf5ef2aSThomas Huth #else
5618fcf5ef2aSThomas Huth                     if (!supervisor(dc))
5619fcf5ef2aSThomas Huth                         goto priv_insn;
5620fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5621fcf5ef2aSThomas Huth                         goto jmp_insn;
5622fcf5ef2aSThomas Huth                     }
5623fcf5ef2aSThomas Huth                     goto nfq_insn;
5624fcf5ef2aSThomas Huth #endif
5625fcf5ef2aSThomas Huth #endif
5626fcf5ef2aSThomas Huth                 case 0x27: /* stdf, store double fpreg */
5627fcf5ef2aSThomas Huth                     gen_address_mask(dc, cpu_addr);
5628fcf5ef2aSThomas Huth                     cpu_src1_64 = gen_load_fpr_D(dc, rd);
5629fcf5ef2aSThomas Huth                     tcg_gen_qemu_st_i64(cpu_src1_64, cpu_addr, dc->mem_idx,
5630fcf5ef2aSThomas Huth                                         MO_TEQ | MO_ALIGN_4);
5631fcf5ef2aSThomas Huth                     break;
5632fcf5ef2aSThomas Huth                 default:
5633fcf5ef2aSThomas Huth                     goto illegal_insn;
5634fcf5ef2aSThomas Huth                 }
5635fcf5ef2aSThomas Huth             } else if (xop > 0x33 && xop < 0x3f) {
5636fcf5ef2aSThomas Huth                 switch (xop) {
5637fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5638fcf5ef2aSThomas Huth                 case 0x34: /* V9 stfa */
5639fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5640fcf5ef2aSThomas Huth                         goto jmp_insn;
5641fcf5ef2aSThomas Huth                     }
5642fcf5ef2aSThomas Huth                     gen_stf_asi(dc, cpu_addr, insn, 4, rd);
5643fcf5ef2aSThomas Huth                     break;
5644fcf5ef2aSThomas Huth                 case 0x36: /* V9 stqfa */
5645fcf5ef2aSThomas Huth                     {
5646fcf5ef2aSThomas Huth                         CHECK_FPU_FEATURE(dc, FLOAT128);
5647fcf5ef2aSThomas Huth                         if (gen_trap_ifnofpu(dc)) {
5648fcf5ef2aSThomas Huth                             goto jmp_insn;
5649fcf5ef2aSThomas Huth                         }
5650fcf5ef2aSThomas Huth                         gen_stf_asi(dc, cpu_addr, insn, 16, QFPREG(rd));
5651fcf5ef2aSThomas Huth                     }
5652fcf5ef2aSThomas Huth                     break;
5653fcf5ef2aSThomas Huth                 case 0x37: /* V9 stdfa */
5654fcf5ef2aSThomas Huth                     if (gen_trap_ifnofpu(dc)) {
5655fcf5ef2aSThomas Huth                         goto jmp_insn;
5656fcf5ef2aSThomas Huth                     }
5657fcf5ef2aSThomas Huth                     gen_stf_asi(dc, cpu_addr, insn, 8, DFPREG(rd));
5658fcf5ef2aSThomas Huth                     break;
5659fcf5ef2aSThomas Huth                 case 0x3e: /* V9 casxa */
5660fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
5661fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
5662fcf5ef2aSThomas Huth                     gen_casx_asi(dc, cpu_addr, cpu_src2, insn, rd);
5663fcf5ef2aSThomas Huth                     break;
5664fcf5ef2aSThomas Huth #else
5665fcf5ef2aSThomas Huth                 case 0x34: /* stc */
5666fcf5ef2aSThomas Huth                 case 0x35: /* stcsr */
5667fcf5ef2aSThomas Huth                 case 0x36: /* stdcq */
5668fcf5ef2aSThomas Huth                 case 0x37: /* stdc */
5669fcf5ef2aSThomas Huth                     goto ncp_insn;
5670fcf5ef2aSThomas Huth #endif
5671fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) || defined(TARGET_SPARC64)
5672fcf5ef2aSThomas Huth                 case 0x3c: /* V9 or LEON3 casa */
5673fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
5674fcf5ef2aSThomas Huth                     CHECK_IU_FEATURE(dc, CASA);
5675fcf5ef2aSThomas Huth #endif
5676fcf5ef2aSThomas Huth                     rs2 = GET_FIELD(insn, 27, 31);
5677fcf5ef2aSThomas Huth                     cpu_src2 = gen_load_gpr(dc, rs2);
5678fcf5ef2aSThomas Huth                     gen_cas_asi(dc, cpu_addr, cpu_src2, insn, rd);
5679fcf5ef2aSThomas Huth                     break;
5680fcf5ef2aSThomas Huth #endif
5681fcf5ef2aSThomas Huth                 default:
5682fcf5ef2aSThomas Huth                     goto illegal_insn;
5683fcf5ef2aSThomas Huth                 }
5684fcf5ef2aSThomas Huth             } else {
5685fcf5ef2aSThomas Huth                 goto illegal_insn;
5686fcf5ef2aSThomas Huth             }
5687fcf5ef2aSThomas Huth         }
5688fcf5ef2aSThomas Huth         break;
5689fcf5ef2aSThomas Huth     }
5690fcf5ef2aSThomas Huth     /* default case for non jump instructions */
5691fcf5ef2aSThomas Huth     if (dc->npc == DYNAMIC_PC) {
5692fcf5ef2aSThomas Huth         dc->pc = DYNAMIC_PC;
5693fcf5ef2aSThomas Huth         gen_op_next_insn();
5694fcf5ef2aSThomas Huth     } else if (dc->npc == JUMP_PC) {
5695fcf5ef2aSThomas Huth         /* we can do a static jump */
5696fcf5ef2aSThomas Huth         gen_branch2(dc, dc->jump_pc[0], dc->jump_pc[1], cpu_cond);
5697fcf5ef2aSThomas Huth         dc->is_br = 1;
5698fcf5ef2aSThomas Huth     } else {
5699fcf5ef2aSThomas Huth         dc->pc = dc->npc;
5700fcf5ef2aSThomas Huth         dc->npc = dc->npc + 4;
5701fcf5ef2aSThomas Huth     }
5702fcf5ef2aSThomas Huth  jmp_insn:
5703fcf5ef2aSThomas Huth     goto egress;
5704fcf5ef2aSThomas Huth  illegal_insn:
5705fcf5ef2aSThomas Huth     gen_exception(dc, TT_ILL_INSN);
5706fcf5ef2aSThomas Huth     goto egress;
5707fcf5ef2aSThomas Huth  unimp_flush:
5708fcf5ef2aSThomas Huth     gen_exception(dc, TT_UNIMP_FLUSH);
5709fcf5ef2aSThomas Huth     goto egress;
5710fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY)
5711fcf5ef2aSThomas Huth  priv_insn:
5712fcf5ef2aSThomas Huth     gen_exception(dc, TT_PRIV_INSN);
5713fcf5ef2aSThomas Huth     goto egress;
5714fcf5ef2aSThomas Huth #endif
5715fcf5ef2aSThomas Huth  nfpu_insn:
5716fcf5ef2aSThomas Huth     gen_op_fpexception_im(dc, FSR_FTT_UNIMPFPOP);
5717fcf5ef2aSThomas Huth     goto egress;
5718fcf5ef2aSThomas Huth #if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
5719fcf5ef2aSThomas Huth  nfq_insn:
5720fcf5ef2aSThomas Huth     gen_op_fpexception_im(dc, FSR_FTT_SEQ_ERROR);
5721fcf5ef2aSThomas Huth     goto egress;
5722fcf5ef2aSThomas Huth #endif
5723fcf5ef2aSThomas Huth #ifndef TARGET_SPARC64
5724fcf5ef2aSThomas Huth  ncp_insn:
5725fcf5ef2aSThomas Huth     gen_exception(dc, TT_NCP_INSN);
5726fcf5ef2aSThomas Huth     goto egress;
5727fcf5ef2aSThomas Huth #endif
5728fcf5ef2aSThomas Huth  egress:
5729fcf5ef2aSThomas Huth     if (dc->n_t32 != 0) {
5730fcf5ef2aSThomas Huth         int i;
5731fcf5ef2aSThomas Huth         for (i = dc->n_t32 - 1; i >= 0; --i) {
5732fcf5ef2aSThomas Huth             tcg_temp_free_i32(dc->t32[i]);
5733fcf5ef2aSThomas Huth         }
5734fcf5ef2aSThomas Huth         dc->n_t32 = 0;
5735fcf5ef2aSThomas Huth     }
5736fcf5ef2aSThomas Huth     if (dc->n_ttl != 0) {
5737fcf5ef2aSThomas Huth         int i;
5738fcf5ef2aSThomas Huth         for (i = dc->n_ttl - 1; i >= 0; --i) {
5739fcf5ef2aSThomas Huth             tcg_temp_free(dc->ttl[i]);
5740fcf5ef2aSThomas Huth         }
5741fcf5ef2aSThomas Huth         dc->n_ttl = 0;
5742fcf5ef2aSThomas Huth     }
5743fcf5ef2aSThomas Huth }
5744fcf5ef2aSThomas Huth 
5745fcf5ef2aSThomas Huth void gen_intermediate_code(CPUSPARCState * env, TranslationBlock * tb)
5746fcf5ef2aSThomas Huth {
5747fcf5ef2aSThomas Huth     SPARCCPU *cpu = sparc_env_get_cpu(env);
5748fcf5ef2aSThomas Huth     CPUState *cs = CPU(cpu);
5749fcf5ef2aSThomas Huth     target_ulong pc_start, last_pc;
5750fcf5ef2aSThomas Huth     DisasContext dc1, *dc = &dc1;
5751fcf5ef2aSThomas Huth     int num_insns;
5752fcf5ef2aSThomas Huth     int max_insns;
5753fcf5ef2aSThomas Huth     unsigned int insn;
5754fcf5ef2aSThomas Huth 
5755fcf5ef2aSThomas Huth     memset(dc, 0, sizeof(DisasContext));
5756fcf5ef2aSThomas Huth     dc->tb = tb;
5757fcf5ef2aSThomas Huth     pc_start = tb->pc;
5758fcf5ef2aSThomas Huth     dc->pc = pc_start;
5759fcf5ef2aSThomas Huth     last_pc = dc->pc;
5760fcf5ef2aSThomas Huth     dc->npc = (target_ulong) tb->cs_base;
5761fcf5ef2aSThomas Huth     dc->cc_op = CC_OP_DYNAMIC;
5762fcf5ef2aSThomas Huth     dc->mem_idx = tb->flags & TB_FLAG_MMU_MASK;
5763fcf5ef2aSThomas Huth     dc->def = env->def;
5764fcf5ef2aSThomas Huth     dc->fpu_enabled = tb_fpu_enabled(tb->flags);
5765fcf5ef2aSThomas Huth     dc->address_mask_32bit = tb_am_enabled(tb->flags);
5766fcf5ef2aSThomas Huth     dc->singlestep = (cs->singlestep_enabled || singlestep);
5767c9b459aaSArtyom Tarasenko #ifndef CONFIG_USER_ONLY
5768c9b459aaSArtyom Tarasenko     dc->supervisor = (tb->flags & TB_FLAG_SUPER) != 0;
5769c9b459aaSArtyom Tarasenko #endif
5770fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5771fcf5ef2aSThomas Huth     dc->fprs_dirty = 0;
5772fcf5ef2aSThomas Huth     dc->asi = (tb->flags >> TB_FLAG_ASI_SHIFT) & 0xff;
5773c9b459aaSArtyom Tarasenko #ifndef CONFIG_USER_ONLY
5774c9b459aaSArtyom Tarasenko     dc->hypervisor = (tb->flags & TB_FLAG_HYPER) != 0;
5775c9b459aaSArtyom Tarasenko #endif
5776fcf5ef2aSThomas Huth #endif
5777fcf5ef2aSThomas Huth 
5778fcf5ef2aSThomas Huth     num_insns = 0;
5779fcf5ef2aSThomas Huth     max_insns = tb->cflags & CF_COUNT_MASK;
5780fcf5ef2aSThomas Huth     if (max_insns == 0) {
5781fcf5ef2aSThomas Huth         max_insns = CF_COUNT_MASK;
5782fcf5ef2aSThomas Huth     }
5783fcf5ef2aSThomas Huth     if (max_insns > TCG_MAX_INSNS) {
5784fcf5ef2aSThomas Huth         max_insns = TCG_MAX_INSNS;
5785fcf5ef2aSThomas Huth     }
5786fcf5ef2aSThomas Huth 
5787fcf5ef2aSThomas Huth     gen_tb_start(tb);
5788fcf5ef2aSThomas Huth     do {
5789fcf5ef2aSThomas Huth         if (dc->npc & JUMP_PC) {
5790fcf5ef2aSThomas Huth             assert(dc->jump_pc[1] == dc->pc + 4);
5791fcf5ef2aSThomas Huth             tcg_gen_insn_start(dc->pc, dc->jump_pc[0] | JUMP_PC);
5792fcf5ef2aSThomas Huth         } else {
5793fcf5ef2aSThomas Huth             tcg_gen_insn_start(dc->pc, dc->npc);
5794fcf5ef2aSThomas Huth         }
5795fcf5ef2aSThomas Huth         num_insns++;
5796fcf5ef2aSThomas Huth         last_pc = dc->pc;
5797fcf5ef2aSThomas Huth 
5798fcf5ef2aSThomas Huth         if (unlikely(cpu_breakpoint_test(cs, dc->pc, BP_ANY))) {
5799fcf5ef2aSThomas Huth             if (dc->pc != pc_start) {
5800fcf5ef2aSThomas Huth                 save_state(dc);
5801fcf5ef2aSThomas Huth             }
5802fcf5ef2aSThomas Huth             gen_helper_debug(cpu_env);
5803fcf5ef2aSThomas Huth             tcg_gen_exit_tb(0);
5804fcf5ef2aSThomas Huth             dc->is_br = 1;
5805fcf5ef2aSThomas Huth             goto exit_gen_loop;
5806fcf5ef2aSThomas Huth         }
5807fcf5ef2aSThomas Huth 
5808fcf5ef2aSThomas Huth         if (num_insns == max_insns && (tb->cflags & CF_LAST_IO)) {
5809fcf5ef2aSThomas Huth             gen_io_start();
5810fcf5ef2aSThomas Huth         }
5811fcf5ef2aSThomas Huth 
5812fcf5ef2aSThomas Huth         insn = cpu_ldl_code(env, dc->pc);
5813fcf5ef2aSThomas Huth 
5814fcf5ef2aSThomas Huth         disas_sparc_insn(dc, insn);
5815fcf5ef2aSThomas Huth 
5816fcf5ef2aSThomas Huth         if (dc->is_br)
5817fcf5ef2aSThomas Huth             break;
5818fcf5ef2aSThomas Huth         /* if the next PC is different, we abort now */
5819fcf5ef2aSThomas Huth         if (dc->pc != (last_pc + 4))
5820fcf5ef2aSThomas Huth             break;
5821fcf5ef2aSThomas Huth         /* if we reach a page boundary, we stop generation so that the
5822fcf5ef2aSThomas Huth            PC of a TT_TFAULT exception is always in the right page */
5823fcf5ef2aSThomas Huth         if ((dc->pc & (TARGET_PAGE_SIZE - 1)) == 0)
5824fcf5ef2aSThomas Huth             break;
5825fcf5ef2aSThomas Huth         /* if single step mode, we generate only one instruction and
5826fcf5ef2aSThomas Huth            generate an exception */
5827fcf5ef2aSThomas Huth         if (dc->singlestep) {
5828fcf5ef2aSThomas Huth             break;
5829fcf5ef2aSThomas Huth         }
5830fcf5ef2aSThomas Huth     } while (!tcg_op_buf_full() &&
5831fcf5ef2aSThomas Huth              (dc->pc - pc_start) < (TARGET_PAGE_SIZE - 32) &&
5832fcf5ef2aSThomas Huth              num_insns < max_insns);
5833fcf5ef2aSThomas Huth 
5834fcf5ef2aSThomas Huth  exit_gen_loop:
5835fcf5ef2aSThomas Huth     if (tb->cflags & CF_LAST_IO) {
5836fcf5ef2aSThomas Huth         gen_io_end();
5837fcf5ef2aSThomas Huth     }
5838fcf5ef2aSThomas Huth     if (!dc->is_br) {
5839fcf5ef2aSThomas Huth         if (dc->pc != DYNAMIC_PC &&
5840fcf5ef2aSThomas Huth             (dc->npc != DYNAMIC_PC && dc->npc != JUMP_PC)) {
5841fcf5ef2aSThomas Huth             /* static PC and NPC: we can use direct chaining */
5842fcf5ef2aSThomas Huth             gen_goto_tb(dc, 0, dc->pc, dc->npc);
5843fcf5ef2aSThomas Huth         } else {
5844fcf5ef2aSThomas Huth             if (dc->pc != DYNAMIC_PC) {
5845fcf5ef2aSThomas Huth                 tcg_gen_movi_tl(cpu_pc, dc->pc);
5846fcf5ef2aSThomas Huth             }
5847fcf5ef2aSThomas Huth             save_npc(dc);
5848fcf5ef2aSThomas Huth             tcg_gen_exit_tb(0);
5849fcf5ef2aSThomas Huth         }
5850fcf5ef2aSThomas Huth     }
5851fcf5ef2aSThomas Huth     gen_tb_end(tb, num_insns);
5852fcf5ef2aSThomas Huth 
5853fcf5ef2aSThomas Huth     tb->size = last_pc + 4 - pc_start;
5854fcf5ef2aSThomas Huth     tb->icount = num_insns;
5855fcf5ef2aSThomas Huth 
5856fcf5ef2aSThomas Huth #ifdef DEBUG_DISAS
5857fcf5ef2aSThomas Huth     if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)
5858fcf5ef2aSThomas Huth         && qemu_log_in_addr_range(pc_start)) {
5859fcf5ef2aSThomas Huth         qemu_log_lock();
5860fcf5ef2aSThomas Huth         qemu_log("--------------\n");
5861fcf5ef2aSThomas Huth         qemu_log("IN: %s\n", lookup_symbol(pc_start));
5862fcf5ef2aSThomas Huth         log_target_disas(cs, pc_start, last_pc + 4 - pc_start, 0);
5863fcf5ef2aSThomas Huth         qemu_log("\n");
5864fcf5ef2aSThomas Huth         qemu_log_unlock();
5865fcf5ef2aSThomas Huth     }
5866fcf5ef2aSThomas Huth #endif
5867fcf5ef2aSThomas Huth }
5868fcf5ef2aSThomas Huth 
5869fcf5ef2aSThomas Huth void gen_intermediate_code_init(CPUSPARCState *env)
5870fcf5ef2aSThomas Huth {
5871fcf5ef2aSThomas Huth     static int inited;
5872fcf5ef2aSThomas Huth     static const char gregnames[32][4] = {
5873fcf5ef2aSThomas Huth         "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
5874fcf5ef2aSThomas Huth         "o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7",
5875fcf5ef2aSThomas Huth         "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
5876fcf5ef2aSThomas Huth         "i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7",
5877fcf5ef2aSThomas Huth     };
5878fcf5ef2aSThomas Huth     static const char fregnames[32][4] = {
5879fcf5ef2aSThomas Huth         "f0", "f2", "f4", "f6", "f8", "f10", "f12", "f14",
5880fcf5ef2aSThomas Huth         "f16", "f18", "f20", "f22", "f24", "f26", "f28", "f30",
5881fcf5ef2aSThomas Huth         "f32", "f34", "f36", "f38", "f40", "f42", "f44", "f46",
5882fcf5ef2aSThomas Huth         "f48", "f50", "f52", "f54", "f56", "f58", "f60", "f62",
5883fcf5ef2aSThomas Huth     };
5884fcf5ef2aSThomas Huth 
5885fcf5ef2aSThomas Huth     static const struct { TCGv_i32 *ptr; int off; const char *name; } r32[] = {
5886fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5887fcf5ef2aSThomas Huth         { &cpu_xcc, offsetof(CPUSPARCState, xcc), "xcc" },
5888fcf5ef2aSThomas Huth         { &cpu_fprs, offsetof(CPUSPARCState, fprs), "fprs" },
5889fcf5ef2aSThomas Huth #else
5890fcf5ef2aSThomas Huth         { &cpu_wim, offsetof(CPUSPARCState, wim), "wim" },
5891fcf5ef2aSThomas Huth #endif
5892fcf5ef2aSThomas Huth         { &cpu_cc_op, offsetof(CPUSPARCState, cc_op), "cc_op" },
5893fcf5ef2aSThomas Huth         { &cpu_psr, offsetof(CPUSPARCState, psr), "psr" },
5894fcf5ef2aSThomas Huth     };
5895fcf5ef2aSThomas Huth 
5896fcf5ef2aSThomas Huth     static const struct { TCGv *ptr; int off; const char *name; } rtl[] = {
5897fcf5ef2aSThomas Huth #ifdef TARGET_SPARC64
5898fcf5ef2aSThomas Huth         { &cpu_gsr, offsetof(CPUSPARCState, gsr), "gsr" },
5899fcf5ef2aSThomas Huth         { &cpu_tick_cmpr, offsetof(CPUSPARCState, tick_cmpr), "tick_cmpr" },
5900fcf5ef2aSThomas Huth         { &cpu_stick_cmpr, offsetof(CPUSPARCState, stick_cmpr), "stick_cmpr" },
5901fcf5ef2aSThomas Huth         { &cpu_hstick_cmpr, offsetof(CPUSPARCState, hstick_cmpr),
5902fcf5ef2aSThomas Huth           "hstick_cmpr" },
5903fcf5ef2aSThomas Huth         { &cpu_hintp, offsetof(CPUSPARCState, hintp), "hintp" },
5904fcf5ef2aSThomas Huth         { &cpu_htba, offsetof(CPUSPARCState, htba), "htba" },
5905fcf5ef2aSThomas Huth         { &cpu_hver, offsetof(CPUSPARCState, hver), "hver" },
5906fcf5ef2aSThomas Huth         { &cpu_ssr, offsetof(CPUSPARCState, ssr), "ssr" },
5907fcf5ef2aSThomas Huth         { &cpu_ver, offsetof(CPUSPARCState, version), "ver" },
5908fcf5ef2aSThomas Huth #endif
5909fcf5ef2aSThomas Huth         { &cpu_cond, offsetof(CPUSPARCState, cond), "cond" },
5910fcf5ef2aSThomas Huth         { &cpu_cc_src, offsetof(CPUSPARCState, cc_src), "cc_src" },
5911fcf5ef2aSThomas Huth         { &cpu_cc_src2, offsetof(CPUSPARCState, cc_src2), "cc_src2" },
5912fcf5ef2aSThomas Huth         { &cpu_cc_dst, offsetof(CPUSPARCState, cc_dst), "cc_dst" },
5913fcf5ef2aSThomas Huth         { &cpu_fsr, offsetof(CPUSPARCState, fsr), "fsr" },
5914fcf5ef2aSThomas Huth         { &cpu_pc, offsetof(CPUSPARCState, pc), "pc" },
5915fcf5ef2aSThomas Huth         { &cpu_npc, offsetof(CPUSPARCState, npc), "npc" },
5916fcf5ef2aSThomas Huth         { &cpu_y, offsetof(CPUSPARCState, y), "y" },
5917fcf5ef2aSThomas Huth #ifndef CONFIG_USER_ONLY
5918fcf5ef2aSThomas Huth         { &cpu_tbr, offsetof(CPUSPARCState, tbr), "tbr" },
5919fcf5ef2aSThomas Huth #endif
5920fcf5ef2aSThomas Huth     };
5921fcf5ef2aSThomas Huth 
5922fcf5ef2aSThomas Huth     unsigned int i;
5923fcf5ef2aSThomas Huth 
5924fcf5ef2aSThomas Huth     /* init various static tables */
5925fcf5ef2aSThomas Huth     if (inited) {
5926fcf5ef2aSThomas Huth         return;
5927fcf5ef2aSThomas Huth     }
5928fcf5ef2aSThomas Huth     inited = 1;
5929fcf5ef2aSThomas Huth 
5930fcf5ef2aSThomas Huth     cpu_env = tcg_global_reg_new_ptr(TCG_AREG0, "env");
5931fcf5ef2aSThomas Huth     tcg_ctx.tcg_env = cpu_env;
5932fcf5ef2aSThomas Huth 
5933fcf5ef2aSThomas Huth     cpu_regwptr = tcg_global_mem_new_ptr(cpu_env,
5934fcf5ef2aSThomas Huth                                          offsetof(CPUSPARCState, regwptr),
5935fcf5ef2aSThomas Huth                                          "regwptr");
5936fcf5ef2aSThomas Huth 
5937fcf5ef2aSThomas Huth     for (i = 0; i < ARRAY_SIZE(r32); ++i) {
5938fcf5ef2aSThomas Huth         *r32[i].ptr = tcg_global_mem_new_i32(cpu_env, r32[i].off, r32[i].name);
5939fcf5ef2aSThomas Huth     }
5940fcf5ef2aSThomas Huth 
5941fcf5ef2aSThomas Huth     for (i = 0; i < ARRAY_SIZE(rtl); ++i) {
5942fcf5ef2aSThomas Huth         *rtl[i].ptr = tcg_global_mem_new(cpu_env, rtl[i].off, rtl[i].name);
5943fcf5ef2aSThomas Huth     }
5944fcf5ef2aSThomas Huth 
5945fcf5ef2aSThomas Huth     TCGV_UNUSED(cpu_regs[0]);
5946fcf5ef2aSThomas Huth     for (i = 1; i < 8; ++i) {
5947fcf5ef2aSThomas Huth         cpu_regs[i] = tcg_global_mem_new(cpu_env,
5948fcf5ef2aSThomas Huth                                          offsetof(CPUSPARCState, gregs[i]),
5949fcf5ef2aSThomas Huth                                          gregnames[i]);
5950fcf5ef2aSThomas Huth     }
5951fcf5ef2aSThomas Huth 
5952fcf5ef2aSThomas Huth     for (i = 8; i < 32; ++i) {
5953fcf5ef2aSThomas Huth         cpu_regs[i] = tcg_global_mem_new(cpu_regwptr,
5954fcf5ef2aSThomas Huth                                          (i - 8) * sizeof(target_ulong),
5955fcf5ef2aSThomas Huth                                          gregnames[i]);
5956fcf5ef2aSThomas Huth     }
5957fcf5ef2aSThomas Huth 
5958fcf5ef2aSThomas Huth     for (i = 0; i < TARGET_DPREGS; i++) {
5959fcf5ef2aSThomas Huth         cpu_fpr[i] = tcg_global_mem_new_i64(cpu_env,
5960fcf5ef2aSThomas Huth                                             offsetof(CPUSPARCState, fpr[i]),
5961fcf5ef2aSThomas Huth                                             fregnames[i]);
5962fcf5ef2aSThomas Huth     }
5963fcf5ef2aSThomas Huth }
5964fcf5ef2aSThomas Huth 
5965fcf5ef2aSThomas Huth void restore_state_to_opc(CPUSPARCState *env, TranslationBlock *tb,
5966fcf5ef2aSThomas Huth                           target_ulong *data)
5967fcf5ef2aSThomas Huth {
5968fcf5ef2aSThomas Huth     target_ulong pc = data[0];
5969fcf5ef2aSThomas Huth     target_ulong npc = data[1];
5970fcf5ef2aSThomas Huth 
5971fcf5ef2aSThomas Huth     env->pc = pc;
5972fcf5ef2aSThomas Huth     if (npc == DYNAMIC_PC) {
5973fcf5ef2aSThomas Huth         /* dynamic NPC: already stored */
5974fcf5ef2aSThomas Huth     } else if (npc & JUMP_PC) {
5975fcf5ef2aSThomas Huth         /* jump PC: use 'cond' and the jump targets of the translation */
5976fcf5ef2aSThomas Huth         if (env->cond) {
5977fcf5ef2aSThomas Huth             env->npc = npc & ~3;
5978fcf5ef2aSThomas Huth         } else {
5979fcf5ef2aSThomas Huth             env->npc = pc + 4;
5980fcf5ef2aSThomas Huth         }
5981fcf5ef2aSThomas Huth     } else {
5982fcf5ef2aSThomas Huth         env->npc = npc;
5983fcf5ef2aSThomas Huth     }
5984fcf5ef2aSThomas Huth }
5985