Statistics
| Branch: | Revision:

root / target-sparc / cpu.h @ 1a14026e

History | View | Annotate | Download (12.8 kB)

1 7a3f1944 bellard
#ifndef CPU_SPARC_H
2 7a3f1944 bellard
#define CPU_SPARC_H
3 7a3f1944 bellard
4 af7bf89b bellard
#include "config.h"
5 af7bf89b bellard
6 af7bf89b bellard
#if !defined(TARGET_SPARC64)
7 3cf1e035 bellard
#define TARGET_LONG_BITS 32
8 af7bf89b bellard
#define TARGET_FPREGS 32
9 83469015 bellard
#define TARGET_PAGE_BITS 12 /* 4k */
10 af7bf89b bellard
#else
11 af7bf89b bellard
#define TARGET_LONG_BITS 64
12 af7bf89b bellard
#define TARGET_FPREGS 64
13 33b37802 blueswir1
#define TARGET_PAGE_BITS 13 /* 8k */
14 af7bf89b bellard
#endif
15 3cf1e035 bellard
16 92b72cbc blueswir1
#define TARGET_PHYS_ADDR_BITS 64
17 92b72cbc blueswir1
18 7a3f1944 bellard
#include "cpu-defs.h"
19 7a3f1944 bellard
20 7a0e1f41 bellard
#include "softfloat.h"
21 7a0e1f41 bellard
22 1fddef4b bellard
#define TARGET_HAS_ICE 1
23 1fddef4b bellard
24 9042c0e2 ths
#if !defined(TARGET_SPARC64)
25 0f8a249a blueswir1
#define ELF_MACHINE     EM_SPARC
26 9042c0e2 ths
#else
27 0f8a249a blueswir1
#define ELF_MACHINE     EM_SPARCV9
28 9042c0e2 ths
#endif
29 9042c0e2 ths
30 7a3f1944 bellard
/*#define EXCP_INTERRUPT 0x100*/
31 7a3f1944 bellard
32 cf495bcf bellard
/* trap definitions */
33 3475187d bellard
#ifndef TARGET_SPARC64
34 878d3096 bellard
#define TT_TFAULT   0x01
35 cf495bcf bellard
#define TT_ILL_INSN 0x02
36 e8af50a3 bellard
#define TT_PRIV_INSN 0x03
37 e80cfcfc bellard
#define TT_NFPU_INSN 0x04
38 cf495bcf bellard
#define TT_WIN_OVF  0x05
39 5fafdf24 ths
#define TT_WIN_UNF  0x06
40 d2889a3e blueswir1
#define TT_UNALIGNED 0x07
41 e8af50a3 bellard
#define TT_FP_EXCP  0x08
42 878d3096 bellard
#define TT_DFAULT   0x09
43 e32f879d blueswir1
#define TT_TOVF     0x0a
44 878d3096 bellard
#define TT_EXTINT   0x10
45 1b2e93c1 blueswir1
#define TT_CODE_ACCESS 0x21
46 64a88d5d blueswir1
#define TT_UNIMP_FLUSH 0x25
47 b4f0a316 blueswir1
#define TT_DATA_ACCESS 0x29
48 cf495bcf bellard
#define TT_DIV_ZERO 0x2a
49 fcc72045 blueswir1
#define TT_NCP_INSN 0x24
50 cf495bcf bellard
#define TT_TRAP     0x80
51 3475187d bellard
#else
52 3475187d bellard
#define TT_TFAULT   0x08
53 83469015 bellard
#define TT_TMISS    0x09
54 1b2e93c1 blueswir1
#define TT_CODE_ACCESS 0x0a
55 3475187d bellard
#define TT_ILL_INSN 0x10
56 64a88d5d blueswir1
#define TT_UNIMP_FLUSH TT_ILL_INSN
57 3475187d bellard
#define TT_PRIV_INSN 0x11
58 3475187d bellard
#define TT_NFPU_INSN 0x20
59 3475187d bellard
#define TT_FP_EXCP  0x21
60 e32f879d blueswir1
#define TT_TOVF     0x23
61 3475187d bellard
#define TT_CLRWIN   0x24
62 3475187d bellard
#define TT_DIV_ZERO 0x28
63 3475187d bellard
#define TT_DFAULT   0x30
64 83469015 bellard
#define TT_DMISS    0x31
65 b4f0a316 blueswir1
#define TT_DATA_ACCESS 0x32
66 b4f0a316 blueswir1
#define TT_DPROT    0x33
67 d2889a3e blueswir1
#define TT_UNALIGNED 0x34
68 83469015 bellard
#define TT_PRIV_ACT 0x37
69 3475187d bellard
#define TT_EXTINT   0x40
70 3475187d bellard
#define TT_SPILL    0x80
71 3475187d bellard
#define TT_FILL     0xc0
72 3475187d bellard
#define TT_WOTHER   0x10
73 3475187d bellard
#define TT_TRAP     0x100
74 3475187d bellard
#endif
75 7a3f1944 bellard
76 4b8b8b76 blueswir1
#define PSR_NEG_SHIFT 23
77 4b8b8b76 blueswir1
#define PSR_NEG   (1 << PSR_NEG_SHIFT)
78 4b8b8b76 blueswir1
#define PSR_ZERO_SHIFT 22
79 4b8b8b76 blueswir1
#define PSR_ZERO  (1 << PSR_ZERO_SHIFT)
80 4b8b8b76 blueswir1
#define PSR_OVF_SHIFT 21
81 4b8b8b76 blueswir1
#define PSR_OVF   (1 << PSR_OVF_SHIFT)
82 4b8b8b76 blueswir1
#define PSR_CARRY_SHIFT 20
83 4b8b8b76 blueswir1
#define PSR_CARRY (1 << PSR_CARRY_SHIFT)
84 e8af50a3 bellard
#define PSR_ICC   (PSR_NEG|PSR_ZERO|PSR_OVF|PSR_CARRY)
85 e80cfcfc bellard
#define PSR_EF    (1<<12)
86 e80cfcfc bellard
#define PSR_PIL   0xf00
87 e8af50a3 bellard
#define PSR_S     (1<<7)
88 e8af50a3 bellard
#define PSR_PS    (1<<6)
89 e8af50a3 bellard
#define PSR_ET    (1<<5)
90 e8af50a3 bellard
#define PSR_CWP   0x1f
91 e8af50a3 bellard
92 e8af50a3 bellard
/* Trap base register */
93 e8af50a3 bellard
#define TBR_BASE_MASK 0xfffff000
94 e8af50a3 bellard
95 3475187d bellard
#if defined(TARGET_SPARC64)
96 83469015 bellard
#define PS_IG    (1<<11)
97 83469015 bellard
#define PS_MG    (1<<10)
98 6ef905f6 blueswir1
#define PS_RMO   (1<<7)
99 83469015 bellard
#define PS_RED   (1<<5)
100 3475187d bellard
#define PS_PEF   (1<<4)
101 3475187d bellard
#define PS_AM    (1<<3)
102 3475187d bellard
#define PS_PRIV  (1<<2)
103 3475187d bellard
#define PS_IE    (1<<1)
104 83469015 bellard
#define PS_AG    (1<<0)
105 a80dde08 bellard
106 a80dde08 bellard
#define FPRS_FEF (1<<2)
107 6f27aba6 blueswir1
108 6f27aba6 blueswir1
#define HS_PRIV  (1<<2)
109 3475187d bellard
#endif
110 3475187d bellard
111 e8af50a3 bellard
/* Fcc */
112 e8af50a3 bellard
#define FSR_RD1        (1<<31)
113 e8af50a3 bellard
#define FSR_RD0        (1<<30)
114 e8af50a3 bellard
#define FSR_RD_MASK    (FSR_RD1 | FSR_RD0)
115 e8af50a3 bellard
#define FSR_RD_NEAREST 0
116 e8af50a3 bellard
#define FSR_RD_ZERO    FSR_RD0
117 e8af50a3 bellard
#define FSR_RD_POS     FSR_RD1
118 e8af50a3 bellard
#define FSR_RD_NEG     (FSR_RD1 | FSR_RD0)
119 e8af50a3 bellard
120 e8af50a3 bellard
#define FSR_NVM   (1<<27)
121 e8af50a3 bellard
#define FSR_OFM   (1<<26)
122 e8af50a3 bellard
#define FSR_UFM   (1<<25)
123 e8af50a3 bellard
#define FSR_DZM   (1<<24)
124 e8af50a3 bellard
#define FSR_NXM   (1<<23)
125 e8af50a3 bellard
#define FSR_TEM_MASK (FSR_NVM | FSR_OFM | FSR_UFM | FSR_DZM | FSR_NXM)
126 e8af50a3 bellard
127 e8af50a3 bellard
#define FSR_NVA   (1<<9)
128 e8af50a3 bellard
#define FSR_OFA   (1<<8)
129 e8af50a3 bellard
#define FSR_UFA   (1<<7)
130 e8af50a3 bellard
#define FSR_DZA   (1<<6)
131 e8af50a3 bellard
#define FSR_NXA   (1<<5)
132 e8af50a3 bellard
#define FSR_AEXC_MASK (FSR_NVA | FSR_OFA | FSR_UFA | FSR_DZA | FSR_NXA)
133 e8af50a3 bellard
134 e8af50a3 bellard
#define FSR_NVC   (1<<4)
135 e8af50a3 bellard
#define FSR_OFC   (1<<3)
136 e8af50a3 bellard
#define FSR_UFC   (1<<2)
137 e8af50a3 bellard
#define FSR_DZC   (1<<1)
138 e8af50a3 bellard
#define FSR_NXC   (1<<0)
139 e8af50a3 bellard
#define FSR_CEXC_MASK (FSR_NVC | FSR_OFC | FSR_UFC | FSR_DZC | FSR_NXC)
140 e8af50a3 bellard
141 e8af50a3 bellard
#define FSR_FTT2   (1<<16)
142 e8af50a3 bellard
#define FSR_FTT1   (1<<15)
143 e8af50a3 bellard
#define FSR_FTT0   (1<<14)
144 e8af50a3 bellard
#define FSR_FTT_MASK (FSR_FTT2 | FSR_FTT1 | FSR_FTT0)
145 e80cfcfc bellard
#define FSR_FTT_IEEE_EXCP (1 << 14)
146 e80cfcfc bellard
#define FSR_FTT_UNIMPFPOP (3 << 14)
147 9143e598 blueswir1
#define FSR_FTT_SEQ_ERROR (4 << 14)
148 e80cfcfc bellard
#define FSR_FTT_INVAL_FPR (6 << 14)
149 e8af50a3 bellard
150 4b8b8b76 blueswir1
#define FSR_FCC1_SHIFT 11
151 4b8b8b76 blueswir1
#define FSR_FCC1  (1 << FSR_FCC1_SHIFT)
152 4b8b8b76 blueswir1
#define FSR_FCC0_SHIFT 10
153 4b8b8b76 blueswir1
#define FSR_FCC0  (1 << FSR_FCC0_SHIFT)
154 e8af50a3 bellard
155 e8af50a3 bellard
/* MMU */
156 0f8a249a blueswir1
#define MMU_E     (1<<0)
157 0f8a249a blueswir1
#define MMU_NF    (1<<1)
158 e8af50a3 bellard
159 e8af50a3 bellard
#define PTE_ENTRYTYPE_MASK 3
160 e8af50a3 bellard
#define PTE_ACCESS_MASK    0x1c
161 e8af50a3 bellard
#define PTE_ACCESS_SHIFT   2
162 8d5f07fa bellard
#define PTE_PPN_SHIFT      7
163 e8af50a3 bellard
#define PTE_ADDR_MASK      0xffffff00
164 e8af50a3 bellard
165 0f8a249a blueswir1
#define PG_ACCESSED_BIT 5
166 0f8a249a blueswir1
#define PG_MODIFIED_BIT 6
167 e8af50a3 bellard
#define PG_CACHE_BIT    7
168 e8af50a3 bellard
169 e8af50a3 bellard
#define PG_ACCESSED_MASK (1 << PG_ACCESSED_BIT)
170 e8af50a3 bellard
#define PG_MODIFIED_MASK (1 << PG_MODIFIED_BIT)
171 e8af50a3 bellard
#define PG_CACHE_MASK    (1 << PG_CACHE_BIT)
172 e8af50a3 bellard
173 1a14026e blueswir1
/* 3 <= NWINDOWS <= 32. */
174 1a14026e blueswir1
#define MIN_NWINDOWS 3
175 1a14026e blueswir1
#define MAX_NWINDOWS 32
176 cf495bcf bellard
177 6f27aba6 blueswir1
#if !defined(TARGET_SPARC64)
178 6ebbf390 j_mayer
#define NB_MMU_MODES 2
179 6f27aba6 blueswir1
#else
180 6f27aba6 blueswir1
#define NB_MMU_MODES 3
181 375ee38b blueswir1
typedef struct trap_state {
182 375ee38b blueswir1
    uint64_t tpc;
183 375ee38b blueswir1
    uint64_t tnpc;
184 375ee38b blueswir1
    uint64_t tstate;
185 375ee38b blueswir1
    uint32_t tt;
186 375ee38b blueswir1
} trap_state;
187 6f27aba6 blueswir1
#endif
188 6ebbf390 j_mayer
189 7a3f1944 bellard
typedef struct CPUSPARCState {
190 af7bf89b bellard
    target_ulong gregs[8]; /* general registers */
191 af7bf89b bellard
    target_ulong *regwptr; /* pointer to current register window */
192 af7bf89b bellard
    target_ulong pc;       /* program counter */
193 af7bf89b bellard
    target_ulong npc;      /* next program counter */
194 af7bf89b bellard
    target_ulong y;        /* multiply/divide register */
195 dc99a3f2 blueswir1
196 dc99a3f2 blueswir1
    /* emulator internal flags handling */
197 d9bdab86 blueswir1
    target_ulong cc_src, cc_src2;
198 dc99a3f2 blueswir1
    target_ulong cc_dst;
199 dc99a3f2 blueswir1
200 7c60cc4b bellard
    target_ulong t0, t1; /* temporaries live across basic blocks */
201 7c60cc4b bellard
    target_ulong cond; /* conditional branch result (XXX: save it in a
202 7c60cc4b bellard
                          temporary register when possible) */
203 7c60cc4b bellard
204 cf495bcf bellard
    uint32_t psr;      /* processor state register */
205 3475187d bellard
    target_ulong fsr;      /* FPU state register */
206 7c60cc4b bellard
    float32 fpr[TARGET_FPREGS];  /* floating point registers */
207 cf495bcf bellard
    uint32_t cwp;      /* index of current register window (extracted
208 cf495bcf bellard
                          from PSR) */
209 cf495bcf bellard
    uint32_t wim;      /* window invalid mask */
210 3475187d bellard
    target_ulong tbr;  /* trap base register */
211 e8af50a3 bellard
    int      psrs;     /* supervisor mode (extracted from PSR) */
212 e8af50a3 bellard
    int      psrps;    /* previous supervisor mode */
213 e8af50a3 bellard
    int      psret;    /* enable traps */
214 327ac2e7 blueswir1
    uint32_t psrpil;   /* interrupt blocking level */
215 327ac2e7 blueswir1
    uint32_t pil_in;   /* incoming interrupt level bitmap */
216 e80cfcfc bellard
    int      psref;    /* enable fpu */
217 62724a37 blueswir1
    target_ulong version;
218 cf495bcf bellard
    int user_mode_only;
219 cf495bcf bellard
    int interrupt_index;
220 cf495bcf bellard
    int interrupt_request;
221 6d5f237a blueswir1
    uint32_t mmu_bm;
222 3deaeab7 blueswir1
    uint32_t mmu_ctpr_mask;
223 3deaeab7 blueswir1
    uint32_t mmu_cxr_mask;
224 3deaeab7 blueswir1
    uint32_t mmu_sfsr_mask;
225 3deaeab7 blueswir1
    uint32_t mmu_trcr_mask;
226 1a14026e blueswir1
    uint32_t nwindows;
227 cf495bcf bellard
    /* NOTE: we allow 8 more registers to handle wrapping */
228 1a14026e blueswir1
    target_ulong regbase[MAX_NWINDOWS * 16 + 8];
229 d720b93d bellard
230 a316d335 bellard
    CPU_COMMON
231 a316d335 bellard
232 e8af50a3 bellard
    /* MMU regs */
233 3475187d bellard
#if defined(TARGET_SPARC64)
234 3475187d bellard
    uint64_t lsu;
235 3475187d bellard
#define DMMU_E 0x8
236 3475187d bellard
#define IMMU_E 0x4
237 3475187d bellard
    uint64_t immuregs[16];
238 3475187d bellard
    uint64_t dmmuregs[16];
239 3475187d bellard
    uint64_t itlb_tag[64];
240 3475187d bellard
    uint64_t itlb_tte[64];
241 3475187d bellard
    uint64_t dtlb_tag[64];
242 3475187d bellard
    uint64_t dtlb_tte[64];
243 3475187d bellard
#else
244 3dd9a152 blueswir1
    uint32_t mmuregs[32];
245 952a328f blueswir1
    uint64_t mxccdata[4];
246 952a328f blueswir1
    uint64_t mxccregs[8];
247 3ebf5aaf blueswir1
    uint64_t prom_addr;
248 3475187d bellard
#endif
249 e8af50a3 bellard
    /* temporary float registers */
250 65ce8c2f bellard
    float32 ft0, ft1;
251 65ce8c2f bellard
    float64 dt0, dt1;
252 1f587329 blueswir1
    float128 qt0, qt1;
253 7a0e1f41 bellard
    float_status fp_status;
254 af7bf89b bellard
#if defined(TARGET_SPARC64)
255 3475187d bellard
#define MAXTL 4
256 375ee38b blueswir1
    trap_state *tsptr;
257 375ee38b blueswir1
    trap_state ts[MAXTL];
258 0f8a249a blueswir1
    uint32_t xcc;               /* Extended integer condition codes */
259 3475187d bellard
    uint32_t asi;
260 3475187d bellard
    uint32_t pstate;
261 3475187d bellard
    uint32_t tl;
262 3475187d bellard
    uint32_t cansave, canrestore, otherwin, wstate, cleanwin;
263 83469015 bellard
    uint64_t agregs[8]; /* alternate general registers */
264 83469015 bellard
    uint64_t bgregs[8]; /* backup for normal global registers */
265 83469015 bellard
    uint64_t igregs[8]; /* interrupt general registers */
266 83469015 bellard
    uint64_t mgregs[8]; /* mmu general registers */
267 3475187d bellard
    uint64_t fprs;
268 83469015 bellard
    uint64_t tick_cmpr, stick_cmpr;
269 20c9f095 blueswir1
    void *tick, *stick;
270 725cb90b bellard
    uint64_t gsr;
271 e9ebed4d blueswir1
    uint32_t gl; // UA2005
272 e9ebed4d blueswir1
    /* UA 2005 hyperprivileged registers */
273 e9ebed4d blueswir1
    uint64_t hpstate, htstate[MAXTL], hintp, htba, hver, hstick_cmpr, ssr;
274 20c9f095 blueswir1
    void *hstick; // UA 2005
275 3475187d bellard
#endif
276 64a88d5d blueswir1
    uint32_t features;
277 7a3f1944 bellard
} CPUSPARCState;
278 64a88d5d blueswir1
279 64a88d5d blueswir1
#define CPU_FEATURE_FLOAT    (1 << 0)
280 64a88d5d blueswir1
#define CPU_FEATURE_FLOAT128 (1 << 1)
281 64a88d5d blueswir1
#define CPU_FEATURE_SWAP     (1 << 2)
282 64a88d5d blueswir1
#define CPU_FEATURE_MUL      (1 << 3)
283 64a88d5d blueswir1
#define CPU_FEATURE_DIV      (1 << 4)
284 64a88d5d blueswir1
#define CPU_FEATURE_FLUSH    (1 << 5)
285 64a88d5d blueswir1
#define CPU_FEATURE_FSQRT    (1 << 6)
286 64a88d5d blueswir1
#define CPU_FEATURE_FMUL     (1 << 7)
287 64a88d5d blueswir1
#define CPU_FEATURE_VIS1     (1 << 8)
288 64a88d5d blueswir1
#define CPU_FEATURE_VIS2     (1 << 9)
289 e30b4678 blueswir1
#define CPU_FEATURE_FSMULD   (1 << 10)
290 64a88d5d blueswir1
#ifndef TARGET_SPARC64
291 64a88d5d blueswir1
#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP |  \
292 64a88d5d blueswir1
                              CPU_FEATURE_MUL | CPU_FEATURE_DIV |     \
