Statistics
| Branch: | Revision:

root / target-mips / exec.h @ 90cb786c

History | View | Annotate | Download (7.3 kB)

1 6af0bf9c bellard
#if !defined(__QEMU_MIPS_EXEC_H__)
2 6af0bf9c bellard
#define __QEMU_MIPS_EXEC_H__
3 6af0bf9c bellard
4 01dbbdf1 bellard
//#define DEBUG_OP
5 6af0bf9c bellard
6 c570fd16 ths
#include "config.h"
7 6af0bf9c bellard
#include "mips-defs.h"
8 6af0bf9c bellard
#include "dyngen-exec.h"
9 01179c38 ths
#include "cpu-defs.h"
10 6af0bf9c bellard
11 6af0bf9c bellard
register struct CPUMIPSState *env asm(AREG0);
12 6af0bf9c bellard
13 c570fd16 ths
#if TARGET_LONG_BITS > HOST_LONG_BITS
14 c570fd16 ths
#define T0 (env->t0)
15 c570fd16 ths
#define T1 (env->t1)
16 c570fd16 ths
#else
17 958fb4a9 ths
register target_ulong T0 asm(AREG1);
18 958fb4a9 ths
register target_ulong T1 asm(AREG2);
19 c570fd16 ths
#endif
20 6af0bf9c bellard
21 6af0bf9c bellard
#if defined (USE_HOST_FLOAT_REGS)
22 6ea83fed bellard
#error "implement me."
23 6af0bf9c bellard
#else
24 ead9360e ths
#define FDT0 (env->fpu->ft0.fd)
25 ead9360e ths
#define FDT1 (env->fpu->ft1.fd)
26 ead9360e ths
#define FDT2 (env->fpu->ft2.fd)
27 ead9360e ths
#define FST0 (env->fpu->ft0.fs[FP_ENDIAN_IDX])
28 ead9360e ths
#define FST1 (env->fpu->ft1.fs[FP_ENDIAN_IDX])
29 ead9360e ths
#define FST2 (env->fpu->ft2.fs[FP_ENDIAN_IDX])
30 ead9360e ths
#define FSTH0 (env->fpu->ft0.fs[!FP_ENDIAN_IDX])
31 ead9360e ths
#define FSTH1 (env->fpu->ft1.fs[!FP_ENDIAN_IDX])
32 ead9360e ths
#define FSTH2 (env->fpu->ft2.fs[!FP_ENDIAN_IDX])
33 ead9360e ths
#define DT0 (env->fpu->ft0.d)
34 ead9360e ths
#define DT1 (env->fpu->ft1.d)
35 ead9360e ths
#define DT2 (env->fpu->ft2.d)
36 ead9360e ths
#define WT0 (env->fpu->ft0.w[FP_ENDIAN_IDX])
37 ead9360e ths
#define WT1 (env->fpu->ft1.w[FP_ENDIAN_IDX])
38 ead9360e ths
#define WT2 (env->fpu->ft2.w[FP_ENDIAN_IDX])
39 ead9360e ths
#define WTH0 (env->fpu->ft0.w[!FP_ENDIAN_IDX])
40 ead9360e ths
#define WTH1 (env->fpu->ft1.w[!FP_ENDIAN_IDX])
41 ead9360e ths
#define WTH2 (env->fpu->ft2.w[!FP_ENDIAN_IDX])
42 6af0bf9c bellard
#endif
43 6af0bf9c bellard
44 6af0bf9c bellard
#include "cpu.h"
45 6af0bf9c bellard
#include "exec-all.h"
46 6af0bf9c bellard
47 6af0bf9c bellard
#if !defined(CONFIG_USER_ONLY)
48 a9049a07 bellard
#include "softmmu_exec.h"
49 6af0bf9c bellard
#endif /* !defined(CONFIG_USER_ONLY) */
50 6af0bf9c bellard
51 d26bc211 ths
#if defined(TARGET_MIPS64)
52 c570fd16 ths
#if TARGET_LONG_BITS > HOST_LONG_BITS
53 c570fd16 ths
void do_dsll (void);
54 c570fd16 ths
void do_dsll32 (void);
55 c570fd16 ths
void do_dsra (void);
56 c570fd16 ths
void do_dsra32 (void);
57 c570fd16 ths
void do_dsrl (void);
58 c570fd16 ths
void do_dsrl32 (void);
59 c570fd16 ths
void do_drotr (void);
60 c570fd16 ths
void do_drotr32 (void);
61 c570fd16 ths
void do_dsllv (void);
62 c570fd16 ths
void do_dsrav (void);
63 c570fd16 ths
void do_dsrlv (void);
64 c570fd16 ths
void do_drotrv (void);
65 05f778c8 ths
void do_dclo (void);
66 05f778c8 ths
void do_dclz (void);
67 c570fd16 ths
#endif
68 c570fd16 ths
#endif
69 c570fd16 ths
70 80c27194 ths
#if HOST_LONG_BITS < 64
71 80c27194 ths
void do_div (void);
72 80c27194 ths
#endif
73 c570fd16 ths
#if TARGET_LONG_BITS > HOST_LONG_BITS
74 6af0bf9c bellard
void do_mult (void);
75 6af0bf9c bellard
void do_multu (void);
76 6af0bf9c bellard
void do_madd (void);
77 6af0bf9c bellard
void do_maddu (void);
78 6af0bf9c bellard
void do_msub (void);
79 6af0bf9c bellard
void do_msubu (void);
80 e9c71dd1 ths
void do_muls (void);
81 e9c71dd1 ths
void do_mulsu (void);
82 e9c71dd1 ths
void do_macc (void);
83 e9c71dd1 ths
void do_macchi (void);
84 e9c71dd1 ths
void do_maccu (void);
85 e9c71dd1 ths
void do_macchiu (void);
86 e9c71dd1 ths
void do_msac (void);
87 e9c71dd1 ths
void do_msachi (void);
88 e9c71dd1 ths
void do_msacu (void);
89 e9c71dd1 ths
void do_msachiu (void);
90 e9c71dd1 ths
void do_mulhi (void);
91 e9c71dd1 ths
void do_mulhiu (void);
92 e9c71dd1 ths
void do_mulshi (void);
93 e9c71dd1 ths
void do_mulshiu (void);
94 80c27194 ths
#endif
95 d26bc211 ths
#if defined(TARGET_MIPS64)
96 c570fd16 ths
void do_ddiv (void);
97 80c27194 ths
#if TARGET_LONG_BITS > HOST_LONG_BITS
98 c570fd16 ths
void do_ddivu (void);
99 c570fd16 ths
#endif
100 6af0bf9c bellard
#endif
101 873eb012 ths
void do_mfc0_random(void);
102 873eb012 ths
void do_mfc0_count(void);
103 7a387fff ths
void do_mtc0_entryhi(uint32_t in);
104 8c0fdd85 ths
void do_mtc0_status_debug(uint32_t old, uint32_t val);
105 8c0fdd85 ths
void do_mtc0_status_irqraise_debug(void);
106 6ea83fed bellard
void dump_fpu(CPUState *env);
107 5fafdf24 ths
void fpu_dump_state(CPUState *env, FILE *f,
108 6ea83fed bellard
                    int (*fpu_fprintf)(FILE *f, const char *fmt, ...),
109 6ea83fed bellard
                    int flags);
