Statistics
| Branch: | Revision:

root / target-sparc / cpu.h @ 762abf67

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