293 64a88d5d blueswir1
                              CPU_FEATURE_FLUSH | CPU_FEATURE_FSQRT | \
294 e30b4678 blueswir1
                              CPU_FEATURE_FMUL | CPU_FEATURE_FSMULD)
295 64a88d5d blueswir1
#else
296 64a88d5d blueswir1
#define CPU_DEFAULT_FEATURES (CPU_FEATURE_FLOAT | CPU_FEATURE_SWAP |  \
297 64a88d5d blueswir1
                              CPU_FEATURE_MUL | CPU_FEATURE_DIV |     \
298 64a88d5d blueswir1
                              CPU_FEATURE_FLUSH | CPU_FEATURE_FSQRT | \
299 64a88d5d blueswir1
                              CPU_FEATURE_FMUL | CPU_FEATURE_VIS1 |   \
300 e30b4678 blueswir1
                              CPU_FEATURE_VIS2 | CPU_FEATURE_FSMULD)
301 64a88d5d blueswir1
#endif
302 64a88d5d blueswir1
303 3475187d bellard
#if defined(TARGET_SPARC64)
304 3475187d bellard
#define GET_FSR32(env) (env->fsr & 0xcfc1ffff)
305 0f8a249a blueswir1
#define PUT_FSR32(env, val) do { uint32_t _tmp = val;                   \
306 0f8a249a blueswir1
        env->fsr = (_tmp & 0xcfc1c3ff) | (env->fsr & 0x3f00000000ULL);  \
