virtio-net: introduce a new macaddr control
[qemu/ar7.git] / target-mips / op_helper.c
blob1bca4a159e79c72ae339e45e49ce5231c56cd431
1 /*
2 * MIPS emulation helpers for qemu.
4 * Copyright (c) 2004-2005 Jocelyn Mayer
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include <stdlib.h>
20 #include "cpu.h"
21 #include "qemu/host-utils.h"
23 #include "helper.h"
25 #if !defined(CONFIG_USER_ONLY)
26 #include "exec/softmmu_exec.h"
27 #endif /* !defined(CONFIG_USER_ONLY) */
29 #ifndef CONFIG_USER_ONLY
30 static inline void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global);
31 #endif
33 /*****************************************************************************/
34 /* Exceptions processing helpers */
36 static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env,
37 uint32_t exception,
38 int error_code,
39 uintptr_t pc)
41 if (exception < EXCP_SC) {
42 qemu_log("%s: %d %d\n", __func__, exception, error_code);
44 env->exception_index = exception;
45 env->error_code = error_code;
47 if (pc) {
48 /* now we have a real cpu fault */
49 cpu_restore_state(env, pc);
52 cpu_loop_exit(env);
55 static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env,
56 uint32_t exception,
57 uintptr_t pc)
59 do_raise_exception_err(env, exception, 0, pc);
62 void helper_raise_exception_err(CPUMIPSState *env, uint32_t exception,
63 int error_code)
65 do_raise_exception_err(env, exception, error_code, 0);
68 void helper_raise_exception(CPUMIPSState *env, uint32_t exception)
70 do_raise_exception(env, exception, 0);
73 #if defined(CONFIG_USER_ONLY)
74 #define HELPER_LD(name, insn, type) \
75 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
76 int mem_idx) \
77 { \
78 return (type) insn##_raw(addr); \
80 #else
81 #define HELPER_LD(name, insn, type) \
82 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
83 int mem_idx) \
84 { \
85 switch (mem_idx) \
86 { \
87 case 0: return (type) cpu_##insn##_kernel(env, addr); break; \
88 case 1: return (type) cpu_##insn##_super(env, addr); break; \
89 default: \
90 case 2: return (type) cpu_##insn##_user(env, addr); break; \
91 } \
93 #endif
94 HELPER_LD(lbu, ldub, uint8_t)
95 HELPER_LD(lw, ldl, int32_t)
96 #ifdef TARGET_MIPS64
97 HELPER_LD(ld, ldq, int64_t)
98 #endif
99 #undef HELPER_LD
101 #if defined(CONFIG_USER_ONLY)
102 #define HELPER_ST(name, insn, type) \
103 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
104 type val, int mem_idx) \
106 insn##_raw(addr, val); \
108 #else
109 #define HELPER_ST(name, insn, type) \
110 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
111 type val, int mem_idx) \
113 switch (mem_idx) \
115 case 0: cpu_##insn##_kernel(env, addr, val); break; \
116 case 1: cpu_##insn##_super(env, addr, val); break; \
117 default: \
118 case 2: cpu_##insn##_user(env, addr, val); break; \
121 #endif
122 HELPER_ST(sb, stb, uint8_t)
123 HELPER_ST(sw, stl, uint32_t)
124 #ifdef TARGET_MIPS64
125 HELPER_ST(sd, stq, uint64_t)
126 #endif
127 #undef HELPER_ST
129 target_ulong helper_clo (target_ulong arg1)
131 return clo32(arg1);
134 target_ulong helper_clz (target_ulong arg1)
136 return clz32(arg1);
139 #if defined(TARGET_MIPS64)
140 target_ulong helper_dclo (target_ulong arg1)
142 return clo64(arg1);
145 target_ulong helper_dclz (target_ulong arg1)
147 return clz64(arg1);
149 #endif /* TARGET_MIPS64 */
151 /* 64 bits arithmetic for 32 bits hosts */
152 static inline uint64_t get_HILO(CPUMIPSState *env)
154 return ((uint64_t)(env->active_tc.HI[0]) << 32) | (uint32_t)env->active_tc.LO[0];
157 static inline target_ulong set_HIT0_LO(CPUMIPSState *env, uint64_t HILO)
159 target_ulong tmp;
160 env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
161 tmp = env->active_tc.HI[0] = (int32_t)(HILO >> 32);
162 return tmp;
165 static inline target_ulong set_HI_LOT0(CPUMIPSState *env, uint64_t HILO)
167 target_ulong tmp = env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
168 env->active_tc.HI[0] = (int32_t)(HILO >> 32);
169 return tmp;
172 /* Multiplication variants of the vr54xx. */
173 target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1,
174 target_ulong arg2)
176 return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 *
177 (int64_t)(int32_t)arg2));
180 target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1,
181 target_ulong arg2)
183 return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 *
184 (uint64_t)(uint32_t)arg2);
187 target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1,
188 target_ulong arg2)
190 return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
191 (int64_t)(int32_t)arg2);
194 target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1,
195 target_ulong arg2)
197 return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
198 (int64_t)(int32_t)arg2);
201 target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1,
202 target_ulong arg2)
204 return set_HI_LOT0(env, (uint64_t)get_HILO(env) +
205 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
208 target_ulong helper_macchiu(CPUMIPSState *env, target_ulong arg1,
209 target_ulong arg2)
211 return set_HIT0_LO(env, (uint64_t)get_HILO(env) +
212 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
215 target_ulong helper_msac(CPUMIPSState *env, target_ulong arg1,
216 target_ulong arg2)
218 return set_HI_LOT0(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
219 (int64_t)(int32_t)arg2);
222 target_ulong helper_msachi(CPUMIPSState *env, target_ulong arg1,
223 target_ulong arg2)
225 return set_HIT0_LO(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
226 (int64_t)(int32_t)arg2);
229 target_ulong helper_msacu(CPUMIPSState *env, target_ulong arg1,
230 target_ulong arg2)
232 return set_HI_LOT0(env, (uint64_t)get_HILO(env) -
233 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
236 target_ulong helper_msachiu(CPUMIPSState *env, target_ulong arg1,
237 target_ulong arg2)
239 return set_HIT0_LO(env, (uint64_t)get_HILO(env) -
240 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
243 target_ulong helper_mulhi(CPUMIPSState *env, target_ulong arg1,
244 target_ulong arg2)
246 return set_HIT0_LO(env, (int64_t)(int32_t)arg1 * (int64_t)(int32_t)arg2);
249 target_ulong helper_mulhiu(CPUMIPSState *env, target_ulong arg1,
250 target_ulong arg2)
252 return set_HIT0_LO(env, (uint64_t)(uint32_t)arg1 *
253 (uint64_t)(uint32_t)arg2);
256 target_ulong helper_mulshi(CPUMIPSState *env, target_ulong arg1,
257 target_ulong arg2)
259 return set_HIT0_LO(env, 0 - (int64_t)(int32_t)arg1 *
260 (int64_t)(int32_t)arg2);
263 target_ulong helper_mulshiu(CPUMIPSState *env, target_ulong arg1,
264 target_ulong arg2)
266 return set_HIT0_LO(env, 0 - (uint64_t)(uint32_t)arg1 *
267 (uint64_t)(uint32_t)arg2);
270 #ifdef TARGET_MIPS64
271 void helper_dmult(CPUMIPSState *env, target_ulong arg1, target_ulong arg2)
273 muls64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2);
276 void helper_dmultu(CPUMIPSState *env, target_ulong arg1, target_ulong arg2)
278 mulu64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2);
280 #endif
282 #ifndef CONFIG_USER_ONLY
284 static inline hwaddr do_translate_address(CPUMIPSState *env,
285 target_ulong address,
286 int rw)
288 hwaddr lladdr;
290 lladdr = cpu_mips_translate_address(env, address, rw);
292 if (lladdr == -1LL) {
293 cpu_loop_exit(env);
294 } else {
295 return lladdr;
299 #define HELPER_LD_ATOMIC(name, insn) \
300 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \
302 env->lladdr = do_translate_address(env, arg, 0); \
303 env->llval = do_##insn(env, arg, mem_idx); \
304 return env->llval; \
306 HELPER_LD_ATOMIC(ll, lw)
307 #ifdef TARGET_MIPS64
308 HELPER_LD_ATOMIC(lld, ld)
309 #endif
310 #undef HELPER_LD_ATOMIC
312 #define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask) \
313 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1, \
314 target_ulong arg2, int mem_idx) \
316 target_long tmp; \
318 if (arg2 & almask) { \
319 env->CP0_BadVAddr = arg2; \
320 helper_raise_exception(env, EXCP_AdES); \
322 if (do_translate_address(env, arg2, 1) == env->lladdr) { \
323 tmp = do_##ld_insn(env, arg2, mem_idx); \
324 if (tmp == env->llval) { \
325 do_##st_insn(env, arg2, arg1, mem_idx); \
326 return 1; \
329 return 0; \
331 HELPER_ST_ATOMIC(sc, lw, sw, 0x3)
332 #ifdef TARGET_MIPS64
333 HELPER_ST_ATOMIC(scd, ld, sd, 0x7)
334 #endif
335 #undef HELPER_ST_ATOMIC
336 #endif
338 #ifdef TARGET_WORDS_BIGENDIAN
339 #define GET_LMASK(v) ((v) & 3)
340 #define GET_OFFSET(addr, offset) (addr + (offset))
341 #else
342 #define GET_LMASK(v) (((v) & 3) ^ 3)
343 #define GET_OFFSET(addr, offset) (addr - (offset))
344 #endif
346 void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
347 int mem_idx)
349 do_sb(env, arg2, (uint8_t)(arg1 >> 24), mem_idx);
351 if (GET_LMASK(arg2) <= 2)
352 do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 16), mem_idx);
354 if (GET_LMASK(arg2) <= 1)
355 do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 8), mem_idx);
357 if (GET_LMASK(arg2) == 0)
358 do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)arg1, mem_idx);
361 void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
362 int mem_idx)
364 do_sb(env, arg2, (uint8_t)arg1, mem_idx);
366 if (GET_LMASK(arg2) >= 1)
367 do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
369 if (GET_LMASK(arg2) >= 2)
370 do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
372 if (GET_LMASK(arg2) == 3)
373 do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
376 #if defined(TARGET_MIPS64)
377 /* "half" load and stores. We must do the memory access inline,
378 or fault handling won't work. */
380 #ifdef TARGET_WORDS_BIGENDIAN
381 #define GET_LMASK64(v) ((v) & 7)
382 #else
383 #define GET_LMASK64(v) (((v) & 7) ^ 7)
384 #endif
386 void helper_sdl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
387 int mem_idx)
389 do_sb(env, arg2, (uint8_t)(arg1 >> 56), mem_idx);
391 if (GET_LMASK64(arg2) <= 6)
392 do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 48), mem_idx);
394 if (GET_LMASK64(arg2) <= 5)
395 do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 40), mem_idx);
397 if (GET_LMASK64(arg2) <= 4)
398 do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)(arg1 >> 32), mem_idx);
400 if (GET_LMASK64(arg2) <= 3)
401 do_sb(env, GET_OFFSET(arg2, 4), (uint8_t)(arg1 >> 24), mem_idx);
403 if (GET_LMASK64(arg2) <= 2)
404 do_sb(env, GET_OFFSET(arg2, 5), (uint8_t)(arg1 >> 16), mem_idx);
406 if (GET_LMASK64(arg2) <= 1)
407 do_sb(env, GET_OFFSET(arg2, 6), (uint8_t)(arg1 >> 8), mem_idx);
409 if (GET_LMASK64(arg2) <= 0)
410 do_sb(env, GET_OFFSET(arg2, 7), (uint8_t)arg1, mem_idx);
413 void helper_sdr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
414 int mem_idx)
416 do_sb(env, arg2, (uint8_t)arg1, mem_idx);
418 if (GET_LMASK64(arg2) >= 1)
419 do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
421 if (GET_LMASK64(arg2) >= 2)
422 do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
424 if (GET_LMASK64(arg2) >= 3)
425 do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
427 if (GET_LMASK64(arg2) >= 4)
428 do_sb(env, GET_OFFSET(arg2, -4), (uint8_t)(arg1 >> 32), mem_idx);
430 if (GET_LMASK64(arg2) >= 5)
431 do_sb(env, GET_OFFSET(arg2, -5), (uint8_t)(arg1 >> 40), mem_idx);
433 if (GET_LMASK64(arg2) >= 6)
434 do_sb(env, GET_OFFSET(arg2, -6), (uint8_t)(arg1 >> 48), mem_idx);
436 if (GET_LMASK64(arg2) == 7)
437 do_sb(env, GET_OFFSET(arg2, -7), (uint8_t)(arg1 >> 56), mem_idx);
439 #endif /* TARGET_MIPS64 */
441 static const int multiple_regs[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };
443 void helper_lwm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
444 uint32_t mem_idx)
446 target_ulong base_reglist = reglist & 0xf;
447 target_ulong do_r31 = reglist & 0x10;
449 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
450 target_ulong i;
452 for (i = 0; i < base_reglist; i++) {
453 env->active_tc.gpr[multiple_regs[i]] =
454 (target_long)do_lw(env, addr, mem_idx);
455 addr += 4;
459 if (do_r31) {
460 env->active_tc.gpr[31] = (target_long)do_lw(env, addr, mem_idx);
464 void helper_swm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
465 uint32_t mem_idx)
467 target_ulong base_reglist = reglist & 0xf;
468 target_ulong do_r31 = reglist & 0x10;
470 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
471 target_ulong i;
473 for (i = 0; i < base_reglist; i++) {
474 do_sw(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
475 addr += 4;
479 if (do_r31) {
480 do_sw(env, addr, env->active_tc.gpr[31], mem_idx);
484 #if defined(TARGET_MIPS64)
485 void helper_ldm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
486 uint32_t mem_idx)
488 target_ulong base_reglist = reglist & 0xf;
489 target_ulong do_r31 = reglist & 0x10;
491 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
492 target_ulong i;
494 for (i = 0; i < base_reglist; i++) {
495 env->active_tc.gpr[multiple_regs[i]] = do_ld(env, addr, mem_idx);
496 addr += 8;
500 if (do_r31) {
501 env->active_tc.gpr[31] = do_ld(env, addr, mem_idx);
505 void helper_sdm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
506 uint32_t mem_idx)
508 target_ulong base_reglist = reglist & 0xf;
509 target_ulong do_r31 = reglist & 0x10;
511 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
512 target_ulong i;
514 for (i = 0; i < base_reglist; i++) {
515 do_sd(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
516 addr += 8;
520 if (do_r31) {
521 do_sd(env, addr, env->active_tc.gpr[31], mem_idx);
524 #endif
526 #ifndef CONFIG_USER_ONLY
527 /* SMP helpers. */
528 static bool mips_vpe_is_wfi(MIPSCPU *c)
530 CPUMIPSState *env = &c->env;
532 /* If the VPE is halted but otherwise active, it means it's waiting for
533 an interrupt. */
534 return env->halted && mips_vpe_active(env);
537 static inline void mips_vpe_wake(CPUMIPSState *c)
539 /* Dont set ->halted = 0 directly, let it be done via cpu_has_work
540 because there might be other conditions that state that c should
541 be sleeping. */
542 cpu_interrupt(c, CPU_INTERRUPT_WAKE);
545 static inline void mips_vpe_sleep(MIPSCPU *cpu)
547 CPUMIPSState *c = &cpu->env;
549 /* The VPE was shut off, really go to bed.
550 Reset any old _WAKE requests. */
551 c->halted = 1;
552 cpu_reset_interrupt(c, CPU_INTERRUPT_WAKE);
555 static inline void mips_tc_wake(MIPSCPU *cpu, int tc)
557 CPUMIPSState *c = &cpu->env;
559 /* FIXME: TC reschedule. */
560 if (mips_vpe_active(c) && !mips_vpe_is_wfi(cpu)) {
561 mips_vpe_wake(c);
565 static inline void mips_tc_sleep(MIPSCPU *cpu, int tc)
567 CPUMIPSState *c = &cpu->env;
569 /* FIXME: TC reschedule. */
570 if (!mips_vpe_active(c)) {
571 mips_vpe_sleep(cpu);
576 * mips_cpu_map_tc:
577 * @env: CPU from which mapping is performed.
578 * @tc: Should point to an int with the value of the global TC index.
580 * This function will transform @tc into a local index within the
581 * returned #CPUMIPSState.
583 /* FIXME: This code assumes that all VPEs have the same number of TCs,
584 which depends on runtime setup. Can probably be fixed by
585 walking the list of CPUMIPSStates. */
586 static CPUMIPSState *mips_cpu_map_tc(CPUMIPSState *env, int *tc)
588 MIPSCPU *cpu;
589 CPUState *cs;
590 CPUState *other_cs;
591 int vpe_idx;
592 int tc_idx = *tc;
594 if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))) {
595 /* Not allowed to address other CPUs. */
596 *tc = env->current_tc;
597 return env;
600 cs = CPU(mips_env_get_cpu(env));
601 vpe_idx = tc_idx / cs->nr_threads;
602 *tc = tc_idx % cs->nr_threads;
603 other_cs = qemu_get_cpu(vpe_idx);
604 if (other_cs == NULL) {
605 return env;
607 cpu = MIPS_CPU(other_cs);
608 return &cpu->env;
611 /* The per VPE CP0_Status register shares some fields with the per TC
612 CP0_TCStatus registers. These fields are wired to the same registers,
613 so changes to either of them should be reflected on both registers.
615 Also, EntryHi shares the bottom 8 bit ASID with TCStauts.
617 These helper call synchronizes the regs for a given cpu. */
619 /* Called for updates to CP0_Status. */
620 static void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu, int tc)
622 int32_t tcstatus, *tcst;
623 uint32_t v = cpu->CP0_Status;
624 uint32_t cu, mx, asid, ksu;
625 uint32_t mask = ((1 << CP0TCSt_TCU3)
626 | (1 << CP0TCSt_TCU2)
627 | (1 << CP0TCSt_TCU1)
628 | (1 << CP0TCSt_TCU0)
629 | (1 << CP0TCSt_TMX)
630 | (3 << CP0TCSt_TKSU)
631 | (0xff << CP0TCSt_TASID));
633 cu = (v >> CP0St_CU0) & 0xf;
634 mx = (v >> CP0St_MX) & 0x1;
635 ksu = (v >> CP0St_KSU) & 0x3;
636 asid = env->CP0_EntryHi & 0xff;
638 tcstatus = cu << CP0TCSt_TCU0;
639 tcstatus |= mx << CP0TCSt_TMX;
640 tcstatus |= ksu << CP0TCSt_TKSU;
641 tcstatus |= asid;
643 if (tc == cpu->current_tc) {
644 tcst = &cpu->active_tc.CP0_TCStatus;
645 } else {
646 tcst = &cpu->tcs[tc].CP0_TCStatus;
649 *tcst &= ~mask;
650 *tcst |= tcstatus;
651 compute_hflags(cpu);
654 /* Called for updates to CP0_TCStatus. */
655 static void sync_c0_tcstatus(CPUMIPSState *cpu, int tc,
656 target_ulong v)
658 uint32_t status;
659 uint32_t tcu, tmx, tasid, tksu;
660 uint32_t mask = ((1 << CP0St_CU3)
661 | (1 << CP0St_CU2)
662 | (1 << CP0St_CU1)
663 | (1 << CP0St_CU0)
664 | (1 << CP0St_MX)
665 | (3 << CP0St_KSU));
667 tcu = (v >> CP0TCSt_TCU0) & 0xf;
668 tmx = (v >> CP0TCSt_TMX) & 0x1;
669 tasid = v & 0xff;
670 tksu = (v >> CP0TCSt_TKSU) & 0x3;
672 status = tcu << CP0St_CU0;
673 status |= tmx << CP0St_MX;
674 status |= tksu << CP0St_KSU;
676 cpu->CP0_Status &= ~mask;
677 cpu->CP0_Status |= status;
679 /* Sync the TASID with EntryHi. */
680 cpu->CP0_EntryHi &= ~0xff;
681 cpu->CP0_EntryHi = tasid;
683 compute_hflags(cpu);
686 /* Called for updates to CP0_EntryHi. */
687 static void sync_c0_entryhi(CPUMIPSState *cpu, int tc)
689 int32_t *tcst;
690 uint32_t asid, v = cpu->CP0_EntryHi;
692 asid = v & 0xff;
694 if (tc == cpu->current_tc) {
695 tcst = &cpu->active_tc.CP0_TCStatus;
696 } else {
697 tcst = &cpu->tcs[tc].CP0_TCStatus;
700 *tcst &= ~0xff;
701 *tcst |= asid;
704 /* CP0 helpers */
705 target_ulong helper_mfc0_mvpcontrol(CPUMIPSState *env)
707 return env->mvp->CP0_MVPControl;
710 target_ulong helper_mfc0_mvpconf0(CPUMIPSState *env)
712 return env->mvp->CP0_MVPConf0;
715 target_ulong helper_mfc0_mvpconf1(CPUMIPSState *env)
717 return env->mvp->CP0_MVPConf1;
720 target_ulong helper_mfc0_random(CPUMIPSState *env)
722 return (int32_t)cpu_mips_get_random(env);
725 target_ulong helper_mfc0_tcstatus(CPUMIPSState *env)
727 return env->active_tc.CP0_TCStatus;
730 target_ulong helper_mftc0_tcstatus(CPUMIPSState *env)
732 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
733 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
735 if (other_tc == other->current_tc)
736 return other->active_tc.CP0_TCStatus;
737 else
738 return other->tcs[other_tc].CP0_TCStatus;
741 target_ulong helper_mfc0_tcbind(CPUMIPSState *env)
743 return env->active_tc.CP0_TCBind;
746 target_ulong helper_mftc0_tcbind(CPUMIPSState *env)
748 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
749 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
751 if (other_tc == other->current_tc)
752 return other->active_tc.CP0_TCBind;
753 else
754 return other->tcs[other_tc].CP0_TCBind;
757 target_ulong helper_mfc0_tcrestart(CPUMIPSState *env)
759 return env->active_tc.PC;
762 target_ulong helper_mftc0_tcrestart(CPUMIPSState *env)
764 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
765 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
767 if (other_tc == other->current_tc)
768 return other->active_tc.PC;
769 else
770 return other->tcs[other_tc].PC;
773 target_ulong helper_mfc0_tchalt(CPUMIPSState *env)
775 return env->active_tc.CP0_TCHalt;
778 target_ulong helper_mftc0_tchalt(CPUMIPSState *env)
780 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
781 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
783 if (other_tc == other->current_tc)
784 return other->active_tc.CP0_TCHalt;
785 else
786 return other->tcs[other_tc].CP0_TCHalt;
789 target_ulong helper_mfc0_tccontext(CPUMIPSState *env)
791 return env->active_tc.CP0_TCContext;
794 target_ulong helper_mftc0_tccontext(CPUMIPSState *env)
796 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
797 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
799 if (other_tc == other->current_tc)
800 return other->active_tc.CP0_TCContext;
801 else
802 return other->tcs[other_tc].CP0_TCContext;
805 target_ulong helper_mfc0_tcschedule(CPUMIPSState *env)
807 return env->active_tc.CP0_TCSchedule;
810 target_ulong helper_mftc0_tcschedule(CPUMIPSState *env)
812 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
813 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
815 if (other_tc == other->current_tc)
816 return other->active_tc.CP0_TCSchedule;
817 else
818 return other->tcs[other_tc].CP0_TCSchedule;
821 target_ulong helper_mfc0_tcschefback(CPUMIPSState *env)
823 return env->active_tc.CP0_TCScheFBack;
826 target_ulong helper_mftc0_tcschefback(CPUMIPSState *env)
828 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
829 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
831 if (other_tc == other->current_tc)
832 return other->active_tc.CP0_TCScheFBack;
833 else
834 return other->tcs[other_tc].CP0_TCScheFBack;
837 target_ulong helper_mfc0_count(CPUMIPSState *env)
839 return (int32_t)cpu_mips_get_count(env);
842 target_ulong helper_mftc0_entryhi(CPUMIPSState *env)
844 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
845 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
847 return other->CP0_EntryHi;
850 target_ulong helper_mftc0_cause(CPUMIPSState *env)
852 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
853 int32_t tccause;
854 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
856 if (other_tc == other->current_tc) {
857 tccause = other->CP0_Cause;
858 } else {
859 tccause = other->CP0_Cause;
862 return tccause;
865 target_ulong helper_mftc0_status(CPUMIPSState *env)
867 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
868 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
870 return other->CP0_Status;
873 target_ulong helper_mfc0_lladdr(CPUMIPSState *env)
875 return (int32_t)(env->lladdr >> env->CP0_LLAddr_shift);
878 target_ulong helper_mfc0_watchlo(CPUMIPSState *env, uint32_t sel)
880 return (int32_t)env->CP0_WatchLo[sel];
883 target_ulong helper_mfc0_watchhi(CPUMIPSState *env, uint32_t sel)
885 return env->CP0_WatchHi[sel];
888 target_ulong helper_mfc0_debug(CPUMIPSState *env)
890 target_ulong t0 = env->CP0_Debug;
891 if (env->hflags & MIPS_HFLAG_DM)
892 t0 |= 1 << CP0DB_DM;
894 return t0;
897 target_ulong helper_mftc0_debug(CPUMIPSState *env)
899 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
900 int32_t tcstatus;
901 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
903 if (other_tc == other->current_tc)
904 tcstatus = other->active_tc.CP0_Debug_tcstatus;
905 else
906 tcstatus = other->tcs[other_tc].CP0_Debug_tcstatus;
908 /* XXX: Might be wrong, check with EJTAG spec. */
909 return (other->CP0_Debug & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
910 (tcstatus & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
913 #if defined(TARGET_MIPS64)
914 target_ulong helper_dmfc0_tcrestart(CPUMIPSState *env)
916 return env->active_tc.PC;
919 target_ulong helper_dmfc0_tchalt(CPUMIPSState *env)
921 return env->active_tc.CP0_TCHalt;
924 target_ulong helper_dmfc0_tccontext(CPUMIPSState *env)
926 return env->active_tc.CP0_TCContext;
929 target_ulong helper_dmfc0_tcschedule(CPUMIPSState *env)
931 return env->active_tc.CP0_TCSchedule;
934 target_ulong helper_dmfc0_tcschefback(CPUMIPSState *env)
936 return env->active_tc.CP0_TCScheFBack;
939 target_ulong helper_dmfc0_lladdr(CPUMIPSState *env)
941 return env->lladdr >> env->CP0_LLAddr_shift;
944 target_ulong helper_dmfc0_watchlo(CPUMIPSState *env, uint32_t sel)
946 return env->CP0_WatchLo[sel];
948 #endif /* TARGET_MIPS64 */
950 void helper_mtc0_index(CPUMIPSState *env, target_ulong arg1)
952 int num = 1;
953 unsigned int tmp = env->tlb->nb_tlb;
955 do {
956 tmp >>= 1;
957 num <<= 1;
958 } while (tmp);
959 env->CP0_Index = (env->CP0_Index & 0x80000000) | (arg1 & (num - 1));
962 void helper_mtc0_mvpcontrol(CPUMIPSState *env, target_ulong arg1)
964 uint32_t mask = 0;
965 uint32_t newval;
967 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))
968 mask |= (1 << CP0MVPCo_CPA) | (1 << CP0MVPCo_VPC) |
969 (1 << CP0MVPCo_EVP);
970 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
971 mask |= (1 << CP0MVPCo_STLB);
972 newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask);
974 // TODO: Enable/disable shared TLB, enable/disable VPEs.
976 env->mvp->CP0_MVPControl = newval;
979 void helper_mtc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
981 uint32_t mask;
982 uint32_t newval;
984 mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
985 (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
986 newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask);
988 /* Yield scheduler intercept not implemented. */
989 /* Gating storage scheduler intercept not implemented. */
991 // TODO: Enable/disable TCs.
993 env->CP0_VPEControl = newval;
996 void helper_mttc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
998 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
999 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1000 uint32_t mask;
1001 uint32_t newval;
1003 mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
1004 (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
1005 newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask);
1007 /* TODO: Enable/disable TCs. */
1009 other->CP0_VPEControl = newval;
1012 target_ulong helper_mftc0_vpecontrol(CPUMIPSState *env)
1014 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1015 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1016 /* FIXME: Mask away return zero on read bits. */
1017 return other->CP0_VPEControl;
1020 target_ulong helper_mftc0_vpeconf0(CPUMIPSState *env)
1022 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1023 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1025 return other->CP0_VPEConf0;
1028 void helper_mtc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
1030 uint32_t mask = 0;
1031 uint32_t newval;
1033 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP)) {
1034 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA))
1035 mask |= (0xff << CP0VPEC0_XTC);
1036 mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
1038 newval = (env->CP0_VPEConf0 & ~mask) | (arg1 & mask);
1040 // TODO: TC exclusive handling due to ERL/EXL.
1042 env->CP0_VPEConf0 = newval;
1045 void helper_mttc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
1047 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1048 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1049 uint32_t mask = 0;
1050 uint32_t newval;
1052 mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
1053 newval = (other->CP0_VPEConf0 & ~mask) | (arg1 & mask);
1055 /* TODO: TC exclusive handling due to ERL/EXL. */
1056 other->CP0_VPEConf0 = newval;
1059 void helper_mtc0_vpeconf1(CPUMIPSState *env, target_ulong arg1)
1061 uint32_t mask = 0;
1062 uint32_t newval;
1064 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1065 mask |= (0xff << CP0VPEC1_NCX) | (0xff << CP0VPEC1_NCP2) |
1066 (0xff << CP0VPEC1_NCP1);
1067 newval = (env->CP0_VPEConf1 & ~mask) | (arg1 & mask);
1069 /* UDI not implemented. */
1070 /* CP2 not implemented. */
1072 // TODO: Handle FPU (CP1) binding.
1074 env->CP0_VPEConf1 = newval;
1077 void helper_mtc0_yqmask(CPUMIPSState *env, target_ulong arg1)
1079 /* Yield qualifier inputs not implemented. */
1080 env->CP0_YQMask = 0x00000000;
1083 void helper_mtc0_vpeopt(CPUMIPSState *env, target_ulong arg1)
1085 env->CP0_VPEOpt = arg1 & 0x0000ffff;
1088 void helper_mtc0_entrylo0(CPUMIPSState *env, target_ulong arg1)
1090 /* Large physaddr (PABITS) not implemented */
1091 /* 1k pages not implemented */
1092 env->CP0_EntryLo0 = arg1 & 0x3FFFFFFF;
1095 void helper_mtc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
1097 uint32_t mask = env->CP0_TCStatus_rw_bitmask;
1098 uint32_t newval;
1100 newval = (env->active_tc.CP0_TCStatus & ~mask) | (arg1 & mask);
1102 env->active_tc.CP0_TCStatus = newval;
1103 sync_c0_tcstatus(env, env->current_tc, newval);
1106 void helper_mttc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
1108 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1109 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1111 if (other_tc == other->current_tc)
1112 other->active_tc.CP0_TCStatus = arg1;
1113 else
1114 other->tcs[other_tc].CP0_TCStatus = arg1;
1115 sync_c0_tcstatus(other, other_tc, arg1);
1118 void helper_mtc0_tcbind(CPUMIPSState *env, target_ulong arg1)
1120 uint32_t mask = (1 << CP0TCBd_TBE);
1121 uint32_t newval;
1123 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1124 mask |= (1 << CP0TCBd_CurVPE);
1125 newval = (env->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
1126 env->active_tc.CP0_TCBind = newval;
1129 void helper_mttc0_tcbind(CPUMIPSState *env, target_ulong arg1)
1131 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1132 uint32_t mask = (1 << CP0TCBd_TBE);
1133 uint32_t newval;
1134 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1136 if (other->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1137 mask |= (1 << CP0TCBd_CurVPE);
1138 if (other_tc == other->current_tc) {
1139 newval = (other->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
1140 other->active_tc.CP0_TCBind = newval;
1141 } else {
1142 newval = (other->tcs[other_tc].CP0_TCBind & ~mask) | (arg1 & mask);
1143 other->tcs[other_tc].CP0_TCBind = newval;
1147 void helper_mtc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
1149 env->active_tc.PC = arg1;
1150 env->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1151 env->lladdr = 0ULL;
1152 /* MIPS16 not implemented. */
1155 void helper_mttc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
1157 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1158 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1160 if (other_tc == other->current_tc) {
1161 other->active_tc.PC = arg1;
1162 other->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1163 other->lladdr = 0ULL;
1164 /* MIPS16 not implemented. */
1165 } else {
1166 other->tcs[other_tc].PC = arg1;
1167 other->tcs[other_tc].CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1168 other->lladdr = 0ULL;
1169 /* MIPS16 not implemented. */
1173 void helper_mtc0_tchalt(CPUMIPSState *env, target_ulong arg1)
1175 MIPSCPU *cpu = mips_env_get_cpu(env);
1177 env->active_tc.CP0_TCHalt = arg1 & 0x1;
1179 // TODO: Halt TC / Restart (if allocated+active) TC.
1180 if (env->active_tc.CP0_TCHalt & 1) {
1181 mips_tc_sleep(cpu, env->current_tc);
1182 } else {
1183 mips_tc_wake(cpu, env->current_tc);
1187 void helper_mttc0_tchalt(CPUMIPSState *env, target_ulong arg1)
1189 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1190 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1191 MIPSCPU *other_cpu = mips_env_get_cpu(other);
1193 // TODO: Halt TC / Restart (if allocated+active) TC.
1195 if (other_tc == other->current_tc)
1196 other->active_tc.CP0_TCHalt = arg1;
1197 else
1198 other->tcs[other_tc].CP0_TCHalt = arg1;
1200 if (arg1 & 1) {
1201 mips_tc_sleep(other_cpu, other_tc);
1202 } else {
1203 mips_tc_wake(other_cpu, other_tc);
1207 void helper_mtc0_tccontext(CPUMIPSState *env, target_ulong arg1)
1209 env->active_tc.CP0_TCContext = arg1;
1212 void helper_mttc0_tccontext(CPUMIPSState *env, target_ulong arg1)
1214 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1215 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1217 if (other_tc == other->current_tc)
1218 other->active_tc.CP0_TCContext = arg1;
1219 else
1220 other->tcs[other_tc].CP0_TCContext = arg1;
1223 void helper_mtc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
1225 env->active_tc.CP0_TCSchedule = arg1;
1228 void helper_mttc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
1230 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1231 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1233 if (other_tc == other->current_tc)
1234 other->active_tc.CP0_TCSchedule = arg1;
1235 else
1236 other->tcs[other_tc].CP0_TCSchedule = arg1;
1239 void helper_mtc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
1241 env->active_tc.CP0_TCScheFBack = arg1;
1244 void helper_mttc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
1246 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1247 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1249 if (other_tc == other->current_tc)
1250 other->active_tc.CP0_TCScheFBack = arg1;
1251 else
1252 other->tcs[other_tc].CP0_TCScheFBack = arg1;
1255 void helper_mtc0_entrylo1(CPUMIPSState *env, target_ulong arg1)
1257 /* Large physaddr (PABITS) not implemented */
1258 /* 1k pages not implemented */
1259 env->CP0_EntryLo1 = arg1 & 0x3FFFFFFF;
1262 void helper_mtc0_context(CPUMIPSState *env, target_ulong arg1)
1264 env->CP0_Context = (env->CP0_Context & 0x007FFFFF) | (arg1 & ~0x007FFFFF);
1267 void helper_mtc0_pagemask(CPUMIPSState *env, target_ulong arg1)
1269 /* 1k pages not implemented */
1270 env->CP0_PageMask = arg1 & (0x1FFFFFFF & (TARGET_PAGE_MASK << 1));
1273 void helper_mtc0_pagegrain(CPUMIPSState *env, target_ulong arg1)
1275 /* SmartMIPS not implemented */
1276 /* Large physaddr (PABITS) not implemented */
1277 /* 1k pages not implemented */
1278 env->CP0_PageGrain = 0;
1281 void helper_mtc0_wired(CPUMIPSState *env, target_ulong arg1)
1283 env->CP0_Wired = arg1 % env->tlb->nb_tlb;
1286 void helper_mtc0_srsconf0(CPUMIPSState *env, target_ulong arg1)
1288 env->CP0_SRSConf0 |= arg1 & env->CP0_SRSConf0_rw_bitmask;
1291 void helper_mtc0_srsconf1(CPUMIPSState *env, target_ulong arg1)
1293 env->CP0_SRSConf1 |= arg1 & env->CP0_SRSConf1_rw_bitmask;
1296 void helper_mtc0_srsconf2(CPUMIPSState *env, target_ulong arg1)
1298 env->CP0_SRSConf2 |= arg1 & env->CP0_SRSConf2_rw_bitmask;
1301 void helper_mtc0_srsconf3(CPUMIPSState *env, target_ulong arg1)
1303 env->CP0_SRSConf3 |= arg1 & env->CP0_SRSConf3_rw_bitmask;
1306 void helper_mtc0_srsconf4(CPUMIPSState *env, target_ulong arg1)
1308 env->CP0_SRSConf4 |= arg1 & env->CP0_SRSConf4_rw_bitmask;
1311 void helper_mtc0_hwrena(CPUMIPSState *env, target_ulong arg1)
1313 env->CP0_HWREna = arg1 & 0x0000000F;
1316 void helper_mtc0_count(CPUMIPSState *env, target_ulong arg1)
1318 cpu_mips_store_count(env, arg1);
1321 void helper_mtc0_entryhi(CPUMIPSState *env, target_ulong arg1)
1323 target_ulong old, val;
1325 /* 1k pages not implemented */
1326 val = arg1 & ((TARGET_PAGE_MASK << 1) | 0xFF);
1327 #if defined(TARGET_MIPS64)
1328 val &= env->SEGMask;
1329 #endif
1330 old = env->CP0_EntryHi;
1331 env->CP0_EntryHi = val;
1332 if (env->CP0_Config3 & (1 << CP0C3_MT)) {
1333 sync_c0_entryhi(env, env->current_tc);
1335 /* If the ASID changes, flush qemu's TLB. */
1336 if ((old & 0xFF) != (val & 0xFF))
1337 cpu_mips_tlb_flush(env, 1);
1340 void helper_mttc0_entryhi(CPUMIPSState *env, target_ulong arg1)
1342 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1343 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1345 other->CP0_EntryHi = arg1;
1346 sync_c0_entryhi(other, other_tc);
1349 void helper_mtc0_compare(CPUMIPSState *env, target_ulong arg1)
1351 cpu_mips_store_compare(env, arg1);
1354 void helper_mtc0_status(CPUMIPSState *env, target_ulong arg1)
1356 uint32_t val, old;
1357 uint32_t mask = env->CP0_Status_rw_bitmask;
1359 val = arg1 & mask;
1360 old = env->CP0_Status;
1361 env->CP0_Status = (env->CP0_Status & ~mask) | val;
1362 if (env->CP0_Config3 & (1 << CP0C3_MT)) {
1363 sync_c0_status(env, env, env->current_tc);
1364 } else {
1365 compute_hflags(env);
1368 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1369 qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x",
1370 old, old & env->CP0_Cause & CP0Ca_IP_mask,
1371 val, val & env->CP0_Cause & CP0Ca_IP_mask,
1372 env->CP0_Cause);
1373 switch (env->hflags & MIPS_HFLAG_KSU) {
1374 case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
1375 case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
1376 case MIPS_HFLAG_KM: qemu_log("\n"); break;
1377 default: cpu_abort(env, "Invalid MMU mode!\n"); break;
1382 void helper_mttc0_status(CPUMIPSState *env, target_ulong arg1)
1384 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1385 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1387 other->CP0_Status = arg1 & ~0xf1000018;
1388 sync_c0_status(env, other, other_tc);
1391 void helper_mtc0_intctl(CPUMIPSState *env, target_ulong arg1)
1393 /* vectored interrupts not implemented, no performance counters. */
1394 env->CP0_IntCtl = (env->CP0_IntCtl & ~0x000003e0) | (arg1 & 0x000003e0);
1397 void helper_mtc0_srsctl(CPUMIPSState *env, target_ulong arg1)
1399 uint32_t mask = (0xf << CP0SRSCtl_ESS) | (0xf << CP0SRSCtl_PSS);
1400 env->CP0_SRSCtl = (env->CP0_SRSCtl & ~mask) | (arg1 & mask);
1403 static void mtc0_cause(CPUMIPSState *cpu, target_ulong arg1)
1405 uint32_t mask = 0x00C00300;
1406 uint32_t old = cpu->CP0_Cause;
1407 int i;
1409 if (cpu->insn_flags & ISA_MIPS32R2) {
1410 mask |= 1 << CP0Ca_DC;
1413 cpu->CP0_Cause = (cpu->CP0_Cause & ~mask) | (arg1 & mask);
1415 if ((old ^ cpu->CP0_Cause) & (1 << CP0Ca_DC)) {
1416 if (cpu->CP0_Cause & (1 << CP0Ca_DC)) {
1417 cpu_mips_stop_count(cpu);
1418 } else {
1419 cpu_mips_start_count(cpu);
1423 /* Set/reset software interrupts */
1424 for (i = 0 ; i < 2 ; i++) {
1425 if ((old ^ cpu->CP0_Cause) & (1 << (CP0Ca_IP + i))) {
1426 cpu_mips_soft_irq(cpu, i, cpu->CP0_Cause & (1 << (CP0Ca_IP + i)));
1431 void helper_mtc0_cause(CPUMIPSState *env, target_ulong arg1)
1433 mtc0_cause(env, arg1);
1436 void helper_mttc0_cause(CPUMIPSState *env, target_ulong arg1)
1438 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1439 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1441 mtc0_cause(other, arg1);
1444 target_ulong helper_mftc0_epc(CPUMIPSState *env)
1446 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1447 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1449 return other->CP0_EPC;
1452 target_ulong helper_mftc0_ebase(CPUMIPSState *env)
1454 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1455 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1457 return other->CP0_EBase;
1460 void helper_mtc0_ebase(CPUMIPSState *env, target_ulong arg1)
1462 /* vectored interrupts not implemented */
1463 env->CP0_EBase = (env->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
1466 void helper_mttc0_ebase(CPUMIPSState *env, target_ulong arg1)
1468 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1469 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1470 other->CP0_EBase = (other->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
1473 target_ulong helper_mftc0_configx(CPUMIPSState *env, target_ulong idx)
1475 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1476 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1478 switch (idx) {
1479 case 0: return other->CP0_Config0;
1480 case 1: return other->CP0_Config1;
1481 case 2: return other->CP0_Config2;
1482 case 3: return other->CP0_Config3;
1483 /* 4 and 5 are reserved. */
1484 case 6: return other->CP0_Config6;
1485 case 7: return other->CP0_Config7;
1486 default:
1487 break;
1489 return 0;
1492 void helper_mtc0_config0(CPUMIPSState *env, target_ulong arg1)
1494 env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (arg1 & 0x00000007);
1497 void helper_mtc0_config2(CPUMIPSState *env, target_ulong arg1)
1499 /* tertiary/secondary caches not implemented */
1500 env->CP0_Config2 = (env->CP0_Config2 & 0x8FFF0FFF);
1503 void helper_mtc0_lladdr(CPUMIPSState *env, target_ulong arg1)
1505 target_long mask = env->CP0_LLAddr_rw_bitmask;
1506 arg1 = arg1 << env->CP0_LLAddr_shift;
1507 env->lladdr = (env->lladdr & ~mask) | (arg1 & mask);
1510 void helper_mtc0_watchlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1512 /* Watch exceptions for instructions, data loads, data stores
1513 not implemented. */
1514 env->CP0_WatchLo[sel] = (arg1 & ~0x7);
1517 void helper_mtc0_watchhi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1519 env->CP0_WatchHi[sel] = (arg1 & 0x40FF0FF8);
1520 env->CP0_WatchHi[sel] &= ~(env->CP0_WatchHi[sel] & arg1 & 0x7);
1523 void helper_mtc0_xcontext(CPUMIPSState *env, target_ulong arg1)
1525 target_ulong mask = (1ULL << (env->SEGBITS - 7)) - 1;
1526 env->CP0_XContext = (env->CP0_XContext & mask) | (arg1 & ~mask);
1529 void helper_mtc0_framemask(CPUMIPSState *env, target_ulong arg1)
1531 env->CP0_Framemask = arg1; /* XXX */
1534 void helper_mtc0_debug(CPUMIPSState *env, target_ulong arg1)
1536 env->CP0_Debug = (env->CP0_Debug & 0x8C03FC1F) | (arg1 & 0x13300120);
1537 if (arg1 & (1 << CP0DB_DM))
1538 env->hflags |= MIPS_HFLAG_DM;
1539 else
1540 env->hflags &= ~MIPS_HFLAG_DM;
1543 void helper_mttc0_debug(CPUMIPSState *env, target_ulong arg1)
1545 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1546 uint32_t val = arg1 & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt));
1547 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1549 /* XXX: Might be wrong, check with EJTAG spec. */
1550 if (other_tc == other->current_tc)
1551 other->active_tc.CP0_Debug_tcstatus = val;
1552 else
1553 other->tcs[other_tc].CP0_Debug_tcstatus = val;
1554 other->CP0_Debug = (other->CP0_Debug &
1555 ((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
1556 (arg1 & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
1559 void helper_mtc0_performance0(CPUMIPSState *env, target_ulong arg1)
1561 env->CP0_Performance0 = arg1 & 0x000007ff;
1564 void helper_mtc0_taglo(CPUMIPSState *env, target_ulong arg1)
1566 env->CP0_TagLo = arg1 & 0xFFFFFCF6;
1569 void helper_mtc0_datalo(CPUMIPSState *env, target_ulong arg1)
1571 env->CP0_DataLo = arg1; /* XXX */
1574 void helper_mtc0_taghi(CPUMIPSState *env, target_ulong arg1)
1576 env->CP0_TagHi = arg1; /* XXX */
1579 void helper_mtc0_datahi(CPUMIPSState *env, target_ulong arg1)
1581 env->CP0_DataHi = arg1; /* XXX */
1584 /* MIPS MT functions */
1585 target_ulong helper_mftgpr(CPUMIPSState *env, uint32_t sel)
1587 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1588 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1590 if (other_tc == other->current_tc)
1591 return other->active_tc.gpr[sel];
1592 else
1593 return other->tcs[other_tc].gpr[sel];
1596 target_ulong helper_mftlo(CPUMIPSState *env, uint32_t sel)
1598 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1599 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1601 if (other_tc == other->current_tc)
1602 return other->active_tc.LO[sel];
1603 else
1604 return other->tcs[other_tc].LO[sel];
1607 target_ulong helper_mfthi(CPUMIPSState *env, uint32_t sel)
1609 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1610 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1612 if (other_tc == other->current_tc)
1613 return other->active_tc.HI[sel];
1614 else
1615 return other->tcs[other_tc].HI[sel];
1618 target_ulong helper_mftacx(CPUMIPSState *env, uint32_t sel)
1620 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1621 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1623 if (other_tc == other->current_tc)
1624 return other->active_tc.ACX[sel];
1625 else
1626 return other->tcs[other_tc].ACX[sel];
1629 target_ulong helper_mftdsp(CPUMIPSState *env)
1631 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1632 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1634 if (other_tc == other->current_tc)
1635 return other->active_tc.DSPControl;
1636 else
1637 return other->tcs[other_tc].DSPControl;
1640 void helper_mttgpr(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1642 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1643 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1645 if (other_tc == other->current_tc)
1646 other->active_tc.gpr[sel] = arg1;
1647 else
1648 other->tcs[other_tc].gpr[sel] = arg1;
1651 void helper_mttlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1653 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1654 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1656 if (other_tc == other->current_tc)
1657 other->active_tc.LO[sel] = arg1;
1658 else
1659 other->tcs[other_tc].LO[sel] = arg1;
1662 void helper_mtthi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1664 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1665 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1667 if (other_tc == other->current_tc)
1668 other->active_tc.HI[sel] = arg1;
1669 else
1670 other->tcs[other_tc].HI[sel] = arg1;
1673 void helper_mttacx(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1675 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1676 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1678 if (other_tc == other->current_tc)
1679 other->active_tc.ACX[sel] = arg1;
1680 else
1681 other->tcs[other_tc].ACX[sel] = arg1;
1684 void helper_mttdsp(CPUMIPSState *env, target_ulong arg1)
1686 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1687 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1689 if (other_tc == other->current_tc)
1690 other->active_tc.DSPControl = arg1;
1691 else
1692 other->tcs[other_tc].DSPControl = arg1;
1695 /* MIPS MT functions */
1696 target_ulong helper_dmt(void)
1698 // TODO
1699 return 0;
1702 target_ulong helper_emt(void)
1704 // TODO
1705 return 0;
1708 target_ulong helper_dvpe(CPUMIPSState *env)
1710 CPUMIPSState *other_cpu_env = first_cpu;
1711 target_ulong prev = env->mvp->CP0_MVPControl;
1713 do {
1714 /* Turn off all VPEs except the one executing the dvpe. */
1715 if (other_cpu_env != env) {
1716 MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env);
1718 other_cpu_env->mvp->CP0_MVPControl &= ~(1 << CP0MVPCo_EVP);
1719 mips_vpe_sleep(other_cpu);
1721 other_cpu_env = other_cpu_env->next_cpu;
1722 } while (other_cpu_env);
1723 return prev;
1726 target_ulong helper_evpe(CPUMIPSState *env)
1728 CPUMIPSState *other_cpu_env = first_cpu;
1729 target_ulong prev = env->mvp->CP0_MVPControl;
1731 do {
1732 MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env);
1734 if (other_cpu_env != env
1735 /* If the VPE is WFI, don't disturb its sleep. */
1736 && !mips_vpe_is_wfi(other_cpu)) {
1737 /* Enable the VPE. */
1738 other_cpu_env->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP);
1739 mips_vpe_wake(other_cpu_env); /* And wake it up. */
1741 other_cpu_env = other_cpu_env->next_cpu;
1742 } while (other_cpu_env);
1743 return prev;
1745 #endif /* !CONFIG_USER_ONLY */
1747 void helper_fork(target_ulong arg1, target_ulong arg2)
1749 // arg1 = rt, arg2 = rs
1750 arg1 = 0;
1751 // TODO: store to TC register
1754 target_ulong helper_yield(CPUMIPSState *env, target_ulong arg)
1756 target_long arg1 = arg;
1758 if (arg1 < 0) {
1759 /* No scheduling policy implemented. */
1760 if (arg1 != -2) {
1761 if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) &&
1762 env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) {
1763 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1764 env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT;
1765 helper_raise_exception(env, EXCP_THREAD);
1768 } else if (arg1 == 0) {
1769 if (0 /* TODO: TC underflow */) {
1770 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1771 helper_raise_exception(env, EXCP_THREAD);
1772 } else {
1773 // TODO: Deallocate TC
1775 } else if (arg1 > 0) {
1776 /* Yield qualifier inputs not implemented. */
1777 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1778 env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT;
1779 helper_raise_exception(env, EXCP_THREAD);
1781 return env->CP0_YQMask;
1784 #ifndef CONFIG_USER_ONLY
1785 /* TLB management */
1786 static void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global)
1788 /* Flush qemu's TLB and discard all shadowed entries. */
1789 tlb_flush (env, flush_global);
1790 env->tlb->tlb_in_use = env->tlb->nb_tlb;
1793 static void r4k_mips_tlb_flush_extra (CPUMIPSState *env, int first)
1795 /* Discard entries from env->tlb[first] onwards. */
1796 while (env->tlb->tlb_in_use > first) {
1797 r4k_invalidate_tlb(env, --env->tlb->tlb_in_use, 0);
1801 static void r4k_fill_tlb(CPUMIPSState *env, int idx)
1803 r4k_tlb_t *tlb;
1805 /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
1806 tlb = &env->tlb->mmu.r4k.tlb[idx];
1807 tlb->VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
1808 #if defined(TARGET_MIPS64)
1809 tlb->VPN &= env->SEGMask;
1810 #endif
1811 tlb->ASID = env->CP0_EntryHi & 0xFF;
1812 tlb->PageMask = env->CP0_PageMask;
1813 tlb->G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
1814 tlb->V0 = (env->CP0_EntryLo0 & 2) != 0;
1815 tlb->D0 = (env->CP0_EntryLo0 & 4) != 0;
1816 tlb->C0 = (env->CP0_EntryLo0 >> 3) & 0x7;
1817 tlb->PFN[0] = (env->CP0_EntryLo0 >> 6) << 12;
1818 tlb->V1 = (env->CP0_EntryLo1 & 2) != 0;
1819 tlb->D1 = (env->CP0_EntryLo1 & 4) != 0;
1820 tlb->C1 = (env->CP0_EntryLo1 >> 3) & 0x7;
1821 tlb->PFN[1] = (env->CP0_EntryLo1 >> 6) << 12;
1824 void r4k_helper_tlbwi(CPUMIPSState *env)
1826 r4k_tlb_t *tlb;
1827 int idx;
1828 target_ulong VPN;
1829 uint8_t ASID;
1830 bool G, V0, D0, V1, D1;
1832 idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
1833 tlb = &env->tlb->mmu.r4k.tlb[idx];
1834 VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
1835 #if defined(TARGET_MIPS64)
1836 VPN &= env->SEGMask;
1837 #endif
1838 ASID = env->CP0_EntryHi & 0xff;
1839 G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
1840 V0 = (env->CP0_EntryLo0 & 2) != 0;
1841 D0 = (env->CP0_EntryLo0 & 4) != 0;
1842 V1 = (env->CP0_EntryLo1 & 2) != 0;
1843 D1 = (env->CP0_EntryLo1 & 4) != 0;
1845 /* Discard cached TLB entries, unless tlbwi is just upgrading access
1846 permissions on the current entry. */
1847 if (tlb->VPN != VPN || tlb->ASID != ASID || tlb->G != G ||
1848 (tlb->V0 && !V0) || (tlb->D0 && !D0) ||
1849 (tlb->V1 && !V1) || (tlb->D1 && !D1)) {
1850 r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
1853 r4k_invalidate_tlb(env, idx, 0);
1854 r4k_fill_tlb(env, idx);
1857 void r4k_helper_tlbwr(CPUMIPSState *env)
1859 int r = cpu_mips_get_random(env);
1861 r4k_invalidate_tlb(env, r, 1);
1862 r4k_fill_tlb(env, r);
1865 void r4k_helper_tlbp(CPUMIPSState *env)
1867 r4k_tlb_t *tlb;
1868 target_ulong mask;
1869 target_ulong tag;
1870 target_ulong VPN;
1871 uint8_t ASID;
1872 int i;
1874 ASID = env->CP0_EntryHi & 0xFF;
1875 for (i = 0; i < env->tlb->nb_tlb; i++) {
1876 tlb = &env->tlb->mmu.r4k.tlb[i];
1877 /* 1k pages are not supported. */
1878 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
1879 tag = env->CP0_EntryHi & ~mask;
1880 VPN = tlb->VPN & ~mask;
1881 #if defined(TARGET_MIPS64)
1882 tag &= env->SEGMask;
1883 #endif
1884 /* Check ASID, virtual page number & size */
1885 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
1886 /* TLB match */
1887 env->CP0_Index = i;
1888 break;
1891 if (i == env->tlb->nb_tlb) {
1892 /* No match. Discard any shadow entries, if any of them match. */
1893 for (i = env->tlb->nb_tlb; i < env->tlb->tlb_in_use; i++) {
1894 tlb = &env->tlb->mmu.r4k.tlb[i];
1895 /* 1k pages are not supported. */
1896 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
1897 tag = env->CP0_EntryHi & ~mask;
1898 VPN = tlb->VPN & ~mask;
1899 #if defined(TARGET_MIPS64)
1900 tag &= env->SEGMask;
1901 #endif
1902 /* Check ASID, virtual page number & size */
1903 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
1904 r4k_mips_tlb_flush_extra (env, i);
1905 break;
1909 env->CP0_Index |= 0x80000000;
1913 void r4k_helper_tlbr(CPUMIPSState *env)
1915 r4k_tlb_t *tlb;
1916 uint8_t ASID;
1917 int idx;
1919 ASID = env->CP0_EntryHi & 0xFF;
1920 idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
1921 tlb = &env->tlb->mmu.r4k.tlb[idx];
1923 /* If this will change the current ASID, flush qemu's TLB. */
1924 if (ASID != tlb->ASID)
1925 cpu_mips_tlb_flush (env, 1);
1927 r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
1929 env->CP0_EntryHi = tlb->VPN | tlb->ASID;
1930 env->CP0_PageMask = tlb->PageMask;
1931 env->CP0_EntryLo0 = tlb->G | (tlb->V0 << 1) | (tlb->D0 << 2) |
1932 (tlb->C0 << 3) | (tlb->PFN[0] >> 6);
1933 env->CP0_EntryLo1 = tlb->G | (tlb->V1 << 1) | (tlb->D1 << 2) |
1934 (tlb->C1 << 3) | (tlb->PFN[1] >> 6);
1937 void helper_tlbwi(CPUMIPSState *env)
1939 env->tlb->helper_tlbwi(env);
1942 void helper_tlbwr(CPUMIPSState *env)
1944 env->tlb->helper_tlbwr(env);
1947 void helper_tlbp(CPUMIPSState *env)
1949 env->tlb->helper_tlbp(env);
1952 void helper_tlbr(CPUMIPSState *env)
1954 env->tlb->helper_tlbr(env);
1957 /* Specials */
1958 target_ulong helper_di(CPUMIPSState *env)
1960 target_ulong t0 = env->CP0_Status;
1962 env->CP0_Status = t0 & ~(1 << CP0St_IE);
1963 return t0;
1966 target_ulong helper_ei(CPUMIPSState *env)
1968 target_ulong t0 = env->CP0_Status;
1970 env->CP0_Status = t0 | (1 << CP0St_IE);
1971 return t0;
1974 static void debug_pre_eret(CPUMIPSState *env)
1976 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1977 qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1978 env->active_tc.PC, env->CP0_EPC);
1979 if (env->CP0_Status & (1 << CP0St_ERL))
1980 qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
1981 if (env->hflags & MIPS_HFLAG_DM)
1982 qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
1983 qemu_log("\n");
1987 static void debug_post_eret(CPUMIPSState *env)
1989 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1990 qemu_log(" => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1991 env->active_tc.PC, env->CP0_EPC);
1992 if (env->CP0_Status & (1 << CP0St_ERL))
1993 qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
1994 if (env->hflags & MIPS_HFLAG_DM)
1995 qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
1996 switch (env->hflags & MIPS_HFLAG_KSU) {
1997 case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
1998 case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
1999 case MIPS_HFLAG_KM: qemu_log("\n"); break;
2000 default: cpu_abort(env, "Invalid MMU mode!\n"); break;
2005 static void set_pc(CPUMIPSState *env, target_ulong error_pc)
2007 env->active_tc.PC = error_pc & ~(target_ulong)1;
2008 if (error_pc & 1) {
2009 env->hflags |= MIPS_HFLAG_M16;
2010 } else {
2011 env->hflags &= ~(MIPS_HFLAG_M16);
2015 void helper_eret(CPUMIPSState *env)
2017 debug_pre_eret(env);
2018 if (env->CP0_Status & (1 << CP0St_ERL)) {
2019 set_pc(env, env->CP0_ErrorEPC);
2020 env->CP0_Status &= ~(1 << CP0St_ERL);
2021 } else {
2022 set_pc(env, env->CP0_EPC);
2023 env->CP0_Status &= ~(1 << CP0St_EXL);
2025 compute_hflags(env);
2026 debug_post_eret(env);
2027 env->lladdr = 1;
2030 void helper_deret(CPUMIPSState *env)
2032 debug_pre_eret(env);
2033 set_pc(env, env->CP0_DEPC);
2035 env->hflags &= MIPS_HFLAG_DM;
2036 compute_hflags(env);
2037 debug_post_eret(env);
2038 env->lladdr = 1;
2040 #endif /* !CONFIG_USER_ONLY */
2042 target_ulong helper_rdhwr_cpunum(CPUMIPSState *env)
2044 if ((env->hflags & MIPS_HFLAG_CP0) ||
2045 (env->CP0_HWREna & (1 << 0)))
2046 return env->CP0_EBase & 0x3ff;
2047 else
2048 helper_raise_exception(env, EXCP_RI);
2050 return 0;
2053 target_ulong helper_rdhwr_synci_step(CPUMIPSState *env)
2055 if ((env->hflags & MIPS_HFLAG_CP0) ||
2056 (env->CP0_HWREna & (1 << 1)))
2057 return env->SYNCI_Step;
2058 else
2059 helper_raise_exception(env, EXCP_RI);
2061 return 0;
2064 target_ulong helper_rdhwr_cc(CPUMIPSState *env)
2066 if ((env->hflags & MIPS_HFLAG_CP0) ||
2067 (env->CP0_HWREna & (1 << 2)))
2068 return env->CP0_Count;
2069 else
2070 helper_raise_exception(env, EXCP_RI);
2072 return 0;
2075 target_ulong helper_rdhwr_ccres(CPUMIPSState *env)
2077 if ((env->hflags & MIPS_HFLAG_CP0) ||
2078 (env->CP0_HWREna & (1 << 3)))
2079 return env->CCRes;
2080 else
2081 helper_raise_exception(env, EXCP_RI);
2083 return 0;
2086 void helper_pmon(CPUMIPSState *env, int function)
2088 function /= 2;
2089 switch (function) {
2090 case 2: /* TODO: char inbyte(int waitflag); */
2091 if (env->active_tc.gpr[4] == 0)
2092 env->active_tc.gpr[2] = -1;
2093 /* Fall through */
2094 case 11: /* TODO: char inbyte (void); */
2095 env->active_tc.gpr[2] = -1;
2096 break;
2097 case 3:
2098 case 12:
2099 printf("%c", (char)(env->active_tc.gpr[4] & 0xFF));
2100 break;
2101 case 17:
2102 break;
2103 case 158:
2105 unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4];
2106 printf("%s", fmt);
2108 break;
2112 void helper_wait(CPUMIPSState *env)
2114 env->halted = 1;
2115 cpu_reset_interrupt(env, CPU_INTERRUPT_WAKE);
2116 helper_raise_exception(env, EXCP_HLT);
2119 #if !defined(CONFIG_USER_ONLY)
2121 static void QEMU_NORETURN do_unaligned_access(CPUMIPSState *env,
2122 target_ulong addr, int is_write,
2123 int is_user, uintptr_t retaddr);
2125 #define MMUSUFFIX _mmu
2126 #define ALIGNED_ONLY
2128 #define SHIFT 0
2129 #include "exec/softmmu_template.h"
2131 #define SHIFT 1
2132 #include "exec/softmmu_template.h"
2134 #define SHIFT 2
2135 #include "exec/softmmu_template.h"
2137 #define SHIFT 3
2138 #include "exec/softmmu_template.h"
2140 static void do_unaligned_access(CPUMIPSState *env, target_ulong addr,
2141 int is_write, int is_user, uintptr_t retaddr)
2143 env->CP0_BadVAddr = addr;
2144 do_raise_exception(env, (is_write == 1) ? EXCP_AdES : EXCP_AdEL, retaddr);
2147 void tlb_fill(CPUMIPSState *env, target_ulong addr, int is_write, int mmu_idx,
2148 uintptr_t retaddr)
2150 int ret;
2152 ret = cpu_mips_handle_mmu_fault(env, addr, is_write, mmu_idx);
2153 if (ret) {
2154 do_raise_exception_err(env, env->exception_index,
2155 env->error_code, retaddr);
2159 void cpu_unassigned_access(CPUMIPSState *env, hwaddr addr,
2160 int is_write, int is_exec, int unused, int size)
2162 if (is_exec)
2163 helper_raise_exception(env, EXCP_IBE);
2164 else
2165 helper_raise_exception(env, EXCP_DBE);
2167 #endif /* !CONFIG_USER_ONLY */
2169 /* Complex FPU operations which may need stack space. */
2171 #define FLOAT_TWO32 make_float32(1 << 30)
2172 #define FLOAT_TWO64 make_float64(1ULL << 62)
2173 #define FP_TO_INT32_OVERFLOW 0x7fffffff
2174 #define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
2176 /* convert MIPS rounding mode in FCR31 to IEEE library */
2177 static unsigned int ieee_rm[] = {
2178 float_round_nearest_even,
2179 float_round_to_zero,
2180 float_round_up,
2181 float_round_down
2184 static inline void restore_rounding_mode(CPUMIPSState *env)
2186 set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3],
2187 &env->active_fpu.fp_status);
2190 static inline void restore_flush_mode(CPUMIPSState *env)
2192 set_flush_to_zero((env->active_fpu.fcr31 & (1 << 24)) != 0,
2193 &env->active_fpu.fp_status);
2196 target_ulong helper_cfc1(CPUMIPSState *env, uint32_t reg)
2198 target_ulong arg1;
2200 switch (reg) {
2201 case 0:
2202 arg1 = (int32_t)env->active_fpu.fcr0;
2203 break;
2204 case 25:
2205 arg1 = ((env->active_fpu.fcr31 >> 24) & 0xfe) | ((env->active_fpu.fcr31 >> 23) & 0x1);
2206 break;
2207 case 26:
2208 arg1 = env->active_fpu.fcr31 & 0x0003f07c;
2209 break;
2210 case 28:
2211 arg1 = (env->active_fpu.fcr31 & 0x00000f83) | ((env->active_fpu.fcr31 >> 22) & 0x4);
2212 break;
2213 default:
2214 arg1 = (int32_t)env->active_fpu.fcr31;
2215 break;
2218 return arg1;
2221 void helper_ctc1(CPUMIPSState *env, target_ulong arg1, uint32_t reg)
2223 switch(reg) {
2224 case 25:
2225 if (arg1 & 0xffffff00)
2226 return;
2227 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0x017fffff) | ((arg1 & 0xfe) << 24) |
2228 ((arg1 & 0x1) << 23);
2229 break;
2230 case 26:
2231 if (arg1 & 0x007c0000)
2232 return;
2233 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfffc0f83) | (arg1 & 0x0003f07c);
2234 break;
2235 case 28:
2236 if (arg1 & 0x007c0000)
2237 return;
2238 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfefff07c) | (arg1 & 0x00000f83) |
2239 ((arg1 & 0x4) << 22);
2240 break;
2241 case 31:
2242 if (arg1 & 0x007c0000)
2243 return;
2244 env->active_fpu.fcr31 = arg1;
2245 break;
2246 default:
2247 return;
2249 /* set rounding mode */
2250 restore_rounding_mode(env);
2251 /* set flush-to-zero mode */
2252 restore_flush_mode(env);
2253 set_float_exception_flags(0, &env->active_fpu.fp_status);
2254 if ((GET_FP_ENABLE(env->active_fpu.fcr31) | 0x20) & GET_FP_CAUSE(env->active_fpu.fcr31))
2255 do_raise_exception(env, EXCP_FPE, GETPC());
2258 static inline int ieee_ex_to_mips(int xcpt)
2260 int ret = 0;
2261 if (xcpt) {
2262 if (xcpt & float_flag_invalid) {
2263 ret |= FP_INVALID;
2265 if (xcpt & float_flag_overflow) {
2266 ret |= FP_OVERFLOW;
2268 if (xcpt & float_flag_underflow) {
2269 ret |= FP_UNDERFLOW;
2271 if (xcpt & float_flag_divbyzero) {
2272 ret |= FP_DIV0;
2274 if (xcpt & float_flag_inexact) {
2275 ret |= FP_INEXACT;
2278 return ret;
2281 static inline void update_fcr31(CPUMIPSState *env, uintptr_t pc)
2283 int tmp = ieee_ex_to_mips(get_float_exception_flags(&env->active_fpu.fp_status));
2285 SET_FP_CAUSE(env->active_fpu.fcr31, tmp);
2287 if (tmp) {
2288 set_float_exception_flags(0, &env->active_fpu.fp_status);
2290 if (GET_FP_ENABLE(env->active_fpu.fcr31) & tmp) {
2291 do_raise_exception(env, EXCP_FPE, pc);
2292 } else {
2293 UPDATE_FP_FLAGS(env->active_fpu.fcr31, tmp);
2298 /* Float support.
2299 Single precition routines have a "s" suffix, double precision a
2300 "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps",
2301 paired single lower "pl", paired single upper "pu". */
2303 /* unary operations, modifying fp status */
2304 uint64_t helper_float_sqrt_d(CPUMIPSState *env, uint64_t fdt0)
2306 fdt0 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2307 update_fcr31(env, GETPC());
2308 return fdt0;
2311 uint32_t helper_float_sqrt_s(CPUMIPSState *env, uint32_t fst0)
2313 fst0 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2314 update_fcr31(env, GETPC());
2315 return fst0;
2318 uint64_t helper_float_cvtd_s(CPUMIPSState *env, uint32_t fst0)
2320 uint64_t fdt2;
2322 fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status);
2323 update_fcr31(env, GETPC());
2324 return fdt2;
2327 uint64_t helper_float_cvtd_w(CPUMIPSState *env, uint32_t wt0)
2329 uint64_t fdt2;
2331 fdt2 = int32_to_float64(wt0, &env->active_fpu.fp_status);
2332 update_fcr31(env, GETPC());
2333 return fdt2;
2336 uint64_t helper_float_cvtd_l(CPUMIPSState *env, uint64_t dt0)
2338 uint64_t fdt2;
2340 fdt2 = int64_to_float64(dt0, &env->active_fpu.fp_status);
2341 update_fcr31(env, GETPC());
2342 return fdt2;
2345 uint64_t helper_float_cvtl_d(CPUMIPSState *env, uint64_t fdt0)
2347 uint64_t dt2;
2349 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2350 if (get_float_exception_flags(&env->active_fpu.fp_status)
2351 & (float_flag_invalid | float_flag_overflow)) {
2352 dt2 = FP_TO_INT64_OVERFLOW;
2354 update_fcr31(env, GETPC());
2355 return dt2;
2358 uint64_t helper_float_cvtl_s(CPUMIPSState *env, uint32_t fst0)
2360 uint64_t dt2;
2362 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2363 if (get_float_exception_flags(&env->active_fpu.fp_status)
2364 & (float_flag_invalid | float_flag_overflow)) {
2365 dt2 = FP_TO_INT64_OVERFLOW;
2367 update_fcr31(env, GETPC());
2368 return dt2;
2371 uint64_t helper_float_cvtps_pw(CPUMIPSState *env, uint64_t dt0)
2373 uint32_t fst2;
2374 uint32_t fsth2;
2376 fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2377 fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status);
2378 update_fcr31(env, GETPC());
2379 return ((uint64_t)fsth2 << 32) | fst2;
2382 uint64_t helper_float_cvtpw_ps(CPUMIPSState *env, uint64_t fdt0)
2384 uint32_t wt2;
2385 uint32_t wth2;
2386 int excp, excph;
2388 wt2 = float32_to_int32(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2389 excp = get_float_exception_flags(&env->active_fpu.fp_status);
2390 if (excp & (float_flag_overflow | float_flag_invalid)) {
2391 wt2 = FP_TO_INT32_OVERFLOW;
2394 set_float_exception_flags(0, &env->active_fpu.fp_status);
2395 wth2 = float32_to_int32(fdt0 >> 32, &env->active_fpu.fp_status);
2396 excph = get_float_exception_flags(&env->active_fpu.fp_status);
2397 if (excph & (float_flag_overflow | float_flag_invalid)) {
2398 wth2 = FP_TO_INT32_OVERFLOW;
2401 set_float_exception_flags(excp | excph, &env->active_fpu.fp_status);
2402 update_fcr31(env, GETPC());
2404 return ((uint64_t)wth2 << 32) | wt2;
2407 uint32_t helper_float_cvts_d(CPUMIPSState *env, uint64_t fdt0)
2409 uint32_t fst2;
2411 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status);
2412 update_fcr31(env, GETPC());
2413 return fst2;
2416 uint32_t helper_float_cvts_w(CPUMIPSState *env, uint32_t wt0)
2418 uint32_t fst2;
2420 fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status);
2421 update_fcr31(env, GETPC());
2422 return fst2;
2425 uint32_t helper_float_cvts_l(CPUMIPSState *env, uint64_t dt0)
2427 uint32_t fst2;
2429 fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status);
2430 update_fcr31(env, GETPC());
2431 return fst2;
2434 uint32_t helper_float_cvts_pl(CPUMIPSState *env, uint32_t wt0)
2436 uint32_t wt2;
2438 wt2 = wt0;
2439 update_fcr31(env, GETPC());
2440 return wt2;
2443 uint32_t helper_float_cvts_pu(CPUMIPSState *env, uint32_t wth0)
2445 uint32_t wt2;
2447 wt2 = wth0;
2448 update_fcr31(env, GETPC());
2449 return wt2;
2452 uint32_t helper_float_cvtw_s(CPUMIPSState *env, uint32_t fst0)
2454 uint32_t wt2;
2456 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2457 update_fcr31(env, GETPC());
2458 if (get_float_exception_flags(&env->active_fpu.fp_status)
2459 & (float_flag_invalid | float_flag_overflow)) {
2460 wt2 = FP_TO_INT32_OVERFLOW;
2462 return wt2;
2465 uint32_t helper_float_cvtw_d(CPUMIPSState *env, uint64_t fdt0)
2467 uint32_t wt2;
2469 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2470 if (get_float_exception_flags(&env->active_fpu.fp_status)
2471 & (float_flag_invalid | float_flag_overflow)) {
2472 wt2 = FP_TO_INT32_OVERFLOW;
2474 update_fcr31(env, GETPC());
2475 return wt2;
2478 uint64_t helper_float_roundl_d(CPUMIPSState *env, uint64_t fdt0)
2480 uint64_t dt2;
2482 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2483 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2484 restore_rounding_mode(env);
2485 if (get_float_exception_flags(&env->active_fpu.fp_status)
2486 & (float_flag_invalid | float_flag_overflow)) {
2487 dt2 = FP_TO_INT64_OVERFLOW;
2489 update_fcr31(env, GETPC());
2490 return dt2;
2493 uint64_t helper_float_roundl_s(CPUMIPSState *env, uint32_t fst0)
2495 uint64_t dt2;
2497 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2498 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2499 restore_rounding_mode(env);
2500 if (get_float_exception_flags(&env->active_fpu.fp_status)
2501 & (float_flag_invalid | float_flag_overflow)) {
2502 dt2 = FP_TO_INT64_OVERFLOW;
2504 update_fcr31(env, GETPC());
2505 return dt2;
2508 uint32_t helper_float_roundw_d(CPUMIPSState *env, uint64_t fdt0)
2510 uint32_t wt2;
2512 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2513 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2514 restore_rounding_mode(env);
2515 if (get_float_exception_flags(&env->active_fpu.fp_status)
2516 & (float_flag_invalid | float_flag_overflow)) {
2517 wt2 = FP_TO_INT32_OVERFLOW;
2519 update_fcr31(env, GETPC());
2520 return wt2;
2523 uint32_t helper_float_roundw_s(CPUMIPSState *env, uint32_t fst0)
2525 uint32_t wt2;
2527 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2528 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2529 restore_rounding_mode(env);
2530 if (get_float_exception_flags(&env->active_fpu.fp_status)
2531 & (float_flag_invalid | float_flag_overflow)) {
2532 wt2 = FP_TO_INT32_OVERFLOW;
2534 update_fcr31(env, GETPC());
2535 return wt2;
2538 uint64_t helper_float_truncl_d(CPUMIPSState *env, uint64_t fdt0)
2540 uint64_t dt2;
2542 dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status);
2543 if (get_float_exception_flags(&env->active_fpu.fp_status)
2544 & (float_flag_invalid | float_flag_overflow)) {
2545 dt2 = FP_TO_INT64_OVERFLOW;
2547 update_fcr31(env, GETPC());
2548 return dt2;
2551 uint64_t helper_float_truncl_s(CPUMIPSState *env, uint32_t fst0)
2553 uint64_t dt2;
2555 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status);
2556 if (get_float_exception_flags(&env->active_fpu.fp_status)
2557 & (float_flag_invalid | float_flag_overflow)) {
2558 dt2 = FP_TO_INT64_OVERFLOW;
2560 update_fcr31(env, GETPC());
2561 return dt2;
2564 uint32_t helper_float_truncw_d(CPUMIPSState *env, uint64_t fdt0)
2566 uint32_t wt2;
2568 wt2 = float64_to_int32_round_to_zero(fdt0, &env->active_fpu.fp_status);
2569 if (get_float_exception_flags(&env->active_fpu.fp_status)
2570 & (float_flag_invalid | float_flag_overflow)) {
2571 wt2 = FP_TO_INT32_OVERFLOW;
2573 update_fcr31(env, GETPC());
2574 return wt2;
2577 uint32_t helper_float_truncw_s(CPUMIPSState *env, uint32_t fst0)
2579 uint32_t wt2;
2581 wt2 = float32_to_int32_round_to_zero(fst0, &env->active_fpu.fp_status);
2582 if (get_float_exception_flags(&env->active_fpu.fp_status)
2583 & (float_flag_invalid | float_flag_overflow)) {
2584 wt2 = FP_TO_INT32_OVERFLOW;
2586 update_fcr31(env, GETPC());
2587 return wt2;
2590 uint64_t helper_float_ceill_d(CPUMIPSState *env, uint64_t fdt0)
2592 uint64_t dt2;
2594 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2595 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2596 restore_rounding_mode(env);
2597 if (get_float_exception_flags(&env->active_fpu.fp_status)
2598 & (float_flag_invalid | float_flag_overflow)) {
2599 dt2 = FP_TO_INT64_OVERFLOW;
2601 update_fcr31(env, GETPC());
2602 return dt2;
2605 uint64_t helper_float_ceill_s(CPUMIPSState *env, uint32_t fst0)
2607 uint64_t dt2;
2609 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2610 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2611 restore_rounding_mode(env);
2612 if (get_float_exception_flags(&env->active_fpu.fp_status)
2613 & (float_flag_invalid | float_flag_overflow)) {
2614 dt2 = FP_TO_INT64_OVERFLOW;
2616 update_fcr31(env, GETPC());
2617 return dt2;
2620 uint32_t helper_float_ceilw_d(CPUMIPSState *env, uint64_t fdt0)
2622 uint32_t wt2;
2624 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2625 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2626 restore_rounding_mode(env);
2627 if (get_float_exception_flags(&env->active_fpu.fp_status)
2628 & (float_flag_invalid | float_flag_overflow)) {
2629 wt2 = FP_TO_INT32_OVERFLOW;
2631 update_fcr31(env, GETPC());
2632 return wt2;
2635 uint32_t helper_float_ceilw_s(CPUMIPSState *env, uint32_t fst0)
2637 uint32_t wt2;
2639 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2640 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2641 restore_rounding_mode(env);
2642 if (get_float_exception_flags(&env->active_fpu.fp_status)
2643 & (float_flag_invalid | float_flag_overflow)) {
2644 wt2 = FP_TO_INT32_OVERFLOW;
2646 update_fcr31(env, GETPC());
2647 return wt2;
2650 uint64_t helper_float_floorl_d(CPUMIPSState *env, uint64_t fdt0)
2652 uint64_t dt2;
2654 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2655 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2656 restore_rounding_mode(env);
2657 if (get_float_exception_flags(&env->active_fpu.fp_status)
2658 & (float_flag_invalid | float_flag_overflow)) {
2659 dt2 = FP_TO_INT64_OVERFLOW;
2661 update_fcr31(env, GETPC());
2662 return dt2;
2665 uint64_t helper_float_floorl_s(CPUMIPSState *env, uint32_t fst0)
2667 uint64_t dt2;
2669 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2670 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2671 restore_rounding_mode(env);
2672 if (get_float_exception_flags(&env->active_fpu.fp_status)
2673 & (float_flag_invalid | float_flag_overflow)) {
2674 dt2 = FP_TO_INT64_OVERFLOW;
2676 update_fcr31(env, GETPC());
2677 return dt2;
2680 uint32_t helper_float_floorw_d(CPUMIPSState *env, uint64_t fdt0)
2682 uint32_t wt2;
2684 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2685 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2686 restore_rounding_mode(env);
2687 if (get_float_exception_flags(&env->active_fpu.fp_status)
2688 & (float_flag_invalid | float_flag_overflow)) {
2689 wt2 = FP_TO_INT32_OVERFLOW;
2691 update_fcr31(env, GETPC());
2692 return wt2;
2695 uint32_t helper_float_floorw_s(CPUMIPSState *env, uint32_t fst0)
2697 uint32_t wt2;
2699 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2700 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2701 restore_rounding_mode(env);
2702 if (get_float_exception_flags(&env->active_fpu.fp_status)
2703 & (float_flag_invalid | float_flag_overflow)) {
2704 wt2 = FP_TO_INT32_OVERFLOW;
2706 update_fcr31(env, GETPC());
2707 return wt2;
2710 /* unary operations, not modifying fp status */
2711 #define FLOAT_UNOP(name) \
2712 uint64_t helper_float_ ## name ## _d(uint64_t fdt0) \
2714 return float64_ ## name(fdt0); \
2716 uint32_t helper_float_ ## name ## _s(uint32_t fst0) \
2718 return float32_ ## name(fst0); \
2720 uint64_t helper_float_ ## name ## _ps(uint64_t fdt0) \
2722 uint32_t wt0; \
2723 uint32_t wth0; \
2725 wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF); \
2726 wth0 = float32_ ## name(fdt0 >> 32); \
2727 return ((uint64_t)wth0 << 32) | wt0; \
2729 FLOAT_UNOP(abs)
2730 FLOAT_UNOP(chs)
2731 #undef FLOAT_UNOP
2733 /* MIPS specific unary operations */
2734 uint64_t helper_float_recip_d(CPUMIPSState *env, uint64_t fdt0)
2736 uint64_t fdt2;
2738 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
2739 update_fcr31(env, GETPC());
2740 return fdt2;
2743 uint32_t helper_float_recip_s(CPUMIPSState *env, uint32_t fst0)
2745 uint32_t fst2;
2747 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
2748 update_fcr31(env, GETPC());
2749 return fst2;
2752 uint64_t helper_float_rsqrt_d(CPUMIPSState *env, uint64_t fdt0)
2754 uint64_t fdt2;
2756 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2757 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
2758 update_fcr31(env, GETPC());
2759 return fdt2;
2762 uint32_t helper_float_rsqrt_s(CPUMIPSState *env, uint32_t fst0)
2764 uint32_t fst2;
2766 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2767 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2768 update_fcr31(env, GETPC());
2769 return fst2;
2772 uint64_t helper_float_recip1_d(CPUMIPSState *env, uint64_t fdt0)
2774 uint64_t fdt2;
2776 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
2777 update_fcr31(env, GETPC());
2778 return fdt2;
2781 uint32_t helper_float_recip1_s(CPUMIPSState *env, uint32_t fst0)
2783 uint32_t fst2;
2785 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
2786 update_fcr31(env, GETPC());
2787 return fst2;
2790 uint64_t helper_float_recip1_ps(CPUMIPSState *env, uint64_t fdt0)
2792 uint32_t fst2;
2793 uint32_t fsth2;
2795 fst2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2796 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status);
2797 update_fcr31(env, GETPC());
2798 return ((uint64_t)fsth2 << 32) | fst2;
2801 uint64_t helper_float_rsqrt1_d(CPUMIPSState *env, uint64_t fdt0)
2803 uint64_t fdt2;
2805 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2806 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
2807 update_fcr31(env, GETPC());
2808 return fdt2;
2811 uint32_t helper_float_rsqrt1_s(CPUMIPSState *env, uint32_t fst0)
2813 uint32_t fst2;
2815 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2816 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2817 update_fcr31(env, GETPC());
2818 return fst2;
2821 uint64_t helper_float_rsqrt1_ps(CPUMIPSState *env, uint64_t fdt0)
2823 uint32_t fst2;
2824 uint32_t fsth2;
2826 fst2 = float32_sqrt(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2827 fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status);
2828 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2829 fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status);
2830 update_fcr31(env, GETPC());
2831 return ((uint64_t)fsth2 << 32) | fst2;
2834 #define FLOAT_OP(name, p) void helper_float_##name##_##p(CPUMIPSState *env)
2836 /* binary operations */
2837 #define FLOAT_BINOP(name) \
2838 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
2839 uint64_t fdt0, uint64_t fdt1) \
2841 uint64_t dt2; \
2843 dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \
2844 update_fcr31(env, GETPC()); \
2845 return dt2; \
2848 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
2849 uint32_t fst0, uint32_t fst1) \
2851 uint32_t wt2; \
2853 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
2854 update_fcr31(env, GETPC()); \
2855 return wt2; \
2858 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
2859 uint64_t fdt0, \
2860 uint64_t fdt1) \
2862 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2863 uint32_t fsth0 = fdt0 >> 32; \
2864 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
2865 uint32_t fsth1 = fdt1 >> 32; \
2866 uint32_t wt2; \
2867 uint32_t wth2; \
2869 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
2870 wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status); \
2871 update_fcr31(env, GETPC()); \
2872 return ((uint64_t)wth2 << 32) | wt2; \
2875 FLOAT_BINOP(add)
2876 FLOAT_BINOP(sub)
2877 FLOAT_BINOP(mul)
2878 FLOAT_BINOP(div)
2879 #undef FLOAT_BINOP
2881 /* FMA based operations */
2882 #define FLOAT_FMA(name, type) \
2883 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
2884 uint64_t fdt0, uint64_t fdt1, \
2885 uint64_t fdt2) \
2887 fdt0 = float64_muladd(fdt0, fdt1, fdt2, type, \
2888 &env->active_fpu.fp_status); \
2889 update_fcr31(env, GETPC()); \
2890 return fdt0; \
2893 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
2894 uint32_t fst0, uint32_t fst1, \
2895 uint32_t fst2) \
2897 fst0 = float32_muladd(fst0, fst1, fst2, type, \
2898 &env->active_fpu.fp_status); \
2899 update_fcr31(env, GETPC()); \
2900 return fst0; \
2903 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
2904 uint64_t fdt0, uint64_t fdt1, \
2905 uint64_t fdt2) \
2907 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2908 uint32_t fsth0 = fdt0 >> 32; \
2909 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
2910 uint32_t fsth1 = fdt1 >> 32; \
2911 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
2912 uint32_t fsth2 = fdt2 >> 32; \
2914 fst0 = float32_muladd(fst0, fst1, fst2, type, \
2915 &env->active_fpu.fp_status); \
2916 fsth0 = float32_muladd(fsth0, fsth1, fsth2, type, \
2917 &env->active_fpu.fp_status); \
2918 update_fcr31(env, GETPC()); \
2919 return ((uint64_t)fsth0 << 32) | fst0; \
2921 FLOAT_FMA(madd, 0)
2922 FLOAT_FMA(msub, float_muladd_negate_c)
2923 FLOAT_FMA(nmadd, float_muladd_negate_result)
2924 FLOAT_FMA(nmsub, float_muladd_negate_result | float_muladd_negate_c)
2925 #undef FLOAT_FMA
2927 /* MIPS specific binary operations */
2928 uint64_t helper_float_recip2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
2930 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
2931 fdt2 = float64_chs(float64_sub(fdt2, float64_one, &env->active_fpu.fp_status));
2932 update_fcr31(env, GETPC());
2933 return fdt2;
2936 uint32_t helper_float_recip2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
2938 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2939 fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
2940 update_fcr31(env, GETPC());
2941 return fst2;
2944 uint64_t helper_float_recip2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
2946 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
2947 uint32_t fsth0 = fdt0 >> 32;
2948 uint32_t fst2 = fdt2 & 0XFFFFFFFF;
2949 uint32_t fsth2 = fdt2 >> 32;
2951 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2952 fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
2953 fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
2954 fsth2 = float32_chs(float32_sub(fsth2, float32_one, &env->active_fpu.fp_status));
2955 update_fcr31(env, GETPC());
2956 return ((uint64_t)fsth2 << 32) | fst2;
2959 uint64_t helper_float_rsqrt2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
2961 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
2962 fdt2 = float64_sub(fdt2, float64_one, &env->active_fpu.fp_status);
2963 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, &env->active_fpu.fp_status));
2964 update_fcr31(env, GETPC());
2965 return fdt2;
2968 uint32_t helper_float_rsqrt2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
2970 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2971 fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
2972 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
2973 update_fcr31(env, GETPC());
2974 return fst2;
2977 uint64_t helper_float_rsqrt2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
2979 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
2980 uint32_t fsth0 = fdt0 >> 32;
2981 uint32_t fst2 = fdt2 & 0XFFFFFFFF;
2982 uint32_t fsth2 = fdt2 >> 32;
2984 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2985 fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
2986 fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
2987 fsth2 = float32_sub(fsth2, float32_one, &env->active_fpu.fp_status);
2988 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
2989 fsth2 = float32_chs(float32_div(fsth2, FLOAT_TWO32, &env->active_fpu.fp_status));
2990 update_fcr31(env, GETPC());
2991 return ((uint64_t)fsth2 << 32) | fst2;
2994 uint64_t helper_float_addr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
2996 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
2997 uint32_t fsth0 = fdt0 >> 32;
2998 uint32_t fst1 = fdt1 & 0XFFFFFFFF;
2999 uint32_t fsth1 = fdt1 >> 32;
3000 uint32_t fst2;
3001 uint32_t fsth2;
3003 fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status);
3004 fsth2 = float32_add (fst1, fsth1, &env->active_fpu.fp_status);
3005 update_fcr31(env, GETPC());
3006 return ((uint64_t)fsth2 << 32) | fst2;
3009 uint64_t helper_float_mulr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
3011 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
3012 uint32_t fsth0 = fdt0 >> 32;
3013 uint32_t fst1 = fdt1 & 0XFFFFFFFF;
3014 uint32_t fsth1 = fdt1 >> 32;
3015 uint32_t fst2;
3016 uint32_t fsth2;
3018 fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status);
3019 fsth2 = float32_mul (fst1, fsth1, &env->active_fpu.fp_status);
3020 update_fcr31(env, GETPC());
3021 return ((uint64_t)fsth2 << 32) | fst2;
3024 /* compare operations */
3025 #define FOP_COND_D(op, cond) \
3026 void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3027 uint64_t fdt1, int cc) \
3029 int c; \
3030 c = cond; \
3031 update_fcr31(env, GETPC()); \
3032 if (c) \
3033 SET_FP_COND(cc, env->active_fpu); \
3034 else \
3035 CLEAR_FP_COND(cc, env->active_fpu); \
3037 void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3038 uint64_t fdt1, int cc) \
3040 int c; \
3041 fdt0 = float64_abs(fdt0); \
3042 fdt1 = float64_abs(fdt1); \
3043 c = cond; \
3044 update_fcr31(env, GETPC()); \
3045 if (c) \
3046 SET_FP_COND(cc, env->active_fpu); \
3047 else \
3048 CLEAR_FP_COND(cc, env->active_fpu); \
3051 /* NOTE: the comma operator will make "cond" to eval to false,
3052 * but float64_unordered_quiet() is still called. */
3053 FOP_COND_D(f, (float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status), 0))
3054 FOP_COND_D(un, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status))
3055 FOP_COND_D(eq, float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3056 FOP_COND_D(ueq, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3057 FOP_COND_D(olt, float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3058 FOP_COND_D(ult, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3059 FOP_COND_D(ole, float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3060 FOP_COND_D(ule, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3061 /* NOTE: the comma operator will make "cond" to eval to false,
3062 * but float64_unordered() is still called. */
3063 FOP_COND_D(sf, (float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status), 0))
3064 FOP_COND_D(ngle,float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status))
3065 FOP_COND_D(seq, float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
3066 FOP_COND_D(ngl, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
3067 FOP_COND_D(lt, float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
3068 FOP_COND_D(nge, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
3069 FOP_COND_D(le, float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
3070 FOP_COND_D(ngt, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
3072 #define FOP_COND_S(op, cond) \
3073 void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3074 uint32_t fst1, int cc) \
3076 int c; \
3077 c = cond; \
3078 update_fcr31(env, GETPC()); \
3079 if (c) \
3080 SET_FP_COND(cc, env->active_fpu); \
3081 else \
3082 CLEAR_FP_COND(cc, env->active_fpu); \
3084 void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3085 uint32_t fst1, int cc) \
3087 int c; \
3088 fst0 = float32_abs(fst0); \
3089 fst1 = float32_abs(fst1); \
3090 c = cond; \
3091 update_fcr31(env, GETPC()); \
3092 if (c) \
3093 SET_FP_COND(cc, env->active_fpu); \
3094 else \
3095 CLEAR_FP_COND(cc, env->active_fpu); \
3098 /* NOTE: the comma operator will make "cond" to eval to false,
3099 * but float32_unordered_quiet() is still called. */
3100 FOP_COND_S(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0))
3101 FOP_COND_S(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status))
3102 FOP_COND_S(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
3103 FOP_COND_S(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
3104 FOP_COND_S(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
3105 FOP_COND_S(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
3106 FOP_COND_S(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
3107 FOP_COND_S(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
3108 /* NOTE: the comma operator will make "cond" to eval to false,
3109 * but float32_unordered() is still called. */
3110 FOP_COND_S(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0))
3111 FOP_COND_S(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status))
3112 FOP_COND_S(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status))
3113 FOP_COND_S(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status))
3114 FOP_COND_S(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status))
3115 FOP_COND_S(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status))
3116 FOP_COND_S(le, float32_le(fst0, fst1, &env->active_fpu.fp_status))
3117 FOP_COND_S(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status))
3119 #define FOP_COND_PS(op, condl, condh) \
3120 void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3121 uint64_t fdt1, int cc) \
3123 uint32_t fst0, fsth0, fst1, fsth1; \
3124 int ch, cl; \
3125 fst0 = fdt0 & 0XFFFFFFFF; \
3126 fsth0 = fdt0 >> 32; \
3127 fst1 = fdt1 & 0XFFFFFFFF; \
3128 fsth1 = fdt1 >> 32; \
3129 cl = condl; \
3130 ch = condh; \
3131 update_fcr31(env, GETPC()); \
3132 if (cl) \
3133 SET_FP_COND(cc, env->active_fpu); \
3134 else \
3135 CLEAR_FP_COND(cc, env->active_fpu); \
3136 if (ch) \
3137 SET_FP_COND(cc + 1, env->active_fpu); \
3138 else \
3139 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3141 void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3142 uint64_t fdt1, int cc) \
3144 uint32_t fst0, fsth0, fst1, fsth1; \
3145 int ch, cl; \
3146 fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3147 fsth0 = float32_abs(fdt0 >> 32); \
3148 fst1 = float32_abs(fdt1 & 0XFFFFFFFF); \
3149 fsth1 = float32_abs(fdt1 >> 32); \
3150 cl = condl; \
3151 ch = condh; \
3152 update_fcr31(env, GETPC()); \
3153 if (cl) \
3154 SET_FP_COND(cc, env->active_fpu); \
3155 else \
3156 CLEAR_FP_COND(cc, env->active_fpu); \
3157 if (ch) \
3158 SET_FP_COND(cc + 1, env->active_fpu); \
3159 else \
3160 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3163 /* NOTE: the comma operator will make "cond" to eval to false,
3164 * but float32_unordered_quiet() is still called. */
3165 FOP_COND_PS(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0),
3166 (float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status), 0))
3167 FOP_COND_PS(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status),
3168 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status))
3169 FOP_COND_PS(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
3170 float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3171 FOP_COND_PS(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
3172 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3173 FOP_COND_PS(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
3174 float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3175 FOP_COND_PS(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
3176 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3177 FOP_COND_PS(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
3178 float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3179 FOP_COND_PS(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
3180 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3181 /* NOTE: the comma operator will make "cond" to eval to false,
3182 * but float32_unordered() is still called. */
3183 FOP_COND_PS(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0),
3184 (float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status), 0))
3185 FOP_COND_PS(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status),
3186 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status))
3187 FOP_COND_PS(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status),
3188 float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
3189 FOP_COND_PS(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status),
3190 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
3191 FOP_COND_PS(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status),
3192 float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
3193 FOP_COND_PS(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status),
3194 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
3195 FOP_COND_PS(le, float32_le(fst0, fst1, &env->active_fpu.fp_status),
3196 float32_le(fsth0, fsth1, &env->active_fpu.fp_status))
3197 FOP_COND_PS(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status),
3198 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le(fsth0, fsth1, &env->active_fpu.fp_status))