110 6ea83fed bellard
void dump_sc (void);
111 6af0bf9c bellard
void do_pmon (int function);
112 6af0bf9c bellard
113 6af0bf9c bellard
int cpu_mips_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
114 6ebbf390 j_mayer
                               int mmu_idx, int is_softmmu);
115 6af0bf9c bellard
void do_interrupt (CPUState *env);
116 29929e34 ths
void r4k_invalidate_tlb (CPUState *env, int idx, int use_extra);
117 6af0bf9c bellard
118 6af0bf9c bellard
void cpu_loop_exit(void);
119 6af0bf9c bellard
void do_raise_exception_err (uint32_t exception, int error_code);
120 6af0bf9c bellard
void do_raise_exception (uint32_t exception);
121 6af0bf9c bellard
122 5fafdf24 ths
void cpu_dump_state(CPUState *env, FILE *f,
123 6af0bf9c bellard
                    int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
124 6af0bf9c bellard
                    int flags);
125 6af0bf9c bellard
void cpu_mips_irqctrl_init (void);
126 6af0bf9c bellard
uint32_t cpu_mips_get_random (CPUState *env);
127 6af0bf9c bellard
uint32_t cpu_mips_get_count (CPUState *env);
128 6af0bf9c bellard
void cpu_mips_store_count (CPUState *env, uint32_t value);
129 6af0bf9c bellard
void cpu_mips_store_compare (CPUState *env, uint32_t value);
130 42532189 ths
void cpu_mips_start_count(CPUState *env);
131 42532189 ths
void cpu_mips_stop_count(CPUState *env);
132 a4bc3afc ths
void cpu_mips_update_irq (CPUState *env);
133 6af0bf9c bellard
void cpu_mips_clock_init (CPUState *env);
134 814b9a47 ths
void cpu_mips_tlb_flush (CPUState *env, int flush_global);
135 6af0bf9c bellard
136 ead9360e ths
void do_cfc1 (int reg);
137 ead9360e ths
void do_ctc1 (int reg);
138 57fa1fb3 ths
139 57fa1fb3 ths
#define FOP_PROTO(op)              \
140 57fa1fb3 ths
void do_float_ ## op ## _s(void);  \
141 57fa1fb3 ths
void do_float_ ## op ## _d(void);
142 57fa1fb3 ths
FOP_PROTO(roundl)
143 57fa1fb3 ths
FOP_PROTO(roundw)
144 57fa1fb3 ths
FOP_PROTO(truncl)
145 57fa1fb3 ths
FOP_PROTO(truncw)
146 57fa1fb3 ths
FOP_PROTO(ceill)
147 57fa1fb3 ths
FOP_PROTO(ceilw)
148 57fa1fb3 ths
FOP_PROTO(floorl)
149 57fa1fb3 ths
FOP_PROTO(floorw)
150 57fa1fb3 ths
FOP_PROTO(rsqrt)
151 57fa1fb3 ths
FOP_PROTO(recip)
152 57fa1fb3 ths
#undef FOP_PROTO
153 57fa1fb3 ths
154 57fa1fb3 ths
#define FOP_PROTO(op)              \
155 57fa1fb3 ths
void do_float_ ## op ## _s(void);  \
156 57fa1fb3 ths
void do_float_ ## op ## _d(void);  \
157 57fa1fb3 ths
void do_float_ ## op ## _ps(void);
158 57fa1fb3 ths
FOP_PROTO(add)
159 57fa1fb3 ths
FOP_PROTO(sub)
160 57fa1fb3 ths
FOP_PROTO(mul)
161 57fa1fb3 ths
FOP_PROTO(div)
162 57fa1fb3 ths
FOP_PROTO(recip1)
163 57fa1fb3 ths
FOP_PROTO(recip2)
164 57fa1fb3 ths
FOP_PROTO(rsqrt1)
165 57fa1fb3 ths
FOP_PROTO(rsqrt2)
166 57fa1fb3 ths
#undef FOP_PROTO
167 57fa1fb3 ths
168 fd4a04eb ths
void do_float_cvtd_s(void);
169 fd4a04eb ths
void do_float_cvtd_w(void);
170 fd4a04eb ths
void do_float_cvtd_l(void);
171 fd4a04eb ths
void do_float_cvtl_d(void);
172 fd4a04eb ths
void do_float_cvtl_s(void);
173 fd4a04eb ths
void do_float_cvtps_pw(void);
174 fd4a04eb ths
void do_float_cvtpw_ps(void);
175 fd4a04eb ths
void do_float_cvts_d(void);
176 fd4a04eb ths
void do_float_cvts_w(void);
177 fd4a04eb ths
void do_float_cvts_l(void);
178 fd4a04eb ths
void do_float_cvts_pl(void);
179 fd4a04eb ths
void do_float_cvts_pu(void);
180 fd4a04eb ths
void do_float_cvtw_s(void);
181 fd4a04eb ths
void do_float_cvtw_d(void);
182 57fa1fb3 ths
183 fd4a04eb ths
void do_float_addr_ps(void);
184 57fa1fb3 ths
void do_float_mulr_ps(void);
185 fd4a04eb ths
186 57fa1fb3 ths
#define FOP_PROTO(op)                      \
187 fd4a04eb ths
void do_cmp_d_ ## op(long cc);             \
188 fd4a04eb ths
void do_cmpabs_d_ ## op(long cc);          \
189 fd4a04eb ths
void do_cmp_s_ ## op(long cc);             \
190 fd4a04eb ths
void do_cmpabs_s_ ## op(long cc);          \
191 fd4a04eb ths
void do_cmp_ps_ ## op(long cc);            \
192 fd4a04eb ths
void do_cmpabs_ps_ ## op(long cc);
193 fd4a04eb ths
194 57fa1fb3 ths
FOP_PROTO(f)
195 57fa1fb3 ths
FOP_PROTO(un)
196 57fa1fb3 ths
FOP_PROTO(eq)
197 57fa1fb3 ths
FOP_PROTO(ueq)
198 57fa1fb3 ths
FOP_PROTO(olt)
199 57fa1fb3 ths
FOP_PROTO(ult)
200 57fa1fb3 ths
FOP_PROTO(ole)
201 57fa1fb3 ths
FOP_PROTO(ule)
202 57fa1fb3 ths
FOP_PROTO(sf)
203 57fa1fb3 ths
FOP_PROTO(ngle)
204 57fa1fb3 ths
FOP_PROTO(seq)
205 57fa1fb3 ths
FOP_PROTO(ngl)
206 57fa1fb3 ths
FOP_PROTO(lt)
207 57fa1fb3 ths
FOP_PROTO(nge)
208 57fa1fb3 ths
FOP_PROTO(le)
209 57fa1fb3 ths
FOP_PROTO(ngt)
210 57fa1fb3 ths
#undef FOP_PROTO
211 fd4a04eb ths
212 aa343735 ths
static always_inline void env_to_regs(void)
213 bfed01fc ths
{
214 bfed01fc ths
}
215 bfed01fc ths
216 aa343735 ths
static always_inline void regs_to_env(void)
217 bfed01fc ths
{
218 bfed01fc ths
}
219 bfed01fc ths
220 aa343735 ths
static always_inline int cpu_halted(CPUState *env)
221 08fa4bab ths
{
222 bfed01fc ths
    if (!env->halted)
223 bfed01fc ths
        return 0;
224 bfed01fc ths
    if (env->interrupt_request &
225 bfed01fc ths
        (CPU_INTERRUPT_HARD | CPU_INTERRUPT_TIMER)) {
226 bfed01fc ths
        env->halted = 0;
227 bfed01fc ths
        return 0;
228 bfed01fc ths
    }
229 bfed01fc ths
    return EXCP_HALTED;
230 bfed01fc ths
}
231 bfed01fc ths
232 aa343735 ths
static always_inline void compute_hflags(CPUState *env)
233 08fa4bab ths
{
234 b8aa4598 ths
    env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 |
235 b8aa4598 ths
                     MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU);