307 3475187d bellard
    } while (0)
308 3475187d bellard
#define GET_FSR64(env) (env->fsr & 0x3fcfc1ffffULL)
309 0f8a249a blueswir1
#define PUT_FSR64(env, val) do { uint64_t _tmp = val;   \
310 0f8a249a blueswir1
        env->fsr = _tmp & 0x3fcfc1c3ffULL;              \
311 3475187d bellard
    } while (0)
312 3475187d bellard
#else
313 3475187d bellard
#define GET_FSR32(env) (env->fsr)
314 3e736bf4 blueswir1
#define PUT_FSR32(env, val) do { uint32_t _tmp = val;                   \
315 9143e598 blueswir1
        env->fsr = (_tmp & 0xcfc1dfff) | (env->fsr & 0x000e0000);       \
316 3475187d bellard
    } while (0)
317 3475187d bellard
#endif
318 7a3f1944 bellard
319 aaed909a bellard
CPUSPARCState *cpu_sparc_init(const char *cpu_model);
320 c48fcb47 blueswir1
void gen_intermediate_code_init(CPUSPARCState *env);
321 7a3f1944 bellard
int cpu_sparc_exec(CPUSPARCState *s);
322 62724a37 blueswir1
void sparc_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt,
323 62724a37 blueswir1
                                                 ...));
