2 * MIPS emulation helpers for qemu.
4 * Copyright (c) 2004-2005 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
21 #include "qemu/host-utils.h"
22 #include "exec/helper-proto.h"
23 #include "exec/exec-all.h"
24 #include "exec/cpu_ldst.h"
25 #include "sysemu/kvm.h"
27 /*****************************************************************************/
28 /* Exceptions processing helpers */
30 void helper_raise_exception_err(CPUMIPSState
*env
, uint32_t exception
,
33 do_raise_exception_err(env
, exception
, error_code
, 0);
36 void helper_raise_exception(CPUMIPSState
*env
, uint32_t exception
)
38 do_raise_exception(env
, exception
, GETPC());
41 void helper_raise_exception_debug(CPUMIPSState
*env
)
43 do_raise_exception(env
, EXCP_DEBUG
, 0);
46 static void raise_exception(CPUMIPSState
*env
, uint32_t exception
)
48 do_raise_exception(env
, exception
, 0);
51 #if defined(CONFIG_USER_ONLY)
52 #define HELPER_LD(name, insn, type) \
53 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
54 int mem_idx, uintptr_t retaddr) \
56 return (type) cpu_##insn##_data_ra(env, addr, retaddr); \
59 #define HELPER_LD(name, insn, type) \
60 static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
61 int mem_idx, uintptr_t retaddr) \
65 case 0: return (type) cpu_##insn##_kernel_ra(env, addr, retaddr); \
66 case 1: return (type) cpu_##insn##_super_ra(env, addr, retaddr); \
68 case 2: return (type) cpu_##insn##_user_ra(env, addr, retaddr); \
72 HELPER_LD(lw
, ldl
, int32_t)
73 #if defined(TARGET_MIPS64)
74 HELPER_LD(ld
, ldq
, int64_t)
78 #if defined(CONFIG_USER_ONLY)
79 #define HELPER_ST(name, insn, type) \
80 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
81 type val, int mem_idx, uintptr_t retaddr) \
83 cpu_##insn##_data_ra(env, addr, val, retaddr); \
86 #define HELPER_ST(name, insn, type) \
87 static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
88 type val, int mem_idx, uintptr_t retaddr) \
92 case 0: cpu_##insn##_kernel_ra(env, addr, val, retaddr); break; \
93 case 1: cpu_##insn##_super_ra(env, addr, val, retaddr); break; \
95 case 2: cpu_##insn##_user_ra(env, addr, val, retaddr); break; \
99 HELPER_ST(sb
, stb
, uint8_t)
100 HELPER_ST(sw
, stl
, uint32_t)
101 #if defined(TARGET_MIPS64)
102 HELPER_ST(sd
, stq
, uint64_t)
106 target_ulong
helper_clo (target_ulong arg1
)
111 target_ulong
helper_clz (target_ulong arg1
)
116 #if defined(TARGET_MIPS64)
117 target_ulong
helper_dclo (target_ulong arg1
)
122 target_ulong
helper_dclz (target_ulong arg1
)
126 #endif /* TARGET_MIPS64 */
128 /* 64 bits arithmetic for 32 bits hosts */
129 static inline uint64_t get_HILO(CPUMIPSState
*env
)
131 return ((uint64_t)(env
->active_tc
.HI
[0]) << 32) | (uint32_t)env
->active_tc
.LO
[0];
134 static inline target_ulong
set_HIT0_LO(CPUMIPSState
*env
, uint64_t HILO
)
137 env
->active_tc
.LO
[0] = (int32_t)(HILO
& 0xFFFFFFFF);
138 tmp
= env
->active_tc
.HI
[0] = (int32_t)(HILO
>> 32);
142 static inline target_ulong
set_HI_LOT0(CPUMIPSState
*env
, uint64_t HILO
)
144 target_ulong tmp
= env
->active_tc
.LO
[0] = (int32_t)(HILO
& 0xFFFFFFFF);
145 env
->active_tc
.HI
[0] = (int32_t)(HILO
>> 32);
149 /* Multiplication variants of the vr54xx. */
150 target_ulong
helper_muls(CPUMIPSState
*env
, target_ulong arg1
,
153 return set_HI_LOT0(env
, 0 - ((int64_t)(int32_t)arg1
*
154 (int64_t)(int32_t)arg2
));
157 target_ulong
helper_mulsu(CPUMIPSState
*env
, target_ulong arg1
,
160 return set_HI_LOT0(env
, 0 - (uint64_t)(uint32_t)arg1
*
161 (uint64_t)(uint32_t)arg2
);
164 target_ulong
helper_macc(CPUMIPSState
*env
, target_ulong arg1
,
167 return set_HI_LOT0(env
, (int64_t)get_HILO(env
) + (int64_t)(int32_t)arg1
*
168 (int64_t)(int32_t)arg2
);
171 target_ulong
helper_macchi(CPUMIPSState
*env
, target_ulong arg1
,
174 return set_HIT0_LO(env
, (int64_t)get_HILO(env
) + (int64_t)(int32_t)arg1
*
175 (int64_t)(int32_t)arg2
);
178 target_ulong
helper_maccu(CPUMIPSState
*env
, target_ulong arg1
,
181 return set_HI_LOT0(env
, (uint64_t)get_HILO(env
) +
182 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
185 target_ulong
helper_macchiu(CPUMIPSState
*env
, target_ulong arg1
,
188 return set_HIT0_LO(env
, (uint64_t)get_HILO(env
) +
189 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
192 target_ulong
helper_msac(CPUMIPSState
*env
, target_ulong arg1
,
195 return set_HI_LOT0(env
, (int64_t)get_HILO(env
) - (int64_t)(int32_t)arg1
*
196 (int64_t)(int32_t)arg2
);
199 target_ulong
helper_msachi(CPUMIPSState
*env
, target_ulong arg1
,
202 return set_HIT0_LO(env
, (int64_t)get_HILO(env
) - (int64_t)(int32_t)arg1
*
203 (int64_t)(int32_t)arg2
);
206 target_ulong
helper_msacu(CPUMIPSState
*env
, target_ulong arg1
,
209 return set_HI_LOT0(env
, (uint64_t)get_HILO(env
) -
210 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
213 target_ulong
helper_msachiu(CPUMIPSState
*env
, target_ulong arg1
,
216 return set_HIT0_LO(env
, (uint64_t)get_HILO(env
) -
217 (uint64_t)(uint32_t)arg1
* (uint64_t)(uint32_t)arg2
);
220 target_ulong
helper_mulhi(CPUMIPSState
*env
, target_ulong arg1
,
223 return set_HIT0_LO(env
, (int64_t)(int32_t)arg1
* (int64_t)(int32_t)arg2
);
226 target_ulong
helper_mulhiu(CPUMIPSState
*env
, target_ulong arg1
,
229 return set_HIT0_LO(env
, (uint64_t)(uint32_t)arg1
*
230 (uint64_t)(uint32_t)arg2
);
233 target_ulong
helper_mulshi(CPUMIPSState
*env
, target_ulong arg1
,
236 return set_HIT0_LO(env
, 0 - (int64_t)(int32_t)arg1
*
237 (int64_t)(int32_t)arg2
);
240 target_ulong
helper_mulshiu(CPUMIPSState
*env
, target_ulong arg1
,
243 return set_HIT0_LO(env
, 0 - (uint64_t)(uint32_t)arg1
*
244 (uint64_t)(uint32_t)arg2
);
247 static inline target_ulong
bitswap(target_ulong v
)
249 v
= ((v
>> 1) & (target_ulong
)0x5555555555555555ULL
) |
250 ((v
& (target_ulong
)0x5555555555555555ULL
) << 1);
251 v
= ((v
>> 2) & (target_ulong
)0x3333333333333333ULL
) |
252 ((v
& (target_ulong
)0x3333333333333333ULL
) << 2);
253 v
= ((v
>> 4) & (target_ulong
)0x0F0F0F0F0F0F0F0FULL
) |
254 ((v
& (target_ulong
)0x0F0F0F0F0F0F0F0FULL
) << 4);
259 target_ulong
helper_dbitswap(target_ulong rt
)
265 target_ulong
helper_bitswap(target_ulong rt
)
267 return (int32_t)bitswap(rt
);
270 #ifndef CONFIG_USER_ONLY
272 static inline hwaddr
do_translate_address(CPUMIPSState
*env
,
273 target_ulong address
,
274 int rw
, uintptr_t retaddr
)
277 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
279 lladdr
= cpu_mips_translate_address(env
, address
, rw
);
281 if (lladdr
== -1LL) {
282 cpu_loop_exit_restore(cs
, retaddr
);
288 #define HELPER_LD_ATOMIC(name, insn, almask) \
289 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \
291 if (arg & almask) { \
292 env->CP0_BadVAddr = arg; \
293 do_raise_exception(env, EXCP_AdEL, GETPC()); \
295 env->lladdr = do_translate_address(env, arg, 0, GETPC()); \
296 env->llval = do_##insn(env, arg, mem_idx, GETPC()); \
299 HELPER_LD_ATOMIC(ll
, lw
, 0x3)
301 HELPER_LD_ATOMIC(lld
, ld
, 0x7)
303 #undef HELPER_LD_ATOMIC
305 #define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask) \
306 target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1, \
307 target_ulong arg2, int mem_idx) \
311 if (arg2 & almask) { \
312 env->CP0_BadVAddr = arg2; \
313 do_raise_exception(env, EXCP_AdES, GETPC()); \
315 if (do_translate_address(env, arg2, 1, GETPC()) == env->lladdr) { \
316 tmp = do_##ld_insn(env, arg2, mem_idx, GETPC()); \
317 if (tmp == env->llval) { \
318 do_##st_insn(env, arg2, arg1, mem_idx, GETPC()); \
324 HELPER_ST_ATOMIC(sc
, lw
, sw
, 0x3)
326 HELPER_ST_ATOMIC(scd
, ld
, sd
, 0x7)
328 #undef HELPER_ST_ATOMIC
331 #ifdef TARGET_WORDS_BIGENDIAN
332 #define GET_LMASK(v) ((v) & 3)
333 #define GET_OFFSET(addr, offset) (addr + (offset))
335 #define GET_LMASK(v) (((v) & 3) ^ 3)
336 #define GET_OFFSET(addr, offset) (addr - (offset))
339 void helper_swl(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
342 do_sb(env
, arg2
, (uint8_t)(arg1
>> 24), mem_idx
, GETPC());
344 if (GET_LMASK(arg2
) <= 2) {
345 do_sb(env
, GET_OFFSET(arg2
, 1), (uint8_t)(arg1
>> 16), mem_idx
,
349 if (GET_LMASK(arg2
) <= 1) {
350 do_sb(env
, GET_OFFSET(arg2
, 2), (uint8_t)(arg1
>> 8), mem_idx
,
354 if (GET_LMASK(arg2
) == 0) {
355 do_sb(env
, GET_OFFSET(arg2
, 3), (uint8_t)arg1
, mem_idx
,
360 void helper_swr(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
363 do_sb(env
, arg2
, (uint8_t)arg1
, mem_idx
, GETPC());
365 if (GET_LMASK(arg2
) >= 1) {
366 do_sb(env
, GET_OFFSET(arg2
, -1), (uint8_t)(arg1
>> 8), mem_idx
,
370 if (GET_LMASK(arg2
) >= 2) {
371 do_sb(env
, GET_OFFSET(arg2
, -2), (uint8_t)(arg1
>> 16), mem_idx
,
375 if (GET_LMASK(arg2
) == 3) {
376 do_sb(env
, GET_OFFSET(arg2
, -3), (uint8_t)(arg1
>> 24), mem_idx
,
381 #if defined(TARGET_MIPS64)
382 /* "half" load and stores. We must do the memory access inline,
383 or fault handling won't work. */
385 #ifdef TARGET_WORDS_BIGENDIAN
386 #define GET_LMASK64(v) ((v) & 7)
388 #define GET_LMASK64(v) (((v) & 7) ^ 7)
391 void helper_sdl(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
394 do_sb(env
, arg2
, (uint8_t)(arg1
>> 56), mem_idx
, GETPC());
396 if (GET_LMASK64(arg2
) <= 6) {
397 do_sb(env
, GET_OFFSET(arg2
, 1), (uint8_t)(arg1
>> 48), mem_idx
,
401 if (GET_LMASK64(arg2
) <= 5) {
402 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
,
411 if (GET_LMASK64(arg2
) <= 3) {
412 do_sb(env
, GET_OFFSET(arg2
, 4), (uint8_t)(arg1
>> 24), mem_idx
,
416 if (GET_LMASK64(arg2
) <= 2) {
417 do_sb(env
, GET_OFFSET(arg2
, 5), (uint8_t)(arg1
>> 16), mem_idx
,
421 if (GET_LMASK64(arg2
) <= 1) {
422 do_sb(env
, GET_OFFSET(arg2
, 6), (uint8_t)(arg1
>> 8), mem_idx
,
426 if (GET_LMASK64(arg2
) <= 0) {
427 do_sb(env
, GET_OFFSET(arg2
, 7), (uint8_t)arg1
, mem_idx
,
432 void helper_sdr(CPUMIPSState
*env
, target_ulong arg1
, target_ulong arg2
,
435 do_sb(env
, arg2
, (uint8_t)arg1
, mem_idx
, GETPC());
437 if (GET_LMASK64(arg2
) >= 1) {
438 do_sb(env
, GET_OFFSET(arg2
, -1), (uint8_t)(arg1
>> 8), mem_idx
,
442 if (GET_LMASK64(arg2
) >= 2) {
443 do_sb(env
, GET_OFFSET(arg2
, -2), (uint8_t)(arg1
>> 16), mem_idx
,
447 if (GET_LMASK64(arg2
) >= 3) {
448 do_sb(env
, GET_OFFSET(arg2
, -3), (uint8_t)(arg1
>> 24), mem_idx
,
452 if (GET_LMASK64(arg2
) >= 4) {
453 do_sb(env
, GET_OFFSET(arg2
, -4), (uint8_t)(arg1
>> 32), mem_idx
,
457 if (GET_LMASK64(arg2
) >= 5) {
458 do_sb(env
, GET_OFFSET(arg2
, -5), (uint8_t)(arg1
>> 40), mem_idx
,
462 if (GET_LMASK64(arg2
) >= 6) {
463 do_sb(env
, GET_OFFSET(arg2
, -6), (uint8_t)(arg1
>> 48), mem_idx
,
467 if (GET_LMASK64(arg2
) == 7) {
468 do_sb(env
, GET_OFFSET(arg2
, -7), (uint8_t)(arg1
>> 56), mem_idx
,
472 #endif /* TARGET_MIPS64 */
474 static const int multiple_regs
[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };
476 void helper_lwm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
479 target_ulong base_reglist
= reglist
& 0xf;
480 target_ulong do_r31
= reglist
& 0x10;
482 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
485 for (i
= 0; i
< base_reglist
; i
++) {
486 env
->active_tc
.gpr
[multiple_regs
[i
]] =
487 (target_long
)do_lw(env
, addr
, mem_idx
, GETPC());
493 env
->active_tc
.gpr
[31] = (target_long
)do_lw(env
, addr
, mem_idx
,
498 void helper_swm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
501 target_ulong base_reglist
= reglist
& 0xf;
502 target_ulong do_r31
= reglist
& 0x10;
504 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
507 for (i
= 0; i
< base_reglist
; i
++) {
508 do_sw(env
, addr
, env
->active_tc
.gpr
[multiple_regs
[i
]], mem_idx
,
515 do_sw(env
, addr
, env
->active_tc
.gpr
[31], mem_idx
, GETPC());
519 #if defined(TARGET_MIPS64)
520 void helper_ldm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
523 target_ulong base_reglist
= reglist
& 0xf;
524 target_ulong do_r31
= reglist
& 0x10;
526 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
529 for (i
= 0; i
< base_reglist
; i
++) {
530 env
->active_tc
.gpr
[multiple_regs
[i
]] = do_ld(env
, addr
, mem_idx
,
537 env
->active_tc
.gpr
[31] = do_ld(env
, addr
, mem_idx
, GETPC());
541 void helper_sdm(CPUMIPSState
*env
, target_ulong addr
, target_ulong reglist
,
544 target_ulong base_reglist
= reglist
& 0xf;
545 target_ulong do_r31
= reglist
& 0x10;
547 if (base_reglist
> 0 && base_reglist
<= ARRAY_SIZE (multiple_regs
)) {
550 for (i
= 0; i
< base_reglist
; i
++) {
551 do_sd(env
, addr
, env
->active_tc
.gpr
[multiple_regs
[i
]], mem_idx
,
558 do_sd(env
, addr
, env
->active_tc
.gpr
[31], mem_idx
, GETPC());
563 #ifndef CONFIG_USER_ONLY
565 static bool mips_vpe_is_wfi(MIPSCPU
*c
)
567 CPUState
*cpu
= CPU(c
);
568 CPUMIPSState
*env
= &c
->env
;
570 /* If the VPE is halted but otherwise active, it means it's waiting for
572 return cpu
->halted
&& mips_vpe_active(env
);
575 static bool mips_vp_is_wfi(MIPSCPU
*c
)
577 CPUState
*cpu
= CPU(c
);
578 CPUMIPSState
*env
= &c
->env
;
580 return cpu
->halted
&& mips_vp_active(env
);
583 static inline void mips_vpe_wake(MIPSCPU
*c
)
585 /* Don't set ->halted = 0 directly, let it be done via cpu_has_work
586 because there might be other conditions that state that c should
588 cpu_interrupt(CPU(c
), CPU_INTERRUPT_WAKE
);
591 static inline void mips_vpe_sleep(MIPSCPU
*cpu
)
593 CPUState
*cs
= CPU(cpu
);
595 /* The VPE was shut off, really go to bed.
596 Reset any old _WAKE requests. */
598 cpu_reset_interrupt(cs
, CPU_INTERRUPT_WAKE
);
601 static inline void mips_tc_wake(MIPSCPU
*cpu
, int tc
)
603 CPUMIPSState
*c
= &cpu
->env
;
605 /* FIXME: TC reschedule. */
606 if (mips_vpe_active(c
) && !mips_vpe_is_wfi(cpu
)) {
611 static inline void mips_tc_sleep(MIPSCPU
*cpu
, int tc
)
613 CPUMIPSState
*c
= &cpu
->env
;
615 /* FIXME: TC reschedule. */
616 if (!mips_vpe_active(c
)) {
623 * @env: CPU from which mapping is performed.
624 * @tc: Should point to an int with the value of the global TC index.
626 * This function will transform @tc into a local index within the
627 * returned #CPUMIPSState.
629 /* FIXME: This code assumes that all VPEs have the same number of TCs,
630 which depends on runtime setup. Can probably be fixed by
631 walking the list of CPUMIPSStates. */
632 static CPUMIPSState
*mips_cpu_map_tc(CPUMIPSState
*env
, int *tc
)
640 if (!(env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
))) {
641 /* Not allowed to address other CPUs. */
642 *tc
= env
->current_tc
;
646 cs
= CPU(mips_env_get_cpu(env
));
647 vpe_idx
= tc_idx
/ cs
->nr_threads
;
648 *tc
= tc_idx
% cs
->nr_threads
;
649 other_cs
= qemu_get_cpu(vpe_idx
);
650 if (other_cs
== NULL
) {
653 cpu
= MIPS_CPU(other_cs
);
657 /* The per VPE CP0_Status register shares some fields with the per TC
658 CP0_TCStatus registers. These fields are wired to the same registers,
659 so changes to either of them should be reflected on both registers.
661 Also, EntryHi shares the bottom 8 bit ASID with TCStauts.
663 These helper call synchronizes the regs for a given cpu. */
665 /* Called for updates to CP0_Status. Defined in "cpu.h" for gdbstub.c. */
666 /* static inline void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu,
669 /* Called for updates to CP0_TCStatus. */
670 static void sync_c0_tcstatus(CPUMIPSState
*cpu
, int tc
,
674 uint32_t tcu
, tmx
, tasid
, tksu
;
675 uint32_t mask
= ((1U << CP0St_CU3
)
682 tcu
= (v
>> CP0TCSt_TCU0
) & 0xf;
683 tmx
= (v
>> CP0TCSt_TMX
) & 0x1;
685 tksu
= (v
>> CP0TCSt_TKSU
) & 0x3;
687 status
= tcu
<< CP0St_CU0
;
688 status
|= tmx
<< CP0St_MX
;
689 status
|= tksu
<< CP0St_KSU
;
691 cpu
->CP0_Status
&= ~mask
;
692 cpu
->CP0_Status
|= status
;
694 /* Sync the TASID with EntryHi. */
695 cpu
->CP0_EntryHi
&= ~0xff;
696 cpu
->CP0_EntryHi
|= tasid
;
701 /* Called for updates to CP0_EntryHi. */
702 static void sync_c0_entryhi(CPUMIPSState
*cpu
, int tc
)
705 uint32_t asid
, v
= cpu
->CP0_EntryHi
;
709 if (tc
== cpu
->current_tc
) {
710 tcst
= &cpu
->active_tc
.CP0_TCStatus
;
712 tcst
= &cpu
->tcs
[tc
].CP0_TCStatus
;
720 target_ulong
helper_mfc0_mvpcontrol(CPUMIPSState
*env
)
722 return env
->mvp
->CP0_MVPControl
;
725 target_ulong
helper_mfc0_mvpconf0(CPUMIPSState
*env
)
727 return env
->mvp
->CP0_MVPConf0
;
730 target_ulong
helper_mfc0_mvpconf1(CPUMIPSState
*env
)
732 return env
->mvp
->CP0_MVPConf1
;
735 target_ulong
helper_mfc0_random(CPUMIPSState
*env
)
737 return (int32_t)cpu_mips_get_random(env
);
740 target_ulong
helper_mfc0_tcstatus(CPUMIPSState
*env
)
742 return env
->active_tc
.CP0_TCStatus
;
745 target_ulong
helper_mftc0_tcstatus(CPUMIPSState
*env
)
747 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
748 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
750 if (other_tc
== other
->current_tc
)
751 return other
->active_tc
.CP0_TCStatus
;
753 return other
->tcs
[other_tc
].CP0_TCStatus
;
756 target_ulong
helper_mfc0_tcbind(CPUMIPSState
*env
)
758 return env
->active_tc
.CP0_TCBind
;
761 target_ulong
helper_mftc0_tcbind(CPUMIPSState
*env
)
763 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
764 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
766 if (other_tc
== other
->current_tc
)
767 return other
->active_tc
.CP0_TCBind
;
769 return other
->tcs
[other_tc
].CP0_TCBind
;
772 target_ulong
helper_mfc0_tcrestart(CPUMIPSState
*env
)
774 return env
->active_tc
.PC
;
777 target_ulong
helper_mftc0_tcrestart(CPUMIPSState
*env
)
779 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
780 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
782 if (other_tc
== other
->current_tc
)
783 return other
->active_tc
.PC
;
785 return other
->tcs
[other_tc
].PC
;
788 target_ulong
helper_mfc0_tchalt(CPUMIPSState
*env
)
790 return env
->active_tc
.CP0_TCHalt
;
793 target_ulong
helper_mftc0_tchalt(CPUMIPSState
*env
)
795 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
796 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
798 if (other_tc
== other
->current_tc
)
799 return other
->active_tc
.CP0_TCHalt
;
801 return other
->tcs
[other_tc
].CP0_TCHalt
;
804 target_ulong
helper_mfc0_tccontext(CPUMIPSState
*env
)
806 return env
->active_tc
.CP0_TCContext
;
809 target_ulong
helper_mftc0_tccontext(CPUMIPSState
*env
)
811 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
812 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
814 if (other_tc
== other
->current_tc
)
815 return other
->active_tc
.CP0_TCContext
;
817 return other
->tcs
[other_tc
].CP0_TCContext
;
820 target_ulong
helper_mfc0_tcschedule(CPUMIPSState
*env
)
822 return env
->active_tc
.CP0_TCSchedule
;
825 target_ulong
helper_mftc0_tcschedule(CPUMIPSState
*env
)
827 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
828 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
830 if (other_tc
== other
->current_tc
)
831 return other
->active_tc
.CP0_TCSchedule
;
833 return other
->tcs
[other_tc
].CP0_TCSchedule
;
836 target_ulong
helper_mfc0_tcschefback(CPUMIPSState
*env
)
838 return env
->active_tc
.CP0_TCScheFBack
;
841 target_ulong
helper_mftc0_tcschefback(CPUMIPSState
*env
)
843 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
844 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
846 if (other_tc
== other
->current_tc
)
847 return other
->active_tc
.CP0_TCScheFBack
;
849 return other
->tcs
[other_tc
].CP0_TCScheFBack
;
852 target_ulong
helper_mfc0_count(CPUMIPSState
*env
)
854 return (int32_t)cpu_mips_get_count(env
);
857 target_ulong
helper_mftc0_entryhi(CPUMIPSState
*env
)
859 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
860 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
862 return other
->CP0_EntryHi
;
865 target_ulong
helper_mftc0_cause(CPUMIPSState
*env
)
867 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
869 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
871 if (other_tc
== other
->current_tc
) {
872 tccause
= other
->CP0_Cause
;
874 tccause
= other
->CP0_Cause
;
880 target_ulong
helper_mftc0_status(CPUMIPSState
*env
)
882 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
883 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
885 return other
->CP0_Status
;
888 target_ulong
helper_mfc0_lladdr(CPUMIPSState
*env
)
890 return (int32_t)(env
->lladdr
>> env
->CP0_LLAddr_shift
);
893 target_ulong
helper_mfc0_maar(CPUMIPSState
*env
)
895 return (int32_t) env
->CP0_MAAR
[env
->CP0_MAARI
];
898 target_ulong
helper_mfhc0_maar(CPUMIPSState
*env
)
900 return env
->CP0_MAAR
[env
->CP0_MAARI
] >> 32;
903 target_ulong
helper_mfc0_watchlo(CPUMIPSState
*env
, uint32_t sel
)
905 return (int32_t)env
->CP0_WatchLo
[sel
];
908 target_ulong
helper_mfc0_watchhi(CPUMIPSState
*env
, uint32_t sel
)
910 return env
->CP0_WatchHi
[sel
];
913 target_ulong
helper_mfc0_debug(CPUMIPSState
*env
)
915 target_ulong t0
= env
->CP0_Debug
;
916 if (env
->hflags
& MIPS_HFLAG_DM
)
922 target_ulong
helper_mftc0_debug(CPUMIPSState
*env
)
924 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
926 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
928 if (other_tc
== other
->current_tc
)
929 tcstatus
= other
->active_tc
.CP0_Debug_tcstatus
;
931 tcstatus
= other
->tcs
[other_tc
].CP0_Debug_tcstatus
;
933 /* XXX: Might be wrong, check with EJTAG spec. */
934 return (other
->CP0_Debug
& ~((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
))) |
935 (tcstatus
& ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
)));
938 #if defined(TARGET_MIPS64)
939 target_ulong
helper_dmfc0_tcrestart(CPUMIPSState
*env
)
941 return env
->active_tc
.PC
;
944 target_ulong
helper_dmfc0_tchalt(CPUMIPSState
*env
)
946 return env
->active_tc
.CP0_TCHalt
;
949 target_ulong
helper_dmfc0_tccontext(CPUMIPSState
*env
)
951 return env
->active_tc
.CP0_TCContext
;
954 target_ulong
helper_dmfc0_tcschedule(CPUMIPSState
*env
)
956 return env
->active_tc
.CP0_TCSchedule
;
959 target_ulong
helper_dmfc0_tcschefback(CPUMIPSState
*env
)
961 return env
->active_tc
.CP0_TCScheFBack
;
964 target_ulong
helper_dmfc0_lladdr(CPUMIPSState
*env
)
966 return env
->lladdr
>> env
->CP0_LLAddr_shift
;
969 target_ulong
helper_dmfc0_maar(CPUMIPSState
*env
)
971 return env
->CP0_MAAR
[env
->CP0_MAARI
];
974 target_ulong
helper_dmfc0_watchlo(CPUMIPSState
*env
, uint32_t sel
)
976 return env
->CP0_WatchLo
[sel
];
978 #endif /* TARGET_MIPS64 */
980 void helper_mtc0_index(CPUMIPSState
*env
, target_ulong arg1
)
982 uint32_t index_p
= env
->CP0_Index
& 0x80000000;
983 uint32_t tlb_index
= arg1
& 0x7fffffff;
984 if (tlb_index
< env
->tlb
->nb_tlb
) {
985 if (env
->insn_flags
& ISA_MIPS32R6
) {
986 index_p
|= arg1
& 0x80000000;
988 env
->CP0_Index
= index_p
| tlb_index
;
992 void helper_mtc0_mvpcontrol(CPUMIPSState
*env
, target_ulong arg1
)
997 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
))
998 mask
|= (1 << CP0MVPCo_CPA
) | (1 << CP0MVPCo_VPC
) |
1000 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1001 mask
|= (1 << CP0MVPCo_STLB
);
1002 newval
= (env
->mvp
->CP0_MVPControl
& ~mask
) | (arg1
& mask
);
1004 // TODO: Enable/disable shared TLB, enable/disable VPEs.
1006 env
->mvp
->CP0_MVPControl
= newval
;
1009 void helper_mtc0_vpecontrol(CPUMIPSState
*env
, target_ulong arg1
)
1014 mask
= (1 << CP0VPECo_YSI
) | (1 << CP0VPECo_GSI
) |
1015 (1 << CP0VPECo_TE
) | (0xff << CP0VPECo_TargTC
);
1016 newval
= (env
->CP0_VPEControl
& ~mask
) | (arg1
& mask
);
1018 /* Yield scheduler intercept not implemented. */
1019 /* Gating storage scheduler intercept not implemented. */
1021 // TODO: Enable/disable TCs.
1023 env
->CP0_VPEControl
= newval
;
1026 void helper_mttc0_vpecontrol(CPUMIPSState
*env
, target_ulong arg1
)
1028 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1029 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1033 mask
= (1 << CP0VPECo_YSI
) | (1 << CP0VPECo_GSI
) |
1034 (1 << CP0VPECo_TE
) | (0xff << CP0VPECo_TargTC
);
1035 newval
= (other
->CP0_VPEControl
& ~mask
) | (arg1
& mask
);
1037 /* TODO: Enable/disable TCs. */
1039 other
->CP0_VPEControl
= newval
;
1042 target_ulong
helper_mftc0_vpecontrol(CPUMIPSState
*env
)
1044 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1045 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1046 /* FIXME: Mask away return zero on read bits. */
1047 return other
->CP0_VPEControl
;
1050 target_ulong
helper_mftc0_vpeconf0(CPUMIPSState
*env
)
1052 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1053 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1055 return other
->CP0_VPEConf0
;
1058 void helper_mtc0_vpeconf0(CPUMIPSState
*env
, target_ulong arg1
)
1063 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_MVP
)) {
1064 if (env
->CP0_VPEConf0
& (1 << CP0VPEC0_VPA
))
1065 mask
|= (0xff << CP0VPEC0_XTC
);
1066 mask
|= (1 << CP0VPEC0_MVP
) | (1 << CP0VPEC0_VPA
);
1068 newval
= (env
->CP0_VPEConf0
& ~mask
) | (arg1
& mask
);
1070 // TODO: TC exclusive handling due to ERL/EXL.
1072 env
->CP0_VPEConf0
= newval
;
1075 void helper_mttc0_vpeconf0(CPUMIPSState
*env
, target_ulong arg1
)
1077 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1078 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1082 mask
|= (1 << CP0VPEC0_MVP
) | (1 << CP0VPEC0_VPA
);
1083 newval
= (other
->CP0_VPEConf0
& ~mask
) | (arg1
& mask
);
1085 /* TODO: TC exclusive handling due to ERL/EXL. */
1086 other
->CP0_VPEConf0
= newval
;
1089 void helper_mtc0_vpeconf1(CPUMIPSState
*env
, target_ulong arg1
)
1094 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1095 mask
|= (0xff << CP0VPEC1_NCX
) | (0xff << CP0VPEC1_NCP2
) |
1096 (0xff << CP0VPEC1_NCP1
);
1097 newval
= (env
->CP0_VPEConf1
& ~mask
) | (arg1
& mask
);
1099 /* UDI not implemented. */
1100 /* CP2 not implemented. */
1102 // TODO: Handle FPU (CP1) binding.
1104 env
->CP0_VPEConf1
= newval
;
1107 void helper_mtc0_yqmask(CPUMIPSState
*env
, target_ulong arg1
)
1109 /* Yield qualifier inputs not implemented. */
1110 env
->CP0_YQMask
= 0x00000000;
1113 void helper_mtc0_vpeopt(CPUMIPSState
*env
, target_ulong arg1
)
1115 env
->CP0_VPEOpt
= arg1
& 0x0000ffff;
1118 #define MTC0_ENTRYLO_MASK(env) ((env->PAMask >> 6) & 0x3FFFFFFF)
1120 void helper_mtc0_entrylo0(CPUMIPSState
*env
, target_ulong arg1
)
1122 /* 1k pages not implemented */
1123 target_ulong rxi
= arg1
& (env
->CP0_PageGrain
& (3u << CP0PG_XIE
));
1124 env
->CP0_EntryLo0
= (arg1
& MTC0_ENTRYLO_MASK(env
))
1125 | (rxi
<< (CP0EnLo_XI
- 30));
1128 #if defined(TARGET_MIPS64)
1129 #define DMTC0_ENTRYLO_MASK(env) (env->PAMask >> 6)
1131 void helper_dmtc0_entrylo0(CPUMIPSState
*env
, uint64_t arg1
)
1133 uint64_t rxi
= arg1
& ((env
->CP0_PageGrain
& (3ull << CP0PG_XIE
)) << 32);
1134 env
->CP0_EntryLo0
= (arg1
& DMTC0_ENTRYLO_MASK(env
)) | rxi
;
1138 void helper_mtc0_tcstatus(CPUMIPSState
*env
, target_ulong arg1
)
1140 uint32_t mask
= env
->CP0_TCStatus_rw_bitmask
;
1143 newval
= (env
->active_tc
.CP0_TCStatus
& ~mask
) | (arg1
& mask
);
1145 env
->active_tc
.CP0_TCStatus
= newval
;
1146 sync_c0_tcstatus(env
, env
->current_tc
, newval
);
1149 void helper_mttc0_tcstatus(CPUMIPSState
*env
, target_ulong arg1
)
1151 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1152 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1154 if (other_tc
== other
->current_tc
)
1155 other
->active_tc
.CP0_TCStatus
= arg1
;
1157 other
->tcs
[other_tc
].CP0_TCStatus
= arg1
;
1158 sync_c0_tcstatus(other
, other_tc
, arg1
);
1161 void helper_mtc0_tcbind(CPUMIPSState
*env
, target_ulong arg1
)
1163 uint32_t mask
= (1 << CP0TCBd_TBE
);
1166 if (env
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1167 mask
|= (1 << CP0TCBd_CurVPE
);
1168 newval
= (env
->active_tc
.CP0_TCBind
& ~mask
) | (arg1
& mask
);
1169 env
->active_tc
.CP0_TCBind
= newval
;
1172 void helper_mttc0_tcbind(CPUMIPSState
*env
, target_ulong arg1
)
1174 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1175 uint32_t mask
= (1 << CP0TCBd_TBE
);
1177 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1179 if (other
->mvp
->CP0_MVPControl
& (1 << CP0MVPCo_VPC
))
1180 mask
|= (1 << CP0TCBd_CurVPE
);
1181 if (other_tc
== other
->current_tc
) {
1182 newval
= (other
->active_tc
.CP0_TCBind
& ~mask
) | (arg1
& mask
);
1183 other
->active_tc
.CP0_TCBind
= newval
;
1185 newval
= (other
->tcs
[other_tc
].CP0_TCBind
& ~mask
) | (arg1
& mask
);
1186 other
->tcs
[other_tc
].CP0_TCBind
= newval
;
1190 void helper_mtc0_tcrestart(CPUMIPSState
*env
, target_ulong arg1
)
1192 env
->active_tc
.PC
= arg1
;
1193 env
->active_tc
.CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1195 /* MIPS16 not implemented. */
1198 void helper_mttc0_tcrestart(CPUMIPSState
*env
, target_ulong arg1
)
1200 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1201 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1203 if (other_tc
== other
->current_tc
) {
1204 other
->active_tc
.PC
= arg1
;
1205 other
->active_tc
.CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1206 other
->lladdr
= 0ULL;
1207 /* MIPS16 not implemented. */
1209 other
->tcs
[other_tc
].PC
= arg1
;
1210 other
->tcs
[other_tc
].CP0_TCStatus
&= ~(1 << CP0TCSt_TDS
);
1211 other
->lladdr
= 0ULL;
1212 /* MIPS16 not implemented. */
1216 void helper_mtc0_tchalt(CPUMIPSState
*env
, target_ulong arg1
)
1218 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
1220 env
->active_tc
.CP0_TCHalt
= arg1
& 0x1;
1222 // TODO: Halt TC / Restart (if allocated+active) TC.
1223 if (env
->active_tc
.CP0_TCHalt
& 1) {
1224 mips_tc_sleep(cpu
, env
->current_tc
);
1226 mips_tc_wake(cpu
, env
->current_tc
);
1230 void helper_mttc0_tchalt(CPUMIPSState
*env
, target_ulong arg1
)
1232 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1233 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1234 MIPSCPU
*other_cpu
= mips_env_get_cpu(other
);
1236 // TODO: Halt TC / Restart (if allocated+active) TC.
1238 if (other_tc
== other
->current_tc
)
1239 other
->active_tc
.CP0_TCHalt
= arg1
;
1241 other
->tcs
[other_tc
].CP0_TCHalt
= arg1
;
1244 mips_tc_sleep(other_cpu
, other_tc
);
1246 mips_tc_wake(other_cpu
, other_tc
);
1250 void helper_mtc0_tccontext(CPUMIPSState
*env
, target_ulong arg1
)
1252 env
->active_tc
.CP0_TCContext
= arg1
;
1255 void helper_mttc0_tccontext(CPUMIPSState
*env
, target_ulong arg1
)
1257 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1258 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1260 if (other_tc
== other
->current_tc
)
1261 other
->active_tc
.CP0_TCContext
= arg1
;
1263 other
->tcs
[other_tc
].CP0_TCContext
= arg1
;
1266 void helper_mtc0_tcschedule(CPUMIPSState
*env
, target_ulong arg1
)
1268 env
->active_tc
.CP0_TCSchedule
= arg1
;
1271 void helper_mttc0_tcschedule(CPUMIPSState
*env
, target_ulong arg1
)
1273 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1274 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1276 if (other_tc
== other
->current_tc
)
1277 other
->active_tc
.CP0_TCSchedule
= arg1
;
1279 other
->tcs
[other_tc
].CP0_TCSchedule
= arg1
;
1282 void helper_mtc0_tcschefback(CPUMIPSState
*env
, target_ulong arg1
)
1284 env
->active_tc
.CP0_TCScheFBack
= arg1
;
1287 void helper_mttc0_tcschefback(CPUMIPSState
*env
, target_ulong arg1
)
1289 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1290 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1292 if (other_tc
== other
->current_tc
)
1293 other
->active_tc
.CP0_TCScheFBack
= arg1
;
1295 other
->tcs
[other_tc
].CP0_TCScheFBack
= arg1
;
1298 void helper_mtc0_entrylo1(CPUMIPSState
*env
, target_ulong arg1
)
1300 /* 1k pages not implemented */
1301 target_ulong rxi
= arg1
& (env
->CP0_PageGrain
& (3u << CP0PG_XIE
));
1302 env
->CP0_EntryLo1
= (arg1
& MTC0_ENTRYLO_MASK(env
))
1303 | (rxi
<< (CP0EnLo_XI
- 30));
1306 #if defined(TARGET_MIPS64)
1307 void helper_dmtc0_entrylo1(CPUMIPSState
*env
, uint64_t arg1
)
1309 uint64_t rxi
= arg1
& ((env
->CP0_PageGrain
& (3ull << CP0PG_XIE
)) << 32);
1310 env
->CP0_EntryLo1
= (arg1
& DMTC0_ENTRYLO_MASK(env
)) | rxi
;
1314 void helper_mtc0_context(CPUMIPSState
*env
, target_ulong arg1
)
1316 env
->CP0_Context
= (env
->CP0_Context
& 0x007FFFFF) | (arg1
& ~0x007FFFFF);
1319 void helper_mtc0_pagemask(CPUMIPSState
*env
, target_ulong arg1
)
1321 uint64_t mask
= arg1
>> (TARGET_PAGE_BITS
+ 1);
1322 if (!(env
->insn_flags
& ISA_MIPS32R6
) || (arg1
== ~0) ||
1323 (mask
== 0x0000 || mask
== 0x0003 || mask
== 0x000F ||
1324 mask
== 0x003F || mask
== 0x00FF || mask
== 0x03FF ||
1325 mask
== 0x0FFF || mask
== 0x3FFF || mask
== 0xFFFF)) {
1326 env
->CP0_PageMask
= arg1
& (0x1FFFFFFF & (TARGET_PAGE_MASK
<< 1));
1330 void helper_mtc0_pagegrain(CPUMIPSState
*env
, target_ulong arg1
)
1332 /* SmartMIPS not implemented */
1333 /* 1k pages not implemented */
1334 env
->CP0_PageGrain
= (arg1
& env
->CP0_PageGrain_rw_bitmask
) |
1335 (env
->CP0_PageGrain
& ~env
->CP0_PageGrain_rw_bitmask
);
1336 compute_hflags(env
);
1337 restore_pamask(env
);
1340 void helper_mtc0_wired(CPUMIPSState
*env
, target_ulong arg1
)
1342 if (env
->insn_flags
& ISA_MIPS32R6
) {
1343 if (arg1
< env
->tlb
->nb_tlb
) {
1344 env
->CP0_Wired
= arg1
;
1347 env
->CP0_Wired
= arg1
% env
->tlb
->nb_tlb
;
1351 void helper_mtc0_srsconf0(CPUMIPSState
*env
, target_ulong arg1
)
1353 env
->CP0_SRSConf0
|= arg1
& env
->CP0_SRSConf0_rw_bitmask
;
1356 void helper_mtc0_srsconf1(CPUMIPSState
*env
, target_ulong arg1
)
1358 env
->CP0_SRSConf1
|= arg1
& env
->CP0_SRSConf1_rw_bitmask
;
1361 void helper_mtc0_srsconf2(CPUMIPSState
*env
, target_ulong arg1
)
1363 env
->CP0_SRSConf2
|= arg1
& env
->CP0_SRSConf2_rw_bitmask
;
1366 void helper_mtc0_srsconf3(CPUMIPSState
*env
, target_ulong arg1
)
1368 env
->CP0_SRSConf3
|= arg1
& env
->CP0_SRSConf3_rw_bitmask
;
1371 void helper_mtc0_srsconf4(CPUMIPSState
*env
, target_ulong arg1
)
1373 env
->CP0_SRSConf4
|= arg1
& env
->CP0_SRSConf4_rw_bitmask
;
1376 void helper_mtc0_hwrena(CPUMIPSState
*env
, target_ulong arg1
)
1378 uint32_t mask
= 0x0000000F;
1380 if ((env
->CP0_Config1
& (1 << CP0C1_PC
)) &&
1381 (env
->insn_flags
& ISA_MIPS32R6
)) {
1384 if (env
->insn_flags
& ISA_MIPS32R6
) {
1387 if (env
->CP0_Config3
& (1 << CP0C3_ULRI
)) {
1390 if (arg1
& (1 << 29)) {
1391 env
->hflags
|= MIPS_HFLAG_HWRENA_ULR
;
1393 env
->hflags
&= ~MIPS_HFLAG_HWRENA_ULR
;
1397 env
->CP0_HWREna
= arg1
& mask
;
1400 void helper_mtc0_count(CPUMIPSState
*env
, target_ulong arg1
)
1402 cpu_mips_store_count(env
, arg1
);
1405 void helper_mtc0_entryhi(CPUMIPSState
*env
, target_ulong arg1
)
1407 target_ulong old
, val
, mask
;
1408 mask
= (TARGET_PAGE_MASK
<< 1) | 0xFF;
1409 if (((env
->CP0_Config4
>> CP0C4_IE
) & 0x3) >= 2) {
1410 mask
|= 1 << CP0EnHi_EHINV
;
1413 /* 1k pages not implemented */
1414 #if defined(TARGET_MIPS64)
1415 if (env
->insn_flags
& ISA_MIPS32R6
) {
1416 int entryhi_r
= extract64(arg1
, 62, 2);
1417 int config0_at
= extract32(env
->CP0_Config0
, 13, 2);
1418 bool no_supervisor
= (env
->CP0_Status_rw_bitmask
& 0x8) == 0;
1419 if ((entryhi_r
== 2) ||
1420 (entryhi_r
== 1 && (no_supervisor
|| config0_at
== 1))) {
1421 /* skip EntryHi.R field if new value is reserved */
1422 mask
&= ~(0x3ull
<< 62);
1425 mask
&= env
->SEGMask
;
1427 old
= env
->CP0_EntryHi
;
1428 val
= (arg1
& mask
) | (old
& ~mask
);
1429 env
->CP0_EntryHi
= val
;
1430 if (env
->CP0_Config3
& (1 << CP0C3_MT
)) {
1431 sync_c0_entryhi(env
, env
->current_tc
);
1433 /* If the ASID changes, flush qemu's TLB. */
1434 if ((old
& 0xFF) != (val
& 0xFF))
1435 cpu_mips_tlb_flush(env
, 1);
1438 void helper_mttc0_entryhi(CPUMIPSState
*env
, target_ulong arg1
)
1440 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1441 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1443 other
->CP0_EntryHi
= arg1
;
1444 sync_c0_entryhi(other
, other_tc
);
1447 void helper_mtc0_compare(CPUMIPSState
*env
, target_ulong arg1
)
1449 cpu_mips_store_compare(env
, arg1
);
1452 void helper_mtc0_status(CPUMIPSState
*env
, target_ulong arg1
)
1454 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
1457 old
= env
->CP0_Status
;
1458 cpu_mips_store_status(env
, arg1
);
1459 val
= env
->CP0_Status
;
1461 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
1462 qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x",
1463 old
, old
& env
->CP0_Cause
& CP0Ca_IP_mask
,
1464 val
, val
& env
->CP0_Cause
& CP0Ca_IP_mask
,
1466 switch (env
->hflags
& MIPS_HFLAG_KSU
) {
1467 case MIPS_HFLAG_UM
: qemu_log(", UM\n"); break;
1468 case MIPS_HFLAG_SM
: qemu_log(", SM\n"); break;
1469 case MIPS_HFLAG_KM
: qemu_log("\n"); break;
1471 cpu_abort(CPU(cpu
), "Invalid MMU mode!\n");
1477 void helper_mttc0_status(CPUMIPSState
*env
, target_ulong arg1
)
1479 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1480 uint32_t mask
= env
->CP0_Status_rw_bitmask
& ~0xf1000018;
1481 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1483 other
->CP0_Status
= (other
->CP0_Status
& ~mask
) | (arg1
& mask
);
1484 sync_c0_status(env
, other
, other_tc
);
1487 void helper_mtc0_intctl(CPUMIPSState
*env
, target_ulong arg1
)
1489 env
->CP0_IntCtl
= (env
->CP0_IntCtl
& ~0x000003e0) | (arg1
& 0x000003e0);
1492 void helper_mtc0_srsctl(CPUMIPSState
*env
, target_ulong arg1
)
1494 uint32_t mask
= (0xf << CP0SRSCtl_ESS
) | (0xf << CP0SRSCtl_PSS
);
1495 env
->CP0_SRSCtl
= (env
->CP0_SRSCtl
& ~mask
) | (arg1
& mask
);
1498 void helper_mtc0_cause(CPUMIPSState
*env
, target_ulong arg1
)
1500 cpu_mips_store_cause(env
, arg1
);
1503 void helper_mttc0_cause(CPUMIPSState
*env
, target_ulong arg1
)
1505 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1506 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1508 cpu_mips_store_cause(other
, arg1
);
1511 target_ulong
helper_mftc0_epc(CPUMIPSState
*env
)
1513 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1514 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1516 return other
->CP0_EPC
;
1519 target_ulong
helper_mftc0_ebase(CPUMIPSState
*env
)
1521 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1522 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1524 return other
->CP0_EBase
;
1527 void helper_mtc0_ebase(CPUMIPSState
*env
, target_ulong arg1
)
1529 env
->CP0_EBase
= (env
->CP0_EBase
& ~0x3FFFF000) | (arg1
& 0x3FFFF000);
1532 void helper_mttc0_ebase(CPUMIPSState
*env
, target_ulong arg1
)
1534 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1535 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1536 other
->CP0_EBase
= (other
->CP0_EBase
& ~0x3FFFF000) | (arg1
& 0x3FFFF000);
1539 target_ulong
helper_mftc0_configx(CPUMIPSState
*env
, target_ulong idx
)
1541 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1542 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1545 case 0: return other
->CP0_Config0
;
1546 case 1: return other
->CP0_Config1
;
1547 case 2: return other
->CP0_Config2
;
1548 case 3: return other
->CP0_Config3
;
1549 /* 4 and 5 are reserved. */
1550 case 6: return other
->CP0_Config6
;
1551 case 7: return other
->CP0_Config7
;
1558 void helper_mtc0_config0(CPUMIPSState
*env
, target_ulong arg1
)
1560 env
->CP0_Config0
= (env
->CP0_Config0
& 0x81FFFFF8) | (arg1
& 0x00000007);
1563 void helper_mtc0_config2(CPUMIPSState
*env
, target_ulong arg1
)
1565 /* tertiary/secondary caches not implemented */
1566 env
->CP0_Config2
= (env
->CP0_Config2
& 0x8FFF0FFF);
1569 void helper_mtc0_config3(CPUMIPSState
*env
, target_ulong arg1
)
1571 if (env
->insn_flags
& ASE_MICROMIPS
) {
1572 env
->CP0_Config3
= (env
->CP0_Config3
& ~(1 << CP0C3_ISA_ON_EXC
)) |
1573 (arg1
& (1 << CP0C3_ISA_ON_EXC
));
1577 void helper_mtc0_config4(CPUMIPSState
*env
, target_ulong arg1
)
1579 env
->CP0_Config4
= (env
->CP0_Config4
& (~env
->CP0_Config4_rw_bitmask
)) |
1580 (arg1
& env
->CP0_Config4_rw_bitmask
);
1583 void helper_mtc0_config5(CPUMIPSState
*env
, target_ulong arg1
)
1585 env
->CP0_Config5
= (env
->CP0_Config5
& (~env
->CP0_Config5_rw_bitmask
)) |
1586 (arg1
& env
->CP0_Config5_rw_bitmask
);
1587 compute_hflags(env
);
1590 void helper_mtc0_lladdr(CPUMIPSState
*env
, target_ulong arg1
)
1592 target_long mask
= env
->CP0_LLAddr_rw_bitmask
;
1593 arg1
= arg1
<< env
->CP0_LLAddr_shift
;
1594 env
->lladdr
= (env
->lladdr
& ~mask
) | (arg1
& mask
);
1597 #define MTC0_MAAR_MASK(env) \
1598 ((0x1ULL << 63) | ((env->PAMask >> 4) & ~0xFFFull) | 0x3)
1600 void helper_mtc0_maar(CPUMIPSState
*env
, target_ulong arg1
)
1602 env
->CP0_MAAR
[env
->CP0_MAARI
] = arg1
& MTC0_MAAR_MASK(env
);
1605 void helper_mthc0_maar(CPUMIPSState
*env
, target_ulong arg1
)
1607 env
->CP0_MAAR
[env
->CP0_MAARI
] =
1608 (((uint64_t) arg1
<< 32) & MTC0_MAAR_MASK(env
)) |
1609 (env
->CP0_MAAR
[env
->CP0_MAARI
] & 0x00000000ffffffffULL
);
1612 void helper_mtc0_maari(CPUMIPSState
*env
, target_ulong arg1
)
1614 int index
= arg1
& 0x3f;
1615 if (index
== 0x3f) {
1616 /* Software may write all ones to INDEX to determine the
1617 maximum value supported. */
1618 env
->CP0_MAARI
= MIPS_MAAR_MAX
- 1;
1619 } else if (index
< MIPS_MAAR_MAX
) {
1620 env
->CP0_MAARI
= index
;
1622 /* Other than the all ones, if the
1623 value written is not supported, then INDEX is unchanged
1624 from its previous value. */
1627 void helper_mtc0_watchlo(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1629 /* Watch exceptions for instructions, data loads, data stores
1631 env
->CP0_WatchLo
[sel
] = (arg1
& ~0x7);
1634 void helper_mtc0_watchhi(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1636 env
->CP0_WatchHi
[sel
] = (arg1
& 0x40FF0FF8);
1637 env
->CP0_WatchHi
[sel
] &= ~(env
->CP0_WatchHi
[sel
] & arg1
& 0x7);
1640 void helper_mtc0_xcontext(CPUMIPSState
*env
, target_ulong arg1
)
1642 target_ulong mask
= (1ULL << (env
->SEGBITS
- 7)) - 1;
1643 env
->CP0_XContext
= (env
->CP0_XContext
& mask
) | (arg1
& ~mask
);
1646 void helper_mtc0_framemask(CPUMIPSState
*env
, target_ulong arg1
)
1648 env
->CP0_Framemask
= arg1
; /* XXX */
1651 void helper_mtc0_debug(CPUMIPSState
*env
, target_ulong arg1
)
1653 env
->CP0_Debug
= (env
->CP0_Debug
& 0x8C03FC1F) | (arg1
& 0x13300120);
1654 if (arg1
& (1 << CP0DB_DM
))
1655 env
->hflags
|= MIPS_HFLAG_DM
;
1657 env
->hflags
&= ~MIPS_HFLAG_DM
;
1660 void helper_mttc0_debug(CPUMIPSState
*env
, target_ulong arg1
)
1662 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1663 uint32_t val
= arg1
& ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
));
1664 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1666 /* XXX: Might be wrong, check with EJTAG spec. */
1667 if (other_tc
== other
->current_tc
)
1668 other
->active_tc
.CP0_Debug_tcstatus
= val
;
1670 other
->tcs
[other_tc
].CP0_Debug_tcstatus
= val
;
1671 other
->CP0_Debug
= (other
->CP0_Debug
&
1672 ((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
))) |
1673 (arg1
& ~((1 << CP0DB_SSt
) | (1 << CP0DB_Halt
)));
1676 void helper_mtc0_performance0(CPUMIPSState
*env
, target_ulong arg1
)
1678 env
->CP0_Performance0
= arg1
& 0x000007ff;
1681 void helper_mtc0_errctl(CPUMIPSState
*env
, target_ulong arg1
)
1683 int32_t wst
= arg1
& (1 << CP0EC_WST
);
1684 int32_t spr
= arg1
& (1 << CP0EC_SPR
);
1685 int32_t itc
= env
->itc_tag
? (arg1
& (1 << CP0EC_ITC
)) : 0;
1687 env
->CP0_ErrCtl
= wst
| spr
| itc
;
1689 if (itc
&& !wst
&& !spr
) {
1690 env
->hflags
|= MIPS_HFLAG_ITC_CACHE
;
1692 env
->hflags
&= ~MIPS_HFLAG_ITC_CACHE
;
1696 void helper_mtc0_taglo(CPUMIPSState
*env
, target_ulong arg1
)
1698 if (env
->hflags
& MIPS_HFLAG_ITC_CACHE
) {
1699 /* If CACHE instruction is configured for ITC tags then make all
1700 CP0.TagLo bits writable. The actual write to ITC Configuration
1701 Tag will take care of the read-only bits. */
1702 env
->CP0_TagLo
= arg1
;
1704 env
->CP0_TagLo
= arg1
& 0xFFFFFCF6;
1708 void helper_mtc0_datalo(CPUMIPSState
*env
, target_ulong arg1
)
1710 env
->CP0_DataLo
= arg1
; /* XXX */
1713 void helper_mtc0_taghi(CPUMIPSState
*env
, target_ulong arg1
)
1715 env
->CP0_TagHi
= arg1
; /* XXX */
1718 void helper_mtc0_datahi(CPUMIPSState
*env
, target_ulong arg1
)
1720 env
->CP0_DataHi
= arg1
; /* XXX */
1723 /* MIPS MT functions */
1724 target_ulong
helper_mftgpr(CPUMIPSState
*env
, uint32_t sel
)
1726 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1727 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1729 if (other_tc
== other
->current_tc
)
1730 return other
->active_tc
.gpr
[sel
];
1732 return other
->tcs
[other_tc
].gpr
[sel
];
1735 target_ulong
helper_mftlo(CPUMIPSState
*env
, uint32_t sel
)
1737 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1738 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1740 if (other_tc
== other
->current_tc
)
1741 return other
->active_tc
.LO
[sel
];
1743 return other
->tcs
[other_tc
].LO
[sel
];
1746 target_ulong
helper_mfthi(CPUMIPSState
*env
, uint32_t sel
)
1748 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1749 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1751 if (other_tc
== other
->current_tc
)
1752 return other
->active_tc
.HI
[sel
];
1754 return other
->tcs
[other_tc
].HI
[sel
];
1757 target_ulong
helper_mftacx(CPUMIPSState
*env
, uint32_t sel
)
1759 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1760 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1762 if (other_tc
== other
->current_tc
)
1763 return other
->active_tc
.ACX
[sel
];
1765 return other
->tcs
[other_tc
].ACX
[sel
];
1768 target_ulong
helper_mftdsp(CPUMIPSState
*env
)
1770 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1771 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1773 if (other_tc
== other
->current_tc
)
1774 return other
->active_tc
.DSPControl
;
1776 return other
->tcs
[other_tc
].DSPControl
;
1779 void helper_mttgpr(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1781 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1782 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1784 if (other_tc
== other
->current_tc
)
1785 other
->active_tc
.gpr
[sel
] = arg1
;
1787 other
->tcs
[other_tc
].gpr
[sel
] = arg1
;
1790 void helper_mttlo(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1792 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1793 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1795 if (other_tc
== other
->current_tc
)
1796 other
->active_tc
.LO
[sel
] = arg1
;
1798 other
->tcs
[other_tc
].LO
[sel
] = arg1
;
1801 void helper_mtthi(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1803 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1804 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1806 if (other_tc
== other
->current_tc
)
1807 other
->active_tc
.HI
[sel
] = arg1
;
1809 other
->tcs
[other_tc
].HI
[sel
] = arg1
;
1812 void helper_mttacx(CPUMIPSState
*env
, target_ulong arg1
, uint32_t sel
)
1814 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1815 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1817 if (other_tc
== other
->current_tc
)
1818 other
->active_tc
.ACX
[sel
] = arg1
;
1820 other
->tcs
[other_tc
].ACX
[sel
] = arg1
;
1823 void helper_mttdsp(CPUMIPSState
*env
, target_ulong arg1
)
1825 int other_tc
= env
->CP0_VPEControl
& (0xff << CP0VPECo_TargTC
);
1826 CPUMIPSState
*other
= mips_cpu_map_tc(env
, &other_tc
);
1828 if (other_tc
== other
->current_tc
)
1829 other
->active_tc
.DSPControl
= arg1
;
1831 other
->tcs
[other_tc
].DSPControl
= arg1
;
1834 /* MIPS MT functions */
1835 target_ulong
helper_dmt(void)
1841 target_ulong
helper_emt(void)
1847 target_ulong
helper_dvpe(CPUMIPSState
*env
)
1849 CPUState
*other_cs
= first_cpu
;
1850 target_ulong prev
= env
->mvp
->CP0_MVPControl
;
1852 CPU_FOREACH(other_cs
) {
1853 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1854 /* Turn off all VPEs except the one executing the dvpe. */
1855 if (&other_cpu
->env
!= env
) {
1856 other_cpu
->env
.mvp
->CP0_MVPControl
&= ~(1 << CP0MVPCo_EVP
);
1857 mips_vpe_sleep(other_cpu
);
1863 target_ulong
helper_evpe(CPUMIPSState
*env
)
1865 CPUState
*other_cs
= first_cpu
;
1866 target_ulong prev
= env
->mvp
->CP0_MVPControl
;
1868 CPU_FOREACH(other_cs
) {
1869 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1871 if (&other_cpu
->env
!= env
1872 /* If the VPE is WFI, don't disturb its sleep. */
1873 && !mips_vpe_is_wfi(other_cpu
)) {
1874 /* Enable the VPE. */
1875 other_cpu
->env
.mvp
->CP0_MVPControl
|= (1 << CP0MVPCo_EVP
);
1876 mips_vpe_wake(other_cpu
); /* And wake it up. */
1881 #endif /* !CONFIG_USER_ONLY */
1883 void helper_fork(target_ulong arg1
, target_ulong arg2
)
1885 // arg1 = rt, arg2 = rs
1886 // TODO: store to TC register
1889 target_ulong
helper_yield(CPUMIPSState
*env
, target_ulong arg
)
1891 target_long arg1
= arg
;
1894 /* No scheduling policy implemented. */
1896 if (env
->CP0_VPEControl
& (1 << CP0VPECo_YSI
) &&
1897 env
->active_tc
.CP0_TCStatus
& (1 << CP0TCSt_DT
)) {
1898 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1899 env
->CP0_VPEControl
|= 4 << CP0VPECo_EXCPT
;
1900 do_raise_exception(env
, EXCP_THREAD
, GETPC());
1903 } else if (arg1
== 0) {
1904 if (0 /* TODO: TC underflow */) {
1905 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1906 do_raise_exception(env
, EXCP_THREAD
, GETPC());
1908 // TODO: Deallocate TC
1910 } else if (arg1
> 0) {
1911 /* Yield qualifier inputs not implemented. */
1912 env
->CP0_VPEControl
&= ~(0x7 << CP0VPECo_EXCPT
);
1913 env
->CP0_VPEControl
|= 2 << CP0VPECo_EXCPT
;
1914 do_raise_exception(env
, EXCP_THREAD
, GETPC());
1916 return env
->CP0_YQMask
;
1919 /* R6 Multi-threading */
1920 #ifndef CONFIG_USER_ONLY
1921 target_ulong
helper_dvp(CPUMIPSState
*env
)
1923 CPUState
*other_cs
= first_cpu
;
1924 target_ulong prev
= env
->CP0_VPControl
;
1926 if (!((env
->CP0_VPControl
>> CP0VPCtl_DIS
) & 1)) {
1927 CPU_FOREACH(other_cs
) {
1928 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1929 /* Turn off all VPs except the one executing the dvp. */
1930 if (&other_cpu
->env
!= env
) {
1931 mips_vpe_sleep(other_cpu
);
1934 env
->CP0_VPControl
|= (1 << CP0VPCtl_DIS
);
1939 target_ulong
helper_evp(CPUMIPSState
*env
)
1941 CPUState
*other_cs
= first_cpu
;
1942 target_ulong prev
= env
->CP0_VPControl
;
1944 if ((env
->CP0_VPControl
>> CP0VPCtl_DIS
) & 1) {
1945 CPU_FOREACH(other_cs
) {
1946 MIPSCPU
*other_cpu
= MIPS_CPU(other_cs
);
1947 if ((&other_cpu
->env
!= env
) && !mips_vp_is_wfi(other_cpu
)) {
1948 /* If the VP is WFI, don't disturb its sleep.
1949 * Otherwise, wake it up. */
1950 mips_vpe_wake(other_cpu
);
1953 env
->CP0_VPControl
&= ~(1 << CP0VPCtl_DIS
);
1957 #endif /* !CONFIG_USER_ONLY */
1959 #ifndef CONFIG_USER_ONLY
1960 /* TLB management */
1961 static void r4k_mips_tlb_flush_extra (CPUMIPSState
*env
, int first
)
1963 /* Discard entries from env->tlb[first] onwards. */
1964 while (env
->tlb
->tlb_in_use
> first
) {
1965 r4k_invalidate_tlb(env
, --env
->tlb
->tlb_in_use
, 0);
1969 static inline uint64_t get_tlb_pfn_from_entrylo(uint64_t entrylo
)
1971 #if defined(TARGET_MIPS64)
1972 return extract64(entrylo
, 6, 54);
1974 return extract64(entrylo
, 6, 24) | /* PFN */
1975 (extract64(entrylo
, 32, 32) << 24); /* PFNX */
1979 static void r4k_fill_tlb(CPUMIPSState
*env
, int idx
)
1983 /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
1984 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
1985 if (env
->CP0_EntryHi
& (1 << CP0EnHi_EHINV
)) {
1990 tlb
->VPN
= env
->CP0_EntryHi
& (TARGET_PAGE_MASK
<< 1);
1991 #if defined(TARGET_MIPS64)
1992 tlb
->VPN
&= env
->SEGMask
;
1994 tlb
->ASID
= env
->CP0_EntryHi
& 0xFF;
1995 tlb
->PageMask
= env
->CP0_PageMask
;
1996 tlb
->G
= env
->CP0_EntryLo0
& env
->CP0_EntryLo1
& 1;
1997 tlb
->V0
= (env
->CP0_EntryLo0
& 2) != 0;
1998 tlb
->D0
= (env
->CP0_EntryLo0
& 4) != 0;
1999 tlb
->C0
= (env
->CP0_EntryLo0
>> 3) & 0x7;
2000 tlb
->XI0
= (env
->CP0_EntryLo0
>> CP0EnLo_XI
) & 1;
2001 tlb
->RI0
= (env
->CP0_EntryLo0
>> CP0EnLo_RI
) & 1;
2002 tlb
->PFN
[0] = get_tlb_pfn_from_entrylo(env
->CP0_EntryLo0
) << 12;
2003 tlb
->V1
= (env
->CP0_EntryLo1
& 2) != 0;
2004 tlb
->D1
= (env
->CP0_EntryLo1
& 4) != 0;
2005 tlb
->C1
= (env
->CP0_EntryLo1
>> 3) & 0x7;
2006 tlb
->XI1
= (env
->CP0_EntryLo1
>> CP0EnLo_XI
) & 1;
2007 tlb
->RI1
= (env
->CP0_EntryLo1
>> CP0EnLo_RI
) & 1;
2008 tlb
->PFN
[1] = get_tlb_pfn_from_entrylo(env
->CP0_EntryLo1
) << 12;
2011 void r4k_helper_tlbinv(CPUMIPSState
*env
)
2015 uint8_t ASID
= env
->CP0_EntryHi
& 0xFF;
2017 for (idx
= 0; idx
< env
->tlb
->nb_tlb
; idx
++) {
2018 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
2019 if (!tlb
->G
&& tlb
->ASID
== ASID
) {
2023 cpu_mips_tlb_flush(env
, 1);
2026 void r4k_helper_tlbinvf(CPUMIPSState
*env
)
2030 for (idx
= 0; idx
< env
->tlb
->nb_tlb
; idx
++) {
2031 env
->tlb
->mmu
.r4k
.tlb
[idx
].EHINV
= 1;
2033 cpu_mips_tlb_flush(env
, 1);
2036 void r4k_helper_tlbwi(CPUMIPSState
*env
)
2042 bool G
, V0
, D0
, V1
, D1
;
2044 idx
= (env
->CP0_Index
& ~0x80000000) % env
->tlb
->nb_tlb
;
2045 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
2046 VPN
= env
->CP0_EntryHi
& (TARGET_PAGE_MASK
<< 1);
2047 #if defined(TARGET_MIPS64)
2048 VPN
&= env
->SEGMask
;
2050 ASID
= env
->CP0_EntryHi
& 0xff;
2051 G
= env
->CP0_EntryLo0
& env
->CP0_EntryLo1
& 1;
2052 V0
= (env
->CP0_EntryLo0
& 2) != 0;
2053 D0
= (env
->CP0_EntryLo0
& 4) != 0;
2054 V1
= (env
->CP0_EntryLo1
& 2) != 0;
2055 D1
= (env
->CP0_EntryLo1
& 4) != 0;
2057 /* Discard cached TLB entries, unless tlbwi is just upgrading access
2058 permissions on the current entry. */
2059 if (tlb
->VPN
!= VPN
|| tlb
->ASID
!= ASID
|| tlb
->G
!= G
||
2060 (tlb
->V0
&& !V0
) || (tlb
->D0
&& !D0
) ||
2061 (tlb
->V1
&& !V1
) || (tlb
->D1
&& !D1
)) {
2062 r4k_mips_tlb_flush_extra(env
, env
->tlb
->nb_tlb
);
2065 r4k_invalidate_tlb(env
, idx
, 0);
2066 r4k_fill_tlb(env
, idx
);
2069 void r4k_helper_tlbwr(CPUMIPSState
*env
)
2071 int r
= cpu_mips_get_random(env
);
2073 r4k_invalidate_tlb(env
, r
, 1);
2074 r4k_fill_tlb(env
, r
);
2077 void r4k_helper_tlbp(CPUMIPSState
*env
)
2086 ASID
= env
->CP0_EntryHi
& 0xFF;
2087 for (i
= 0; i
< env
->tlb
->nb_tlb
; i
++) {
2088 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[i
];
2089 /* 1k pages are not supported. */
2090 mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
2091 tag
= env
->CP0_EntryHi
& ~mask
;
2092 VPN
= tlb
->VPN
& ~mask
;
2093 #if defined(TARGET_MIPS64)
2094 tag
&= env
->SEGMask
;
2096 /* Check ASID, virtual page number & size */
2097 if ((tlb
->G
== 1 || tlb
->ASID
== ASID
) && VPN
== tag
&& !tlb
->EHINV
) {
2103 if (i
== env
->tlb
->nb_tlb
) {
2104 /* No match. Discard any shadow entries, if any of them match. */
2105 for (i
= env
->tlb
->nb_tlb
; i
< env
->tlb
->tlb_in_use
; i
++) {
2106 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[i
];
2107 /* 1k pages are not supported. */
2108 mask
= tlb
->PageMask
| ~(TARGET_PAGE_MASK
<< 1);
2109 tag
= env
->CP0_EntryHi
& ~mask
;
2110 VPN
= tlb
->VPN
& ~mask
;
2111 #if defined(TARGET_MIPS64)
2112 tag
&= env
->SEGMask
;
2114 /* Check ASID, virtual page number & size */
2115 if ((tlb
->G
== 1 || tlb
->ASID
== ASID
) && VPN
== tag
) {
2116 r4k_mips_tlb_flush_extra (env
, i
);
2121 env
->CP0_Index
|= 0x80000000;
2125 static inline uint64_t get_entrylo_pfn_from_tlb(uint64_t tlb_pfn
)
2127 #if defined(TARGET_MIPS64)
2128 return tlb_pfn
<< 6;
2130 return (extract64(tlb_pfn
, 0, 24) << 6) | /* PFN */
2131 (extract64(tlb_pfn
, 24, 32) << 32); /* PFNX */
2135 void r4k_helper_tlbr(CPUMIPSState
*env
)
2141 ASID
= env
->CP0_EntryHi
& 0xFF;
2142 idx
= (env
->CP0_Index
& ~0x80000000) % env
->tlb
->nb_tlb
;
2143 tlb
= &env
->tlb
->mmu
.r4k
.tlb
[idx
];
2145 /* If this will change the current ASID, flush qemu's TLB. */
2146 if (ASID
!= tlb
->ASID
)
2147 cpu_mips_tlb_flush (env
, 1);
2149 r4k_mips_tlb_flush_extra(env
, env
->tlb
->nb_tlb
);
2152 env
->CP0_EntryHi
= 1 << CP0EnHi_EHINV
;
2153 env
->CP0_PageMask
= 0;
2154 env
->CP0_EntryLo0
= 0;
2155 env
->CP0_EntryLo1
= 0;
2157 env
->CP0_EntryHi
= tlb
->VPN
| tlb
->ASID
;
2158 env
->CP0_PageMask
= tlb
->PageMask
;
2159 env
->CP0_EntryLo0
= tlb
->G
| (tlb
->V0
<< 1) | (tlb
->D0
<< 2) |
2160 ((uint64_t)tlb
->RI0
<< CP0EnLo_RI
) |
2161 ((uint64_t)tlb
->XI0
<< CP0EnLo_XI
) | (tlb
->C0
<< 3) |
2162 get_entrylo_pfn_from_tlb(tlb
->PFN
[0] >> 12);
2163 env
->CP0_EntryLo1
= tlb
->G
| (tlb
->V1
<< 1) | (tlb
->D1
<< 2) |
2164 ((uint64_t)tlb
->RI1
<< CP0EnLo_RI
) |
2165 ((uint64_t)tlb
->XI1
<< CP0EnLo_XI
) | (tlb
->C1
<< 3) |
2166 get_entrylo_pfn_from_tlb(tlb
->PFN
[1] >> 12);
2170 void helper_tlbwi(CPUMIPSState
*env
)
2172 env
->tlb
->helper_tlbwi(env
);
2175 void helper_tlbwr(CPUMIPSState
*env
)
2177 env
->tlb
->helper_tlbwr(env
);
2180 void helper_tlbp(CPUMIPSState
*env
)
2182 env
->tlb
->helper_tlbp(env
);
2185 void helper_tlbr(CPUMIPSState
*env
)
2187 env
->tlb
->helper_tlbr(env
);
2190 void helper_tlbinv(CPUMIPSState
*env
)
2192 env
->tlb
->helper_tlbinv(env
);
2195 void helper_tlbinvf(CPUMIPSState
*env
)
2197 env
->tlb
->helper_tlbinvf(env
);
2201 target_ulong
helper_di(CPUMIPSState
*env
)
2203 target_ulong t0
= env
->CP0_Status
;
2205 env
->CP0_Status
= t0
& ~(1 << CP0St_IE
);
2209 target_ulong
helper_ei(CPUMIPSState
*env
)
2211 target_ulong t0
= env
->CP0_Status
;
2213 env
->CP0_Status
= t0
| (1 << CP0St_IE
);
2217 static void debug_pre_eret(CPUMIPSState
*env
)
2219 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
2220 qemu_log("ERET: PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
,
2221 env
->active_tc
.PC
, env
->CP0_EPC
);
2222 if (env
->CP0_Status
& (1 << CP0St_ERL
))
2223 qemu_log(" ErrorEPC " TARGET_FMT_lx
, env
->CP0_ErrorEPC
);
2224 if (env
->hflags
& MIPS_HFLAG_DM
)
2225 qemu_log(" DEPC " TARGET_FMT_lx
, env
->CP0_DEPC
);
2230 static void debug_post_eret(CPUMIPSState
*env
)
2232 MIPSCPU
*cpu
= mips_env_get_cpu(env
);
2234 if (qemu_loglevel_mask(CPU_LOG_EXEC
)) {
2235 qemu_log(" => PC " TARGET_FMT_lx
" EPC " TARGET_FMT_lx
,
2236 env
->active_tc
.PC
, env
->CP0_EPC
);
2237 if (env
->CP0_Status
& (1 << CP0St_ERL
))
2238 qemu_log(" ErrorEPC " TARGET_FMT_lx
, env
->CP0_ErrorEPC
);
2239 if (env
->hflags
& MIPS_HFLAG_DM
)
2240 qemu_log(" DEPC " TARGET_FMT_lx
, env
->CP0_DEPC
);
2241 switch (env
->hflags
& MIPS_HFLAG_KSU
) {
2242 case MIPS_HFLAG_UM
: qemu_log(", UM\n"); break;
2243 case MIPS_HFLAG_SM
: qemu_log(", SM\n"); break;
2244 case MIPS_HFLAG_KM
: qemu_log("\n"); break;
2246 cpu_abort(CPU(cpu
), "Invalid MMU mode!\n");
2252 static void set_pc(CPUMIPSState
*env
, target_ulong error_pc
)
2254 env
->active_tc
.PC
= error_pc
& ~(target_ulong
)1;
2256 env
->hflags
|= MIPS_HFLAG_M16
;
2258 env
->hflags
&= ~(MIPS_HFLAG_M16
);
2262 static inline void exception_return(CPUMIPSState
*env
)
2264 debug_pre_eret(env
);
2265 if (env
->CP0_Status
& (1 << CP0St_ERL
)) {
2266 set_pc(env
, env
->CP0_ErrorEPC
);
2267 env
->CP0_Status
&= ~(1 << CP0St_ERL
);
2269 set_pc(env
, env
->CP0_EPC
);
2270 env
->CP0_Status
&= ~(1 << CP0St_EXL
);
2272 compute_hflags(env
);
2273 debug_post_eret(env
);
2276 void helper_eret(CPUMIPSState
*env
)
2278 exception_return(env
);
2282 void helper_eretnc(CPUMIPSState
*env
)
2284 exception_return(env
);
2287 void helper_deret(CPUMIPSState
*env
)
2289 debug_pre_eret(env
);
2290 set_pc(env
, env
->CP0_DEPC
);
2292 env
->hflags
&= ~MIPS_HFLAG_DM
;
2293 compute_hflags(env
);
2294 debug_post_eret(env
);
2296 #endif /* !CONFIG_USER_ONLY */
2298 static inline void check_hwrena(CPUMIPSState
*env
, int reg
, uintptr_t pc
)
2300 if ((env
->hflags
& MIPS_HFLAG_CP0
) || (env
->CP0_HWREna
& (1 << reg
))) {
2303 do_raise_exception(env
, EXCP_RI
, pc
);
2306 target_ulong
helper_rdhwr_cpunum(CPUMIPSState
*env
)
2308 check_hwrena(env
, 0, GETPC());
2309 return env
->CP0_EBase
& 0x3ff;
2312 target_ulong
helper_rdhwr_synci_step(CPUMIPSState
*env
)
2314 check_hwrena(env
, 1, GETPC());
2315 return env
->SYNCI_Step
;
2318 target_ulong
helper_rdhwr_cc(CPUMIPSState
*env
)
2320 check_hwrena(env
, 2, GETPC());
2321 #ifdef CONFIG_USER_ONLY
2322 return env
->CP0_Count
;
2324 return (int32_t)cpu_mips_get_count(env
);
2328 target_ulong
helper_rdhwr_ccres(CPUMIPSState
*env
)
2330 check_hwrena(env
, 3, GETPC());
2334 target_ulong
helper_rdhwr_performance(CPUMIPSState
*env
)
2336 check_hwrena(env
, 4, GETPC());
2337 return env
->CP0_Performance0
;
2340 target_ulong
helper_rdhwr_xnp(CPUMIPSState
*env
)
2342 check_hwrena(env
, 5, GETPC());
2343 return (env
->CP0_Config5
>> CP0C5_XNP
) & 1;
2346 void helper_pmon(CPUMIPSState
*env
, int function
)
2350 case 2: /* TODO: char inbyte(int waitflag); */
2351 if (env
->active_tc
.gpr
[4] == 0)
2352 env
->active_tc
.gpr
[2] = -1;
2354 case 11: /* TODO: char inbyte (void); */
2355 env
->active_tc
.gpr
[2] = -1;
2359 printf("%c", (char)(env
->active_tc
.gpr
[4] & 0xFF));
2365 unsigned char *fmt
= (void *)(uintptr_t)env
->active_tc
.gpr
[4];
2372 void helper_wait(CPUMIPSState
*env
)
2374 CPUState
*cs
= CPU(mips_env_get_cpu(env
));
2377 cpu_reset_interrupt(cs
, CPU_INTERRUPT_WAKE
);
2378 /* Last instruction in the block, PC was updated before
2379 - no need to recover PC and icount */
2380 raise_exception(env
, EXCP_HLT
);
2383 #if !defined(CONFIG_USER_ONLY)
2385 void mips_cpu_do_unaligned_access(CPUState
*cs
, vaddr addr
,
2386 int access_type
, int is_user
,
2389 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2390 CPUMIPSState
*env
= &cpu
->env
;
2394 env
->CP0_BadVAddr
= addr
;
2396 if (access_type
== MMU_DATA_STORE
) {
2400 if (access_type
== MMU_INST_FETCH
) {
2401 error_code
|= EXCP_INST_NOTAVAIL
;
2405 do_raise_exception_err(env
, excp
, error_code
, retaddr
);
2408 void tlb_fill(CPUState
*cs
, target_ulong addr
, int is_write
, int mmu_idx
,
2413 ret
= mips_cpu_handle_mmu_fault(cs
, addr
, is_write
, mmu_idx
);
2415 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2416 CPUMIPSState
*env
= &cpu
->env
;
2418 do_raise_exception_err(env
, cs
->exception_index
,
2419 env
->error_code
, retaddr
);
2423 void mips_cpu_unassigned_access(CPUState
*cs
, hwaddr addr
,
2424 bool is_write
, bool is_exec
, int unused
,
2427 MIPSCPU
*cpu
= MIPS_CPU(cs
);
2428 CPUMIPSState
*env
= &cpu
->env
;
2431 * Raising an exception with KVM enabled will crash because it won't be from
2432 * the main execution loop so the longjmp won't have a matching setjmp.
2433 * Until we can trigger a bus error exception through KVM lets just ignore
2436 if (kvm_enabled()) {
2441 raise_exception(env
, EXCP_IBE
);
2443 raise_exception(env
, EXCP_DBE
);
2446 #endif /* !CONFIG_USER_ONLY */
2448 /* Complex FPU operations which may need stack space. */
2450 #define FLOAT_TWO32 make_float32(1 << 30)
2451 #define FLOAT_TWO64 make_float64(1ULL << 62)
2452 #define FP_TO_INT32_OVERFLOW 0x7fffffff
2453 #define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
2455 /* convert MIPS rounding mode in FCR31 to IEEE library */
2456 unsigned int ieee_rm
[] = {
2457 float_round_nearest_even
,
2458 float_round_to_zero
,
2463 target_ulong
helper_cfc1(CPUMIPSState
*env
, uint32_t reg
)
2465 target_ulong arg1
= 0;
2469 arg1
= (int32_t)env
->active_fpu
.fcr0
;
2472 /* UFR Support - Read Status FR */
2473 if (env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) {
2474 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2476 ((env
->CP0_Status
& (1 << CP0St_FR
)) >> CP0St_FR
);
2478 do_raise_exception(env
, EXCP_RI
, GETPC());
2483 /* FRE Support - read Config5.FRE bit */
2484 if (env
->active_fpu
.fcr0
& (1 << FCR0_FREP
)) {
2485 if (env
->CP0_Config5
& (1 << CP0C5_UFE
)) {
2486 arg1
= (env
->CP0_Config5
>> CP0C5_FRE
) & 1;
2488 helper_raise_exception(env
, EXCP_RI
);
2493 arg1
= ((env
->active_fpu
.fcr31
>> 24) & 0xfe) | ((env
->active_fpu
.fcr31
>> 23) & 0x1);
2496 arg1
= env
->active_fpu
.fcr31
& 0x0003f07c;
2499 arg1
= (env
->active_fpu
.fcr31
& 0x00000f83) | ((env
->active_fpu
.fcr31
>> 22) & 0x4);
2502 arg1
= (int32_t)env
->active_fpu
.fcr31
;
2509 void helper_ctc1(CPUMIPSState
*env
, target_ulong arg1
, uint32_t fs
, uint32_t rt
)
2513 /* UFR Alias - Reset Status FR */
2514 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) && (rt
== 0))) {
2517 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2518 env
->CP0_Status
&= ~(1 << CP0St_FR
);
2519 compute_hflags(env
);
2521 do_raise_exception(env
, EXCP_RI
, GETPC());
2525 /* UNFR Alias - Set Status FR */
2526 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_UFRP
)) && (rt
== 0))) {
2529 if (env
->CP0_Config5
& (1 << CP0C5_UFR
)) {
2530 env
->CP0_Status
|= (1 << CP0St_FR
);
2531 compute_hflags(env
);
2533 do_raise_exception(env
, EXCP_RI
, GETPC());
2537 /* FRE Support - clear Config5.FRE bit */
2538 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_FREP
)) && (rt
== 0))) {
2541 if (env
->CP0_Config5
& (1 << CP0C5_UFE
)) {
2542 env
->CP0_Config5
&= ~(1 << CP0C5_FRE
);
2543 compute_hflags(env
);
2545 helper_raise_exception(env
, EXCP_RI
);
2549 /* FRE Support - set Config5.FRE bit */
2550 if (!((env
->active_fpu
.fcr0
& (1 << FCR0_FREP
)) && (rt
== 0))) {
2553 if (env
->CP0_Config5
& (1 << CP0C5_UFE
)) {
2554 env
->CP0_Config5
|= (1 << CP0C5_FRE
);
2555 compute_hflags(env
);
2557 helper_raise_exception(env
, EXCP_RI
);
2561 if ((env
->insn_flags
& ISA_MIPS32R6
) || (arg1
& 0xffffff00)) {
2564 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0x017fffff) | ((arg1
& 0xfe) << 24) |
2565 ((arg1
& 0x1) << 23);
2568 if (arg1
& 0x007c0000)
2570 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0xfffc0f83) | (arg1
& 0x0003f07c);
2573 if (arg1
& 0x007c0000)
2575 env
->active_fpu
.fcr31
= (env
->active_fpu
.fcr31
& 0xfefff07c) | (arg1
& 0x00000f83) |
2576 ((arg1
& 0x4) << 22);
2579 if (env
->insn_flags
& ISA_MIPS32R6
) {
2580 uint32_t mask
= 0xfefc0000;
2581 env
->active_fpu
.fcr31
= (arg1
& ~mask
) |
2582 (env
->active_fpu
.fcr31
& mask
);
2583 } else if (!(arg1
& 0x007c0000)) {
2584 env
->active_fpu
.fcr31
= arg1
;
2590 /* set rounding mode */
2591 restore_rounding_mode(env
);
2592 /* set flush-to-zero mode */
2593 restore_flush_mode(env
);
2594 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2595 if ((GET_FP_ENABLE(env
->active_fpu
.fcr31
) | 0x20) & GET_FP_CAUSE(env
->active_fpu
.fcr31
))
2596 do_raise_exception(env
, EXCP_FPE
, GETPC());
2599 int ieee_ex_to_mips(int xcpt
)
2603 if (xcpt
& float_flag_invalid
) {
2606 if (xcpt
& float_flag_overflow
) {
2609 if (xcpt
& float_flag_underflow
) {
2610 ret
|= FP_UNDERFLOW
;
2612 if (xcpt
& float_flag_divbyzero
) {
2615 if (xcpt
& float_flag_inexact
) {
2622 static inline void update_fcr31(CPUMIPSState
*env
, uintptr_t pc
)
2624 int tmp
= ieee_ex_to_mips(get_float_exception_flags(&env
->active_fpu
.fp_status
));
2626 SET_FP_CAUSE(env
->active_fpu
.fcr31
, tmp
);
2629 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2631 if (GET_FP_ENABLE(env
->active_fpu
.fcr31
) & tmp
) {
2632 do_raise_exception(env
, EXCP_FPE
, pc
);
2634 UPDATE_FP_FLAGS(env
->active_fpu
.fcr31
, tmp
);
2640 Single precition routines have a "s" suffix, double precision a
2641 "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps",
2642 paired single lower "pl", paired single upper "pu". */
2644 /* unary operations, modifying fp status */
2645 uint64_t helper_float_sqrt_d(CPUMIPSState
*env
, uint64_t fdt0
)
2647 fdt0
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
2648 update_fcr31(env
, GETPC());
2652 uint32_t helper_float_sqrt_s(CPUMIPSState
*env
, uint32_t fst0
)
2654 fst0
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
2655 update_fcr31(env
, GETPC());
2659 uint64_t helper_float_cvtd_s(CPUMIPSState
*env
, uint32_t fst0
)
2663 fdt2
= float32_to_float64(fst0
, &env
->active_fpu
.fp_status
);
2664 fdt2
= float64_maybe_silence_nan(fdt2
);
2665 update_fcr31(env
, GETPC());
2669 uint64_t helper_float_cvtd_w(CPUMIPSState
*env
, uint32_t wt0
)
2673 fdt2
= int32_to_float64(wt0
, &env
->active_fpu
.fp_status
);
2674 update_fcr31(env
, GETPC());
2678 uint64_t helper_float_cvtd_l(CPUMIPSState
*env
, uint64_t dt0
)
2682 fdt2
= int64_to_float64(dt0
, &env
->active_fpu
.fp_status
);
2683 update_fcr31(env
, GETPC());
2687 uint64_t helper_float_cvtl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2691 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2692 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2693 & (float_flag_invalid
| float_flag_overflow
)) {
2694 dt2
= FP_TO_INT64_OVERFLOW
;
2696 update_fcr31(env
, GETPC());
2700 uint64_t helper_float_cvtl_s(CPUMIPSState
*env
, uint32_t fst0
)
2704 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2705 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2706 & (float_flag_invalid
| float_flag_overflow
)) {
2707 dt2
= FP_TO_INT64_OVERFLOW
;
2709 update_fcr31(env
, GETPC());
2713 uint64_t helper_float_cvtps_pw(CPUMIPSState
*env
, uint64_t dt0
)
2718 fst2
= int32_to_float32(dt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
2719 fsth2
= int32_to_float32(dt0
>> 32, &env
->active_fpu
.fp_status
);
2720 update_fcr31(env
, GETPC());
2721 return ((uint64_t)fsth2
<< 32) | fst2
;
2724 uint64_t helper_float_cvtpw_ps(CPUMIPSState
*env
, uint64_t fdt0
)
2730 wt2
= float32_to_int32(fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
2731 excp
= get_float_exception_flags(&env
->active_fpu
.fp_status
);
2732 if (excp
& (float_flag_overflow
| float_flag_invalid
)) {
2733 wt2
= FP_TO_INT32_OVERFLOW
;
2736 set_float_exception_flags(0, &env
->active_fpu
.fp_status
);
2737 wth2
= float32_to_int32(fdt0
>> 32, &env
->active_fpu
.fp_status
);
2738 excph
= get_float_exception_flags(&env
->active_fpu
.fp_status
);
2739 if (excph
& (float_flag_overflow
| float_flag_invalid
)) {
2740 wth2
= FP_TO_INT32_OVERFLOW
;
2743 set_float_exception_flags(excp
| excph
, &env
->active_fpu
.fp_status
);
2744 update_fcr31(env
, GETPC());
2746 return ((uint64_t)wth2
<< 32) | wt2
;
2749 uint32_t helper_float_cvts_d(CPUMIPSState
*env
, uint64_t fdt0
)
2753 fst2
= float64_to_float32(fdt0
, &env
->active_fpu
.fp_status
);
2754 fst2
= float32_maybe_silence_nan(fst2
);
2755 update_fcr31(env
, GETPC());
2759 uint32_t helper_float_cvts_w(CPUMIPSState
*env
, uint32_t wt0
)
2763 fst2
= int32_to_float32(wt0
, &env
->active_fpu
.fp_status
);
2764 update_fcr31(env
, GETPC());
2768 uint32_t helper_float_cvts_l(CPUMIPSState
*env
, uint64_t dt0
)
2772 fst2
= int64_to_float32(dt0
, &env
->active_fpu
.fp_status
);
2773 update_fcr31(env
, GETPC());
2777 uint32_t helper_float_cvts_pl(CPUMIPSState
*env
, uint32_t wt0
)
2782 update_fcr31(env
, GETPC());
2786 uint32_t helper_float_cvts_pu(CPUMIPSState
*env
, uint32_t wth0
)
2791 update_fcr31(env
, GETPC());
2795 uint32_t helper_float_cvtw_s(CPUMIPSState
*env
, uint32_t fst0
)
2799 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2800 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2801 & (float_flag_invalid
| float_flag_overflow
)) {
2802 wt2
= FP_TO_INT32_OVERFLOW
;
2804 update_fcr31(env
, GETPC());
2808 uint32_t helper_float_cvtw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2812 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2813 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2814 & (float_flag_invalid
| float_flag_overflow
)) {
2815 wt2
= FP_TO_INT32_OVERFLOW
;
2817 update_fcr31(env
, GETPC());
2821 uint64_t helper_float_roundl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2825 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2826 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2827 restore_rounding_mode(env
);
2828 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2829 & (float_flag_invalid
| float_flag_overflow
)) {
2830 dt2
= FP_TO_INT64_OVERFLOW
;
2832 update_fcr31(env
, GETPC());
2836 uint64_t helper_float_roundl_s(CPUMIPSState
*env
, uint32_t fst0
)
2840 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2841 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2842 restore_rounding_mode(env
);
2843 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2844 & (float_flag_invalid
| float_flag_overflow
)) {
2845 dt2
= FP_TO_INT64_OVERFLOW
;
2847 update_fcr31(env
, GETPC());
2851 uint32_t helper_float_roundw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2855 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2856 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2857 restore_rounding_mode(env
);
2858 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2859 & (float_flag_invalid
| float_flag_overflow
)) {
2860 wt2
= FP_TO_INT32_OVERFLOW
;
2862 update_fcr31(env
, GETPC());
2866 uint32_t helper_float_roundw_s(CPUMIPSState
*env
, uint32_t fst0
)
2870 set_float_rounding_mode(float_round_nearest_even
, &env
->active_fpu
.fp_status
);
2871 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2872 restore_rounding_mode(env
);
2873 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2874 & (float_flag_invalid
| float_flag_overflow
)) {
2875 wt2
= FP_TO_INT32_OVERFLOW
;
2877 update_fcr31(env
, GETPC());
2881 uint64_t helper_float_truncl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2885 dt2
= float64_to_int64_round_to_zero(fdt0
, &env
->active_fpu
.fp_status
);
2886 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2887 & (float_flag_invalid
| float_flag_overflow
)) {
2888 dt2
= FP_TO_INT64_OVERFLOW
;
2890 update_fcr31(env
, GETPC());
2894 uint64_t helper_float_truncl_s(CPUMIPSState
*env
, uint32_t fst0
)
2898 dt2
= float32_to_int64_round_to_zero(fst0
, &env
->active_fpu
.fp_status
);
2899 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2900 & (float_flag_invalid
| float_flag_overflow
)) {
2901 dt2
= FP_TO_INT64_OVERFLOW
;
2903 update_fcr31(env
, GETPC());
2907 uint32_t helper_float_truncw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2911 wt2
= float64_to_int32_round_to_zero(fdt0
, &env
->active_fpu
.fp_status
);
2912 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2913 & (float_flag_invalid
| float_flag_overflow
)) {
2914 wt2
= FP_TO_INT32_OVERFLOW
;
2916 update_fcr31(env
, GETPC());
2920 uint32_t helper_float_truncw_s(CPUMIPSState
*env
, uint32_t fst0
)
2924 wt2
= float32_to_int32_round_to_zero(fst0
, &env
->active_fpu
.fp_status
);
2925 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2926 & (float_flag_invalid
| float_flag_overflow
)) {
2927 wt2
= FP_TO_INT32_OVERFLOW
;
2929 update_fcr31(env
, GETPC());
2933 uint64_t helper_float_ceill_d(CPUMIPSState
*env
, uint64_t fdt0
)
2937 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2938 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2939 restore_rounding_mode(env
);
2940 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2941 & (float_flag_invalid
| float_flag_overflow
)) {
2942 dt2
= FP_TO_INT64_OVERFLOW
;
2944 update_fcr31(env
, GETPC());
2948 uint64_t helper_float_ceill_s(CPUMIPSState
*env
, uint32_t fst0
)
2952 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2953 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
2954 restore_rounding_mode(env
);
2955 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2956 & (float_flag_invalid
| float_flag_overflow
)) {
2957 dt2
= FP_TO_INT64_OVERFLOW
;
2959 update_fcr31(env
, GETPC());
2963 uint32_t helper_float_ceilw_d(CPUMIPSState
*env
, uint64_t fdt0
)
2967 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2968 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
2969 restore_rounding_mode(env
);
2970 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2971 & (float_flag_invalid
| float_flag_overflow
)) {
2972 wt2
= FP_TO_INT32_OVERFLOW
;
2974 update_fcr31(env
, GETPC());
2978 uint32_t helper_float_ceilw_s(CPUMIPSState
*env
, uint32_t fst0
)
2982 set_float_rounding_mode(float_round_up
, &env
->active_fpu
.fp_status
);
2983 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
2984 restore_rounding_mode(env
);
2985 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
2986 & (float_flag_invalid
| float_flag_overflow
)) {
2987 wt2
= FP_TO_INT32_OVERFLOW
;
2989 update_fcr31(env
, GETPC());
2993 uint64_t helper_float_floorl_d(CPUMIPSState
*env
, uint64_t fdt0
)
2997 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
2998 dt2
= float64_to_int64(fdt0
, &env
->active_fpu
.fp_status
);
2999 restore_rounding_mode(env
);
3000 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
3001 & (float_flag_invalid
| float_flag_overflow
)) {
3002 dt2
= FP_TO_INT64_OVERFLOW
;
3004 update_fcr31(env
, GETPC());
3008 uint64_t helper_float_floorl_s(CPUMIPSState
*env
, uint32_t fst0
)
3012 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
3013 dt2
= float32_to_int64(fst0
, &env
->active_fpu
.fp_status
);
3014 restore_rounding_mode(env
);
3015 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
3016 & (float_flag_invalid
| float_flag_overflow
)) {
3017 dt2
= FP_TO_INT64_OVERFLOW
;
3019 update_fcr31(env
, GETPC());
3023 uint32_t helper_float_floorw_d(CPUMIPSState
*env
, uint64_t fdt0
)
3027 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
3028 wt2
= float64_to_int32(fdt0
, &env
->active_fpu
.fp_status
);
3029 restore_rounding_mode(env
);
3030 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
3031 & (float_flag_invalid
| float_flag_overflow
)) {
3032 wt2
= FP_TO_INT32_OVERFLOW
;
3034 update_fcr31(env
, GETPC());
3038 uint32_t helper_float_floorw_s(CPUMIPSState
*env
, uint32_t fst0
)
3042 set_float_rounding_mode(float_round_down
, &env
->active_fpu
.fp_status
);
3043 wt2
= float32_to_int32(fst0
, &env
->active_fpu
.fp_status
);
3044 restore_rounding_mode(env
);
3045 if (get_float_exception_flags(&env
->active_fpu
.fp_status
)
3046 & (float_flag_invalid
| float_flag_overflow
)) {
3047 wt2
= FP_TO_INT32_OVERFLOW
;
3049 update_fcr31(env
, GETPC());
3053 /* unary operations, not modifying fp status */
3054 #define FLOAT_UNOP(name) \
3055 uint64_t helper_float_ ## name ## _d(uint64_t fdt0) \
3057 return float64_ ## name(fdt0); \
3059 uint32_t helper_float_ ## name ## _s(uint32_t fst0) \
3061 return float32_ ## name(fst0); \
3063 uint64_t helper_float_ ## name ## _ps(uint64_t fdt0) \
3068 wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF); \
3069 wth0 = float32_ ## name(fdt0 >> 32); \
3070 return ((uint64_t)wth0 << 32) | wt0; \
3076 /* MIPS specific unary operations */
3077 uint64_t helper_float_recip_d(CPUMIPSState
*env
, uint64_t fdt0
)
3081 fdt2
= float64_div(float64_one
, fdt0
, &env
->active_fpu
.fp_status
);
3082 update_fcr31(env
, GETPC());
3086 uint32_t helper_float_recip_s(CPUMIPSState
*env
, uint32_t fst0
)
3090 fst2
= float32_div(float32_one
, fst0
, &env
->active_fpu
.fp_status
);
3091 update_fcr31(env
, GETPC());
3095 uint64_t helper_float_rsqrt_d(CPUMIPSState
*env
, uint64_t fdt0
)
3099 fdt2
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
3100 fdt2
= float64_div(float64_one
, fdt2
, &env
->active_fpu
.fp_status
);
3101 update_fcr31(env
, GETPC());
3105 uint32_t helper_float_rsqrt_s(CPUMIPSState
*env
, uint32_t fst0
)
3109 fst2
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
3110 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
3111 update_fcr31(env
, GETPC());
3115 uint64_t helper_float_recip1_d(CPUMIPSState
*env
, uint64_t fdt0
)
3119 fdt2
= float64_div(float64_one
, fdt0
, &env
->active_fpu
.fp_status
);
3120 update_fcr31(env
, GETPC());
3124 uint32_t helper_float_recip1_s(CPUMIPSState
*env
, uint32_t fst0
)
3128 fst2
= float32_div(float32_one
, fst0
, &env
->active_fpu
.fp_status
);
3129 update_fcr31(env
, GETPC());
3133 uint64_t helper_float_recip1_ps(CPUMIPSState
*env
, uint64_t fdt0
)
3138 fst2
= float32_div(float32_one
, fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
3139 fsth2
= float32_div(float32_one
, fdt0
>> 32, &env
->active_fpu
.fp_status
);
3140 update_fcr31(env
, GETPC());
3141 return ((uint64_t)fsth2
<< 32) | fst2
;
3144 uint64_t helper_float_rsqrt1_d(CPUMIPSState
*env
, uint64_t fdt0
)
3148 fdt2
= float64_sqrt(fdt0
, &env
->active_fpu
.fp_status
);
3149 fdt2
= float64_div(float64_one
, fdt2
, &env
->active_fpu
.fp_status
);
3150 update_fcr31(env
, GETPC());
3154 uint32_t helper_float_rsqrt1_s(CPUMIPSState
*env
, uint32_t fst0
)
3158 fst2
= float32_sqrt(fst0
, &env
->active_fpu
.fp_status
);
3159 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
3160 update_fcr31(env
, GETPC());
3164 uint64_t helper_float_rsqrt1_ps(CPUMIPSState
*env
, uint64_t fdt0
)
3169 fst2
= float32_sqrt(fdt0
& 0XFFFFFFFF, &env
->active_fpu
.fp_status
);
3170 fsth2
= float32_sqrt(fdt0
>> 32, &env
->active_fpu
.fp_status
);
3171 fst2
= float32_div(float32_one
, fst2
, &env
->active_fpu
.fp_status
);
3172 fsth2
= float32_div(float32_one
, fsth2
, &env
->active_fpu
.fp_status
);
3173 update_fcr31(env
, GETPC());
3174 return ((uint64_t)fsth2
<< 32) | fst2
;
3177 #define FLOAT_RINT(name, bits) \
3178 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
3179 uint ## bits ## _t fs) \
3181 uint ## bits ## _t fdret; \
3183 fdret = float ## bits ## _round_to_int(fs, &env->active_fpu.fp_status); \
3184 update_fcr31(env, GETPC()); \
3188 FLOAT_RINT(rint_s
, 32)
3189 FLOAT_RINT(rint_d
, 64)
3192 #define FLOAT_CLASS_SIGNALING_NAN 0x001
3193 #define FLOAT_CLASS_QUIET_NAN 0x002
3194 #define FLOAT_CLASS_NEGATIVE_INFINITY 0x004
3195 #define FLOAT_CLASS_NEGATIVE_NORMAL 0x008
3196 #define FLOAT_CLASS_NEGATIVE_SUBNORMAL 0x010
3197 #define FLOAT_CLASS_NEGATIVE_ZERO 0x020
3198 #define FLOAT_CLASS_POSITIVE_INFINITY 0x040
3199 #define FLOAT_CLASS_POSITIVE_NORMAL 0x080
3200 #define FLOAT_CLASS_POSITIVE_SUBNORMAL 0x100
3201 #define FLOAT_CLASS_POSITIVE_ZERO 0x200
3203 #define FLOAT_CLASS(name, bits) \
3204 uint ## bits ## _t helper_float_ ## name (uint ## bits ## _t arg) \
3206 if (float ## bits ## _is_signaling_nan(arg)) { \
3207 return FLOAT_CLASS_SIGNALING_NAN; \
3208 } else if (float ## bits ## _is_quiet_nan(arg)) { \
3209 return FLOAT_CLASS_QUIET_NAN; \
3210 } else if (float ## bits ## _is_neg(arg)) { \
3211 if (float ## bits ## _is_infinity(arg)) { \
3212 return FLOAT_CLASS_NEGATIVE_INFINITY; \
3213 } else if (float ## bits ## _is_zero(arg)) { \
3214 return FLOAT_CLASS_NEGATIVE_ZERO; \
3215 } else if (float ## bits ## _is_zero_or_denormal(arg)) { \
3216 return FLOAT_CLASS_NEGATIVE_SUBNORMAL; \
3218 return FLOAT_CLASS_NEGATIVE_NORMAL; \
3221 if (float ## bits ## _is_infinity(arg)) { \
3222 return FLOAT_CLASS_POSITIVE_INFINITY; \
3223 } else if (float ## bits ## _is_zero(arg)) { \
3224 return FLOAT_CLASS_POSITIVE_ZERO; \
3225 } else if (float ## bits ## _is_zero_or_denormal(arg)) { \
3226 return FLOAT_CLASS_POSITIVE_SUBNORMAL; \
3228 return FLOAT_CLASS_POSITIVE_NORMAL; \
3233 FLOAT_CLASS(class_s
, 32)
3234 FLOAT_CLASS(class_d
, 64)
3237 /* binary operations */
3238 #define FLOAT_BINOP(name) \
3239 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
3240 uint64_t fdt0, uint64_t fdt1) \
3244 dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \
3245 update_fcr31(env, GETPC()); \
3249 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
3250 uint32_t fst0, uint32_t fst1) \
3254 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
3255 update_fcr31(env, GETPC()); \
3259 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
3263 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
3264 uint32_t fsth0 = fdt0 >> 32; \
3265 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
3266 uint32_t fsth1 = fdt1 >> 32; \
3270 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
3271 wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status); \
3272 update_fcr31(env, GETPC()); \
3273 return ((uint64_t)wth2 << 32) | wt2; \
3282 /* MIPS specific binary operations */
3283 uint64_t helper_float_recip2_d(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3285 fdt2
= float64_mul(fdt0
, fdt2
, &env
->active_fpu
.fp_status
);
3286 fdt2
= float64_chs(float64_sub(fdt2
, float64_one
, &env
->active_fpu
.fp_status
));
3287 update_fcr31(env
, GETPC());
3291 uint32_t helper_float_recip2_s(CPUMIPSState
*env
, uint32_t fst0
, uint32_t fst2
)
3293 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3294 fst2
= float32_chs(float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
));
3295 update_fcr31(env
, GETPC());
3299 uint64_t helper_float_recip2_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3301 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3302 uint32_t fsth0
= fdt0
>> 32;
3303 uint32_t fst2
= fdt2
& 0XFFFFFFFF;
3304 uint32_t fsth2
= fdt2
>> 32;
3306 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3307 fsth2
= float32_mul(fsth0
, fsth2
, &env
->active_fpu
.fp_status
);
3308 fst2
= float32_chs(float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
));
3309 fsth2
= float32_chs(float32_sub(fsth2
, float32_one
, &env
->active_fpu
.fp_status
));
3310 update_fcr31(env
, GETPC());
3311 return ((uint64_t)fsth2
<< 32) | fst2
;
3314 uint64_t helper_float_rsqrt2_d(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3316 fdt2
= float64_mul(fdt0
, fdt2
, &env
->active_fpu
.fp_status
);
3317 fdt2
= float64_sub(fdt2
, float64_one
, &env
->active_fpu
.fp_status
);
3318 fdt2
= float64_chs(float64_div(fdt2
, FLOAT_TWO64
, &env
->active_fpu
.fp_status
));
3319 update_fcr31(env
, GETPC());
3323 uint32_t helper_float_rsqrt2_s(CPUMIPSState
*env
, uint32_t fst0
, uint32_t fst2
)
3325 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3326 fst2
= float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
);
3327 fst2
= float32_chs(float32_div(fst2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3328 update_fcr31(env
, GETPC());
3332 uint64_t helper_float_rsqrt2_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt2
)
3334 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3335 uint32_t fsth0
= fdt0
>> 32;
3336 uint32_t fst2
= fdt2
& 0XFFFFFFFF;
3337 uint32_t fsth2
= fdt2
>> 32;
3339 fst2
= float32_mul(fst0
, fst2
, &env
->active_fpu
.fp_status
);
3340 fsth2
= float32_mul(fsth0
, fsth2
, &env
->active_fpu
.fp_status
);
3341 fst2
= float32_sub(fst2
, float32_one
, &env
->active_fpu
.fp_status
);
3342 fsth2
= float32_sub(fsth2
, float32_one
, &env
->active_fpu
.fp_status
);
3343 fst2
= float32_chs(float32_div(fst2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3344 fsth2
= float32_chs(float32_div(fsth2
, FLOAT_TWO32
, &env
->active_fpu
.fp_status
));
3345 update_fcr31(env
, GETPC());
3346 return ((uint64_t)fsth2
<< 32) | fst2
;
3349 uint64_t helper_float_addr_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt1
)
3351 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3352 uint32_t fsth0
= fdt0
>> 32;
3353 uint32_t fst1
= fdt1
& 0XFFFFFFFF;
3354 uint32_t fsth1
= fdt1
>> 32;
3358 fst2
= float32_add (fst0
, fsth0
, &env
->active_fpu
.fp_status
);
3359 fsth2
= float32_add (fst1
, fsth1
, &env
->active_fpu
.fp_status
);
3360 update_fcr31(env
, GETPC());
3361 return ((uint64_t)fsth2
<< 32) | fst2
;
3364 uint64_t helper_float_mulr_ps(CPUMIPSState
*env
, uint64_t fdt0
, uint64_t fdt1
)
3366 uint32_t fst0
= fdt0
& 0XFFFFFFFF;
3367 uint32_t fsth0
= fdt0
>> 32;
3368 uint32_t fst1
= fdt1
& 0XFFFFFFFF;
3369 uint32_t fsth1
= fdt1
>> 32;
3373 fst2
= float32_mul (fst0
, fsth0
, &env
->active_fpu
.fp_status
);
3374 fsth2
= float32_mul (fst1
, fsth1
, &env
->active_fpu
.fp_status
);
3375 update_fcr31(env
, GETPC());
3376 return ((uint64_t)fsth2
<< 32) | fst2
;
3379 #define FLOAT_MINMAX(name, bits, minmaxfunc) \
3380 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
3381 uint ## bits ## _t fs, \
3382 uint ## bits ## _t ft) \
3384 uint ## bits ## _t fdret; \
3386 fdret = float ## bits ## _ ## minmaxfunc(fs, ft, \
3387 &env->active_fpu.fp_status); \
3388 update_fcr31(env, GETPC()); \
3392 FLOAT_MINMAX(max_s
, 32, maxnum
)
3393 FLOAT_MINMAX(max_d
, 64, maxnum
)
3394 FLOAT_MINMAX(maxa_s
, 32, maxnummag
)
3395 FLOAT_MINMAX(maxa_d
, 64, maxnummag
)
3397 FLOAT_MINMAX(min_s
, 32, minnum
)
3398 FLOAT_MINMAX(min_d
, 64, minnum
)
3399 FLOAT_MINMAX(mina_s
, 32, minnummag
)
3400 FLOAT_MINMAX(mina_d
, 64, minnummag
)
3403 /* ternary operations */
3404 #define UNFUSED_FMA(prefix, a, b, c, flags) \
3406 a = prefix##_mul(a, b, &env->active_fpu.fp_status); \
3407 if ((flags) & float_muladd_negate_c) { \
3408 a = prefix##_sub(a, c, &env->active_fpu.fp_status); \
3410 a = prefix##_add(a, c, &env->active_fpu.fp_status); \
3412 if ((flags) & float_muladd_negate_result) { \
3413 a = prefix##_chs(a); \
3417 /* FMA based operations */
3418 #define FLOAT_FMA(name, type) \
3419 uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
3420 uint64_t fdt0, uint64_t fdt1, \
3423 UNFUSED_FMA(float64, fdt0, fdt1, fdt2, type); \
3424 update_fcr31(env, GETPC()); \
3428 uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
3429 uint32_t fst0, uint32_t fst1, \
3432 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
3433 update_fcr31(env, GETPC()); \
3437 uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
3438 uint64_t fdt0, uint64_t fdt1, \
3441 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
3442 uint32_t fsth0 = fdt0 >> 32; \
3443 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
3444 uint32_t fsth1 = fdt1 >> 32; \
3445 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
3446 uint32_t fsth2 = fdt2 >> 32; \
3448 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
3449 UNFUSED_FMA(float32, fsth0, fsth1, fsth2, type); \
3450 update_fcr31(env, GETPC()); \
3451 return ((uint64_t)fsth0 << 32) | fst0; \
3454 FLOAT_FMA(msub
, float_muladd_negate_c
)
3455 FLOAT_FMA(nmadd
, float_muladd_negate_result
)
3456 FLOAT_FMA(nmsub
, float_muladd_negate_result
| float_muladd_negate_c
)
3459 #define FLOAT_FMADDSUB(name, bits, muladd_arg) \
3460 uint ## bits ## _t helper_float_ ## name (CPUMIPSState *env, \
3461 uint ## bits ## _t fs, \
3462 uint ## bits ## _t ft, \
3463 uint ## bits ## _t fd) \
3465 uint ## bits ## _t fdret; \
3467 fdret = float ## bits ## _muladd(fs, ft, fd, muladd_arg, \
3468 &env->active_fpu.fp_status); \
3469 update_fcr31(env, GETPC()); \
3473 FLOAT_FMADDSUB(maddf_s
, 32, 0)
3474 FLOAT_FMADDSUB(maddf_d
, 64, 0)
3475 FLOAT_FMADDSUB(msubf_s
, 32, float_muladd_negate_product
)
3476 FLOAT_FMADDSUB(msubf_d
, 64, float_muladd_negate_product
)
3477 #undef FLOAT_FMADDSUB
3479 /* compare operations */
3480 #define FOP_COND_D(op, cond) \
3481 void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3482 uint64_t fdt1, int cc) \
3486 update_fcr31(env, GETPC()); \
3488 SET_FP_COND(cc, env->active_fpu); \
3490 CLEAR_FP_COND(cc, env->active_fpu); \
3492 void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3493 uint64_t fdt1, int cc) \
3496 fdt0 = float64_abs(fdt0); \
3497 fdt1 = float64_abs(fdt1); \
3499 update_fcr31(env, GETPC()); \
3501 SET_FP_COND(cc, env->active_fpu); \
3503 CLEAR_FP_COND(cc, env->active_fpu); \
3506 /* NOTE: the comma operator will make "cond" to eval to false,
3507 * but float64_unordered_quiet() is still called. */
3508 FOP_COND_D(f
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3509 FOP_COND_D(un
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
))
3510 FOP_COND_D(eq
, float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3511 FOP_COND_D(ueq
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3512 FOP_COND_D(olt
, float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3513 FOP_COND_D(ult
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3514 FOP_COND_D(ole
, float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3515 FOP_COND_D(ule
, float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3516 /* NOTE: the comma operator will make "cond" to eval to false,
3517 * but float64_unordered() is still called. */
3518 FOP_COND_D(sf
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3519 FOP_COND_D(ngle
,float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
))
3520 FOP_COND_D(seq
, float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3521 FOP_COND_D(ngl
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3522 FOP_COND_D(lt
, float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3523 FOP_COND_D(nge
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3524 FOP_COND_D(le
, float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3525 FOP_COND_D(ngt
, float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
) || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
))
3527 #define FOP_COND_S(op, cond) \
3528 void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3529 uint32_t fst1, int cc) \
3533 update_fcr31(env, GETPC()); \
3535 SET_FP_COND(cc, env->active_fpu); \
3537 CLEAR_FP_COND(cc, env->active_fpu); \
3539 void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3540 uint32_t fst1, int cc) \
3543 fst0 = float32_abs(fst0); \
3544 fst1 = float32_abs(fst1); \
3546 update_fcr31(env, GETPC()); \
3548 SET_FP_COND(cc, env->active_fpu); \
3550 CLEAR_FP_COND(cc, env->active_fpu); \
3553 /* NOTE: the comma operator will make "cond" to eval to false,
3554 * but float32_unordered_quiet() is still called. */
3555 FOP_COND_S(f
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3556 FOP_COND_S(un
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
))
3557 FOP_COND_S(eq
, float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3558 FOP_COND_S(ueq
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3559 FOP_COND_S(olt
, float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3560 FOP_COND_S(ult
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3561 FOP_COND_S(ole
, float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3562 FOP_COND_S(ule
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3563 /* NOTE: the comma operator will make "cond" to eval to false,
3564 * but float32_unordered() is still called. */
3565 FOP_COND_S(sf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3566 FOP_COND_S(ngle
,float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
))
3567 FOP_COND_S(seq
, float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3568 FOP_COND_S(ngl
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3569 FOP_COND_S(lt
, float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3570 FOP_COND_S(nge
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3571 FOP_COND_S(le
, float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3572 FOP_COND_S(ngt
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
))
3574 #define FOP_COND_PS(op, condl, condh) \
3575 void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3576 uint64_t fdt1, int cc) \
3578 uint32_t fst0, fsth0, fst1, fsth1; \
3580 fst0 = fdt0 & 0XFFFFFFFF; \
3581 fsth0 = fdt0 >> 32; \
3582 fst1 = fdt1 & 0XFFFFFFFF; \
3583 fsth1 = fdt1 >> 32; \
3586 update_fcr31(env, GETPC()); \
3588 SET_FP_COND(cc, env->active_fpu); \
3590 CLEAR_FP_COND(cc, env->active_fpu); \
3592 SET_FP_COND(cc + 1, env->active_fpu); \
3594 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3596 void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3597 uint64_t fdt1, int cc) \
3599 uint32_t fst0, fsth0, fst1, fsth1; \
3601 fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3602 fsth0 = float32_abs(fdt0 >> 32); \
3603 fst1 = float32_abs(fdt1 & 0XFFFFFFFF); \
3604 fsth1 = float32_abs(fdt1 >> 32); \
3607 update_fcr31(env, GETPC()); \
3609 SET_FP_COND(cc, env->active_fpu); \
3611 CLEAR_FP_COND(cc, env->active_fpu); \
3613 SET_FP_COND(cc + 1, env->active_fpu); \
3615 CLEAR_FP_COND(cc + 1, env->active_fpu); \
3618 /* NOTE: the comma operator will make "cond" to eval to false,
3619 * but float32_unordered_quiet() is still called. */
3620 FOP_COND_PS(f
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0),
3621 (float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
), 0))
3622 FOP_COND_PS(un
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
),
3623 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
))
3624 FOP_COND_PS(eq
, float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3625 float32_eq_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3626 FOP_COND_PS(ueq
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3627 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_eq_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3628 FOP_COND_PS(olt
, float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3629 float32_lt_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3630 FOP_COND_PS(ult
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3631 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_lt_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3632 FOP_COND_PS(ole
, float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3633 float32_le_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3634 FOP_COND_PS(ule
, float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3635 float32_unordered_quiet(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_le_quiet(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3636 /* NOTE: the comma operator will make "cond" to eval to false,
3637 * but float32_unordered() is still called. */
3638 FOP_COND_PS(sf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0),
3639 (float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
), 0))
3640 FOP_COND_PS(ngle
,float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
),
3641 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
))
3642 FOP_COND_PS(seq
, float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3643 float32_eq(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3644 FOP_COND_PS(ngl
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3645 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_eq(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3646 FOP_COND_PS(lt
, float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3647 float32_lt(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3648 FOP_COND_PS(nge
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3649 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_lt(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3650 FOP_COND_PS(le
, float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3651 float32_le(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3652 FOP_COND_PS(ngt
, float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
) || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
),
3653 float32_unordered(fsth1
, fsth0
, &env
->active_fpu
.fp_status
) || float32_le(fsth0
, fsth1
, &env
->active_fpu
.fp_status
))
3655 /* R6 compare operations */
3656 #define FOP_CONDN_D(op, cond) \
3657 uint64_t helper_r6_cmp_d_ ## op(CPUMIPSState * env, uint64_t fdt0, \
3662 update_fcr31(env, GETPC()); \
3670 /* NOTE: the comma operator will make "cond" to eval to false,
3671 * but float64_unordered_quiet() is still called. */
3672 FOP_CONDN_D(af
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3673 FOP_CONDN_D(un
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)))
3674 FOP_CONDN_D(eq
, (float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3675 FOP_CONDN_D(ueq
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3676 || float64_eq_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3677 FOP_CONDN_D(lt
, (float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3678 FOP_CONDN_D(ult
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3679 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3680 FOP_CONDN_D(le
, (float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3681 FOP_CONDN_D(ule
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3682 || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3683 /* NOTE: the comma operator will make "cond" to eval to false,
3684 * but float64_unordered() is still called. */
3685 FOP_CONDN_D(saf
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
), 0))
3686 FOP_CONDN_D(sun
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)))
3687 FOP_CONDN_D(seq
, (float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3688 FOP_CONDN_D(sueq
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3689 || float64_eq(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3690 FOP_CONDN_D(slt
, (float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3691 FOP_CONDN_D(sult
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3692 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3693 FOP_CONDN_D(sle
, (float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3694 FOP_CONDN_D(sule
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3695 || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3696 FOP_CONDN_D(or, (float64_le_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3697 || float64_le_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3698 FOP_CONDN_D(une
, (float64_unordered_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3699 || float64_lt_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3700 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3701 FOP_CONDN_D(ne
, (float64_lt_quiet(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3702 || float64_lt_quiet(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3703 FOP_CONDN_D(sor
, (float64_le(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3704 || float64_le(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3705 FOP_CONDN_D(sune
, (float64_unordered(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3706 || float64_lt(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3707 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3708 FOP_CONDN_D(sne
, (float64_lt(fdt1
, fdt0
, &env
->active_fpu
.fp_status
)
3709 || float64_lt(fdt0
, fdt1
, &env
->active_fpu
.fp_status
)))
3711 #define FOP_CONDN_S(op, cond) \
3712 uint32_t helper_r6_cmp_s_ ## op(CPUMIPSState * env, uint32_t fst0, \
3717 update_fcr31(env, GETPC()); \
3725 /* NOTE: the comma operator will make "cond" to eval to false,
3726 * but float32_unordered_quiet() is still called. */
3727 FOP_CONDN_S(af
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3728 FOP_CONDN_S(un
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)))
3729 FOP_CONDN_S(eq
, (float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3730 FOP_CONDN_S(ueq
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3731 || float32_eq_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3732 FOP_CONDN_S(lt
, (float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3733 FOP_CONDN_S(ult
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3734 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3735 FOP_CONDN_S(le
, (float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3736 FOP_CONDN_S(ule
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3737 || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3738 /* NOTE: the comma operator will make "cond" to eval to false,
3739 * but float32_unordered() is still called. */
3740 FOP_CONDN_S(saf
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
), 0))
3741 FOP_CONDN_S(sun
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)))
3742 FOP_CONDN_S(seq
, (float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3743 FOP_CONDN_S(sueq
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3744 || float32_eq(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3745 FOP_CONDN_S(slt
, (float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3746 FOP_CONDN_S(sult
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3747 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3748 FOP_CONDN_S(sle
, (float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3749 FOP_CONDN_S(sule
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3750 || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3751 FOP_CONDN_S(or, (float32_le_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3752 || float32_le_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3753 FOP_CONDN_S(une
, (float32_unordered_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3754 || float32_lt_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3755 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3756 FOP_CONDN_S(ne
, (float32_lt_quiet(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3757 || float32_lt_quiet(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3758 FOP_CONDN_S(sor
, (float32_le(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3759 || float32_le(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3760 FOP_CONDN_S(sune
, (float32_unordered(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3761 || float32_lt(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3762 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3763 FOP_CONDN_S(sne
, (float32_lt(fst1
, fst0
, &env
->active_fpu
.fp_status
)
3764 || float32_lt(fst0
, fst1
, &env
->active_fpu
.fp_status
)))
3767 /* Data format min and max values */
3768 #define DF_BITS(df) (1 << ((df) + 3))
3770 /* Element-by-element access macros */
3771 #define DF_ELEMENTS(df) (MSA_WRLEN / DF_BITS(df))
3773 #if !defined(CONFIG_USER_ONLY)
3774 #define MEMOP_IDX(DF) \
3775 TCGMemOpIdx oi = make_memop_idx(MO_TE | DF | MO_UNALN, \
3776 cpu_mmu_index(env, false));
3778 #define MEMOP_IDX(DF)
3781 #define MSA_LD_DF(DF, TYPE, LD_INSN, ...) \
3782 void helper_msa_ld_ ## TYPE(CPUMIPSState *env, uint32_t wd, \
3783 target_ulong addr) \
3785 wr_t *pwd = &(env->active_fpu.fpr[wd].wr); \
3789 for (i = 0; i < DF_ELEMENTS(DF); i++) { \
3790 wx.TYPE[i] = LD_INSN(env, addr + (i << DF), ##__VA_ARGS__); \
3792 memcpy(pwd, &wx, sizeof(wr_t)); \
3795 #if !defined(CONFIG_USER_ONLY)
3796 MSA_LD_DF(DF_BYTE
, b
, helper_ret_ldub_mmu
, oi
, GETRA())
3797 MSA_LD_DF(DF_HALF
, h
, helper_ret_lduw_mmu
, oi
, GETRA())
3798 MSA_LD_DF(DF_WORD
, w
, helper_ret_ldul_mmu
, oi
, GETRA())
3799 MSA_LD_DF(DF_DOUBLE
, d
, helper_ret_ldq_mmu
, oi
, GETRA())
3801 MSA_LD_DF(DF_BYTE
, b
, cpu_ldub_data
)
3802 MSA_LD_DF(DF_HALF
, h
, cpu_lduw_data
)
3803 MSA_LD_DF(DF_WORD
, w
, cpu_ldl_data
)
3804 MSA_LD_DF(DF_DOUBLE
, d
, cpu_ldq_data
)
3807 #define MSA_PAGESPAN(x) \
3808 ((((x) & ~TARGET_PAGE_MASK) + MSA_WRLEN/8 - 1) >= TARGET_PAGE_SIZE)
3810 static inline void ensure_writable_pages(CPUMIPSState
*env
,
3815 #if !defined(CONFIG_USER_ONLY)
3816 target_ulong page_addr
;
3817 if (unlikely(MSA_PAGESPAN(addr
))) {
3819 probe_write(env
, addr
, mmu_idx
, retaddr
);
3821 page_addr
= (addr
& TARGET_PAGE_MASK
) + TARGET_PAGE_SIZE
;
3822 probe_write(env
, page_addr
, mmu_idx
, retaddr
);
3827 #define MSA_ST_DF(DF, TYPE, ST_INSN, ...) \
3828 void helper_msa_st_ ## TYPE(CPUMIPSState *env, uint32_t wd, \
3829 target_ulong addr) \
3831 wr_t *pwd = &(env->active_fpu.fpr[wd].wr); \
3832 int mmu_idx = cpu_mmu_index(env, false); \
3835 ensure_writable_pages(env, addr, mmu_idx, GETRA()); \
3836 for (i = 0; i < DF_ELEMENTS(DF); i++) { \
3837 ST_INSN(env, addr + (i << DF), pwd->TYPE[i], ##__VA_ARGS__); \
3841 #if !defined(CONFIG_USER_ONLY)
3842 MSA_ST_DF(DF_BYTE
, b
, helper_ret_stb_mmu
, oi
, GETRA())
3843 MSA_ST_DF(DF_HALF
, h
, helper_ret_stw_mmu
, oi
, GETRA())
3844 MSA_ST_DF(DF_WORD
, w
, helper_ret_stl_mmu
, oi
, GETRA())
3845 MSA_ST_DF(DF_DOUBLE
, d
, helper_ret_stq_mmu
, oi
, GETRA())
3847 MSA_ST_DF(DF_BYTE
, b
, cpu_stb_data
)
3848 MSA_ST_DF(DF_HALF
, h
, cpu_stw_data
)
3849 MSA_ST_DF(DF_WORD
, w
, cpu_stl_data
)
3850 MSA_ST_DF(DF_DOUBLE
, d
, cpu_stq_data
)
3853 void helper_cache(CPUMIPSState
*env
, target_ulong addr
, uint32_t op
)
3855 #ifndef CONFIG_USER_ONLY
3856 target_ulong index
= addr
& 0x1fffffff;
3858 /* Index Store Tag */
3859 memory_region_dispatch_write(env
->itc_tag
, index
, env
->CP0_TagLo
,
3860 8, MEMTXATTRS_UNSPECIFIED
);
3861 } else if (op
== 5) {
3862 /* Index Load Tag */
3863 memory_region_dispatch_read(env
->itc_tag
, index
, &env
->CP0_TagLo
,
3864 8, MEMTXATTRS_UNSPECIFIED
);