236 08fa4bab ths
    if (!(env->CP0_Status & (1 << CP0St_EXL)) &&
237 08fa4bab ths
        !(env->CP0_Status & (1 << CP0St_ERL)) &&
238 671880e6 ths
        !(env->hflags & MIPS_HFLAG_DM)) {
239 623a930e ths
        env->hflags |= (env->CP0_Status >> CP0St_KSU) & MIPS_HFLAG_KSU;
240 671880e6 ths
    }
241 d26bc211 ths
#if defined(TARGET_MIPS64)
242 623a930e ths
    if (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_UM) ||
243 08fa4bab ths
        (env->CP0_Status & (1 << CP0St_PX)) ||
244 08fa4bab ths
        (env->CP0_Status & (1 << CP0St_UX)))
245 08fa4bab ths
        env->hflags |= MIPS_HFLAG_64;
246 08fa4bab ths
#endif
247 671880e6 ths
    if ((env->CP0_Status & (1 << CP0St_CU0)) ||
248 623a930e ths
        !(env->hflags & MIPS_HFLAG_KSU))
249 08fa4bab ths
        env->hflags |= MIPS_HFLAG_CP0;
250 08fa4bab ths
    if (env->CP0_Status & (1 << CP0St_CU1))
251 08fa4bab ths
        env->hflags |= MIPS_HFLAG_FPU;