324 aaed909a bellard
void cpu_sparc_set_id(CPUSPARCState *env, unsigned int cpu);
325 7a3f1944 bellard
326 62724a37 blueswir1
#define GET_PSR(env) (env->version | (env->psr & PSR_ICC) |             \
327 0f8a249a blueswir1
                      (env->psref? PSR_EF : 0) |                        \
328 0f8a249a blueswir1
                      (env->psrpil << 8) |                              \
329 0f8a249a blueswir1
                      (env->psrs? PSR_S : 0) |                          \
330 0f8a249a blueswir1
                      (env->psrps? PSR_PS : 0) |                        \
331 0f8a249a blueswir1
                      (env->psret? PSR_ET : 0) | env->cwp)
332 b4ff5987 bellard
333 b4ff5987 bellard
#ifndef NO_CPU_IO_DEFS
334 b4ff5987 bellard
void cpu_set_cwp(CPUSPARCState *env1, int new_cwp);
335 1a14026e blueswir1
336 1a14026e blueswir1
static inline int cpu_cwp_inc(CPUSPARCState *env1, int cwp)
337 1a14026e blueswir1
{
338 1a14026e blueswir1
    if (unlikely(cwp >= env1->nwindows))
339 1a14026e blueswir1
        cwp -= env1->nwindows;
340 1a14026e blueswir1
    return cwp;
341 1a14026e blueswir1
}
342 1a14026e blueswir1
343 1a14026e blueswir1
static inline int cpu_cwp_dec(CPUSPARCState *env1, int cwp)
344 1a14026e blueswir1
{
345 1a14026e blueswir1
    if (unlikely(cwp < 0))
346 1a14026e blueswir1
        cwp += env1->nwindows;
347 1a14026e blueswir1
    return cwp;
348 1a14026e blueswir1
}
349 b4ff5987 bellard
#endif
350 b4ff5987 bellard
351 0f8a249a blueswir1
#define PUT_PSR(env, val) do { int _tmp = val;                          \
352 0f8a249a blueswir1
        env->psr = _tmp & PSR_ICC;                                      \
