blob: 2ef6633f472e8693815c9192a5e4419989d1865d [file] [log] [blame]
bellard6af0bf92005-07-02 14:58:51 +00001/*
2 * MIPS emulation helpers for qemu.
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard6af0bf92005-07-02 14:58:51 +00004 * Copyright (c) 2004-2005 Jocelyn Mayer
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellard6af0bf92005-07-02 14:58:51 +000018 */
ths2d0e9442007-04-02 15:54:05 +000019#include <stdlib.h>
Blue Swirl3e457172011-07-13 12:44:15 +000020#include "cpu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010021#include "qemu/host-utils.h"
ths05f778c2007-10-27 13:05:54 +000022
pbrooka7812ae2008-11-17 14:43:54 +000023#include "helper.h"
Paolo Bonzini83dae092010-06-29 09:58:49 +020024
Blue Swirl3e457172011-07-13 12:44:15 +000025#if !defined(CONFIG_USER_ONLY)
Paolo Bonzini022c62c2012-12-17 18:19:49 +010026#include "exec/softmmu_exec.h"
Blue Swirl3e457172011-07-13 12:44:15 +000027#endif /* !defined(CONFIG_USER_ONLY) */
28
Paolo Bonzini83dae092010-06-29 09:58:49 +020029#ifndef CONFIG_USER_ONLY
Andreas Färber7db13fa2012-03-14 01:38:22 +010030static inline void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global);
Paolo Bonzini83dae092010-06-29 09:58:49 +020031#endif
32
bellard6af0bf92005-07-02 14:58:51 +000033/*****************************************************************************/
34/* Exceptions processing helpers */
bellard6af0bf92005-07-02 14:58:51 +000035
Aurelien Jarno5f7319c2012-10-28 19:34:03 +010036static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env,
37 uint32_t exception,
38 int error_code,
39 uintptr_t pc)
bellard6af0bf92005-07-02 14:58:51 +000040{
陳韋任 (Wei-Ren Chen)0f0b9392012-12-11 00:15:55 +080041 if (exception < EXCP_SC) {
aliguori93fcfe32009-01-15 22:34:14 +000042 qemu_log("%s: %d %d\n", __func__, exception, error_code);
陳韋任 (Wei-Ren Chen)0f0b9392012-12-11 00:15:55 +080043 }
bellard6af0bf92005-07-02 14:58:51 +000044 env->exception_index = exception;
45 env->error_code = error_code;
Aurelien Jarno5f7319c2012-10-28 19:34:03 +010046
47 if (pc) {
48 /* now we have a real cpu fault */
Blue Swirla8a826a2012-12-04 20:16:07 +000049 cpu_restore_state(env, pc);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +010050 }
51
Blue Swirl1162c042011-05-14 12:52:35 +000052 cpu_loop_exit(env);
bellard6af0bf92005-07-02 14:58:51 +000053}
54
Aurelien Jarno5f7319c2012-10-28 19:34:03 +010055static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env,
56 uint32_t exception,
57 uintptr_t pc)
58{
59 do_raise_exception_err(env, exception, 0, pc);
60}
61
62void helper_raise_exception_err(CPUMIPSState *env, uint32_t exception,
63 int error_code)
64{
65 do_raise_exception_err(env, exception, error_code, 0);
66}
67
Blue Swirl895c2d02012-09-02 14:52:59 +000068void helper_raise_exception(CPUMIPSState *env, uint32_t exception)
bellard6af0bf92005-07-02 14:58:51 +000069{
Aurelien Jarno5f7319c2012-10-28 19:34:03 +010070 do_raise_exception(env, exception, 0);
bellard6af0bf92005-07-02 14:58:51 +000071}
72
Aurelien Jarno0ae43042009-11-30 15:32:47 +010073#if defined(CONFIG_USER_ONLY)
74#define HELPER_LD(name, insn, type) \
Blue Swirl895c2d02012-09-02 14:52:59 +000075static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
76 int mem_idx) \
Aurelien Jarno0ae43042009-11-30 15:32:47 +010077{ \
78 return (type) insn##_raw(addr); \
79}
80#else
81#define HELPER_LD(name, insn, type) \
Blue Swirl895c2d02012-09-02 14:52:59 +000082static inline type do_##name(CPUMIPSState *env, target_ulong addr, \
83 int mem_idx) \
Aurelien Jarno0ae43042009-11-30 15:32:47 +010084{ \
85 switch (mem_idx) \
86 { \
Blue Swirl895c2d02012-09-02 14:52:59 +000087 case 0: return (type) cpu_##insn##_kernel(env, addr); break; \
88 case 1: return (type) cpu_##insn##_super(env, addr); break; \
Aurelien Jarno0ae43042009-11-30 15:32:47 +010089 default: \
Blue Swirl895c2d02012-09-02 14:52:59 +000090 case 2: return (type) cpu_##insn##_user(env, addr); break; \
Aurelien Jarno0ae43042009-11-30 15:32:47 +010091 } \
92}
93#endif
94HELPER_LD(lbu, ldub, uint8_t)
95HELPER_LD(lw, ldl, int32_t)
96#ifdef TARGET_MIPS64
97HELPER_LD(ld, ldq, int64_t)
98#endif
99#undef HELPER_LD
100
101#if defined(CONFIG_USER_ONLY)
102#define HELPER_ST(name, insn, type) \
Blue Swirl895c2d02012-09-02 14:52:59 +0000103static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
104 type val, int mem_idx) \
Aurelien Jarno0ae43042009-11-30 15:32:47 +0100105{ \
106 insn##_raw(addr, val); \
107}
108#else
109#define HELPER_ST(name, insn, type) \
Blue Swirl895c2d02012-09-02 14:52:59 +0000110static inline void do_##name(CPUMIPSState *env, target_ulong addr, \
111 type val, int mem_idx) \
Aurelien Jarno0ae43042009-11-30 15:32:47 +0100112{ \
113 switch (mem_idx) \
114 { \
Blue Swirl895c2d02012-09-02 14:52:59 +0000115 case 0: cpu_##insn##_kernel(env, addr, val); break; \
116 case 1: cpu_##insn##_super(env, addr, val); break; \
Aurelien Jarno0ae43042009-11-30 15:32:47 +0100117 default: \
Blue Swirl895c2d02012-09-02 14:52:59 +0000118 case 2: cpu_##insn##_user(env, addr, val); break; \
Aurelien Jarno0ae43042009-11-30 15:32:47 +0100119 } \
120}
121#endif
122HELPER_ST(sb, stb, uint8_t)
123HELPER_ST(sw, stl, uint32_t)
124#ifdef TARGET_MIPS64
125HELPER_ST(sd, stq, uint64_t)
126#endif
127#undef HELPER_ST
128
aurel32d9bea112009-04-15 14:41:44 +0000129target_ulong helper_clo (target_ulong arg1)
ths30898802008-05-21 02:04:15 +0000130{
aurel32d9bea112009-04-15 14:41:44 +0000131 return clo32(arg1);
ths30898802008-05-21 02:04:15 +0000132}
133
aurel32d9bea112009-04-15 14:41:44 +0000134target_ulong helper_clz (target_ulong arg1)
ths30898802008-05-21 02:04:15 +0000135{
aurel32d9bea112009-04-15 14:41:44 +0000136 return clz32(arg1);
ths30898802008-05-21 02:04:15 +0000137}
138
thsd26bc212007-11-08 18:05:37 +0000139#if defined(TARGET_MIPS64)
aurel32d9bea112009-04-15 14:41:44 +0000140target_ulong helper_dclo (target_ulong arg1)
thsc570fd12006-12-21 01:19:56 +0000141{
aurel32d9bea112009-04-15 14:41:44 +0000142 return clo64(arg1);
thsc570fd12006-12-21 01:19:56 +0000143}
144
aurel32d9bea112009-04-15 14:41:44 +0000145target_ulong helper_dclz (target_ulong arg1)
thsc570fd12006-12-21 01:19:56 +0000146{
aurel32d9bea112009-04-15 14:41:44 +0000147 return clz64(arg1);
thsc570fd12006-12-21 01:19:56 +0000148}
thsd26bc212007-11-08 18:05:37 +0000149#endif /* TARGET_MIPS64 */
thsc570fd12006-12-21 01:19:56 +0000150
bellard6af0bf92005-07-02 14:58:51 +0000151/* 64 bits arithmetic for 32 bits hosts */
Blue Swirl895c2d02012-09-02 14:52:59 +0000152static inline uint64_t get_HILO(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +0000153{
thsb5dc7732008-06-27 10:02:35 +0000154 return ((uint64_t)(env->active_tc.HI[0]) << 32) | (uint32_t)env->active_tc.LO[0];
bellard6af0bf92005-07-02 14:58:51 +0000155}
156
Blue Swirl895c2d02012-09-02 14:52:59 +0000157static inline target_ulong set_HIT0_LO(CPUMIPSState *env, uint64_t HILO)
thse9c71dd2007-12-25 20:46:56 +0000158{
Stefan Weil6fc97fa2012-03-04 08:21:39 +0100159 target_ulong tmp;
thsb5dc7732008-06-27 10:02:35 +0000160 env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
Stefan Weil6fc97fa2012-03-04 08:21:39 +0100161 tmp = env->active_tc.HI[0] = (int32_t)(HILO >> 32);
162 return tmp;
thse9c71dd2007-12-25 20:46:56 +0000163}
164
Blue Swirl895c2d02012-09-02 14:52:59 +0000165static inline target_ulong set_HI_LOT0(CPUMIPSState *env, uint64_t HILO)
thse9c71dd2007-12-25 20:46:56 +0000166{
Stefan Weil6fc97fa2012-03-04 08:21:39 +0100167 target_ulong tmp = env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
thsb5dc7732008-06-27 10:02:35 +0000168 env->active_tc.HI[0] = (int32_t)(HILO >> 32);
Stefan Weil6fc97fa2012-03-04 08:21:39 +0100169 return tmp;
thse9c71dd2007-12-25 20:46:56 +0000170}
171
thse9c71dd2007-12-25 20:46:56 +0000172/* Multiplication variants of the vr54xx. */
Blue Swirl895c2d02012-09-02 14:52:59 +0000173target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1,
174 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000175{
Blue Swirl895c2d02012-09-02 14:52:59 +0000176 return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 *
177 (int64_t)(int32_t)arg2));
thse9c71dd2007-12-25 20:46:56 +0000178}
179
Blue Swirl895c2d02012-09-02 14:52:59 +0000180target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1,
181 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000182{
Blue Swirl895c2d02012-09-02 14:52:59 +0000183 return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 *
184 (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000185}
186
Blue Swirl895c2d02012-09-02 14:52:59 +0000187target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1,
188 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000189{
Blue Swirl895c2d02012-09-02 14:52:59 +0000190 return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
191 (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000192}
193
Blue Swirl895c2d02012-09-02 14:52:59 +0000194target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1,
195 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000196{
Blue Swirl895c2d02012-09-02 14:52:59 +0000197 return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
198 (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000199}
200
Blue Swirl895c2d02012-09-02 14:52:59 +0000201target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1,
202 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000203{
Blue Swirl895c2d02012-09-02 14:52:59 +0000204 return set_HI_LOT0(env, (uint64_t)get_HILO(env) +
205 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000206}
207
Blue Swirl895c2d02012-09-02 14:52:59 +0000208target_ulong helper_macchiu(CPUMIPSState *env, target_ulong arg1,
209 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000210{
Blue Swirl895c2d02012-09-02 14:52:59 +0000211 return set_HIT0_LO(env, (uint64_t)get_HILO(env) +
212 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000213}
214
Blue Swirl895c2d02012-09-02 14:52:59 +0000215target_ulong helper_msac(CPUMIPSState *env, target_ulong arg1,
216 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000217{
Blue Swirl895c2d02012-09-02 14:52:59 +0000218 return set_HI_LOT0(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
219 (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000220}
221
Blue Swirl895c2d02012-09-02 14:52:59 +0000222target_ulong helper_msachi(CPUMIPSState *env, target_ulong arg1,
223 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000224{
Blue Swirl895c2d02012-09-02 14:52:59 +0000225 return set_HIT0_LO(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
226 (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000227}
228
Blue Swirl895c2d02012-09-02 14:52:59 +0000229target_ulong helper_msacu(CPUMIPSState *env, target_ulong arg1,
230 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000231{
Blue Swirl895c2d02012-09-02 14:52:59 +0000232 return set_HI_LOT0(env, (uint64_t)get_HILO(env) -
233 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000234}
235
Blue Swirl895c2d02012-09-02 14:52:59 +0000236target_ulong helper_msachiu(CPUMIPSState *env, target_ulong arg1,
237 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000238{
Blue Swirl895c2d02012-09-02 14:52:59 +0000239 return set_HIT0_LO(env, (uint64_t)get_HILO(env) -
240 (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000241}
242
Blue Swirl895c2d02012-09-02 14:52:59 +0000243target_ulong helper_mulhi(CPUMIPSState *env, target_ulong arg1,
244 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000245{
Blue Swirl895c2d02012-09-02 14:52:59 +0000246 return set_HIT0_LO(env, (int64_t)(int32_t)arg1 * (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000247}
248
Blue Swirl895c2d02012-09-02 14:52:59 +0000249target_ulong helper_mulhiu(CPUMIPSState *env, target_ulong arg1,
250 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000251{
Blue Swirl895c2d02012-09-02 14:52:59 +0000252 return set_HIT0_LO(env, (uint64_t)(uint32_t)arg1 *
253 (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000254}
255
Blue Swirl895c2d02012-09-02 14:52:59 +0000256target_ulong helper_mulshi(CPUMIPSState *env, target_ulong arg1,
257 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000258{
Blue Swirl895c2d02012-09-02 14:52:59 +0000259 return set_HIT0_LO(env, 0 - (int64_t)(int32_t)arg1 *
260 (int64_t)(int32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000261}
262
Blue Swirl895c2d02012-09-02 14:52:59 +0000263target_ulong helper_mulshiu(CPUMIPSState *env, target_ulong arg1,
264 target_ulong arg2)
thse9c71dd2007-12-25 20:46:56 +0000265{
Blue Swirl895c2d02012-09-02 14:52:59 +0000266 return set_HIT0_LO(env, 0 - (uint64_t)(uint32_t)arg1 *
267 (uint64_t)(uint32_t)arg2);
thse9c71dd2007-12-25 20:46:56 +0000268}
bellard6af0bf92005-07-02 14:58:51 +0000269
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100270#ifndef CONFIG_USER_ONLY
Aurelien Jarnoc36bbb22010-02-06 17:02:45 +0100271
Avi Kivitya8170e52012-10-23 12:30:10 +0200272static inline hwaddr do_translate_address(CPUMIPSState *env,
Blue Swirl895c2d02012-09-02 14:52:59 +0000273 target_ulong address,
274 int rw)
Aurelien Jarnoc36bbb22010-02-06 17:02:45 +0100275{
Avi Kivitya8170e52012-10-23 12:30:10 +0200276 hwaddr lladdr;
Aurelien Jarnoc36bbb22010-02-06 17:02:45 +0100277
278 lladdr = cpu_mips_translate_address(env, address, rw);
279
280 if (lladdr == -1LL) {
Blue Swirl1162c042011-05-14 12:52:35 +0000281 cpu_loop_exit(env);
Aurelien Jarnoc36bbb22010-02-06 17:02:45 +0100282 } else {
283 return lladdr;
284 }
285}
286
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100287#define HELPER_LD_ATOMIC(name, insn) \
Blue Swirl895c2d02012-09-02 14:52:59 +0000288target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100289{ \
Blue Swirl895c2d02012-09-02 14:52:59 +0000290 env->lladdr = do_translate_address(env, arg, 0); \
291 env->llval = do_##insn(env, arg, mem_idx); \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100292 return env->llval; \
293}
294HELPER_LD_ATOMIC(ll, lw)
295#ifdef TARGET_MIPS64
296HELPER_LD_ATOMIC(lld, ld)
297#endif
298#undef HELPER_LD_ATOMIC
299
300#define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask) \
Blue Swirl895c2d02012-09-02 14:52:59 +0000301target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1, \
302 target_ulong arg2, int mem_idx) \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100303{ \
304 target_long tmp; \
305 \
306 if (arg2 & almask) { \
307 env->CP0_BadVAddr = arg2; \
Blue Swirl895c2d02012-09-02 14:52:59 +0000308 helper_raise_exception(env, EXCP_AdES); \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100309 } \
Blue Swirl895c2d02012-09-02 14:52:59 +0000310 if (do_translate_address(env, arg2, 1) == env->lladdr) { \
311 tmp = do_##ld_insn(env, arg2, mem_idx); \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100312 if (tmp == env->llval) { \
Blue Swirl895c2d02012-09-02 14:52:59 +0000313 do_##st_insn(env, arg2, arg1, mem_idx); \
Aurelien Jarnoe7139c42009-11-30 15:39:54 +0100314 return 1; \
315 } \
316 } \
317 return 0; \
318}
319HELPER_ST_ATOMIC(sc, lw, sw, 0x3)
320#ifdef TARGET_MIPS64
321HELPER_ST_ATOMIC(scd, ld, sd, 0x7)
322#endif
323#undef HELPER_ST_ATOMIC
324#endif
325
thsc8c22272008-06-20 15:12:14 +0000326#ifdef TARGET_WORDS_BIGENDIAN
327#define GET_LMASK(v) ((v) & 3)
328#define GET_OFFSET(addr, offset) (addr + (offset))
329#else
330#define GET_LMASK(v) (((v) & 3) ^ 3)
331#define GET_OFFSET(addr, offset) (addr - (offset))
332#endif
333
Blue Swirl895c2d02012-09-02 14:52:59 +0000334void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
335 int mem_idx)
thsc8c22272008-06-20 15:12:14 +0000336{
Blue Swirl895c2d02012-09-02 14:52:59 +0000337 do_sb(env, arg2, (uint8_t)(arg1 >> 24), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000338
aurel32d9bea112009-04-15 14:41:44 +0000339 if (GET_LMASK(arg2) <= 2)
Blue Swirl895c2d02012-09-02 14:52:59 +0000340 do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 16), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000341
aurel32d9bea112009-04-15 14:41:44 +0000342 if (GET_LMASK(arg2) <= 1)
Blue Swirl895c2d02012-09-02 14:52:59 +0000343 do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 8), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000344
aurel32d9bea112009-04-15 14:41:44 +0000345 if (GET_LMASK(arg2) == 0)
Blue Swirl895c2d02012-09-02 14:52:59 +0000346 do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)arg1, mem_idx);
thsc8c22272008-06-20 15:12:14 +0000347}
348
Blue Swirl895c2d02012-09-02 14:52:59 +0000349void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
350 int mem_idx)
thsc8c22272008-06-20 15:12:14 +0000351{
Blue Swirl895c2d02012-09-02 14:52:59 +0000352 do_sb(env, arg2, (uint8_t)arg1, mem_idx);
thsc8c22272008-06-20 15:12:14 +0000353
aurel32d9bea112009-04-15 14:41:44 +0000354 if (GET_LMASK(arg2) >= 1)
Blue Swirl895c2d02012-09-02 14:52:59 +0000355 do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000356
aurel32d9bea112009-04-15 14:41:44 +0000357 if (GET_LMASK(arg2) >= 2)
Blue Swirl895c2d02012-09-02 14:52:59 +0000358 do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000359
aurel32d9bea112009-04-15 14:41:44 +0000360 if (GET_LMASK(arg2) == 3)
Blue Swirl895c2d02012-09-02 14:52:59 +0000361 do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000362}
363
364#if defined(TARGET_MIPS64)
365/* "half" load and stores. We must do the memory access inline,
366 or fault handling won't work. */
367
368#ifdef TARGET_WORDS_BIGENDIAN
369#define GET_LMASK64(v) ((v) & 7)
370#else
371#define GET_LMASK64(v) (((v) & 7) ^ 7)
372#endif
373
Blue Swirl895c2d02012-09-02 14:52:59 +0000374void helper_sdl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
375 int mem_idx)
thsc8c22272008-06-20 15:12:14 +0000376{
Blue Swirl895c2d02012-09-02 14:52:59 +0000377 do_sb(env, arg2, (uint8_t)(arg1 >> 56), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000378
aurel32d9bea112009-04-15 14:41:44 +0000379 if (GET_LMASK64(arg2) <= 6)
Blue Swirl895c2d02012-09-02 14:52:59 +0000380 do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 48), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000381
aurel32d9bea112009-04-15 14:41:44 +0000382 if (GET_LMASK64(arg2) <= 5)
Blue Swirl895c2d02012-09-02 14:52:59 +0000383 do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 40), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000384
aurel32d9bea112009-04-15 14:41:44 +0000385 if (GET_LMASK64(arg2) <= 4)
Blue Swirl895c2d02012-09-02 14:52:59 +0000386 do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)(arg1 >> 32), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000387
aurel32d9bea112009-04-15 14:41:44 +0000388 if (GET_LMASK64(arg2) <= 3)
Blue Swirl895c2d02012-09-02 14:52:59 +0000389 do_sb(env, GET_OFFSET(arg2, 4), (uint8_t)(arg1 >> 24), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000390
aurel32d9bea112009-04-15 14:41:44 +0000391 if (GET_LMASK64(arg2) <= 2)
Blue Swirl895c2d02012-09-02 14:52:59 +0000392 do_sb(env, GET_OFFSET(arg2, 5), (uint8_t)(arg1 >> 16), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000393
aurel32d9bea112009-04-15 14:41:44 +0000394 if (GET_LMASK64(arg2) <= 1)
Blue Swirl895c2d02012-09-02 14:52:59 +0000395 do_sb(env, GET_OFFSET(arg2, 6), (uint8_t)(arg1 >> 8), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000396
aurel32d9bea112009-04-15 14:41:44 +0000397 if (GET_LMASK64(arg2) <= 0)
Blue Swirl895c2d02012-09-02 14:52:59 +0000398 do_sb(env, GET_OFFSET(arg2, 7), (uint8_t)arg1, mem_idx);
thsc8c22272008-06-20 15:12:14 +0000399}
400
Blue Swirl895c2d02012-09-02 14:52:59 +0000401void helper_sdr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
402 int mem_idx)
thsc8c22272008-06-20 15:12:14 +0000403{
Blue Swirl895c2d02012-09-02 14:52:59 +0000404 do_sb(env, arg2, (uint8_t)arg1, mem_idx);
thsc8c22272008-06-20 15:12:14 +0000405
aurel32d9bea112009-04-15 14:41:44 +0000406 if (GET_LMASK64(arg2) >= 1)
Blue Swirl895c2d02012-09-02 14:52:59 +0000407 do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000408
aurel32d9bea112009-04-15 14:41:44 +0000409 if (GET_LMASK64(arg2) >= 2)
Blue Swirl895c2d02012-09-02 14:52:59 +0000410 do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000411
aurel32d9bea112009-04-15 14:41:44 +0000412 if (GET_LMASK64(arg2) >= 3)
Blue Swirl895c2d02012-09-02 14:52:59 +0000413 do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000414
aurel32d9bea112009-04-15 14:41:44 +0000415 if (GET_LMASK64(arg2) >= 4)
Blue Swirl895c2d02012-09-02 14:52:59 +0000416 do_sb(env, GET_OFFSET(arg2, -4), (uint8_t)(arg1 >> 32), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000417
aurel32d9bea112009-04-15 14:41:44 +0000418 if (GET_LMASK64(arg2) >= 5)
Blue Swirl895c2d02012-09-02 14:52:59 +0000419 do_sb(env, GET_OFFSET(arg2, -5), (uint8_t)(arg1 >> 40), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000420
aurel32d9bea112009-04-15 14:41:44 +0000421 if (GET_LMASK64(arg2) >= 6)
Blue Swirl895c2d02012-09-02 14:52:59 +0000422 do_sb(env, GET_OFFSET(arg2, -6), (uint8_t)(arg1 >> 48), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000423
aurel32d9bea112009-04-15 14:41:44 +0000424 if (GET_LMASK64(arg2) == 7)
Blue Swirl895c2d02012-09-02 14:52:59 +0000425 do_sb(env, GET_OFFSET(arg2, -7), (uint8_t)(arg1 >> 56), mem_idx);
thsc8c22272008-06-20 15:12:14 +0000426}
427#endif /* TARGET_MIPS64 */
428
Nathan Froyd3c824102010-06-08 13:29:59 -0700429static const int multiple_regs[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };
430
Blue Swirl895c2d02012-09-02 14:52:59 +0000431void helper_lwm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
432 uint32_t mem_idx)
Nathan Froyd3c824102010-06-08 13:29:59 -0700433{
434 target_ulong base_reglist = reglist & 0xf;
435 target_ulong do_r31 = reglist & 0x10;
Nathan Froyd3c824102010-06-08 13:29:59 -0700436
437 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
438 target_ulong i;
439
440 for (i = 0; i < base_reglist; i++) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200441 env->active_tc.gpr[multiple_regs[i]] =
442 (target_long)do_lw(env, addr, mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700443 addr += 4;
444 }
445 }
446
447 if (do_r31) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200448 env->active_tc.gpr[31] = (target_long)do_lw(env, addr, mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700449 }
450}
451
Blue Swirl895c2d02012-09-02 14:52:59 +0000452void helper_swm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
453 uint32_t mem_idx)
Nathan Froyd3c824102010-06-08 13:29:59 -0700454{
455 target_ulong base_reglist = reglist & 0xf;
456 target_ulong do_r31 = reglist & 0x10;
Nathan Froyd3c824102010-06-08 13:29:59 -0700457
458 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
459 target_ulong i;
460
461 for (i = 0; i < base_reglist; i++) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200462 do_sw(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700463 addr += 4;
464 }
465 }
466
467 if (do_r31) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200468 do_sw(env, addr, env->active_tc.gpr[31], mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700469 }
470}
471
472#if defined(TARGET_MIPS64)
Blue Swirl895c2d02012-09-02 14:52:59 +0000473void helper_ldm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
474 uint32_t mem_idx)
Nathan Froyd3c824102010-06-08 13:29:59 -0700475{
476 target_ulong base_reglist = reglist & 0xf;
477 target_ulong do_r31 = reglist & 0x10;
Nathan Froyd3c824102010-06-08 13:29:59 -0700478
479 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
480 target_ulong i;
481
482 for (i = 0; i < base_reglist; i++) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200483 env->active_tc.gpr[multiple_regs[i]] = do_ld(env, addr, mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700484 addr += 8;
485 }
486 }
487
488 if (do_r31) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200489 env->active_tc.gpr[31] = do_ld(env, addr, mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700490 }
491}
492
Blue Swirl895c2d02012-09-02 14:52:59 +0000493void helper_sdm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
494 uint32_t mem_idx)
Nathan Froyd3c824102010-06-08 13:29:59 -0700495{
496 target_ulong base_reglist = reglist & 0xf;
497 target_ulong do_r31 = reglist & 0x10;
Nathan Froyd3c824102010-06-08 13:29:59 -0700498
499 if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
500 target_ulong i;
501
502 for (i = 0; i < base_reglist; i++) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200503 do_sd(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700504 addr += 8;
505 }
506 }
507
508 if (do_r31) {
Aurelien Jarno18bba4d2012-10-09 21:53:20 +0200509 do_sd(env, addr, env->active_tc.gpr[31], mem_idx);
Nathan Froyd3c824102010-06-08 13:29:59 -0700510 }
511}
512#endif
513
ths0eaef5a2008-07-23 16:14:22 +0000514#ifndef CONFIG_USER_ONLY
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200515/* SMP helpers. */
Andreas Färberb35d77d2012-10-12 00:56:35 +0200516static bool mips_vpe_is_wfi(MIPSCPU *c)
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200517{
Andreas Färber259186a2013-01-17 18:51:17 +0100518 CPUState *cpu = CPU(c);
Andreas Färberb35d77d2012-10-12 00:56:35 +0200519 CPUMIPSState *env = &c->env;
520
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200521 /* If the VPE is halted but otherwise active, it means it's waiting for
522 an interrupt. */
Andreas Färber259186a2013-01-17 18:51:17 +0100523 return cpu->halted && mips_vpe_active(env);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200524}
525
Andreas Färberc3affe52013-01-18 15:03:43 +0100526static inline void mips_vpe_wake(MIPSCPU *c)
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200527{
528 /* Dont set ->halted = 0 directly, let it be done via cpu_has_work
529 because there might be other conditions that state that c should
530 be sleeping. */
Andreas Färberc3affe52013-01-18 15:03:43 +0100531 cpu_interrupt(CPU(c), CPU_INTERRUPT_WAKE);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200532}
533
Andreas Färber6f4d6b02012-10-12 00:56:37 +0200534static inline void mips_vpe_sleep(MIPSCPU *cpu)
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200535{
Andreas Färber259186a2013-01-17 18:51:17 +0100536 CPUState *cs = CPU(cpu);
Andreas Färber6f4d6b02012-10-12 00:56:37 +0200537
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200538 /* The VPE was shut off, really go to bed.
539 Reset any old _WAKE requests. */
Andreas Färber259186a2013-01-17 18:51:17 +0100540 cs->halted = 1;
Andreas Färberd8ed8872013-01-17 22:30:20 +0100541 cpu_reset_interrupt(cs, CPU_INTERRUPT_WAKE);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200542}
543
Andreas Färber135dd632012-10-12 00:56:34 +0200544static inline void mips_tc_wake(MIPSCPU *cpu, int tc)
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200545{
Andreas Färber135dd632012-10-12 00:56:34 +0200546 CPUMIPSState *c = &cpu->env;
547
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200548 /* FIXME: TC reschedule. */
Andreas Färberb35d77d2012-10-12 00:56:35 +0200549 if (mips_vpe_active(c) && !mips_vpe_is_wfi(cpu)) {
Andreas Färberc3affe52013-01-18 15:03:43 +0100550 mips_vpe_wake(cpu);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200551 }
552}
553
Andreas Färberc6679e92012-10-12 00:56:36 +0200554static inline void mips_tc_sleep(MIPSCPU *cpu, int tc)
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200555{
Andreas Färberc6679e92012-10-12 00:56:36 +0200556 CPUMIPSState *c = &cpu->env;
557
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200558 /* FIXME: TC reschedule. */
559 if (!mips_vpe_active(c)) {
Andreas Färber6f4d6b02012-10-12 00:56:37 +0200560 mips_vpe_sleep(cpu);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +0200561 }
562}
563
Andreas Färber66afd1a2012-12-17 20:36:30 +0100564/**
565 * mips_cpu_map_tc:
566 * @env: CPU from which mapping is performed.
567 * @tc: Should point to an int with the value of the global TC index.
568 *
569 * This function will transform @tc into a local index within the
570 * returned #CPUMIPSState.
571 */
572/* FIXME: This code assumes that all VPEs have the same number of TCs,
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200573 which depends on runtime setup. Can probably be fixed by
Andreas Färber7db13fa2012-03-14 01:38:22 +0100574 walking the list of CPUMIPSStates. */
Blue Swirl895c2d02012-09-02 14:52:59 +0000575static CPUMIPSState *mips_cpu_map_tc(CPUMIPSState *env, int *tc)
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200576{
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100577 MIPSCPU *cpu;
Andreas Färberce3960e2012-12-17 03:27:07 +0100578 CPUState *cs;
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100579 CPUState *other_cs;
Andreas Färberce3960e2012-12-17 03:27:07 +0100580 int vpe_idx;
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200581 int tc_idx = *tc;
582
583 if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))) {
584 /* Not allowed to address other CPUs. */
585 *tc = env->current_tc;
586 return env;
587 }
588
Andreas Färberce3960e2012-12-17 03:27:07 +0100589 cs = CPU(mips_env_get_cpu(env));
590 vpe_idx = tc_idx / cs->nr_threads;
591 *tc = tc_idx % cs->nr_threads;
Andreas Färber38d8f5c2012-12-17 19:47:15 +0100592 other_cs = qemu_get_cpu(vpe_idx);
593 if (other_cs == NULL) {
594 return env;
595 }
596 cpu = MIPS_CPU(other_cs);
597 return &cpu->env;
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200598}
599
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200600/* The per VPE CP0_Status register shares some fields with the per TC
601 CP0_TCStatus registers. These fields are wired to the same registers,
602 so changes to either of them should be reflected on both registers.
603
604 Also, EntryHi shares the bottom 8 bit ASID with TCStauts.
605
606 These helper call synchronizes the regs for a given cpu. */
607
608/* Called for updates to CP0_Status. */
Blue Swirl895c2d02012-09-02 14:52:59 +0000609static void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu, int tc)
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200610{
611 int32_t tcstatus, *tcst;
612 uint32_t v = cpu->CP0_Status;
613 uint32_t cu, mx, asid, ksu;
614 uint32_t mask = ((1 << CP0TCSt_TCU3)
615 | (1 << CP0TCSt_TCU2)
616 | (1 << CP0TCSt_TCU1)
617 | (1 << CP0TCSt_TCU0)
618 | (1 << CP0TCSt_TMX)
619 | (3 << CP0TCSt_TKSU)
620 | (0xff << CP0TCSt_TASID));
621
622 cu = (v >> CP0St_CU0) & 0xf;
623 mx = (v >> CP0St_MX) & 0x1;
624 ksu = (v >> CP0St_KSU) & 0x3;
625 asid = env->CP0_EntryHi & 0xff;
626
627 tcstatus = cu << CP0TCSt_TCU0;
628 tcstatus |= mx << CP0TCSt_TMX;
629 tcstatus |= ksu << CP0TCSt_TKSU;
630 tcstatus |= asid;
631
632 if (tc == cpu->current_tc) {
633 tcst = &cpu->active_tc.CP0_TCStatus;
634 } else {
635 tcst = &cpu->tcs[tc].CP0_TCStatus;
636 }
637
638 *tcst &= ~mask;
639 *tcst |= tcstatus;
640 compute_hflags(cpu);
641}
642
643/* Called for updates to CP0_TCStatus. */
Blue Swirl895c2d02012-09-02 14:52:59 +0000644static void sync_c0_tcstatus(CPUMIPSState *cpu, int tc,
645 target_ulong v)
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200646{
647 uint32_t status;
648 uint32_t tcu, tmx, tasid, tksu;
649 uint32_t mask = ((1 << CP0St_CU3)
650 | (1 << CP0St_CU2)
651 | (1 << CP0St_CU1)
652 | (1 << CP0St_CU0)
653 | (1 << CP0St_MX)
654 | (3 << CP0St_KSU));
655
656 tcu = (v >> CP0TCSt_TCU0) & 0xf;
657 tmx = (v >> CP0TCSt_TMX) & 0x1;
658 tasid = v & 0xff;
659 tksu = (v >> CP0TCSt_TKSU) & 0x3;
660
661 status = tcu << CP0St_CU0;
662 status |= tmx << CP0St_MX;
663 status |= tksu << CP0St_KSU;
664
665 cpu->CP0_Status &= ~mask;
666 cpu->CP0_Status |= status;
667
668 /* Sync the TASID with EntryHi. */
669 cpu->CP0_EntryHi &= ~0xff;
670 cpu->CP0_EntryHi = tasid;
671
672 compute_hflags(cpu);
673}
674
675/* Called for updates to CP0_EntryHi. */
Andreas Färber7db13fa2012-03-14 01:38:22 +0100676static void sync_c0_entryhi(CPUMIPSState *cpu, int tc)
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200677{
678 int32_t *tcst;
679 uint32_t asid, v = cpu->CP0_EntryHi;
680
681 asid = v & 0xff;
682
683 if (tc == cpu->current_tc) {
684 tcst = &cpu->active_tc.CP0_TCStatus;
685 } else {
686 tcst = &cpu->tcs[tc].CP0_TCStatus;
687 }
688
689 *tcst &= ~0xff;
690 *tcst |= asid;
691}
692
bellard6af0bf92005-07-02 14:58:51 +0000693/* CP0 helpers */
Blue Swirl895c2d02012-09-02 14:52:59 +0000694target_ulong helper_mfc0_mvpcontrol(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000695{
thsbe24bb42008-06-23 12:57:09 +0000696 return env->mvp->CP0_MVPControl;
thsf1aa6322008-06-09 07:13:38 +0000697}
698
Blue Swirl895c2d02012-09-02 14:52:59 +0000699target_ulong helper_mfc0_mvpconf0(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000700{
thsbe24bb42008-06-23 12:57:09 +0000701 return env->mvp->CP0_MVPConf0;
thsf1aa6322008-06-09 07:13:38 +0000702}
703
Blue Swirl895c2d02012-09-02 14:52:59 +0000704target_ulong helper_mfc0_mvpconf1(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000705{
thsbe24bb42008-06-23 12:57:09 +0000706 return env->mvp->CP0_MVPConf1;
thsf1aa6322008-06-09 07:13:38 +0000707}
708
Blue Swirl895c2d02012-09-02 14:52:59 +0000709target_ulong helper_mfc0_random(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +0000710{
thsbe24bb42008-06-23 12:57:09 +0000711 return (int32_t)cpu_mips_get_random(env);
ths873eb012006-12-06 17:59:07 +0000712}
bellard6af0bf92005-07-02 14:58:51 +0000713
Blue Swirl895c2d02012-09-02 14:52:59 +0000714target_ulong helper_mfc0_tcstatus(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000715{
thsb5dc7732008-06-27 10:02:35 +0000716 return env->active_tc.CP0_TCStatus;
thsf1aa6322008-06-09 07:13:38 +0000717}
718
Blue Swirl895c2d02012-09-02 14:52:59 +0000719target_ulong helper_mftc0_tcstatus(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000720{
721 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000722 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000723
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200724 if (other_tc == other->current_tc)
725 return other->active_tc.CP0_TCStatus;
thsb5dc7732008-06-27 10:02:35 +0000726 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200727 return other->tcs[other_tc].CP0_TCStatus;
thsf1aa6322008-06-09 07:13:38 +0000728}
729
Blue Swirl895c2d02012-09-02 14:52:59 +0000730target_ulong helper_mfc0_tcbind(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000731{
thsb5dc7732008-06-27 10:02:35 +0000732 return env->active_tc.CP0_TCBind;
thsf1aa6322008-06-09 07:13:38 +0000733}
734
Blue Swirl895c2d02012-09-02 14:52:59 +0000735target_ulong helper_mftc0_tcbind(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000736{
737 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000738 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000739
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200740 if (other_tc == other->current_tc)
741 return other->active_tc.CP0_TCBind;
thsb5dc7732008-06-27 10:02:35 +0000742 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200743 return other->tcs[other_tc].CP0_TCBind;
thsf1aa6322008-06-09 07:13:38 +0000744}
745
Blue Swirl895c2d02012-09-02 14:52:59 +0000746target_ulong helper_mfc0_tcrestart(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000747{
thsb5dc7732008-06-27 10:02:35 +0000748 return env->active_tc.PC;
thsf1aa6322008-06-09 07:13:38 +0000749}
750
Blue Swirl895c2d02012-09-02 14:52:59 +0000751target_ulong helper_mftc0_tcrestart(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000752{
753 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000754 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000755
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200756 if (other_tc == other->current_tc)
757 return other->active_tc.PC;
thsb5dc7732008-06-27 10:02:35 +0000758 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200759 return other->tcs[other_tc].PC;
thsf1aa6322008-06-09 07:13:38 +0000760}
761
Blue Swirl895c2d02012-09-02 14:52:59 +0000762target_ulong helper_mfc0_tchalt(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000763{
thsb5dc7732008-06-27 10:02:35 +0000764 return env->active_tc.CP0_TCHalt;
thsf1aa6322008-06-09 07:13:38 +0000765}
766
Blue Swirl895c2d02012-09-02 14:52:59 +0000767target_ulong helper_mftc0_tchalt(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000768{
769 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000770 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000771
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200772 if (other_tc == other->current_tc)
773 return other->active_tc.CP0_TCHalt;
thsb5dc7732008-06-27 10:02:35 +0000774 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200775 return other->tcs[other_tc].CP0_TCHalt;
thsf1aa6322008-06-09 07:13:38 +0000776}
777
Blue Swirl895c2d02012-09-02 14:52:59 +0000778target_ulong helper_mfc0_tccontext(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000779{
thsb5dc7732008-06-27 10:02:35 +0000780 return env->active_tc.CP0_TCContext;
thsf1aa6322008-06-09 07:13:38 +0000781}
782
Blue Swirl895c2d02012-09-02 14:52:59 +0000783target_ulong helper_mftc0_tccontext(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000784{
785 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000786 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000787
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200788 if (other_tc == other->current_tc)
789 return other->active_tc.CP0_TCContext;
thsb5dc7732008-06-27 10:02:35 +0000790 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200791 return other->tcs[other_tc].CP0_TCContext;
thsf1aa6322008-06-09 07:13:38 +0000792}
793
Blue Swirl895c2d02012-09-02 14:52:59 +0000794target_ulong helper_mfc0_tcschedule(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000795{
thsb5dc7732008-06-27 10:02:35 +0000796 return env->active_tc.CP0_TCSchedule;
thsf1aa6322008-06-09 07:13:38 +0000797}
798
Blue Swirl895c2d02012-09-02 14:52:59 +0000799target_ulong helper_mftc0_tcschedule(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000800{
801 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000802 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000803
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200804 if (other_tc == other->current_tc)
805 return other->active_tc.CP0_TCSchedule;
thsb5dc7732008-06-27 10:02:35 +0000806 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200807 return other->tcs[other_tc].CP0_TCSchedule;
thsf1aa6322008-06-09 07:13:38 +0000808}
809
Blue Swirl895c2d02012-09-02 14:52:59 +0000810target_ulong helper_mfc0_tcschefback(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000811{
thsb5dc7732008-06-27 10:02:35 +0000812 return env->active_tc.CP0_TCScheFBack;
thsf1aa6322008-06-09 07:13:38 +0000813}
814
Blue Swirl895c2d02012-09-02 14:52:59 +0000815target_ulong helper_mftc0_tcschefback(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000816{
817 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000818 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000819
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200820 if (other_tc == other->current_tc)
821 return other->active_tc.CP0_TCScheFBack;
thsb5dc7732008-06-27 10:02:35 +0000822 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200823 return other->tcs[other_tc].CP0_TCScheFBack;
thsf1aa6322008-06-09 07:13:38 +0000824}
825
Blue Swirl895c2d02012-09-02 14:52:59 +0000826target_ulong helper_mfc0_count(CPUMIPSState *env)
ths873eb012006-12-06 17:59:07 +0000827{
thsbe24bb42008-06-23 12:57:09 +0000828 return (int32_t)cpu_mips_get_count(env);
bellard6af0bf92005-07-02 14:58:51 +0000829}
830
Blue Swirl895c2d02012-09-02 14:52:59 +0000831target_ulong helper_mftc0_entryhi(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000832{
833 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000834 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +0000835
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200836 return other->CP0_EntryHi;
thsf1aa6322008-06-09 07:13:38 +0000837}
838
Blue Swirl895c2d02012-09-02 14:52:59 +0000839target_ulong helper_mftc0_cause(CPUMIPSState *env)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +0200840{
841 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
842 int32_t tccause;
Blue Swirl895c2d02012-09-02 14:52:59 +0000843 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +0200844
845 if (other_tc == other->current_tc) {
846 tccause = other->CP0_Cause;
847 } else {
848 tccause = other->CP0_Cause;
849 }
850
851 return tccause;
852}
853
Blue Swirl895c2d02012-09-02 14:52:59 +0000854target_ulong helper_mftc0_status(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000855{
856 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000857 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsb5dc7732008-06-27 10:02:35 +0000858
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +0200859 return other->CP0_Status;
thsf1aa6322008-06-09 07:13:38 +0000860}
861
Blue Swirl895c2d02012-09-02 14:52:59 +0000862target_ulong helper_mfc0_lladdr(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000863{
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100864 return (int32_t)(env->lladdr >> env->CP0_LLAddr_shift);
thsf1aa6322008-06-09 07:13:38 +0000865}
866
Blue Swirl895c2d02012-09-02 14:52:59 +0000867target_ulong helper_mfc0_watchlo(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +0000868{
thsbe24bb42008-06-23 12:57:09 +0000869 return (int32_t)env->CP0_WatchLo[sel];
thsf1aa6322008-06-09 07:13:38 +0000870}
871
Blue Swirl895c2d02012-09-02 14:52:59 +0000872target_ulong helper_mfc0_watchhi(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +0000873{
thsbe24bb42008-06-23 12:57:09 +0000874 return env->CP0_WatchHi[sel];
thsf1aa6322008-06-09 07:13:38 +0000875}
876
Blue Swirl895c2d02012-09-02 14:52:59 +0000877target_ulong helper_mfc0_debug(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000878{
ths1a3fd9c2008-06-24 21:58:35 +0000879 target_ulong t0 = env->CP0_Debug;
thsf1aa6322008-06-09 07:13:38 +0000880 if (env->hflags & MIPS_HFLAG_DM)
thsbe24bb42008-06-23 12:57:09 +0000881 t0 |= 1 << CP0DB_DM;
882
883 return t0;
thsf1aa6322008-06-09 07:13:38 +0000884}
885
Blue Swirl895c2d02012-09-02 14:52:59 +0000886target_ulong helper_mftc0_debug(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000887{
888 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
thsb5dc7732008-06-27 10:02:35 +0000889 int32_t tcstatus;
Blue Swirl895c2d02012-09-02 14:52:59 +0000890 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsb5dc7732008-06-27 10:02:35 +0000891
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200892 if (other_tc == other->current_tc)
893 tcstatus = other->active_tc.CP0_Debug_tcstatus;
thsb5dc7732008-06-27 10:02:35 +0000894 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200895 tcstatus = other->tcs[other_tc].CP0_Debug_tcstatus;
thsf1aa6322008-06-09 07:13:38 +0000896
897 /* XXX: Might be wrong, check with EJTAG spec. */
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +0200898 return (other->CP0_Debug & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
thsb5dc7732008-06-27 10:02:35 +0000899 (tcstatus & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
thsf1aa6322008-06-09 07:13:38 +0000900}
901
902#if defined(TARGET_MIPS64)
Blue Swirl895c2d02012-09-02 14:52:59 +0000903target_ulong helper_dmfc0_tcrestart(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000904{
thsb5dc7732008-06-27 10:02:35 +0000905 return env->active_tc.PC;
thsf1aa6322008-06-09 07:13:38 +0000906}
907
Blue Swirl895c2d02012-09-02 14:52:59 +0000908target_ulong helper_dmfc0_tchalt(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000909{
thsb5dc7732008-06-27 10:02:35 +0000910 return env->active_tc.CP0_TCHalt;
thsf1aa6322008-06-09 07:13:38 +0000911}
912
Blue Swirl895c2d02012-09-02 14:52:59 +0000913target_ulong helper_dmfc0_tccontext(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000914{
thsb5dc7732008-06-27 10:02:35 +0000915 return env->active_tc.CP0_TCContext;
thsf1aa6322008-06-09 07:13:38 +0000916}
917
Blue Swirl895c2d02012-09-02 14:52:59 +0000918target_ulong helper_dmfc0_tcschedule(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000919{
thsb5dc7732008-06-27 10:02:35 +0000920 return env->active_tc.CP0_TCSchedule;
thsf1aa6322008-06-09 07:13:38 +0000921}
922
Blue Swirl895c2d02012-09-02 14:52:59 +0000923target_ulong helper_dmfc0_tcschefback(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000924{
thsb5dc7732008-06-27 10:02:35 +0000925 return env->active_tc.CP0_TCScheFBack;
thsf1aa6322008-06-09 07:13:38 +0000926}
927
Blue Swirl895c2d02012-09-02 14:52:59 +0000928target_ulong helper_dmfc0_lladdr(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +0000929{
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +0100930 return env->lladdr >> env->CP0_LLAddr_shift;
thsf1aa6322008-06-09 07:13:38 +0000931}
932
Blue Swirl895c2d02012-09-02 14:52:59 +0000933target_ulong helper_dmfc0_watchlo(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +0000934{
thsbe24bb42008-06-23 12:57:09 +0000935 return env->CP0_WatchLo[sel];
thsf1aa6322008-06-09 07:13:38 +0000936}
937#endif /* TARGET_MIPS64 */
938
Blue Swirl895c2d02012-09-02 14:52:59 +0000939void helper_mtc0_index(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +0000940{
941 int num = 1;
942 unsigned int tmp = env->tlb->nb_tlb;
943
944 do {
945 tmp >>= 1;
946 num <<= 1;
947 } while (tmp);
aurel32d9bea112009-04-15 14:41:44 +0000948 env->CP0_Index = (env->CP0_Index & 0x80000000) | (arg1 & (num - 1));
thsf1aa6322008-06-09 07:13:38 +0000949}
950
Blue Swirl895c2d02012-09-02 14:52:59 +0000951void helper_mtc0_mvpcontrol(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +0000952{
953 uint32_t mask = 0;
954 uint32_t newval;
955
956 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))
957 mask |= (1 << CP0MVPCo_CPA) | (1 << CP0MVPCo_VPC) |
958 (1 << CP0MVPCo_EVP);
959 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
960 mask |= (1 << CP0MVPCo_STLB);
aurel32d9bea112009-04-15 14:41:44 +0000961 newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +0000962
963 // TODO: Enable/disable shared TLB, enable/disable VPEs.
964
965 env->mvp->CP0_MVPControl = newval;
966}
967
Blue Swirl895c2d02012-09-02 14:52:59 +0000968void helper_mtc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +0000969{
970 uint32_t mask;
971 uint32_t newval;
972
973 mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
974 (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
aurel32d9bea112009-04-15 14:41:44 +0000975 newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +0000976
977 /* Yield scheduler intercept not implemented. */
978 /* Gating storage scheduler intercept not implemented. */
979
980 // TODO: Enable/disable TCs.
981
982 env->CP0_VPEControl = newval;
983}
984
Blue Swirl895c2d02012-09-02 14:52:59 +0000985void helper_mttc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +0200986{
987 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +0000988 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +0200989 uint32_t mask;
990 uint32_t newval;
991
992 mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
993 (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
994 newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask);
995
996 /* TODO: Enable/disable TCs. */
997
998 other->CP0_VPEControl = newval;
999}
1000
Blue Swirl895c2d02012-09-02 14:52:59 +00001001target_ulong helper_mftc0_vpecontrol(CPUMIPSState *env)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001002{
1003 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001004 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001005 /* FIXME: Mask away return zero on read bits. */
1006 return other->CP0_VPEControl;
1007}
1008
Blue Swirl895c2d02012-09-02 14:52:59 +00001009target_ulong helper_mftc0_vpeconf0(CPUMIPSState *env)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001010{
1011 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001012 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001013
1014 return other->CP0_VPEConf0;
1015}
1016
Blue Swirl895c2d02012-09-02 14:52:59 +00001017void helper_mtc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001018{
1019 uint32_t mask = 0;
1020 uint32_t newval;
1021
1022 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP)) {
1023 if (env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA))
1024 mask |= (0xff << CP0VPEC0_XTC);
1025 mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
1026 }
aurel32d9bea112009-04-15 14:41:44 +00001027 newval = (env->CP0_VPEConf0 & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +00001028
1029 // TODO: TC exclusive handling due to ERL/EXL.
1030
1031 env->CP0_VPEConf0 = newval;
1032}
1033
Blue Swirl895c2d02012-09-02 14:52:59 +00001034void helper_mttc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001035{
1036 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001037 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001038 uint32_t mask = 0;
1039 uint32_t newval;
1040
1041 mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
1042 newval = (other->CP0_VPEConf0 & ~mask) | (arg1 & mask);
1043
1044 /* TODO: TC exclusive handling due to ERL/EXL. */
1045 other->CP0_VPEConf0 = newval;
1046}
1047
Blue Swirl895c2d02012-09-02 14:52:59 +00001048void helper_mtc0_vpeconf1(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001049{
1050 uint32_t mask = 0;
1051 uint32_t newval;
1052
1053 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1054 mask |= (0xff << CP0VPEC1_NCX) | (0xff << CP0VPEC1_NCP2) |
1055 (0xff << CP0VPEC1_NCP1);
aurel32d9bea112009-04-15 14:41:44 +00001056 newval = (env->CP0_VPEConf1 & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +00001057
1058 /* UDI not implemented. */
1059 /* CP2 not implemented. */
1060
1061 // TODO: Handle FPU (CP1) binding.
1062
1063 env->CP0_VPEConf1 = newval;
1064}
1065
Blue Swirl895c2d02012-09-02 14:52:59 +00001066void helper_mtc0_yqmask(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001067{
1068 /* Yield qualifier inputs not implemented. */
1069 env->CP0_YQMask = 0x00000000;
1070}
1071
Blue Swirl895c2d02012-09-02 14:52:59 +00001072void helper_mtc0_vpeopt(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001073{
aurel32d9bea112009-04-15 14:41:44 +00001074 env->CP0_VPEOpt = arg1 & 0x0000ffff;
thsf1aa6322008-06-09 07:13:38 +00001075}
1076
Blue Swirl895c2d02012-09-02 14:52:59 +00001077void helper_mtc0_entrylo0(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001078{
1079 /* Large physaddr (PABITS) not implemented */
1080 /* 1k pages not implemented */
aurel32d9bea112009-04-15 14:41:44 +00001081 env->CP0_EntryLo0 = arg1 & 0x3FFFFFFF;
thsf1aa6322008-06-09 07:13:38 +00001082}
1083
Blue Swirl895c2d02012-09-02 14:52:59 +00001084void helper_mtc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001085{
1086 uint32_t mask = env->CP0_TCStatus_rw_bitmask;
1087 uint32_t newval;
1088
aurel32d9bea112009-04-15 14:41:44 +00001089 newval = (env->active_tc.CP0_TCStatus & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +00001090
thsb5dc7732008-06-27 10:02:35 +00001091 env->active_tc.CP0_TCStatus = newval;
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001092 sync_c0_tcstatus(env, env->current_tc, newval);
thsf1aa6322008-06-09 07:13:38 +00001093}
1094
Blue Swirl895c2d02012-09-02 14:52:59 +00001095void helper_mttc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001096{
1097 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001098 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001099
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001100 if (other_tc == other->current_tc)
1101 other->active_tc.CP0_TCStatus = arg1;
thsb5dc7732008-06-27 10:02:35 +00001102 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001103 other->tcs[other_tc].CP0_TCStatus = arg1;
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001104 sync_c0_tcstatus(other, other_tc, arg1);
thsf1aa6322008-06-09 07:13:38 +00001105}
1106
Blue Swirl895c2d02012-09-02 14:52:59 +00001107void helper_mtc0_tcbind(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001108{
1109 uint32_t mask = (1 << CP0TCBd_TBE);
1110 uint32_t newval;
1111
1112 if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1113 mask |= (1 << CP0TCBd_CurVPE);
aurel32d9bea112009-04-15 14:41:44 +00001114 newval = (env->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
thsb5dc7732008-06-27 10:02:35 +00001115 env->active_tc.CP0_TCBind = newval;
thsf1aa6322008-06-09 07:13:38 +00001116}
1117
Blue Swirl895c2d02012-09-02 14:52:59 +00001118void helper_mttc0_tcbind(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001119{
1120 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1121 uint32_t mask = (1 << CP0TCBd_TBE);
1122 uint32_t newval;
Blue Swirl895c2d02012-09-02 14:52:59 +00001123 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001124
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001125 if (other->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
thsf1aa6322008-06-09 07:13:38 +00001126 mask |= (1 << CP0TCBd_CurVPE);
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001127 if (other_tc == other->current_tc) {
1128 newval = (other->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
1129 other->active_tc.CP0_TCBind = newval;
thsb5dc7732008-06-27 10:02:35 +00001130 } else {
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001131 newval = (other->tcs[other_tc].CP0_TCBind & ~mask) | (arg1 & mask);
1132 other->tcs[other_tc].CP0_TCBind = newval;
thsb5dc7732008-06-27 10:02:35 +00001133 }
thsf1aa6322008-06-09 07:13:38 +00001134}
1135
Blue Swirl895c2d02012-09-02 14:52:59 +00001136void helper_mtc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001137{
aurel32d9bea112009-04-15 14:41:44 +00001138 env->active_tc.PC = arg1;
thsb5dc7732008-06-27 10:02:35 +00001139 env->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
Aurelien Jarno5499b6f2009-11-22 13:08:14 +01001140 env->lladdr = 0ULL;
thsf1aa6322008-06-09 07:13:38 +00001141 /* MIPS16 not implemented. */
1142}
1143
Blue Swirl895c2d02012-09-02 14:52:59 +00001144void helper_mttc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001145{
1146 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001147 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001148
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001149 if (other_tc == other->current_tc) {
1150 other->active_tc.PC = arg1;
1151 other->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1152 other->lladdr = 0ULL;
thsb5dc7732008-06-27 10:02:35 +00001153 /* MIPS16 not implemented. */
1154 } else {
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001155 other->tcs[other_tc].PC = arg1;
1156 other->tcs[other_tc].CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1157 other->lladdr = 0ULL;
thsb5dc7732008-06-27 10:02:35 +00001158 /* MIPS16 not implemented. */
1159 }
thsf1aa6322008-06-09 07:13:38 +00001160}
1161
Blue Swirl895c2d02012-09-02 14:52:59 +00001162void helper_mtc0_tchalt(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001163{
Andreas Färber135dd632012-10-12 00:56:34 +02001164 MIPSCPU *cpu = mips_env_get_cpu(env);
1165
aurel32d9bea112009-04-15 14:41:44 +00001166 env->active_tc.CP0_TCHalt = arg1 & 0x1;
thsf1aa6322008-06-09 07:13:38 +00001167
1168 // TODO: Halt TC / Restart (if allocated+active) TC.
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001169 if (env->active_tc.CP0_TCHalt & 1) {
Andreas Färberc6679e92012-10-12 00:56:36 +02001170 mips_tc_sleep(cpu, env->current_tc);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001171 } else {
Andreas Färber135dd632012-10-12 00:56:34 +02001172 mips_tc_wake(cpu, env->current_tc);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001173 }
thsf1aa6322008-06-09 07:13:38 +00001174}
1175
Blue Swirl895c2d02012-09-02 14:52:59 +00001176void helper_mttc0_tchalt(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001177{
1178 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001179 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Andreas Färber135dd632012-10-12 00:56:34 +02001180 MIPSCPU *other_cpu = mips_env_get_cpu(other);
thsf1aa6322008-06-09 07:13:38 +00001181
1182 // TODO: Halt TC / Restart (if allocated+active) TC.
1183
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001184 if (other_tc == other->current_tc)
1185 other->active_tc.CP0_TCHalt = arg1;
thsb5dc7732008-06-27 10:02:35 +00001186 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001187 other->tcs[other_tc].CP0_TCHalt = arg1;
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001188
1189 if (arg1 & 1) {
Andreas Färberc6679e92012-10-12 00:56:36 +02001190 mips_tc_sleep(other_cpu, other_tc);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001191 } else {
Andreas Färber135dd632012-10-12 00:56:34 +02001192 mips_tc_wake(other_cpu, other_tc);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001193 }
thsf1aa6322008-06-09 07:13:38 +00001194}
1195
Blue Swirl895c2d02012-09-02 14:52:59 +00001196void helper_mtc0_tccontext(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001197{
aurel32d9bea112009-04-15 14:41:44 +00001198 env->active_tc.CP0_TCContext = arg1;
thsf1aa6322008-06-09 07:13:38 +00001199}
1200
Blue Swirl895c2d02012-09-02 14:52:59 +00001201void helper_mttc0_tccontext(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001202{
1203 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001204 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001205
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001206 if (other_tc == other->current_tc)
1207 other->active_tc.CP0_TCContext = arg1;
thsb5dc7732008-06-27 10:02:35 +00001208 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001209 other->tcs[other_tc].CP0_TCContext = arg1;
thsf1aa6322008-06-09 07:13:38 +00001210}
1211
Blue Swirl895c2d02012-09-02 14:52:59 +00001212void helper_mtc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001213{
aurel32d9bea112009-04-15 14:41:44 +00001214 env->active_tc.CP0_TCSchedule = arg1;
thsf1aa6322008-06-09 07:13:38 +00001215}
1216
Blue Swirl895c2d02012-09-02 14:52:59 +00001217void helper_mttc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001218{
1219 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001220 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001221
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001222 if (other_tc == other->current_tc)
1223 other->active_tc.CP0_TCSchedule = arg1;
thsb5dc7732008-06-27 10:02:35 +00001224 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001225 other->tcs[other_tc].CP0_TCSchedule = arg1;
thsf1aa6322008-06-09 07:13:38 +00001226}
1227
Blue Swirl895c2d02012-09-02 14:52:59 +00001228void helper_mtc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001229{
aurel32d9bea112009-04-15 14:41:44 +00001230 env->active_tc.CP0_TCScheFBack = arg1;
thsf1aa6322008-06-09 07:13:38 +00001231}
1232
Blue Swirl895c2d02012-09-02 14:52:59 +00001233void helper_mttc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001234{
1235 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001236 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001237
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001238 if (other_tc == other->current_tc)
1239 other->active_tc.CP0_TCScheFBack = arg1;
thsb5dc7732008-06-27 10:02:35 +00001240 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001241 other->tcs[other_tc].CP0_TCScheFBack = arg1;
thsf1aa6322008-06-09 07:13:38 +00001242}
1243
Blue Swirl895c2d02012-09-02 14:52:59 +00001244void helper_mtc0_entrylo1(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001245{
1246 /* Large physaddr (PABITS) not implemented */
1247 /* 1k pages not implemented */
aurel32d9bea112009-04-15 14:41:44 +00001248 env->CP0_EntryLo1 = arg1 & 0x3FFFFFFF;
thsf1aa6322008-06-09 07:13:38 +00001249}
1250
Blue Swirl895c2d02012-09-02 14:52:59 +00001251void helper_mtc0_context(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001252{
aurel32d9bea112009-04-15 14:41:44 +00001253 env->CP0_Context = (env->CP0_Context & 0x007FFFFF) | (arg1 & ~0x007FFFFF);
thsf1aa6322008-06-09 07:13:38 +00001254}
1255
Blue Swirl895c2d02012-09-02 14:52:59 +00001256void helper_mtc0_pagemask(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001257{
1258 /* 1k pages not implemented */
aurel32d9bea112009-04-15 14:41:44 +00001259 env->CP0_PageMask = arg1 & (0x1FFFFFFF & (TARGET_PAGE_MASK << 1));
thsf1aa6322008-06-09 07:13:38 +00001260}
1261
Blue Swirl895c2d02012-09-02 14:52:59 +00001262void helper_mtc0_pagegrain(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001263{
1264 /* SmartMIPS not implemented */
1265 /* Large physaddr (PABITS) not implemented */
1266 /* 1k pages not implemented */
1267 env->CP0_PageGrain = 0;
1268}
1269
Blue Swirl895c2d02012-09-02 14:52:59 +00001270void helper_mtc0_wired(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001271{
aurel32d9bea112009-04-15 14:41:44 +00001272 env->CP0_Wired = arg1 % env->tlb->nb_tlb;
thsf1aa6322008-06-09 07:13:38 +00001273}
1274
Blue Swirl895c2d02012-09-02 14:52:59 +00001275void helper_mtc0_srsconf0(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001276{
aurel32d9bea112009-04-15 14:41:44 +00001277 env->CP0_SRSConf0 |= arg1 & env->CP0_SRSConf0_rw_bitmask;
thsf1aa6322008-06-09 07:13:38 +00001278}
1279
Blue Swirl895c2d02012-09-02 14:52:59 +00001280void helper_mtc0_srsconf1(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001281{
aurel32d9bea112009-04-15 14:41:44 +00001282 env->CP0_SRSConf1 |= arg1 & env->CP0_SRSConf1_rw_bitmask;
thsf1aa6322008-06-09 07:13:38 +00001283}
1284
Blue Swirl895c2d02012-09-02 14:52:59 +00001285void helper_mtc0_srsconf2(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001286{
aurel32d9bea112009-04-15 14:41:44 +00001287 env->CP0_SRSConf2 |= arg1 & env->CP0_SRSConf2_rw_bitmask;
thsf1aa6322008-06-09 07:13:38 +00001288}
1289
Blue Swirl895c2d02012-09-02 14:52:59 +00001290void helper_mtc0_srsconf3(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001291{
aurel32d9bea112009-04-15 14:41:44 +00001292 env->CP0_SRSConf3 |= arg1 & env->CP0_SRSConf3_rw_bitmask;
thsf1aa6322008-06-09 07:13:38 +00001293}
1294
Blue Swirl895c2d02012-09-02 14:52:59 +00001295void helper_mtc0_srsconf4(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001296{
aurel32d9bea112009-04-15 14:41:44 +00001297 env->CP0_SRSConf4 |= arg1 & env->CP0_SRSConf4_rw_bitmask;
thsf1aa6322008-06-09 07:13:38 +00001298}
1299
Blue Swirl895c2d02012-09-02 14:52:59 +00001300void helper_mtc0_hwrena(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001301{
aurel32d9bea112009-04-15 14:41:44 +00001302 env->CP0_HWREna = arg1 & 0x0000000F;
thsf1aa6322008-06-09 07:13:38 +00001303}
1304
Blue Swirl895c2d02012-09-02 14:52:59 +00001305void helper_mtc0_count(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001306{
aurel32d9bea112009-04-15 14:41:44 +00001307 cpu_mips_store_count(env, arg1);
thsf1aa6322008-06-09 07:13:38 +00001308}
1309
Blue Swirl895c2d02012-09-02 14:52:59 +00001310void helper_mtc0_entryhi(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001311{
1312 target_ulong old, val;
1313
1314 /* 1k pages not implemented */
aurel32d9bea112009-04-15 14:41:44 +00001315 val = arg1 & ((TARGET_PAGE_MASK << 1) | 0xFF);
thsf1aa6322008-06-09 07:13:38 +00001316#if defined(TARGET_MIPS64)
1317 val &= env->SEGMask;
1318#endif
1319 old = env->CP0_EntryHi;
1320 env->CP0_EntryHi = val;
1321 if (env->CP0_Config3 & (1 << CP0C3_MT)) {
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001322 sync_c0_entryhi(env, env->current_tc);
thsf1aa6322008-06-09 07:13:38 +00001323 }
1324 /* If the ASID changes, flush qemu's TLB. */
1325 if ((old & 0xFF) != (val & 0xFF))
1326 cpu_mips_tlb_flush(env, 1);
1327}
1328
Blue Swirl895c2d02012-09-02 14:52:59 +00001329void helper_mttc0_entryhi(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001330{
1331 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001332 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001333
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001334 other->CP0_EntryHi = arg1;
1335 sync_c0_entryhi(other, other_tc);
thsf1aa6322008-06-09 07:13:38 +00001336}
1337
Blue Swirl895c2d02012-09-02 14:52:59 +00001338void helper_mtc0_compare(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001339{
aurel32d9bea112009-04-15 14:41:44 +00001340 cpu_mips_store_compare(env, arg1);
thsf1aa6322008-06-09 07:13:38 +00001341}
1342
Blue Swirl895c2d02012-09-02 14:52:59 +00001343void helper_mtc0_status(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001344{
1345 uint32_t val, old;
1346 uint32_t mask = env->CP0_Status_rw_bitmask;
1347
aurel32d9bea112009-04-15 14:41:44 +00001348 val = arg1 & mask;
thsf1aa6322008-06-09 07:13:38 +00001349 old = env->CP0_Status;
1350 env->CP0_Status = (env->CP0_Status & ~mask) | val;
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001351 if (env->CP0_Config3 & (1 << CP0C3_MT)) {
Blue Swirl895c2d02012-09-02 14:52:59 +00001352 sync_c0_status(env, env, env->current_tc);
Edgar E. Iglesiasfe8dca82011-08-29 23:07:33 +02001353 } else {
1354 compute_hflags(env);
1355 }
1356
aurel32c01fccd2009-03-08 00:06:01 +00001357 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1358 qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x",
1359 old, old & env->CP0_Cause & CP0Ca_IP_mask,
1360 val, val & env->CP0_Cause & CP0Ca_IP_mask,
1361 env->CP0_Cause);
1362 switch (env->hflags & MIPS_HFLAG_KSU) {
1363 case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
1364 case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
1365 case MIPS_HFLAG_KM: qemu_log("\n"); break;
1366 default: cpu_abort(env, "Invalid MMU mode!\n"); break;
Aurelien Jarno31e31042009-11-14 13:10:00 +01001367 }
aurel32c01fccd2009-03-08 00:06:01 +00001368 }
thsf1aa6322008-06-09 07:13:38 +00001369}
1370
Blue Swirl895c2d02012-09-02 14:52:59 +00001371void helper_mttc0_status(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001372{
1373 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001374 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001375
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001376 other->CP0_Status = arg1 & ~0xf1000018;
Blue Swirl895c2d02012-09-02 14:52:59 +00001377 sync_c0_status(env, other, other_tc);
thsf1aa6322008-06-09 07:13:38 +00001378}
1379
Blue Swirl895c2d02012-09-02 14:52:59 +00001380void helper_mtc0_intctl(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001381{
1382 /* vectored interrupts not implemented, no performance counters. */
Edgar E. Iglesiasbc45a672011-08-29 23:07:35 +02001383 env->CP0_IntCtl = (env->CP0_IntCtl & ~0x000003e0) | (arg1 & 0x000003e0);
thsf1aa6322008-06-09 07:13:38 +00001384}
1385
Blue Swirl895c2d02012-09-02 14:52:59 +00001386void helper_mtc0_srsctl(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001387{
1388 uint32_t mask = (0xf << CP0SRSCtl_ESS) | (0xf << CP0SRSCtl_PSS);
aurel32d9bea112009-04-15 14:41:44 +00001389 env->CP0_SRSCtl = (env->CP0_SRSCtl & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +00001390}
1391
Andreas Färber7db13fa2012-03-14 01:38:22 +01001392static void mtc0_cause(CPUMIPSState *cpu, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001393{
1394 uint32_t mask = 0x00C00300;
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001395 uint32_t old = cpu->CP0_Cause;
Aurelien Jarno5dc5d9f2010-07-25 16:51:29 +02001396 int i;
thsf1aa6322008-06-09 07:13:38 +00001397
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001398 if (cpu->insn_flags & ISA_MIPS32R2) {
thsf1aa6322008-06-09 07:13:38 +00001399 mask |= 1 << CP0Ca_DC;
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001400 }
thsf1aa6322008-06-09 07:13:38 +00001401
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001402 cpu->CP0_Cause = (cpu->CP0_Cause & ~mask) | (arg1 & mask);
thsf1aa6322008-06-09 07:13:38 +00001403
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001404 if ((old ^ cpu->CP0_Cause) & (1 << CP0Ca_DC)) {
1405 if (cpu->CP0_Cause & (1 << CP0Ca_DC)) {
1406 cpu_mips_stop_count(cpu);
1407 } else {
1408 cpu_mips_start_count(cpu);
1409 }
thsf1aa6322008-06-09 07:13:38 +00001410 }
Aurelien Jarno5dc5d9f2010-07-25 16:51:29 +02001411
1412 /* Set/reset software interrupts */
1413 for (i = 0 ; i < 2 ; i++) {
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001414 if ((old ^ cpu->CP0_Cause) & (1 << (CP0Ca_IP + i))) {
1415 cpu_mips_soft_irq(cpu, i, cpu->CP0_Cause & (1 << (CP0Ca_IP + i)));
Aurelien Jarno5dc5d9f2010-07-25 16:51:29 +02001416 }
1417 }
thsf1aa6322008-06-09 07:13:38 +00001418}
1419
Blue Swirl895c2d02012-09-02 14:52:59 +00001420void helper_mtc0_cause(CPUMIPSState *env, target_ulong arg1)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001421{
1422 mtc0_cause(env, arg1);
1423}
1424
Blue Swirl895c2d02012-09-02 14:52:59 +00001425void helper_mttc0_cause(CPUMIPSState *env, target_ulong arg1)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001426{
1427 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001428 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001429
1430 mtc0_cause(other, arg1);
1431}
1432
Blue Swirl895c2d02012-09-02 14:52:59 +00001433target_ulong helper_mftc0_epc(CPUMIPSState *env)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001434{
1435 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001436 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001437
1438 return other->CP0_EPC;
1439}
1440
Blue Swirl895c2d02012-09-02 14:52:59 +00001441target_ulong helper_mftc0_ebase(CPUMIPSState *env)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001442{
1443 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001444 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001445
1446 return other->CP0_EBase;
1447}
1448
Blue Swirl895c2d02012-09-02 14:52:59 +00001449void helper_mtc0_ebase(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001450{
1451 /* vectored interrupts not implemented */
Hervé Poussineau671b0f32010-07-31 12:29:03 +02001452 env->CP0_EBase = (env->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
thsf1aa6322008-06-09 07:13:38 +00001453}
1454
Blue Swirl895c2d02012-09-02 14:52:59 +00001455void helper_mttc0_ebase(CPUMIPSState *env, target_ulong arg1)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001456{
1457 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001458 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001459 other->CP0_EBase = (other->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
1460}
1461
Blue Swirl895c2d02012-09-02 14:52:59 +00001462target_ulong helper_mftc0_configx(CPUMIPSState *env, target_ulong idx)
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001463{
1464 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001465 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
Edgar E. Iglesias5a25ce92011-08-29 23:07:34 +02001466
1467 switch (idx) {
1468 case 0: return other->CP0_Config0;
1469 case 1: return other->CP0_Config1;
1470 case 2: return other->CP0_Config2;
1471 case 3: return other->CP0_Config3;
1472 /* 4 and 5 are reserved. */
1473 case 6: return other->CP0_Config6;
1474 case 7: return other->CP0_Config7;
1475 default:
1476 break;
1477 }
1478 return 0;
1479}
1480
Blue Swirl895c2d02012-09-02 14:52:59 +00001481void helper_mtc0_config0(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001482{
aurel32d9bea112009-04-15 14:41:44 +00001483 env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (arg1 & 0x00000007);
thsf1aa6322008-06-09 07:13:38 +00001484}
1485
Blue Swirl895c2d02012-09-02 14:52:59 +00001486void helper_mtc0_config2(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001487{
1488 /* tertiary/secondary caches not implemented */
1489 env->CP0_Config2 = (env->CP0_Config2 & 0x8FFF0FFF);
1490}
1491
Petar Jovanovicb4160af2014-01-24 13:45:05 +01001492void helper_mtc0_config4(CPUMIPSState *env, target_ulong arg1)
1493{
1494 env->CP0_Config4 = (env->CP0_Config4 & (~env->CP0_Config4_rw_bitmask)) |
1495 (arg1 & env->CP0_Config4_rw_bitmask);
1496}
1497
Petar Jovanovicb4dd99a2014-01-17 19:25:57 +01001498void helper_mtc0_config5(CPUMIPSState *env, target_ulong arg1)
1499{
1500 env->CP0_Config5 = (env->CP0_Config5 & (~env->CP0_Config5_rw_bitmask)) |
1501 (arg1 & env->CP0_Config5_rw_bitmask);
1502}
1503
Blue Swirl895c2d02012-09-02 14:52:59 +00001504void helper_mtc0_lladdr(CPUMIPSState *env, target_ulong arg1)
Aurelien Jarno2a6e32d2009-11-22 13:22:54 +01001505{
1506 target_long mask = env->CP0_LLAddr_rw_bitmask;
1507 arg1 = arg1 << env->CP0_LLAddr_shift;
1508 env->lladdr = (env->lladdr & ~mask) | (arg1 & mask);
1509}
1510
Blue Swirl895c2d02012-09-02 14:52:59 +00001511void helper_mtc0_watchlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001512{
1513 /* Watch exceptions for instructions, data loads, data stores
1514 not implemented. */
aurel32d9bea112009-04-15 14:41:44 +00001515 env->CP0_WatchLo[sel] = (arg1 & ~0x7);
thsf1aa6322008-06-09 07:13:38 +00001516}
1517
Blue Swirl895c2d02012-09-02 14:52:59 +00001518void helper_mtc0_watchhi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001519{
aurel32d9bea112009-04-15 14:41:44 +00001520 env->CP0_WatchHi[sel] = (arg1 & 0x40FF0FF8);
1521 env->CP0_WatchHi[sel] &= ~(env->CP0_WatchHi[sel] & arg1 & 0x7);
thsf1aa6322008-06-09 07:13:38 +00001522}
1523
Blue Swirl895c2d02012-09-02 14:52:59 +00001524void helper_mtc0_xcontext(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001525{
1526 target_ulong mask = (1ULL << (env->SEGBITS - 7)) - 1;
aurel32d9bea112009-04-15 14:41:44 +00001527 env->CP0_XContext = (env->CP0_XContext & mask) | (arg1 & ~mask);
thsf1aa6322008-06-09 07:13:38 +00001528}
1529
Blue Swirl895c2d02012-09-02 14:52:59 +00001530void helper_mtc0_framemask(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001531{
aurel32d9bea112009-04-15 14:41:44 +00001532 env->CP0_Framemask = arg1; /* XXX */
thsf1aa6322008-06-09 07:13:38 +00001533}
1534
Blue Swirl895c2d02012-09-02 14:52:59 +00001535void helper_mtc0_debug(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001536{
aurel32d9bea112009-04-15 14:41:44 +00001537 env->CP0_Debug = (env->CP0_Debug & 0x8C03FC1F) | (arg1 & 0x13300120);
1538 if (arg1 & (1 << CP0DB_DM))
thsf1aa6322008-06-09 07:13:38 +00001539 env->hflags |= MIPS_HFLAG_DM;
1540 else
1541 env->hflags &= ~MIPS_HFLAG_DM;
1542}
1543
Blue Swirl895c2d02012-09-02 14:52:59 +00001544void helper_mttc0_debug(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001545{
1546 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
aurel32d9bea112009-04-15 14:41:44 +00001547 uint32_t val = arg1 & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt));
Blue Swirl895c2d02012-09-02 14:52:59 +00001548 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001549
1550 /* XXX: Might be wrong, check with EJTAG spec. */
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001551 if (other_tc == other->current_tc)
1552 other->active_tc.CP0_Debug_tcstatus = val;
thsb5dc7732008-06-27 10:02:35 +00001553 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001554 other->tcs[other_tc].CP0_Debug_tcstatus = val;
1555 other->CP0_Debug = (other->CP0_Debug &
1556 ((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
aurel32d9bea112009-04-15 14:41:44 +00001557 (arg1 & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
thsf1aa6322008-06-09 07:13:38 +00001558}
1559
Blue Swirl895c2d02012-09-02 14:52:59 +00001560void helper_mtc0_performance0(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001561{
aurel32d9bea112009-04-15 14:41:44 +00001562 env->CP0_Performance0 = arg1 & 0x000007ff;
thsf1aa6322008-06-09 07:13:38 +00001563}
1564
Blue Swirl895c2d02012-09-02 14:52:59 +00001565void helper_mtc0_taglo(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001566{
aurel32d9bea112009-04-15 14:41:44 +00001567 env->CP0_TagLo = arg1 & 0xFFFFFCF6;
thsf1aa6322008-06-09 07:13:38 +00001568}
1569
Blue Swirl895c2d02012-09-02 14:52:59 +00001570void helper_mtc0_datalo(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001571{
aurel32d9bea112009-04-15 14:41:44 +00001572 env->CP0_DataLo = arg1; /* XXX */
thsf1aa6322008-06-09 07:13:38 +00001573}
1574
Blue Swirl895c2d02012-09-02 14:52:59 +00001575void helper_mtc0_taghi(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001576{
aurel32d9bea112009-04-15 14:41:44 +00001577 env->CP0_TagHi = arg1; /* XXX */
thsf1aa6322008-06-09 07:13:38 +00001578}
1579
Blue Swirl895c2d02012-09-02 14:52:59 +00001580void helper_mtc0_datahi(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001581{
aurel32d9bea112009-04-15 14:41:44 +00001582 env->CP0_DataHi = arg1; /* XXX */
thsf1aa6322008-06-09 07:13:38 +00001583}
1584
thsf1aa6322008-06-09 07:13:38 +00001585/* MIPS MT functions */
Blue Swirl895c2d02012-09-02 14:52:59 +00001586target_ulong helper_mftgpr(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001587{
1588 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001589 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001590
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001591 if (other_tc == other->current_tc)
1592 return other->active_tc.gpr[sel];
thsb5dc7732008-06-27 10:02:35 +00001593 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001594 return other->tcs[other_tc].gpr[sel];
thsf1aa6322008-06-09 07:13:38 +00001595}
1596
Blue Swirl895c2d02012-09-02 14:52:59 +00001597target_ulong helper_mftlo(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001598{
1599 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001600 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001601
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001602 if (other_tc == other->current_tc)
1603 return other->active_tc.LO[sel];
thsb5dc7732008-06-27 10:02:35 +00001604 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001605 return other->tcs[other_tc].LO[sel];
thsf1aa6322008-06-09 07:13:38 +00001606}
1607
Blue Swirl895c2d02012-09-02 14:52:59 +00001608target_ulong helper_mfthi(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001609{
1610 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001611 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001612
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001613 if (other_tc == other->current_tc)
1614 return other->active_tc.HI[sel];
thsb5dc7732008-06-27 10:02:35 +00001615 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001616 return other->tcs[other_tc].HI[sel];
thsf1aa6322008-06-09 07:13:38 +00001617}
1618
Blue Swirl895c2d02012-09-02 14:52:59 +00001619target_ulong helper_mftacx(CPUMIPSState *env, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001620{
1621 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001622 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001623
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001624 if (other_tc == other->current_tc)
1625 return other->active_tc.ACX[sel];
thsb5dc7732008-06-27 10:02:35 +00001626 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001627 return other->tcs[other_tc].ACX[sel];
thsf1aa6322008-06-09 07:13:38 +00001628}
1629
Blue Swirl895c2d02012-09-02 14:52:59 +00001630target_ulong helper_mftdsp(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +00001631{
1632 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001633 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001634
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001635 if (other_tc == other->current_tc)
1636 return other->active_tc.DSPControl;
thsb5dc7732008-06-27 10:02:35 +00001637 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001638 return other->tcs[other_tc].DSPControl;
thsf1aa6322008-06-09 07:13:38 +00001639}
1640
Blue Swirl895c2d02012-09-02 14:52:59 +00001641void helper_mttgpr(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001642{
1643 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001644 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001645
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001646 if (other_tc == other->current_tc)
1647 other->active_tc.gpr[sel] = arg1;
thsb5dc7732008-06-27 10:02:35 +00001648 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001649 other->tcs[other_tc].gpr[sel] = arg1;
thsf1aa6322008-06-09 07:13:38 +00001650}
1651
Blue Swirl895c2d02012-09-02 14:52:59 +00001652void helper_mttlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001653{
1654 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001655 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001656
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001657 if (other_tc == other->current_tc)
1658 other->active_tc.LO[sel] = arg1;
thsb5dc7732008-06-27 10:02:35 +00001659 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001660 other->tcs[other_tc].LO[sel] = arg1;
thsf1aa6322008-06-09 07:13:38 +00001661}
1662
Blue Swirl895c2d02012-09-02 14:52:59 +00001663void helper_mtthi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001664{
1665 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001666 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001667
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001668 if (other_tc == other->current_tc)
1669 other->active_tc.HI[sel] = arg1;
thsb5dc7732008-06-27 10:02:35 +00001670 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001671 other->tcs[other_tc].HI[sel] = arg1;
thsf1aa6322008-06-09 07:13:38 +00001672}
1673
Blue Swirl895c2d02012-09-02 14:52:59 +00001674void helper_mttacx(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
thsf1aa6322008-06-09 07:13:38 +00001675{
1676 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001677 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001678
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001679 if (other_tc == other->current_tc)
1680 other->active_tc.ACX[sel] = arg1;
thsb5dc7732008-06-27 10:02:35 +00001681 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001682 other->tcs[other_tc].ACX[sel] = arg1;
thsf1aa6322008-06-09 07:13:38 +00001683}
1684
Blue Swirl895c2d02012-09-02 14:52:59 +00001685void helper_mttdsp(CPUMIPSState *env, target_ulong arg1)
thsf1aa6322008-06-09 07:13:38 +00001686{
1687 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
Blue Swirl895c2d02012-09-02 14:52:59 +00001688 CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
thsf1aa6322008-06-09 07:13:38 +00001689
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001690 if (other_tc == other->current_tc)
1691 other->active_tc.DSPControl = arg1;
thsb5dc7732008-06-27 10:02:35 +00001692 else
Edgar E. Iglesiasb93bbdc2011-08-29 23:07:32 +02001693 other->tcs[other_tc].DSPControl = arg1;
thsf1aa6322008-06-09 07:13:38 +00001694}
1695
1696/* MIPS MT functions */
Nathan Froyd9ed57262010-10-29 07:48:46 -07001697target_ulong helper_dmt(void)
thsf1aa6322008-06-09 07:13:38 +00001698{
1699 // TODO
Nathan Froyd9ed57262010-10-29 07:48:46 -07001700 return 0;
thsf1aa6322008-06-09 07:13:38 +00001701}
1702
Nathan Froyd9ed57262010-10-29 07:48:46 -07001703target_ulong helper_emt(void)
thsf1aa6322008-06-09 07:13:38 +00001704{
1705 // TODO
Nathan Froyd9ed57262010-10-29 07:48:46 -07001706 return 0;
thsf1aa6322008-06-09 07:13:38 +00001707}
1708
Blue Swirl895c2d02012-09-02 14:52:59 +00001709target_ulong helper_dvpe(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +00001710{
Andreas Färber182735e2013-05-29 22:29:20 +02001711 CPUState *other_cs = first_cpu;
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001712 target_ulong prev = env->mvp->CP0_MVPControl;
1713
Andreas Färberbdc44642013-06-24 23:50:24 +02001714 CPU_FOREACH(other_cs) {
Andreas Färber182735e2013-05-29 22:29:20 +02001715 MIPSCPU *other_cpu = MIPS_CPU(other_cs);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001716 /* Turn off all VPEs except the one executing the dvpe. */
Andreas Färber182735e2013-05-29 22:29:20 +02001717 if (&other_cpu->env != env) {
1718 other_cpu->env.mvp->CP0_MVPControl &= ~(1 << CP0MVPCo_EVP);
Andreas Färber6f4d6b02012-10-12 00:56:37 +02001719 mips_vpe_sleep(other_cpu);
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001720 }
Andreas Färberbdc44642013-06-24 23:50:24 +02001721 }
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001722 return prev;
thsf1aa6322008-06-09 07:13:38 +00001723}
1724
Blue Swirl895c2d02012-09-02 14:52:59 +00001725target_ulong helper_evpe(CPUMIPSState *env)
thsf1aa6322008-06-09 07:13:38 +00001726{
Andreas Färber182735e2013-05-29 22:29:20 +02001727 CPUState *other_cs = first_cpu;
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001728 target_ulong prev = env->mvp->CP0_MVPControl;
1729
Andreas Färberbdc44642013-06-24 23:50:24 +02001730 CPU_FOREACH(other_cs) {
Andreas Färber182735e2013-05-29 22:29:20 +02001731 MIPSCPU *other_cpu = MIPS_CPU(other_cs);
Andreas Färberb35d77d2012-10-12 00:56:35 +02001732
Andreas Färber182735e2013-05-29 22:29:20 +02001733 if (&other_cpu->env != env
Andreas Färber81bad502012-10-12 00:56:33 +02001734 /* If the VPE is WFI, don't disturb its sleep. */
Andreas Färberb35d77d2012-10-12 00:56:35 +02001735 && !mips_vpe_is_wfi(other_cpu)) {
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001736 /* Enable the VPE. */
Andreas Färber182735e2013-05-29 22:29:20 +02001737 other_cpu->env.mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP);
Andreas Färberc3affe52013-01-18 15:03:43 +01001738 mips_vpe_wake(other_cpu); /* And wake it up. */
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001739 }
Andreas Färberbdc44642013-06-24 23:50:24 +02001740 }
Edgar E. Iglesiasf2494122011-08-29 23:07:40 +02001741 return prev;
thsf1aa6322008-06-09 07:13:38 +00001742}
thsf9480ff2008-12-20 19:42:14 +00001743#endif /* !CONFIG_USER_ONLY */
thsf1aa6322008-06-09 07:13:38 +00001744
aurel32d9bea112009-04-15 14:41:44 +00001745void helper_fork(target_ulong arg1, target_ulong arg2)
thsf1aa6322008-06-09 07:13:38 +00001746{
aurel32d9bea112009-04-15 14:41:44 +00001747 // arg1 = rt, arg2 = rs
thsf1aa6322008-06-09 07:13:38 +00001748 // TODO: store to TC register
1749}
1750
Blue Swirl895c2d02012-09-02 14:52:59 +00001751target_ulong helper_yield(CPUMIPSState *env, target_ulong arg)
thsf1aa6322008-06-09 07:13:38 +00001752{
Blue Swirl1c7242d2010-09-18 05:53:15 +00001753 target_long arg1 = arg;
1754
aurel32d9bea112009-04-15 14:41:44 +00001755 if (arg1 < 0) {
thsf1aa6322008-06-09 07:13:38 +00001756 /* No scheduling policy implemented. */
aurel32d9bea112009-04-15 14:41:44 +00001757 if (arg1 != -2) {
thsf1aa6322008-06-09 07:13:38 +00001758 if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) &&
thsb5dc7732008-06-27 10:02:35 +00001759 env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) {
thsf1aa6322008-06-09 07:13:38 +00001760 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1761 env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT;
Blue Swirl895c2d02012-09-02 14:52:59 +00001762 helper_raise_exception(env, EXCP_THREAD);
thsf1aa6322008-06-09 07:13:38 +00001763 }
1764 }
aurel32d9bea112009-04-15 14:41:44 +00001765 } else if (arg1 == 0) {
aurel3269585492009-01-14 19:40:36 +00001766 if (0 /* TODO: TC underflow */) {
thsf1aa6322008-06-09 07:13:38 +00001767 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
Blue Swirl895c2d02012-09-02 14:52:59 +00001768 helper_raise_exception(env, EXCP_THREAD);
thsf1aa6322008-06-09 07:13:38 +00001769 } else {
1770 // TODO: Deallocate TC
1771 }
aurel32d9bea112009-04-15 14:41:44 +00001772 } else if (arg1 > 0) {
thsf1aa6322008-06-09 07:13:38 +00001773 /* Yield qualifier inputs not implemented. */
1774 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1775 env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT;
Blue Swirl895c2d02012-09-02 14:52:59 +00001776 helper_raise_exception(env, EXCP_THREAD);
thsf1aa6322008-06-09 07:13:38 +00001777 }
thsbe24bb42008-06-23 12:57:09 +00001778 return env->CP0_YQMask;
thsf1aa6322008-06-09 07:13:38 +00001779}
1780
thsf1aa6322008-06-09 07:13:38 +00001781#ifndef CONFIG_USER_ONLY
bellard6af0bf92005-07-02 14:58:51 +00001782/* TLB management */
Andreas Färber7db13fa2012-03-14 01:38:22 +01001783static void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global)
ths814b9a42006-12-06 17:42:40 +00001784{
1785 /* Flush qemu's TLB and discard all shadowed entries. */
1786 tlb_flush (env, flush_global);
thsead93602007-09-06 00:18:15 +00001787 env->tlb->tlb_in_use = env->tlb->nb_tlb;
ths814b9a42006-12-06 17:42:40 +00001788}
1789
Andreas Färber7db13fa2012-03-14 01:38:22 +01001790static void r4k_mips_tlb_flush_extra (CPUMIPSState *env, int first)
ths814b9a42006-12-06 17:42:40 +00001791{
1792 /* Discard entries from env->tlb[first] onwards. */
thsead93602007-09-06 00:18:15 +00001793 while (env->tlb->tlb_in_use > first) {
1794 r4k_invalidate_tlb(env, --env->tlb->tlb_in_use, 0);
ths814b9a42006-12-06 17:42:40 +00001795 }
1796}
1797
Blue Swirl895c2d02012-09-02 14:52:59 +00001798static void r4k_fill_tlb(CPUMIPSState *env, int idx)
bellard6af0bf92005-07-02 14:58:51 +00001799{
Anthony Liguoric227f092009-10-01 16:12:16 -05001800 r4k_tlb_t *tlb;
bellard6af0bf92005-07-02 14:58:51 +00001801
1802 /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
thsead93602007-09-06 00:18:15 +00001803 tlb = &env->tlb->mmu.r4k.tlb[idx];
thsf2e9ebe2007-05-13 14:07:26 +00001804 tlb->VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
thsd26bc212007-11-08 18:05:37 +00001805#if defined(TARGET_MIPS64)
thse034e2c2007-06-23 18:04:12 +00001806 tlb->VPN &= env->SEGMask;
ths100ce982007-05-13 19:22:13 +00001807#endif
pbrook98c1b822006-03-11 16:20:36 +00001808 tlb->ASID = env->CP0_EntryHi & 0xFF;
ths3b1c8be2007-01-22 20:50:42 +00001809 tlb->PageMask = env->CP0_PageMask;
bellard6af0bf92005-07-02 14:58:51 +00001810 tlb->G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
pbrook98c1b822006-03-11 16:20:36 +00001811 tlb->V0 = (env->CP0_EntryLo0 & 2) != 0;
1812 tlb->D0 = (env->CP0_EntryLo0 & 4) != 0;
1813 tlb->C0 = (env->CP0_EntryLo0 >> 3) & 0x7;
bellard6af0bf92005-07-02 14:58:51 +00001814 tlb->PFN[0] = (env->CP0_EntryLo0 >> 6) << 12;
pbrook98c1b822006-03-11 16:20:36 +00001815 tlb->V1 = (env->CP0_EntryLo1 & 2) != 0;
1816 tlb->D1 = (env->CP0_EntryLo1 & 4) != 0;
1817 tlb->C1 = (env->CP0_EntryLo1 >> 3) & 0x7;
bellard6af0bf92005-07-02 14:58:51 +00001818 tlb->PFN[1] = (env->CP0_EntryLo1 >> 6) << 12;
1819}
1820
Blue Swirl895c2d02012-09-02 14:52:59 +00001821void r4k_helper_tlbwi(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +00001822{
Aurelien Jarno286d52e2012-10-09 21:53:21 +02001823 r4k_tlb_t *tlb;
aurel32bbc0d792008-09-14 17:09:56 +00001824 int idx;
Aurelien Jarno286d52e2012-10-09 21:53:21 +02001825 target_ulong VPN;
1826 uint8_t ASID;
1827 bool G, V0, D0, V1, D1;
aurel32bbc0d792008-09-14 17:09:56 +00001828
1829 idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
Aurelien Jarno286d52e2012-10-09 21:53:21 +02001830 tlb = &env->tlb->mmu.r4k.tlb[idx];
1831 VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
1832#if defined(TARGET_MIPS64)
1833 VPN &= env->SEGMask;
1834#endif
1835 ASID = env->CP0_EntryHi & 0xff;
1836 G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
1837 V0 = (env->CP0_EntryLo0 & 2) != 0;
1838 D0 = (env->CP0_EntryLo0 & 4) != 0;
1839 V1 = (env->CP0_EntryLo1 & 2) != 0;
1840 D1 = (env->CP0_EntryLo1 & 4) != 0;
aurel32bbc0d792008-09-14 17:09:56 +00001841
Aurelien Jarno286d52e2012-10-09 21:53:21 +02001842 /* Discard cached TLB entries, unless tlbwi is just upgrading access
1843 permissions on the current entry. */
1844 if (tlb->VPN != VPN || tlb->ASID != ASID || tlb->G != G ||
1845 (tlb->V0 && !V0) || (tlb->D0 && !D0) ||
1846 (tlb->V1 && !V1) || (tlb->D1 && !D1)) {
1847 r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
1848 }
ths814b9a42006-12-06 17:42:40 +00001849
aurel32bbc0d792008-09-14 17:09:56 +00001850 r4k_invalidate_tlb(env, idx, 0);
Blue Swirl895c2d02012-09-02 14:52:59 +00001851 r4k_fill_tlb(env, idx);
bellard6af0bf92005-07-02 14:58:51 +00001852}
1853
Blue Swirl895c2d02012-09-02 14:52:59 +00001854void r4k_helper_tlbwr(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +00001855{
1856 int r = cpu_mips_get_random(env);
1857
ths29929e32007-05-13 13:49:44 +00001858 r4k_invalidate_tlb(env, r, 1);
Blue Swirl895c2d02012-09-02 14:52:59 +00001859 r4k_fill_tlb(env, r);
bellard6af0bf92005-07-02 14:58:51 +00001860}
1861
Blue Swirl895c2d02012-09-02 14:52:59 +00001862void r4k_helper_tlbp(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +00001863{
Anthony Liguoric227f092009-10-01 16:12:16 -05001864 r4k_tlb_t *tlb;
thsf2e9ebe2007-05-13 14:07:26 +00001865 target_ulong mask;
bellard6af0bf92005-07-02 14:58:51 +00001866 target_ulong tag;
thsf2e9ebe2007-05-13 14:07:26 +00001867 target_ulong VPN;
bellard6af0bf92005-07-02 14:58:51 +00001868 uint8_t ASID;
1869 int i;
1870
bellard3d9fb9fe2006-05-22 22:13:29 +00001871 ASID = env->CP0_EntryHi & 0xFF;
thsead93602007-09-06 00:18:15 +00001872 for (i = 0; i < env->tlb->nb_tlb; i++) {
1873 tlb = &env->tlb->mmu.r4k.tlb[i];
thsf2e9ebe2007-05-13 14:07:26 +00001874 /* 1k pages are not supported. */
1875 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
1876 tag = env->CP0_EntryHi & ~mask;
1877 VPN = tlb->VPN & ~mask;
Aurelien Jarnobc3e45e2012-10-09 21:53:21 +02001878#if defined(TARGET_MIPS64)
1879 tag &= env->SEGMask;
1880#endif
bellard6af0bf92005-07-02 14:58:51 +00001881 /* Check ASID, virtual page number & size */
thsf2e9ebe2007-05-13 14:07:26 +00001882 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
bellard6af0bf92005-07-02 14:58:51 +00001883 /* TLB match */
ths9c2149c2007-01-23 22:45:22 +00001884 env->CP0_Index = i;
bellard6af0bf92005-07-02 14:58:51 +00001885 break;
1886 }
1887 }
thsead93602007-09-06 00:18:15 +00001888 if (i == env->tlb->nb_tlb) {
ths814b9a42006-12-06 17:42:40 +00001889 /* No match. Discard any shadow entries, if any of them match. */
thsead93602007-09-06 00:18:15 +00001890 for (i = env->tlb->nb_tlb; i < env->tlb->tlb_in_use; i++) {
aurel3269585492009-01-14 19:40:36 +00001891 tlb = &env->tlb->mmu.r4k.tlb[i];
1892 /* 1k pages are not supported. */
1893 mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
1894 tag = env->CP0_EntryHi & ~mask;
1895 VPN = tlb->VPN & ~mask;
Aurelien Jarnobc3e45e2012-10-09 21:53:21 +02001896#if defined(TARGET_MIPS64)
1897 tag &= env->SEGMask;
1898#endif
aurel3269585492009-01-14 19:40:36 +00001899 /* Check ASID, virtual page number & size */
1900 if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
ths29929e32007-05-13 13:49:44 +00001901 r4k_mips_tlb_flush_extra (env, i);
aurel3269585492009-01-14 19:40:36 +00001902 break;
1903 }
1904 }
ths814b9a42006-12-06 17:42:40 +00001905
ths9c2149c2007-01-23 22:45:22 +00001906 env->CP0_Index |= 0x80000000;
bellard6af0bf92005-07-02 14:58:51 +00001907 }
1908}
1909
Blue Swirl895c2d02012-09-02 14:52:59 +00001910void r4k_helper_tlbr(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +00001911{
Anthony Liguoric227f092009-10-01 16:12:16 -05001912 r4k_tlb_t *tlb;
pbrook09c56b82006-03-11 16:39:23 +00001913 uint8_t ASID;
aurel32bbc0d792008-09-14 17:09:56 +00001914 int idx;
bellard6af0bf92005-07-02 14:58:51 +00001915
pbrook09c56b82006-03-11 16:39:23 +00001916 ASID = env->CP0_EntryHi & 0xFF;
aurel32bbc0d792008-09-14 17:09:56 +00001917 idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
1918 tlb = &env->tlb->mmu.r4k.tlb[idx];
bellard4ad40f32005-12-05 19:59:36 +00001919
1920 /* If this will change the current ASID, flush qemu's TLB. */
ths814b9a42006-12-06 17:42:40 +00001921 if (ASID != tlb->ASID)
1922 cpu_mips_tlb_flush (env, 1);
1923
thsead93602007-09-06 00:18:15 +00001924 r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
bellard4ad40f32005-12-05 19:59:36 +00001925
bellard6af0bf92005-07-02 14:58:51 +00001926 env->CP0_EntryHi = tlb->VPN | tlb->ASID;
ths3b1c8be2007-01-22 20:50:42 +00001927 env->CP0_PageMask = tlb->PageMask;
ths7495fd02007-01-01 20:32:08 +00001928 env->CP0_EntryLo0 = tlb->G | (tlb->V0 << 1) | (tlb->D0 << 2) |
1929 (tlb->C0 << 3) | (tlb->PFN[0] >> 6);
1930 env->CP0_EntryLo1 = tlb->G | (tlb->V1 << 1) | (tlb->D1 << 2) |
1931 (tlb->C1 << 3) | (tlb->PFN[1] >> 6);
bellard6af0bf92005-07-02 14:58:51 +00001932}
bellard6af0bf92005-07-02 14:58:51 +00001933
Blue Swirl895c2d02012-09-02 14:52:59 +00001934void helper_tlbwi(CPUMIPSState *env)
pbrooka7812ae2008-11-17 14:43:54 +00001935{
Blue Swirl895c2d02012-09-02 14:52:59 +00001936 env->tlb->helper_tlbwi(env);
pbrooka7812ae2008-11-17 14:43:54 +00001937}
1938
Blue Swirl895c2d02012-09-02 14:52:59 +00001939void helper_tlbwr(CPUMIPSState *env)
pbrooka7812ae2008-11-17 14:43:54 +00001940{
Blue Swirl895c2d02012-09-02 14:52:59 +00001941 env->tlb->helper_tlbwr(env);
pbrooka7812ae2008-11-17 14:43:54 +00001942}
1943
Blue Swirl895c2d02012-09-02 14:52:59 +00001944void helper_tlbp(CPUMIPSState *env)
pbrooka7812ae2008-11-17 14:43:54 +00001945{
Blue Swirl895c2d02012-09-02 14:52:59 +00001946 env->tlb->helper_tlbp(env);
pbrooka7812ae2008-11-17 14:43:54 +00001947}
1948
Blue Swirl895c2d02012-09-02 14:52:59 +00001949void helper_tlbr(CPUMIPSState *env)
pbrooka7812ae2008-11-17 14:43:54 +00001950{
Blue Swirl895c2d02012-09-02 14:52:59 +00001951 env->tlb->helper_tlbr(env);
pbrooka7812ae2008-11-17 14:43:54 +00001952}
1953
ths2b0233a2008-06-12 12:42:35 +00001954/* Specials */
Blue Swirl895c2d02012-09-02 14:52:59 +00001955target_ulong helper_di(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00001956{
ths27961882008-06-27 10:03:42 +00001957 target_ulong t0 = env->CP0_Status;
1958
thsbe24bb42008-06-23 12:57:09 +00001959 env->CP0_Status = t0 & ~(1 << CP0St_IE);
thsbe24bb42008-06-23 12:57:09 +00001960 return t0;
ths2b0233a2008-06-12 12:42:35 +00001961}
1962
Blue Swirl895c2d02012-09-02 14:52:59 +00001963target_ulong helper_ei(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00001964{
ths27961882008-06-27 10:03:42 +00001965 target_ulong t0 = env->CP0_Status;
1966
thsbe24bb42008-06-23 12:57:09 +00001967 env->CP0_Status = t0 | (1 << CP0St_IE);
thsbe24bb42008-06-23 12:57:09 +00001968 return t0;
ths2b0233a2008-06-12 12:42:35 +00001969}
1970
Blue Swirl895c2d02012-09-02 14:52:59 +00001971static void debug_pre_eret(CPUMIPSState *env)
bellard6af0bf92005-07-02 14:58:51 +00001972{
aliguori8fec2b82009-01-15 22:36:53 +00001973 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
aliguori93fcfe32009-01-15 22:34:14 +00001974 qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1975 env->active_tc.PC, env->CP0_EPC);
1976 if (env->CP0_Status & (1 << CP0St_ERL))
1977 qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
1978 if (env->hflags & MIPS_HFLAG_DM)
1979 qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
1980 qemu_log("\n");
1981 }
thsf41c52f2007-04-06 18:46:01 +00001982}
1983
Blue Swirl895c2d02012-09-02 14:52:59 +00001984static void debug_post_eret(CPUMIPSState *env)
thsf41c52f2007-04-06 18:46:01 +00001985{
aliguori8fec2b82009-01-15 22:36:53 +00001986 if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
aliguori93fcfe32009-01-15 22:34:14 +00001987 qemu_log(" => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1988 env->active_tc.PC, env->CP0_EPC);
1989 if (env->CP0_Status & (1 << CP0St_ERL))
1990 qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
1991 if (env->hflags & MIPS_HFLAG_DM)
1992 qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
1993 switch (env->hflags & MIPS_HFLAG_KSU) {
1994 case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
1995 case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
1996 case MIPS_HFLAG_KM: qemu_log("\n"); break;
1997 default: cpu_abort(env, "Invalid MMU mode!\n"); break;
1998 }
ths623a9302007-10-28 19:45:05 +00001999 }
bellard6af0bf92005-07-02 14:58:51 +00002000}
2001
Blue Swirl895c2d02012-09-02 14:52:59 +00002002static void set_pc(CPUMIPSState *env, target_ulong error_pc)
Nathan Froyd32188a02009-12-08 08:06:23 -08002003{
2004 env->active_tc.PC = error_pc & ~(target_ulong)1;
2005 if (error_pc & 1) {
2006 env->hflags |= MIPS_HFLAG_M16;
2007 } else {
2008 env->hflags &= ~(MIPS_HFLAG_M16);
2009 }
2010}
2011
Blue Swirl895c2d02012-09-02 14:52:59 +00002012void helper_eret(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002013{
Blue Swirl895c2d02012-09-02 14:52:59 +00002014 debug_pre_eret(env);
ths2b0233a2008-06-12 12:42:35 +00002015 if (env->CP0_Status & (1 << CP0St_ERL)) {
Blue Swirl895c2d02012-09-02 14:52:59 +00002016 set_pc(env, env->CP0_ErrorEPC);
ths2b0233a2008-06-12 12:42:35 +00002017 env->CP0_Status &= ~(1 << CP0St_ERL);
2018 } else {
Blue Swirl895c2d02012-09-02 14:52:59 +00002019 set_pc(env, env->CP0_EPC);
ths2b0233a2008-06-12 12:42:35 +00002020 env->CP0_Status &= ~(1 << CP0St_EXL);
2021 }
2022 compute_hflags(env);
Blue Swirl895c2d02012-09-02 14:52:59 +00002023 debug_post_eret(env);
Aurelien Jarno5499b6f2009-11-22 13:08:14 +01002024 env->lladdr = 1;
ths2b0233a2008-06-12 12:42:35 +00002025}
2026
Blue Swirl895c2d02012-09-02 14:52:59 +00002027void helper_deret(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002028{
Blue Swirl895c2d02012-09-02 14:52:59 +00002029 debug_pre_eret(env);
2030 set_pc(env, env->CP0_DEPC);
Nathan Froyd32188a02009-12-08 08:06:23 -08002031
ths2b0233a2008-06-12 12:42:35 +00002032 env->hflags &= MIPS_HFLAG_DM;
2033 compute_hflags(env);
Blue Swirl895c2d02012-09-02 14:52:59 +00002034 debug_post_eret(env);
Aurelien Jarno5499b6f2009-11-22 13:08:14 +01002035 env->lladdr = 1;
ths2b0233a2008-06-12 12:42:35 +00002036}
ths0eaef5a2008-07-23 16:14:22 +00002037#endif /* !CONFIG_USER_ONLY */
ths2b0233a2008-06-12 12:42:35 +00002038
Blue Swirl895c2d02012-09-02 14:52:59 +00002039target_ulong helper_rdhwr_cpunum(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002040{
2041 if ((env->hflags & MIPS_HFLAG_CP0) ||
2042 (env->CP0_HWREna & (1 << 0)))
ths27961882008-06-27 10:03:42 +00002043 return env->CP0_EBase & 0x3ff;
ths2b0233a2008-06-12 12:42:35 +00002044 else
Blue Swirl895c2d02012-09-02 14:52:59 +00002045 helper_raise_exception(env, EXCP_RI);
thsbe24bb42008-06-23 12:57:09 +00002046
ths27961882008-06-27 10:03:42 +00002047 return 0;
ths2b0233a2008-06-12 12:42:35 +00002048}
2049
Blue Swirl895c2d02012-09-02 14:52:59 +00002050target_ulong helper_rdhwr_synci_step(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002051{
2052 if ((env->hflags & MIPS_HFLAG_CP0) ||
2053 (env->CP0_HWREna & (1 << 1)))
ths27961882008-06-27 10:03:42 +00002054 return env->SYNCI_Step;
ths2b0233a2008-06-12 12:42:35 +00002055 else
Blue Swirl895c2d02012-09-02 14:52:59 +00002056 helper_raise_exception(env, EXCP_RI);
thsbe24bb42008-06-23 12:57:09 +00002057
ths27961882008-06-27 10:03:42 +00002058 return 0;
ths2b0233a2008-06-12 12:42:35 +00002059}
2060
Blue Swirl895c2d02012-09-02 14:52:59 +00002061target_ulong helper_rdhwr_cc(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002062{
2063 if ((env->hflags & MIPS_HFLAG_CP0) ||
2064 (env->CP0_HWREna & (1 << 2)))
ths27961882008-06-27 10:03:42 +00002065 return env->CP0_Count;
ths2b0233a2008-06-12 12:42:35 +00002066 else
Blue Swirl895c2d02012-09-02 14:52:59 +00002067 helper_raise_exception(env, EXCP_RI);
thsbe24bb42008-06-23 12:57:09 +00002068
ths27961882008-06-27 10:03:42 +00002069 return 0;
ths2b0233a2008-06-12 12:42:35 +00002070}
2071
Blue Swirl895c2d02012-09-02 14:52:59 +00002072target_ulong helper_rdhwr_ccres(CPUMIPSState *env)
ths2b0233a2008-06-12 12:42:35 +00002073{
2074 if ((env->hflags & MIPS_HFLAG_CP0) ||
2075 (env->CP0_HWREna & (1 << 3)))
ths27961882008-06-27 10:03:42 +00002076 return env->CCRes;
ths2b0233a2008-06-12 12:42:35 +00002077 else
Blue Swirl895c2d02012-09-02 14:52:59 +00002078 helper_raise_exception(env, EXCP_RI);
thsbe24bb42008-06-23 12:57:09 +00002079
ths27961882008-06-27 10:03:42 +00002080 return 0;
ths2b0233a2008-06-12 12:42:35 +00002081}
2082
Blue Swirl895c2d02012-09-02 14:52:59 +00002083void helper_pmon(CPUMIPSState *env, int function)
bellard6af0bf92005-07-02 14:58:51 +00002084{
2085 function /= 2;
2086 switch (function) {
2087 case 2: /* TODO: char inbyte(int waitflag); */
thsb5dc7732008-06-27 10:02:35 +00002088 if (env->active_tc.gpr[4] == 0)
2089 env->active_tc.gpr[2] = -1;
bellard6af0bf92005-07-02 14:58:51 +00002090 /* Fall through */
2091 case 11: /* TODO: char inbyte (void); */
thsb5dc7732008-06-27 10:02:35 +00002092 env->active_tc.gpr[2] = -1;
bellard6af0bf92005-07-02 14:58:51 +00002093 break;
2094 case 3:
2095 case 12:
thsb5dc7732008-06-27 10:02:35 +00002096 printf("%c", (char)(env->active_tc.gpr[4] & 0xFF));
bellard6af0bf92005-07-02 14:58:51 +00002097 break;
2098 case 17:
2099 break;
2100 case 158:
2101 {
Stefan Weilb69e48a2012-04-12 15:43:09 +02002102 unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4];
bellard6af0bf92005-07-02 14:58:51 +00002103 printf("%s", fmt);
2104 }
2105 break;
2106 }
2107}
bellarde37e8632005-07-04 22:17:33 +00002108
Blue Swirl895c2d02012-09-02 14:52:59 +00002109void helper_wait(CPUMIPSState *env)
ths08ba7962008-06-12 03:15:13 +00002110{
Andreas Färber259186a2013-01-17 18:51:17 +01002111 CPUState *cs = CPU(mips_env_get_cpu(env));
2112
2113 cs->halted = 1;
Andreas Färberd8ed8872013-01-17 22:30:20 +01002114 cpu_reset_interrupt(cs, CPU_INTERRUPT_WAKE);
Blue Swirl895c2d02012-09-02 14:52:59 +00002115 helper_raise_exception(env, EXCP_HLT);
ths08ba7962008-06-12 03:15:13 +00002116}
2117
ths5fafdf22007-09-16 21:08:06 +00002118#if !defined(CONFIG_USER_ONLY)
bellarde37e8632005-07-04 22:17:33 +00002119
Blue Swirl895c2d02012-09-02 14:52:59 +00002120static void QEMU_NORETURN do_unaligned_access(CPUMIPSState *env,
2121 target_ulong addr, int is_write,
Blue Swirl20503962012-04-09 14:20:20 +00002122 int is_user, uintptr_t retaddr);
bellard4ad40f32005-12-05 19:59:36 +00002123
bellarde37e8632005-07-04 22:17:33 +00002124#define MMUSUFFIX _mmu
bellard4ad40f32005-12-05 19:59:36 +00002125#define ALIGNED_ONLY
bellarde37e8632005-07-04 22:17:33 +00002126
2127#define SHIFT 0
Paolo Bonzini022c62c2012-12-17 18:19:49 +01002128#include "exec/softmmu_template.h"
bellarde37e8632005-07-04 22:17:33 +00002129
2130#define SHIFT 1
Paolo Bonzini022c62c2012-12-17 18:19:49 +01002131#include "exec/softmmu_template.h"
bellarde37e8632005-07-04 22:17:33 +00002132
2133#define SHIFT 2
Paolo Bonzini022c62c2012-12-17 18:19:49 +01002134#include "exec/softmmu_template.h"
bellarde37e8632005-07-04 22:17:33 +00002135
2136#define SHIFT 3
Paolo Bonzini022c62c2012-12-17 18:19:49 +01002137#include "exec/softmmu_template.h"
bellarde37e8632005-07-04 22:17:33 +00002138
Blue Swirl895c2d02012-09-02 14:52:59 +00002139static void do_unaligned_access(CPUMIPSState *env, target_ulong addr,
2140 int is_write, int is_user, uintptr_t retaddr)
bellard4ad40f32005-12-05 19:59:36 +00002141{
2142 env->CP0_BadVAddr = addr;
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002143 do_raise_exception(env, (is_write == 1) ? EXCP_AdES : EXCP_AdEL, retaddr);
bellard4ad40f32005-12-05 19:59:36 +00002144}
2145
Blue Swirl895c2d02012-09-02 14:52:59 +00002146void tlb_fill(CPUMIPSState *env, target_ulong addr, int is_write, int mmu_idx,
Blue Swirl20503962012-04-09 14:20:20 +00002147 uintptr_t retaddr)
bellarde37e8632005-07-04 22:17:33 +00002148{
bellarde37e8632005-07-04 22:17:33 +00002149 int ret;
2150
Blue Swirl97b348e2011-08-01 16:12:17 +00002151 ret = cpu_mips_handle_mmu_fault(env, addr, is_write, mmu_idx);
bellarde37e8632005-07-04 22:17:33 +00002152 if (ret) {
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002153 do_raise_exception_err(env, env->exception_index,
2154 env->error_code, retaddr);
bellarde37e8632005-07-04 22:17:33 +00002155 }
bellarde37e8632005-07-04 22:17:33 +00002156}
2157
Andreas Färberc658b942013-05-27 06:49:53 +02002158void mips_cpu_unassigned_access(CPUState *cs, hwaddr addr,
2159 bool is_write, bool is_exec, int unused,
2160 unsigned size)
ths647de6c2007-10-20 19:45:44 +00002161{
Andreas Färberc658b942013-05-27 06:49:53 +02002162 MIPSCPU *cpu = MIPS_CPU(cs);
2163 CPUMIPSState *env = &cpu->env;
2164
2165 if (is_exec) {
Blue Swirl895c2d02012-09-02 14:52:59 +00002166 helper_raise_exception(env, EXCP_IBE);
Andreas Färberc658b942013-05-27 06:49:53 +02002167 } else {
Blue Swirl895c2d02012-09-02 14:52:59 +00002168 helper_raise_exception(env, EXCP_DBE);
Andreas Färberc658b942013-05-27 06:49:53 +02002169 }
ths647de6c2007-10-20 19:45:44 +00002170}
thsf1aa6322008-06-09 07:13:38 +00002171#endif /* !CONFIG_USER_ONLY */
thsfd4a04e2007-05-18 11:55:54 +00002172
2173/* Complex FPU operations which may need stack space. */
2174
pbrookf090c9d2007-11-18 14:33:24 +00002175#define FLOAT_TWO32 make_float32(1 << 30)
2176#define FLOAT_TWO64 make_float64(1ULL << 62)
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002177#define FP_TO_INT32_OVERFLOW 0x7fffffff
2178#define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
ths8dfdb872007-06-26 20:26:03 +00002179
thsfd4a04e2007-05-18 11:55:54 +00002180/* convert MIPS rounding mode in FCR31 to IEEE library */
Blue Swirl6f4fc362009-09-21 18:39:26 +00002181static unsigned int ieee_rm[] = {
thsfd4a04e2007-05-18 11:55:54 +00002182 float_round_nearest_even,
2183 float_round_to_zero,
2184 float_round_up,
2185 float_round_down
2186};
2187
Stefan Weile320d052013-01-01 19:44:31 +01002188static inline void restore_rounding_mode(CPUMIPSState *env)
2189{
2190 set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3],
2191 &env->active_fpu.fp_status);
2192}
thsfd4a04e2007-05-18 11:55:54 +00002193
Stefan Weile320d052013-01-01 19:44:31 +01002194static inline void restore_flush_mode(CPUMIPSState *env)
2195{
2196 set_flush_to_zero((env->active_fpu.fcr31 & (1 << 24)) != 0,
2197 &env->active_fpu.fp_status);
2198}
aurel3241e0c702009-03-28 22:22:40 +00002199
Blue Swirl895c2d02012-09-02 14:52:59 +00002200target_ulong helper_cfc1(CPUMIPSState *env, uint32_t reg)
thsfd4a04e2007-05-18 11:55:54 +00002201{
Petar Jovanovic736d1202014-01-22 18:35:32 +01002202 target_ulong arg1 = 0;
ths6c5c1e22008-06-24 15:12:27 +00002203
thsead93602007-09-06 00:18:15 +00002204 switch (reg) {
2205 case 0:
aurel32d9bea112009-04-15 14:41:44 +00002206 arg1 = (int32_t)env->active_fpu.fcr0;
thsead93602007-09-06 00:18:15 +00002207 break;
Petar Jovanovic736d1202014-01-22 18:35:32 +01002208 case 1:
2209 /* UFR Support - Read Status FR */
2210 if (env->active_fpu.fcr0 & (1 << FCR0_UFRP)) {
2211 if (env->CP0_Config5 & (1 << CP0C5_UFR)) {
2212 arg1 = (int32_t)
2213 ((env->CP0_Status & (1 << CP0St_FR)) >> CP0St_FR);
2214 } else {
2215 helper_raise_exception(env, EXCP_RI);
2216 }
2217 }
2218 break;
thsead93602007-09-06 00:18:15 +00002219 case 25:
aurel32d9bea112009-04-15 14:41:44 +00002220 arg1 = ((env->active_fpu.fcr31 >> 24) & 0xfe) | ((env->active_fpu.fcr31 >> 23) & 0x1);
thsead93602007-09-06 00:18:15 +00002221 break;
2222 case 26:
aurel32d9bea112009-04-15 14:41:44 +00002223 arg1 = env->active_fpu.fcr31 & 0x0003f07c;
thsead93602007-09-06 00:18:15 +00002224 break;
2225 case 28:
aurel32d9bea112009-04-15 14:41:44 +00002226 arg1 = (env->active_fpu.fcr31 & 0x00000f83) | ((env->active_fpu.fcr31 >> 22) & 0x4);
thsead93602007-09-06 00:18:15 +00002227 break;
2228 default:
aurel32d9bea112009-04-15 14:41:44 +00002229 arg1 = (int32_t)env->active_fpu.fcr31;
thsead93602007-09-06 00:18:15 +00002230 break;
2231 }
thsbe24bb42008-06-23 12:57:09 +00002232
aurel32d9bea112009-04-15 14:41:44 +00002233 return arg1;
thsead93602007-09-06 00:18:15 +00002234}
2235
Petar Jovanovic736d1202014-01-22 18:35:32 +01002236void helper_ctc1(CPUMIPSState *env, target_ulong arg1, uint32_t fs, uint32_t rt)
thsead93602007-09-06 00:18:15 +00002237{
Petar Jovanovic736d1202014-01-22 18:35:32 +01002238 switch (fs) {
2239 case 1:
2240 /* UFR Alias - Reset Status FR */
2241 if (!((env->active_fpu.fcr0 & (1 << FCR0_UFRP)) && (rt == 0))) {
2242 return;
2243 }
2244 if (env->CP0_Config5 & (1 << CP0C5_UFR)) {
2245 env->CP0_Status &= ~(1 << CP0St_FR);
2246 compute_hflags(env);
2247 } else {
2248 helper_raise_exception(env, EXCP_RI);
2249 }
2250 break;
2251 case 4:
2252 /* UNFR Alias - Set Status FR */
2253 if (!((env->active_fpu.fcr0 & (1 << FCR0_UFRP)) && (rt == 0))) {
2254 return;
2255 }
2256 if (env->CP0_Config5 & (1 << CP0C5_UFR)) {
2257 env->CP0_Status |= (1 << CP0St_FR);
2258 compute_hflags(env);
2259 } else {
2260 helper_raise_exception(env, EXCP_RI);
2261 }
2262 break;
thsfd4a04e2007-05-18 11:55:54 +00002263 case 25:
aurel32d9bea112009-04-15 14:41:44 +00002264 if (arg1 & 0xffffff00)
thsfd4a04e2007-05-18 11:55:54 +00002265 return;
aurel32d9bea112009-04-15 14:41:44 +00002266 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0x017fffff) | ((arg1 & 0xfe) << 24) |
2267 ((arg1 & 0x1) << 23);
thsfd4a04e2007-05-18 11:55:54 +00002268 break;
2269 case 26:
aurel32d9bea112009-04-15 14:41:44 +00002270 if (arg1 & 0x007c0000)
thsfd4a04e2007-05-18 11:55:54 +00002271 return;
aurel32d9bea112009-04-15 14:41:44 +00002272 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfffc0f83) | (arg1 & 0x0003f07c);
thsfd4a04e2007-05-18 11:55:54 +00002273 break;
2274 case 28:
aurel32d9bea112009-04-15 14:41:44 +00002275 if (arg1 & 0x007c0000)
thsfd4a04e2007-05-18 11:55:54 +00002276 return;
aurel32d9bea112009-04-15 14:41:44 +00002277 env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfefff07c) | (arg1 & 0x00000f83) |
2278 ((arg1 & 0x4) << 22);
thsfd4a04e2007-05-18 11:55:54 +00002279 break;
2280 case 31:
aurel32d9bea112009-04-15 14:41:44 +00002281 if (arg1 & 0x007c0000)
thsfd4a04e2007-05-18 11:55:54 +00002282 return;
aurel32d9bea112009-04-15 14:41:44 +00002283 env->active_fpu.fcr31 = arg1;
thsfd4a04e2007-05-18 11:55:54 +00002284 break;
2285 default:
2286 return;
2287 }
2288 /* set rounding mode */
Stefan Weile320d052013-01-01 19:44:31 +01002289 restore_rounding_mode(env);
aurel3241e0c702009-03-28 22:22:40 +00002290 /* set flush-to-zero mode */
Stefan Weile320d052013-01-01 19:44:31 +01002291 restore_flush_mode(env);
thsf01be152008-09-18 11:57:27 +00002292 set_float_exception_flags(0, &env->active_fpu.fp_status);
2293 if ((GET_FP_ENABLE(env->active_fpu.fcr31) | 0x20) & GET_FP_CAUSE(env->active_fpu.fcr31))
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002294 do_raise_exception(env, EXCP_FPE, GETPC());
thsfd4a04e2007-05-18 11:55:54 +00002295}
2296
Aurelien Jarno353ebb72011-04-14 00:49:30 +02002297static inline int ieee_ex_to_mips(int xcpt)
thsfd4a04e2007-05-18 11:55:54 +00002298{
Aurelien Jarno353ebb72011-04-14 00:49:30 +02002299 int ret = 0;
2300 if (xcpt) {
2301 if (xcpt & float_flag_invalid) {
2302 ret |= FP_INVALID;
2303 }
2304 if (xcpt & float_flag_overflow) {
2305 ret |= FP_OVERFLOW;
2306 }
2307 if (xcpt & float_flag_underflow) {
2308 ret |= FP_UNDERFLOW;
2309 }
2310 if (xcpt & float_flag_divbyzero) {
2311 ret |= FP_DIV0;
2312 }
2313 if (xcpt & float_flag_inexact) {
2314 ret |= FP_INEXACT;
2315 }
2316 }
2317 return ret;
thsfd4a04e2007-05-18 11:55:54 +00002318}
2319
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002320static inline void update_fcr31(CPUMIPSState *env, uintptr_t pc)
thsfd4a04e2007-05-18 11:55:54 +00002321{
thsf01be152008-09-18 11:57:27 +00002322 int tmp = ieee_ex_to_mips(get_float_exception_flags(&env->active_fpu.fp_status));
thsfd4a04e2007-05-18 11:55:54 +00002323
thsf01be152008-09-18 11:57:27 +00002324 SET_FP_CAUSE(env->active_fpu.fcr31, tmp);
Aurelien Jarno4a587b22012-10-28 18:08:27 +01002325
2326 if (tmp) {
2327 set_float_exception_flags(0, &env->active_fpu.fp_status);
2328
2329 if (GET_FP_ENABLE(env->active_fpu.fcr31) & tmp) {
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002330 do_raise_exception(env, EXCP_FPE, pc);
Aurelien Jarno4a587b22012-10-28 18:08:27 +01002331 } else {
2332 UPDATE_FP_FLAGS(env->active_fpu.fcr31, tmp);
2333 }
2334 }
thsfd4a04e2007-05-18 11:55:54 +00002335}
2336
thsa16336e2008-06-19 18:35:02 +00002337/* Float support.
2338 Single precition routines have a "s" suffix, double precision a
2339 "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps",
2340 paired single lower "pl", paired single upper "pu". */
2341
thsa16336e2008-06-19 18:35:02 +00002342/* unary operations, modifying fp status */
Blue Swirl895c2d02012-09-02 14:52:59 +00002343uint64_t helper_float_sqrt_d(CPUMIPSState *env, uint64_t fdt0)
thsfd4a04e2007-05-18 11:55:54 +00002344{
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002345 fdt0 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002346 update_fcr31(env, GETPC());
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002347 return fdt0;
thsfd4a04e2007-05-18 11:55:54 +00002348}
2349
Blue Swirl895c2d02012-09-02 14:52:59 +00002350uint32_t helper_float_sqrt_s(CPUMIPSState *env, uint32_t fst0)
thsfd4a04e2007-05-18 11:55:54 +00002351{
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002352 fst0 = float32_sqrt(fst0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002353 update_fcr31(env, GETPC());
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002354 return fst0;
thsfd4a04e2007-05-18 11:55:54 +00002355}
2356
Blue Swirl895c2d02012-09-02 14:52:59 +00002357uint64_t helper_float_cvtd_s(CPUMIPSState *env, uint32_t fst0)
thsfd4a04e2007-05-18 11:55:54 +00002358{
thsb6d96be2008-07-09 11:05:10 +00002359 uint64_t fdt2;
2360
thsf01be152008-09-18 11:57:27 +00002361 fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002362 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002363 return fdt2;
2364}
2365
Blue Swirl895c2d02012-09-02 14:52:59 +00002366uint64_t helper_float_cvtd_w(CPUMIPSState *env, uint32_t wt0)
thsb6d96be2008-07-09 11:05:10 +00002367{
2368 uint64_t fdt2;
2369
thsf01be152008-09-18 11:57:27 +00002370 fdt2 = int32_to_float64(wt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002371 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002372 return fdt2;
2373}
2374
Blue Swirl895c2d02012-09-02 14:52:59 +00002375uint64_t helper_float_cvtd_l(CPUMIPSState *env, uint64_t dt0)
thsb6d96be2008-07-09 11:05:10 +00002376{
2377 uint64_t fdt2;
2378
thsf01be152008-09-18 11:57:27 +00002379 fdt2 = int64_to_float64(dt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002380 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002381 return fdt2;
2382}
2383
Blue Swirl895c2d02012-09-02 14:52:59 +00002384uint64_t helper_float_cvtl_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002385{
2386 uint64_t dt2;
2387
thsf01be152008-09-18 11:57:27 +00002388 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002389 if (get_float_exception_flags(&env->active_fpu.fp_status)
2390 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002391 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002392 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002393 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002394 return dt2;
2395}
2396
Blue Swirl895c2d02012-09-02 14:52:59 +00002397uint64_t helper_float_cvtl_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002398{
2399 uint64_t dt2;
2400
thsf01be152008-09-18 11:57:27 +00002401 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002402 if (get_float_exception_flags(&env->active_fpu.fp_status)
2403 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002404 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002405 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002406 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002407 return dt2;
2408}
2409
Blue Swirl895c2d02012-09-02 14:52:59 +00002410uint64_t helper_float_cvtps_pw(CPUMIPSState *env, uint64_t dt0)
thsb6d96be2008-07-09 11:05:10 +00002411{
2412 uint32_t fst2;
2413 uint32_t fsth2;
2414
thsf01be152008-09-18 11:57:27 +00002415 fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2416 fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002417 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002418 return ((uint64_t)fsth2 << 32) | fst2;
2419}
2420
Blue Swirl895c2d02012-09-02 14:52:59 +00002421uint64_t helper_float_cvtpw_ps(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002422{
2423 uint32_t wt2;
2424 uint32_t wth2;
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002425 int excp, excph;
thsb6d96be2008-07-09 11:05:10 +00002426
thsf01be152008-09-18 11:57:27 +00002427 wt2 = float32_to_int32(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002428 excp = get_float_exception_flags(&env->active_fpu.fp_status);
2429 if (excp & (float_flag_overflow | float_flag_invalid)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002430 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002431 }
2432
2433 set_float_exception_flags(0, &env->active_fpu.fp_status);
2434 wth2 = float32_to_int32(fdt0 >> 32, &env->active_fpu.fp_status);
2435 excph = get_float_exception_flags(&env->active_fpu.fp_status);
2436 if (excph & (float_flag_overflow | float_flag_invalid)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002437 wth2 = FP_TO_INT32_OVERFLOW;
thsb6d96be2008-07-09 11:05:10 +00002438 }
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002439
2440 set_float_exception_flags(excp | excph, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002441 update_fcr31(env, GETPC());
Aurelien Jarno5dbe90b2012-10-09 21:53:20 +02002442
thsb6d96be2008-07-09 11:05:10 +00002443 return ((uint64_t)wth2 << 32) | wt2;
2444}
2445
Blue Swirl895c2d02012-09-02 14:52:59 +00002446uint32_t helper_float_cvts_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002447{
2448 uint32_t fst2;
2449
thsf01be152008-09-18 11:57:27 +00002450 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002451 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002452 return fst2;
2453}
2454
Blue Swirl895c2d02012-09-02 14:52:59 +00002455uint32_t helper_float_cvts_w(CPUMIPSState *env, uint32_t wt0)
thsb6d96be2008-07-09 11:05:10 +00002456{
2457 uint32_t fst2;
2458
thsf01be152008-09-18 11:57:27 +00002459 fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002460 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002461 return fst2;
2462}
2463
Blue Swirl895c2d02012-09-02 14:52:59 +00002464uint32_t helper_float_cvts_l(CPUMIPSState *env, uint64_t dt0)
thsb6d96be2008-07-09 11:05:10 +00002465{
2466 uint32_t fst2;
2467
thsf01be152008-09-18 11:57:27 +00002468 fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002469 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002470 return fst2;
2471}
2472
Blue Swirl895c2d02012-09-02 14:52:59 +00002473uint32_t helper_float_cvts_pl(CPUMIPSState *env, uint32_t wt0)
thsb6d96be2008-07-09 11:05:10 +00002474{
2475 uint32_t wt2;
2476
thsb6d96be2008-07-09 11:05:10 +00002477 wt2 = wt0;
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002478 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002479 return wt2;
2480}
2481
Blue Swirl895c2d02012-09-02 14:52:59 +00002482uint32_t helper_float_cvts_pu(CPUMIPSState *env, uint32_t wth0)
thsb6d96be2008-07-09 11:05:10 +00002483{
2484 uint32_t wt2;
2485
thsb6d96be2008-07-09 11:05:10 +00002486 wt2 = wth0;
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002487 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002488 return wt2;
2489}
2490
Blue Swirl895c2d02012-09-02 14:52:59 +00002491uint32_t helper_float_cvtw_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002492{
2493 uint32_t wt2;
2494
thsf01be152008-09-18 11:57:27 +00002495 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002496 update_fcr31(env, GETPC());
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002497 if (get_float_exception_flags(&env->active_fpu.fp_status)
2498 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002499 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002500 }
thsb6d96be2008-07-09 11:05:10 +00002501 return wt2;
2502}
2503
Blue Swirl895c2d02012-09-02 14:52:59 +00002504uint32_t helper_float_cvtw_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002505{
2506 uint32_t wt2;
2507
thsf01be152008-09-18 11:57:27 +00002508 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002509 if (get_float_exception_flags(&env->active_fpu.fp_status)
2510 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002511 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002512 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002513 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002514 return wt2;
2515}
2516
Blue Swirl895c2d02012-09-02 14:52:59 +00002517uint64_t helper_float_roundl_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002518{
2519 uint64_t dt2;
2520
thsf01be152008-09-18 11:57:27 +00002521 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2522 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002523 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002524 if (get_float_exception_flags(&env->active_fpu.fp_status)
2525 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002526 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002527 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002528 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002529 return dt2;
thsfd4a04e2007-05-18 11:55:54 +00002530}
2531
Blue Swirl895c2d02012-09-02 14:52:59 +00002532uint64_t helper_float_roundl_s(CPUMIPSState *env, uint32_t fst0)
thsfd4a04e2007-05-18 11:55:54 +00002533{
thsb6d96be2008-07-09 11:05:10 +00002534 uint64_t dt2;
2535
thsf01be152008-09-18 11:57:27 +00002536 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2537 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002538 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002539 if (get_float_exception_flags(&env->active_fpu.fp_status)
2540 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002541 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002542 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002543 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002544 return dt2;
thsfd4a04e2007-05-18 11:55:54 +00002545}
2546
Blue Swirl895c2d02012-09-02 14:52:59 +00002547uint32_t helper_float_roundw_d(CPUMIPSState *env, uint64_t fdt0)
thsfd4a04e2007-05-18 11:55:54 +00002548{
thsb6d96be2008-07-09 11:05:10 +00002549 uint32_t wt2;
2550
thsf01be152008-09-18 11:57:27 +00002551 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2552 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002553 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002554 if (get_float_exception_flags(&env->active_fpu.fp_status)
2555 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002556 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002557 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002558 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002559 return wt2;
thsfd4a04e2007-05-18 11:55:54 +00002560}
2561
Blue Swirl895c2d02012-09-02 14:52:59 +00002562uint32_t helper_float_roundw_s(CPUMIPSState *env, uint32_t fst0)
thsfd4a04e2007-05-18 11:55:54 +00002563{
thsb6d96be2008-07-09 11:05:10 +00002564 uint32_t wt2;
2565
thsf01be152008-09-18 11:57:27 +00002566 set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
2567 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002568 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002569 if (get_float_exception_flags(&env->active_fpu.fp_status)
2570 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002571 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002572 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002573 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002574 return wt2;
thsfd4a04e2007-05-18 11:55:54 +00002575}
thsb6d96be2008-07-09 11:05:10 +00002576
Blue Swirl895c2d02012-09-02 14:52:59 +00002577uint64_t helper_float_truncl_d(CPUMIPSState *env, uint64_t fdt0)
thsfd4a04e2007-05-18 11:55:54 +00002578{
thsb6d96be2008-07-09 11:05:10 +00002579 uint64_t dt2;
2580
thsf01be152008-09-18 11:57:27 +00002581 dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002582 if (get_float_exception_flags(&env->active_fpu.fp_status)
2583 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002584 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002585 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002586 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002587 return dt2;
thsfd4a04e2007-05-18 11:55:54 +00002588}
thsb6d96be2008-07-09 11:05:10 +00002589
Blue Swirl895c2d02012-09-02 14:52:59 +00002590uint64_t helper_float_truncl_s(CPUMIPSState *env, uint32_t fst0)
thsfd4a04e2007-05-18 11:55:54 +00002591{
thsb6d96be2008-07-09 11:05:10 +00002592 uint64_t dt2;
2593
thsf01be152008-09-18 11:57:27 +00002594 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002595 if (get_float_exception_flags(&env->active_fpu.fp_status)
2596 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002597 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002598 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002599 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002600 return dt2;
thsfd4a04e2007-05-18 11:55:54 +00002601}
thsb6d96be2008-07-09 11:05:10 +00002602
Blue Swirl895c2d02012-09-02 14:52:59 +00002603uint32_t helper_float_truncw_d(CPUMIPSState *env, uint64_t fdt0)
thsfd4a04e2007-05-18 11:55:54 +00002604{
thsb6d96be2008-07-09 11:05:10 +00002605 uint32_t wt2;
2606
thsf01be152008-09-18 11:57:27 +00002607 wt2 = float64_to_int32_round_to_zero(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002608 if (get_float_exception_flags(&env->active_fpu.fp_status)
2609 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002610 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002611 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002612 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002613 return wt2;
2614}
2615
Blue Swirl895c2d02012-09-02 14:52:59 +00002616uint32_t helper_float_truncw_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002617{
2618 uint32_t wt2;
2619
thsf01be152008-09-18 11:57:27 +00002620 wt2 = float32_to_int32_round_to_zero(fst0, &env->active_fpu.fp_status);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002621 if (get_float_exception_flags(&env->active_fpu.fp_status)
2622 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002623 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002624 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002625 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002626 return wt2;
2627}
2628
Blue Swirl895c2d02012-09-02 14:52:59 +00002629uint64_t helper_float_ceill_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002630{
2631 uint64_t dt2;
2632
thsf01be152008-09-18 11:57:27 +00002633 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2634 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002635 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002636 if (get_float_exception_flags(&env->active_fpu.fp_status)
2637 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002638 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002639 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002640 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002641 return dt2;
2642}
2643
Blue Swirl895c2d02012-09-02 14:52:59 +00002644uint64_t helper_float_ceill_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002645{
2646 uint64_t dt2;
2647
thsf01be152008-09-18 11:57:27 +00002648 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2649 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002650 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002651 if (get_float_exception_flags(&env->active_fpu.fp_status)
2652 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002653 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002654 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002655 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002656 return dt2;
2657}
2658
Blue Swirl895c2d02012-09-02 14:52:59 +00002659uint32_t helper_float_ceilw_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002660{
2661 uint32_t wt2;
2662
thsf01be152008-09-18 11:57:27 +00002663 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2664 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002665 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002666 if (get_float_exception_flags(&env->active_fpu.fp_status)
2667 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002668 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002669 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002670 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002671 return wt2;
2672}
2673
Blue Swirl895c2d02012-09-02 14:52:59 +00002674uint32_t helper_float_ceilw_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002675{
2676 uint32_t wt2;
2677
thsf01be152008-09-18 11:57:27 +00002678 set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
2679 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002680 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002681 if (get_float_exception_flags(&env->active_fpu.fp_status)
2682 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002683 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002684 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002685 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002686 return wt2;
2687}
2688
Blue Swirl895c2d02012-09-02 14:52:59 +00002689uint64_t helper_float_floorl_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002690{
2691 uint64_t dt2;
2692
thsf01be152008-09-18 11:57:27 +00002693 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2694 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002695 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002696 if (get_float_exception_flags(&env->active_fpu.fp_status)
2697 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002698 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002699 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002700 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002701 return dt2;
2702}
2703
Blue Swirl895c2d02012-09-02 14:52:59 +00002704uint64_t helper_float_floorl_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002705{
2706 uint64_t dt2;
2707
thsf01be152008-09-18 11:57:27 +00002708 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2709 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002710 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002711 if (get_float_exception_flags(&env->active_fpu.fp_status)
2712 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002713 dt2 = FP_TO_INT64_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002714 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002715 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002716 return dt2;
2717}
2718
Blue Swirl895c2d02012-09-02 14:52:59 +00002719uint32_t helper_float_floorw_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002720{
2721 uint32_t wt2;
2722
thsf01be152008-09-18 11:57:27 +00002723 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2724 wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002725 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002726 if (get_float_exception_flags(&env->active_fpu.fp_status)
2727 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002728 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002729 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002730 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002731 return wt2;
2732}
2733
Blue Swirl895c2d02012-09-02 14:52:59 +00002734uint32_t helper_float_floorw_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002735{
2736 uint32_t wt2;
2737
thsf01be152008-09-18 11:57:27 +00002738 set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
2739 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
Stefan Weile320d052013-01-01 19:44:31 +01002740 restore_rounding_mode(env);
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002741 if (get_float_exception_flags(&env->active_fpu.fp_status)
2742 & (float_flag_invalid | float_flag_overflow)) {
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002743 wt2 = FP_TO_INT32_OVERFLOW;
Aurelien Jarno4cc2e5f2012-10-23 09:53:50 +02002744 }
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002745 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002746 return wt2;
thsfd4a04e2007-05-18 11:55:54 +00002747}
2748
thsa16336e2008-06-19 18:35:02 +00002749/* unary operations, not modifying fp status */
thsb6d96be2008-07-09 11:05:10 +00002750#define FLOAT_UNOP(name) \
aurel32c01fccd2009-03-08 00:06:01 +00002751uint64_t helper_float_ ## name ## _d(uint64_t fdt0) \
thsb6d96be2008-07-09 11:05:10 +00002752{ \
2753 return float64_ ## name(fdt0); \
2754} \
aurel32c01fccd2009-03-08 00:06:01 +00002755uint32_t helper_float_ ## name ## _s(uint32_t fst0) \
thsb6d96be2008-07-09 11:05:10 +00002756{ \
2757 return float32_ ## name(fst0); \
2758} \
aurel32c01fccd2009-03-08 00:06:01 +00002759uint64_t helper_float_ ## name ## _ps(uint64_t fdt0) \
thsb6d96be2008-07-09 11:05:10 +00002760{ \
2761 uint32_t wt0; \
2762 uint32_t wth0; \
2763 \
2764 wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF); \
2765 wth0 = float32_ ## name(fdt0 >> 32); \
2766 return ((uint64_t)wth0 << 32) | wt0; \
thsa16336e2008-06-19 18:35:02 +00002767}
2768FLOAT_UNOP(abs)
2769FLOAT_UNOP(chs)
2770#undef FLOAT_UNOP
2771
ths8dfdb872007-06-26 20:26:03 +00002772/* MIPS specific unary operations */
Blue Swirl895c2d02012-09-02 14:52:59 +00002773uint64_t helper_float_recip_d(CPUMIPSState *env, uint64_t fdt0)
ths8dfdb872007-06-26 20:26:03 +00002774{
thsb6d96be2008-07-09 11:05:10 +00002775 uint64_t fdt2;
2776
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002777 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002778 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002779 return fdt2;
ths8dfdb872007-06-26 20:26:03 +00002780}
ths57fa1fb2007-05-19 20:29:41 +00002781
Blue Swirl895c2d02012-09-02 14:52:59 +00002782uint32_t helper_float_recip_s(CPUMIPSState *env, uint32_t fst0)
ths8dfdb872007-06-26 20:26:03 +00002783{
thsb6d96be2008-07-09 11:05:10 +00002784 uint32_t fst2;
2785
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002786 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002787 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002788 return fst2;
ths8dfdb872007-06-26 20:26:03 +00002789}
2790
Blue Swirl895c2d02012-09-02 14:52:59 +00002791uint64_t helper_float_rsqrt_d(CPUMIPSState *env, uint64_t fdt0)
ths8dfdb872007-06-26 20:26:03 +00002792{
thsb6d96be2008-07-09 11:05:10 +00002793 uint64_t fdt2;
2794
thsf01be152008-09-18 11:57:27 +00002795 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002796 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002797 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002798 return fdt2;
ths8dfdb872007-06-26 20:26:03 +00002799}
2800
Blue Swirl895c2d02012-09-02 14:52:59 +00002801uint32_t helper_float_rsqrt_s(CPUMIPSState *env, uint32_t fst0)
ths8dfdb872007-06-26 20:26:03 +00002802{
thsb6d96be2008-07-09 11:05:10 +00002803 uint32_t fst2;
2804
thsf01be152008-09-18 11:57:27 +00002805 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002806 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002807 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002808 return fst2;
ths8dfdb872007-06-26 20:26:03 +00002809}
thsb6d96be2008-07-09 11:05:10 +00002810
Blue Swirl895c2d02012-09-02 14:52:59 +00002811uint64_t helper_float_recip1_d(CPUMIPSState *env, uint64_t fdt0)
ths8dfdb872007-06-26 20:26:03 +00002812{
thsb6d96be2008-07-09 11:05:10 +00002813 uint64_t fdt2;
2814
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002815 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002816 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002817 return fdt2;
ths8dfdb872007-06-26 20:26:03 +00002818}
thsb6d96be2008-07-09 11:05:10 +00002819
Blue Swirl895c2d02012-09-02 14:52:59 +00002820uint32_t helper_float_recip1_s(CPUMIPSState *env, uint32_t fst0)
ths8dfdb872007-06-26 20:26:03 +00002821{
thsb6d96be2008-07-09 11:05:10 +00002822 uint32_t fst2;
2823
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002824 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002825 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002826 return fst2;
ths8dfdb872007-06-26 20:26:03 +00002827}
ths57fa1fb2007-05-19 20:29:41 +00002828
Blue Swirl895c2d02012-09-02 14:52:59 +00002829uint64_t helper_float_recip1_ps(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002830{
2831 uint32_t fst2;
2832 uint32_t fsth2;
2833
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002834 fst2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2835 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002836 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002837 return ((uint64_t)fsth2 << 32) | fst2;
2838}
2839
Blue Swirl895c2d02012-09-02 14:52:59 +00002840uint64_t helper_float_rsqrt1_d(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002841{
2842 uint64_t fdt2;
2843
thsf01be152008-09-18 11:57:27 +00002844 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002845 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002846 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002847 return fdt2;
2848}
2849
Blue Swirl895c2d02012-09-02 14:52:59 +00002850uint32_t helper_float_rsqrt1_s(CPUMIPSState *env, uint32_t fst0)
thsb6d96be2008-07-09 11:05:10 +00002851{
2852 uint32_t fst2;
2853
thsf01be152008-09-18 11:57:27 +00002854 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002855 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002856 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002857 return fst2;
2858}
2859
Blue Swirl895c2d02012-09-02 14:52:59 +00002860uint64_t helper_float_rsqrt1_ps(CPUMIPSState *env, uint64_t fdt0)
thsb6d96be2008-07-09 11:05:10 +00002861{
2862 uint32_t fst2;
2863 uint32_t fsth2;
2864
thsf01be152008-09-18 11:57:27 +00002865 fst2 = float32_sqrt(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
2866 fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002867 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2868 fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002869 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002870 return ((uint64_t)fsth2 << 32) | fst2;
2871}
2872
Blue Swirl895c2d02012-09-02 14:52:59 +00002873#define FLOAT_OP(name, p) void helper_float_##name##_##p(CPUMIPSState *env)
thsb6d96be2008-07-09 11:05:10 +00002874
thsfd4a04e2007-05-18 11:55:54 +00002875/* binary operations */
thsb6d96be2008-07-09 11:05:10 +00002876#define FLOAT_BINOP(name) \
Blue Swirl895c2d02012-09-02 14:52:59 +00002877uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
2878 uint64_t fdt0, uint64_t fdt1) \
thsb6d96be2008-07-09 11:05:10 +00002879{ \
2880 uint64_t dt2; \
2881 \
thsf01be152008-09-18 11:57:27 +00002882 dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002883 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00002884 return dt2; \
2885} \
2886 \
Blue Swirl895c2d02012-09-02 14:52:59 +00002887uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
2888 uint32_t fst0, uint32_t fst1) \
thsb6d96be2008-07-09 11:05:10 +00002889{ \
2890 uint32_t wt2; \
2891 \
thsf01be152008-09-18 11:57:27 +00002892 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002893 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00002894 return wt2; \
2895} \
2896 \
Blue Swirl895c2d02012-09-02 14:52:59 +00002897uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
2898 uint64_t fdt0, \
2899 uint64_t fdt1) \
thsb6d96be2008-07-09 11:05:10 +00002900{ \
2901 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2902 uint32_t fsth0 = fdt0 >> 32; \
2903 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
2904 uint32_t fsth1 = fdt1 >> 32; \
2905 uint32_t wt2; \
2906 uint32_t wth2; \
2907 \
thsf01be152008-09-18 11:57:27 +00002908 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
2909 wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002910 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00002911 return ((uint64_t)wth2 << 32) | wt2; \
thsfd4a04e2007-05-18 11:55:54 +00002912}
thsb6d96be2008-07-09 11:05:10 +00002913
thsfd4a04e2007-05-18 11:55:54 +00002914FLOAT_BINOP(add)
2915FLOAT_BINOP(sub)
2916FLOAT_BINOP(mul)
2917FLOAT_BINOP(div)
2918#undef FLOAT_BINOP
2919
Richard Sandifordf54c35d2013-01-22 17:16:00 +00002920#define UNFUSED_FMA(prefix, a, b, c, flags) \
2921{ \
2922 a = prefix##_mul(a, b, &env->active_fpu.fp_status); \
2923 if ((flags) & float_muladd_negate_c) { \
2924 a = prefix##_sub(a, c, &env->active_fpu.fp_status); \
2925 } else { \
2926 a = prefix##_add(a, c, &env->active_fpu.fp_status); \
2927 } \
2928 if ((flags) & float_muladd_negate_result) { \
2929 a = prefix##_chs(a); \
2930 } \
2931}
2932
Aurelien Jarnob3d6cd42012-10-09 21:53:20 +02002933/* FMA based operations */
2934#define FLOAT_FMA(name, type) \
2935uint64_t helper_float_ ## name ## _d(CPUMIPSState *env, \
2936 uint64_t fdt0, uint64_t fdt1, \
2937 uint64_t fdt2) \
2938{ \
Richard Sandifordf54c35d2013-01-22 17:16:00 +00002939 UNFUSED_FMA(float64, fdt0, fdt1, fdt2, type); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002940 update_fcr31(env, GETPC()); \
Aurelien Jarnob3d6cd42012-10-09 21:53:20 +02002941 return fdt0; \
2942} \
2943 \
2944uint32_t helper_float_ ## name ## _s(CPUMIPSState *env, \
2945 uint32_t fst0, uint32_t fst1, \
2946 uint32_t fst2) \
2947{ \
Richard Sandifordf54c35d2013-01-22 17:16:00 +00002948 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002949 update_fcr31(env, GETPC()); \
Aurelien Jarnob3d6cd42012-10-09 21:53:20 +02002950 return fst0; \
2951} \
2952 \
2953uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env, \
2954 uint64_t fdt0, uint64_t fdt1, \
2955 uint64_t fdt2) \
2956{ \
2957 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2958 uint32_t fsth0 = fdt0 >> 32; \
2959 uint32_t fst1 = fdt1 & 0XFFFFFFFF; \
2960 uint32_t fsth1 = fdt1 >> 32; \
2961 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
2962 uint32_t fsth2 = fdt2 >> 32; \
2963 \
Richard Sandifordf54c35d2013-01-22 17:16:00 +00002964 UNFUSED_FMA(float32, fst0, fst1, fst2, type); \
2965 UNFUSED_FMA(float32, fsth0, fsth1, fsth2, type); \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002966 update_fcr31(env, GETPC()); \
Aurelien Jarnob3d6cd42012-10-09 21:53:20 +02002967 return ((uint64_t)fsth0 << 32) | fst0; \
thsa16336e2008-06-19 18:35:02 +00002968}
Aurelien Jarnob3d6cd42012-10-09 21:53:20 +02002969FLOAT_FMA(madd, 0)
2970FLOAT_FMA(msub, float_muladd_negate_c)
2971FLOAT_FMA(nmadd, float_muladd_negate_result)
2972FLOAT_FMA(nmsub, float_muladd_negate_result | float_muladd_negate_c)
2973#undef FLOAT_FMA
thsa16336e2008-06-19 18:35:02 +00002974
ths8dfdb872007-06-26 20:26:03 +00002975/* MIPS specific binary operations */
Blue Swirl895c2d02012-09-02 14:52:59 +00002976uint64_t helper_float_recip2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
ths8dfdb872007-06-26 20:26:03 +00002977{
thsf01be152008-09-18 11:57:27 +00002978 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002979 fdt2 = float64_chs(float64_sub(fdt2, float64_one, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002980 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002981 return fdt2;
ths8dfdb872007-06-26 20:26:03 +00002982}
2983
Blue Swirl895c2d02012-09-02 14:52:59 +00002984uint32_t helper_float_recip2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
ths8dfdb872007-06-26 20:26:03 +00002985{
thsf01be152008-09-18 11:57:27 +00002986 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02002987 fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01002988 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00002989 return fst2;
ths8dfdb872007-06-26 20:26:03 +00002990}
ths57fa1fb2007-05-19 20:29:41 +00002991
Blue Swirl895c2d02012-09-02 14:52:59 +00002992uint64_t helper_float_recip2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
thsfd4a04e2007-05-18 11:55:54 +00002993{
thsb6d96be2008-07-09 11:05:10 +00002994 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
2995 uint32_t fsth0 = fdt0 >> 32;
2996 uint32_t fst2 = fdt2 & 0XFFFFFFFF;
2997 uint32_t fsth2 = fdt2 >> 32;
2998
thsf01be152008-09-18 11:57:27 +00002999 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
3000 fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02003001 fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
3002 fsth2 = float32_chs(float32_sub(fsth2, float32_one, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003003 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003004 return ((uint64_t)fsth2 << 32) | fst2;
thsfd4a04e2007-05-18 11:55:54 +00003005}
3006
Blue Swirl895c2d02012-09-02 14:52:59 +00003007uint64_t helper_float_rsqrt2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
ths57fa1fb2007-05-19 20:29:41 +00003008{
thsf01be152008-09-18 11:57:27 +00003009 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02003010 fdt2 = float64_sub(fdt2, float64_one, &env->active_fpu.fp_status);
thsf01be152008-09-18 11:57:27 +00003011 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003012 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003013 return fdt2;
3014}
3015
Blue Swirl895c2d02012-09-02 14:52:59 +00003016uint32_t helper_float_rsqrt2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
thsb6d96be2008-07-09 11:05:10 +00003017{
thsf01be152008-09-18 11:57:27 +00003018 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02003019 fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
thsf01be152008-09-18 11:57:27 +00003020 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003021 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003022 return fst2;
3023}
3024
Blue Swirl895c2d02012-09-02 14:52:59 +00003025uint64_t helper_float_rsqrt2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
thsb6d96be2008-07-09 11:05:10 +00003026{
3027 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
3028 uint32_t fsth0 = fdt0 >> 32;
3029 uint32_t fst2 = fdt2 & 0XFFFFFFFF;
3030 uint32_t fsth2 = fdt2 >> 32;
3031
thsf01be152008-09-18 11:57:27 +00003032 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
3033 fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
Aurelien Jarno05993cd2012-10-23 10:12:00 +02003034 fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
3035 fsth2 = float32_sub(fsth2, float32_one, &env->active_fpu.fp_status);
thsf01be152008-09-18 11:57:27 +00003036 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
3037 fsth2 = float32_chs(float32_div(fsth2, FLOAT_TWO32, &env->active_fpu.fp_status));
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003038 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003039 return ((uint64_t)fsth2 << 32) | fst2;
3040}
3041
Blue Swirl895c2d02012-09-02 14:52:59 +00003042uint64_t helper_float_addr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
thsb6d96be2008-07-09 11:05:10 +00003043{
3044 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
3045 uint32_t fsth0 = fdt0 >> 32;
3046 uint32_t fst1 = fdt1 & 0XFFFFFFFF;
3047 uint32_t fsth1 = fdt1 >> 32;
3048 uint32_t fst2;
3049 uint32_t fsth2;
3050
thsf01be152008-09-18 11:57:27 +00003051 fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status);
3052 fsth2 = float32_add (fst1, fsth1, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003053 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003054 return ((uint64_t)fsth2 << 32) | fst2;
3055}
3056
Blue Swirl895c2d02012-09-02 14:52:59 +00003057uint64_t helper_float_mulr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
thsb6d96be2008-07-09 11:05:10 +00003058{
3059 uint32_t fst0 = fdt0 & 0XFFFFFFFF;
3060 uint32_t fsth0 = fdt0 >> 32;
3061 uint32_t fst1 = fdt1 & 0XFFFFFFFF;
3062 uint32_t fsth1 = fdt1 >> 32;
3063 uint32_t fst2;
3064 uint32_t fsth2;
3065
thsf01be152008-09-18 11:57:27 +00003066 fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status);
3067 fsth2 = float32_mul (fst1, fsth1, &env->active_fpu.fp_status);
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003068 update_fcr31(env, GETPC());
thsb6d96be2008-07-09 11:05:10 +00003069 return ((uint64_t)fsth2 << 32) | fst2;
ths57fa1fb2007-05-19 20:29:41 +00003070}
3071
ths8dfdb872007-06-26 20:26:03 +00003072/* compare operations */
thsb6d96be2008-07-09 11:05:10 +00003073#define FOP_COND_D(op, cond) \
Blue Swirl895c2d02012-09-02 14:52:59 +00003074void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3075 uint64_t fdt1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003076{ \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003077 int c; \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003078 c = cond; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003079 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003080 if (c) \
thsf01be152008-09-18 11:57:27 +00003081 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003082 else \
thsf01be152008-09-18 11:57:27 +00003083 CLEAR_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003084} \
Blue Swirl895c2d02012-09-02 14:52:59 +00003085void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3086 uint64_t fdt1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003087{ \
3088 int c; \
3089 fdt0 = float64_abs(fdt0); \
3090 fdt1 = float64_abs(fdt1); \
3091 c = cond; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003092 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003093 if (c) \
thsf01be152008-09-18 11:57:27 +00003094 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003095 else \
thsf01be152008-09-18 11:57:27 +00003096 CLEAR_FP_COND(cc, env->active_fpu); \
thsfd4a04e2007-05-18 11:55:54 +00003097}
3098
thsfd4a04e2007-05-18 11:55:54 +00003099/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003100 * but float64_unordered_quiet() is still called. */
3101FOP_COND_D(f, (float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status), 0))
3102FOP_COND_D(un, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003103FOP_COND_D(eq, float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
Aurelien Jarno211315f2011-04-14 00:49:29 +02003104FOP_COND_D(ueq, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003105FOP_COND_D(olt, float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3106FOP_COND_D(ult, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3107FOP_COND_D(ole, float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3108FOP_COND_D(ule, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
thsfd4a04e2007-05-18 11:55:54 +00003109/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003110 * but float64_unordered() is still called. */
3111FOP_COND_D(sf, (float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status), 0))
3112FOP_COND_D(ngle,float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003113FOP_COND_D(seq, float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
3114FOP_COND_D(ngl, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
3115FOP_COND_D(lt, float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003116FOP_COND_D(nge, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003117FOP_COND_D(le, float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003118FOP_COND_D(ngt, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status) || float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
thsfd4a04e2007-05-18 11:55:54 +00003119
thsb6d96be2008-07-09 11:05:10 +00003120#define FOP_COND_S(op, cond) \
Blue Swirl895c2d02012-09-02 14:52:59 +00003121void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3122 uint32_t fst1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003123{ \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003124 int c; \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003125 c = cond; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003126 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003127 if (c) \
thsf01be152008-09-18 11:57:27 +00003128 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003129 else \
thsf01be152008-09-18 11:57:27 +00003130 CLEAR_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003131} \
Blue Swirl895c2d02012-09-02 14:52:59 +00003132void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0, \
3133 uint32_t fst1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003134{ \
3135 int c; \
3136 fst0 = float32_abs(fst0); \
3137 fst1 = float32_abs(fst1); \
3138 c = cond; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003139 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003140 if (c) \
thsf01be152008-09-18 11:57:27 +00003141 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003142 else \
thsf01be152008-09-18 11:57:27 +00003143 CLEAR_FP_COND(cc, env->active_fpu); \
thsfd4a04e2007-05-18 11:55:54 +00003144}
3145
thsfd4a04e2007-05-18 11:55:54 +00003146/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003147 * but float32_unordered_quiet() is still called. */
3148FOP_COND_S(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0))
3149FOP_COND_S(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003150FOP_COND_S(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
Aurelien Jarno211315f2011-04-14 00:49:29 +02003151FOP_COND_S(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003152FOP_COND_S(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
3153FOP_COND_S(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
3154FOP_COND_S(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
3155FOP_COND_S(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
thsfd4a04e2007-05-18 11:55:54 +00003156/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003157 * but float32_unordered() is still called. */
3158FOP_COND_S(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0))
3159FOP_COND_S(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003160FOP_COND_S(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status))
3161FOP_COND_S(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status))
3162FOP_COND_S(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003163FOP_COND_S(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003164FOP_COND_S(le, float32_le(fst0, fst1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003165FOP_COND_S(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status))
thsfd4a04e2007-05-18 11:55:54 +00003166
thsb6d96be2008-07-09 11:05:10 +00003167#define FOP_COND_PS(op, condl, condh) \
Blue Swirl895c2d02012-09-02 14:52:59 +00003168void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3169 uint64_t fdt1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003170{ \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003171 uint32_t fst0, fsth0, fst1, fsth1; \
3172 int ch, cl; \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003173 fst0 = fdt0 & 0XFFFFFFFF; \
3174 fsth0 = fdt0 >> 32; \
3175 fst1 = fdt1 & 0XFFFFFFFF; \
3176 fsth1 = fdt1 >> 32; \
3177 cl = condl; \
3178 ch = condh; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003179 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003180 if (cl) \
thsf01be152008-09-18 11:57:27 +00003181 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003182 else \
thsf01be152008-09-18 11:57:27 +00003183 CLEAR_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003184 if (ch) \
thsf01be152008-09-18 11:57:27 +00003185 SET_FP_COND(cc + 1, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003186 else \
thsf01be152008-09-18 11:57:27 +00003187 CLEAR_FP_COND(cc + 1, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003188} \
Blue Swirl895c2d02012-09-02 14:52:59 +00003189void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0, \
3190 uint64_t fdt1, int cc) \
thsb6d96be2008-07-09 11:05:10 +00003191{ \
Aurelien Jarno6a385342011-04-14 00:49:30 +02003192 uint32_t fst0, fsth0, fst1, fsth1; \
3193 int ch, cl; \
3194 fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3195 fsth0 = float32_abs(fdt0 >> 32); \
3196 fst1 = float32_abs(fdt1 & 0XFFFFFFFF); \
3197 fsth1 = float32_abs(fdt1 >> 32); \
3198 cl = condl; \
3199 ch = condh; \
Aurelien Jarno5f7319c2012-10-28 19:34:03 +01003200 update_fcr31(env, GETPC()); \
thsb6d96be2008-07-09 11:05:10 +00003201 if (cl) \
thsf01be152008-09-18 11:57:27 +00003202 SET_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003203 else \
thsf01be152008-09-18 11:57:27 +00003204 CLEAR_FP_COND(cc, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003205 if (ch) \
thsf01be152008-09-18 11:57:27 +00003206 SET_FP_COND(cc + 1, env->active_fpu); \
thsb6d96be2008-07-09 11:05:10 +00003207 else \
thsf01be152008-09-18 11:57:27 +00003208 CLEAR_FP_COND(cc + 1, env->active_fpu); \
thsfd4a04e2007-05-18 11:55:54 +00003209}
3210
3211/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003212 * but float32_unordered_quiet() is still called. */
3213FOP_COND_PS(f, (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0),
3214 (float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status), 0))
3215FOP_COND_PS(un, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status),
3216 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003217FOP_COND_PS(eq, float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
3218 float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
Aurelien Jarno211315f2011-04-14 00:49:29 +02003219FOP_COND_PS(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
3220 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003221FOP_COND_PS(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
3222 float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3223FOP_COND_PS(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
3224 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3225FOP_COND_PS(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
3226 float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3227FOP_COND_PS(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status) || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
3228 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
thsfd4a04e2007-05-18 11:55:54 +00003229/* NOTE: the comma operator will make "cond" to eval to false,
Aurelien Jarno3a599382011-04-14 00:49:29 +02003230 * but float32_unordered() is still called. */
3231FOP_COND_PS(sf, (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0),
3232 (float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status), 0))
3233FOP_COND_PS(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status),
3234 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003235FOP_COND_PS(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status),
3236 float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
3237FOP_COND_PS(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0, fst1, &env->active_fpu.fp_status),
3238 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
3239FOP_COND_PS(lt, float32_lt(fst0, fst1, &env->active_fpu.fp_status),
3240 float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003241FOP_COND_PS(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0, fst1, &env->active_fpu.fp_status),
3242 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
Aurelien Jarno06a0e6b2011-04-14 00:49:30 +02003243FOP_COND_PS(le, float32_le(fst0, fst1, &env->active_fpu.fp_status),
3244 float32_le(fsth0, fsth1, &env->active_fpu.fp_status))
Aurelien Jarno3a599382011-04-14 00:49:29 +02003245FOP_COND_PS(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0, fst1, &env->active_fpu.fp_status),
3246 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status) || float32_le(fsth0, fsth1, &env->active_fpu.fp_status))