252 08fa4bab ths
    if (env->CP0_Status & (1 << CP0St_FR))
253 08fa4bab ths
        env->hflags |= MIPS_HFLAG_F64;
254 b8aa4598 ths
    if (env->insn_flags & ISA_MIPS32R2) {
255 a139a3ad ths
        if (env->fpu->fcr0 & (1 << FCR0_F64))
256 b8aa4598 ths
            env->hflags |= MIPS_HFLAG_COP1X;
257 b8aa4598 ths
    } else if (env->insn_flags & ISA_MIPS32) {
258 b8aa4598 ths
        if (env->hflags & MIPS_HFLAG_64)
259 b8aa4598 ths
            env->hflags |= MIPS_HFLAG_COP1X;
260 b8aa4598 ths
    } else if (env->insn_flags & ISA_MIPS4) {
261 b8aa4598 ths
        /* All supported MIPS IV CPUs use the XX (CU3) to enable
262 b8aa4598 ths
           and disable the MIPS IV extensions to the MIPS III ISA.
263 b8aa4598 ths
           Some other MIPS IV CPUs ignore the bit, so the check here
264 b8aa4598 ths
           would be too restrictive for them.  */
265 b8aa4598 ths
        if (env->CP0_Status & (1 << CP0St_CU3))
266 b8aa4598 ths
            env->hflags |= MIPS_HFLAG_COP1X;
267 b8aa4598 ths
    }
268 08fa4bab ths
}
269 08fa4bab ths
270 6af0bf9c bellard
#endif /* !defined(__QEMU_MIPS_EXEC_H__) */