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/>.
21 #include "qemu/host-utils.h"
22 #include "exec/helper-proto.h"
23 #include "exec/cpu_ldst.h"
24 #include "sysemu/kvm.h"
26 #ifndef CONFIG_USER_ONLY
27 static inline void cpu_mips_tlb_flush (CPUMIPSState
*env
, int flush_global
);
30 /*****************************************************************************/
31 /* Exceptions processing helpers */
33 static inline void QEMU_NORETURN
do_raise_exception_err(CPUMIPSState
*env
,
38 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
40 if (exception
< EXCP_SC
) {
41 qemu_log("%s: %d %d\n", __func__
, exception
, error_code
);
43 cs
->exception_index
= exception
;
44 env
->error_code
= error_code
;
47 /* now we have a real cpu fault */
48 cpu_restore_state(cs
, pc
);
54 static inline void QEMU_NORETURN
do_raise_exception(CPUMIPSState
*env
,
58 do_raise_exception_err(env
, exception
, 0, pc
);
61 void helper_raise_exception_err(CPUMIPSState
*env
, uint32_t exception
,
64 do_raise_exception_err(env
, exception
, error_code
, 0);
67 void helper_raise_exception(CPUMIPSState
*env
, uint32_t exception
)
69 do_raise_exception(env
, exception
, 0);
72 #if defined(CONFIG_USER_ONLY)
73 #define HELPER_LD(name, insn, type) \
74 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
77 return (type) insn##_raw(addr); \
80 #define HELPER_LD(name, insn, type) \
81 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
86 case 0: return (type) cpu_##insn##_kernel(env, addr); break; \
87 case 1: return (type) cpu_##insn##_super(env, addr); break; \
89 case 2: return (type) cpu_##insn##_user(env, addr); break; \
93 HELPER_LD(lw
, ldl
, int32_t)
95 HELPER_LD(ld
, ldq
, int64_t)
99 #if defined(CONFIG_USER_ONLY)
100 #define HELPER_ST(name, insn, type) \
101 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
102 type val, int mem_idx) \
104 insn##_raw(addr, val); \
107 #define HELPER_ST(name, insn, type) \
108 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
109 type val, int mem_idx) \
113 case 0: cpu_##insn##_kernel(env, addr, val); break; \
114 case 1: cpu_##insn##_super(env, addr, val); break; \
116 case 2: cpu_##insn##_user(env, addr, val); break; \
120 HELPER_ST(sb
, stb
, uint8_t)
121 HELPER_ST(sw
, stl
, uint32_t)
123 HELPER_ST(sd
, stq
, uint64_t)
127 target_ulong
helper_clo (target_ulong arg1
)
132 target_ulong
helper_clz (target_ulong arg1
)
137 #if defined(TARGET_MIPS64)
138 target_ulong
helper_dclo (target_ulong arg1
)
143 target_ulong
helper_dclz (target_ulong arg1
)
147 #endif /* TARGET_MIPS64 */
149 /* 64 bits arithmetic for 32 bits hosts */
150 static inline uint64_t get_HILO(CPUMIPSState
*env
)
152 return ((uint64_t)(env
->active_tc
.HI
[0]) << 32) | (uint32_t)env
->active_tc
.LO
[0];
155 static inline target_ulong
set_HIT0_LO(CPUMIPSState
*env
, uint64_t HILO
)
158 env
->active_tc
.LO
[0] = (int32_t)(HILO
& 0xFFFFFFFF);
159 tmp
= env
->active_tc
.HI
[0] = (int32_t)(HILO
>> 32);
163 static inline target_ulong
set_HI_LOT0(CPUMIPSState
*env
, uint64_t HILO
)
165 target_ulong tmp
= env
->active_tc
.LO
[0] = (int32_t)(HILO
& 0xFFFFFFFF);
166 env
->active_tc
.HI
[0] = (int32_t)(HILO
>> 32);
170 /* Multiplication variants of the vr54xx. */
171 target_ulong
helper_muls(CPUMIPSState
*env
, target_ulong arg1
,
174 return set_HI_LOT0(env
, 0 - ((int64_t)(int32_t)arg1
*
175 (int64_t)(int32_t)arg2
));
178 target_ulong
helper_mulsu(CPUMIPSState
*env
, target_ulong arg1
,
181 return set_HI_LOT0(env
, 0 - (uint64_t)(uint32_t)arg1
*
182 (uint64_t)(uint32_t)arg2
);
185 target_ulong
helper_macc(CPUMIPSState
*env
, target_ulong arg1
,
188 return set_HI_LOT0(env
, (int64_t)get_HILO(env
) + (int64_t)(int32_t)arg1
*
189 (int64_t)(int32_t)arg2
);
192 target_ulong
helper_macchi(CPUMIPSState
*env
, target_ulong arg1
,
195 return set_HIT0_LO(env
, (int64_t)get_HILO(env
) + (int64_t)(int32_t)arg1
*
196 (int64_t)(int32_t)arg2
);
199 target_ulong
helper_maccu(CPUMIPSState
*env
, target_ulong arg1
,
202 return set_HI_LOT0(env
, (uint64_t)get_HILO(env
) +
203 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
206 target_ulong
helper_macchiu(CPUMIPSState
*env
, target_ulong arg1
,
209 return set_HIT0_LO(env
, (uint64_t)get_HILO(env
) +
210 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
213 target_ulong
helper_msac(CPUMIPSState
*env
, target_ulong arg1
,
216 return set_HI_LOT0(env
, (int64_t)get_HILO(env
) - (int64_t)(int32_t)arg1
*
217 (int64_t)(int32_t)arg2
);
220 target_ulong
helper_msachi(CPUMIPSState
*env
, target_ulong arg1
,
223 return set_HIT0_LO(env
, (int64_t)get_HILO(env
) - (int64_t)(int32_t)arg1
*
224 (int64_t)(int32_t)arg2
);
227 target_ulong
helper_msacu(CPUMIPSState
*env
, target_ulong arg1
,
230 return set_HI_LOT0(env
, (uint64_t)get_HILO(env
) -
231 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
234 target_ulong
helper_msachiu(CPUMIPSState
*env
, target_ulong arg1
,
237 return set_HIT0_LO(env
, (uint64_t)get_HILO(env
) -
238 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
241 target_ulong
helper_mulhi(CPUMIPSState
*env
, target_ulong arg1
,
244 return set_HIT0_LO(env
, (int64_t)(int32_t)arg1
* (int64_t)(int32_t)arg2
);
247 target_ulong
helper_mulhiu(CPUMIPSState
*env
, target_ulong arg1
,
250 return set_HIT0_LO(env
, (uint64_t)(uint32_t)arg1
*
251 (uint64_t)(uint32_t)arg2
);
254 target_ulong
helper_mulshi(CPUMIPSState
*env
, target_ulong arg1
,
257 return set_HIT0_LO(env
, 0 - (int64_t)(int32_t)arg1
*
258 (int64_t)(int32_t)arg2
);
261 target_ulong
helper_mulshiu(CPUMIPSState
*env
, target_ulong arg1
,
264 return set_HIT0_LO(env
, 0 - (uint64_t)(uint32_t)arg1
*
265 (uint64_t)(uint32_t)arg2
);
268 static inline target_ulong
bitswap(target_ulong v
)
270 v
= ((v
>> 1) & (target_ulong
)0x5555555555555555ULL
) |
271 ((v
& (target_ulong
)0x5555555555555555ULL
) << 1);
272 v
= ((v
>> 2) & (target_ulong
)0x3333333333333333ULL
) |
273 ((v
& (target_ulong
)0x3333333333333333ULL
) << 2);
274 v
= ((v
>> 4) & (target_ulong
)0x0F0F0F0F0F0F0F0FULL
) |
275 ((v
& (target_ulong
)0x0F0F0F0F0F0F0F0FULL
) << 4);
280 target_ulong
helper_dbitswap(target_ulong rt
)
286 target_ulong
helper_bitswap(target_ulong rt
)
288 return (int32_t)bitswap(rt
);
291 #ifndef CONFIG_USER_ONLY
293 static inline hwaddr
do_translate_address(CPUMIPSState
*env
,
294 target_ulong address
,
299 lladdr
= cpu_mips_translate_address(env
, address
, rw
);
301 if (lladdr
== -1LL) {
302 cpu_loop_exit(CPU(mips_env_get_cpu(env
)));
308 #define HELPER_LD_ATOMIC(name, insn) \
309 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \
311 env->lladdr = do_translate_address(env, arg, 0); \
312 env->llval = do_##insn(env, arg, mem_idx); \
315 HELPER_LD_ATOMIC(ll
, lw
)
317 HELPER_LD_ATOMIC(lld
, ld
)
319 #undef HELPER_LD_ATOMIC
321 #define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask) \
322 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1, \
323 target_ulong arg2, int mem_idx) \
327 if (arg2 & almask) { \
328 env->CP0_BadVAddr = arg2; \
329 helper_raise_exception(env, EXCP_AdES); \
331 if (do_translate_address(env, arg2, 1) == env->lladdr) { \
332 tmp = do_##ld_insn(env, arg2, mem_idx); \
333 if (tmp == env->llval) { \
334 do_##st_insn(env, arg2, arg1, mem_idx); \
340 HELPER_ST_ATOMIC(sc
, lw
, sw
, 0x3)
342 HELPER_ST_ATOMIC(scd
, ld
, sd
, 0x7)
344 #undef HELPER_ST_ATOMIC
347 #ifdef TARGET_WORDS_BIGENDIAN
348 #define GET_LMASK(v) ((v) & 3)
349 #define GET_OFFSET(addr, offset) (addr + (offset))
351 #define GET_LMASK(v) (((v) & 3) ^ 3)
352 #define GET_OFFSET(addr, offset) (addr - (offset))
355 void helper_swl(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
358 do_sb(env
, arg2
, (uint8_t)(arg1
>> 24), mem_idx
);
360 if (GET_LMASK(arg2
) <= 2)
361 do_sb(env
, GET_OFFSET(arg2
, 1), (uint8_t)(arg1
>> 16), mem_idx
);
363 if (GET_LMASK(arg2
) <= 1)
364 do_sb(env
, GET_OFFSET(arg2
, 2), (uint8_t)(arg1
>> 8), mem_idx
);
366 if (GET_LMASK(arg2
) == 0)
367 do_sb(env
, GET_OFFSET(arg2
, 3), (uint8_t)arg1
, mem_idx
);
370 void helper_swr(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
373 do_sb(env
, arg2
, (uint8_t)arg1
, mem_idx
);
375 if (GET_LMASK(arg2
) >= 1)
376 do_sb(env
, GET_OFFSET(arg2
, -1), (uint8_t)(arg1
>> 8), mem_idx
);
378 if (GET_LMASK(arg2
) >= 2)
379 do_sb(env
, GET_OFFSET(arg2
, -2), (uint8_t)(arg1
>> 16), mem_idx
);
381 if (GET_LMASK(arg2
) == 3)
382 do_sb(env
, GET_OFFSET(arg2
, -3), (uint8_t)(arg1
>> 24), mem_idx
);
385 #if defined(TARGET_MIPS64)
386 /* "half" load and stores. We must do the memory access inline,
387 or fault handling won't work. */
389 #ifdef TARGET_WORDS_BIGENDIAN
390 #define GET_LMASK64(v) ((v) & 7)
392 #define GET_LMASK64(v) (((v) & 7) ^ 7)
395 void helper_sdl(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
398 do_sb(env
, arg2
, (uint8_t)(arg1
>> 56), mem_idx
);
400 if (GET_LMASK64(arg2
) <= 6)
401 do_sb(env
, GET_OFFSET(arg2
, 1), (uint8_t)(arg1
>> 48), mem_idx
);
403 if (GET_LMASK64(arg2
) <= 5)
404 do_sb(env
, GET_OFFSET(arg2
, 2), (uint8_t)(arg1
>> 40), mem_idx
);
406 if (GET_LMASK64(arg2
) <= 4)
407 do_sb(env
, GET_OFFSET(arg2
, 3), (uint8_t)(arg1
>> 32), mem_idx
);
409 if (GET_LMASK64(arg2
) <= 3)
410 do_sb(env
, GET_OFFSET(arg2
, 4), (uint8_t)(arg1
>> 24), mem_idx
);
412 if (GET_LMASK64(arg2
) <= 2)
413 do_sb(env
, GET_OFFSET(arg2
, 5), (uint8_t)(arg1
>> 16), mem_idx
);
415 if (GET_LMASK64(arg2
) <= 1)
416 do_sb(env
, GET_OFFSET(arg2
, 6), (uint8_t)(arg1
>> 8), mem_idx
);
418 if (GET_LMASK64(arg2
) <= 0)
419 do_sb(env
, GET_OFFSET(arg2
, 7), (uint8_t)arg1
, mem_idx
);
422 void helper_sdr(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
425 do_sb(env
, arg2
, (uint8_t)arg1
, mem_idx
);
427 if (GET_LMASK64(arg2
) >= 1)
428 do_sb(env
, GET_OFFSET(arg2
, -1), (uint8_t)(arg1
>> 8), mem_idx
);
430 if (GET_LMASK64(arg2
) >= 2)
431 do_sb(env
, GET_OFFSET(arg2
, -2), (uint8_t)(arg1
>> 16), mem_idx
);
433 if (GET_LMASK64(arg2
) >= 3)
434 do_sb(env
, GET_OFFSET(arg2
, -3), (uint8_t)(arg1
>> 24), mem_idx
);
436 if (GET_LMASK64(arg2
) >= 4)
437 do_sb(env
, GET_OFFSET(arg2
, -4), (uint8_t)(arg1
>> 32), mem_idx
);
439 if (GET_LMASK64(arg2
) >= 5)
440 do_sb(env
, GET_OFFSET(arg2
, -5), (uint8_t)(arg1
>> 40), mem_idx
);
442 if (GET_LMASK64(arg2
) >= 6)
443 do_sb(env
, GET_OFFSET(arg2
, -6), (uint8_t)(arg1
>> 48), mem_idx
);
445 if (GET_LMASK64(arg2
) == 7)
446 do_sb(env
, GET_OFFSET(arg2
, -7), (uint8_t)(arg1
>> 56), mem_idx
);
448 #endif /* TARGET_MIPS64 */
450 static const int multiple_regs
[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };
452 void helper_lwm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
455 target_ulong base_reglist
= reglist
& 0xf;
456 target_ulong do_r31
= reglist
& 0x10;
458 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
461 for (i
= 0; i
< base_reglist
; i
++) {
462 env
->active_tc
.gpr
[multiple_regs
[i
]] =
463 (target_long
)do_lw(env
, addr
, mem_idx
);
469 env
->active_tc
.gpr
[31] = (target_long
)do_lw(env
, addr
, mem_idx
);
473 void helper_swm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
476 target_ulong base_reglist
= reglist
& 0xf;
477 target_ulong do_r31
= reglist
& 0x10;
479 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
482 for (i
= 0; i
< base_reglist
; i
++) {
483 do_sw(env
, addr
, env
->active_tc
.gpr
[multiple_regs
[i
]], mem_idx
);
489 do_sw(env
, addr
, env
->active_tc
.gpr
[31], mem_idx
);
493 #if defined(TARGET_MIPS64)
494 void helper_ldm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
497 target_ulong base_reglist
= reglist
& 0xf;
498 target_ulong do_r31
= reglist
& 0x10;
500 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
503 for (i
= 0; i
< base_reglist
; i
++) {
504 env
->active_tc
.gpr
[multiple_regs
[i
]] = do_ld(env
, addr
, mem_idx
);
510 env
->active_tc
.gpr
[31] = do_ld(env
, addr
, mem_idx
);
514 void helper_sdm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
517 target_ulong base_reglist
= reglist
& 0xf;
518 target_ulong do_r31
= reglist
& 0x10;
520 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
523 for (i
= 0; i
< base_reglist
; i
++) {
524 do_sd(env
, addr
, env
->active_tc
.gpr
[multiple_regs
[i
]], mem_idx
);
530 do_sd(env
, addr
, env
->active_tc
.gpr
[31], mem_idx
);
535 #ifndef CONFIG_USER_ONLY
537 static bool mips_vpe_is_wfi(MIPSCPU
*c
)
539 CPUState
*cpu
= CPU(c
);
540 CPUMIPSState
*env
= &c
->env
;
542 /* If the VPE is halted but otherwise active, it means it's waiting for
544 return cpu
->halted
&& mips_vpe_active(env
);
547 static inline void mips_vpe_wake(MIPSCPU
*c
)
549 /* Dont set ->halted = 0 directly, let it be done via cpu_has_work
550 because there might be other conditions that state that c should
552 cpu_interrupt(CPU(c
), CPU_INTERRUPT_WAKE
);
555 static inline void mips_vpe_sleep(MIPSCPU
*cpu
)
557 CPUState
*cs
= CPU(cpu
);
559 /* The VPE was shut off, really go to bed.
560 Reset any old _WAKE requests. */
562 cpu_reset_interrupt(cs
, CPU_INTERRUPT_WAKE
);
565 static inline void mips_tc_wake(MIPSCPU
*cpu
, int tc
)
567 CPUMIPSState
*c
= &cpu
->env
;
569 /* FIXME: TC reschedule. */
570 if (mips_vpe_active(c
) && !mips_vpe_is_wfi(cpu
)) {
575 static inline void mips_tc_sleep(MIPSCPU
*cpu
, int tc
)
577 CPUMIPSState
*c
= &cpu
->env
;
579 /* FIXME: TC reschedule. */
580 if (!mips_vpe_active(c
)) {
587 * @env: CPU from which mapping is performed.
588 * @tc: Should point to an int with the value of the global TC index.
590 * This function will transform @tc into a local index within the
591 * returned #CPUMIPSState.
593 /* FIXME: This code assumes that all VPEs have the same number of TCs,
594 which depends on runtime setup. Can probably be fixed by
595 walking the list of CPUMIPSStates. */
596 static CPUMIPSState
*mips_cpu_map_tc(CPUMIPSState
*env
, int *tc
)
604 if (!(env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
))) {
605 /* Not allowed to address other CPUs. */
606 *tc
= env
->current_tc
;
610 cs
= CPU(mips_env_get_cpu(env
));
611 vpe_idx
= tc_idx
/ cs
->nr_threads
;
612 *tc
= tc_idx
% cs
->nr_threads
;
613 other_cs
= qemu_get_cpu(vpe_idx
);
614 if (other_cs
== NULL
) {
617 cpu
= MIPS_CPU(other_cs
);
621 /* The per VPE CP0_Status register shares some fields with the per TC
622 CP0_TCStatus registers. These fields are wired to the same registers,
623 so changes to either of them should be reflected on both registers.
625 Also, EntryHi shares the bottom 8 bit ASID with TCStauts.
627 These helper call synchronizes the regs for a given cpu. */
629 /* Called for updates to CP0_Status. */
630 static void sync_c0_status(CPUMIPSState
*env
, CPUMIPSState
*cpu
, int tc
)
632 int32_t tcstatus
, *tcst
;
633 uint32_t v
= cpu
->CP0_Status
;
634 uint32_t cu
, mx
, asid
, ksu
;
635 uint32_t mask
= ((1 << CP0TCSt_TCU3
)
636 | (1 << CP0TCSt_TCU2
)
637 | (1 << CP0TCSt_TCU1
)
638 | (1 << CP0TCSt_TCU0
)
640 | (3 << CP0TCSt_TKSU
)
641 | (0xff << CP0TCSt_TASID
));
643 cu
= (v
>> CP0St_CU0
) & 0xf;
644 mx
= (v
>> CP0St_MX
) & 0x1;
645 ksu
= (v
>> CP0St_KSU
) & 0x3;
646 asid
= env
->CP0_EntryHi
& 0xff;
648 tcstatus
= cu
<< CP0TCSt_TCU0
;
649 tcstatus
|= mx
<< CP0TCSt_TMX
;
650 tcstatus
|= ksu
<< CP0TCSt_TKSU
;
653 if (tc
== cpu
->current_tc
) {
654 tcst
= &cpu
->active_tc
.CP0_TCStatus
;
656 tcst
= &cpu
->tcs
[tc
].CP0_TCStatus
;
664 /* Called for updates to CP0_TCStatus. */
665 static void sync_c0_tcstatus(CPUMIPSState
*cpu
, int tc
,
669 uint32_t tcu
, tmx
, tasid
, tksu
;
670 uint32_t mask
= ((1U << CP0St_CU3
)
677 tcu
= (v
>> CP0TCSt_TCU0
) & 0xf;
678 tmx
= (v
>> CP0TCSt_TMX
) & 0x1;
680 tksu
= (v
>> CP0TCSt_TKSU
) & 0x3;
682 status
= tcu
<< CP0St_CU0
;
683 status
|= tmx
<< CP0St_MX
;
684 status
|= tksu
<< CP0St_KSU
;
686 cpu
->CP0_Status
&= ~mask
;
687 cpu
->CP0_Status
|= status
;
689 /* Sync the TASID with EntryHi. */
690 cpu
->CP0_EntryHi
&= ~0xff;
691 cpu
->CP0_EntryHi
= tasid
;
696 /* Called for updates to CP0_EntryHi. */
697 static void sync_c0_entryhi(CPUMIPSState
*cpu
, int tc
)
700 uint32_t asid
, v
= cpu
->CP0_EntryHi
;
704 if (tc
== cpu
->current_tc
) {
705 tcst
= &cpu
->active_tc
.CP0_TCStatus
;
707 tcst
= &cpu
->tcs
[tc
].CP0_TCStatus
;
715 target_ulong
helper_mfc0_mvpcontrol(CPUMIPSState
*env
)
717 return env
->mvp
->CP0_MVPControl
;
720 target_ulong
helper_mfc0_mvpconf0(CPUMIPSState
*env
)
722 return env
->mvp
->CP0_MVPConf0
;
725 target_ulong
helper_mfc0_mvpconf1(CPUMIPSState
*env
)
727 return env
->mvp
->CP0_MVPConf1
;
730 target_ulong
helper_mfc0_random(CPUMIPSState
*env
)
732 return (int32_t)cpu_mips_get_random(env
);
735 target_ulong
helper_mfc0_tcstatus(CPUMIPSState
*env
)
737 return env
->active_tc
.CP0_TCStatus
;
740 target_ulong
helper_mftc0_tcstatus(CPUMIPSState
*env
)
742 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
743 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
745 if (other_tc
== other
->current_tc
)
746 return other
->active_tc
.CP0_TCStatus
;
748 return other
->tcs
[other_tc
].CP0_TCStatus
;
751 target_ulong
helper_mfc0_tcbind(CPUMIPSState
*env
)
753 return env
->active_tc
.CP0_TCBind
;
756 target_ulong
helper_mftc0_tcbind(CPUMIPSState
*env
)
758 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
759 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
761 if (other_tc
== other
->current_tc
)
762 return other
->active_tc
.CP0_TCBind
;
764 return other
->tcs
[other_tc
].CP0_TCBind
;
767 target_ulong
helper_mfc0_tcrestart(CPUMIPSState
*env
)
769 return env
->active_tc
.PC
;
772 target_ulong
helper_mftc0_tcrestart(CPUMIPSState
*env
)
774 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
775 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
777 if (other_tc
== other
->current_tc
)
778 return other
->active_tc
.PC
;
780 return other
->tcs
[other_tc
].PC
;
783 target_ulong
helper_mfc0_tchalt(CPUMIPSState
*env
)
785 return env
->active_tc
.CP0_TCHalt
;
788 target_ulong
helper_mftc0_tchalt(CPUMIPSState
*env
)
790 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
791 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
793 if (other_tc
== other
->current_tc
)
794 return other
->active_tc
.CP0_TCHalt
;
796 return other
->tcs
[other_tc
].CP0_TCHalt
;
799 target_ulong
helper_mfc0_tccontext(CPUMIPSState
*env
)
801 return env
->active_tc
.CP0_TCContext
;
804 target_ulong
helper_mftc0_tccontext(CPUMIPSState
*env
)
806 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
807 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
809 if (other_tc
== other
->current_tc
)
810 return other
->active_tc
.CP0_TCContext
;
812 return other
->tcs
[other_tc
].CP0_TCContext
;
815 target_ulong
helper_mfc0_tcschedule(CPUMIPSState
*env
)
817 return env
->active_tc
.CP0_TCSchedule
;
820 target_ulong
helper_mftc0_tcschedule(CPUMIPSState
*env
)
822 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
823 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
825 if (other_tc
== other
->current_tc
)
826 return other
->active_tc
.CP0_TCSchedule
;
828 return other
->tcs
[other_tc
].CP0_TCSchedule
;
831 target_ulong
helper_mfc0_tcschefback(CPUMIPSState
*env
)
833 return env
->active_tc
.CP0_TCScheFBack
;
836 target_ulong
helper_mftc0_tcschefback(CPUMIPSState
*env
)
838 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
839 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
841 if (other_tc
== other
->current_tc
)
842 return other
->active_tc
.CP0_TCScheFBack
;
844 return other
->tcs
[other_tc
].CP0_TCScheFBack
;
847 target_ulong
helper_mfc0_count(CPUMIPSState
*env
)
849 return (int32_t)cpu_mips_get_count(env
);
852 target_ulong
helper_mftc0_entryhi(CPUMIPSState
*env
)
854 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
855 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
857 return other
->CP0_EntryHi
;
860 target_ulong
helper_mftc0_cause(CPUMIPSState
*env
)
862 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
864 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
866 if (other_tc
== other
->current_tc
) {
867 tccause
= other
->CP0_Cause
;
869 tccause
= other
->CP0_Cause
;
875 target_ulong
helper_mftc0_status(CPUMIPSState
*env
)
877 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
878 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
880 return other
->CP0_Status
;
883 target_ulong
helper_mfc0_lladdr(CPUMIPSState
*env
)
885 return (int32_t)(env
->lladdr
>> env
->CP0_LLAddr_shift
);
888 target_ulong
helper_mfc0_watchlo(CPUMIPSState
*env
, uint32_t sel
)
890 return (int32_t)env
->CP0_WatchLo
[sel
];
893 target_ulong
helper_mfc0_watchhi(CPUMIPSState
*env
, uint32_t sel
)
895 return env
->CP0_WatchHi
[sel
];
898 target_ulong
helper_mfc0_debug(CPUMIPSState
*env
)
900 target_ulong t0
= env
->CP0_Debug
;
901 if (env
->hflags
& MIPS_HFLAG_DM
)
907 target_ulong
helper_mftc0_debug(CPUMIPSState
*env
)
909 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
911 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
913 if (other_tc
== other
->current_tc
)
914 tcstatus
= other
->active_tc
.CP0_Debug_tcstatus
;
916 tcstatus
= other
->tcs
[other_tc
].CP0_Debug_tcstatus
;
918 /* XXX: Might be wrong, check with EJTAG spec. */
919 return (other
->CP0_Debug
& ~((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
))) |
920 (tcstatus
& ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
)));
923 #if defined(TARGET_MIPS64)
924 target_ulong
helper_dmfc0_tcrestart(CPUMIPSState
*env
)
926 return env
->active_tc
.PC
;
929 target_ulong
helper_dmfc0_tchalt(CPUMIPSState
*env
)
931 return env
->active_tc
.CP0_TCHalt
;
934 target_ulong
helper_dmfc0_tccontext(CPUMIPSState
*env
)
936 return env
->active_tc
.CP0_TCContext
;
939 target_ulong
helper_dmfc0_tcschedule(CPUMIPSState
*env
)
941 return env
->active_tc
.CP0_TCSchedule
;
944 target_ulong
helper_dmfc0_tcschefback(CPUMIPSState
*env
)
946 return env
->active_tc
.CP0_TCScheFBack
;
949 target_ulong
helper_dmfc0_lladdr(CPUMIPSState
*env
)
951 return env
->lladdr
>> env
->CP0_LLAddr_shift
;
954 target_ulong
helper_dmfc0_watchlo(CPUMIPSState
*env
, uint32_t sel
)
956 return env
->CP0_WatchLo
[sel
];
958 #endif /* TARGET_MIPS64 */
960 void helper_mtc0_index(CPUMIPSState
*env
, target_ulong arg1
)
963 unsigned int tmp
= env
->tlb
->nb_tlb
;
969 env
->CP0_Index
= (env
->CP0_Index
& 0x80000000) | (arg1
& (num
- 1));
972 void helper_mtc0_mvpcontrol(CPUMIPSState
*env
, target_ulong arg1
)
977 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
))
978 mask
|= (1 << CP0MVPCo_CPA
) | (1 << CP0MVPCo_VPC
) |
980 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
981 mask
|= (1 << CP0MVPCo_STLB
);
982 newval
= (env
->mvp
->CP0_MVPControl
& ~mask
) | (arg1
& mask
);
984 // TODO: Enable/disable shared TLB, enable/disable VPEs.
986 env
->mvp
->CP0_MVPControl
= newval
;
989 void helper_mtc0_vpecontrol(CPUMIPSState
*env
, target_ulong arg1
)
994 mask
= (1 << CP0VPECo_YSI
) | (1 << CP0VPECo_GSI
) |
995 (1 << CP0VPECo_TE
) | (0xff << CP0VPECo_TargTC
);
996 newval
= (env
->CP0_VPEControl
& ~mask
) | (arg1
& mask
);
998 /* Yield scheduler intercept not implemented. */
999 /* Gating storage scheduler intercept not implemented. */
1001 // TODO: Enable/disable TCs.
1003 env
->CP0_VPEControl
= newval
;
1006 void helper_mttc0_vpecontrol(CPUMIPSState
*env
, target_ulong arg1
)
1008 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1009 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1013 mask
= (1 << CP0VPECo_YSI
) | (1 << CP0VPECo_GSI
) |
1014 (1 << CP0VPECo_TE
) | (0xff << CP0VPECo_TargTC
);
1015 newval
= (other
->CP0_VPEControl
& ~mask
) | (arg1
& mask
);
1017 /* TODO: Enable/disable TCs. */
1019 other
->CP0_VPEControl
= newval
;
1022 target_ulong
helper_mftc0_vpecontrol(CPUMIPSState
*env
)
1024 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1025 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1026 /* FIXME: Mask away return zero on read bits. */
1027 return other
->CP0_VPEControl
;
1030 target_ulong
helper_mftc0_vpeconf0(CPUMIPSState
*env
)
1032 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1033 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1035 return other
->CP0_VPEConf0
;
1038 void helper_mtc0_vpeconf0(CPUMIPSState
*env
, target_ulong arg1
)
1043 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
)) {
1044 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_VPA
))
1045 mask
|= (0xff << CP0VPEC0_XTC
);
1046 mask
|= (1 << CP0VPEC0_MVP
) | (1 << CP0VPEC0_VPA
);
1048 newval
= (env
->CP0_VPEConf0
& ~mask
) | (arg1
& mask
);
1050 // TODO: TC exclusive handling due to ERL/EXL.
1052 env
->CP0_VPEConf0
= newval
;
1055 void helper_mttc0_vpeconf0(CPUMIPSState
*env
, target_ulong arg1
)
1057 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1058 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1062 mask
|= (1 << CP0VPEC0_MVP
) | (1 << CP0VPEC0_VPA
);
1063 newval
= (other
->CP0_VPEConf0
& ~mask
) | (arg1
& mask
);
1065 /* TODO: TC exclusive handling due to ERL/EXL. */
1066 other
->CP0_VPEConf0
= newval
;
1069 void helper_mtc0_vpeconf1(CPUMIPSState
*env
, target_ulong arg1
)
1074 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1075 mask
|= (0xff << CP0VPEC1_NCX
) | (0xff << CP0VPEC1_NCP2
) |
1076 (0xff << CP0VPEC1_NCP1
);
1077 newval
= (env
->CP0_VPEConf1
& ~mask
) | (arg1
& mask
);
1079 /* UDI not implemented. */
1080 /* CP2 not implemented. */
1082 // TODO: Handle FPU (CP1) binding.
1084 env
->CP0_VPEConf1
= newval
;
1087 void helper_mtc0_yqmask(CPUMIPSState
*env
, target_ulong arg1
)
1089 /* Yield qualifier inputs not implemented. */
1090 env
->CP0_YQMask
= 0x00000000;
1093 void helper_mtc0_vpeopt(CPUMIPSState
*env
, target_ulong arg1
)
1095 env
->CP0_VPEOpt
= arg1
& 0x0000ffff;
1098 void helper_mtc0_entrylo0(CPUMIPSState
*env
, target_ulong arg1
)
1100 /* Large physaddr (PABITS) not implemented */
1101 /* 1k pages not implemented */
1102 env
->CP0_EntryLo0
= arg1
& 0x3FFFFFFF;
1105 void helper_mtc0_tcstatus(CPUMIPSState
*env
, target_ulong arg1
)
1107 uint32_t mask
= env
->CP0_TCStatus_rw_bitmask
;
1110 newval
= (env
->active_tc
.CP0_TCStatus
& ~mask
) | (arg1
& mask
);
1112 env
->active_tc
.CP0_TCStatus
= newval
;
1113 sync_c0_tcstatus(env
, env
->current_tc
, newval
);
1116 void helper_mttc0_tcstatus(CPUMIPSState
*env
, target_ulong arg1
)
1118 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1119 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1121 if (other_tc
== other
->current_tc
)
1122 other
->active_tc
.CP0_TCStatus
= arg1
;
1124 other
->tcs
[other_tc
].CP0_TCStatus
= arg1
;
1125 sync_c0_tcstatus(other
, other_tc
, arg1
);
1128 void helper_mtc0_tcbind(CPUMIPSState
*env
, target_ulong arg1
)
1130 uint32_t mask
= (1 << CP0TCBd_TBE
);
1133 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1134 mask
|= (1 << CP0TCBd_CurVPE
);
1135 newval
= (env
->active_tc
.CP0_TCBind
& ~mask
) | (arg1
& mask
);
1136 env
->active_tc
.CP0_TCBind
= newval
;
1139 void helper_mttc0_tcbind(CPUMIPSState
*env
, target_ulong arg1
)
1141 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1142 uint32_t mask
= (1 << CP0TCBd_TBE
);
1144 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1146 if (other
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1147 mask
|= (1 << CP0TCBd_CurVPE
);
1148 if (other_tc
== other
->current_tc
) {
1149 newval
= (other
->active_tc
.CP0_TCBind
& ~mask
) | (arg1
& mask
);
1150 other
->active_tc
.CP0_TCBind
= newval
;
1152 newval
= (other
->tcs
[other_tc
].CP0_TCBind
& ~mask
) | (arg1
& mask
);
1153 other
->tcs
[other_tc
].CP0_TCBind
= newval
;
1157 void helper_mtc0_tcrestart(CPUMIPSState
*env
, target_ulong arg1
)
1159 env
->active_tc
.PC
= arg1
;
1160 env
->active_tc
.CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1162 /* MIPS16 not implemented. */
1165 void helper_mttc0_tcrestart(CPUMIPSState
*env
, target_ulong arg1
)
1167 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1168 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1170 if (other_tc
== other
->current_tc
) {
1171 other
->active_tc
.PC
= arg1
;
1172 other
->active_tc
.CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1173 other
->lladdr
= 0ULL;
1174 /* MIPS16 not implemented. */
1176 other
->tcs
[other_tc
].PC
= arg1
;
1177 other
->tcs
[other_tc
].CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1178 other
->lladdr
= 0ULL;
1179 /* MIPS16 not implemented. */
1183 void helper_mtc0_tchalt(CPUMIPSState
*env
, target_ulong arg1
)
1185 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
1187 env
->active_tc
.CP0_TCHalt
= arg1
& 0x1;
1189 // TODO: Halt TC / Restart (if allocated+active) TC.
1190 if (env
->active_tc
.CP0_TCHalt
& 1) {
1191 mips_tc_sleep(cpu
, env
->current_tc
);
1193 mips_tc_wake(cpu
, env
->current_tc
);
1197 void helper_mttc0_tchalt(CPUMIPSState
*env
, target_ulong arg1
)
1199 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1200 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1201 MIPSCPU
*other_cpu
= mips_env_get_cpu(other
);
1203 // TODO: Halt TC / Restart (if allocated+active) TC.
1205 if (other_tc
== other
->current_tc
)
1206 other
->active_tc
.CP0_TCHalt
= arg1
;
1208 other
->tcs
[other_tc
].CP0_TCHalt
= arg1
;
1211 mips_tc_sleep(other_cpu
, other_tc
);
1213 mips_tc_wake(other_cpu
, other_tc
);
1217 void helper_mtc0_tccontext(CPUMIPSState
*env
, target_ulong arg1
)
1219 env
->active_tc
.CP0_TCContext
= arg1
;
1222 void helper_mttc0_tccontext(CPUMIPSState
*env
, target_ulong arg1
)
1224 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1225 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1227 if (other_tc
== other
->current_tc
)
1228 other
->active_tc
.CP0_TCContext
= arg1
;
1230 other
->tcs
[other_tc
].CP0_TCContext
= arg1
;
1233 void helper_mtc0_tcschedule(CPUMIPSState
*env
, target_ulong arg1
)
1235 env
->active_tc
.CP0_TCSchedule
= arg1
;
1238 void helper_mttc0_tcschedule(CPUMIPSState
*env
, target_ulong arg1
)
1240 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1241 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1243 if (other_tc
== other
->current_tc
)
1244 other
->active_tc
.CP0_TCSchedule
= arg1
;
1246 other
->tcs
[other_tc
].CP0_TCSchedule
= arg1
;
1249 void helper_mtc0_tcschefback(CPUMIPSState
*env
, target_ulong arg1
)
1251 env
->active_tc
.CP0_TCScheFBack
= arg1
;
1254 void helper_mttc0_tcschefback(CPUMIPSState
*env
, target_ulong arg1
)
1256 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1257 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1259 if (other_tc
== other
->current_tc
)
1260 other
->active_tc
.CP0_TCScheFBack
= arg1
;
1262 other
->tcs
[other_tc
].CP0_TCScheFBack
= arg1
;
1265 void helper_mtc0_entrylo1(CPUMIPSState
*env
, target_ulong arg1
)
1267 /* Large physaddr (PABITS) not implemented */
1268 /* 1k pages not implemented */
1269 env
->CP0_EntryLo1
= arg1
& 0x3FFFFFFF;
1272 void helper_mtc0_context(CPUMIPSState
*env
, target_ulong arg1
)
1274 env
->CP0_Context
= (env
->CP0_Context
& 0x007FFFFF) | (arg1
& ~0x007FFFFF);
1277 void helper_mtc0_pagemask(CPUMIPSState
*env
, target_ulong arg1
)
1279 /* 1k pages not implemented */
1280 env
->CP0_PageMask
= arg1
& (0x1FFFFFFF & (TARGET_PAGE_MASK
<< 1));
1283 void helper_mtc0_pagegrain(CPUMIPSState
*env
, target_ulong arg1
)
1285 /* SmartMIPS not implemented */
1286 /* Large physaddr (PABITS) not implemented */
1287 /* 1k pages not implemented */
1288 env
->CP0_PageGrain
= 0;
1291 void helper_mtc0_wired(CPUMIPSState
*env
, target_ulong arg1
)
1293 env
->CP0_Wired
= arg1
% env
->tlb
->nb_tlb
;
1296 void helper_mtc0_srsconf0(CPUMIPSState
*env
, target_ulong arg1
)
1298 env
->CP0_SRSConf0
|= arg1
& env
->CP0_SRSConf0_rw_bitmask
;
1301 void helper_mtc0_srsconf1(CPUMIPSState
*env
, target_ulong arg1
)
1303 env
->CP0_SRSConf1
|= arg1
& env
->CP0_SRSConf1_rw_bitmask
;
1306 void helper_mtc0_srsconf2(CPUMIPSState
*env
, target_ulong arg1
)
1308 env
->CP0_SRSConf2
|= arg1
& env
->CP0_SRSConf2_rw_bitmask
;
1311 void helper_mtc0_srsconf3(CPUMIPSState
*env
, target_ulong arg1
)
1313 env
->CP0_SRSConf3
|= arg1
& env
->CP0_SRSConf3_rw_bitmask
;
1316 void helper_mtc0_srsconf4(CPUMIPSState
*env
, target_ulong arg1
)
1318 env
->CP0_SRSConf4
|= arg1
& env
->CP0_SRSConf4_rw_bitmask
;
1321 void helper_mtc0_hwrena(CPUMIPSState
*env
, target_ulong arg1
)
1323 uint32_t mask
= 0x0000000F;
1325 if (env
->CP0_Config3
& (1 << CP0C3_ULRI
)) {
1328 if (arg1
& (1 << 29)) {
1329 env
->hflags
|= MIPS_HFLAG_HWRENA_ULR
;
1331 env
->hflags
&= ~MIPS_HFLAG_HWRENA_ULR
;
1335 env
->CP0_HWREna
= arg1
& mask
;
1338 void helper_mtc0_count(CPUMIPSState
*env
, target_ulong arg1
)
1340 cpu_mips_store_count(env
, arg1
);
1343 void helper_mtc0_entryhi(CPUMIPSState
*env
, target_ulong arg1
)
1345 target_ulong old
, val
;
1347 /* 1k pages not implemented */
1348 val
= arg1
& ((TARGET_PAGE_MASK
<< 1) | 0xFF);
1349 #if defined(TARGET_MIPS64)
1350 val
&= env
->SEGMask
;
1352 old
= env
->CP0_EntryHi
;
1353 env
->CP0_EntryHi
= val
;
1354 if (env
->CP0_Config3
& (1 << CP0C3_MT
)) {
1355 sync_c0_entryhi(env
, env
->current_tc
);
1357 /* If the ASID changes, flush qemu's TLB. */
1358 if ((old
& 0xFF) != (val
& 0xFF))
1359 cpu_mips_tlb_flush(env
, 1);
1362 void helper_mttc0_entryhi(CPUMIPSState
*env
, target_ulong arg1
)
1364 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1365 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1367 other
->CP0_EntryHi
= arg1
;
1368 sync_c0_entryhi(other
, other_tc
);
1371 void helper_mtc0_compare(CPUMIPSState
*env
, target_ulong arg1
)
1373 cpu_mips_store_compare(env
, arg1
);
1376 void helper_mtc0_status(CPUMIPSState
*env
, target_ulong arg1
)
1378 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
1380 uint32_t mask
= env
->CP0_Status_rw_bitmask
;
1383 old
= env
->CP0_Status
;
1384 env
->CP0_Status
= (env
->CP0_Status
& ~mask
) | val
;
1385 if (env
->CP0_Config3
& (1 << CP0C3_MT
)) {
1386 sync_c0_status(env
, env
, env
->current_tc
);
1388 compute_hflags(env
);
1391 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
1392 qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x",
1393 old
, old
& env
->CP0_Cause
& CP0Ca_IP_mask
,
1394 val
, val
& env
->CP0_Cause
& CP0Ca_IP_mask
,
1396 switch (env
->hflags
& MIPS_HFLAG_KSU
) {
1397 case MIPS_HFLAG_UM
: qemu_log(", UM\n"); break;
1398 case MIPS_HFLAG_SM
: qemu_log(", SM\n"); break;
1399 case MIPS_HFLAG_KM
: qemu_log("\n"); break;
1401 cpu_abort(CPU(cpu
), "Invalid MMU mode!\n");
1407 void helper_mttc0_status(CPUMIPSState
*env
, target_ulong arg1
)
1409 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1410 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1412 other
->CP0_Status
= arg1
& ~0xf1000018;
1413 sync_c0_status(env
, other
, other_tc
);
1416 void helper_mtc0_intctl(CPUMIPSState
*env
, target_ulong arg1
)
1418 /* vectored interrupts not implemented, no performance counters. */
1419 env
->CP0_IntCtl
= (env
->CP0_IntCtl
& ~0x000003e0) | (arg1
& 0x000003e0);
1422 void helper_mtc0_srsctl(CPUMIPSState
*env
, target_ulong arg1
)
1424 uint32_t mask
= (0xf << CP0SRSCtl_ESS
) | (0xf << CP0SRSCtl_PSS
);
1425 env
->CP0_SRSCtl
= (env
->CP0_SRSCtl
& ~mask
) | (arg1
& mask
);
1428 static void mtc0_cause(CPUMIPSState
*cpu
, target_ulong arg1
)
1430 uint32_t mask
= 0x00C00300;
1431 uint32_t old
= cpu
->CP0_Cause
;
1434 if (cpu
->insn_flags
& ISA_MIPS32R2
) {
1435 mask
|= 1 << CP0Ca_DC
;
1438 cpu
->CP0_Cause
= (cpu
->CP0_Cause
& ~mask
) | (arg1
& mask
);
1440 if ((old
^ cpu
->CP0_Cause
) & (1 << CP0Ca_DC
)) {
1441 if (cpu
->CP0_Cause
& (1 << CP0Ca_DC
)) {
1442 cpu_mips_stop_count(cpu
);
1444 cpu_mips_start_count(cpu
);
1448 /* Set/reset software interrupts */
1449 for (i
= 0 ; i
< 2 ; i
++) {
1450 if ((old
^ cpu
->CP0_Cause
) & (1 << (CP0Ca_IP
+ i
))) {
1451 cpu_mips_soft_irq(cpu
, i
, cpu
->CP0_Cause
& (1 << (CP0Ca_IP
+ i
)));
1456 void helper_mtc0_cause(CPUMIPSState
*env
, target_ulong arg1
)
1458 mtc0_cause(env
, arg1
);
1461 void helper_mttc0_cause(CPUMIPSState
*env
, target_ulong arg1
)
1463 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1464 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1466 mtc0_cause(other
, arg1
);
1469 target_ulong
helper_mftc0_epc(CPUMIPSState
*env
)
1471 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1472 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1474 return other
->CP0_EPC
;
1477 target_ulong
helper_mftc0_ebase(CPUMIPSState
*env
)
1479 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1480 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1482 return other
->CP0_EBase
;
1485 void helper_mtc0_ebase(CPUMIPSState
*env
, target_ulong arg1
)
1487 /* vectored interrupts not implemented */
1488 env
->CP0_EBase
= (env
->CP0_EBase
& ~0x3FFFF000) | (arg1
& 0x3FFFF000);
1491 void helper_mttc0_ebase(CPUMIPSState
*env
, target_ulong arg1
)
1493 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1494 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1495 other
->CP0_EBase
= (other
->CP0_EBase
& ~0x3FFFF000) | (arg1
& 0x3FFFF000);
1498 target_ulong
helper_mftc0_configx(CPUMIPSState
*env
, target_ulong idx
)
1500 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1501 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1504 case 0: return other
->CP0_Config0
;
1505 case 1: return other
->CP0_Config1
;
1506 case 2: return other
->CP0_Config2
;
1507 case 3: return other
->CP0_Config3
;
1508 /* 4 and 5 are reserved. */
1509 case 6: return other
->CP0_Config6
;
1510 case 7: return other
->CP0_Config7
;
1517 void helper_mtc0_config0(CPUMIPSState
*env
, target_ulong arg1
)
1519 env
->CP0_Config0
= (env
->CP0_Config0
& 0x81FFFFF8) | (arg1
& 0x00000007);
1522 void helper_mtc0_config2(CPUMIPSState
*env
, target_ulong arg1
)
1524 /* tertiary/secondary caches not implemented */
1525 env
->CP0_Config2
= (env
->CP0_Config2
& 0x8FFF0FFF);
1528 void helper_mtc0_config4(CPUMIPSState
*env
, target_ulong arg1
)
1530 env
->CP0_Config4
= (env
->CP0_Config4
& (~env
->CP0_Config4_rw_bitmask
)) |
1531 (arg1
& env
->CP0_Config4_rw_bitmask
);
1534 void helper_mtc0_config5(CPUMIPSState
*env
, target_ulong arg1
)
1536 env
->CP0_Config5
= (env
->CP0_Config5
& (~env
->CP0_Config5_rw_bitmask
)) |
1537 (arg1
& env
->CP0_Config5_rw_bitmask
);
1540 void helper_mtc0_lladdr(CPUMIPSState
*env
, target_ulong arg1
)
1542 target_long mask
= env
->CP0_LLAddr_rw_bitmask
;
1543 arg1
= arg1
<< env
->CP0_LLAddr_shift
;
1544 env
->lladdr
= (env
->lladdr
& ~mask
) | (arg1
& mask
);
1547 void helper_mtc0_watchlo(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1549 /* Watch exceptions for instructions, data loads, data stores
1551 env
->CP0_WatchLo
[sel
] = (arg1
& ~0x7);
1554 void helper_mtc0_watchhi(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1556 env
->CP0_WatchHi
[sel
] = (arg1
& 0x40FF0FF8);
1557 env
->CP0_WatchHi
[sel
] &= ~(env
->CP0_WatchHi
[sel
] & arg1
& 0x7);
1560 void helper_mtc0_xcontext(CPUMIPSState
*env
, target_ulong arg1
)
1562 target_ulong mask
= (1ULL << (env
->SEGBITS
- 7)) - 1;
1563 env
->CP0_XContext
= (env
->CP0_XContext
& mask
) | (arg1
& ~mask
);
1566 void helper_mtc0_framemask(CPUMIPSState
*env
, target_ulong arg1
)
1568 env
->CP0_Framemask
= arg1
; /* XXX */
1571 void helper_mtc0_debug(CPUMIPSState
*env
, target_ulong arg1
)
1573 env
->CP0_Debug
= (env
->CP0_Debug
& 0x8C03FC1F) | (arg1
& 0x13300120);
1574 if (arg1
& (1 << CP0DB_DM
))
1575 env
->hflags
|= MIPS_HFLAG_DM
;
1577 env
->hflags
&= ~MIPS_HFLAG_DM
;
1580 void helper_mttc0_debug(CPUMIPSState
*env
, target_ulong arg1
)
1582 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1583 uint32_t val
= arg1
& ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
));
1584 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1586 /* XXX: Might be wrong, check with EJTAG spec. */
1587 if (other_tc
== other
->current_tc
)
1588 other
->active_tc
.CP0_Debug_tcstatus
= val
;
1590 other
->tcs
[other_tc
].CP0_Debug_tcstatus
= val
;
1591 other
->CP0_Debug
= (other
->CP0_Debug
&
1592 ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
))) |
1593 (arg1
& ~((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
)));
1596 void helper_mtc0_performance0(CPUMIPSState
*env
, target_ulong arg1
)
1598 env
->CP0_Performance0
= arg1
& 0x000007ff;
1601 void helper_mtc0_taglo(CPUMIPSState
*env
, target_ulong arg1
)
1603 env
->CP0_TagLo
= arg1
& 0xFFFFFCF6;
1606 void helper_mtc0_datalo(CPUMIPSState
*env
, target_ulong arg1
)
1608 env
->CP0_DataLo
= arg1
; /* XXX */
1611 void helper_mtc0_taghi(CPUMIPSState
*env
, target_ulong arg1
)
1613 env
->CP0_TagHi
= arg1
; /* XXX */
1616 void helper_mtc0_datahi(CPUMIPSState
*env
, target_ulong arg1
)
1618 env
->CP0_DataHi
= arg1
; /* XXX */
1621 /* MIPS MT functions */
1622 target_ulong
helper_mftgpr(CPUMIPSState
*env
, uint32_t sel
)
1624 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1625 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1627 if (other_tc
== other
->current_tc
)
1628 return other
->active_tc
.gpr
[sel
];
1630 return other
->tcs
[other_tc
].gpr
[sel
];
1633 target_ulong
helper_mftlo(CPUMIPSState
*env
, uint32_t sel
)
1635 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1636 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1638 if (other_tc
== other
->current_tc
)
1639 return other
->active_tc
.LO
[sel
];
1641 return other
->tcs
[other_tc
].LO
[sel
];
1644 target_ulong
helper_mfthi(CPUMIPSState
*env
, uint32_t sel
)
1646 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1647 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1649 if (other_tc
== other
->current_tc
)
1650 return other
->active_tc
.HI
[sel
];
1652 return other
->tcs
[other_tc
].HI
[sel
];
1655 target_ulong
helper_mftacx(CPUMIPSState
*env
, uint32_t sel
)
1657 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1658 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1660 if (other_tc
== other
->current_tc
)
1661 return other
->active_tc
.ACX
[sel
];
1663 return other
->tcs
[other_tc
].ACX
[sel
];
1666 target_ulong
helper_mftdsp(CPUMIPSState
*env
)
1668 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1669 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1671 if (other_tc
== other
->current_tc
)
1672 return other
->active_tc
.DSPControl
;
1674 return other
->tcs
[other_tc
].DSPControl
;
1677 void helper_mttgpr(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1679 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1680 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1682 if (other_tc
== other
->current_tc
)
1683 other
->active_tc
.gpr
[sel
] = arg1
;
1685 other
->tcs
[other_tc
].gpr
[sel
] = arg1
;
1688 void helper_mttlo(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1690 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1691 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1693 if (other_tc
== other
->current_tc
)
1694 other
->active_tc
.LO
[sel
] = arg1
;
1696 other
->tcs
[other_tc
].LO
[sel
] = arg1
;
1699 void helper_mtthi(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1701 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1702 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1704 if (other_tc
== other
->current_tc
)
1705 other
->active_tc
.HI
[sel
] = arg1
;
1707 other
->tcs
[other_tc
].HI
[sel
] = arg1
;
1710 void helper_mttacx(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1712 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1713 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1715 if (other_tc
== other
->current_tc
)
1716 other
->active_tc
.ACX
[sel
] = arg1
;
1718 other
->tcs
[other_tc
].ACX
[sel
] = arg1
;
1721 void helper_mttdsp(CPUMIPSState
*env
, target_ulong arg1
)
1723 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1724 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1726 if (other_tc
== other
->current_tc
)
1727 other
->active_tc
.DSPControl
= arg1
;
1729 other
->tcs
[other_tc
].DSPControl
= arg1
;
1732 /* MIPS MT functions */
1733 target_ulong
helper_dmt(void)
1739 target_ulong
helper_emt(void)
1745 target_ulong
helper_dvpe(CPUMIPSState
*env
)
1747 CPUState
*other_cs
= first_cpu
;
1748 target_ulong prev
= env
->mvp
->CP0_MVPControl
;
1750 CPU_FOREACH(other_cs
) {
1751 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1752 /* Turn off all VPEs except the one executing the dvpe. */
1753 if (&other_cpu
->env
!= env
) {
1754 other_cpu
->env
.mvp
->CP0_MVPControl
&= ~(1 << CP0MVPCo_EVP
);
1755 mips_vpe_sleep(other_cpu
);
1761 target_ulong
helper_evpe(CPUMIPSState
*env
)
1763 CPUState
*other_cs
= first_cpu
;
1764 target_ulong prev
= env
->mvp
->CP0_MVPControl
;
1766 CPU_FOREACH(other_cs
) {
1767 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1769 if (&other_cpu
->env
!= env
1770 /* If the VPE is WFI, don't disturb its sleep. */
1771 && !mips_vpe_is_wfi(other_cpu
)) {
1772 /* Enable the VPE. */
1773 other_cpu
->env
.mvp
->CP0_MVPControl
|= (1 << CP0MVPCo_EVP
);
1774 mips_vpe_wake(other_cpu
); /* And wake it up. */
1779 #endif /* !CONFIG_USER_ONLY */
1781 void helper_fork(target_ulong arg1
, target_ulong arg2
)
1783 // arg1 = rt, arg2 = rs
1784 // TODO: store to TC register
1787 target_ulong
helper_yield(CPUMIPSState
*env
, target_ulong arg
)
1789 target_long arg1
= arg
;
1792 /* No scheduling policy implemented. */
1794 if (env
->CP0_VPEControl
& (1 << CP0VPECo_YSI
) &&
1795 env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_DT
)) {
1796 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1797 env
->CP0_VPEControl
|= 4 << CP0VPECo_EXCPT
;
1798 helper_raise_exception(env
, EXCP_THREAD
);
1801 } else if (arg1
== 0) {
1802 if (0 /* TODO: TC underflow */) {
1803 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1804 helper_raise_exception(env
, EXCP_THREAD
);
1806 // TODO: Deallocate TC
1808 } else if (arg1
> 0) {
1809 /* Yield qualifier inputs not implemented. */
1810 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1811 env
->CP0_VPEControl
|= 2 << CP0VPECo_EXCPT
;
1812 helper_raise_exception(env
, EXCP_THREAD
);
1814 return env
->CP0_YQMask
;
1817 #ifndef CONFIG_USER_ONLY
1818 /* TLB management */
1819 static void cpu_mips_tlb_flush (CPUMIPSState
*env
, int flush_global
)
1821 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
1823 /* Flush qemu's TLB and discard all shadowed entries. */
1824 tlb_flush(CPU(cpu
), flush_global
);
1825 env
->tlb
->tlb_in_use
= env
->tlb
->nb_tlb
;
1828 static void r4k_mips_tlb_flush_extra (CPUMIPSState
*env
, int first
)
1830 /* Discard entries from env->tlb[first] onwards. */
1831 while (env
->tlb
->tlb_in_use
> first
) {
1832 r4k_invalidate_tlb(env
, --env
->tlb
->tlb_in_use
, 0);
1836 static void r4k_fill_tlb(CPUMIPSState
*env
, int idx
)
1840 /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
1841 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
1842 tlb
->VPN
= env
->CP0_EntryHi
& (TARGET_PAGE_MASK
<< 1);
1843 #if defined(TARGET_MIPS64)
1844 tlb
->VPN
&= env
->SEGMask
;
1846 tlb
->ASID
= env
->CP0_EntryHi
& 0xFF;
1847 tlb
->PageMask
= env
->CP0_PageMask
;
1848 tlb
->G
= env
->CP0_EntryLo0
& env
->CP0_EntryLo1
& 1;
1849 tlb
->V0
= (env
->CP0_EntryLo0
& 2) != 0;
1850 tlb
->D0
= (env
->CP0_EntryLo0
& 4) != 0;
1851 tlb
->C0
= (env
->CP0_EntryLo0
>> 3) & 0x7;
1852 tlb
->PFN
[0] = (env
->CP0_EntryLo0
>> 6) << 12;
1853 tlb
->V1
= (env
->CP0_EntryLo1
& 2) != 0;
1854 tlb
->D1
= (env
->CP0_EntryLo1
& 4) != 0;
1855 tlb
->C1
= (env
->CP0_EntryLo1
>> 3) & 0x7;
1856 tlb
->PFN
[1] = (env
->CP0_EntryLo1
>> 6) << 12;
1859 void r4k_helper_tlbwi(CPUMIPSState
*env
)
1865 bool G
, V0
, D0
, V1
, D1
;
1867 idx
= (env
->CP0_Index
& ~0x80000000) % env
->tlb
->nb_tlb
;
1868 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
1869 VPN
= env
->CP0_EntryHi
& (TARGET_PAGE_MASK
<< 1);
1870 #if defined(TARGET_MIPS64)
1871 VPN
&= env
->SEGMask
;
1873 ASID
= env
->CP0_EntryHi
& 0xff;
1874 G
= env
->CP0_EntryLo0
& env
->CP0_EntryLo1
& 1;
1875 V0
= (env
->CP0_EntryLo0
& 2) != 0;
1876 D0
= (env
->CP0_EntryLo0
& 4) != 0;
1877 V1
= (env
->CP0_EntryLo1
& 2) != 0;
1878 D1
= (env
->CP0_EntryLo1
& 4) != 0;
1880 /* Discard cached TLB entries, unless tlbwi is just upgrading access
1881 permissions on the current entry. */
1882 if (tlb
->VPN
!= VPN
|| tlb
->ASID
!= ASID
|| tlb
->G
!= G
||
1883 (tlb
->V0
&& !V0
) || (tlb
->D0
&& !D0
) ||
1884 (tlb
->V1
&& !V1
) || (tlb
->D1
&& !D1
)) {
1885 r4k_mips_tlb_flush_extra(env
, env
->tlb
->nb_tlb
);
1888 r4k_invalidate_tlb(env
, idx
, 0);
1889 r4k_fill_tlb(env
, idx
);
1892 void r4k_helper_tlbwr(CPUMIPSState
*env
)
1894 int r
= cpu_mips_get_random(env
);
1896 r4k_invalidate_tlb(env
, r
, 1);
1897 r4k_fill_tlb(env
, r
);
1900 void r4k_helper_tlbp(CPUMIPSState
*env
)
1909 ASID
= env
->CP0_EntryHi
& 0xFF;
1910 for (i
= 0; i
< env
->tlb
->nb_tlb
; i
++) {
1911 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[i
];
1912 /* 1k pages are not supported. */
1913 mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
1914 tag
= env
->CP0_EntryHi
& ~mask
;
1915 VPN
= tlb
->VPN
& ~mask
;
1916 #if defined(TARGET_MIPS64)
1917 tag
&= env
->SEGMask
;
1919 /* Check ASID, virtual page number & size */
1920 if ((tlb
->G
== 1 || tlb
->ASID
== ASID
) && VPN
== tag
) {
1926 if (i
== env
->tlb
->nb_tlb
) {
1927 /* No match. Discard any shadow entries, if any of them match. */
1928 for (i
= env
->tlb
->nb_tlb
; i
< env
->tlb
->tlb_in_use
; i
++) {
1929 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[i
];
1930 /* 1k pages are not supported. */
1931 mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
1932 tag
= env
->CP0_EntryHi
& ~mask
;
1933 VPN
= tlb
->VPN
& ~mask
;
1934 #if defined(TARGET_MIPS64)
1935 tag
&= env
->SEGMask
;
1937 /* Check ASID, virtual page number & size */
1938 if ((tlb
->G
== 1 || tlb
->ASID
== ASID
) && VPN
== tag
) {
1939 r4k_mips_tlb_flush_extra (env
, i
);
1944 env
->CP0_Index
|= 0x80000000;
1948 void r4k_helper_tlbr(CPUMIPSState
*env
)
1954 ASID
= env
->CP0_EntryHi
& 0xFF;
1955 idx
= (env
->CP0_Index
& ~0x80000000) % env
->tlb
->nb_tlb
;
1956 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
1958 /* If this will change the current ASID, flush qemu's TLB. */
1959 if (ASID
!= tlb
->ASID
)
1960 cpu_mips_tlb_flush (env
, 1);
1962 r4k_mips_tlb_flush_extra(env
, env
->tlb
->nb_tlb
);
1964 env
->CP0_EntryHi
= tlb
->VPN
| tlb
->ASID
;
1965 env
->CP0_PageMask
= tlb
->PageMask
;
1966 env
->CP0_EntryLo0
= tlb
->G
| (tlb
->V0
<< 1) | (tlb
->D0
<< 2) |
1967 (tlb
->C0
<< 3) | (tlb
->PFN
[0] >> 6);
1968 env
->CP0_EntryLo1
= tlb
->G
| (tlb
->V1
<< 1) | (tlb
->D1
<< 2) |
1969 (tlb
->C1
<< 3) | (tlb
->PFN
[1] >> 6);
1972 void helper_tlbwi(CPUMIPSState
*env
)
1974 env
->tlb
->helper_tlbwi(env
);
1977 void helper_tlbwr(CPUMIPSState
*env
)
1979 env
->tlb
->helper_tlbwr(env
);
1982 void helper_tlbp(CPUMIPSState
*env
)
1984 env
->tlb
->helper_tlbp(env
);
1987 void helper_tlbr(CPUMIPSState
*env
)
1989 env
->tlb
->helper_tlbr(env
);
1993 target_ulong
helper_di(CPUMIPSState
*env
)
1995 target_ulong t0
= env
->CP0_Status
;
1997 env
->CP0_Status
= t0
& ~(1 << CP0St_IE
);
2001 target_ulong
helper_ei(CPUMIPSState
*env
)
2003 target_ulong t0
= env
->CP0_Status
;
2005 env
->CP0_Status
= t0
| (1 << CP0St_IE
);
2009 static void debug_pre_eret(CPUMIPSState
*env
)
2011 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
2012 qemu_log("ERET: PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
,
2013 env
->active_tc
.PC
, env
->CP0_EPC
);
2014 if (env
->CP0_Status
& (1 << CP0St_ERL
))
2015 qemu_log(" ErrorEPC " TARGET_FMT_lx
, env
->CP0_ErrorEPC
);
2016 if (env
->hflags
& MIPS_HFLAG_DM
)
2017 qemu_log(" DEPC " TARGET_FMT_lx
, env
->CP0_DEPC
);
2022 static void debug_post_eret(CPUMIPSState
*env
)
2024 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
2026 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
2027 qemu_log(" => PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
,
2028 env
->active_tc
.PC
, env
->CP0_EPC
);
2029 if (env
->CP0_Status
& (1 << CP0St_ERL
))
2030 qemu_log(" ErrorEPC " TARGET_FMT_lx
, env
->CP0_ErrorEPC
);
2031 if (env
->hflags
& MIPS_HFLAG_DM
)
2032 qemu_log(" DEPC " TARGET_FMT_lx
, env
->CP0_DEPC
);
2033 switch (env
->hflags
& MIPS_HFLAG_KSU
) {
2034 case MIPS_HFLAG_UM
: qemu_log(", UM\n"); break;
2035 case MIPS_HFLAG_SM
: qemu_log(", SM\n"); break;
2036 case MIPS_HFLAG_KM
: qemu_log("\n"); break;
2038 cpu_abort(CPU(cpu
), "Invalid MMU mode!\n");
2044 static void set_pc(CPUMIPSState
*env
, target_ulong error_pc
)
2046 env
->active_tc
.PC
= error_pc
& ~(target_ulong
)1;
2048 env
->hflags
|= MIPS_HFLAG_M16
;
2050 env
->hflags
&= ~(MIPS_HFLAG_M16
);
2054 void helper_eret(CPUMIPSState
*env
)
2056 debug_pre_eret(env
);
2057 if (env
->CP0_Status
& (1 << CP0St_ERL
)) {
2058 set_pc(env
, env
->CP0_ErrorEPC
);
2059 env
->CP0_Status
&= ~(1 << CP0St_ERL
);
2061 set_pc(env
, env
->CP0_EPC
);
2062 env
->CP0_Status
&= ~(1 << CP0St_EXL
);
2064 compute_hflags(env
);
2065 debug_post_eret(env
);
2069 void helper_deret(CPUMIPSState
*env
)
2071 debug_pre_eret(env
);
2072 set_pc(env
, env
->CP0_DEPC
);
2074 env
->hflags
&= MIPS_HFLAG_DM
;
2075 compute_hflags(env
);
2076 debug_post_eret(env
);
2079 #endif /* !CONFIG_USER_ONLY */
2081 target_ulong
helper_rdhwr_cpunum(CPUMIPSState
*env
)
2083 if ((env
->hflags
& MIPS_HFLAG_CP0
) ||
2084 (env
->CP0_HWREna
& (1 << 0)))
2085 return env
->CP0_EBase
& 0x3ff;
2087 helper_raise_exception(env
, EXCP_RI
);
2092 target_ulong
helper_rdhwr_synci_step(CPUMIPSState
*env
)
2094 if ((env
->hflags
& MIPS_HFLAG_CP0
) ||
2095 (env
->CP0_HWREna
& (1 << 1)))
2096 return env
->SYNCI_Step
;
2098 helper_raise_exception(env
, EXCP_RI
);
2103 target_ulong
helper_rdhwr_cc(CPUMIPSState
*env
)
2105 if ((env
->hflags
& MIPS_HFLAG_CP0
) ||
2106 (env
->CP0_HWREna
& (1 << 2)))
2107 return env
->CP0_Count
;
2109 helper_raise_exception(env
, EXCP_RI
);
2114 target_ulong
helper_rdhwr_ccres(CPUMIPSState
*env
)
2116 if ((env
->hflags
& MIPS_HFLAG_CP0
) ||
2117 (env
->CP0_HWREna
& (1 << 3)))
2120 helper_raise_exception(env
, EXCP_RI
);
2125 void helper_pmon(CPUMIPSState
*env
, int function
)
2129 case 2: /* TODO: char inbyte(int waitflag); */
2130 if (env
->active_tc
.gpr
[4] == 0)
2131 env
->active_tc
.gpr
[2] = -1;
2133 case 11: /* TODO: char inbyte (void); */
2134 env
->active_tc
.gpr
[2] = -1;
2138 printf("%c", (char)(env
->active_tc
.gpr
[4] & 0xFF));
2144 unsigned char *fmt
= (void *)(uintptr_t)env
->active_tc
.gpr
[4];
2151 void helper_wait(CPUMIPSState
*env
)
2153 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
2156 cpu_reset_interrupt(cs
, CPU_INTERRUPT_WAKE
);
2157 helper_raise_exception(env
, EXCP_HLT
);
2160 #if !defined(CONFIG_USER_ONLY)
2162 void mips_cpu_do_unaligned_access(CPUState
*cs
, vaddr addr
,
2163 int is_write
, int is_user
, uintptr_t retaddr
)
2165 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2166 CPUMIPSState
*env
= &cpu
->env
;
2168 env
->CP0_BadVAddr
= addr
;
2169 do_raise_exception(env
, (is_write
== 1) ? EXCP_AdES
: EXCP_AdEL
, retaddr
);
2172 void tlb_fill(CPUState
*cs
, target_ulong addr
, int is_write
, int mmu_idx
,
2177 ret
= mips_cpu_handle_mmu_fault(cs
, addr
, is_write
, mmu_idx
);
2179 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2180 CPUMIPSState
*env
= &cpu
->env
;
2182 do_raise_exception_err(env
, cs
->exception_index
,
2183 env
->error_code
, retaddr
);
2187 void mips_cpu_unassigned_access(CPUState
*cs
, hwaddr addr
,
2188 bool is_write
, bool is_exec
, int unused
,
2191 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2192 CPUMIPSState
*env
= &cpu
->env
;
2195 * Raising an exception with KVM enabled will crash because it won't be from
2196 * the main execution loop so the longjmp won't have a matching setjmp.
2197 * Until we can trigger a bus error exception through KVM lets just ignore
2200 if (kvm_enabled()) {
2205 helper_raise_exception(env
, EXCP_IBE
);
2207 helper_raise_exception(env
, EXCP_DBE
);
2210 #endif /* !CONFIG_USER_ONLY */
2212 /* Complex FPU operations which may need stack space. */
2214 #define FLOAT_TWO32 make_float32(1 << 30)
2215 #define FLOAT_TWO64 make_float64(1ULL << 62)
2216 #define FP_TO_INT32_OVERFLOW 0x7fffffff
2217 #define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
2219 /* convert MIPS rounding mode in FCR31 to IEEE library */
2220 static unsigned int ieee_rm
[] = {
2221 float_round_nearest_even
,
2222 float_round_to_zero
,
2227 static inline void restore_rounding_mode(CPUMIPSState
*env
)
2229 set_float_rounding_mode(ieee_rm
[env
->active_fpu
.fcr31
& 3],
2230 &env
->active_fpu
.fp_status
);
2233 static inline void restore_flush_mode(CPUMIPSState
*env
)
2235 set_flush_to_zero((env
->active_fpu
.fcr31
& (1 << 24)) != 0,
2236 &env
->active_fpu
.fp_status
);
2239 target_ulong
helper_cfc1(CPUMIPSState
*env
, uint32_t reg
)
2241 target_ulong arg1
= 0;
2245 arg1
= (int32_t)env
->active_fpu
.fcr0
;
2248 /* UFR Support - Read Status FR */
2249 if (env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) {
2250 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2252 ((env
->CP0_Status
& (1 << CP0St_FR
)) >> CP0St_FR
);
2254 helper_raise_exception(env
, EXCP_RI
);
2259 arg1
= ((env
->active_fpu
.fcr31
>> 24) & 0xfe) | ((env
->active_fpu
.fcr31
>> 23) & 0x1);
2262 arg1
= env
->active_fpu
.fcr31
& 0x0003f07c;
2265 arg1
= (env
->active_fpu
.fcr31
& 0x00000f83) | ((env
->active_fpu
.fcr31
>> 22) & 0x4);
2268 arg1
= (int32_t)env
->active_fpu
.fcr31
;
2275 void helper_ctc1(CPUMIPSState
*env
, target_ulong arg1
, uint32_t fs
, uint32_t rt
)
2279 /* UFR Alias - Reset Status FR */
2280 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) && (rt
== 0))) {
2283 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2284 env
->CP0_Status
&= ~(1 << CP0St_FR
);
2285 compute_hflags(env
);
2287 helper_raise_exception(env
, EXCP_RI
);
2291 /* UNFR Alias - Set Status FR */
2292 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) && (rt
== 0))) {
2295 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2296 env
->CP0_Status
|= (1 << CP0St_FR
);
2297 compute_hflags(env
);
2299 helper_raise_exception(env
, EXCP_RI
);
2303 if (arg1
& 0xffffff00)
2305 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0x017fffff) | ((arg1
& 0xfe) << 24) |
2306 ((arg1
& 0x1) << 23);
2309 if (arg1
& 0x007c0000)
2311 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0xfffc0f83) | (arg1
& 0x0003f07c);
2314 if (arg1
& 0x007c0000)
2316 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0xfefff07c) | (arg1
& 0x00000f83) |
2317 ((arg1
& 0x4) << 22);
2320 if (arg1
& 0x007c0000)
2322 env
->active_fpu
.fcr31
= arg1
;
2327 /* set rounding mode */
2328 restore_rounding_mode(env
);
2329 /* set flush-to-zero mode */
2330 restore_flush_mode(env
);
2331 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2332 if ((GET_FP_ENABLE(env
->active_fpu
.fcr31
) | 0x20) & GET_FP_CAUSE(env
->active_fpu
.fcr31
))
2333 do_raise_exception(env
, EXCP_FPE
, GETPC());
2336 static inline int ieee_ex_to_mips(int xcpt
)
2340 if (xcpt
& float_flag_invalid
) {
2343 if (xcpt
& float_flag_overflow
) {
2346 if (xcpt
& float_flag_underflow
) {
2347 ret
|= FP_UNDERFLOW
;
2349 if (xcpt
& float_flag_divbyzero
) {
2352 if (xcpt
& float_flag_inexact
) {
2359 static inline void update_fcr31(CPUMIPSState
*env
, uintptr_t pc
)
2361 int tmp
= ieee_ex_to_mips(get_float_exception_flags(&env
->active_fpu
.fp_status
));
2363 SET_FP_CAUSE(env
->active_fpu
.fcr31
, tmp
);
2366 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2368 if (GET_FP_ENABLE(env
->active_fpu
.fcr31
) & tmp
) {
2369 do_raise_exception(env
, EXCP_FPE
, pc
);
2371 UPDATE_FP_FLAGS(env
->active_fpu
.fcr31
, tmp
);
2377 Single precition routines have a "s" suffix, double precision a
2378 "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps",
2379 paired single lower "pl", paired single upper "pu". */
2381 /* unary operations, modifying fp status */
2382 uint64_t helper_float_sqrt_d(CPUMIPSState
*env
, uint64_t fdt0
)
2384 fdt0
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
2385 update_fcr31(env
, GETPC());
2389 uint32_t helper_float_sqrt_s(CPUMIPSState
*env
, uint32_t fst0
)
2391 fst0
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
2392 update_fcr31(env
, GETPC());
2396 uint64_t helper_float_cvtd_s(CPUMIPSState
*env
, uint32_t fst0
)
2400 fdt2
= float32_to_float64(fst0
, &env
->active_fpu
.fp_status
);
2401 update_fcr31(env
, GETPC());
2405 uint64_t helper_float_cvtd_w(CPUMIPSState
*env
, uint32_t wt0
)
2409 fdt2
= int32_to_float64(wt0
, &env
->active_fpu
.fp_status
);
2410 update_fcr31(env
, GETPC());
2414 uint64_t helper_float_cvtd_l(CPUMIPSState
*env
, uint64_t dt0
)
2418 fdt2
= int64_to_float64(dt0
, &env
->active_fpu
.fp_status
);
2419 update_fcr31(env
, GETPC());
2423 uint64_t helper_float_cvtl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2427 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2428 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2429 & (float_flag_invalid
| float_flag_overflow
)) {
2430 dt2
= FP_TO_INT64_OVERFLOW
;
2432 update_fcr31(env
, GETPC());
2436 uint64_t helper_float_cvtl_s(CPUMIPSState
*env
, uint32_t fst0
)
2440 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2441 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2442 & (float_flag_invalid
| float_flag_overflow
)) {
2443 dt2
= FP_TO_INT64_OVERFLOW
;
2445 update_fcr31(env
, GETPC());
2449 uint64_t helper_float_cvtps_pw(CPUMIPSState
*env
, uint64_t dt0
)
2454 fst2
= int32_to_float32(dt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
2455 fsth2
= int32_to_float32(dt0
>> 32, &env
->active_fpu
.fp_status
);
2456 update_fcr31(env
, GETPC());
2457 return ((uint64_t)fsth2
<< 32) | fst2
;
2460 uint64_t helper_float_cvtpw_ps(CPUMIPSState
*env
, uint64_t fdt0
)
2466 wt2
= float32_to_int32(fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
2467 excp
= get_float_exception_flags(&env
->active_fpu
.fp_status
);
2468 if (excp
& (float_flag_overflow
| float_flag_invalid
)) {
2469 wt2
= FP_TO_INT32_OVERFLOW
;
2472 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2473 wth2
= float32_to_int32(fdt0
>> 32, &env
->active_fpu
.fp_status
);
2474 excph
= get_float_exception_flags(&env
->active_fpu
.fp_status
);
2475 if (excph
& (float_flag_overflow
| float_flag_invalid
)) {
2476 wth2
= FP_TO_INT32_OVERFLOW
;
2479 set_float_exception_flags(excp
| excph
, &env
->active_fpu
.fp_status
);
2480 update_fcr31(env
, GETPC());
2482 return ((uint64_t)wth2
<< 32) | wt2
;
2485 uint32_t helper_float_cvts_d(CPUMIPSState
*env
, uint64_t fdt0
)
2489 fst2
= float64_to_float32(fdt0
, &env
->active_fpu
.fp_status
);
2490 update_fcr31(env
, GETPC());
2494 uint32_t helper_float_cvts_w(CPUMIPSState
*env
, uint32_t wt0
)
2498 fst2
= int32_to_float32(wt0
, &env
->active_fpu
.fp_status
);
2499 update_fcr31(env
, GETPC());
2503 uint32_t helper_float_cvts_l(CPUMIPSState
*env
, uint64_t dt0
)
2507 fst2
= int64_to_float32(dt0
, &env
->active_fpu
.fp_status
);
2508 update_fcr31(env
, GETPC());
2512 uint32_t helper_float_cvts_pl(CPUMIPSState
*env
, uint32_t wt0
)
2517 update_fcr31(env
, GETPC());
2521 uint32_t helper_float_cvts_pu(CPUMIPSState
*env
, uint32_t wth0
)
2526 update_fcr31(env
, GETPC());
2530 uint32_t helper_float_cvtw_s(CPUMIPSState
*env
, uint32_t fst0
)
2534 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2535 update_fcr31(env
, GETPC());
2536 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2537 & (float_flag_invalid
| float_flag_overflow
)) {
2538 wt2
= FP_TO_INT32_OVERFLOW
;
2543 uint32_t helper_float_cvtw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2547 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2548 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2549 & (float_flag_invalid
| float_flag_overflow
)) {
2550 wt2
= FP_TO_INT32_OVERFLOW
;
2552 update_fcr31(env
, GETPC());
2556 uint64_t helper_float_roundl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2560 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2561 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2562 restore_rounding_mode(env
);
2563 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2564 & (float_flag_invalid
| float_flag_overflow
)) {
2565 dt2
= FP_TO_INT64_OVERFLOW
;
2567 update_fcr31(env
, GETPC());
2571 uint64_t helper_float_roundl_s(CPUMIPSState
*env
, uint32_t fst0
)
2575 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2576 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2577 restore_rounding_mode(env
);
2578 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2579 & (float_flag_invalid
| float_flag_overflow
)) {
2580 dt2
= FP_TO_INT64_OVERFLOW
;
2582 update_fcr31(env
, GETPC());
2586 uint32_t helper_float_roundw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2590 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2591 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2592 restore_rounding_mode(env
);
2593 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2594 & (float_flag_invalid
| float_flag_overflow
)) {
2595 wt2
= FP_TO_INT32_OVERFLOW
;
2597 update_fcr31(env
, GETPC());
2601 uint32_t helper_float_roundw_s(CPUMIPSState
*env
, uint32_t fst0
)
2605 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2606 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2607 restore_rounding_mode(env
);
2608 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2609 & (float_flag_invalid
| float_flag_overflow
)) {
2610 wt2
= FP_TO_INT32_OVERFLOW
;
2612 update_fcr31(env
, GETPC());
2616 uint64_t helper_float_truncl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2620 dt2
= float64_to_int64_round_to_zero(fdt0
, &env
->active_fpu
.fp_status
);
2621 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2622 & (float_flag_invalid
| float_flag_overflow
)) {
2623 dt2
= FP_TO_INT64_OVERFLOW
;
2625 update_fcr31(env
, GETPC());
2629 uint64_t helper_float_truncl_s(CPUMIPSState
*env
, uint32_t fst0
)
2633 dt2
= float32_to_int64_round_to_zero(fst0
, &env
->active_fpu
.fp_status
);
2634 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2635 & (float_flag_invalid
| float_flag_overflow
)) {
2636 dt2
= FP_TO_INT64_OVERFLOW
;
2638 update_fcr31(env
, GETPC());
2642 uint32_t helper_float_truncw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2646 wt2
= float64_to_int32_round_to_zero(fdt0
, &env
->active_fpu
.fp_status
);
2647 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2648 & (float_flag_invalid
| float_flag_overflow
)) {
2649 wt2
= FP_TO_INT32_OVERFLOW
;
2651 update_fcr31(env
, GETPC());
2655 uint32_t helper_float_truncw_s(CPUMIPSState
*env
, uint32_t fst0
)
2659 wt2
= float32_to_int32_round_to_zero(fst0
, &env
->active_fpu
.fp_status
);
2660 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2661 & (float_flag_invalid
| float_flag_overflow
)) {
2662 wt2
= FP_TO_INT32_OVERFLOW
;
2664 update_fcr31(env
, GETPC());
2668 uint64_t helper_float_ceill_d(CPUMIPSState
*env
, uint64_t fdt0
)
2672 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2673 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2674 restore_rounding_mode(env
);
2675 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2676 & (float_flag_invalid
| float_flag_overflow
)) {
2677 dt2
= FP_TO_INT64_OVERFLOW
;
2679 update_fcr31(env
, GETPC());
2683 uint64_t helper_float_ceill_s(CPUMIPSState
*env
, uint32_t fst0
)
2687 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2688 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2689 restore_rounding_mode(env
);
2690 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2691 & (float_flag_invalid
| float_flag_overflow
)) {
2692 dt2
= FP_TO_INT64_OVERFLOW
;
2694 update_fcr31(env
, GETPC());
2698 uint32_t helper_float_ceilw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2702 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2703 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2704 restore_rounding_mode(env
);
2705 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2706 & (float_flag_invalid
| float_flag_overflow
)) {
2707 wt2
= FP_TO_INT32_OVERFLOW
;
2709 update_fcr31(env
, GETPC());
2713 uint32_t helper_float_ceilw_s(CPUMIPSState
*env
, uint32_t fst0
)
2717 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2718 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2719 restore_rounding_mode(env
);
2720 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2721 & (float_flag_invalid
| float_flag_overflow
)) {
2722 wt2
= FP_TO_INT32_OVERFLOW
;
2724 update_fcr31(env
, GETPC());
2728 uint64_t helper_float_floorl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2732 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
2733 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2734 restore_rounding_mode(env
);
2735 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2736 & (float_flag_invalid
| float_flag_overflow
)) {
2737 dt2
= FP_TO_INT64_OVERFLOW
;
2739 update_fcr31(env
, GETPC());
2743 uint64_t helper_float_floorl_s(CPUMIPSState
*env
, uint32_t fst0
)
2747 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
2748 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2749 restore_rounding_mode(env
);
2750 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2751 & (float_flag_invalid
| float_flag_overflow
)) {
2752 dt2
= FP_TO_INT64_OVERFLOW
;
2754 update_fcr31(env
, GETPC());
2758 uint32_t helper_float_floorw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2762 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
2763 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2764 restore_rounding_mode(env
);
2765 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2766 & (float_flag_invalid
| float_flag_overflow
)) {
2767 wt2
= FP_TO_INT32_OVERFLOW
;
2769 update_fcr31(env
, GETPC());
2773 uint32_t helper_float_floorw_s(CPUMIPSState
*env
, uint32_t fst0
)
2777 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
2778 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2779 restore_rounding_mode(env
);
2780 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2781 & (float_flag_invalid
| float_flag_overflow
)) {
2782 wt2
= FP_TO_INT32_OVERFLOW
;
2784 update_fcr31(env
, GETPC());
2788 /* unary operations, not modifying fp status */
2789 #define FLOAT_UNOP(name) \
2790 uint64_t helper_float_ ## name ## _d(uint64_t fdt0) \
2792 return float64_ ## name(fdt0); \
2794 uint32_t helper_float_ ## name ## _s(uint32_t fst0) \
2796 return float32_ ## name(fst0); \
2798 uint64_t helper_float_ ## name ## _ps(uint64_t fdt0) \
2803 wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF); \
2804 wth0 = float32_ ## name(fdt0 >> 32); \
2805 return ((uint64_t)wth0 << 32) | wt0; \
2811 #define FLOAT_FMADDSUB(name, bits, muladd_arg) \
2812 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
2813 uint ## bits ## _t fs, \
2814 uint ## bits ## _t ft, \
2815 uint ## bits ## _t fd) \
2817 uint ## bits ## _t fdret; \
2819 fdret = float ## bits ## _muladd(fs, ft, fd, muladd_arg, \
2820 &env->active_fpu.fp_status); \
2821 update_fcr31(env, GETPC()); \
2825 FLOAT_FMADDSUB(maddf_s
, 32, 0)
2826 FLOAT_FMADDSUB(maddf_d
, 64, 0)
2827 FLOAT_FMADDSUB(msubf_s
, 32, float_muladd_negate_product
)
2828 FLOAT_FMADDSUB(msubf_d
, 64, float_muladd_negate_product
)
2829 #undef FLOAT_FMADDSUB
2831 #define FLOAT_MINMAX(name, bits, minmaxfunc) \
2832 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
2833 uint ## bits ## _t fs, \
2834 uint ## bits ## _t ft) \
2836 uint ## bits ## _t fdret; \
2838 fdret = float ## bits ## _ ## minmaxfunc(fs, ft, \
2839 &env->active_fpu.fp_status); \
2840 update_fcr31(env, GETPC()); \
2844 FLOAT_MINMAX(max_s
, 32, maxnum
)
2845 FLOAT_MINMAX(max_d
, 64, maxnum
)
2846 FLOAT_MINMAX(maxa_s
, 32, maxnummag
)
2847 FLOAT_MINMAX(maxa_d
, 64, maxnummag
)
2849 FLOAT_MINMAX(min_s
, 32, minnum
)
2850 FLOAT_MINMAX(min_d
, 64, minnum
)
2851 FLOAT_MINMAX(mina_s
, 32, minnummag
)
2852 FLOAT_MINMAX(mina_d
, 64, minnummag
)
2855 #define FLOAT_RINT(name, bits) \
2856 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
2857 uint ## bits ## _t fs) \
2859 uint ## bits ## _t fdret; \
2861 fdret = float ## bits ## _round_to_int(fs, &env->active_fpu.fp_status); \
2862 update_fcr31(env, GETPC()); \
2866 FLOAT_RINT(rint_s
, 32)
2867 FLOAT_RINT(rint_d
, 64)
2870 #define FLOAT_CLASS_SIGNALING_NAN 0x001
2871 #define FLOAT_CLASS_QUIET_NAN 0x002
2872 #define FLOAT_CLASS_NEGATIVE_INFINITY 0x004
2873 #define FLOAT_CLASS_NEGATIVE_NORMAL 0x008
2874 #define FLOAT_CLASS_NEGATIVE_SUBNORMAL 0x010
2875 #define FLOAT_CLASS_NEGATIVE_ZERO 0x020
2876 #define FLOAT_CLASS_POSITIVE_INFINITY 0x040
2877 #define FLOAT_CLASS_POSITIVE_NORMAL 0x080
2878 #define FLOAT_CLASS_POSITIVE_SUBNORMAL 0x100
2879 #define FLOAT_CLASS_POSITIVE_ZERO 0x200
2881 #define FLOAT_CLASS(name, bits) \
2882 uint ## bits ## _t helper_float_ ## name (uint ## bits ## _t arg) \
2884 if (float ## bits ## _is_signaling_nan(arg)) { \
2885 return FLOAT_CLASS_SIGNALING_NAN; \
2886 } else if (float ## bits ## _is_quiet_nan(arg)) { \
2887 return FLOAT_CLASS_QUIET_NAN; \
2888 } else if (float ## bits ## _is_neg(arg)) { \
2889 if (float ## bits ## _is_infinity(arg)) { \
2890 return FLOAT_CLASS_NEGATIVE_INFINITY; \
2891 } else if (float ## bits ## _is_zero(arg)) { \
2892 return FLOAT_CLASS_NEGATIVE_ZERO; \
2893 } else if (float ## bits ## _is_zero_or_denormal(arg)) { \
2894 return FLOAT_CLASS_NEGATIVE_SUBNORMAL; \
2896 return FLOAT_CLASS_NEGATIVE_NORMAL; \
2899 if (float ## bits ## _is_infinity(arg)) { \
2900 return FLOAT_CLASS_POSITIVE_INFINITY; \
2901 } else if (float ## bits ## _is_zero(arg)) { \
2902 return FLOAT_CLASS_POSITIVE_ZERO; \
2903 } else if (float ## bits ## _is_zero_or_denormal(arg)) { \
2904 return FLOAT_CLASS_POSITIVE_SUBNORMAL; \
2906 return FLOAT_CLASS_POSITIVE_NORMAL; \
2911 FLOAT_CLASS(class_s
, 32)
2912 FLOAT_CLASS(class_d
, 64)
2915 /* MIPS specific unary operations */
2916 uint64_t helper_float_recip_d(CPUMIPSState
*env
, uint64_t fdt0
)
2920 fdt2
= float64_div(float64_one
, fdt0
, &env
->active_fpu
.fp_status
);
2921 update_fcr31(env
, GETPC());
2925 uint32_t helper_float_recip_s(CPUMIPSState
*env
, uint32_t fst0
)
2929 fst2
= float32_div(float32_one
, fst0
, &env
->active_fpu
.fp_status
);
2930 update_fcr31(env
, GETPC());
2934 uint64_t helper_float_rsqrt_d(CPUMIPSState
*env
, uint64_t fdt0
)
2938 fdt2
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
2939 fdt2
= float64_div(float64_one
, fdt2
, &env
->active_fpu
.fp_status
);
2940 update_fcr31(env
, GETPC());
2944 uint32_t helper_float_rsqrt_s(CPUMIPSState
*env
, uint32_t fst0
)
2948 fst2
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
2949 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
2950 update_fcr31(env
, GETPC());
2954 uint64_t helper_float_recip1_d(CPUMIPSState
*env
, uint64_t fdt0
)
2958 fdt2
= float64_div(float64_one
, fdt0
, &env
->active_fpu
.fp_status
);
2959 update_fcr31(env
, GETPC());
2963 uint32_t helper_float_recip1_s(CPUMIPSState
*env
, uint32_t fst0
)
2967 fst2
= float32_div(float32_one
, fst0
, &env
->active_fpu
.fp_status
);
2968 update_fcr31(env
, GETPC());
2972 uint64_t helper_float_recip1_ps(CPUMIPSState
*env
, uint64_t fdt0
)
2977 fst2
= float32_div(float32_one
, fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
2978 fsth2
= float32_div(float32_one
, fdt0
>> 32, &env
->active_fpu
.fp_status
);
2979 update_fcr31(env
, GETPC());
2980 return ((uint64_t)fsth2
<< 32) | fst2
;
2983 uint64_t helper_float_rsqrt1_d(CPUMIPSState
*env
, uint64_t fdt0
)
2987 fdt2
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
2988 fdt2
= float64_div(float64_one
, fdt2
, &env
->active_fpu
.fp_status
);
2989 update_fcr31(env
, GETPC());
2993 uint32_t helper_float_rsqrt1_s(CPUMIPSState
*env
, uint32_t fst0
)
2997 fst2
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
2998 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
2999 update_fcr31(env
, GETPC());
3003 uint64_t helper_float_rsqrt1_ps(CPUMIPSState
*env
, uint64_t fdt0
)
3008 fst2
= float32_sqrt(fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
3009 fsth2
= float32_sqrt(fdt0
>> 32, &env
->active_fpu
.fp_status
);
3010 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
3011 fsth2
= float32_div(float32_one
, fsth2
, &env
->active_fpu
.fp_status
);
3012 update_fcr31(env
, GETPC());
3013 return ((uint64_t)fsth2
<< 32) | fst2
;
3016 #define FLOAT_OP(name, p) void helper_float_##name##_##p(CPUMIPSState *env)
3018 /* binary operations */
3019 #define FLOAT_BINOP(name) \
3020 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
3021 uint64_t fdt0, uint64_t fdt1) \
3025 dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \
3026 update_fcr31(env, GETPC()); \
3030 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
3031 uint32_t fst0, uint32_t fst1) \
3035 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
3036 update_fcr31(env, GETPC()); \
3040 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
3044 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
3045 uint32_t fsth0 = fdt0 >> 32; \
3046 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
3047 uint32_t fsth1 = fdt1 >> 32; \
3051 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
3052 wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status); \
3053 update_fcr31(env, GETPC()); \
3054 return ((uint64_t)wth2 << 32) | wt2; \
3063 #define UNFUSED_FMA(prefix, a, b, c, flags) \
3065 a = prefix##_mul(a, b, &env->active_fpu.fp_status); \
3066 if ((flags) & float_muladd_negate_c) { \
3067 a = prefix##_sub(a, c, &env->active_fpu.fp_status); \
3069 a = prefix##_add(a, c, &env->active_fpu.fp_status); \
3071 if ((flags) & float_muladd_negate_result) { \
3072 a = prefix##_chs(a); \
3076 /* FMA based operations */
3077 #define FLOAT_FMA(name, type) \
3078 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
3079 uint64_t fdt0, uint64_t fdt1, \
3082 UNFUSED_FMA(float64, fdt0, fdt1, fdt2, type); \
3083 update_fcr31(env, GETPC()); \
3087 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
3088 uint32_t fst0, uint32_t fst1, \
3091 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
3092 update_fcr31(env, GETPC()); \
3096 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
3097 uint64_t fdt0, uint64_t fdt1, \
3100 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
3101 uint32_t fsth0 = fdt0 >> 32; \
3102 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
3103 uint32_t fsth1 = fdt1 >> 32; \
3104 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
3105 uint32_t fsth2 = fdt2 >> 32; \
3107 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
3108 UNFUSED_FMA(float32, fsth0, fsth1, fsth2, type); \
3109 update_fcr31(env, GETPC()); \
3110 return ((uint64_t)fsth0 << 32) | fst0; \
3113 FLOAT_FMA(msub
, float_muladd_negate_c
)
3114 FLOAT_FMA(nmadd
, float_muladd_negate_result
)
3115 FLOAT_FMA(nmsub
, float_muladd_negate_result
| float_muladd_negate_c
)
3118 /* MIPS specific binary operations */
3119 uint64_t helper_float_recip2_d(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3121 fdt2
= float64_mul(fdt0
, fdt2
, &env
->active_fpu
.fp_status
);
3122 fdt2
= float64_chs(float64_sub(fdt2
, float64_one
, &env
->active_fpu
.fp_status
));
3123 update_fcr31(env
, GETPC());
3127 uint32_t helper_float_recip2_s(CPUMIPSState
*env
, uint32_t fst0
, uint32_t fst2
)
3129 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3130 fst2
= float32_chs(float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
));
3131 update_fcr31(env
, GETPC());
3135 uint64_t helper_float_recip2_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3137 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3138 uint32_t fsth0
= fdt0
>> 32;
3139 uint32_t fst2
= fdt2
& 0XFFFFFFFF;
3140 uint32_t fsth2
= fdt2
>> 32;
3142 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3143 fsth2
= float32_mul(fsth0
, fsth2
, &env
->active_fpu
.fp_status
);
3144 fst2
= float32_chs(float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
));
3145 fsth2
= float32_chs(float32_sub(fsth2
, float32_one
, &env
->active_fpu
.fp_status
));
3146 update_fcr31(env
, GETPC());
3147 return ((uint64_t)fsth2
<< 32) | fst2
;
3150 uint64_t helper_float_rsqrt2_d(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3152 fdt2
= float64_mul(fdt0
, fdt2
, &env
->active_fpu
.fp_status
);
3153 fdt2
= float64_sub(fdt2
, float64_one
, &env
->active_fpu
.fp_status
);
3154 fdt2
= float64_chs(float64_div(fdt2
, FLOAT_TWO64
, &env
->active_fpu
.fp_status
));
3155 update_fcr31(env
, GETPC());
3159 uint32_t helper_float_rsqrt2_s(CPUMIPSState
*env
, uint32_t fst0
, uint32_t fst2
)
3161 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3162 fst2
= float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
);
3163 fst2
= float32_chs(float32_div(fst2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3164 update_fcr31(env
, GETPC());
3168 uint64_t helper_float_rsqrt2_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3170 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3171 uint32_t fsth0
= fdt0
>> 32;
3172 uint32_t fst2
= fdt2
& 0XFFFFFFFF;
3173 uint32_t fsth2
= fdt2
>> 32;
3175 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3176 fsth2
= float32_mul(fsth0
, fsth2
, &env
->active_fpu
.fp_status
);
3177 fst2
= float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
);
3178 fsth2
= float32_sub(fsth2
, float32_one
, &env
->active_fpu
.fp_status
);
3179 fst2
= float32_chs(float32_div(fst2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3180 fsth2
= float32_chs(float32_div(fsth2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3181 update_fcr31(env
, GETPC());
3182 return ((uint64_t)fsth2
<< 32) | fst2
;
3185 uint64_t helper_float_addr_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt1
)
3187 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3188 uint32_t fsth0
= fdt0
>> 32;
3189 uint32_t fst1
= fdt1
& 0XFFFFFFFF;
3190 uint32_t fsth1
= fdt1
>> 32;
3194 fst2
= float32_add (fst0
, fsth0
, &env
->active_fpu
.fp_status
);
3195 fsth2
= float32_add (fst1
, fsth1
, &env
->active_fpu
.fp_status
);
3196 update_fcr31(env
, GETPC());
3197 return ((uint64_t)fsth2
<< 32) | fst2
;
3200 uint64_t helper_float_mulr_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt1
)
3202 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3203 uint32_t fsth0
= fdt0
>> 32;
3204 uint32_t fst1
= fdt1
& 0XFFFFFFFF;
3205 uint32_t fsth1
= fdt1
>> 32;
3209 fst2
= float32_mul (fst0
, fsth0
, &env
->active_fpu
.fp_status
);
3210 fsth2
= float32_mul (fst1
, fsth1
, &env
->active_fpu
.fp_status
);
3211 update_fcr31(env
, GETPC());
3212 return ((uint64_t)fsth2
<< 32) | fst2
;
3215 /* compare operations */
3216 #define FOP_COND_D(op, cond) \
3217 void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3218 uint64_t fdt1, int cc) \
3222 update_fcr31(env, GETPC()); \
3224 SET_FP_COND(cc, env->active_fpu); \
3226 CLEAR_FP_COND(cc, env->active_fpu); \
3228 void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3229 uint64_t fdt1, int cc) \
3232 fdt0 = float64_abs(fdt0); \
3233 fdt1 = float64_abs(fdt1); \
3235 update_fcr31(env, GETPC()); \
3237 SET_FP_COND(cc, env->active_fpu); \
3239 CLEAR_FP_COND(cc, env->active_fpu); \
3242 /* NOTE: the comma operator will make "cond" to eval to false,
3243 * but float64_unordered_quiet() is still called. */
3244 FOP_COND_D(f
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3245 FOP_COND_D(un
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
))
3246 FOP_COND_D(eq
, float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3247 FOP_COND_D(ueq
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3248 FOP_COND_D(olt
, float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3249 FOP_COND_D(ult
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3250 FOP_COND_D(ole
, float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3251 FOP_COND_D(ule
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3252 /* NOTE: the comma operator will make "cond" to eval to false,
3253 * but float64_unordered() is still called. */
3254 FOP_COND_D(sf
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3255 FOP_COND_D(ngle
,float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
))
3256 FOP_COND_D(seq
, float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3257 FOP_COND_D(ngl
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3258 FOP_COND_D(lt
, float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3259 FOP_COND_D(nge
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3260 FOP_COND_D(le
, float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3261 FOP_COND_D(ngt
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3263 #define FOP_COND_S(op, cond) \
3264 void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3265 uint32_t fst1, int cc) \
3269 update_fcr31(env, GETPC()); \
3271 SET_FP_COND(cc, env->active_fpu); \
3273 CLEAR_FP_COND(cc, env->active_fpu); \
3275 void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3276 uint32_t fst1, int cc) \
3279 fst0 = float32_abs(fst0); \
3280 fst1 = float32_abs(fst1); \
3282 update_fcr31(env, GETPC()); \
3284 SET_FP_COND(cc, env->active_fpu); \
3286 CLEAR_FP_COND(cc, env->active_fpu); \
3289 /* NOTE: the comma operator will make "cond" to eval to false,
3290 * but float32_unordered_quiet() is still called. */
3291 FOP_COND_S(f
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3292 FOP_COND_S(un
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
))
3293 FOP_COND_S(eq
, float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3294 FOP_COND_S(ueq
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3295 FOP_COND_S(olt
, float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3296 FOP_COND_S(ult
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3297 FOP_COND_S(ole
, float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3298 FOP_COND_S(ule
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3299 /* NOTE: the comma operator will make "cond" to eval to false,
3300 * but float32_unordered() is still called. */
3301 FOP_COND_S(sf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3302 FOP_COND_S(ngle
,float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
))
3303 FOP_COND_S(seq
, float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3304 FOP_COND_S(ngl
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3305 FOP_COND_S(lt
, float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3306 FOP_COND_S(nge
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3307 FOP_COND_S(le
, float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3308 FOP_COND_S(ngt
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3310 #define FOP_COND_PS(op, condl, condh) \
3311 void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3312 uint64_t fdt1, int cc) \
3314 uint32_t fst0, fsth0, fst1, fsth1; \
3316 fst0 = fdt0 & 0XFFFFFFFF; \
3317 fsth0 = fdt0 >> 32; \
3318 fst1 = fdt1 & 0XFFFFFFFF; \
3319 fsth1 = fdt1 >> 32; \
3322 update_fcr31(env, GETPC()); \
3324 SET_FP_COND(cc, env->active_fpu); \
3326 CLEAR_FP_COND(cc, env->active_fpu); \
3328 SET_FP_COND(cc + 1, env->active_fpu); \
3330 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3332 void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3333 uint64_t fdt1, int cc) \
3335 uint32_t fst0, fsth0, fst1, fsth1; \
3337 fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3338 fsth0 = float32_abs(fdt0 >> 32); \
3339 fst1 = float32_abs(fdt1 & 0XFFFFFFFF); \
3340 fsth1 = float32_abs(fdt1 >> 32); \
3343 update_fcr31(env, GETPC()); \
3345 SET_FP_COND(cc, env->active_fpu); \
3347 CLEAR_FP_COND(cc, env->active_fpu); \
3349 SET_FP_COND(cc + 1, env->active_fpu); \
3351 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3354 /* NOTE: the comma operator will make "cond" to eval to false,
3355 * but float32_unordered_quiet() is still called. */
3356 FOP_COND_PS(f
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0),
3357 (float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
), 0))
3358 FOP_COND_PS(un
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
),
3359 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
))
3360 FOP_COND_PS(eq
, float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3361 float32_eq_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3362 FOP_COND_PS(ueq
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3363 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3364 FOP_COND_PS(olt
, float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3365 float32_lt_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3366 FOP_COND_PS(ult
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3367 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3368 FOP_COND_PS(ole
, float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3369 float32_le_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3370 FOP_COND_PS(ule
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3371 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3372 /* NOTE: the comma operator will make "cond" to eval to false,
3373 * but float32_unordered() is still called. */
3374 FOP_COND_PS(sf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0),
3375 (float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
), 0))
3376 FOP_COND_PS(ngle
,float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
),
3377 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
))
3378 FOP_COND_PS(seq
, float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3379 float32_eq(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3380 FOP_COND_PS(ngl
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3381 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_eq(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3382 FOP_COND_PS(lt
, float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3383 float32_lt(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3384 FOP_COND_PS(nge
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3385 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_lt(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3386 FOP_COND_PS(le
, float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3387 float32_le(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3388 FOP_COND_PS(ngt
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3389 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_le(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3391 /* R6 compare operations */
3392 #define FOP_CONDN_D(op, cond) \
3393 uint64_t helper_r6_cmp_d_ ## op(CPUMIPSState * env, uint64_t fdt0, \
3398 update_fcr31(env, GETPC()); \
3406 /* NOTE: the comma operator will make "cond" to eval to false,
3407 * but float64_unordered_quiet() is still called. */
3408 FOP_CONDN_D(af
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3409 FOP_CONDN_D(un
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)))
3410 FOP_CONDN_D(eq
, (float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3411 FOP_CONDN_D(ueq
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3412 || float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3413 FOP_CONDN_D(lt
, (float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3414 FOP_CONDN_D(ult
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3415 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3416 FOP_CONDN_D(le
, (float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3417 FOP_CONDN_D(ule
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3418 || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3419 /* NOTE: the comma operator will make "cond" to eval to false,
3420 * but float64_unordered() is still called. */
3421 FOP_CONDN_D(saf
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3422 FOP_CONDN_D(sun
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)))
3423 FOP_CONDN_D(seq
, (float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3424 FOP_CONDN_D(sueq
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3425 || float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3426 FOP_CONDN_D(slt
, (float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3427 FOP_CONDN_D(sult
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3428 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3429 FOP_CONDN_D(sle
, (float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3430 FOP_CONDN_D(sule
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3431 || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3432 FOP_CONDN_D(or, (float64_le_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3433 || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3434 FOP_CONDN_D(une
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3435 || float64_lt_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3436 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3437 FOP_CONDN_D(ne
, (float64_lt_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3438 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3439 FOP_CONDN_D(sor
, (float64_le(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3440 || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3441 FOP_CONDN_D(sune
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3442 || float64_lt(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3443 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3444 FOP_CONDN_D(sne
, (float64_lt(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3445 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3447 #define FOP_CONDN_S(op, cond) \
3448 uint32_t helper_r6_cmp_s_ ## op(CPUMIPSState * env, uint32_t fst0, \
3453 update_fcr31(env, GETPC()); \
3461 /* NOTE: the comma operator will make "cond" to eval to false,
3462 * but float32_unordered_quiet() is still called. */
3463 FOP_CONDN_S(af
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3464 FOP_CONDN_S(un
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)))
3465 FOP_CONDN_S(eq
, (float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3466 FOP_CONDN_S(ueq
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3467 || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3468 FOP_CONDN_S(lt
, (float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3469 FOP_CONDN_S(ult
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3470 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3471 FOP_CONDN_S(le
, (float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3472 FOP_CONDN_S(ule
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3473 || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3474 /* NOTE: the comma operator will make "cond" to eval to false,
3475 * but float32_unordered() is still called. */
3476 FOP_CONDN_S(saf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3477 FOP_CONDN_S(sun
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)))
3478 FOP_CONDN_S(seq
, (float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3479 FOP_CONDN_S(sueq
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3480 || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3481 FOP_CONDN_S(slt
, (float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3482 FOP_CONDN_S(sult
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3483 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3484 FOP_CONDN_S(sle
, (float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3485 FOP_CONDN_S(sule
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3486 || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3487 FOP_CONDN_S(or, (float32_le_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3488 || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3489 FOP_CONDN_S(une
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3490 || float32_lt_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3491 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3492 FOP_CONDN_S(ne
, (float32_lt_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3493 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3494 FOP_CONDN_S(sor
, (float32_le(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3495 || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3496 FOP_CONDN_S(sune
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3497 || float32_lt(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3498 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3499 FOP_CONDN_S(sne
, (float32_lt(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3500 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))