Statistics
| Branch: | Revision:

root / target-sparc / cpu.h @ f97572e5

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