]>
Commit | Line | Data |
---|---|---|
6af0bf9c FB |
1 | /* |
2 | * MIPS emulation helpers for qemu. | |
5fafdf24 | 3 | * |
6af0bf9c FB |
4 | * Copyright (c) 2004-2005 Jocelyn Mayer |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
6af0bf9c | 18 | */ |
2d0e944d | 19 | #include <stdlib.h> |
3e457172 | 20 | #include "cpu.h" |
05f778c8 TS |
21 | #include "host-utils.h" |
22 | ||
a7812ae4 | 23 | #include "helper.h" |
83dae095 | 24 | |
3e457172 BS |
25 | #if !defined(CONFIG_USER_ONLY) |
26 | #include "softmmu_exec.h" | |
27 | #endif /* !defined(CONFIG_USER_ONLY) */ | |
28 | ||
83dae095 | 29 | #ifndef CONFIG_USER_ONLY |
7db13fae | 30 | static inline void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global); |
83dae095 PB |
31 | #endif |
32 | ||
6af0bf9c FB |
33 | /*****************************************************************************/ |
34 | /* Exceptions processing helpers */ | |
6af0bf9c | 35 | |
5f7319cd AJ |
36 | static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env, |
37 | uint32_t exception, | |
38 | int error_code, | |
39 | uintptr_t pc) | |
6af0bf9c | 40 | { |
5f7319cd | 41 | TranslationBlock *tb; |
6af0bf9c | 42 | #if 1 |
93fcfe39 AL |
43 | if (exception < 0x100) |
44 | qemu_log("%s: %d %d\n", __func__, exception, error_code); | |
6af0bf9c FB |
45 | #endif |
46 | env->exception_index = exception; | |
47 | env->error_code = error_code; | |
5f7319cd AJ |
48 | |
49 | if (pc) { | |
50 | /* now we have a real cpu fault */ | |
51 | tb = tb_find_pc(pc); | |
52 | if (tb) { | |
53 | /* the PC is inside the translated code. It means that we have | |
54 | a virtual CPU fault */ | |
55 | cpu_restore_state(tb, env, pc); | |
56 | } | |
57 | } | |
58 | ||
1162c041 | 59 | cpu_loop_exit(env); |
6af0bf9c FB |
60 | } |
61 | ||
5f7319cd AJ |
62 | static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env, |
63 | uint32_t exception, | |
64 | uintptr_t pc) | |
6af0bf9c | 65 | { |
5f7319cd | 66 | do_raise_exception_err(env, exception, 0, pc); |
6af0bf9c FB |
67 | } |
68 | ||
5f7319cd AJ |
69 | void helper_raise_exception_err(CPUMIPSState *env, uint32_t exception, |
70 | int error_code) | |
4ad40f36 | 71 | { |
5f7319cd AJ |
72 | do_raise_exception_err(env, exception, error_code, 0); |
73 | } | |
20503968 | 74 | |
5f7319cd AJ |
75 | void helper_raise_exception(CPUMIPSState *env, uint32_t exception) |
76 | { | |
77 | do_raise_exception(env, exception, 0); | |
4ad40f36 FB |
78 | } |
79 | ||
0ae43045 AJ |
80 | #if defined(CONFIG_USER_ONLY) |
81 | #define HELPER_LD(name, insn, type) \ | |
895c2d04 BS |
82 | static inline type do_##name(CPUMIPSState *env, target_ulong addr, \ |
83 | int mem_idx) \ | |
0ae43045 AJ |
84 | { \ |
85 | return (type) insn##_raw(addr); \ | |
86 | } | |
87 | #else | |
88 | #define HELPER_LD(name, insn, type) \ | |
895c2d04 BS |
89 | static inline type do_##name(CPUMIPSState *env, target_ulong addr, \ |
90 | int mem_idx) \ | |
0ae43045 AJ |
91 | { \ |
92 | switch (mem_idx) \ | |
93 | { \ | |
895c2d04 BS |
94 | case 0: return (type) cpu_##insn##_kernel(env, addr); break; \ |
95 | case 1: return (type) cpu_##insn##_super(env, addr); break; \ | |
0ae43045 | 96 | default: \ |
895c2d04 | 97 | case 2: return (type) cpu_##insn##_user(env, addr); break; \ |
0ae43045 AJ |
98 | } \ |
99 | } | |
100 | #endif | |
101 | HELPER_LD(lbu, ldub, uint8_t) | |
102 | HELPER_LD(lw, ldl, int32_t) | |
103 | #ifdef TARGET_MIPS64 | |
104 | HELPER_LD(ld, ldq, int64_t) | |
105 | #endif | |
106 | #undef HELPER_LD | |
107 | ||
108 | #if defined(CONFIG_USER_ONLY) | |
109 | #define HELPER_ST(name, insn, type) \ | |
895c2d04 BS |
110 | static inline void do_##name(CPUMIPSState *env, target_ulong addr, \ |
111 | type val, int mem_idx) \ | |
0ae43045 AJ |
112 | { \ |
113 | insn##_raw(addr, val); \ | |
114 | } | |
115 | #else | |
116 | #define HELPER_ST(name, insn, type) \ | |
895c2d04 BS |
117 | static inline void do_##name(CPUMIPSState *env, target_ulong addr, \ |
118 | type val, int mem_idx) \ | |
0ae43045 AJ |
119 | { \ |
120 | switch (mem_idx) \ | |
121 | { \ | |
895c2d04 BS |
122 | case 0: cpu_##insn##_kernel(env, addr, val); break; \ |
123 | case 1: cpu_##insn##_super(env, addr, val); break; \ | |
0ae43045 | 124 | default: \ |
895c2d04 | 125 | case 2: cpu_##insn##_user(env, addr, val); break; \ |
0ae43045 AJ |
126 | } \ |
127 | } | |
128 | #endif | |
129 | HELPER_ST(sb, stb, uint8_t) | |
130 | HELPER_ST(sw, stl, uint32_t) | |
131 | #ifdef TARGET_MIPS64 | |
132 | HELPER_ST(sd, stq, uint64_t) | |
133 | #endif | |
134 | #undef HELPER_ST | |
135 | ||
d9bea114 | 136 | target_ulong helper_clo (target_ulong arg1) |
30898801 | 137 | { |
d9bea114 | 138 | return clo32(arg1); |
30898801 TS |
139 | } |
140 | ||
d9bea114 | 141 | target_ulong helper_clz (target_ulong arg1) |
30898801 | 142 | { |
d9bea114 | 143 | return clz32(arg1); |
30898801 TS |
144 | } |
145 | ||
d26bc211 | 146 | #if defined(TARGET_MIPS64) |
d9bea114 | 147 | target_ulong helper_dclo (target_ulong arg1) |
05f778c8 | 148 | { |
d9bea114 | 149 | return clo64(arg1); |
05f778c8 TS |
150 | } |
151 | ||
d9bea114 | 152 | target_ulong helper_dclz (target_ulong arg1) |
05f778c8 | 153 | { |
d9bea114 | 154 | return clz64(arg1); |
05f778c8 | 155 | } |
d26bc211 | 156 | #endif /* TARGET_MIPS64 */ |
c570fd16 | 157 | |
6af0bf9c | 158 | /* 64 bits arithmetic for 32 bits hosts */ |
895c2d04 | 159 | static inline uint64_t get_HILO(CPUMIPSState *env) |
6af0bf9c | 160 | { |
b5dc7732 | 161 | return ((uint64_t)(env->active_tc.HI[0]) << 32) | (uint32_t)env->active_tc.LO[0]; |
6af0bf9c FB |
162 | } |
163 | ||
895c2d04 | 164 | static inline target_ulong set_HIT0_LO(CPUMIPSState *env, uint64_t HILO) |
e9c71dd1 | 165 | { |
6fc97faf | 166 | target_ulong tmp; |
b5dc7732 | 167 | env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF); |
6fc97faf SW |
168 | tmp = env->active_tc.HI[0] = (int32_t)(HILO >> 32); |
169 | return tmp; | |
e9c71dd1 TS |
170 | } |
171 | ||
895c2d04 | 172 | static inline target_ulong set_HI_LOT0(CPUMIPSState *env, uint64_t HILO) |
e9c71dd1 | 173 | { |
6fc97faf | 174 | target_ulong tmp = env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF); |
b5dc7732 | 175 | env->active_tc.HI[0] = (int32_t)(HILO >> 32); |
6fc97faf | 176 | return tmp; |
e9c71dd1 TS |
177 | } |
178 | ||
e9c71dd1 | 179 | /* Multiplication variants of the vr54xx. */ |
895c2d04 BS |
180 | target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1, |
181 | target_ulong arg2) | |
e9c71dd1 | 182 | { |
895c2d04 BS |
183 | return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 * |
184 | (int64_t)(int32_t)arg2)); | |
e9c71dd1 TS |
185 | } |
186 | ||
895c2d04 BS |
187 | target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1, |
188 | target_ulong arg2) | |
e9c71dd1 | 189 | { |
895c2d04 BS |
190 | return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 * |
191 | (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
192 | } |
193 | ||
895c2d04 BS |
194 | target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1, |
195 | target_ulong arg2) | |
e9c71dd1 | 196 | { |
895c2d04 BS |
197 | return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 * |
198 | (int64_t)(int32_t)arg2); | |
e9c71dd1 TS |
199 | } |
200 | ||
895c2d04 BS |
201 | target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1, |
202 | target_ulong arg2) | |
e9c71dd1 | 203 | { |
895c2d04 BS |
204 | return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 * |
205 | (int64_t)(int32_t)arg2); | |
e9c71dd1 TS |
206 | } |
207 | ||
895c2d04 BS |
208 | target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1, |
209 | target_ulong arg2) | |
e9c71dd1 | 210 | { |
895c2d04 BS |
211 | return set_HI_LOT0(env, (uint64_t)get_HILO(env) + |
212 | (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
213 | } |
214 | ||
895c2d04 BS |
215 | target_ulong helper_macchiu(CPUMIPSState *env, target_ulong arg1, |
216 | target_ulong arg2) | |
e9c71dd1 | 217 | { |
895c2d04 BS |
218 | return set_HIT0_LO(env, (uint64_t)get_HILO(env) + |
219 | (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
220 | } |
221 | ||
895c2d04 BS |
222 | target_ulong helper_msac(CPUMIPSState *env, target_ulong arg1, |
223 | target_ulong arg2) | |
e9c71dd1 | 224 | { |
895c2d04 BS |
225 | return set_HI_LOT0(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 * |
226 | (int64_t)(int32_t)arg2); | |
e9c71dd1 TS |
227 | } |
228 | ||
895c2d04 BS |
229 | target_ulong helper_msachi(CPUMIPSState *env, target_ulong arg1, |
230 | target_ulong arg2) | |
e9c71dd1 | 231 | { |
895c2d04 BS |
232 | return set_HIT0_LO(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 * |
233 | (int64_t)(int32_t)arg2); | |
e9c71dd1 TS |
234 | } |
235 | ||
895c2d04 BS |
236 | target_ulong helper_msacu(CPUMIPSState *env, target_ulong arg1, |
237 | target_ulong arg2) | |
e9c71dd1 | 238 | { |
895c2d04 BS |
239 | return set_HI_LOT0(env, (uint64_t)get_HILO(env) - |
240 | (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
241 | } |
242 | ||
895c2d04 BS |
243 | target_ulong helper_msachiu(CPUMIPSState *env, target_ulong arg1, |
244 | target_ulong arg2) | |
e9c71dd1 | 245 | { |
895c2d04 BS |
246 | return set_HIT0_LO(env, (uint64_t)get_HILO(env) - |
247 | (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
248 | } |
249 | ||
895c2d04 BS |
250 | target_ulong helper_mulhi(CPUMIPSState *env, target_ulong arg1, |
251 | target_ulong arg2) | |
e9c71dd1 | 252 | { |
895c2d04 | 253 | return set_HIT0_LO(env, (int64_t)(int32_t)arg1 * (int64_t)(int32_t)arg2); |
e9c71dd1 TS |
254 | } |
255 | ||
895c2d04 BS |
256 | target_ulong helper_mulhiu(CPUMIPSState *env, target_ulong arg1, |
257 | target_ulong arg2) | |
e9c71dd1 | 258 | { |
895c2d04 BS |
259 | return set_HIT0_LO(env, (uint64_t)(uint32_t)arg1 * |
260 | (uint64_t)(uint32_t)arg2); | |
e9c71dd1 TS |
261 | } |
262 | ||
895c2d04 BS |
263 | target_ulong helper_mulshi(CPUMIPSState *env, target_ulong arg1, |
264 | target_ulong arg2) | |
e9c71dd1 | 265 | { |
895c2d04 BS |
266 | return set_HIT0_LO(env, 0 - (int64_t)(int32_t)arg1 * |
267 | (int64_t)(int32_t)arg2); | |
e9c71dd1 TS |
268 | } |
269 | ||
895c2d04 BS |
270 | target_ulong helper_mulshiu(CPUMIPSState *env, target_ulong arg1, |
271 | target_ulong arg2) | |
e9c71dd1 | 272 | { |
895c2d04 BS |
273 | return set_HIT0_LO(env, 0 - (uint64_t)(uint32_t)arg1 * |
274 | (uint64_t)(uint32_t)arg2); | |
e9c71dd1 | 275 | } |
6af0bf9c | 276 | |
214c465f | 277 | #ifdef TARGET_MIPS64 |
895c2d04 | 278 | void helper_dmult(CPUMIPSState *env, target_ulong arg1, target_ulong arg2) |
214c465f | 279 | { |
d9bea114 | 280 | muls64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2); |
214c465f TS |
281 | } |
282 | ||
895c2d04 | 283 | void helper_dmultu(CPUMIPSState *env, target_ulong arg1, target_ulong arg2) |
214c465f | 284 | { |
d9bea114 | 285 | mulu64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2); |
214c465f TS |
286 | } |
287 | #endif | |
288 | ||
e7139c44 | 289 | #ifndef CONFIG_USER_ONLY |
c36bbb28 | 290 | |
a8170e5e | 291 | static inline hwaddr do_translate_address(CPUMIPSState *env, |
895c2d04 BS |
292 | target_ulong address, |
293 | int rw) | |
c36bbb28 | 294 | { |
a8170e5e | 295 | hwaddr lladdr; |
c36bbb28 AJ |
296 | |
297 | lladdr = cpu_mips_translate_address(env, address, rw); | |
298 | ||
299 | if (lladdr == -1LL) { | |
1162c041 | 300 | cpu_loop_exit(env); |
c36bbb28 AJ |
301 | } else { |
302 | return lladdr; | |
303 | } | |
304 | } | |
305 | ||
e7139c44 | 306 | #define HELPER_LD_ATOMIC(name, insn) \ |
895c2d04 | 307 | target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \ |
e7139c44 | 308 | { \ |
895c2d04 BS |
309 | env->lladdr = do_translate_address(env, arg, 0); \ |
310 | env->llval = do_##insn(env, arg, mem_idx); \ | |
e7139c44 AJ |
311 | return env->llval; \ |
312 | } | |
313 | HELPER_LD_ATOMIC(ll, lw) | |
314 | #ifdef TARGET_MIPS64 | |
315 | HELPER_LD_ATOMIC(lld, ld) | |
316 | #endif | |
317 | #undef HELPER_LD_ATOMIC | |
318 | ||
319 | #define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask) \ | |
895c2d04 BS |
320 | target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1, \ |
321 | target_ulong arg2, int mem_idx) \ | |
e7139c44 AJ |
322 | { \ |
323 | target_long tmp; \ | |
324 | \ | |
325 | if (arg2 & almask) { \ | |
326 | env->CP0_BadVAddr = arg2; \ | |
895c2d04 | 327 | helper_raise_exception(env, EXCP_AdES); \ |
e7139c44 | 328 | } \ |
895c2d04 BS |
329 | if (do_translate_address(env, arg2, 1) == env->lladdr) { \ |
330 | tmp = do_##ld_insn(env, arg2, mem_idx); \ | |
e7139c44 | 331 | if (tmp == env->llval) { \ |
895c2d04 | 332 | do_##st_insn(env, arg2, arg1, mem_idx); \ |
e7139c44 AJ |
333 | return 1; \ |
334 | } \ | |
335 | } \ | |
336 | return 0; \ | |
337 | } | |
338 | HELPER_ST_ATOMIC(sc, lw, sw, 0x3) | |
339 | #ifdef TARGET_MIPS64 | |
340 | HELPER_ST_ATOMIC(scd, ld, sd, 0x7) | |
341 | #endif | |
342 | #undef HELPER_ST_ATOMIC | |
343 | #endif | |
344 | ||
c8c2227e TS |
345 | #ifdef TARGET_WORDS_BIGENDIAN |
346 | #define GET_LMASK(v) ((v) & 3) | |
347 | #define GET_OFFSET(addr, offset) (addr + (offset)) | |
348 | #else | |
349 | #define GET_LMASK(v) (((v) & 3) ^ 3) | |
350 | #define GET_OFFSET(addr, offset) (addr - (offset)) | |
351 | #endif | |
352 | ||
895c2d04 BS |
353 | void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, |
354 | int mem_idx) | |
c8c2227e | 355 | { |
895c2d04 | 356 | do_sb(env, arg2, (uint8_t)(arg1 >> 24), mem_idx); |
c8c2227e | 357 | |
d9bea114 | 358 | if (GET_LMASK(arg2) <= 2) |
895c2d04 | 359 | do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 16), mem_idx); |
c8c2227e | 360 | |
d9bea114 | 361 | if (GET_LMASK(arg2) <= 1) |
895c2d04 | 362 | do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 8), mem_idx); |
c8c2227e | 363 | |
d9bea114 | 364 | if (GET_LMASK(arg2) == 0) |
895c2d04 | 365 | do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)arg1, mem_idx); |
c8c2227e TS |
366 | } |
367 | ||
895c2d04 BS |
368 | void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, |
369 | int mem_idx) | |
c8c2227e | 370 | { |
895c2d04 | 371 | do_sb(env, arg2, (uint8_t)arg1, mem_idx); |
c8c2227e | 372 | |
d9bea114 | 373 | if (GET_LMASK(arg2) >= 1) |
895c2d04 | 374 | do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx); |
c8c2227e | 375 | |
d9bea114 | 376 | if (GET_LMASK(arg2) >= 2) |
895c2d04 | 377 | do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx); |
c8c2227e | 378 | |
d9bea114 | 379 | if (GET_LMASK(arg2) == 3) |
895c2d04 | 380 | do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx); |
c8c2227e TS |
381 | } |
382 | ||
383 | #if defined(TARGET_MIPS64) | |
384 | /* "half" load and stores. We must do the memory access inline, | |
385 | or fault handling won't work. */ | |
386 | ||
387 | #ifdef TARGET_WORDS_BIGENDIAN | |
388 | #define GET_LMASK64(v) ((v) & 7) | |
389 | #else | |
390 | #define GET_LMASK64(v) (((v) & 7) ^ 7) | |
391 | #endif | |
392 | ||
895c2d04 BS |
393 | void helper_sdl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, |
394 | int mem_idx) | |
c8c2227e | 395 | { |
895c2d04 | 396 | do_sb(env, arg2, (uint8_t)(arg1 >> 56), mem_idx); |
c8c2227e | 397 | |
d9bea114 | 398 | if (GET_LMASK64(arg2) <= 6) |
895c2d04 | 399 | do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 48), mem_idx); |
c8c2227e | 400 | |
d9bea114 | 401 | if (GET_LMASK64(arg2) <= 5) |
895c2d04 | 402 | do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 40), mem_idx); |
c8c2227e | 403 | |
d9bea114 | 404 | if (GET_LMASK64(arg2) <= 4) |
895c2d04 | 405 | do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)(arg1 >> 32), mem_idx); |
c8c2227e | 406 | |
d9bea114 | 407 | if (GET_LMASK64(arg2) <= 3) |
895c2d04 | 408 | do_sb(env, GET_OFFSET(arg2, 4), (uint8_t)(arg1 >> 24), mem_idx); |
c8c2227e | 409 | |
d9bea114 | 410 | if (GET_LMASK64(arg2) <= 2) |
895c2d04 | 411 | do_sb(env, GET_OFFSET(arg2, 5), (uint8_t)(arg1 >> 16), mem_idx); |
c8c2227e | 412 | |
d9bea114 | 413 | if (GET_LMASK64(arg2) <= 1) |
895c2d04 | 414 | do_sb(env, GET_OFFSET(arg2, 6), (uint8_t)(arg1 >> 8), mem_idx); |
c8c2227e | 415 | |
d9bea114 | 416 | if (GET_LMASK64(arg2) <= 0) |
895c2d04 | 417 | do_sb(env, GET_OFFSET(arg2, 7), (uint8_t)arg1, mem_idx); |
c8c2227e TS |
418 | } |
419 | ||
895c2d04 BS |
420 | void helper_sdr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2, |
421 | int mem_idx) | |
c8c2227e | 422 | { |
895c2d04 | 423 | do_sb(env, arg2, (uint8_t)arg1, mem_idx); |
c8c2227e | 424 | |
d9bea114 | 425 | if (GET_LMASK64(arg2) >= 1) |
895c2d04 | 426 | do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx); |
c8c2227e | 427 | |
d9bea114 | 428 | if (GET_LMASK64(arg2) >= 2) |
895c2d04 | 429 | do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx); |
c8c2227e | 430 | |
d9bea114 | 431 | if (GET_LMASK64(arg2) >= 3) |
895c2d04 | 432 | do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx); |
c8c2227e | 433 | |
d9bea114 | 434 | if (GET_LMASK64(arg2) >= 4) |
895c2d04 | 435 | do_sb(env, GET_OFFSET(arg2, -4), (uint8_t)(arg1 >> 32), mem_idx); |
c8c2227e | 436 | |
d9bea114 | 437 | if (GET_LMASK64(arg2) >= 5) |
895c2d04 | 438 | do_sb(env, GET_OFFSET(arg2, -5), (uint8_t)(arg1 >> 40), mem_idx); |
c8c2227e | 439 | |
d9bea114 | 440 | if (GET_LMASK64(arg2) >= 6) |
895c2d04 | 441 | do_sb(env, GET_OFFSET(arg2, -6), (uint8_t)(arg1 >> 48), mem_idx); |
c8c2227e | 442 | |
d9bea114 | 443 | if (GET_LMASK64(arg2) == 7) |
895c2d04 | 444 | do_sb(env, GET_OFFSET(arg2, -7), (uint8_t)(arg1 >> 56), mem_idx); |
c8c2227e TS |
445 | } |
446 | #endif /* TARGET_MIPS64 */ | |
447 | ||
3c824109 NF |
448 | static const int multiple_regs[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 }; |
449 | ||
895c2d04 BS |
450 | void helper_lwm(CPUMIPSState *env, target_ulong addr, target_ulong reglist, |
451 | uint32_t mem_idx) | |
3c824109 NF |
452 | { |
453 | target_ulong base_reglist = reglist & 0xf; | |
454 | target_ulong do_r31 = reglist & 0x10; | |
3c824109 NF |
455 | |
456 | if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) { | |
457 | target_ulong i; | |
458 | ||
459 | for (i = 0; i < base_reglist; i++) { | |
18bba4dc AJ |
460 | env->active_tc.gpr[multiple_regs[i]] = |
461 | (target_long)do_lw(env, addr, mem_idx); | |
3c824109 NF |
462 | addr += 4; |
463 | } | |
464 | } | |
465 | ||
466 | if (do_r31) { | |
18bba4dc | 467 | env->active_tc.gpr[31] = (target_long)do_lw(env, addr, mem_idx); |
3c824109 NF |
468 | } |
469 | } | |
470 | ||
895c2d04 BS |
471 | void helper_swm(CPUMIPSState *env, target_ulong addr, target_ulong reglist, |
472 | uint32_t mem_idx) | |
3c824109 NF |
473 | { |
474 | target_ulong base_reglist = reglist & 0xf; | |
475 | target_ulong do_r31 = reglist & 0x10; | |
3c824109 NF |
476 | |
477 | if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) { | |
478 | target_ulong i; | |
479 | ||
480 | for (i = 0; i < base_reglist; i++) { | |
18bba4dc | 481 | do_sw(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx); |
3c824109 NF |
482 | addr += 4; |
483 | } | |
484 | } | |
485 | ||
486 | if (do_r31) { | |
18bba4dc | 487 | do_sw(env, addr, env->active_tc.gpr[31], mem_idx); |
3c824109 NF |
488 | } |
489 | } | |
490 | ||
491 | #if defined(TARGET_MIPS64) | |
895c2d04 BS |
492 | void helper_ldm(CPUMIPSState *env, target_ulong addr, target_ulong reglist, |
493 | uint32_t mem_idx) | |
3c824109 NF |
494 | { |
495 | target_ulong base_reglist = reglist & 0xf; | |
496 | target_ulong do_r31 = reglist & 0x10; | |
3c824109 NF |
497 | |
498 | if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) { | |
499 | target_ulong i; | |
500 | ||
501 | for (i = 0; i < base_reglist; i++) { | |
18bba4dc | 502 | env->active_tc.gpr[multiple_regs[i]] = do_ld(env, addr, mem_idx); |
3c824109 NF |
503 | addr += 8; |
504 | } | |
505 | } | |
506 | ||
507 | if (do_r31) { | |
18bba4dc | 508 | env->active_tc.gpr[31] = do_ld(env, addr, mem_idx); |
3c824109 NF |
509 | } |
510 | } | |
511 | ||
895c2d04 BS |
512 | void helper_sdm(CPUMIPSState *env, target_ulong addr, target_ulong reglist, |
513 | uint32_t mem_idx) | |
3c824109 NF |
514 | { |
515 | target_ulong base_reglist = reglist & 0xf; | |
516 | target_ulong do_r31 = reglist & 0x10; | |
3c824109 NF |
517 | |
518 | if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) { | |
519 | target_ulong i; | |
520 | ||
521 | for (i = 0; i < base_reglist; i++) { | |
18bba4dc | 522 | do_sd(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx); |
3c824109 NF |
523 | addr += 8; |
524 | } | |
525 | } | |
526 | ||
527 | if (do_r31) { | |
18bba4dc | 528 | do_sd(env, addr, env->active_tc.gpr[31], mem_idx); |
3c824109 NF |
529 | } |
530 | } | |
531 | #endif | |
532 | ||
0eaef5aa | 533 | #ifndef CONFIG_USER_ONLY |
f249412c | 534 | /* SMP helpers. */ |
b35d77d7 | 535 | static bool mips_vpe_is_wfi(MIPSCPU *c) |
f249412c | 536 | { |
b35d77d7 AF |
537 | CPUMIPSState *env = &c->env; |
538 | ||
f249412c EI |
539 | /* If the VPE is halted but otherwise active, it means it's waiting for |
540 | an interrupt. */ | |
b35d77d7 | 541 | return env->halted && mips_vpe_active(env); |
f249412c EI |
542 | } |
543 | ||
7db13fae | 544 | static inline void mips_vpe_wake(CPUMIPSState *c) |
f249412c EI |
545 | { |
546 | /* Dont set ->halted = 0 directly, let it be done via cpu_has_work | |
547 | because there might be other conditions that state that c should | |
548 | be sleeping. */ | |
549 | cpu_interrupt(c, CPU_INTERRUPT_WAKE); | |
550 | } | |
551 | ||
6f4d6b09 | 552 | static inline void mips_vpe_sleep(MIPSCPU *cpu) |
f249412c | 553 | { |
6f4d6b09 AF |
554 | CPUMIPSState *c = &cpu->env; |
555 | ||
f249412c EI |
556 | /* The VPE was shut off, really go to bed. |
557 | Reset any old _WAKE requests. */ | |
558 | c->halted = 1; | |
559 | cpu_reset_interrupt(c, CPU_INTERRUPT_WAKE); | |
560 | } | |
561 | ||
135dd63a | 562 | static inline void mips_tc_wake(MIPSCPU *cpu, int tc) |
f249412c | 563 | { |
135dd63a AF |
564 | CPUMIPSState *c = &cpu->env; |
565 | ||
f249412c | 566 | /* FIXME: TC reschedule. */ |
b35d77d7 | 567 | if (mips_vpe_active(c) && !mips_vpe_is_wfi(cpu)) { |
f249412c EI |
568 | mips_vpe_wake(c); |
569 | } | |
570 | } | |
571 | ||
c6679e90 | 572 | static inline void mips_tc_sleep(MIPSCPU *cpu, int tc) |
f249412c | 573 | { |
c6679e90 AF |
574 | CPUMIPSState *c = &cpu->env; |
575 | ||
f249412c EI |
576 | /* FIXME: TC reschedule. */ |
577 | if (!mips_vpe_active(c)) { | |
6f4d6b09 | 578 | mips_vpe_sleep(cpu); |
f249412c EI |
579 | } |
580 | } | |
581 | ||
b93bbdcd EI |
582 | /* tc should point to an int with the value of the global TC index. |
583 | This function will transform it into a local index within the | |
7db13fae | 584 | returned CPUMIPSState. |
b93bbdcd EI |
585 | |
586 | FIXME: This code assumes that all VPEs have the same number of TCs, | |
587 | which depends on runtime setup. Can probably be fixed by | |
7db13fae | 588 | walking the list of CPUMIPSStates. */ |
895c2d04 | 589 | static CPUMIPSState *mips_cpu_map_tc(CPUMIPSState *env, int *tc) |
b93bbdcd | 590 | { |
7db13fae | 591 | CPUMIPSState *other; |
b93bbdcd EI |
592 | int vpe_idx, nr_threads = env->nr_threads; |
593 | int tc_idx = *tc; | |
594 | ||
595 | if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))) { | |
596 | /* Not allowed to address other CPUs. */ | |
597 | *tc = env->current_tc; | |
598 | return env; | |
599 | } | |
600 | ||
601 | vpe_idx = tc_idx / nr_threads; | |
602 | *tc = tc_idx % nr_threads; | |
603 | other = qemu_get_cpu(vpe_idx); | |
604 | return other ? other : env; | |
605 | } | |
606 | ||
fe8dca8c EI |
607 | /* The per VPE CP0_Status register shares some fields with the per TC |
608 | CP0_TCStatus registers. These fields are wired to the same registers, | |
609 | so changes to either of them should be reflected on both registers. | |
610 | ||
611 | Also, EntryHi shares the bottom 8 bit ASID with TCStauts. | |
612 | ||
613 | These helper call synchronizes the regs for a given cpu. */ | |
614 | ||
615 | /* Called for updates to CP0_Status. */ | |
895c2d04 | 616 | static void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu, int tc) |
fe8dca8c EI |
617 | { |
618 | int32_t tcstatus, *tcst; | |
619 | uint32_t v = cpu->CP0_Status; | |
620 | uint32_t cu, mx, asid, ksu; | |
621 | uint32_t mask = ((1 << CP0TCSt_TCU3) | |
622 | | (1 << CP0TCSt_TCU2) | |
623 | | (1 << CP0TCSt_TCU1) | |
624 | | (1 << CP0TCSt_TCU0) | |
625 | | (1 << CP0TCSt_TMX) | |
626 | | (3 << CP0TCSt_TKSU) | |
627 | | (0xff << CP0TCSt_TASID)); | |
628 | ||
629 | cu = (v >> CP0St_CU0) & 0xf; | |
630 | mx = (v >> CP0St_MX) & 0x1; | |
631 | ksu = (v >> CP0St_KSU) & 0x3; | |
632 | asid = env->CP0_EntryHi & 0xff; | |
633 | ||
634 | tcstatus = cu << CP0TCSt_TCU0; | |
635 | tcstatus |= mx << CP0TCSt_TMX; | |
636 | tcstatus |= ksu << CP0TCSt_TKSU; | |
637 | tcstatus |= asid; | |
638 | ||
639 | if (tc == cpu->current_tc) { | |
640 | tcst = &cpu->active_tc.CP0_TCStatus; | |
641 | } else { | |
642 | tcst = &cpu->tcs[tc].CP0_TCStatus; | |
643 | } | |
644 | ||
645 | *tcst &= ~mask; | |
646 | *tcst |= tcstatus; | |
647 | compute_hflags(cpu); | |
648 | } | |
649 | ||
650 | /* Called for updates to CP0_TCStatus. */ | |
895c2d04 BS |
651 | static void sync_c0_tcstatus(CPUMIPSState *cpu, int tc, |
652 | target_ulong v) | |
fe8dca8c EI |
653 | { |
654 | uint32_t status; | |
655 | uint32_t tcu, tmx, tasid, tksu; | |
656 | uint32_t mask = ((1 << CP0St_CU3) | |
657 | | (1 << CP0St_CU2) | |
658 | | (1 << CP0St_CU1) | |
659 | | (1 << CP0St_CU0) | |
660 | | (1 << CP0St_MX) | |
661 | | (3 << CP0St_KSU)); | |
662 | ||
663 | tcu = (v >> CP0TCSt_TCU0) & 0xf; | |
664 | tmx = (v >> CP0TCSt_TMX) & 0x1; | |
665 | tasid = v & 0xff; | |
666 | tksu = (v >> CP0TCSt_TKSU) & 0x3; | |
667 | ||
668 | status = tcu << CP0St_CU0; | |
669 | status |= tmx << CP0St_MX; | |
670 | status |= tksu << CP0St_KSU; | |
671 | ||
672 | cpu->CP0_Status &= ~mask; | |
673 | cpu->CP0_Status |= status; | |
674 | ||
675 | /* Sync the TASID with EntryHi. */ | |
676 | cpu->CP0_EntryHi &= ~0xff; | |
677 | cpu->CP0_EntryHi = tasid; | |
678 | ||
679 | compute_hflags(cpu); | |
680 | } | |
681 | ||
682 | /* Called for updates to CP0_EntryHi. */ | |
7db13fae | 683 | static void sync_c0_entryhi(CPUMIPSState *cpu, int tc) |
fe8dca8c EI |
684 | { |
685 | int32_t *tcst; | |
686 | uint32_t asid, v = cpu->CP0_EntryHi; | |
687 | ||
688 | asid = v & 0xff; | |
689 | ||
690 | if (tc == cpu->current_tc) { | |
691 | tcst = &cpu->active_tc.CP0_TCStatus; | |
692 | } else { | |
693 | tcst = &cpu->tcs[tc].CP0_TCStatus; | |
694 | } | |
695 | ||
696 | *tcst &= ~0xff; | |
697 | *tcst |= asid; | |
698 | } | |
699 | ||
6af0bf9c | 700 | /* CP0 helpers */ |
895c2d04 | 701 | target_ulong helper_mfc0_mvpcontrol(CPUMIPSState *env) |
f1aa6320 | 702 | { |
be24bb4f | 703 | return env->mvp->CP0_MVPControl; |
f1aa6320 TS |
704 | } |
705 | ||
895c2d04 | 706 | target_ulong helper_mfc0_mvpconf0(CPUMIPSState *env) |
f1aa6320 | 707 | { |
be24bb4f | 708 | return env->mvp->CP0_MVPConf0; |
f1aa6320 TS |
709 | } |
710 | ||
895c2d04 | 711 | target_ulong helper_mfc0_mvpconf1(CPUMIPSState *env) |
f1aa6320 | 712 | { |
be24bb4f | 713 | return env->mvp->CP0_MVPConf1; |
f1aa6320 TS |
714 | } |
715 | ||
895c2d04 | 716 | target_ulong helper_mfc0_random(CPUMIPSState *env) |
6af0bf9c | 717 | { |
be24bb4f | 718 | return (int32_t)cpu_mips_get_random(env); |
873eb012 | 719 | } |
6af0bf9c | 720 | |
895c2d04 | 721 | target_ulong helper_mfc0_tcstatus(CPUMIPSState *env) |
f1aa6320 | 722 | { |
b5dc7732 | 723 | return env->active_tc.CP0_TCStatus; |
f1aa6320 TS |
724 | } |
725 | ||
895c2d04 | 726 | target_ulong helper_mftc0_tcstatus(CPUMIPSState *env) |
f1aa6320 TS |
727 | { |
728 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 729 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 730 | |
b93bbdcd EI |
731 | if (other_tc == other->current_tc) |
732 | return other->active_tc.CP0_TCStatus; | |
b5dc7732 | 733 | else |
b93bbdcd | 734 | return other->tcs[other_tc].CP0_TCStatus; |
f1aa6320 TS |
735 | } |
736 | ||
895c2d04 | 737 | target_ulong helper_mfc0_tcbind(CPUMIPSState *env) |
f1aa6320 | 738 | { |
b5dc7732 | 739 | return env->active_tc.CP0_TCBind; |
f1aa6320 TS |
740 | } |
741 | ||
895c2d04 | 742 | target_ulong helper_mftc0_tcbind(CPUMIPSState *env) |
f1aa6320 TS |
743 | { |
744 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 745 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 746 | |
b93bbdcd EI |
747 | if (other_tc == other->current_tc) |
748 | return other->active_tc.CP0_TCBind; | |
b5dc7732 | 749 | else |
b93bbdcd | 750 | return other->tcs[other_tc].CP0_TCBind; |
f1aa6320 TS |
751 | } |
752 | ||
895c2d04 | 753 | target_ulong helper_mfc0_tcrestart(CPUMIPSState *env) |
f1aa6320 | 754 | { |
b5dc7732 | 755 | return env->active_tc.PC; |
f1aa6320 TS |
756 | } |
757 | ||
895c2d04 | 758 | target_ulong helper_mftc0_tcrestart(CPUMIPSState *env) |
f1aa6320 TS |
759 | { |
760 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 761 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 762 | |
b93bbdcd EI |
763 | if (other_tc == other->current_tc) |
764 | return other->active_tc.PC; | |
b5dc7732 | 765 | else |
b93bbdcd | 766 | return other->tcs[other_tc].PC; |
f1aa6320 TS |
767 | } |
768 | ||
895c2d04 | 769 | target_ulong helper_mfc0_tchalt(CPUMIPSState *env) |
f1aa6320 | 770 | { |
b5dc7732 | 771 | return env->active_tc.CP0_TCHalt; |
f1aa6320 TS |
772 | } |
773 | ||
895c2d04 | 774 | target_ulong helper_mftc0_tchalt(CPUMIPSState *env) |
f1aa6320 TS |
775 | { |
776 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 777 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 778 | |
b93bbdcd EI |
779 | if (other_tc == other->current_tc) |
780 | return other->active_tc.CP0_TCHalt; | |
b5dc7732 | 781 | else |
b93bbdcd | 782 | return other->tcs[other_tc].CP0_TCHalt; |
f1aa6320 TS |
783 | } |
784 | ||
895c2d04 | 785 | target_ulong helper_mfc0_tccontext(CPUMIPSState *env) |
f1aa6320 | 786 | { |
b5dc7732 | 787 | return env->active_tc.CP0_TCContext; |
f1aa6320 TS |
788 | } |
789 | ||
895c2d04 | 790 | target_ulong helper_mftc0_tccontext(CPUMIPSState *env) |
f1aa6320 TS |
791 | { |
792 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 793 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 794 | |
b93bbdcd EI |
795 | if (other_tc == other->current_tc) |
796 | return other->active_tc.CP0_TCContext; | |
b5dc7732 | 797 | else |
b93bbdcd | 798 | return other->tcs[other_tc].CP0_TCContext; |
f1aa6320 TS |
799 | } |
800 | ||
895c2d04 | 801 | target_ulong helper_mfc0_tcschedule(CPUMIPSState *env) |
f1aa6320 | 802 | { |
b5dc7732 | 803 | return env->active_tc.CP0_TCSchedule; |
f1aa6320 TS |
804 | } |
805 | ||
895c2d04 | 806 | target_ulong helper_mftc0_tcschedule(CPUMIPSState *env) |
f1aa6320 TS |
807 | { |
808 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 809 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 810 | |
b93bbdcd EI |
811 | if (other_tc == other->current_tc) |
812 | return other->active_tc.CP0_TCSchedule; | |
b5dc7732 | 813 | else |
b93bbdcd | 814 | return other->tcs[other_tc].CP0_TCSchedule; |
f1aa6320 TS |
815 | } |
816 | ||
895c2d04 | 817 | target_ulong helper_mfc0_tcschefback(CPUMIPSState *env) |
f1aa6320 | 818 | { |
b5dc7732 | 819 | return env->active_tc.CP0_TCScheFBack; |
f1aa6320 TS |
820 | } |
821 | ||
895c2d04 | 822 | target_ulong helper_mftc0_tcschefback(CPUMIPSState *env) |
f1aa6320 TS |
823 | { |
824 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 825 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 826 | |
b93bbdcd EI |
827 | if (other_tc == other->current_tc) |
828 | return other->active_tc.CP0_TCScheFBack; | |
b5dc7732 | 829 | else |
b93bbdcd | 830 | return other->tcs[other_tc].CP0_TCScheFBack; |
f1aa6320 TS |
831 | } |
832 | ||
895c2d04 | 833 | target_ulong helper_mfc0_count(CPUMIPSState *env) |
873eb012 | 834 | { |
be24bb4f | 835 | return (int32_t)cpu_mips_get_count(env); |
6af0bf9c FB |
836 | } |
837 | ||
895c2d04 | 838 | target_ulong helper_mftc0_entryhi(CPUMIPSState *env) |
f1aa6320 TS |
839 | { |
840 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 841 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 842 | |
fe8dca8c | 843 | return other->CP0_EntryHi; |
f1aa6320 TS |
844 | } |
845 | ||
895c2d04 | 846 | target_ulong helper_mftc0_cause(CPUMIPSState *env) |
5a25ce94 EI |
847 | { |
848 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
849 | int32_t tccause; | |
895c2d04 | 850 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
851 | |
852 | if (other_tc == other->current_tc) { | |
853 | tccause = other->CP0_Cause; | |
854 | } else { | |
855 | tccause = other->CP0_Cause; | |
856 | } | |
857 | ||
858 | return tccause; | |
859 | } | |
860 | ||
895c2d04 | 861 | target_ulong helper_mftc0_status(CPUMIPSState *env) |
f1aa6320 TS |
862 | { |
863 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 864 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
b5dc7732 | 865 | |
fe8dca8c | 866 | return other->CP0_Status; |
f1aa6320 TS |
867 | } |
868 | ||
895c2d04 | 869 | target_ulong helper_mfc0_lladdr(CPUMIPSState *env) |
f1aa6320 | 870 | { |
2a6e32dd | 871 | return (int32_t)(env->lladdr >> env->CP0_LLAddr_shift); |
f1aa6320 TS |
872 | } |
873 | ||
895c2d04 | 874 | target_ulong helper_mfc0_watchlo(CPUMIPSState *env, uint32_t sel) |
f1aa6320 | 875 | { |
be24bb4f | 876 | return (int32_t)env->CP0_WatchLo[sel]; |
f1aa6320 TS |
877 | } |
878 | ||
895c2d04 | 879 | target_ulong helper_mfc0_watchhi(CPUMIPSState *env, uint32_t sel) |
f1aa6320 | 880 | { |
be24bb4f | 881 | return env->CP0_WatchHi[sel]; |
f1aa6320 TS |
882 | } |
883 | ||
895c2d04 | 884 | target_ulong helper_mfc0_debug(CPUMIPSState *env) |
f1aa6320 | 885 | { |
1a3fd9c3 | 886 | target_ulong t0 = env->CP0_Debug; |
f1aa6320 | 887 | if (env->hflags & MIPS_HFLAG_DM) |
be24bb4f TS |
888 | t0 |= 1 << CP0DB_DM; |
889 | ||
890 | return t0; | |
f1aa6320 TS |
891 | } |
892 | ||
895c2d04 | 893 | target_ulong helper_mftc0_debug(CPUMIPSState *env) |
f1aa6320 TS |
894 | { |
895 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
b5dc7732 | 896 | int32_t tcstatus; |
895c2d04 | 897 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
b5dc7732 | 898 | |
b93bbdcd EI |
899 | if (other_tc == other->current_tc) |
900 | tcstatus = other->active_tc.CP0_Debug_tcstatus; | |
b5dc7732 | 901 | else |
b93bbdcd | 902 | tcstatus = other->tcs[other_tc].CP0_Debug_tcstatus; |
f1aa6320 TS |
903 | |
904 | /* XXX: Might be wrong, check with EJTAG spec. */ | |
b93bbdcd | 905 | return (other->CP0_Debug & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) | |
b5dc7732 | 906 | (tcstatus & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt))); |
f1aa6320 TS |
907 | } |
908 | ||
909 | #if defined(TARGET_MIPS64) | |
895c2d04 | 910 | target_ulong helper_dmfc0_tcrestart(CPUMIPSState *env) |
f1aa6320 | 911 | { |
b5dc7732 | 912 | return env->active_tc.PC; |
f1aa6320 TS |
913 | } |
914 | ||
895c2d04 | 915 | target_ulong helper_dmfc0_tchalt(CPUMIPSState *env) |
f1aa6320 | 916 | { |
b5dc7732 | 917 | return env->active_tc.CP0_TCHalt; |
f1aa6320 TS |
918 | } |
919 | ||
895c2d04 | 920 | target_ulong helper_dmfc0_tccontext(CPUMIPSState *env) |
f1aa6320 | 921 | { |
b5dc7732 | 922 | return env->active_tc.CP0_TCContext; |
f1aa6320 TS |
923 | } |
924 | ||
895c2d04 | 925 | target_ulong helper_dmfc0_tcschedule(CPUMIPSState *env) |
f1aa6320 | 926 | { |
b5dc7732 | 927 | return env->active_tc.CP0_TCSchedule; |
f1aa6320 TS |
928 | } |
929 | ||
895c2d04 | 930 | target_ulong helper_dmfc0_tcschefback(CPUMIPSState *env) |
f1aa6320 | 931 | { |
b5dc7732 | 932 | return env->active_tc.CP0_TCScheFBack; |
f1aa6320 TS |
933 | } |
934 | ||
895c2d04 | 935 | target_ulong helper_dmfc0_lladdr(CPUMIPSState *env) |
f1aa6320 | 936 | { |
2a6e32dd | 937 | return env->lladdr >> env->CP0_LLAddr_shift; |
f1aa6320 TS |
938 | } |
939 | ||
895c2d04 | 940 | target_ulong helper_dmfc0_watchlo(CPUMIPSState *env, uint32_t sel) |
f1aa6320 | 941 | { |
be24bb4f | 942 | return env->CP0_WatchLo[sel]; |
f1aa6320 TS |
943 | } |
944 | #endif /* TARGET_MIPS64 */ | |
945 | ||
895c2d04 | 946 | void helper_mtc0_index(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
947 | { |
948 | int num = 1; | |
949 | unsigned int tmp = env->tlb->nb_tlb; | |
950 | ||
951 | do { | |
952 | tmp >>= 1; | |
953 | num <<= 1; | |
954 | } while (tmp); | |
d9bea114 | 955 | env->CP0_Index = (env->CP0_Index & 0x80000000) | (arg1 & (num - 1)); |
f1aa6320 TS |
956 | } |
957 | ||
895c2d04 | 958 | void helper_mtc0_mvpcontrol(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
959 | { |
960 | uint32_t mask = 0; | |
961 | uint32_t newval; | |
962 | ||
963 | if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP)) | |
964 | mask |= (1 << CP0MVPCo_CPA) | (1 << CP0MVPCo_VPC) | | |
965 | (1 << CP0MVPCo_EVP); | |
966 | if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC)) | |
967 | mask |= (1 << CP0MVPCo_STLB); | |
d9bea114 | 968 | newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask); |
f1aa6320 TS |
969 | |
970 | // TODO: Enable/disable shared TLB, enable/disable VPEs. | |
971 | ||
972 | env->mvp->CP0_MVPControl = newval; | |
973 | } | |
974 | ||
895c2d04 | 975 | void helper_mtc0_vpecontrol(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
976 | { |
977 | uint32_t mask; | |
978 | uint32_t newval; | |
979 | ||
980 | mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) | | |
981 | (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC); | |
d9bea114 | 982 | newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask); |
f1aa6320 TS |
983 | |
984 | /* Yield scheduler intercept not implemented. */ | |
985 | /* Gating storage scheduler intercept not implemented. */ | |
986 | ||
987 | // TODO: Enable/disable TCs. | |
988 | ||
989 | env->CP0_VPEControl = newval; | |
990 | } | |
991 | ||
895c2d04 | 992 | void helper_mttc0_vpecontrol(CPUMIPSState *env, target_ulong arg1) |
5a25ce94 EI |
993 | { |
994 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 995 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
996 | uint32_t mask; |
997 | uint32_t newval; | |
998 | ||
999 | mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) | | |
1000 | (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC); | |
1001 | newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask); | |
1002 | ||
1003 | /* TODO: Enable/disable TCs. */ | |
1004 | ||
1005 | other->CP0_VPEControl = newval; | |
1006 | } | |
1007 | ||
895c2d04 | 1008 | target_ulong helper_mftc0_vpecontrol(CPUMIPSState *env) |
5a25ce94 EI |
1009 | { |
1010 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1011 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1012 | /* FIXME: Mask away return zero on read bits. */ |
1013 | return other->CP0_VPEControl; | |
1014 | } | |
1015 | ||
895c2d04 | 1016 | target_ulong helper_mftc0_vpeconf0(CPUMIPSState *env) |
5a25ce94 EI |
1017 | { |
1018 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1019 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1020 | |
1021 | return other->CP0_VPEConf0; | |
1022 | } | |
1023 | ||
895c2d04 | 1024 | void helper_mtc0_vpeconf0(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1025 | { |
1026 | uint32_t mask = 0; | |
1027 | uint32_t newval; | |
1028 | ||
1029 | if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP)) { | |
1030 | if (env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA)) | |
1031 | mask |= (0xff << CP0VPEC0_XTC); | |
1032 | mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA); | |
1033 | } | |
d9bea114 | 1034 | newval = (env->CP0_VPEConf0 & ~mask) | (arg1 & mask); |
f1aa6320 TS |
1035 | |
1036 | // TODO: TC exclusive handling due to ERL/EXL. | |
1037 | ||
1038 | env->CP0_VPEConf0 = newval; | |
1039 | } | |
1040 | ||
895c2d04 | 1041 | void helper_mttc0_vpeconf0(CPUMIPSState *env, target_ulong arg1) |
5a25ce94 EI |
1042 | { |
1043 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1044 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1045 | uint32_t mask = 0; |
1046 | uint32_t newval; | |
1047 | ||
1048 | mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA); | |
1049 | newval = (other->CP0_VPEConf0 & ~mask) | (arg1 & mask); | |
1050 | ||
1051 | /* TODO: TC exclusive handling due to ERL/EXL. */ | |
1052 | other->CP0_VPEConf0 = newval; | |
1053 | } | |
1054 | ||
895c2d04 | 1055 | void helper_mtc0_vpeconf1(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1056 | { |
1057 | uint32_t mask = 0; | |
1058 | uint32_t newval; | |
1059 | ||
1060 | if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC)) | |
1061 | mask |= (0xff << CP0VPEC1_NCX) | (0xff << CP0VPEC1_NCP2) | | |
1062 | (0xff << CP0VPEC1_NCP1); | |
d9bea114 | 1063 | newval = (env->CP0_VPEConf1 & ~mask) | (arg1 & mask); |
f1aa6320 TS |
1064 | |
1065 | /* UDI not implemented. */ | |
1066 | /* CP2 not implemented. */ | |
1067 | ||
1068 | // TODO: Handle FPU (CP1) binding. | |
1069 | ||
1070 | env->CP0_VPEConf1 = newval; | |
1071 | } | |
1072 | ||
895c2d04 | 1073 | void helper_mtc0_yqmask(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1074 | { |
1075 | /* Yield qualifier inputs not implemented. */ | |
1076 | env->CP0_YQMask = 0x00000000; | |
1077 | } | |
1078 | ||
895c2d04 | 1079 | void helper_mtc0_vpeopt(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1080 | { |
d9bea114 | 1081 | env->CP0_VPEOpt = arg1 & 0x0000ffff; |
f1aa6320 TS |
1082 | } |
1083 | ||
895c2d04 | 1084 | void helper_mtc0_entrylo0(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1085 | { |
1086 | /* Large physaddr (PABITS) not implemented */ | |
1087 | /* 1k pages not implemented */ | |
d9bea114 | 1088 | env->CP0_EntryLo0 = arg1 & 0x3FFFFFFF; |
f1aa6320 TS |
1089 | } |
1090 | ||
895c2d04 | 1091 | void helper_mtc0_tcstatus(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1092 | { |
1093 | uint32_t mask = env->CP0_TCStatus_rw_bitmask; | |
1094 | uint32_t newval; | |
1095 | ||
d9bea114 | 1096 | newval = (env->active_tc.CP0_TCStatus & ~mask) | (arg1 & mask); |
f1aa6320 | 1097 | |
b5dc7732 | 1098 | env->active_tc.CP0_TCStatus = newval; |
fe8dca8c | 1099 | sync_c0_tcstatus(env, env->current_tc, newval); |
f1aa6320 TS |
1100 | } |
1101 | ||
895c2d04 | 1102 | void helper_mttc0_tcstatus(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1103 | { |
1104 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1105 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1106 | |
b93bbdcd EI |
1107 | if (other_tc == other->current_tc) |
1108 | other->active_tc.CP0_TCStatus = arg1; | |
b5dc7732 | 1109 | else |
b93bbdcd | 1110 | other->tcs[other_tc].CP0_TCStatus = arg1; |
fe8dca8c | 1111 | sync_c0_tcstatus(other, other_tc, arg1); |
f1aa6320 TS |
1112 | } |
1113 | ||
895c2d04 | 1114 | void helper_mtc0_tcbind(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1115 | { |
1116 | uint32_t mask = (1 << CP0TCBd_TBE); | |
1117 | uint32_t newval; | |
1118 | ||
1119 | if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC)) | |
1120 | mask |= (1 << CP0TCBd_CurVPE); | |
d9bea114 | 1121 | newval = (env->active_tc.CP0_TCBind & ~mask) | (arg1 & mask); |
b5dc7732 | 1122 | env->active_tc.CP0_TCBind = newval; |
f1aa6320 TS |
1123 | } |
1124 | ||
895c2d04 | 1125 | void helper_mttc0_tcbind(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1126 | { |
1127 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
1128 | uint32_t mask = (1 << CP0TCBd_TBE); | |
1129 | uint32_t newval; | |
895c2d04 | 1130 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1131 | |
b93bbdcd | 1132 | if (other->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC)) |
f1aa6320 | 1133 | mask |= (1 << CP0TCBd_CurVPE); |
b93bbdcd EI |
1134 | if (other_tc == other->current_tc) { |
1135 | newval = (other->active_tc.CP0_TCBind & ~mask) | (arg1 & mask); | |
1136 | other->active_tc.CP0_TCBind = newval; | |
b5dc7732 | 1137 | } else { |
b93bbdcd EI |
1138 | newval = (other->tcs[other_tc].CP0_TCBind & ~mask) | (arg1 & mask); |
1139 | other->tcs[other_tc].CP0_TCBind = newval; | |
b5dc7732 | 1140 | } |
f1aa6320 TS |
1141 | } |
1142 | ||
895c2d04 | 1143 | void helper_mtc0_tcrestart(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1144 | { |
d9bea114 | 1145 | env->active_tc.PC = arg1; |
b5dc7732 | 1146 | env->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS); |
5499b6ff | 1147 | env->lladdr = 0ULL; |
f1aa6320 TS |
1148 | /* MIPS16 not implemented. */ |
1149 | } | |
1150 | ||
895c2d04 | 1151 | void helper_mttc0_tcrestart(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1152 | { |
1153 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1154 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1155 | |
b93bbdcd EI |
1156 | if (other_tc == other->current_tc) { |
1157 | other->active_tc.PC = arg1; | |
1158 | other->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS); | |
1159 | other->lladdr = 0ULL; | |
b5dc7732 TS |
1160 | /* MIPS16 not implemented. */ |
1161 | } else { | |
b93bbdcd EI |
1162 | other->tcs[other_tc].PC = arg1; |
1163 | other->tcs[other_tc].CP0_TCStatus &= ~(1 << CP0TCSt_TDS); | |
1164 | other->lladdr = 0ULL; | |
b5dc7732 TS |
1165 | /* MIPS16 not implemented. */ |
1166 | } | |
f1aa6320 TS |
1167 | } |
1168 | ||
895c2d04 | 1169 | void helper_mtc0_tchalt(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1170 | { |
135dd63a AF |
1171 | MIPSCPU *cpu = mips_env_get_cpu(env); |
1172 | ||
d9bea114 | 1173 | env->active_tc.CP0_TCHalt = arg1 & 0x1; |
f1aa6320 TS |
1174 | |
1175 | // TODO: Halt TC / Restart (if allocated+active) TC. | |
f249412c | 1176 | if (env->active_tc.CP0_TCHalt & 1) { |
c6679e90 | 1177 | mips_tc_sleep(cpu, env->current_tc); |
f249412c | 1178 | } else { |
135dd63a | 1179 | mips_tc_wake(cpu, env->current_tc); |
f249412c | 1180 | } |
f1aa6320 TS |
1181 | } |
1182 | ||
895c2d04 | 1183 | void helper_mttc0_tchalt(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1184 | { |
1185 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1186 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
135dd63a | 1187 | MIPSCPU *other_cpu = mips_env_get_cpu(other); |
f1aa6320 TS |
1188 | |
1189 | // TODO: Halt TC / Restart (if allocated+active) TC. | |
1190 | ||
b93bbdcd EI |
1191 | if (other_tc == other->current_tc) |
1192 | other->active_tc.CP0_TCHalt = arg1; | |
b5dc7732 | 1193 | else |
b93bbdcd | 1194 | other->tcs[other_tc].CP0_TCHalt = arg1; |
f249412c EI |
1195 | |
1196 | if (arg1 & 1) { | |
c6679e90 | 1197 | mips_tc_sleep(other_cpu, other_tc); |
f249412c | 1198 | } else { |
135dd63a | 1199 | mips_tc_wake(other_cpu, other_tc); |
f249412c | 1200 | } |
f1aa6320 TS |
1201 | } |
1202 | ||
895c2d04 | 1203 | void helper_mtc0_tccontext(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1204 | { |
d9bea114 | 1205 | env->active_tc.CP0_TCContext = arg1; |
f1aa6320 TS |
1206 | } |
1207 | ||
895c2d04 | 1208 | void helper_mttc0_tccontext(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1209 | { |
1210 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1211 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1212 | |
b93bbdcd EI |
1213 | if (other_tc == other->current_tc) |
1214 | other->active_tc.CP0_TCContext = arg1; | |
b5dc7732 | 1215 | else |
b93bbdcd | 1216 | other->tcs[other_tc].CP0_TCContext = arg1; |
f1aa6320 TS |
1217 | } |
1218 | ||
895c2d04 | 1219 | void helper_mtc0_tcschedule(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1220 | { |
d9bea114 | 1221 | env->active_tc.CP0_TCSchedule = arg1; |
f1aa6320 TS |
1222 | } |
1223 | ||
895c2d04 | 1224 | void helper_mttc0_tcschedule(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1225 | { |
1226 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1227 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1228 | |
b93bbdcd EI |
1229 | if (other_tc == other->current_tc) |
1230 | other->active_tc.CP0_TCSchedule = arg1; | |
b5dc7732 | 1231 | else |
b93bbdcd | 1232 | other->tcs[other_tc].CP0_TCSchedule = arg1; |
f1aa6320 TS |
1233 | } |
1234 | ||
895c2d04 | 1235 | void helper_mtc0_tcschefback(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1236 | { |
d9bea114 | 1237 | env->active_tc.CP0_TCScheFBack = arg1; |
f1aa6320 TS |
1238 | } |
1239 | ||
895c2d04 | 1240 | void helper_mttc0_tcschefback(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1241 | { |
1242 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1243 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1244 | |
b93bbdcd EI |
1245 | if (other_tc == other->current_tc) |
1246 | other->active_tc.CP0_TCScheFBack = arg1; | |
b5dc7732 | 1247 | else |
b93bbdcd | 1248 | other->tcs[other_tc].CP0_TCScheFBack = arg1; |
f1aa6320 TS |
1249 | } |
1250 | ||
895c2d04 | 1251 | void helper_mtc0_entrylo1(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1252 | { |
1253 | /* Large physaddr (PABITS) not implemented */ | |
1254 | /* 1k pages not implemented */ | |
d9bea114 | 1255 | env->CP0_EntryLo1 = arg1 & 0x3FFFFFFF; |
f1aa6320 TS |
1256 | } |
1257 | ||
895c2d04 | 1258 | void helper_mtc0_context(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1259 | { |
d9bea114 | 1260 | env->CP0_Context = (env->CP0_Context & 0x007FFFFF) | (arg1 & ~0x007FFFFF); |
f1aa6320 TS |
1261 | } |
1262 | ||
895c2d04 | 1263 | void helper_mtc0_pagemask(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1264 | { |
1265 | /* 1k pages not implemented */ | |
d9bea114 | 1266 | env->CP0_PageMask = arg1 & (0x1FFFFFFF & (TARGET_PAGE_MASK << 1)); |
f1aa6320 TS |
1267 | } |
1268 | ||
895c2d04 | 1269 | void helper_mtc0_pagegrain(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1270 | { |
1271 | /* SmartMIPS not implemented */ | |
1272 | /* Large physaddr (PABITS) not implemented */ | |
1273 | /* 1k pages not implemented */ | |
1274 | env->CP0_PageGrain = 0; | |
1275 | } | |
1276 | ||
895c2d04 | 1277 | void helper_mtc0_wired(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1278 | { |
d9bea114 | 1279 | env->CP0_Wired = arg1 % env->tlb->nb_tlb; |
f1aa6320 TS |
1280 | } |
1281 | ||
895c2d04 | 1282 | void helper_mtc0_srsconf0(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1283 | { |
d9bea114 | 1284 | env->CP0_SRSConf0 |= arg1 & env->CP0_SRSConf0_rw_bitmask; |
f1aa6320 TS |
1285 | } |
1286 | ||
895c2d04 | 1287 | void helper_mtc0_srsconf1(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1288 | { |
d9bea114 | 1289 | env->CP0_SRSConf1 |= arg1 & env->CP0_SRSConf1_rw_bitmask; |
f1aa6320 TS |
1290 | } |
1291 | ||
895c2d04 | 1292 | void helper_mtc0_srsconf2(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1293 | { |
d9bea114 | 1294 | env->CP0_SRSConf2 |= arg1 & env->CP0_SRSConf2_rw_bitmask; |
f1aa6320 TS |
1295 | } |
1296 | ||
895c2d04 | 1297 | void helper_mtc0_srsconf3(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1298 | { |
d9bea114 | 1299 | env->CP0_SRSConf3 |= arg1 & env->CP0_SRSConf3_rw_bitmask; |
f1aa6320 TS |
1300 | } |
1301 | ||
895c2d04 | 1302 | void helper_mtc0_srsconf4(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1303 | { |
d9bea114 | 1304 | env->CP0_SRSConf4 |= arg1 & env->CP0_SRSConf4_rw_bitmask; |
f1aa6320 TS |
1305 | } |
1306 | ||
895c2d04 | 1307 | void helper_mtc0_hwrena(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1308 | { |
d9bea114 | 1309 | env->CP0_HWREna = arg1 & 0x0000000F; |
f1aa6320 TS |
1310 | } |
1311 | ||
895c2d04 | 1312 | void helper_mtc0_count(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1313 | { |
d9bea114 | 1314 | cpu_mips_store_count(env, arg1); |
f1aa6320 TS |
1315 | } |
1316 | ||
895c2d04 | 1317 | void helper_mtc0_entryhi(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1318 | { |
1319 | target_ulong old, val; | |
1320 | ||
1321 | /* 1k pages not implemented */ | |
d9bea114 | 1322 | val = arg1 & ((TARGET_PAGE_MASK << 1) | 0xFF); |
f1aa6320 TS |
1323 | #if defined(TARGET_MIPS64) |
1324 | val &= env->SEGMask; | |
1325 | #endif | |
1326 | old = env->CP0_EntryHi; | |
1327 | env->CP0_EntryHi = val; | |
1328 | if (env->CP0_Config3 & (1 << CP0C3_MT)) { | |
fe8dca8c | 1329 | sync_c0_entryhi(env, env->current_tc); |
f1aa6320 TS |
1330 | } |
1331 | /* If the ASID changes, flush qemu's TLB. */ | |
1332 | if ((old & 0xFF) != (val & 0xFF)) | |
1333 | cpu_mips_tlb_flush(env, 1); | |
1334 | } | |
1335 | ||
895c2d04 | 1336 | void helper_mttc0_entryhi(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1337 | { |
1338 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1339 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1340 | |
fe8dca8c EI |
1341 | other->CP0_EntryHi = arg1; |
1342 | sync_c0_entryhi(other, other_tc); | |
f1aa6320 TS |
1343 | } |
1344 | ||
895c2d04 | 1345 | void helper_mtc0_compare(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1346 | { |
d9bea114 | 1347 | cpu_mips_store_compare(env, arg1); |
f1aa6320 TS |
1348 | } |
1349 | ||
895c2d04 | 1350 | void helper_mtc0_status(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1351 | { |
1352 | uint32_t val, old; | |
1353 | uint32_t mask = env->CP0_Status_rw_bitmask; | |
1354 | ||
d9bea114 | 1355 | val = arg1 & mask; |
f1aa6320 TS |
1356 | old = env->CP0_Status; |
1357 | env->CP0_Status = (env->CP0_Status & ~mask) | val; | |
fe8dca8c | 1358 | if (env->CP0_Config3 & (1 << CP0C3_MT)) { |
895c2d04 | 1359 | sync_c0_status(env, env, env->current_tc); |
fe8dca8c EI |
1360 | } else { |
1361 | compute_hflags(env); | |
1362 | } | |
1363 | ||
c01fccd2 AJ |
1364 | if (qemu_loglevel_mask(CPU_LOG_EXEC)) { |
1365 | qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x", | |
1366 | old, old & env->CP0_Cause & CP0Ca_IP_mask, | |
1367 | val, val & env->CP0_Cause & CP0Ca_IP_mask, | |
1368 | env->CP0_Cause); | |
1369 | switch (env->hflags & MIPS_HFLAG_KSU) { | |
1370 | case MIPS_HFLAG_UM: qemu_log(", UM\n"); break; | |
1371 | case MIPS_HFLAG_SM: qemu_log(", SM\n"); break; | |
1372 | case MIPS_HFLAG_KM: qemu_log("\n"); break; | |
1373 | default: cpu_abort(env, "Invalid MMU mode!\n"); break; | |
31e3104f | 1374 | } |
c01fccd2 | 1375 | } |
f1aa6320 TS |
1376 | } |
1377 | ||
895c2d04 | 1378 | void helper_mttc0_status(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1379 | { |
1380 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1381 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1382 | |
b93bbdcd | 1383 | other->CP0_Status = arg1 & ~0xf1000018; |
895c2d04 | 1384 | sync_c0_status(env, other, other_tc); |
f1aa6320 TS |
1385 | } |
1386 | ||
895c2d04 | 1387 | void helper_mtc0_intctl(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1388 | { |
1389 | /* vectored interrupts not implemented, no performance counters. */ | |
bc45a67a | 1390 | env->CP0_IntCtl = (env->CP0_IntCtl & ~0x000003e0) | (arg1 & 0x000003e0); |
f1aa6320 TS |
1391 | } |
1392 | ||
895c2d04 | 1393 | void helper_mtc0_srsctl(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1394 | { |
1395 | uint32_t mask = (0xf << CP0SRSCtl_ESS) | (0xf << CP0SRSCtl_PSS); | |
d9bea114 | 1396 | env->CP0_SRSCtl = (env->CP0_SRSCtl & ~mask) | (arg1 & mask); |
f1aa6320 TS |
1397 | } |
1398 | ||
7db13fae | 1399 | static void mtc0_cause(CPUMIPSState *cpu, target_ulong arg1) |
f1aa6320 TS |
1400 | { |
1401 | uint32_t mask = 0x00C00300; | |
5a25ce94 | 1402 | uint32_t old = cpu->CP0_Cause; |
5dc5d9f0 | 1403 | int i; |
f1aa6320 | 1404 | |
5a25ce94 | 1405 | if (cpu->insn_flags & ISA_MIPS32R2) { |
f1aa6320 | 1406 | mask |= 1 << CP0Ca_DC; |
5a25ce94 | 1407 | } |
f1aa6320 | 1408 | |
5a25ce94 | 1409 | cpu->CP0_Cause = (cpu->CP0_Cause & ~mask) | (arg1 & mask); |
f1aa6320 | 1410 | |
5a25ce94 EI |
1411 | if ((old ^ cpu->CP0_Cause) & (1 << CP0Ca_DC)) { |
1412 | if (cpu->CP0_Cause & (1 << CP0Ca_DC)) { | |
1413 | cpu_mips_stop_count(cpu); | |
1414 | } else { | |
1415 | cpu_mips_start_count(cpu); | |
1416 | } | |
f1aa6320 | 1417 | } |
5dc5d9f0 AJ |
1418 | |
1419 | /* Set/reset software interrupts */ | |
1420 | for (i = 0 ; i < 2 ; i++) { | |
5a25ce94 EI |
1421 | if ((old ^ cpu->CP0_Cause) & (1 << (CP0Ca_IP + i))) { |
1422 | cpu_mips_soft_irq(cpu, i, cpu->CP0_Cause & (1 << (CP0Ca_IP + i))); | |
5dc5d9f0 AJ |
1423 | } |
1424 | } | |
f1aa6320 TS |
1425 | } |
1426 | ||
895c2d04 | 1427 | void helper_mtc0_cause(CPUMIPSState *env, target_ulong arg1) |
5a25ce94 EI |
1428 | { |
1429 | mtc0_cause(env, arg1); | |
1430 | } | |
1431 | ||
895c2d04 | 1432 | void helper_mttc0_cause(CPUMIPSState *env, target_ulong arg1) |
5a25ce94 EI |
1433 | { |
1434 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1435 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1436 | |
1437 | mtc0_cause(other, arg1); | |
1438 | } | |
1439 | ||
895c2d04 | 1440 | target_ulong helper_mftc0_epc(CPUMIPSState *env) |
5a25ce94 EI |
1441 | { |
1442 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1443 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1444 | |
1445 | return other->CP0_EPC; | |
1446 | } | |
1447 | ||
895c2d04 | 1448 | target_ulong helper_mftc0_ebase(CPUMIPSState *env) |
5a25ce94 EI |
1449 | { |
1450 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1451 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1452 | |
1453 | return other->CP0_EBase; | |
1454 | } | |
1455 | ||
895c2d04 | 1456 | void helper_mtc0_ebase(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1457 | { |
1458 | /* vectored interrupts not implemented */ | |
671b0f36 | 1459 | env->CP0_EBase = (env->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000); |
f1aa6320 TS |
1460 | } |
1461 | ||
895c2d04 | 1462 | void helper_mttc0_ebase(CPUMIPSState *env, target_ulong arg1) |
5a25ce94 EI |
1463 | { |
1464 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1465 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1466 | other->CP0_EBase = (other->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000); |
1467 | } | |
1468 | ||
895c2d04 | 1469 | target_ulong helper_mftc0_configx(CPUMIPSState *env, target_ulong idx) |
5a25ce94 EI |
1470 | { |
1471 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1472 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
5a25ce94 EI |
1473 | |
1474 | switch (idx) { | |
1475 | case 0: return other->CP0_Config0; | |
1476 | case 1: return other->CP0_Config1; | |
1477 | case 2: return other->CP0_Config2; | |
1478 | case 3: return other->CP0_Config3; | |
1479 | /* 4 and 5 are reserved. */ | |
1480 | case 6: return other->CP0_Config6; | |
1481 | case 7: return other->CP0_Config7; | |
1482 | default: | |
1483 | break; | |
1484 | } | |
1485 | return 0; | |
1486 | } | |
1487 | ||
895c2d04 | 1488 | void helper_mtc0_config0(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1489 | { |
d9bea114 | 1490 | env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (arg1 & 0x00000007); |
f1aa6320 TS |
1491 | } |
1492 | ||
895c2d04 | 1493 | void helper_mtc0_config2(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1494 | { |
1495 | /* tertiary/secondary caches not implemented */ | |
1496 | env->CP0_Config2 = (env->CP0_Config2 & 0x8FFF0FFF); | |
1497 | } | |
1498 | ||
895c2d04 | 1499 | void helper_mtc0_lladdr(CPUMIPSState *env, target_ulong arg1) |
2a6e32dd AJ |
1500 | { |
1501 | target_long mask = env->CP0_LLAddr_rw_bitmask; | |
1502 | arg1 = arg1 << env->CP0_LLAddr_shift; | |
1503 | env->lladdr = (env->lladdr & ~mask) | (arg1 & mask); | |
1504 | } | |
1505 | ||
895c2d04 | 1506 | void helper_mtc0_watchlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 TS |
1507 | { |
1508 | /* Watch exceptions for instructions, data loads, data stores | |
1509 | not implemented. */ | |
d9bea114 | 1510 | env->CP0_WatchLo[sel] = (arg1 & ~0x7); |
f1aa6320 TS |
1511 | } |
1512 | ||
895c2d04 | 1513 | void helper_mtc0_watchhi(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 | 1514 | { |
d9bea114 AJ |
1515 | env->CP0_WatchHi[sel] = (arg1 & 0x40FF0FF8); |
1516 | env->CP0_WatchHi[sel] &= ~(env->CP0_WatchHi[sel] & arg1 & 0x7); | |
f1aa6320 TS |
1517 | } |
1518 | ||
895c2d04 | 1519 | void helper_mtc0_xcontext(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1520 | { |
1521 | target_ulong mask = (1ULL << (env->SEGBITS - 7)) - 1; | |
d9bea114 | 1522 | env->CP0_XContext = (env->CP0_XContext & mask) | (arg1 & ~mask); |
f1aa6320 TS |
1523 | } |
1524 | ||
895c2d04 | 1525 | void helper_mtc0_framemask(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1526 | { |
d9bea114 | 1527 | env->CP0_Framemask = arg1; /* XXX */ |
f1aa6320 TS |
1528 | } |
1529 | ||
895c2d04 | 1530 | void helper_mtc0_debug(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1531 | { |
d9bea114 AJ |
1532 | env->CP0_Debug = (env->CP0_Debug & 0x8C03FC1F) | (arg1 & 0x13300120); |
1533 | if (arg1 & (1 << CP0DB_DM)) | |
f1aa6320 TS |
1534 | env->hflags |= MIPS_HFLAG_DM; |
1535 | else | |
1536 | env->hflags &= ~MIPS_HFLAG_DM; | |
1537 | } | |
1538 | ||
895c2d04 | 1539 | void helper_mttc0_debug(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1540 | { |
1541 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
d9bea114 | 1542 | uint32_t val = arg1 & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt)); |
895c2d04 | 1543 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 TS |
1544 | |
1545 | /* XXX: Might be wrong, check with EJTAG spec. */ | |
b93bbdcd EI |
1546 | if (other_tc == other->current_tc) |
1547 | other->active_tc.CP0_Debug_tcstatus = val; | |
b5dc7732 | 1548 | else |
b93bbdcd EI |
1549 | other->tcs[other_tc].CP0_Debug_tcstatus = val; |
1550 | other->CP0_Debug = (other->CP0_Debug & | |
1551 | ((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) | | |
d9bea114 | 1552 | (arg1 & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt))); |
f1aa6320 TS |
1553 | } |
1554 | ||
895c2d04 | 1555 | void helper_mtc0_performance0(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1556 | { |
d9bea114 | 1557 | env->CP0_Performance0 = arg1 & 0x000007ff; |
f1aa6320 TS |
1558 | } |
1559 | ||
895c2d04 | 1560 | void helper_mtc0_taglo(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1561 | { |
d9bea114 | 1562 | env->CP0_TagLo = arg1 & 0xFFFFFCF6; |
f1aa6320 TS |
1563 | } |
1564 | ||
895c2d04 | 1565 | void helper_mtc0_datalo(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1566 | { |
d9bea114 | 1567 | env->CP0_DataLo = arg1; /* XXX */ |
f1aa6320 TS |
1568 | } |
1569 | ||
895c2d04 | 1570 | void helper_mtc0_taghi(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1571 | { |
d9bea114 | 1572 | env->CP0_TagHi = arg1; /* XXX */ |
f1aa6320 TS |
1573 | } |
1574 | ||
895c2d04 | 1575 | void helper_mtc0_datahi(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 | 1576 | { |
d9bea114 | 1577 | env->CP0_DataHi = arg1; /* XXX */ |
f1aa6320 TS |
1578 | } |
1579 | ||
f1aa6320 | 1580 | /* MIPS MT functions */ |
895c2d04 | 1581 | target_ulong helper_mftgpr(CPUMIPSState *env, uint32_t sel) |
f1aa6320 TS |
1582 | { |
1583 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1584 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1585 | |
b93bbdcd EI |
1586 | if (other_tc == other->current_tc) |
1587 | return other->active_tc.gpr[sel]; | |
b5dc7732 | 1588 | else |
b93bbdcd | 1589 | return other->tcs[other_tc].gpr[sel]; |
f1aa6320 TS |
1590 | } |
1591 | ||
895c2d04 | 1592 | target_ulong helper_mftlo(CPUMIPSState *env, uint32_t sel) |
f1aa6320 TS |
1593 | { |
1594 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1595 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1596 | |
b93bbdcd EI |
1597 | if (other_tc == other->current_tc) |
1598 | return other->active_tc.LO[sel]; | |
b5dc7732 | 1599 | else |
b93bbdcd | 1600 | return other->tcs[other_tc].LO[sel]; |
f1aa6320 TS |
1601 | } |
1602 | ||
895c2d04 | 1603 | target_ulong helper_mfthi(CPUMIPSState *env, uint32_t sel) |
f1aa6320 TS |
1604 | { |
1605 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1606 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1607 | |
b93bbdcd EI |
1608 | if (other_tc == other->current_tc) |
1609 | return other->active_tc.HI[sel]; | |
b5dc7732 | 1610 | else |
b93bbdcd | 1611 | return other->tcs[other_tc].HI[sel]; |
f1aa6320 TS |
1612 | } |
1613 | ||
895c2d04 | 1614 | target_ulong helper_mftacx(CPUMIPSState *env, uint32_t sel) |
f1aa6320 TS |
1615 | { |
1616 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1617 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1618 | |
b93bbdcd EI |
1619 | if (other_tc == other->current_tc) |
1620 | return other->active_tc.ACX[sel]; | |
b5dc7732 | 1621 | else |
b93bbdcd | 1622 | return other->tcs[other_tc].ACX[sel]; |
f1aa6320 TS |
1623 | } |
1624 | ||
895c2d04 | 1625 | target_ulong helper_mftdsp(CPUMIPSState *env) |
f1aa6320 TS |
1626 | { |
1627 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1628 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1629 | |
b93bbdcd EI |
1630 | if (other_tc == other->current_tc) |
1631 | return other->active_tc.DSPControl; | |
b5dc7732 | 1632 | else |
b93bbdcd | 1633 | return other->tcs[other_tc].DSPControl; |
f1aa6320 | 1634 | } |
6af0bf9c | 1635 | |
895c2d04 | 1636 | void helper_mttgpr(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 TS |
1637 | { |
1638 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1639 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1640 | |
b93bbdcd EI |
1641 | if (other_tc == other->current_tc) |
1642 | other->active_tc.gpr[sel] = arg1; | |
b5dc7732 | 1643 | else |
b93bbdcd | 1644 | other->tcs[other_tc].gpr[sel] = arg1; |
f1aa6320 TS |
1645 | } |
1646 | ||
895c2d04 | 1647 | void helper_mttlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 TS |
1648 | { |
1649 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1650 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1651 | |
b93bbdcd EI |
1652 | if (other_tc == other->current_tc) |
1653 | other->active_tc.LO[sel] = arg1; | |
b5dc7732 | 1654 | else |
b93bbdcd | 1655 | other->tcs[other_tc].LO[sel] = arg1; |
f1aa6320 TS |
1656 | } |
1657 | ||
895c2d04 | 1658 | void helper_mtthi(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 TS |
1659 | { |
1660 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1661 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1662 | |
b93bbdcd EI |
1663 | if (other_tc == other->current_tc) |
1664 | other->active_tc.HI[sel] = arg1; | |
b5dc7732 | 1665 | else |
b93bbdcd | 1666 | other->tcs[other_tc].HI[sel] = arg1; |
f1aa6320 TS |
1667 | } |
1668 | ||
895c2d04 | 1669 | void helper_mttacx(CPUMIPSState *env, target_ulong arg1, uint32_t sel) |
f1aa6320 TS |
1670 | { |
1671 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1672 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1673 | |
b93bbdcd EI |
1674 | if (other_tc == other->current_tc) |
1675 | other->active_tc.ACX[sel] = arg1; | |
b5dc7732 | 1676 | else |
b93bbdcd | 1677 | other->tcs[other_tc].ACX[sel] = arg1; |
f1aa6320 TS |
1678 | } |
1679 | ||
895c2d04 | 1680 | void helper_mttdsp(CPUMIPSState *env, target_ulong arg1) |
f1aa6320 TS |
1681 | { |
1682 | int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); | |
895c2d04 | 1683 | CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc); |
f1aa6320 | 1684 | |
b93bbdcd EI |
1685 | if (other_tc == other->current_tc) |
1686 | other->active_tc.DSPControl = arg1; | |
b5dc7732 | 1687 | else |
b93bbdcd | 1688 | other->tcs[other_tc].DSPControl = arg1; |
f1aa6320 TS |
1689 | } |
1690 | ||
1691 | /* MIPS MT functions */ | |
9ed5726c | 1692 | target_ulong helper_dmt(void) |
f1aa6320 TS |
1693 | { |
1694 | // TODO | |
9ed5726c | 1695 | return 0; |
f1aa6320 TS |
1696 | } |
1697 | ||
9ed5726c | 1698 | target_ulong helper_emt(void) |
f1aa6320 TS |
1699 | { |
1700 | // TODO | |
9ed5726c | 1701 | return 0; |
f1aa6320 TS |
1702 | } |
1703 | ||
895c2d04 | 1704 | target_ulong helper_dvpe(CPUMIPSState *env) |
f1aa6320 | 1705 | { |
81bad50e | 1706 | CPUMIPSState *other_cpu_env = first_cpu; |
f249412c EI |
1707 | target_ulong prev = env->mvp->CP0_MVPControl; |
1708 | ||
1709 | do { | |
1710 | /* Turn off all VPEs except the one executing the dvpe. */ | |
81bad50e | 1711 | if (other_cpu_env != env) { |
6f4d6b09 AF |
1712 | MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env); |
1713 | ||
81bad50e | 1714 | other_cpu_env->mvp->CP0_MVPControl &= ~(1 << CP0MVPCo_EVP); |
6f4d6b09 | 1715 | mips_vpe_sleep(other_cpu); |
f249412c | 1716 | } |
81bad50e AF |
1717 | other_cpu_env = other_cpu_env->next_cpu; |
1718 | } while (other_cpu_env); | |
f249412c | 1719 | return prev; |
f1aa6320 TS |
1720 | } |
1721 | ||
895c2d04 | 1722 | target_ulong helper_evpe(CPUMIPSState *env) |
f1aa6320 | 1723 | { |
81bad50e | 1724 | CPUMIPSState *other_cpu_env = first_cpu; |
f249412c EI |
1725 | target_ulong prev = env->mvp->CP0_MVPControl; |
1726 | ||
1727 | do { | |
b35d77d7 AF |
1728 | MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env); |
1729 | ||
81bad50e AF |
1730 | if (other_cpu_env != env |
1731 | /* If the VPE is WFI, don't disturb its sleep. */ | |
b35d77d7 | 1732 | && !mips_vpe_is_wfi(other_cpu)) { |
f249412c | 1733 | /* Enable the VPE. */ |
81bad50e AF |
1734 | other_cpu_env->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP); |
1735 | mips_vpe_wake(other_cpu_env); /* And wake it up. */ | |
f249412c | 1736 | } |
81bad50e AF |
1737 | other_cpu_env = other_cpu_env->next_cpu; |
1738 | } while (other_cpu_env); | |
f249412c | 1739 | return prev; |
f1aa6320 | 1740 | } |
f9480ffc | 1741 | #endif /* !CONFIG_USER_ONLY */ |
f1aa6320 | 1742 | |
d9bea114 | 1743 | void helper_fork(target_ulong arg1, target_ulong arg2) |
f1aa6320 | 1744 | { |
d9bea114 AJ |
1745 | // arg1 = rt, arg2 = rs |
1746 | arg1 = 0; | |
f1aa6320 TS |
1747 | // TODO: store to TC register |
1748 | } | |
1749 | ||
895c2d04 | 1750 | target_ulong helper_yield(CPUMIPSState *env, target_ulong arg) |
f1aa6320 | 1751 | { |
1c7242da BS |
1752 | target_long arg1 = arg; |
1753 | ||
d9bea114 | 1754 | if (arg1 < 0) { |
f1aa6320 | 1755 | /* No scheduling policy implemented. */ |
d9bea114 | 1756 | if (arg1 != -2) { |
f1aa6320 | 1757 | if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) && |
b5dc7732 | 1758 | env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) { |
f1aa6320 TS |
1759 | env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); |
1760 | env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT; | |
895c2d04 | 1761 | helper_raise_exception(env, EXCP_THREAD); |
f1aa6320 TS |
1762 | } |
1763 | } | |
d9bea114 | 1764 | } else if (arg1 == 0) { |
6958549d | 1765 | if (0 /* TODO: TC underflow */) { |
f1aa6320 | 1766 | env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); |
895c2d04 | 1767 | helper_raise_exception(env, EXCP_THREAD); |
f1aa6320 TS |
1768 | } else { |
1769 | // TODO: Deallocate TC | |
1770 | } | |
d9bea114 | 1771 | } else if (arg1 > 0) { |
f1aa6320 TS |
1772 | /* Yield qualifier inputs not implemented. */ |
1773 | env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); | |
1774 | env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT; | |
895c2d04 | 1775 | helper_raise_exception(env, EXCP_THREAD); |
f1aa6320 | 1776 | } |
be24bb4f | 1777 | return env->CP0_YQMask; |
f1aa6320 TS |
1778 | } |
1779 | ||
f1aa6320 | 1780 | #ifndef CONFIG_USER_ONLY |
6af0bf9c | 1781 | /* TLB management */ |
7db13fae | 1782 | static void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global) |
814b9a47 TS |
1783 | { |
1784 | /* Flush qemu's TLB and discard all shadowed entries. */ | |
1785 | tlb_flush (env, flush_global); | |
ead9360e | 1786 | env->tlb->tlb_in_use = env->tlb->nb_tlb; |
814b9a47 TS |
1787 | } |
1788 | ||
7db13fae | 1789 | static void r4k_mips_tlb_flush_extra (CPUMIPSState *env, int first) |
814b9a47 TS |
1790 | { |
1791 | /* Discard entries from env->tlb[first] onwards. */ | |
ead9360e TS |
1792 | while (env->tlb->tlb_in_use > first) { |
1793 | r4k_invalidate_tlb(env, --env->tlb->tlb_in_use, 0); | |
814b9a47 TS |
1794 | } |
1795 | } | |
1796 | ||
895c2d04 | 1797 | static void r4k_fill_tlb(CPUMIPSState *env, int idx) |
6af0bf9c | 1798 | { |
c227f099 | 1799 | r4k_tlb_t *tlb; |
6af0bf9c FB |
1800 | |
1801 | /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */ | |
ead9360e | 1802 | tlb = &env->tlb->mmu.r4k.tlb[idx]; |
f2e9ebef | 1803 | tlb->VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1); |
d26bc211 | 1804 | #if defined(TARGET_MIPS64) |
e034e2c3 | 1805 | tlb->VPN &= env->SEGMask; |
100ce988 | 1806 | #endif |
98c1b82b | 1807 | tlb->ASID = env->CP0_EntryHi & 0xFF; |
3b1c8be4 | 1808 | tlb->PageMask = env->CP0_PageMask; |
6af0bf9c | 1809 | tlb->G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1; |
98c1b82b PB |
1810 | tlb->V0 = (env->CP0_EntryLo0 & 2) != 0; |
1811 | tlb->D0 = (env->CP0_EntryLo0 & 4) != 0; | |
1812 | tlb->C0 = (env->CP0_EntryLo0 >> 3) & 0x7; | |
6af0bf9c | 1813 | tlb->PFN[0] = (env->CP0_EntryLo0 >> 6) << 12; |
98c1b82b PB |
1814 | tlb->V1 = (env->CP0_EntryLo1 & 2) != 0; |
1815 | tlb->D1 = (env->CP0_EntryLo1 & 4) != 0; | |
1816 | tlb->C1 = (env->CP0_EntryLo1 >> 3) & 0x7; | |
6af0bf9c FB |
1817 | tlb->PFN[1] = (env->CP0_EntryLo1 >> 6) << 12; |
1818 | } | |
1819 | ||
895c2d04 | 1820 | void r4k_helper_tlbwi(CPUMIPSState *env) |
6af0bf9c | 1821 | { |
bbc0d79c AJ |
1822 | int idx; |
1823 | ||
1824 | idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb; | |
1825 | ||
814b9a47 TS |
1826 | /* Discard cached TLB entries. We could avoid doing this if the |
1827 | tlbwi is just upgrading access permissions on the current entry; | |
1828 | that might be a further win. */ | |
ead9360e | 1829 | r4k_mips_tlb_flush_extra (env, env->tlb->nb_tlb); |
814b9a47 | 1830 | |
bbc0d79c | 1831 | r4k_invalidate_tlb(env, idx, 0); |
895c2d04 | 1832 | r4k_fill_tlb(env, idx); |
6af0bf9c FB |
1833 | } |
1834 | ||
895c2d04 | 1835 | void r4k_helper_tlbwr(CPUMIPSState *env) |
6af0bf9c FB |
1836 | { |
1837 | int r = cpu_mips_get_random(env); | |
1838 | ||
29929e34 | 1839 | r4k_invalidate_tlb(env, r, 1); |
895c2d04 | 1840 | r4k_fill_tlb(env, r); |
6af0bf9c FB |
1841 | } |
1842 | ||
895c2d04 | 1843 | void r4k_helper_tlbp(CPUMIPSState *env) |
6af0bf9c | 1844 | { |
c227f099 | 1845 | r4k_tlb_t *tlb; |
f2e9ebef | 1846 | target_ulong mask; |
6af0bf9c | 1847 | target_ulong tag; |
f2e9ebef | 1848 | target_ulong VPN; |
6af0bf9c FB |
1849 | uint8_t ASID; |
1850 | int i; | |
1851 | ||
3d9fb9fe | 1852 | ASID = env->CP0_EntryHi & 0xFF; |
ead9360e TS |
1853 | for (i = 0; i < env->tlb->nb_tlb; i++) { |
1854 | tlb = &env->tlb->mmu.r4k.tlb[i]; | |
f2e9ebef TS |
1855 | /* 1k pages are not supported. */ |
1856 | mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1); | |
1857 | tag = env->CP0_EntryHi & ~mask; | |
1858 | VPN = tlb->VPN & ~mask; | |
6af0bf9c | 1859 | /* Check ASID, virtual page number & size */ |
f2e9ebef | 1860 | if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) { |
6af0bf9c | 1861 | /* TLB match */ |
9c2149c8 | 1862 | env->CP0_Index = i; |
6af0bf9c FB |
1863 | break; |
1864 | } | |
1865 | } | |
ead9360e | 1866 | if (i == env->tlb->nb_tlb) { |
814b9a47 | 1867 | /* No match. Discard any shadow entries, if any of them match. */ |
ead9360e | 1868 | for (i = env->tlb->nb_tlb; i < env->tlb->tlb_in_use; i++) { |
6958549d AJ |
1869 | tlb = &env->tlb->mmu.r4k.tlb[i]; |
1870 | /* 1k pages are not supported. */ | |
1871 | mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1); | |
1872 | tag = env->CP0_EntryHi & ~mask; | |
1873 | VPN = tlb->VPN & ~mask; | |
1874 | /* Check ASID, virtual page number & size */ | |
1875 | if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) { | |
29929e34 | 1876 | r4k_mips_tlb_flush_extra (env, i); |
6958549d AJ |
1877 | break; |
1878 | } | |
1879 | } | |
814b9a47 | 1880 | |
9c2149c8 | 1881 | env->CP0_Index |= 0x80000000; |
6af0bf9c FB |
1882 | } |
1883 | } | |
1884 | ||
895c2d04 | 1885 | void r4k_helper_tlbr(CPUMIPSState *env) |
6af0bf9c | 1886 | { |
c227f099 | 1887 | r4k_tlb_t *tlb; |
09c56b84 | 1888 | uint8_t ASID; |
bbc0d79c | 1889 | int idx; |
6af0bf9c | 1890 | |
09c56b84 | 1891 | ASID = env->CP0_EntryHi & 0xFF; |
bbc0d79c AJ |
1892 | idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb; |
1893 | tlb = &env->tlb->mmu.r4k.tlb[idx]; | |
4ad40f36 FB |
1894 | |
1895 | /* If this will change the current ASID, flush qemu's TLB. */ | |
814b9a47 TS |
1896 | if (ASID != tlb->ASID) |
1897 | cpu_mips_tlb_flush (env, 1); | |
1898 | ||
ead9360e | 1899 | r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb); |
4ad40f36 | 1900 | |
6af0bf9c | 1901 | env->CP0_EntryHi = tlb->VPN | tlb->ASID; |
3b1c8be4 | 1902 | env->CP0_PageMask = tlb->PageMask; |
7495fd0f TS |
1903 | env->CP0_EntryLo0 = tlb->G | (tlb->V0 << 1) | (tlb->D0 << 2) | |
1904 | (tlb->C0 << 3) | (tlb->PFN[0] >> 6); | |
1905 | env->CP0_EntryLo1 = tlb->G | (tlb->V1 << 1) | (tlb->D1 << 2) | | |
1906 | (tlb->C1 << 3) | (tlb->PFN[1] >> 6); | |
6af0bf9c | 1907 | } |
6af0bf9c | 1908 | |
895c2d04 | 1909 | void helper_tlbwi(CPUMIPSState *env) |
a7812ae4 | 1910 | { |
895c2d04 | 1911 | env->tlb->helper_tlbwi(env); |
a7812ae4 PB |
1912 | } |
1913 | ||
895c2d04 | 1914 | void helper_tlbwr(CPUMIPSState *env) |
a7812ae4 | 1915 | { |
895c2d04 | 1916 | env->tlb->helper_tlbwr(env); |
a7812ae4 PB |
1917 | } |
1918 | ||
895c2d04 | 1919 | void helper_tlbp(CPUMIPSState *env) |
a7812ae4 | 1920 | { |
895c2d04 | 1921 | env->tlb->helper_tlbp(env); |
a7812ae4 PB |
1922 | } |
1923 | ||
895c2d04 | 1924 | void helper_tlbr(CPUMIPSState *env) |
a7812ae4 | 1925 | { |
895c2d04 | 1926 | env->tlb->helper_tlbr(env); |
a7812ae4 PB |
1927 | } |
1928 | ||
2b0233ab | 1929 | /* Specials */ |
895c2d04 | 1930 | target_ulong helper_di(CPUMIPSState *env) |
2b0233ab | 1931 | { |
2796188e TS |
1932 | target_ulong t0 = env->CP0_Status; |
1933 | ||
be24bb4f | 1934 | env->CP0_Status = t0 & ~(1 << CP0St_IE); |
be24bb4f | 1935 | return t0; |
2b0233ab TS |
1936 | } |
1937 | ||
895c2d04 | 1938 | target_ulong helper_ei(CPUMIPSState *env) |
2b0233ab | 1939 | { |
2796188e TS |
1940 | target_ulong t0 = env->CP0_Status; |
1941 | ||
be24bb4f | 1942 | env->CP0_Status = t0 | (1 << CP0St_IE); |
be24bb4f | 1943 | return t0; |
2b0233ab TS |
1944 | } |
1945 | ||
895c2d04 | 1946 | static void debug_pre_eret(CPUMIPSState *env) |
6af0bf9c | 1947 | { |
8fec2b8c | 1948 | if (qemu_loglevel_mask(CPU_LOG_EXEC)) { |
93fcfe39 AL |
1949 | qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, |
1950 | env->active_tc.PC, env->CP0_EPC); | |
1951 | if (env->CP0_Status & (1 << CP0St_ERL)) | |
1952 | qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC); | |
1953 | if (env->hflags & MIPS_HFLAG_DM) | |
1954 | qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC); | |
1955 | qemu_log("\n"); | |
1956 | } | |
f41c52f1 TS |
1957 | } |
1958 | ||
895c2d04 | 1959 | static void debug_post_eret(CPUMIPSState *env) |
f41c52f1 | 1960 | { |
8fec2b8c | 1961 | if (qemu_loglevel_mask(CPU_LOG_EXEC)) { |
93fcfe39 AL |
1962 | qemu_log(" => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, |
1963 | env->active_tc.PC, env->CP0_EPC); | |
1964 | if (env->CP0_Status & (1 << CP0St_ERL)) | |
1965 | qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC); | |
1966 | if (env->hflags & MIPS_HFLAG_DM) | |
1967 | qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC); | |
1968 | switch (env->hflags & MIPS_HFLAG_KSU) { | |
1969 | case MIPS_HFLAG_UM: qemu_log(", UM\n"); break; | |
1970 | case MIPS_HFLAG_SM: qemu_log(", SM\n"); break; | |
1971 | case MIPS_HFLAG_KM: qemu_log("\n"); break; | |
1972 | default: cpu_abort(env, "Invalid MMU mode!\n"); break; | |
1973 | } | |
623a930e | 1974 | } |
6af0bf9c FB |
1975 | } |
1976 | ||
895c2d04 | 1977 | static void set_pc(CPUMIPSState *env, target_ulong error_pc) |
32188a03 NF |
1978 | { |
1979 | env->active_tc.PC = error_pc & ~(target_ulong)1; | |
1980 | if (error_pc & 1) { | |
1981 | env->hflags |= MIPS_HFLAG_M16; | |
1982 | } else { | |
1983 | env->hflags &= ~(MIPS_HFLAG_M16); | |
1984 | } | |
1985 | } | |
1986 | ||
895c2d04 | 1987 | void helper_eret(CPUMIPSState *env) |
2b0233ab | 1988 | { |
895c2d04 | 1989 | debug_pre_eret(env); |
2b0233ab | 1990 | if (env->CP0_Status & (1 << CP0St_ERL)) { |
895c2d04 | 1991 | set_pc(env, env->CP0_ErrorEPC); |
2b0233ab TS |
1992 | env->CP0_Status &= ~(1 << CP0St_ERL); |
1993 | } else { | |
895c2d04 | 1994 | set_pc(env, env->CP0_EPC); |
2b0233ab TS |
1995 | env->CP0_Status &= ~(1 << CP0St_EXL); |
1996 | } | |
1997 | compute_hflags(env); | |
895c2d04 | 1998 | debug_post_eret(env); |
5499b6ff | 1999 | env->lladdr = 1; |
2b0233ab TS |
2000 | } |
2001 | ||
895c2d04 | 2002 | void helper_deret(CPUMIPSState *env) |
2b0233ab | 2003 | { |
895c2d04 BS |
2004 | debug_pre_eret(env); |
2005 | set_pc(env, env->CP0_DEPC); | |
32188a03 | 2006 | |
2b0233ab TS |
2007 | env->hflags &= MIPS_HFLAG_DM; |
2008 | compute_hflags(env); | |
895c2d04 | 2009 | debug_post_eret(env); |
5499b6ff | 2010 | env->lladdr = 1; |
2b0233ab | 2011 | } |
0eaef5aa | 2012 | #endif /* !CONFIG_USER_ONLY */ |
2b0233ab | 2013 | |
895c2d04 | 2014 | target_ulong helper_rdhwr_cpunum(CPUMIPSState *env) |
2b0233ab TS |
2015 | { |
2016 | if ((env->hflags & MIPS_HFLAG_CP0) || | |
2017 | (env->CP0_HWREna & (1 << 0))) | |
2796188e | 2018 | return env->CP0_EBase & 0x3ff; |
2b0233ab | 2019 | else |
895c2d04 | 2020 | helper_raise_exception(env, EXCP_RI); |
be24bb4f | 2021 | |
2796188e | 2022 | return 0; |
2b0233ab TS |
2023 | } |
2024 | ||
895c2d04 | 2025 | target_ulong helper_rdhwr_synci_step(CPUMIPSState *env) |
2b0233ab TS |
2026 | { |
2027 | if ((env->hflags & MIPS_HFLAG_CP0) || | |
2028 | (env->CP0_HWREna & (1 << 1))) | |
2796188e | 2029 | return env->SYNCI_Step; |
2b0233ab | 2030 | else |
895c2d04 | 2031 | helper_raise_exception(env, EXCP_RI); |
be24bb4f | 2032 | |
2796188e | 2033 | return 0; |
2b0233ab TS |
2034 | } |
2035 | ||
895c2d04 | 2036 | target_ulong helper_rdhwr_cc(CPUMIPSState *env) |
2b0233ab TS |
2037 | { |
2038 | if ((env->hflags & MIPS_HFLAG_CP0) || | |
2039 | (env->CP0_HWREna & (1 << 2))) | |
2796188e | 2040 | return env->CP0_Count; |
2b0233ab | 2041 | else |
895c2d04 | 2042 | helper_raise_exception(env, EXCP_RI); |
be24bb4f | 2043 | |
2796188e | 2044 | return 0; |
2b0233ab TS |
2045 | } |
2046 | ||
895c2d04 | 2047 | target_ulong helper_rdhwr_ccres(CPUMIPSState *env) |
2b0233ab TS |
2048 | { |
2049 | if ((env->hflags & MIPS_HFLAG_CP0) || | |
2050 | (env->CP0_HWREna & (1 << 3))) | |
2796188e | 2051 | return env->CCRes; |
2b0233ab | 2052 | else |
895c2d04 | 2053 | helper_raise_exception(env, EXCP_RI); |
be24bb4f | 2054 | |
2796188e | 2055 | return 0; |
2b0233ab TS |
2056 | } |
2057 | ||
895c2d04 | 2058 | void helper_pmon(CPUMIPSState *env, int function) |
6af0bf9c FB |
2059 | { |
2060 | function /= 2; | |
2061 | switch (function) { | |
2062 | case 2: /* TODO: char inbyte(int waitflag); */ | |
b5dc7732 TS |
2063 | if (env->active_tc.gpr[4] == 0) |
2064 | env->active_tc.gpr[2] = -1; | |
6af0bf9c FB |
2065 | /* Fall through */ |
2066 | case 11: /* TODO: char inbyte (void); */ | |
b5dc7732 | 2067 | env->active_tc.gpr[2] = -1; |
6af0bf9c FB |
2068 | break; |
2069 | case 3: | |
2070 | case 12: | |
b5dc7732 | 2071 | printf("%c", (char)(env->active_tc.gpr[4] & 0xFF)); |
6af0bf9c FB |
2072 | break; |
2073 | case 17: | |
2074 | break; | |
2075 | case 158: | |
2076 | { | |
b69e48a8 | 2077 | unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4]; |
6af0bf9c FB |
2078 | printf("%s", fmt); |
2079 | } | |
2080 | break; | |
2081 | } | |
2082 | } | |
e37e863f | 2083 | |
895c2d04 | 2084 | void helper_wait(CPUMIPSState *env) |
08ba7963 TS |
2085 | { |
2086 | env->halted = 1; | |
f249412c | 2087 | cpu_reset_interrupt(env, CPU_INTERRUPT_WAKE); |
895c2d04 | 2088 | helper_raise_exception(env, EXCP_HLT); |
08ba7963 TS |
2089 | } |
2090 | ||
5fafdf24 | 2091 | #if !defined(CONFIG_USER_ONLY) |
e37e863f | 2092 | |
895c2d04 BS |
2093 | static void QEMU_NORETURN do_unaligned_access(CPUMIPSState *env, |
2094 | target_ulong addr, int is_write, | |
20503968 | 2095 | int is_user, uintptr_t retaddr); |
4ad40f36 | 2096 | |
e37e863f | 2097 | #define MMUSUFFIX _mmu |
4ad40f36 | 2098 | #define ALIGNED_ONLY |
e37e863f FB |
2099 | |
2100 | #define SHIFT 0 | |
2101 | #include "softmmu_template.h" | |
2102 | ||
2103 | #define SHIFT 1 | |
2104 | #include "softmmu_template.h" | |
2105 | ||
2106 | #define SHIFT 2 | |
2107 | #include "softmmu_template.h" | |
2108 | ||
2109 | #define SHIFT 3 | |
2110 | #include "softmmu_template.h" | |
2111 | ||
895c2d04 BS |
2112 | static void do_unaligned_access(CPUMIPSState *env, target_ulong addr, |
2113 | int is_write, int is_user, uintptr_t retaddr) | |
4ad40f36 FB |
2114 | { |
2115 | env->CP0_BadVAddr = addr; | |
5f7319cd | 2116 | do_raise_exception(env, (is_write == 1) ? EXCP_AdES : EXCP_AdEL, retaddr); |
4ad40f36 FB |
2117 | } |
2118 | ||
895c2d04 | 2119 | void tlb_fill(CPUMIPSState *env, target_ulong addr, int is_write, int mmu_idx, |
20503968 | 2120 | uintptr_t retaddr) |
e37e863f | 2121 | { |
e37e863f FB |
2122 | int ret; |
2123 | ||
97b348e7 | 2124 | ret = cpu_mips_handle_mmu_fault(env, addr, is_write, mmu_idx); |
e37e863f | 2125 | if (ret) { |
5f7319cd AJ |
2126 | do_raise_exception_err(env, env->exception_index, |
2127 | env->error_code, retaddr); | |
e37e863f | 2128 | } |
e37e863f FB |
2129 | } |
2130 | ||
a8170e5e | 2131 | void cpu_unassigned_access(CPUMIPSState *env, hwaddr addr, |
b14ef7c9 | 2132 | int is_write, int is_exec, int unused, int size) |
647de6ca TS |
2133 | { |
2134 | if (is_exec) | |
895c2d04 | 2135 | helper_raise_exception(env, EXCP_IBE); |
647de6ca | 2136 | else |
895c2d04 | 2137 | helper_raise_exception(env, EXCP_DBE); |
647de6ca | 2138 | } |
f1aa6320 | 2139 | #endif /* !CONFIG_USER_ONLY */ |
fd4a04eb TS |
2140 | |
2141 | /* Complex FPU operations which may need stack space. */ | |
2142 | ||
f090c9d4 PB |
2143 | #define FLOAT_TWO32 make_float32(1 << 30) |
2144 | #define FLOAT_TWO64 make_float64(1ULL << 62) | |
05993cd0 AJ |
2145 | #define FP_TO_INT32_OVERFLOW 0x7fffffff |
2146 | #define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL | |
8dfdb87c | 2147 | |
fd4a04eb | 2148 | /* convert MIPS rounding mode in FCR31 to IEEE library */ |
6f4fc367 | 2149 | static unsigned int ieee_rm[] = { |
fd4a04eb TS |
2150 | float_round_nearest_even, |
2151 | float_round_to_zero, | |
2152 | float_round_up, | |
2153 | float_round_down | |
2154 | }; | |
2155 | ||
2156 | #define RESTORE_ROUNDING_MODE \ | |
f01be154 | 2157 | set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], &env->active_fpu.fp_status) |
fd4a04eb | 2158 | |
41e0c701 AJ |
2159 | #define RESTORE_FLUSH_MODE \ |
2160 | set_flush_to_zero((env->active_fpu.fcr31 & (1 << 24)) != 0, &env->active_fpu.fp_status); | |
2161 | ||
895c2d04 | 2162 | target_ulong helper_cfc1(CPUMIPSState *env, uint32_t reg) |
fd4a04eb | 2163 | { |
d9bea114 | 2164 | target_ulong arg1; |
6c5c1e20 | 2165 | |
ead9360e TS |
2166 | switch (reg) { |
2167 | case 0: | |
d9bea114 | 2168 | arg1 = (int32_t)env->active_fpu.fcr0; |
ead9360e TS |
2169 | break; |
2170 | case 25: | |
d9bea114 | 2171 | arg1 = ((env->active_fpu.fcr31 >> 24) & 0xfe) | ((env->active_fpu.fcr31 >> 23) & 0x1); |
ead9360e TS |
2172 | break; |
2173 | case 26: | |
d9bea114 | 2174 | arg1 = env->active_fpu.fcr31 & 0x0003f07c; |
ead9360e TS |
2175 | break; |
2176 | case 28: | |
d9bea114 | 2177 | arg1 = (env->active_fpu.fcr31 & 0x00000f83) | ((env->active_fpu.fcr31 >> 22) & 0x4); |
ead9360e TS |
2178 | break; |
2179 | default: | |
d9bea114 | 2180 | arg1 = (int32_t)env->active_fpu.fcr31; |
ead9360e TS |
2181 | break; |
2182 | } | |
be24bb4f | 2183 | |
d9bea114 | 2184 | return arg1; |
ead9360e TS |
2185 | } |
2186 | ||
895c2d04 | 2187 | void helper_ctc1(CPUMIPSState *env, target_ulong arg1, uint32_t reg) |
ead9360e TS |
2188 | { |
2189 | switch(reg) { | |
fd4a04eb | 2190 | case 25: |
d9bea114 | 2191 | if (arg1 & 0xffffff00) |
fd4a04eb | 2192 | return; |
d9bea114 AJ |
2193 | env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0x017fffff) | ((arg1 & 0xfe) << 24) | |
2194 | ((arg1 & 0x1) << 23); | |
fd4a04eb TS |
2195 | break; |
2196 | case 26: | |
d9bea114 | 2197 | if (arg1 & 0x007c0000) |
fd4a04eb | 2198 | return; |
d9bea114 | 2199 | env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfffc0f83) | (arg1 & 0x0003f07c); |
fd4a04eb TS |
2200 | break; |
2201 | case 28: | |
d9bea114 | 2202 | if (arg1 & 0x007c0000) |
fd4a04eb | 2203 | return; |
d9bea114 AJ |
2204 | env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfefff07c) | (arg1 & 0x00000f83) | |
2205 | ((arg1 & 0x4) << 22); | |
fd4a04eb TS |
2206 | break; |
2207 | case 31: | |
d9bea114 | 2208 | if (arg1 & 0x007c0000) |
fd4a04eb | 2209 | return; |
d9bea114 | 2210 | env->active_fpu.fcr31 = arg1; |
fd4a04eb TS |
2211 | break; |
2212 | default: | |
2213 | return; | |
2214 | } | |
2215 | /* set rounding mode */ | |
2216 | RESTORE_ROUNDING_MODE; | |
41e0c701 AJ |
2217 | /* set flush-to-zero mode */ |
2218 | RESTORE_FLUSH_MODE; | |
f01be154 TS |
2219 | set_float_exception_flags(0, &env->active_fpu.fp_status); |
2220 | if ((GET_FP_ENABLE(env->active_fpu.fcr31) | 0x20) & GET_FP_CAUSE(env->active_fpu.fcr31)) | |
5f7319cd | 2221 | do_raise_exception(env, EXCP_FPE, GETPC()); |
fd4a04eb TS |
2222 | } |
2223 | ||
353ebb7a | 2224 | static inline int ieee_ex_to_mips(int xcpt) |
fd4a04eb | 2225 | { |
353ebb7a AJ |
2226 | int ret = 0; |
2227 | if (xcpt) { | |
2228 | if (xcpt & float_flag_invalid) { | |
2229 | ret |= FP_INVALID; | |
2230 | } | |
2231 | if (xcpt & float_flag_overflow) { | |
2232 | ret |= FP_OVERFLOW; | |
2233 | } | |
2234 | if (xcpt & float_flag_underflow) { | |
2235 | ret |= FP_UNDERFLOW; | |
2236 | } | |
2237 | if (xcpt & float_flag_divbyzero) { | |
2238 | ret |= FP_DIV0; | |
2239 | } | |
2240 | if (xcpt & float_flag_inexact) { | |
2241 | ret |= FP_INEXACT; | |
2242 | } | |
2243 | } | |
2244 | return ret; | |
fd4a04eb TS |
2245 | } |
2246 | ||
5f7319cd | 2247 | static inline void update_fcr31(CPUMIPSState *env, uintptr_t pc) |
fd4a04eb | 2248 | { |
f01be154 | 2249 | int tmp = ieee_ex_to_mips(get_float_exception_flags(&env->active_fpu.fp_status)); |
fd4a04eb | 2250 | |
f01be154 | 2251 | SET_FP_CAUSE(env->active_fpu.fcr31, tmp); |
4a587b2c AJ |
2252 | |
2253 | if (tmp) { | |
2254 | set_float_exception_flags(0, &env->active_fpu.fp_status); | |
2255 | ||
2256 | if (GET_FP_ENABLE(env->active_fpu.fcr31) & tmp) { | |
5f7319cd | 2257 | do_raise_exception(env, EXCP_FPE, pc); |
4a587b2c AJ |
2258 | } else { |
2259 | UPDATE_FP_FLAGS(env->active_fpu.fcr31, tmp); | |
2260 | } | |
2261 | } | |
fd4a04eb TS |
2262 | } |
2263 | ||
a16336e4 TS |
2264 | /* Float support. |
2265 | Single precition routines have a "s" suffix, double precision a | |
2266 | "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps", | |
2267 | paired single lower "pl", paired single upper "pu". */ | |
2268 | ||
a16336e4 | 2269 | /* unary operations, modifying fp status */ |
895c2d04 | 2270 | uint64_t helper_float_sqrt_d(CPUMIPSState *env, uint64_t fdt0) |
b6d96bed | 2271 | { |
5dbe90bb | 2272 | fdt0 = float64_sqrt(fdt0, &env->active_fpu.fp_status); |
5f7319cd | 2273 | update_fcr31(env, GETPC()); |
5dbe90bb | 2274 | return fdt0; |
b6d96bed TS |
2275 | } |
2276 | ||
895c2d04 | 2277 | uint32_t helper_float_sqrt_s(CPUMIPSState *env, uint32_t fst0) |
b6d96bed | 2278 | { |
5dbe90bb | 2279 | fst0 = float32_sqrt(fst0, &env->active_fpu.fp_status); |
5f7319cd | 2280 | update_fcr31(env, GETPC()); |
5dbe90bb | 2281 | return fst0; |
b6d96bed | 2282 | } |
a16336e4 | 2283 | |
895c2d04 | 2284 | uint64_t helper_float_cvtd_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2285 | { |
b6d96bed TS |
2286 | uint64_t fdt2; |
2287 | ||
f01be154 | 2288 | fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status); |
5f7319cd | 2289 | update_fcr31(env, GETPC()); |
b6d96bed | 2290 | return fdt2; |
fd4a04eb | 2291 | } |
b6d96bed | 2292 | |
895c2d04 | 2293 | uint64_t helper_float_cvtd_w(CPUMIPSState *env, uint32_t wt0) |
fd4a04eb | 2294 | { |
b6d96bed TS |
2295 | uint64_t fdt2; |
2296 | ||
f01be154 | 2297 | fdt2 = int32_to_float64(wt0, &env->active_fpu.fp_status); |
5f7319cd | 2298 | update_fcr31(env, GETPC()); |
b6d96bed | 2299 | return fdt2; |
fd4a04eb | 2300 | } |
b6d96bed | 2301 | |
895c2d04 | 2302 | uint64_t helper_float_cvtd_l(CPUMIPSState *env, uint64_t dt0) |
fd4a04eb | 2303 | { |
b6d96bed TS |
2304 | uint64_t fdt2; |
2305 | ||
f01be154 | 2306 | fdt2 = int64_to_float64(dt0, &env->active_fpu.fp_status); |
5f7319cd | 2307 | update_fcr31(env, GETPC()); |
b6d96bed | 2308 | return fdt2; |
fd4a04eb | 2309 | } |
b6d96bed | 2310 | |
895c2d04 | 2311 | uint64_t helper_float_cvtl_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2312 | { |
b6d96bed TS |
2313 | uint64_t dt2; |
2314 | ||
f01be154 | 2315 | dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2316 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2317 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2318 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2319 | } |
5f7319cd | 2320 | update_fcr31(env, GETPC()); |
b6d96bed | 2321 | return dt2; |
fd4a04eb | 2322 | } |
b6d96bed | 2323 | |
895c2d04 | 2324 | uint64_t helper_float_cvtl_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2325 | { |
b6d96bed TS |
2326 | uint64_t dt2; |
2327 | ||
f01be154 | 2328 | dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2329 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2330 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2331 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2332 | } |
5f7319cd | 2333 | update_fcr31(env, GETPC()); |
b6d96bed | 2334 | return dt2; |
fd4a04eb TS |
2335 | } |
2336 | ||
895c2d04 | 2337 | uint64_t helper_float_cvtps_pw(CPUMIPSState *env, uint64_t dt0) |
fd4a04eb | 2338 | { |
b6d96bed TS |
2339 | uint32_t fst2; |
2340 | uint32_t fsth2; | |
2341 | ||
f01be154 TS |
2342 | fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); |
2343 | fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status); | |
5f7319cd | 2344 | update_fcr31(env, GETPC()); |
b6d96bed | 2345 | return ((uint64_t)fsth2 << 32) | fst2; |
fd4a04eb | 2346 | } |
b6d96bed | 2347 | |
895c2d04 | 2348 | uint64_t helper_float_cvtpw_ps(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2349 | { |
b6d96bed TS |
2350 | uint32_t wt2; |
2351 | uint32_t wth2; | |
5dbe90bb | 2352 | int excp, excph; |
b6d96bed | 2353 | |
f01be154 | 2354 | wt2 = float32_to_int32(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); |
5dbe90bb AJ |
2355 | excp = get_float_exception_flags(&env->active_fpu.fp_status); |
2356 | if (excp & (float_flag_overflow | float_flag_invalid)) { | |
05993cd0 | 2357 | wt2 = FP_TO_INT32_OVERFLOW; |
5dbe90bb AJ |
2358 | } |
2359 | ||
2360 | set_float_exception_flags(0, &env->active_fpu.fp_status); | |
2361 | wth2 = float32_to_int32(fdt0 >> 32, &env->active_fpu.fp_status); | |
2362 | excph = get_float_exception_flags(&env->active_fpu.fp_status); | |
2363 | if (excph & (float_flag_overflow | float_flag_invalid)) { | |
05993cd0 | 2364 | wth2 = FP_TO_INT32_OVERFLOW; |
b6d96bed | 2365 | } |
5dbe90bb AJ |
2366 | |
2367 | set_float_exception_flags(excp | excph, &env->active_fpu.fp_status); | |
5f7319cd | 2368 | update_fcr31(env, GETPC()); |
5dbe90bb | 2369 | |
b6d96bed | 2370 | return ((uint64_t)wth2 << 32) | wt2; |
fd4a04eb | 2371 | } |
b6d96bed | 2372 | |
895c2d04 | 2373 | uint32_t helper_float_cvts_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2374 | { |
b6d96bed TS |
2375 | uint32_t fst2; |
2376 | ||
f01be154 | 2377 | fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status); |
5f7319cd | 2378 | update_fcr31(env, GETPC()); |
b6d96bed | 2379 | return fst2; |
fd4a04eb | 2380 | } |
b6d96bed | 2381 | |
895c2d04 | 2382 | uint32_t helper_float_cvts_w(CPUMIPSState *env, uint32_t wt0) |
fd4a04eb | 2383 | { |
b6d96bed TS |
2384 | uint32_t fst2; |
2385 | ||
f01be154 | 2386 | fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status); |
5f7319cd | 2387 | update_fcr31(env, GETPC()); |
b6d96bed | 2388 | return fst2; |
fd4a04eb | 2389 | } |
b6d96bed | 2390 | |
895c2d04 | 2391 | uint32_t helper_float_cvts_l(CPUMIPSState *env, uint64_t dt0) |
fd4a04eb | 2392 | { |
b6d96bed TS |
2393 | uint32_t fst2; |
2394 | ||
f01be154 | 2395 | fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status); |
5f7319cd | 2396 | update_fcr31(env, GETPC()); |
b6d96bed | 2397 | return fst2; |
fd4a04eb | 2398 | } |
b6d96bed | 2399 | |
895c2d04 | 2400 | uint32_t helper_float_cvts_pl(CPUMIPSState *env, uint32_t wt0) |
fd4a04eb | 2401 | { |
b6d96bed TS |
2402 | uint32_t wt2; |
2403 | ||
b6d96bed | 2404 | wt2 = wt0; |
5f7319cd | 2405 | update_fcr31(env, GETPC()); |
b6d96bed | 2406 | return wt2; |
fd4a04eb | 2407 | } |
b6d96bed | 2408 | |
895c2d04 | 2409 | uint32_t helper_float_cvts_pu(CPUMIPSState *env, uint32_t wth0) |
fd4a04eb | 2410 | { |
b6d96bed TS |
2411 | uint32_t wt2; |
2412 | ||
b6d96bed | 2413 | wt2 = wth0; |
5f7319cd | 2414 | update_fcr31(env, GETPC()); |
b6d96bed | 2415 | return wt2; |
fd4a04eb | 2416 | } |
b6d96bed | 2417 | |
895c2d04 | 2418 | uint32_t helper_float_cvtw_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2419 | { |
b6d96bed TS |
2420 | uint32_t wt2; |
2421 | ||
f01be154 | 2422 | wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); |
5f7319cd | 2423 | update_fcr31(env, GETPC()); |
4cc2e5f9 AJ |
2424 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2425 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2426 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2427 | } |
b6d96bed | 2428 | return wt2; |
fd4a04eb | 2429 | } |
b6d96bed | 2430 | |
895c2d04 | 2431 | uint32_t helper_float_cvtw_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2432 | { |
b6d96bed TS |
2433 | uint32_t wt2; |
2434 | ||
f01be154 | 2435 | wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2436 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2437 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2438 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2439 | } |
5f7319cd | 2440 | update_fcr31(env, GETPC()); |
b6d96bed | 2441 | return wt2; |
fd4a04eb TS |
2442 | } |
2443 | ||
895c2d04 | 2444 | uint64_t helper_float_roundl_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2445 | { |
b6d96bed TS |
2446 | uint64_t dt2; |
2447 | ||
f01be154 TS |
2448 | set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status); |
2449 | dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2450 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2451 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2452 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2453 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2454 | } |
5f7319cd | 2455 | update_fcr31(env, GETPC()); |
b6d96bed | 2456 | return dt2; |
fd4a04eb | 2457 | } |
b6d96bed | 2458 | |
895c2d04 | 2459 | uint64_t helper_float_roundl_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2460 | { |
b6d96bed TS |
2461 | uint64_t dt2; |
2462 | ||
f01be154 TS |
2463 | set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status); |
2464 | dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2465 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2466 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2467 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2468 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2469 | } |
5f7319cd | 2470 | update_fcr31(env, GETPC()); |
b6d96bed | 2471 | return dt2; |
fd4a04eb | 2472 | } |
b6d96bed | 2473 | |
895c2d04 | 2474 | uint32_t helper_float_roundw_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2475 | { |
b6d96bed TS |
2476 | uint32_t wt2; |
2477 | ||
f01be154 TS |
2478 | set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status); |
2479 | wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2480 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2481 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2482 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2483 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2484 | } |
5f7319cd | 2485 | update_fcr31(env, GETPC()); |
b6d96bed | 2486 | return wt2; |
fd4a04eb | 2487 | } |
b6d96bed | 2488 | |
895c2d04 | 2489 | uint32_t helper_float_roundw_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2490 | { |
b6d96bed TS |
2491 | uint32_t wt2; |
2492 | ||
f01be154 TS |
2493 | set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status); |
2494 | wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2495 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2496 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2497 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2498 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2499 | } |
5f7319cd | 2500 | update_fcr31(env, GETPC()); |
b6d96bed | 2501 | return wt2; |
fd4a04eb TS |
2502 | } |
2503 | ||
895c2d04 | 2504 | uint64_t helper_float_truncl_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2505 | { |
b6d96bed TS |
2506 | uint64_t dt2; |
2507 | ||
f01be154 | 2508 | dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2509 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2510 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2511 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2512 | } |
5f7319cd | 2513 | update_fcr31(env, GETPC()); |
b6d96bed | 2514 | return dt2; |
fd4a04eb | 2515 | } |
b6d96bed | 2516 | |
895c2d04 | 2517 | uint64_t helper_float_truncl_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2518 | { |
b6d96bed TS |
2519 | uint64_t dt2; |
2520 | ||
f01be154 | 2521 | dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2522 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2523 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2524 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2525 | } |
5f7319cd | 2526 | update_fcr31(env, GETPC()); |
b6d96bed | 2527 | return dt2; |
fd4a04eb | 2528 | } |
b6d96bed | 2529 | |
895c2d04 | 2530 | uint32_t helper_float_truncw_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2531 | { |
b6d96bed TS |
2532 | uint32_t wt2; |
2533 | ||
f01be154 | 2534 | wt2 = float64_to_int32_round_to_zero(fdt0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2535 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2536 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2537 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2538 | } |
5f7319cd | 2539 | update_fcr31(env, GETPC()); |
b6d96bed | 2540 | return wt2; |
fd4a04eb | 2541 | } |
b6d96bed | 2542 | |
895c2d04 | 2543 | uint32_t helper_float_truncw_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2544 | { |
b6d96bed TS |
2545 | uint32_t wt2; |
2546 | ||
f01be154 | 2547 | wt2 = float32_to_int32_round_to_zero(fst0, &env->active_fpu.fp_status); |
4cc2e5f9 AJ |
2548 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2549 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2550 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2551 | } |
5f7319cd | 2552 | update_fcr31(env, GETPC()); |
b6d96bed | 2553 | return wt2; |
fd4a04eb TS |
2554 | } |
2555 | ||
895c2d04 | 2556 | uint64_t helper_float_ceill_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2557 | { |
b6d96bed TS |
2558 | uint64_t dt2; |
2559 | ||
f01be154 TS |
2560 | set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status); |
2561 | dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2562 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2563 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2564 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2565 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2566 | } |
5f7319cd | 2567 | update_fcr31(env, GETPC()); |
b6d96bed | 2568 | return dt2; |
fd4a04eb | 2569 | } |
b6d96bed | 2570 | |
895c2d04 | 2571 | uint64_t helper_float_ceill_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2572 | { |
b6d96bed TS |
2573 | uint64_t dt2; |
2574 | ||
f01be154 TS |
2575 | set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status); |
2576 | dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2577 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2578 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2579 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2580 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2581 | } |
5f7319cd | 2582 | update_fcr31(env, GETPC()); |
b6d96bed | 2583 | return dt2; |
fd4a04eb | 2584 | } |
b6d96bed | 2585 | |
895c2d04 | 2586 | uint32_t helper_float_ceilw_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2587 | { |
b6d96bed TS |
2588 | uint32_t wt2; |
2589 | ||
f01be154 TS |
2590 | set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status); |
2591 | wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2592 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2593 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2594 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2595 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2596 | } |
5f7319cd | 2597 | update_fcr31(env, GETPC()); |
b6d96bed | 2598 | return wt2; |
fd4a04eb | 2599 | } |
b6d96bed | 2600 | |
895c2d04 | 2601 | uint32_t helper_float_ceilw_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2602 | { |
b6d96bed TS |
2603 | uint32_t wt2; |
2604 | ||
f01be154 TS |
2605 | set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status); |
2606 | wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2607 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2608 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2609 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2610 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2611 | } |
5f7319cd | 2612 | update_fcr31(env, GETPC()); |
b6d96bed | 2613 | return wt2; |
fd4a04eb TS |
2614 | } |
2615 | ||
895c2d04 | 2616 | uint64_t helper_float_floorl_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2617 | { |
b6d96bed TS |
2618 | uint64_t dt2; |
2619 | ||
f01be154 TS |
2620 | set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status); |
2621 | dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2622 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2623 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2624 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2625 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2626 | } |
5f7319cd | 2627 | update_fcr31(env, GETPC()); |
b6d96bed | 2628 | return dt2; |
fd4a04eb | 2629 | } |
b6d96bed | 2630 | |
895c2d04 | 2631 | uint64_t helper_float_floorl_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2632 | { |
b6d96bed TS |
2633 | uint64_t dt2; |
2634 | ||
f01be154 TS |
2635 | set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status); |
2636 | dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2637 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2638 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2639 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2640 | dt2 = FP_TO_INT64_OVERFLOW; |
4cc2e5f9 | 2641 | } |
5f7319cd | 2642 | update_fcr31(env, GETPC()); |
b6d96bed | 2643 | return dt2; |
fd4a04eb | 2644 | } |
b6d96bed | 2645 | |
895c2d04 | 2646 | uint32_t helper_float_floorw_d(CPUMIPSState *env, uint64_t fdt0) |
fd4a04eb | 2647 | { |
b6d96bed TS |
2648 | uint32_t wt2; |
2649 | ||
f01be154 TS |
2650 | set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status); |
2651 | wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status); | |
fd4a04eb | 2652 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2653 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2654 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2655 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2656 | } |
5f7319cd | 2657 | update_fcr31(env, GETPC()); |
b6d96bed | 2658 | return wt2; |
fd4a04eb | 2659 | } |
b6d96bed | 2660 | |
895c2d04 | 2661 | uint32_t helper_float_floorw_s(CPUMIPSState *env, uint32_t fst0) |
fd4a04eb | 2662 | { |
b6d96bed TS |
2663 | uint32_t wt2; |
2664 | ||
f01be154 TS |
2665 | set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status); |
2666 | wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); | |
fd4a04eb | 2667 | RESTORE_ROUNDING_MODE; |
4cc2e5f9 AJ |
2668 | if (get_float_exception_flags(&env->active_fpu.fp_status) |
2669 | & (float_flag_invalid | float_flag_overflow)) { | |
05993cd0 | 2670 | wt2 = FP_TO_INT32_OVERFLOW; |
4cc2e5f9 | 2671 | } |
5f7319cd | 2672 | update_fcr31(env, GETPC()); |
b6d96bed | 2673 | return wt2; |
fd4a04eb TS |
2674 | } |
2675 | ||
a16336e4 | 2676 | /* unary operations, not modifying fp status */ |
b6d96bed | 2677 | #define FLOAT_UNOP(name) \ |
c01fccd2 | 2678 | uint64_t helper_float_ ## name ## _d(uint64_t fdt0) \ |
b6d96bed TS |
2679 | { \ |
2680 | return float64_ ## name(fdt0); \ | |
2681 | } \ | |
c01fccd2 | 2682 | uint32_t helper_float_ ## name ## _s(uint32_t fst0) \ |
b6d96bed TS |
2683 | { \ |
2684 | return float32_ ## name(fst0); \ | |
2685 | } \ | |
c01fccd2 | 2686 | uint64_t helper_float_ ## name ## _ps(uint64_t fdt0) \ |
b6d96bed TS |
2687 | { \ |
2688 | uint32_t wt0; \ | |
2689 | uint32_t wth0; \ | |
2690 | \ | |
2691 | wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF); \ | |
2692 | wth0 = float32_ ## name(fdt0 >> 32); \ | |
2693 | return ((uint64_t)wth0 << 32) | wt0; \ | |
a16336e4 TS |
2694 | } |
2695 | FLOAT_UNOP(abs) | |
2696 | FLOAT_UNOP(chs) | |
2697 | #undef FLOAT_UNOP | |
2698 | ||
8dfdb87c | 2699 | /* MIPS specific unary operations */ |
895c2d04 | 2700 | uint64_t helper_float_recip_d(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2701 | { |
b6d96bed TS |
2702 | uint64_t fdt2; |
2703 | ||
05993cd0 | 2704 | fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); |
5f7319cd | 2705 | update_fcr31(env, GETPC()); |
b6d96bed | 2706 | return fdt2; |
8dfdb87c | 2707 | } |
b6d96bed | 2708 | |
895c2d04 | 2709 | uint32_t helper_float_recip_s(CPUMIPSState *env, uint32_t fst0) |
8dfdb87c | 2710 | { |
b6d96bed TS |
2711 | uint32_t fst2; |
2712 | ||
05993cd0 | 2713 | fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); |
5f7319cd | 2714 | update_fcr31(env, GETPC()); |
b6d96bed | 2715 | return fst2; |
57fa1fb3 | 2716 | } |
57fa1fb3 | 2717 | |
895c2d04 | 2718 | uint64_t helper_float_rsqrt_d(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2719 | { |
b6d96bed TS |
2720 | uint64_t fdt2; |
2721 | ||
f01be154 | 2722 | fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status); |
05993cd0 | 2723 | fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); |
5f7319cd | 2724 | update_fcr31(env, GETPC()); |
b6d96bed | 2725 | return fdt2; |
8dfdb87c | 2726 | } |
b6d96bed | 2727 | |
895c2d04 | 2728 | uint32_t helper_float_rsqrt_s(CPUMIPSState *env, uint32_t fst0) |
8dfdb87c | 2729 | { |
b6d96bed TS |
2730 | uint32_t fst2; |
2731 | ||
f01be154 | 2732 | fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); |
05993cd0 | 2733 | fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); |
5f7319cd | 2734 | update_fcr31(env, GETPC()); |
b6d96bed | 2735 | return fst2; |
8dfdb87c TS |
2736 | } |
2737 | ||
895c2d04 | 2738 | uint64_t helper_float_recip1_d(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2739 | { |
b6d96bed TS |
2740 | uint64_t fdt2; |
2741 | ||
05993cd0 | 2742 | fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); |
5f7319cd | 2743 | update_fcr31(env, GETPC()); |
b6d96bed | 2744 | return fdt2; |
8dfdb87c | 2745 | } |
b6d96bed | 2746 | |
895c2d04 | 2747 | uint32_t helper_float_recip1_s(CPUMIPSState *env, uint32_t fst0) |
8dfdb87c | 2748 | { |
b6d96bed TS |
2749 | uint32_t fst2; |
2750 | ||
05993cd0 | 2751 | fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); |
5f7319cd | 2752 | update_fcr31(env, GETPC()); |
b6d96bed | 2753 | return fst2; |
8dfdb87c | 2754 | } |
b6d96bed | 2755 | |
895c2d04 | 2756 | uint64_t helper_float_recip1_ps(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2757 | { |
b6d96bed TS |
2758 | uint32_t fst2; |
2759 | uint32_t fsth2; | |
2760 | ||
05993cd0 AJ |
2761 | fst2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); |
2762 | fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status); | |
5f7319cd | 2763 | update_fcr31(env, GETPC()); |
b6d96bed | 2764 | return ((uint64_t)fsth2 << 32) | fst2; |
8dfdb87c TS |
2765 | } |
2766 | ||
895c2d04 | 2767 | uint64_t helper_float_rsqrt1_d(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2768 | { |
b6d96bed TS |
2769 | uint64_t fdt2; |
2770 | ||
f01be154 | 2771 | fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status); |
05993cd0 | 2772 | fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); |
5f7319cd | 2773 | update_fcr31(env, GETPC()); |
b6d96bed | 2774 | return fdt2; |
8dfdb87c | 2775 | } |
b6d96bed | 2776 | |
895c2d04 | 2777 | uint32_t helper_float_rsqrt1_s(CPUMIPSState *env, uint32_t fst0) |
8dfdb87c | 2778 | { |
b6d96bed TS |
2779 | uint32_t fst2; |
2780 | ||
f01be154 | 2781 | fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); |
05993cd0 | 2782 | fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); |
5f7319cd | 2783 | update_fcr31(env, GETPC()); |
b6d96bed | 2784 | return fst2; |
8dfdb87c | 2785 | } |
b6d96bed | 2786 | |
895c2d04 | 2787 | uint64_t helper_float_rsqrt1_ps(CPUMIPSState *env, uint64_t fdt0) |
8dfdb87c | 2788 | { |
b6d96bed TS |
2789 | uint32_t fst2; |
2790 | uint32_t fsth2; | |
2791 | ||
f01be154 TS |
2792 | fst2 = float32_sqrt(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); |
2793 | fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status); | |
05993cd0 AJ |
2794 | fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); |
2795 | fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status); | |
5f7319cd | 2796 | update_fcr31(env, GETPC()); |
b6d96bed | 2797 | return ((uint64_t)fsth2 << 32) | fst2; |
57fa1fb3 | 2798 | } |
57fa1fb3 | 2799 | |
895c2d04 | 2800 | #define FLOAT_OP(name, p) void helper_float_##name##_##p(CPUMIPSState *env) |
b6d96bed | 2801 | |
fd4a04eb | 2802 | /* binary operations */ |
b6d96bed | 2803 | #define FLOAT_BINOP(name) \ |
895c2d04 BS |
2804 | uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \ |
2805 | uint64_t fdt0, uint64_t fdt1) \ | |
b6d96bed TS |
2806 | { \ |
2807 | uint64_t dt2; \ | |
2808 | \ | |
f01be154 | 2809 | dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \ |
5f7319cd | 2810 | update_fcr31(env, GETPC()); \ |
b6d96bed TS |
2811 | return dt2; \ |
2812 | } \ | |
2813 | \ | |
895c2d04 BS |
2814 | uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \ |
2815 | uint32_t fst0, uint32_t fst1) \ | |
b6d96bed TS |
2816 | { \ |
2817 | uint32_t wt2; \ | |
2818 | \ | |
f01be154 | 2819 | wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \ |
5f7319cd | 2820 | update_fcr31(env, GETPC()); \ |
b6d96bed TS |
2821 | return wt2; \ |
2822 | } \ | |
2823 | \ | |
895c2d04 BS |
2824 | uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \ |
2825 | uint64_t fdt0, \ | |
2826 | uint64_t fdt1) \ | |
b6d96bed TS |
2827 | { \ |
2828 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; \ | |
2829 | uint32_t fsth0 = fdt0 >> 32; \ | |
2830 | uint32_t fst1 = fdt1 & 0XFFFFFFFF; \ | |
2831 | uint32_t fsth1 = fdt1 >> 32; \ | |
2832 | uint32_t wt2; \ | |
2833 | uint32_t wth2; \ | |
2834 | \ | |
f01be154 TS |
2835 | wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \ |
2836 | wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status); \ | |
5f7319cd | 2837 | update_fcr31(env, GETPC()); \ |
b6d96bed | 2838 | return ((uint64_t)wth2 << 32) | wt2; \ |
fd4a04eb | 2839 | } |
b6d96bed | 2840 | |
fd4a04eb TS |
2841 | FLOAT_BINOP(add) |
2842 | FLOAT_BINOP(sub) | |
2843 | FLOAT_BINOP(mul) | |
2844 | FLOAT_BINOP(div) | |
2845 | #undef FLOAT_BINOP | |
2846 | ||
b3d6cd44 AJ |
2847 | /* FMA based operations */ |
2848 | #define FLOAT_FMA(name, type) \ | |
2849 | uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \ | |
2850 | uint64_t fdt0, uint64_t fdt1, \ | |
2851 | uint64_t fdt2) \ | |
2852 | { \ | |
b3d6cd44 AJ |
2853 | fdt0 = float64_muladd(fdt0, fdt1, fdt2, type, \ |
2854 | &env->active_fpu.fp_status); \ | |
5f7319cd | 2855 | update_fcr31(env, GETPC()); \ |
b3d6cd44 AJ |
2856 | return fdt0; \ |
2857 | } \ | |
2858 | \ | |
2859 | uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \ | |
2860 | uint32_t fst0, uint32_t fst1, \ | |
2861 | uint32_t fst2) \ | |
2862 | { \ | |
b3d6cd44 AJ |
2863 | fst0 = float32_muladd(fst0, fst1, fst2, type, \ |
2864 | &env->active_fpu.fp_status); \ | |
5f7319cd | 2865 | update_fcr31(env, GETPC()); \ |
b3d6cd44 AJ |
2866 | return fst0; \ |
2867 | } \ | |
2868 | \ | |
2869 | uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \ | |
2870 | uint64_t fdt0, uint64_t fdt1, \ | |
2871 | uint64_t fdt2) \ | |
2872 | { \ | |
2873 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; \ | |
2874 | uint32_t fsth0 = fdt0 >> 32; \ | |
2875 | uint32_t fst1 = fdt1 & 0XFFFFFFFF; \ | |
2876 | uint32_t fsth1 = fdt1 >> 32; \ | |
2877 | uint32_t fst2 = fdt2 & 0XFFFFFFFF; \ | |
2878 | uint32_t fsth2 = fdt2 >> 32; \ | |
2879 | \ | |
b3d6cd44 AJ |
2880 | fst0 = float32_muladd(fst0, fst1, fst2, type, \ |
2881 | &env->active_fpu.fp_status); \ | |
2882 | fsth0 = float32_muladd(fsth0, fsth1, fsth2, type, \ | |
2883 | &env->active_fpu.fp_status); \ | |
5f7319cd | 2884 | update_fcr31(env, GETPC()); \ |
b3d6cd44 AJ |
2885 | return ((uint64_t)fsth0 << 32) | fst0; \ |
2886 | } | |
2887 | FLOAT_FMA(madd, 0) | |
2888 | FLOAT_FMA(msub, float_muladd_negate_c) | |
2889 | FLOAT_FMA(nmadd, float_muladd_negate_result) | |
2890 | FLOAT_FMA(nmsub, float_muladd_negate_result | float_muladd_negate_c) | |
2891 | #undef FLOAT_FMA | |
a16336e4 | 2892 | |
8dfdb87c | 2893 | /* MIPS specific binary operations */ |
895c2d04 | 2894 | uint64_t helper_float_recip2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) |
8dfdb87c | 2895 | { |
f01be154 | 2896 | fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status); |
05993cd0 | 2897 | fdt2 = float64_chs(float64_sub(fdt2, float64_one, &env->active_fpu.fp_status)); |
5f7319cd | 2898 | update_fcr31(env, GETPC()); |
b6d96bed | 2899 | return fdt2; |
8dfdb87c | 2900 | } |
b6d96bed | 2901 | |
895c2d04 | 2902 | uint32_t helper_float_recip2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2) |
8dfdb87c | 2903 | { |
f01be154 | 2904 | fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); |
05993cd0 | 2905 | fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status)); |
5f7319cd | 2906 | update_fcr31(env, GETPC()); |
b6d96bed | 2907 | return fst2; |
8dfdb87c | 2908 | } |
b6d96bed | 2909 | |
895c2d04 | 2910 | uint64_t helper_float_recip2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) |
8dfdb87c | 2911 | { |
b6d96bed TS |
2912 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; |
2913 | uint32_t fsth0 = fdt0 >> 32; | |
2914 | uint32_t fst2 = fdt2 & 0XFFFFFFFF; | |
2915 | uint32_t fsth2 = fdt2 >> 32; | |
2916 | ||
f01be154 TS |
2917 | fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); |
2918 | fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status); | |
05993cd0 AJ |
2919 | fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status)); |
2920 | fsth2 = float32_chs(float32_sub(fsth2, float32_one, &env->active_fpu.fp_status)); | |
5f7319cd | 2921 | update_fcr31(env, GETPC()); |
b6d96bed | 2922 | return ((uint64_t)fsth2 << 32) | fst2; |
8dfdb87c TS |
2923 | } |
2924 | ||
895c2d04 | 2925 | uint64_t helper_float_rsqrt2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) |
8dfdb87c | 2926 | { |
f01be154 | 2927 | fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status); |
05993cd0 | 2928 | fdt2 = float64_sub(fdt2, float64_one, &env->active_fpu.fp_status); |
f01be154 | 2929 | fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, &env->active_fpu.fp_status)); |
5f7319cd | 2930 | update_fcr31(env, GETPC()); |
b6d96bed | 2931 | return fdt2; |
8dfdb87c | 2932 | } |
b6d96bed | 2933 | |
895c2d04 | 2934 | uint32_t helper_float_rsqrt2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2) |
8dfdb87c | 2935 | { |
f01be154 | 2936 | fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); |
05993cd0 | 2937 | fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status); |
f01be154 | 2938 | fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); |
5f7319cd | 2939 | update_fcr31(env, GETPC()); |
b6d96bed | 2940 | return fst2; |
8dfdb87c | 2941 | } |
b6d96bed | 2942 | |
895c2d04 | 2943 | uint64_t helper_float_rsqrt2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) |
8dfdb87c | 2944 | { |
b6d96bed TS |
2945 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; |
2946 | uint32_t fsth0 = fdt0 >> 32; | |
2947 | uint32_t fst2 = fdt2 & 0XFFFFFFFF; | |
2948 | uint32_t fsth2 = fdt2 >> 32; | |
2949 | ||
f01be154 TS |
2950 | fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); |
2951 | fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status); | |
05993cd0 AJ |
2952 | fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status); |
2953 | fsth2 = float32_sub(fsth2, float32_one, &env->active_fpu.fp_status); | |
f01be154 TS |
2954 | fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); |
2955 | fsth2 = float32_chs(float32_div(fsth2, FLOAT_TWO32, &env->active_fpu.fp_status)); | |
5f7319cd | 2956 | update_fcr31(env, GETPC()); |
b6d96bed | 2957 | return ((uint64_t)fsth2 << 32) | fst2; |
57fa1fb3 | 2958 | } |
57fa1fb3 | 2959 | |
895c2d04 | 2960 | uint64_t helper_float_addr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1) |
fd4a04eb | 2961 | { |
b6d96bed TS |
2962 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; |
2963 | uint32_t fsth0 = fdt0 >> 32; | |
2964 | uint32_t fst1 = fdt1 & 0XFFFFFFFF; | |
2965 | uint32_t fsth1 = fdt1 >> 32; | |
2966 | uint32_t fst2; | |
2967 | uint32_t fsth2; | |
2968 | ||
f01be154 TS |
2969 | fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status); |
2970 | fsth2 = float32_add (fst1, fsth1, &env->active_fpu.fp_status); | |
5f7319cd | 2971 | update_fcr31(env, GETPC()); |
b6d96bed | 2972 | return ((uint64_t)fsth2 << 32) | fst2; |
fd4a04eb TS |
2973 | } |
2974 | ||
895c2d04 | 2975 | uint64_t helper_float_mulr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1) |
57fa1fb3 | 2976 | { |
b6d96bed TS |
2977 | uint32_t fst0 = fdt0 & 0XFFFFFFFF; |
2978 | uint32_t fsth0 = fdt0 >> 32; | |
2979 | uint32_t fst1 = fdt1 & 0XFFFFFFFF; | |
2980 | uint32_t fsth1 = fdt1 >> 32; | |
2981 | uint32_t fst2; | |
2982 | uint32_t fsth2; | |
2983 | ||
f01be154 TS |
2984 | fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status); |
2985 | fsth2 = float32_mul (fst1, fsth1, &env->active_fpu.fp_status); | |
5f7319cd | 2986 | update_fcr31(env, GETPC()); |
b6d96bed | 2987 | return ((uint64_t)fsth2 << 32) | fst2; |
57fa1fb3 TS |
2988 | } |
2989 | ||
8dfdb87c | 2990 | /* compare operations */ |
b6d96bed | 2991 | #define FOP_COND_D(op, cond) \ |
895c2d04 BS |
2992 | void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \ |
2993 | uint64_t fdt1, int cc) \ | |
b6d96bed | 2994 | { \ |
6a385343 | 2995 | int c; \ |
6a385343 | 2996 | c = cond; \ |
5f7319cd | 2997 | update_fcr31(env, GETPC()); \ |
b6d96bed | 2998 | if (c) \ |
f01be154 | 2999 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3000 | else \ |
f01be154 | 3001 | CLEAR_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3002 | } \ |
895c2d04 BS |
3003 | void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \ |
3004 | uint64_t fdt1, int cc) \ | |
b6d96bed TS |
3005 | { \ |
3006 | int c; \ | |
3007 | fdt0 = float64_abs(fdt0); \ | |
3008 | fdt1 = float64_abs(fdt1); \ | |
3009 | c = cond; \ | |
5f7319cd | 3010 | update_fcr31(env, GETPC()); \ |
b6d96bed | 3011 | if (c) \ |
f01be154 | 3012 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3013 | else \ |
f01be154 | 3014 | CLEAR_FP_COND(cc, env->active_fpu); \ |
fd4a04eb TS |
3015 | } |
3016 | ||
fd4a04eb | 3017 | /* NOTE: the comma operator will make "cond" to eval to false, |
3a599383 AJ |
3018 | * but float64_unordered_quiet() is still called. */ |
3019 | FOP_COND_D(f, (float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status), 0)) | |
3020 | FOP_COND_D(un, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status)) | |
06a0e6b1 | 3021 | FOP_COND_D(eq, float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) |
211315fb | 3022 | FOP_COND_D(ueq, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) |
06a0e6b1 AJ |
3023 | FOP_COND_D(olt, float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) |
3024 | FOP_COND_D(ult, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) | |
3025 | FOP_COND_D(ole, float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) | |
3026 | FOP_COND_D(ule, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status)) | |
fd4a04eb | 3027 | /* NOTE: the comma operator will make "cond" to eval to false, |
3a599383 AJ |
3028 | * but float64_unordered() is still called. */ |
3029 | FOP_COND_D(sf, (float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status), 0)) | |
3030 | FOP_COND_D(ngle,float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3031 | FOP_COND_D(seq, float64_eq(fdt0, fdt1, &env->active_fpu.fp_status)) |
3032 | FOP_COND_D(ngl, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq(fdt0, fdt1, &env->active_fpu.fp_status)) | |
3033 | FOP_COND_D(lt, float64_lt(fdt0, fdt1, &env->active_fpu.fp_status)) | |
3a599383 | 3034 | FOP_COND_D(nge, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt(fdt0, fdt1, &env->active_fpu.fp_status)) |
06a0e6b1 | 3035 | FOP_COND_D(le, float64_le(fdt0, fdt1, &env->active_fpu.fp_status)) |
3a599383 | 3036 | FOP_COND_D(ngt, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le(fdt0, fdt1, &env->active_fpu.fp_status)) |
b6d96bed TS |
3037 | |
3038 | #define FOP_COND_S(op, cond) \ | |
895c2d04 BS |
3039 | void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0, \ |
3040 | uint32_t fst1, int cc) \ | |
b6d96bed | 3041 | { \ |
6a385343 | 3042 | int c; \ |
6a385343 | 3043 | c = cond; \ |
5f7319cd | 3044 | update_fcr31(env, GETPC()); \ |
b6d96bed | 3045 | if (c) \ |
f01be154 | 3046 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3047 | else \ |
f01be154 | 3048 | CLEAR_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3049 | } \ |
895c2d04 BS |
3050 | void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0, \ |
3051 | uint32_t fst1, int cc) \ | |
b6d96bed TS |
3052 | { \ |
3053 | int c; \ | |
3054 | fst0 = float32_abs(fst0); \ | |
3055 | fst1 = float32_abs(fst1); \ | |
3056 | c = cond; \ | |
5f7319cd | 3057 | update_fcr31(env, GETPC()); \ |
b6d96bed | 3058 | if (c) \ |
f01be154 | 3059 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3060 | else \ |
f01be154 | 3061 | CLEAR_FP_COND(cc, env->active_fpu); \ |
fd4a04eb TS |
3062 | } |
3063 | ||
fd4a04eb | 3064 | /* NOTE: the comma operator will make "cond" to eval to false, |
3a599383 AJ |
3065 | * but float32_unordered_quiet() is still called. */ |
3066 | FOP_COND_S(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0)) | |
3067 | FOP_COND_S(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)) | |
06a0e6b1 | 3068 | FOP_COND_S(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status)) |
211315fb | 3069 | FOP_COND_S(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status)) |
06a0e6b1 AJ |
3070 | FOP_COND_S(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status)) |
3071 | FOP_COND_S(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status)) | |
3072 | FOP_COND_S(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status)) | |
3073 | FOP_COND_S(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status)) | |
fd4a04eb | 3074 | /* NOTE: the comma operator will make "cond" to eval to false, |
3a599383 AJ |
3075 | * but float32_unordered() is still called. */ |
3076 | FOP_COND_S(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0)) | |
3077 | FOP_COND_S(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3078 | FOP_COND_S(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status)) |
3079 | FOP_COND_S(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status)) | |
3080 | FOP_COND_S(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status)) | |
3a599383 | 3081 | FOP_COND_S(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status)) |
06a0e6b1 | 3082 | FOP_COND_S(le, float32_le(fst0, fst1, &env->active_fpu.fp_status)) |
3a599383 | 3083 | FOP_COND_S(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status)) |
b6d96bed TS |
3084 | |
3085 | #define FOP_COND_PS(op, condl, condh) \ | |
895c2d04 BS |
3086 | void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \ |
3087 | uint64_t fdt1, int cc) \ | |
b6d96bed | 3088 | { \ |
6a385343 AJ |
3089 | uint32_t fst0, fsth0, fst1, fsth1; \ |
3090 | int ch, cl; \ | |
6a385343 AJ |
3091 | fst0 = fdt0 & 0XFFFFFFFF; \ |
3092 | fsth0 = fdt0 >> 32; \ | |
3093 | fst1 = fdt1 & 0XFFFFFFFF; \ | |
3094 | fsth1 = fdt1 >> 32; \ | |
3095 | cl = condl; \ | |
3096 | ch = condh; \ | |
5f7319cd | 3097 | update_fcr31(env, GETPC()); \ |
b6d96bed | 3098 | if (cl) \ |
f01be154 | 3099 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3100 | else \ |
f01be154 | 3101 | CLEAR_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3102 | if (ch) \ |
f01be154 | 3103 | SET_FP_COND(cc + 1, env->active_fpu); \ |
b6d96bed | 3104 | else \ |
f01be154 | 3105 | CLEAR_FP_COND(cc + 1, env->active_fpu); \ |
b6d96bed | 3106 | } \ |
895c2d04 BS |
3107 | void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \ |
3108 | uint64_t fdt1, int cc) \ | |
b6d96bed | 3109 | { \ |
6a385343 AJ |
3110 | uint32_t fst0, fsth0, fst1, fsth1; \ |
3111 | int ch, cl; \ | |
3112 | fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \ | |
3113 | fsth0 = float32_abs(fdt0 >> 32); \ | |
3114 | fst1 = float32_abs(fdt1 & 0XFFFFFFFF); \ | |
3115 | fsth1 = float32_abs(fdt1 >> 32); \ | |
3116 | cl = condl; \ | |
3117 | ch = condh; \ | |
5f7319cd | 3118 | update_fcr31(env, GETPC()); \ |
b6d96bed | 3119 | if (cl) \ |
f01be154 | 3120 | SET_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3121 | else \ |
f01be154 | 3122 | CLEAR_FP_COND(cc, env->active_fpu); \ |
b6d96bed | 3123 | if (ch) \ |
f01be154 | 3124 | SET_FP_COND(cc + 1, env->active_fpu); \ |
b6d96bed | 3125 | else \ |
f01be154 | 3126 | CLEAR_FP_COND(cc + 1, env->active_fpu); \ |
fd4a04eb TS |
3127 | } |
3128 | ||
3129 | /* NOTE: the comma operator will make "cond" to eval to false, | |
3a599383 AJ |
3130 | * but float32_unordered_quiet() is still called. */ |
3131 | FOP_COND_PS(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0), | |
3132 | (float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status), 0)) | |
3133 | FOP_COND_PS(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), | |
3134 | float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3135 | FOP_COND_PS(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status), |
3136 | float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
211315fb AJ |
3137 | FOP_COND_PS(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status), |
3138 | float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3139 | FOP_COND_PS(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status), |
3140 | float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3141 | FOP_COND_PS(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status), | |
3142 | float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3143 | FOP_COND_PS(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status), | |
3144 | float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3145 | FOP_COND_PS(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status), | |
3146 | float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status)) | |
fd4a04eb | 3147 | /* NOTE: the comma operator will make "cond" to eval to false, |
3a599383 AJ |
3148 | * but float32_unordered() is still called. */ |
3149 | FOP_COND_PS(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0), | |
3150 | (float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status), 0)) | |
3151 | FOP_COND_PS(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status), | |
3152 | float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3153 | FOP_COND_PS(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status), |
3154 | float32_eq(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3155 | FOP_COND_PS(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status), | |
3156 | float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3157 | FOP_COND_PS(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status), | |
3158 | float32_lt(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3a599383 AJ |
3159 | FOP_COND_PS(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status), |
3160 | float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt(fsth0, fsth1, &env->active_fpu.fp_status)) | |
06a0e6b1 AJ |
3161 | FOP_COND_PS(le, float32_le(fst0, fst1, &env->active_fpu.fp_status), |
3162 | float32_le(fsth0, fsth1, &env->active_fpu.fp_status)) | |
3a599383 AJ |
3163 | FOP_COND_PS(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status), |
3164 | float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le(fsth0, fsth1, &env->active_fpu.fp_status)) |