353 0f8a249a blueswir1
        env->psref = (_tmp & PSR_EF)? 1 : 0;                            \
354 0f8a249a blueswir1
        env->psrpil = (_tmp & PSR_PIL) >> 8;                            \
355 0f8a249a blueswir1
        env->psrs = (_tmp & PSR_S)? 1 : 0;                              \
356 0f8a249a blueswir1
        env->psrps = (_tmp & PSR_PS)? 1 : 0;                            \
357 0f8a249a blueswir1
        env->psret = (_tmp & PSR_ET)? 1 : 0;                            \
358 d4218d99 blueswir1
        cpu_set_cwp(env, _tmp & PSR_CWP);                               \
359 b4ff5987 bellard
    } while (0)
360 b4ff5987 bellard
361 3475187d bellard
#ifdef TARGET_SPARC64
362 17d996e1 blueswir1
#define GET_CCR(env) (((env->xcc >> 20) << 4) | ((env->psr & PSR_ICC) >> 20))
363 0f8a249a blueswir1
#define PUT_CCR(env, val) do { int _tmp = val;                          \
364 77f193da blueswir1
        env->xcc = (_tmp >> 4) << 20;                                   \
365 0f8a249a blueswir1
        env->psr = (_tmp & 0xf) << 20;                                  \
366 3475187d bellard
    } while (0)
367 1a14026e blueswir1
#define GET_CWP64(env) (env->nwindows - 1 - (env)->cwp)
368 1a14026e blueswir1
369 1a14026e blueswir1
static inline void PUT_CWP64(CPUSPARCState *env1, int cwp)
370 1a14026e blueswir1
{
371 1a14026e blueswir1
    if (unlikely(cwp >= env1->nwindows || cwp < 0))
372 1a14026e blueswir1
        cwp = 0;
373 1a14026e blueswir1
    cpu_set_cwp(env1, env1->nwindows - 1 - cwp);
374 1a14026e blueswir1
}
375 17d996e1 blueswir1
376 3475187d bellard
#endif
377 3475187d bellard
378 5a7b542b ths
int cpu_sparc_signal_handler(int host_signum, void *pinfo, void *puc);
379 5dcb6b91 blueswir1
void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec,
380 6c36d3fa blueswir1
                          int is_asi);
381 327ac2e7 blueswir1
void cpu_check_irqs(CPUSPARCState *env);
382 7a3f1944 bellard
383 9467d44c ths
#define CPUState CPUSPARCState
384 9467d44c ths
#define cpu_init cpu_sparc_init
385 9467d44c ths
#define cpu_exec cpu_sparc_exec
386 9467d44c ths
#define cpu_gen_code cpu_sparc_gen_code
387 9467d44c ths
#define cpu_signal_handler cpu_sparc_signal_handler
388 c732abe2 j_mayer
#define cpu_list sparc_cpu_list
389 9467d44c ths
390 6ebbf390 j_mayer
/* MMU modes definitions */
391 6f27aba6 blueswir1
#define MMU_MODE0_SUFFIX _user
392 6f27aba6 blueswir1
#define MMU_MODE1_SUFFIX _kernel
393 6f27aba6 blueswir1
#ifdef TARGET_SPARC64
394 6f27aba6 blueswir1
#define MMU_MODE2_SUFFIX _hypv
395 6f27aba6 blueswir1
#endif
396 9e31b9e2 blueswir1
#define MMU_USER_IDX   0
397 9e31b9e2 blueswir1
#define MMU_KERNEL_IDX 1
398 9e31b9e2 blueswir1
#define MMU_HYPV_IDX   2
399 9e31b9e2 blueswir1
400 22548760 blueswir1
static inline int cpu_mmu_index(CPUState *env1)
401 6ebbf390 j_mayer
{
402 6f27aba6 blueswir1
#if defined(CONFIG_USER_ONLY)
403 9e31b9e2 blueswir1
    return MMU_USER_IDX;
404 6f27aba6 blueswir1
#elif !defined(TARGET_SPARC64)
405 22548760 blueswir1
    return env1->psrs;
406 6f27aba6 blueswir1
#else
407 22548760 blueswir1
    if (!env1->psrs)
408 9e31b9e2 blueswir1
        return MMU_USER_IDX;
409 22548760 blueswir1
    else if ((env1->hpstate & HS_PRIV) == 0)
410 9e31b9e2 blueswir1
        return MMU_KERNEL_IDX;
411 6f27aba6 blueswir1
    else
412 9e31b9e2 blueswir1
        return MMU_HYPV_IDX;
413 6f27aba6 blueswir1
#endif
414 6f27aba6 blueswir1
}
415 6f27aba6 blueswir1
416 22548760 blueswir1
static inline int cpu_fpu_enabled(CPUState *env1)
417 6f27aba6 blueswir1
{
418 6f27aba6 blueswir1
#if defined(CONFIG_USER_ONLY)
419 6f27aba6 blueswir1
    return 1;
420 6f27aba6 blueswir1
#elif !defined(TARGET_SPARC64)
421 22548760 blueswir1
    return env1->psref;
422 6f27aba6 blueswir1
#else
423 22548760 blueswir1
    return ((env1->pstate & PS_PEF) != 0) && ((env1->fprs & FPRS_FEF) != 0);
424 6f27aba6 blueswir1
#endif
425 6ebbf390 j_mayer
}
426 6ebbf390 j_mayer
427 6e68e076 pbrook
#if defined(CONFIG_USER_ONLY)
428 6e68e076 pbrook
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
429 6e68e076 pbrook
{
430 f8ed7070 pbrook
    if (newsp)
431 6e68e076 pbrook
        env->regwptr[22] = newsp;
432 6e68e076 pbrook
    env->regwptr[0] = 0;
433 6e68e076 pbrook
    /* FIXME: Do we also need to clear CF?  */
434 6e68e076 pbrook
    /* XXXXX */
435 6e68e076 pbrook
    printf ("HELPME: %s:%d\n", __FILE__, __LINE__);
436 6e68e076 pbrook
}
437 6e68e076 pbrook
#endif
438 6e68e076 pbrook
439 7a3f1944 bellard
#include "cpu-all.h"
440 7a3f1944 bellard
441 7a3f1944 bellard
#endif