op_helper.c 102.1 KB
Newer Older
B
bellard 已提交
1 2
/*
 *  MIPS emulation helpers for qemu.
3
 *
B
bellard 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16
 *  Copyright (c) 2004-2005 Jocelyn Mayer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
B
bellard 已提交
18
 */
19
#include <stdlib.h>
B
Blue Swirl 已提交
20
#include "cpu.h"
21 22
#include "host-utils.h"

P
pbrook 已提交
23
#include "helper.h"
24

B
Blue Swirl 已提交
25
#if !defined(CONFIG_USER_ONLY)
26
#include "exec/softmmu_exec.h"
B
Blue Swirl 已提交
27 28
#endif /* !defined(CONFIG_USER_ONLY) */

29
#ifndef CONFIG_USER_ONLY
30
static inline void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global);
31 32
#endif

B
bellard 已提交
33 34 35
/*****************************************************************************/
/* Exceptions processing helpers */

36 37 38 39
static inline void QEMU_NORETURN do_raise_exception_err(CPUMIPSState *env,
                                                        uint32_t exception,
                                                        int error_code,
                                                        uintptr_t pc)
B
bellard 已提交
40 41
{
#if 1
42 43
    if (exception < 0x100)
        qemu_log("%s: %d %d\n", __func__, exception, error_code);
B
bellard 已提交
44 45 46
#endif
    env->exception_index = exception;
    env->error_code = error_code;
47 48 49

    if (pc) {
        /* now we have a real cpu fault */
B
Blue Swirl 已提交
50
        cpu_restore_state(env, pc);
51 52
    }

B
Blue Swirl 已提交
53
    cpu_loop_exit(env);
B
bellard 已提交
54 55
}

56 57 58
static inline void QEMU_NORETURN do_raise_exception(CPUMIPSState *env,
                                                    uint32_t exception,
                                                    uintptr_t pc)
B
bellard 已提交
59
{
60
    do_raise_exception_err(env, exception, 0, pc);
B
bellard 已提交
61 62
}

63 64
void helper_raise_exception_err(CPUMIPSState *env, uint32_t exception,
                                int error_code)
B
bellard 已提交
65
{
66 67
    do_raise_exception_err(env, exception, error_code, 0);
}
68

69 70 71
void helper_raise_exception(CPUMIPSState *env, uint32_t exception)
{
    do_raise_exception(env, exception, 0);
B
bellard 已提交
72 73
}

74 75
#if defined(CONFIG_USER_ONLY)
#define HELPER_LD(name, insn, type)                                     \
76 77
static inline type do_##name(CPUMIPSState *env, target_ulong addr,      \
                             int mem_idx)                               \
78 79 80 81 82
{                                                                       \
    return (type) insn##_raw(addr);                                     \
}
#else
#define HELPER_LD(name, insn, type)                                     \
83 84
static inline type do_##name(CPUMIPSState *env, target_ulong addr,      \
                             int mem_idx)                               \
85 86 87
{                                                                       \
    switch (mem_idx)                                                    \
    {                                                                   \
88 89
    case 0: return (type) cpu_##insn##_kernel(env, addr); break;        \
    case 1: return (type) cpu_##insn##_super(env, addr); break;         \
90
    default:                                                            \
91
    case 2: return (type) cpu_##insn##_user(env, addr); break;          \
92 93 94 95 96 97 98 99 100 101 102 103
    }                                                                   \
}
#endif
HELPER_LD(lbu, ldub, uint8_t)
HELPER_LD(lw, ldl, int32_t)
#ifdef TARGET_MIPS64
HELPER_LD(ld, ldq, int64_t)
#endif
#undef HELPER_LD

#if defined(CONFIG_USER_ONLY)
#define HELPER_ST(name, insn, type)                                     \
104 105
static inline void do_##name(CPUMIPSState *env, target_ulong addr,      \
                             type val, int mem_idx)                     \
106 107 108 109 110
{                                                                       \
    insn##_raw(addr, val);                                              \
}
#else
#define HELPER_ST(name, insn, type)                                     \
111 112
static inline void do_##name(CPUMIPSState *env, target_ulong addr,      \
                             type val, int mem_idx)                     \
113 114 115
{                                                                       \
    switch (mem_idx)                                                    \
    {                                                                   \
116 117
    case 0: cpu_##insn##_kernel(env, addr, val); break;                 \
    case 1: cpu_##insn##_super(env, addr, val); break;                  \
118
    default:                                                            \
119
    case 2: cpu_##insn##_user(env, addr, val); break;                   \
120 121 122 123 124 125 126 127 128 129
    }                                                                   \
}
#endif
HELPER_ST(sb, stb, uint8_t)
HELPER_ST(sw, stl, uint32_t)
#ifdef TARGET_MIPS64
HELPER_ST(sd, stq, uint64_t)
#endif
#undef HELPER_ST

130
target_ulong helper_clo (target_ulong arg1)
131
{
132
    return clo32(arg1);
133 134
}

135
target_ulong helper_clz (target_ulong arg1)
136
{
137
    return clz32(arg1);
138 139
}

140
#if defined(TARGET_MIPS64)
141
target_ulong helper_dclo (target_ulong arg1)
142
{
143
    return clo64(arg1);
144 145
}

146
target_ulong helper_dclz (target_ulong arg1)
147
{
148
    return clz64(arg1);
149
}
150
#endif /* TARGET_MIPS64 */
151

B
bellard 已提交
152
/* 64 bits arithmetic for 32 bits hosts */
153
static inline uint64_t get_HILO(CPUMIPSState *env)
B
bellard 已提交
154
{
155
    return ((uint64_t)(env->active_tc.HI[0]) << 32) | (uint32_t)env->active_tc.LO[0];
B
bellard 已提交
156 157
}

158
static inline target_ulong set_HIT0_LO(CPUMIPSState *env, uint64_t HILO)
159
{
160
    target_ulong tmp;
161
    env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
162 163
    tmp = env->active_tc.HI[0] = (int32_t)(HILO >> 32);
    return tmp;
164 165
}

166
static inline target_ulong set_HI_LOT0(CPUMIPSState *env, uint64_t HILO)
167
{
168
    target_ulong tmp = env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
169
    env->active_tc.HI[0] = (int32_t)(HILO >> 32);
170
    return tmp;
171 172 173
}

/* Multiplication variants of the vr54xx. */
174 175
target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1,
                         target_ulong arg2)
176
{
177 178
    return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 *
                                 (int64_t)(int32_t)arg2));
179 180
}

181 182
target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1,
                          target_ulong arg2)
183
{
184 185
    return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 *
                       (uint64_t)(uint32_t)arg2);
186 187
}

188 189
target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1,
                         target_ulong arg2)
190
{
191 192
    return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
                       (int64_t)(int32_t)arg2);
193 194
}

195 196
target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1,
                           target_ulong arg2)
197
{
198 199
    return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
                       (int64_t)(int32_t)arg2);
200 201
}

202 203
target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1,
                          target_ulong arg2)
204
{
205 206
    return set_HI_LOT0(env, (uint64_t)get_HILO(env) +
                       (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
207 208
}

209 210
target_ulong helper_macchiu(CPUMIPSState *env, target_ulong arg1,
                            target_ulong arg2)
211
{
212 213
    return set_HIT0_LO(env, (uint64_t)get_HILO(env) +
                       (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
214 215
}

216 217
target_ulong helper_msac(CPUMIPSState *env, target_ulong arg1,
                         target_ulong arg2)
218
{
219 220
    return set_HI_LOT0(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
                       (int64_t)(int32_t)arg2);
221 222
}

223 224
target_ulong helper_msachi(CPUMIPSState *env, target_ulong arg1,
                           target_ulong arg2)
225
{
226 227
    return set_HIT0_LO(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
                       (int64_t)(int32_t)arg2);
228 229
}

230 231
target_ulong helper_msacu(CPUMIPSState *env, target_ulong arg1,
                          target_ulong arg2)
232
{
233 234
    return set_HI_LOT0(env, (uint64_t)get_HILO(env) -
                       (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
235 236
}

237 238
target_ulong helper_msachiu(CPUMIPSState *env, target_ulong arg1,
                            target_ulong arg2)
239
{
240 241
    return set_HIT0_LO(env, (uint64_t)get_HILO(env) -
                       (uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
242 243
}

244 245
target_ulong helper_mulhi(CPUMIPSState *env, target_ulong arg1,
                          target_ulong arg2)
246
{
247
    return set_HIT0_LO(env, (int64_t)(int32_t)arg1 * (int64_t)(int32_t)arg2);
248 249
}

250 251
target_ulong helper_mulhiu(CPUMIPSState *env, target_ulong arg1,
                           target_ulong arg2)
252
{
253 254
    return set_HIT0_LO(env, (uint64_t)(uint32_t)arg1 *
                       (uint64_t)(uint32_t)arg2);
255 256
}

257 258
target_ulong helper_mulshi(CPUMIPSState *env, target_ulong arg1,
                           target_ulong arg2)
259
{
260 261
    return set_HIT0_LO(env, 0 - (int64_t)(int32_t)arg1 *
                       (int64_t)(int32_t)arg2);
262 263
}

264 265
target_ulong helper_mulshiu(CPUMIPSState *env, target_ulong arg1,
                            target_ulong arg2)
266
{
267 268
    return set_HIT0_LO(env, 0 - (uint64_t)(uint32_t)arg1 *
                       (uint64_t)(uint32_t)arg2);
269
}
B
bellard 已提交
270

271
#ifdef TARGET_MIPS64
272
void helper_dmult(CPUMIPSState *env, target_ulong arg1, target_ulong arg2)
273
{
274
    muls64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2);
275 276
}

277
void helper_dmultu(CPUMIPSState *env, target_ulong arg1, target_ulong arg2)
278
{
279
    mulu64(&(env->active_tc.LO[0]), &(env->active_tc.HI[0]), arg1, arg2);
280 281 282
}
#endif

283
#ifndef CONFIG_USER_ONLY
284

A
Avi Kivity 已提交
285
static inline hwaddr do_translate_address(CPUMIPSState *env,
286 287
                                                      target_ulong address,
                                                      int rw)
288
{
A
Avi Kivity 已提交
289
    hwaddr lladdr;
290 291 292 293

    lladdr = cpu_mips_translate_address(env, address, rw);

    if (lladdr == -1LL) {
B
Blue Swirl 已提交
294
        cpu_loop_exit(env);
295 296 297 298 299
    } else {
        return lladdr;
    }
}

300
#define HELPER_LD_ATOMIC(name, insn)                                          \
301
target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx)  \
302
{                                                                             \
303 304
    env->lladdr = do_translate_address(env, arg, 0);                          \
    env->llval = do_##insn(env, arg, mem_idx);                                \
305 306 307 308 309 310 311 312 313
    return env->llval;                                                        \
}
HELPER_LD_ATOMIC(ll, lw)
#ifdef TARGET_MIPS64
HELPER_LD_ATOMIC(lld, ld)
#endif
#undef HELPER_LD_ATOMIC

#define HELPER_ST_ATOMIC(name, ld_insn, st_insn, almask)                      \
314 315
target_ulong helper_##name(CPUMIPSState *env, target_ulong arg1,              \
                           target_ulong arg2, int mem_idx)                    \
316 317 318 319 320
{                                                                             \
    target_long tmp;                                                          \
                                                                              \
    if (arg2 & almask) {                                                      \
        env->CP0_BadVAddr = arg2;                                             \
321
        helper_raise_exception(env, EXCP_AdES);                               \
322
    }                                                                         \
323 324
    if (do_translate_address(env, arg2, 1) == env->lladdr) {                  \
        tmp = do_##ld_insn(env, arg2, mem_idx);                               \
325
        if (tmp == env->llval) {                                              \
326
            do_##st_insn(env, arg2, arg1, mem_idx);                           \
327 328 329 330 331 332 333 334 335 336 337 338
            return 1;                                                         \
        }                                                                     \
    }                                                                         \
    return 0;                                                                 \
}
HELPER_ST_ATOMIC(sc, lw, sw, 0x3)
#ifdef TARGET_MIPS64
HELPER_ST_ATOMIC(scd, ld, sd, 0x7)
#endif
#undef HELPER_ST_ATOMIC
#endif

T
ths 已提交
339 340 341 342 343 344 345 346
#ifdef TARGET_WORDS_BIGENDIAN
#define GET_LMASK(v) ((v) & 3)
#define GET_OFFSET(addr, offset) (addr + (offset))
#else
#define GET_LMASK(v) (((v) & 3) ^ 3)
#define GET_OFFSET(addr, offset) (addr - (offset))
#endif

347 348
void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
                int mem_idx)
T
ths 已提交
349
{
350
    do_sb(env, arg2, (uint8_t)(arg1 >> 24), mem_idx);
T
ths 已提交
351

352
    if (GET_LMASK(arg2) <= 2)
353
        do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 16), mem_idx);
T
ths 已提交
354

355
    if (GET_LMASK(arg2) <= 1)
356
        do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 8), mem_idx);
T
ths 已提交
357

358
    if (GET_LMASK(arg2) == 0)
359
        do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)arg1, mem_idx);
T
ths 已提交
360 361
}

362 363
void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
                int mem_idx)
T
ths 已提交
364
{
365
    do_sb(env, arg2, (uint8_t)arg1, mem_idx);
T
ths 已提交
366

367
    if (GET_LMASK(arg2) >= 1)
368
        do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
T
ths 已提交
369

370
    if (GET_LMASK(arg2) >= 2)
371
        do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
T
ths 已提交
372

373
    if (GET_LMASK(arg2) == 3)
374
        do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
T
ths 已提交
375 376 377 378 379 380 381 382 383 384 385 386
}

#if defined(TARGET_MIPS64)
/* "half" load and stores.  We must do the memory access inline,
   or fault handling won't work.  */

#ifdef TARGET_WORDS_BIGENDIAN
#define GET_LMASK64(v) ((v) & 7)
#else
#define GET_LMASK64(v) (((v) & 7) ^ 7)
#endif

387 388
void helper_sdl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
                int mem_idx)
T
ths 已提交
389
{
390
    do_sb(env, arg2, (uint8_t)(arg1 >> 56), mem_idx);
T
ths 已提交
391

392
    if (GET_LMASK64(arg2) <= 6)
393
        do_sb(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 48), mem_idx);
T
ths 已提交
394

395
    if (GET_LMASK64(arg2) <= 5)
396
        do_sb(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 40), mem_idx);
T
ths 已提交
397

398
    if (GET_LMASK64(arg2) <= 4)
399
        do_sb(env, GET_OFFSET(arg2, 3), (uint8_t)(arg1 >> 32), mem_idx);
T
ths 已提交
400

401
    if (GET_LMASK64(arg2) <= 3)
402
        do_sb(env, GET_OFFSET(arg2, 4), (uint8_t)(arg1 >> 24), mem_idx);
T
ths 已提交
403

404
    if (GET_LMASK64(arg2) <= 2)
405
        do_sb(env, GET_OFFSET(arg2, 5), (uint8_t)(arg1 >> 16), mem_idx);
T
ths 已提交
406

407
    if (GET_LMASK64(arg2) <= 1)
408
        do_sb(env, GET_OFFSET(arg2, 6), (uint8_t)(arg1 >> 8), mem_idx);
T
ths 已提交
409

410
    if (GET_LMASK64(arg2) <= 0)
411
        do_sb(env, GET_OFFSET(arg2, 7), (uint8_t)arg1, mem_idx);
T
ths 已提交
412 413
}

414 415
void helper_sdr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
                int mem_idx)
T
ths 已提交
416
{
417
    do_sb(env, arg2, (uint8_t)arg1, mem_idx);
T
ths 已提交
418

419
    if (GET_LMASK64(arg2) >= 1)
420
        do_sb(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8), mem_idx);
T
ths 已提交
421

422
    if (GET_LMASK64(arg2) >= 2)
423
        do_sb(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16), mem_idx);
T
ths 已提交
424

425
    if (GET_LMASK64(arg2) >= 3)
426
        do_sb(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24), mem_idx);
T
ths 已提交
427

428
    if (GET_LMASK64(arg2) >= 4)
429
        do_sb(env, GET_OFFSET(arg2, -4), (uint8_t)(arg1 >> 32), mem_idx);
T
ths 已提交
430

431
    if (GET_LMASK64(arg2) >= 5)
432
        do_sb(env, GET_OFFSET(arg2, -5), (uint8_t)(arg1 >> 40), mem_idx);
T
ths 已提交
433

434
    if (GET_LMASK64(arg2) >= 6)
435
        do_sb(env, GET_OFFSET(arg2, -6), (uint8_t)(arg1 >> 48), mem_idx);
T
ths 已提交
436

437
    if (GET_LMASK64(arg2) == 7)
438
        do_sb(env, GET_OFFSET(arg2, -7), (uint8_t)(arg1 >> 56), mem_idx);
T
ths 已提交
439 440 441
}
#endif /* TARGET_MIPS64 */

442 443
static const int multiple_regs[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };

444 445
void helper_lwm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
                uint32_t mem_idx)
446 447 448 449 450 451 452 453
{
    target_ulong base_reglist = reglist & 0xf;
    target_ulong do_r31 = reglist & 0x10;

    if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
        target_ulong i;

        for (i = 0; i < base_reglist; i++) {
454 455
            env->active_tc.gpr[multiple_regs[i]] =
                (target_long)do_lw(env, addr, mem_idx);
456 457 458 459 460
            addr += 4;
        }
    }

    if (do_r31) {
461
        env->active_tc.gpr[31] = (target_long)do_lw(env, addr, mem_idx);
462 463 464
    }
}

465 466
void helper_swm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
                uint32_t mem_idx)
467 468 469 470 471 472 473 474
{
    target_ulong base_reglist = reglist & 0xf;
    target_ulong do_r31 = reglist & 0x10;

    if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
        target_ulong i;

        for (i = 0; i < base_reglist; i++) {
475
            do_sw(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
476 477 478 479 480
            addr += 4;
        }
    }

    if (do_r31) {
481
        do_sw(env, addr, env->active_tc.gpr[31], mem_idx);
482 483 484 485
    }
}

#if defined(TARGET_MIPS64)
486 487
void helper_ldm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
                uint32_t mem_idx)
488 489 490 491 492 493 494 495
{
    target_ulong base_reglist = reglist & 0xf;
    target_ulong do_r31 = reglist & 0x10;

    if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
        target_ulong i;

        for (i = 0; i < base_reglist; i++) {
496
            env->active_tc.gpr[multiple_regs[i]] = do_ld(env, addr, mem_idx);
497 498 499 500 501
            addr += 8;
        }
    }

    if (do_r31) {
502
        env->active_tc.gpr[31] = do_ld(env, addr, mem_idx);
503 504 505
    }
}

506 507
void helper_sdm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
                uint32_t mem_idx)
508 509 510 511 512 513 514 515
{
    target_ulong base_reglist = reglist & 0xf;
    target_ulong do_r31 = reglist & 0x10;

    if (base_reglist > 0 && base_reglist <= ARRAY_SIZE (multiple_regs)) {
        target_ulong i;

        for (i = 0; i < base_reglist; i++) {
516
            do_sd(env, addr, env->active_tc.gpr[multiple_regs[i]], mem_idx);
517 518 519 520 521
            addr += 8;
        }
    }

    if (do_r31) {
522
        do_sd(env, addr, env->active_tc.gpr[31], mem_idx);
523 524 525 526
    }
}
#endif

T
ths 已提交
527
#ifndef CONFIG_USER_ONLY
528
/* SMP helpers.  */
529
static bool mips_vpe_is_wfi(MIPSCPU *c)
530
{
531 532
    CPUMIPSState *env = &c->env;

533 534
    /* If the VPE is halted but otherwise active, it means it's waiting for
       an interrupt.  */
535
    return env->halted && mips_vpe_active(env);
536 537
}

538
static inline void mips_vpe_wake(CPUMIPSState *c)
539 540 541 542 543 544 545
{
    /* Dont set ->halted = 0 directly, let it be done via cpu_has_work
       because there might be other conditions that state that c should
       be sleeping.  */
    cpu_interrupt(c, CPU_INTERRUPT_WAKE);
}

546
static inline void mips_vpe_sleep(MIPSCPU *cpu)
547
{
548 549
    CPUMIPSState *c = &cpu->env;

550 551 552 553 554 555
    /* The VPE was shut off, really go to bed.
       Reset any old _WAKE requests.  */
    c->halted = 1;
    cpu_reset_interrupt(c, CPU_INTERRUPT_WAKE);
}

556
static inline void mips_tc_wake(MIPSCPU *cpu, int tc)
557
{
558 559
    CPUMIPSState *c = &cpu->env;

560
    /* FIXME: TC reschedule.  */
561
    if (mips_vpe_active(c) && !mips_vpe_is_wfi(cpu)) {
562 563 564 565
        mips_vpe_wake(c);
    }
}

566
static inline void mips_tc_sleep(MIPSCPU *cpu, int tc)
567
{
568 569
    CPUMIPSState *c = &cpu->env;

570 571
    /* FIXME: TC reschedule.  */
    if (!mips_vpe_active(c)) {
572
        mips_vpe_sleep(cpu);
573 574 575
    }
}

576 577
/* tc should point to an int with the value of the global TC index.
   This function will transform it into a local index within the
578
   returned CPUMIPSState.
579 580 581

   FIXME: This code assumes that all VPEs have the same number of TCs,
          which depends on runtime setup. Can probably be fixed by
582
          walking the list of CPUMIPSStates.  */
583
static CPUMIPSState *mips_cpu_map_tc(CPUMIPSState *env, int *tc)
584
{
585
    CPUMIPSState *other;
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
    int vpe_idx, nr_threads = env->nr_threads;
    int tc_idx = *tc;

    if (!(env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))) {
        /* Not allowed to address other CPUs.  */
        *tc = env->current_tc;
        return env;
    }

    vpe_idx = tc_idx / nr_threads;
    *tc = tc_idx % nr_threads;
    other = qemu_get_cpu(vpe_idx);
    return other ? other : env;
}

601 602 603 604 605 606 607 608 609
/* The per VPE CP0_Status register shares some fields with the per TC
   CP0_TCStatus registers. These fields are wired to the same registers,
   so changes to either of them should be reflected on both registers.

   Also, EntryHi shares the bottom 8 bit ASID with TCStauts.

   These helper call synchronizes the regs for a given cpu.  */

/* Called for updates to CP0_Status.  */
610
static void sync_c0_status(CPUMIPSState *env, CPUMIPSState *cpu, int tc)
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
{
    int32_t tcstatus, *tcst;
    uint32_t v = cpu->CP0_Status;
    uint32_t cu, mx, asid, ksu;
    uint32_t mask = ((1 << CP0TCSt_TCU3)
                       | (1 << CP0TCSt_TCU2)
                       | (1 << CP0TCSt_TCU1)
                       | (1 << CP0TCSt_TCU0)
                       | (1 << CP0TCSt_TMX)
                       | (3 << CP0TCSt_TKSU)
                       | (0xff << CP0TCSt_TASID));

    cu = (v >> CP0St_CU0) & 0xf;
    mx = (v >> CP0St_MX) & 0x1;
    ksu = (v >> CP0St_KSU) & 0x3;
    asid = env->CP0_EntryHi & 0xff;

    tcstatus = cu << CP0TCSt_TCU0;
    tcstatus |= mx << CP0TCSt_TMX;
    tcstatus |= ksu << CP0TCSt_TKSU;
    tcstatus |= asid;

    if (tc == cpu->current_tc) {
        tcst = &cpu->active_tc.CP0_TCStatus;
    } else {
        tcst = &cpu->tcs[tc].CP0_TCStatus;
    }

    *tcst &= ~mask;
    *tcst |= tcstatus;
    compute_hflags(cpu);
}

/* Called for updates to CP0_TCStatus.  */
645 646
static void sync_c0_tcstatus(CPUMIPSState *cpu, int tc,
                             target_ulong v)
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
{
    uint32_t status;
    uint32_t tcu, tmx, tasid, tksu;
    uint32_t mask = ((1 << CP0St_CU3)
                       | (1 << CP0St_CU2)
                       | (1 << CP0St_CU1)
                       | (1 << CP0St_CU0)
                       | (1 << CP0St_MX)
                       | (3 << CP0St_KSU));

    tcu = (v >> CP0TCSt_TCU0) & 0xf;
    tmx = (v >> CP0TCSt_TMX) & 0x1;
    tasid = v & 0xff;
    tksu = (v >> CP0TCSt_TKSU) & 0x3;

    status = tcu << CP0St_CU0;
    status |= tmx << CP0St_MX;
    status |= tksu << CP0St_KSU;

    cpu->CP0_Status &= ~mask;
    cpu->CP0_Status |= status;

    /* Sync the TASID with EntryHi.  */
    cpu->CP0_EntryHi &= ~0xff;
    cpu->CP0_EntryHi = tasid;

    compute_hflags(cpu);
}

/* Called for updates to CP0_EntryHi.  */
677
static void sync_c0_entryhi(CPUMIPSState *cpu, int tc)
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
{
    int32_t *tcst;
    uint32_t asid, v = cpu->CP0_EntryHi;

    asid = v & 0xff;

    if (tc == cpu->current_tc) {
        tcst = &cpu->active_tc.CP0_TCStatus;
    } else {
        tcst = &cpu->tcs[tc].CP0_TCStatus;
    }

    *tcst &= ~0xff;
    *tcst |= asid;
}

B
bellard 已提交
694
/* CP0 helpers */
695
target_ulong helper_mfc0_mvpcontrol(CPUMIPSState *env)
696
{
697
    return env->mvp->CP0_MVPControl;
698 699
}

700
target_ulong helper_mfc0_mvpconf0(CPUMIPSState *env)
701
{
702
    return env->mvp->CP0_MVPConf0;
703 704
}

705
target_ulong helper_mfc0_mvpconf1(CPUMIPSState *env)
706
{
707
    return env->mvp->CP0_MVPConf1;
708 709
}

710
target_ulong helper_mfc0_random(CPUMIPSState *env)
B
bellard 已提交
711
{
712
    return (int32_t)cpu_mips_get_random(env);
713
}
B
bellard 已提交
714

715
target_ulong helper_mfc0_tcstatus(CPUMIPSState *env)
716
{
717
    return env->active_tc.CP0_TCStatus;
718 719
}

720
target_ulong helper_mftc0_tcstatus(CPUMIPSState *env)
721 722
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
723
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
724

725 726
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCStatus;
727
    else
728
        return other->tcs[other_tc].CP0_TCStatus;
729 730
}

731
target_ulong helper_mfc0_tcbind(CPUMIPSState *env)
732
{
733
    return env->active_tc.CP0_TCBind;
734 735
}

736
target_ulong helper_mftc0_tcbind(CPUMIPSState *env)
737 738
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
739
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
740

741 742
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCBind;
743
    else
744
        return other->tcs[other_tc].CP0_TCBind;
745 746
}

747
target_ulong helper_mfc0_tcrestart(CPUMIPSState *env)
748
{
749
    return env->active_tc.PC;
750 751
}

752
target_ulong helper_mftc0_tcrestart(CPUMIPSState *env)
753 754
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
755
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
756

757 758
    if (other_tc == other->current_tc)
        return other->active_tc.PC;
759
    else
760
        return other->tcs[other_tc].PC;
761 762
}

763
target_ulong helper_mfc0_tchalt(CPUMIPSState *env)
764
{
765
    return env->active_tc.CP0_TCHalt;
766 767
}

768
target_ulong helper_mftc0_tchalt(CPUMIPSState *env)
769 770
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
771
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
772

773 774
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCHalt;
775
    else
776
        return other->tcs[other_tc].CP0_TCHalt;
777 778
}

779
target_ulong helper_mfc0_tccontext(CPUMIPSState *env)
780
{
781
    return env->active_tc.CP0_TCContext;
782 783
}

784
target_ulong helper_mftc0_tccontext(CPUMIPSState *env)
785 786
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
787
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
788

789 790
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCContext;
791
    else
792
        return other->tcs[other_tc].CP0_TCContext;
793 794
}

795
target_ulong helper_mfc0_tcschedule(CPUMIPSState *env)
796
{
797
    return env->active_tc.CP0_TCSchedule;
798 799
}

800
target_ulong helper_mftc0_tcschedule(CPUMIPSState *env)
801 802
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
803
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
804

805 806
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCSchedule;
807
    else
808
        return other->tcs[other_tc].CP0_TCSchedule;
809 810
}

811
target_ulong helper_mfc0_tcschefback(CPUMIPSState *env)
812
{
813
    return env->active_tc.CP0_TCScheFBack;
814 815
}

816
target_ulong helper_mftc0_tcschefback(CPUMIPSState *env)
817 818
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
819
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
820

821 822
    if (other_tc == other->current_tc)
        return other->active_tc.CP0_TCScheFBack;
823
    else
824
        return other->tcs[other_tc].CP0_TCScheFBack;
825 826
}

827
target_ulong helper_mfc0_count(CPUMIPSState *env)
828
{
829
    return (int32_t)cpu_mips_get_count(env);
B
bellard 已提交
830 831
}

832
target_ulong helper_mftc0_entryhi(CPUMIPSState *env)
833 834
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
835
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
836

837
    return other->CP0_EntryHi;
838 839
}

840
target_ulong helper_mftc0_cause(CPUMIPSState *env)
841 842 843
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
    int32_t tccause;
844
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
845 846 847 848 849 850 851 852 853 854

    if (other_tc == other->current_tc) {
        tccause = other->CP0_Cause;
    } else {
        tccause = other->CP0_Cause;
    }

    return tccause;
}

855
target_ulong helper_mftc0_status(CPUMIPSState *env)
856 857
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
858
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
859

860
    return other->CP0_Status;
861 862
}

863
target_ulong helper_mfc0_lladdr(CPUMIPSState *env)
864
{
865
    return (int32_t)(env->lladdr >> env->CP0_LLAddr_shift);
866 867
}

868
target_ulong helper_mfc0_watchlo(CPUMIPSState *env, uint32_t sel)
869
{
870
    return (int32_t)env->CP0_WatchLo[sel];
871 872
}

873
target_ulong helper_mfc0_watchhi(CPUMIPSState *env, uint32_t sel)
874
{
875
    return env->CP0_WatchHi[sel];
876 877
}

878
target_ulong helper_mfc0_debug(CPUMIPSState *env)
879
{
880
    target_ulong t0 = env->CP0_Debug;
881
    if (env->hflags & MIPS_HFLAG_DM)
882 883 884
        t0 |= 1 << CP0DB_DM;

    return t0;
885 886
}

887
target_ulong helper_mftc0_debug(CPUMIPSState *env)
888 889
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
890
    int32_t tcstatus;
891
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
892

893 894
    if (other_tc == other->current_tc)
        tcstatus = other->active_tc.CP0_Debug_tcstatus;
895
    else
896
        tcstatus = other->tcs[other_tc].CP0_Debug_tcstatus;
897 898

    /* XXX: Might be wrong, check with EJTAG spec. */
899
    return (other->CP0_Debug & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
900
            (tcstatus & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
901 902 903
}

#if defined(TARGET_MIPS64)
904
target_ulong helper_dmfc0_tcrestart(CPUMIPSState *env)
905
{
906
    return env->active_tc.PC;
907 908
}

909
target_ulong helper_dmfc0_tchalt(CPUMIPSState *env)
910
{
911
    return env->active_tc.CP0_TCHalt;
912 913
}

914
target_ulong helper_dmfc0_tccontext(CPUMIPSState *env)
915
{
916
    return env->active_tc.CP0_TCContext;
917 918
}

919
target_ulong helper_dmfc0_tcschedule(CPUMIPSState *env)
920
{
921
    return env->active_tc.CP0_TCSchedule;
922 923
}

924
target_ulong helper_dmfc0_tcschefback(CPUMIPSState *env)
925
{
926
    return env->active_tc.CP0_TCScheFBack;
927 928
}

929
target_ulong helper_dmfc0_lladdr(CPUMIPSState *env)
930
{
931
    return env->lladdr >> env->CP0_LLAddr_shift;
932 933
}

934
target_ulong helper_dmfc0_watchlo(CPUMIPSState *env, uint32_t sel)
935
{
936
    return env->CP0_WatchLo[sel];
937 938 939
}
#endif /* TARGET_MIPS64 */

940
void helper_mtc0_index(CPUMIPSState *env, target_ulong arg1)
941 942 943 944 945 946 947 948
{
    int num = 1;
    unsigned int tmp = env->tlb->nb_tlb;

    do {
        tmp >>= 1;
        num <<= 1;
    } while (tmp);
949
    env->CP0_Index = (env->CP0_Index & 0x80000000) | (arg1 & (num - 1));
950 951
}

952
void helper_mtc0_mvpcontrol(CPUMIPSState *env, target_ulong arg1)
953 954 955 956 957 958 959 960 961
{
    uint32_t mask = 0;
    uint32_t newval;

    if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP))
        mask |= (1 << CP0MVPCo_CPA) | (1 << CP0MVPCo_VPC) |
                (1 << CP0MVPCo_EVP);
    if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
        mask |= (1 << CP0MVPCo_STLB);
962
    newval = (env->mvp->CP0_MVPControl & ~mask) | (arg1 & mask);
963 964 965 966 967 968

    // TODO: Enable/disable shared TLB, enable/disable VPEs.

    env->mvp->CP0_MVPControl = newval;
}

969
void helper_mtc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
970 971 972 973 974 975
{
    uint32_t mask;
    uint32_t newval;

    mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
           (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
976
    newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask);
977 978 979 980 981 982 983 984 985

    /* Yield scheduler intercept not implemented. */
    /* Gating storage scheduler intercept not implemented. */

    // TODO: Enable/disable TCs.

    env->CP0_VPEControl = newval;
}

986
void helper_mttc0_vpecontrol(CPUMIPSState *env, target_ulong arg1)
987 988
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
989
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
990 991 992 993 994 995 996 997 998 999 1000 1001
    uint32_t mask;
    uint32_t newval;

    mask = (1 << CP0VPECo_YSI) | (1 << CP0VPECo_GSI) |
           (1 << CP0VPECo_TE) | (0xff << CP0VPECo_TargTC);
    newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask);

    /* TODO: Enable/disable TCs.  */

    other->CP0_VPEControl = newval;
}

1002
target_ulong helper_mftc0_vpecontrol(CPUMIPSState *env)
1003 1004
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1005
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1006 1007 1008 1009
    /* FIXME: Mask away return zero on read bits.  */
    return other->CP0_VPEControl;
}

1010
target_ulong helper_mftc0_vpeconf0(CPUMIPSState *env)
1011 1012
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1013
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1014 1015 1016 1017

    return other->CP0_VPEConf0;
}

1018
void helper_mtc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
1019 1020 1021 1022 1023 1024 1025 1026 1027
{
    uint32_t mask = 0;
    uint32_t newval;

    if (env->CP0_VPEConf0 & (1 << CP0VPEC0_MVP)) {
        if (env->CP0_VPEConf0 & (1 << CP0VPEC0_VPA))
            mask |= (0xff << CP0VPEC0_XTC);
        mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
    }
1028
    newval = (env->CP0_VPEConf0 & ~mask) | (arg1 & mask);
1029 1030 1031 1032 1033 1034

    // TODO: TC exclusive handling due to ERL/EXL.

    env->CP0_VPEConf0 = newval;
}

1035
void helper_mttc0_vpeconf0(CPUMIPSState *env, target_ulong arg1)
1036 1037
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1038
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
    uint32_t mask = 0;
    uint32_t newval;

    mask |= (1 << CP0VPEC0_MVP) | (1 << CP0VPEC0_VPA);
    newval = (other->CP0_VPEConf0 & ~mask) | (arg1 & mask);

    /* TODO: TC exclusive handling due to ERL/EXL.  */
    other->CP0_VPEConf0 = newval;
}

1049
void helper_mtc0_vpeconf1(CPUMIPSState *env, target_ulong arg1)
1050 1051 1052 1053 1054 1055 1056
{
    uint32_t mask = 0;
    uint32_t newval;

    if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
        mask |= (0xff << CP0VPEC1_NCX) | (0xff << CP0VPEC1_NCP2) |
                (0xff << CP0VPEC1_NCP1);
1057
    newval = (env->CP0_VPEConf1 & ~mask) | (arg1 & mask);
1058 1059 1060 1061 1062 1063 1064 1065 1066

    /* UDI not implemented. */
    /* CP2 not implemented. */

    // TODO: Handle FPU (CP1) binding.

    env->CP0_VPEConf1 = newval;
}

1067
void helper_mtc0_yqmask(CPUMIPSState *env, target_ulong arg1)
1068 1069 1070 1071 1072
{
    /* Yield qualifier inputs not implemented. */
    env->CP0_YQMask = 0x00000000;
}

1073
void helper_mtc0_vpeopt(CPUMIPSState *env, target_ulong arg1)
1074
{
1075
    env->CP0_VPEOpt = arg1 & 0x0000ffff;
1076 1077
}

1078
void helper_mtc0_entrylo0(CPUMIPSState *env, target_ulong arg1)
1079 1080 1081
{
    /* Large physaddr (PABITS) not implemented */
    /* 1k pages not implemented */
1082
    env->CP0_EntryLo0 = arg1 & 0x3FFFFFFF;
1083 1084
}

1085
void helper_mtc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
1086 1087 1088 1089
{
    uint32_t mask = env->CP0_TCStatus_rw_bitmask;
    uint32_t newval;

1090
    newval = (env->active_tc.CP0_TCStatus & ~mask) | (arg1 & mask);
1091

1092
    env->active_tc.CP0_TCStatus = newval;
1093
    sync_c0_tcstatus(env, env->current_tc, newval);
1094 1095
}

1096
void helper_mttc0_tcstatus(CPUMIPSState *env, target_ulong arg1)
1097 1098
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1099
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1100

1101 1102
    if (other_tc == other->current_tc)
        other->active_tc.CP0_TCStatus = arg1;
1103
    else
1104
        other->tcs[other_tc].CP0_TCStatus = arg1;
1105
    sync_c0_tcstatus(other, other_tc, arg1);
1106 1107
}

1108
void helper_mtc0_tcbind(CPUMIPSState *env, target_ulong arg1)
1109 1110 1111 1112 1113 1114
{
    uint32_t mask = (1 << CP0TCBd_TBE);
    uint32_t newval;

    if (env->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
        mask |= (1 << CP0TCBd_CurVPE);
1115
    newval = (env->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
1116
    env->active_tc.CP0_TCBind = newval;
1117 1118
}

1119
void helper_mttc0_tcbind(CPUMIPSState *env, target_ulong arg1)
1120 1121 1122 1123
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
    uint32_t mask = (1 << CP0TCBd_TBE);
    uint32_t newval;
1124
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1125

1126
    if (other->mvp->CP0_MVPControl & (1 << CP0MVPCo_VPC))
1127
        mask |= (1 << CP0TCBd_CurVPE);
1128 1129 1130
    if (other_tc == other->current_tc) {
        newval = (other->active_tc.CP0_TCBind & ~mask) | (arg1 & mask);
        other->active_tc.CP0_TCBind = newval;
1131
    } else {
1132 1133
        newval = (other->tcs[other_tc].CP0_TCBind & ~mask) | (arg1 & mask);
        other->tcs[other_tc].CP0_TCBind = newval;
1134
    }
1135 1136
}

1137
void helper_mtc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
1138
{
1139
    env->active_tc.PC = arg1;
1140
    env->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
1141
    env->lladdr = 0ULL;
1142 1143 1144
    /* MIPS16 not implemented. */
}

1145
void helper_mttc0_tcrestart(CPUMIPSState *env, target_ulong arg1)
1146 1147
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1148
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1149

1150 1151 1152 1153
    if (other_tc == other->current_tc) {
        other->active_tc.PC = arg1;
        other->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
        other->lladdr = 0ULL;
1154 1155
        /* MIPS16 not implemented. */
    } else {
1156 1157 1158
        other->tcs[other_tc].PC = arg1;
        other->tcs[other_tc].CP0_TCStatus &= ~(1 << CP0TCSt_TDS);
        other->lladdr = 0ULL;
1159 1160
        /* MIPS16 not implemented. */
    }
1161 1162
}

1163
void helper_mtc0_tchalt(CPUMIPSState *env, target_ulong arg1)
1164
{
1165 1166
    MIPSCPU *cpu = mips_env_get_cpu(env);

1167
    env->active_tc.CP0_TCHalt = arg1 & 0x1;
1168 1169

    // TODO: Halt TC / Restart (if allocated+active) TC.
1170
    if (env->active_tc.CP0_TCHalt & 1) {
1171
        mips_tc_sleep(cpu, env->current_tc);
1172
    } else {
1173
        mips_tc_wake(cpu, env->current_tc);
1174
    }
1175 1176
}

1177
void helper_mttc0_tchalt(CPUMIPSState *env, target_ulong arg1)
1178 1179
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1180
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1181
    MIPSCPU *other_cpu = mips_env_get_cpu(other);
1182 1183 1184

    // TODO: Halt TC / Restart (if allocated+active) TC.

1185 1186
    if (other_tc == other->current_tc)
        other->active_tc.CP0_TCHalt = arg1;
1187
    else
1188
        other->tcs[other_tc].CP0_TCHalt = arg1;
1189 1190

    if (arg1 & 1) {
1191
        mips_tc_sleep(other_cpu, other_tc);
1192
    } else {
1193
        mips_tc_wake(other_cpu, other_tc);
1194
    }
1195 1196
}

1197
void helper_mtc0_tccontext(CPUMIPSState *env, target_ulong arg1)
1198
{
1199
    env->active_tc.CP0_TCContext = arg1;
1200 1201
}

1202
void helper_mttc0_tccontext(CPUMIPSState *env, target_ulong arg1)
1203 1204
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1205
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1206

1207 1208
    if (other_tc == other->current_tc)
        other->active_tc.CP0_TCContext = arg1;
1209
    else
1210
        other->tcs[other_tc].CP0_TCContext = arg1;
1211 1212
}

1213
void helper_mtc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
1214
{
1215
    env->active_tc.CP0_TCSchedule = arg1;
1216 1217
}

1218
void helper_mttc0_tcschedule(CPUMIPSState *env, target_ulong arg1)
1219 1220
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1221
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1222

1223 1224
    if (other_tc == other->current_tc)
        other->active_tc.CP0_TCSchedule = arg1;
1225
    else
1226
        other->tcs[other_tc].CP0_TCSchedule = arg1;
1227 1228
}

1229
void helper_mtc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
1230
{
1231
    env->active_tc.CP0_TCScheFBack = arg1;
1232 1233
}

1234
void helper_mttc0_tcschefback(CPUMIPSState *env, target_ulong arg1)
1235 1236
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1237
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1238

1239 1240
    if (other_tc == other->current_tc)
        other->active_tc.CP0_TCScheFBack = arg1;
1241
    else
1242
        other->tcs[other_tc].CP0_TCScheFBack = arg1;
1243 1244
}

1245
void helper_mtc0_entrylo1(CPUMIPSState *env, target_ulong arg1)
1246 1247 1248
{
    /* Large physaddr (PABITS) not implemented */
    /* 1k pages not implemented */
1249
    env->CP0_EntryLo1 = arg1 & 0x3FFFFFFF;
1250 1251
}

1252
void helper_mtc0_context(CPUMIPSState *env, target_ulong arg1)
1253
{
1254
    env->CP0_Context = (env->CP0_Context & 0x007FFFFF) | (arg1 & ~0x007FFFFF);
1255 1256
}

1257
void helper_mtc0_pagemask(CPUMIPSState *env, target_ulong arg1)
1258 1259
{
    /* 1k pages not implemented */
1260
    env->CP0_PageMask = arg1 & (0x1FFFFFFF & (TARGET_PAGE_MASK << 1));
1261 1262
}

1263
void helper_mtc0_pagegrain(CPUMIPSState *env, target_ulong arg1)
1264 1265 1266 1267 1268 1269 1270
{
    /* SmartMIPS not implemented */
    /* Large physaddr (PABITS) not implemented */
    /* 1k pages not implemented */
    env->CP0_PageGrain = 0;
}

1271
void helper_mtc0_wired(CPUMIPSState *env, target_ulong arg1)
1272
{
1273
    env->CP0_Wired = arg1 % env->tlb->nb_tlb;
1274 1275
}

1276
void helper_mtc0_srsconf0(CPUMIPSState *env, target_ulong arg1)
1277
{
1278
    env->CP0_SRSConf0 |= arg1 & env->CP0_SRSConf0_rw_bitmask;
1279 1280
}

1281
void helper_mtc0_srsconf1(CPUMIPSState *env, target_ulong arg1)
1282
{
1283
    env->CP0_SRSConf1 |= arg1 & env->CP0_SRSConf1_rw_bitmask;
1284 1285
}

1286
void helper_mtc0_srsconf2(CPUMIPSState *env, target_ulong arg1)
1287
{
1288
    env->CP0_SRSConf2 |= arg1 & env->CP0_SRSConf2_rw_bitmask;
1289 1290
}

1291
void helper_mtc0_srsconf3(CPUMIPSState *env, target_ulong arg1)
1292
{
1293
    env->CP0_SRSConf3 |= arg1 & env->CP0_SRSConf3_rw_bitmask;
1294 1295
}

1296
void helper_mtc0_srsconf4(CPUMIPSState *env, target_ulong arg1)
1297
{
1298
    env->CP0_SRSConf4 |= arg1 & env->CP0_SRSConf4_rw_bitmask;
1299 1300
}

1301
void helper_mtc0_hwrena(CPUMIPSState *env, target_ulong arg1)
1302
{
1303
    env->CP0_HWREna = arg1 & 0x0000000F;
1304 1305
}

1306
void helper_mtc0_count(CPUMIPSState *env, target_ulong arg1)
1307
{
1308
    cpu_mips_store_count(env, arg1);
1309 1310
}

1311
void helper_mtc0_entryhi(CPUMIPSState *env, target_ulong arg1)
1312 1313 1314 1315
{
    target_ulong old, val;

    /* 1k pages not implemented */
1316
    val = arg1 & ((TARGET_PAGE_MASK << 1) | 0xFF);
1317 1318 1319 1320 1321 1322
#if defined(TARGET_MIPS64)
    val &= env->SEGMask;
#endif
    old = env->CP0_EntryHi;
    env->CP0_EntryHi = val;
    if (env->CP0_Config3 & (1 << CP0C3_MT)) {
1323
        sync_c0_entryhi(env, env->current_tc);
1324 1325 1326 1327 1328 1329
    }
    /* If the ASID changes, flush qemu's TLB.  */
    if ((old & 0xFF) != (val & 0xFF))
        cpu_mips_tlb_flush(env, 1);
}

1330
void helper_mttc0_entryhi(CPUMIPSState *env, target_ulong arg1)
1331 1332
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1333
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1334

1335 1336
    other->CP0_EntryHi = arg1;
    sync_c0_entryhi(other, other_tc);
1337 1338
}

1339
void helper_mtc0_compare(CPUMIPSState *env, target_ulong arg1)
1340
{
1341
    cpu_mips_store_compare(env, arg1);
1342 1343
}

1344
void helper_mtc0_status(CPUMIPSState *env, target_ulong arg1)
1345 1346 1347 1348
{
    uint32_t val, old;
    uint32_t mask = env->CP0_Status_rw_bitmask;

1349
    val = arg1 & mask;
1350 1351
    old = env->CP0_Status;
    env->CP0_Status = (env->CP0_Status & ~mask) | val;
1352
    if (env->CP0_Config3 & (1 << CP0C3_MT)) {
1353
        sync_c0_status(env, env, env->current_tc);
1354 1355 1356 1357
    } else {
        compute_hflags(env);
    }

1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
    if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
        qemu_log("Status %08x (%08x) => %08x (%08x) Cause %08x",
                old, old & env->CP0_Cause & CP0Ca_IP_mask,
                val, val & env->CP0_Cause & CP0Ca_IP_mask,
                env->CP0_Cause);
        switch (env->hflags & MIPS_HFLAG_KSU) {
        case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
        case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
        case MIPS_HFLAG_KM: qemu_log("\n"); break;
        default: cpu_abort(env, "Invalid MMU mode!\n"); break;
A
Aurelien Jarno 已提交
1368
        }
1369
    }
1370 1371
}

1372
void helper_mttc0_status(CPUMIPSState *env, target_ulong arg1)
1373 1374
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1375
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1376

1377
    other->CP0_Status = arg1 & ~0xf1000018;
1378
    sync_c0_status(env, other, other_tc);
1379 1380
}

1381
void helper_mtc0_intctl(CPUMIPSState *env, target_ulong arg1)
1382 1383
{
    /* vectored interrupts not implemented, no performance counters. */
1384
    env->CP0_IntCtl = (env->CP0_IntCtl & ~0x000003e0) | (arg1 & 0x000003e0);
1385 1386
}

1387
void helper_mtc0_srsctl(CPUMIPSState *env, target_ulong arg1)
1388 1389
{
    uint32_t mask = (0xf << CP0SRSCtl_ESS) | (0xf << CP0SRSCtl_PSS);
1390
    env->CP0_SRSCtl = (env->CP0_SRSCtl & ~mask) | (arg1 & mask);
1391 1392
}

1393
static void mtc0_cause(CPUMIPSState *cpu, target_ulong arg1)
1394 1395
{
    uint32_t mask = 0x00C00300;
1396
    uint32_t old = cpu->CP0_Cause;
1397
    int i;
1398

1399
    if (cpu->insn_flags & ISA_MIPS32R2) {
1400
        mask |= 1 << CP0Ca_DC;
1401
    }
1402

1403
    cpu->CP0_Cause = (cpu->CP0_Cause & ~mask) | (arg1 & mask);
1404

1405 1406 1407 1408 1409 1410
    if ((old ^ cpu->CP0_Cause) & (1 << CP0Ca_DC)) {
        if (cpu->CP0_Cause & (1 << CP0Ca_DC)) {
            cpu_mips_stop_count(cpu);
        } else {
            cpu_mips_start_count(cpu);
        }
1411
    }
1412 1413 1414

    /* Set/reset software interrupts */
    for (i = 0 ; i < 2 ; i++) {
1415 1416
        if ((old ^ cpu->CP0_Cause) & (1 << (CP0Ca_IP + i))) {
            cpu_mips_soft_irq(cpu, i, cpu->CP0_Cause & (1 << (CP0Ca_IP + i)));
1417 1418
        }
    }
1419 1420
}

1421
void helper_mtc0_cause(CPUMIPSState *env, target_ulong arg1)
1422 1423 1424 1425
{
    mtc0_cause(env, arg1);
}

1426
void helper_mttc0_cause(CPUMIPSState *env, target_ulong arg1)
1427 1428
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1429
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1430 1431 1432 1433

    mtc0_cause(other, arg1);
}

1434
target_ulong helper_mftc0_epc(CPUMIPSState *env)
1435 1436
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1437
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1438 1439 1440 1441

    return other->CP0_EPC;
}

1442
target_ulong helper_mftc0_ebase(CPUMIPSState *env)
1443 1444
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1445
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1446 1447 1448 1449

    return other->CP0_EBase;
}

1450
void helper_mtc0_ebase(CPUMIPSState *env, target_ulong arg1)
1451 1452
{
    /* vectored interrupts not implemented */
1453
    env->CP0_EBase = (env->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
1454 1455
}

1456
void helper_mttc0_ebase(CPUMIPSState *env, target_ulong arg1)
1457 1458
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1459
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1460 1461 1462
    other->CP0_EBase = (other->CP0_EBase & ~0x3FFFF000) | (arg1 & 0x3FFFF000);
}

1463
target_ulong helper_mftc0_configx(CPUMIPSState *env, target_ulong idx)
1464 1465
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1466
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

    switch (idx) {
    case 0: return other->CP0_Config0;
    case 1: return other->CP0_Config1;
    case 2: return other->CP0_Config2;
    case 3: return other->CP0_Config3;
    /* 4 and 5 are reserved.  */
    case 6: return other->CP0_Config6;
    case 7: return other->CP0_Config7;
    default:
        break;
    }
    return 0;
}

1482
void helper_mtc0_config0(CPUMIPSState *env, target_ulong arg1)
1483
{
1484
    env->CP0_Config0 = (env->CP0_Config0 & 0x81FFFFF8) | (arg1 & 0x00000007);
1485 1486
}

1487
void helper_mtc0_config2(CPUMIPSState *env, target_ulong arg1)
1488 1489 1490 1491 1492
{
    /* tertiary/secondary caches not implemented */
    env->CP0_Config2 = (env->CP0_Config2 & 0x8FFF0FFF);
}

1493
void helper_mtc0_lladdr(CPUMIPSState *env, target_ulong arg1)
1494 1495 1496 1497 1498 1499
{
    target_long mask = env->CP0_LLAddr_rw_bitmask;
    arg1 = arg1 << env->CP0_LLAddr_shift;
    env->lladdr = (env->lladdr & ~mask) | (arg1 & mask);
}

1500
void helper_mtc0_watchlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1501 1502 1503
{
    /* Watch exceptions for instructions, data loads, data stores
       not implemented. */
1504
    env->CP0_WatchLo[sel] = (arg1 & ~0x7);
1505 1506
}

1507
void helper_mtc0_watchhi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1508
{
1509 1510
    env->CP0_WatchHi[sel] = (arg1 & 0x40FF0FF8);
    env->CP0_WatchHi[sel] &= ~(env->CP0_WatchHi[sel] & arg1 & 0x7);
1511 1512
}

1513
void helper_mtc0_xcontext(CPUMIPSState *env, target_ulong arg1)
1514 1515
{
    target_ulong mask = (1ULL << (env->SEGBITS - 7)) - 1;
1516
    env->CP0_XContext = (env->CP0_XContext & mask) | (arg1 & ~mask);
1517 1518
}

1519
void helper_mtc0_framemask(CPUMIPSState *env, target_ulong arg1)
1520
{
1521
    env->CP0_Framemask = arg1; /* XXX */
1522 1523
}

1524
void helper_mtc0_debug(CPUMIPSState *env, target_ulong arg1)
1525
{
1526 1527
    env->CP0_Debug = (env->CP0_Debug & 0x8C03FC1F) | (arg1 & 0x13300120);
    if (arg1 & (1 << CP0DB_DM))
1528 1529 1530 1531 1532
        env->hflags |= MIPS_HFLAG_DM;
    else
        env->hflags &= ~MIPS_HFLAG_DM;
}

1533
void helper_mttc0_debug(CPUMIPSState *env, target_ulong arg1)
1534 1535
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1536
    uint32_t val = arg1 & ((1 << CP0DB_SSt) | (1 << CP0DB_Halt));
1537
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1538 1539

    /* XXX: Might be wrong, check with EJTAG spec. */
1540 1541
    if (other_tc == other->current_tc)
        other->active_tc.CP0_Debug_tcstatus = val;
1542
    else
1543 1544 1545
        other->tcs[other_tc].CP0_Debug_tcstatus = val;
    other->CP0_Debug = (other->CP0_Debug &
                     ((1 << CP0DB_SSt) | (1 << CP0DB_Halt))) |
1546
                     (arg1 & ~((1 << CP0DB_SSt) | (1 << CP0DB_Halt)));
1547 1548
}

1549
void helper_mtc0_performance0(CPUMIPSState *env, target_ulong arg1)
1550
{
1551
    env->CP0_Performance0 = arg1 & 0x000007ff;
1552 1553
}

1554
void helper_mtc0_taglo(CPUMIPSState *env, target_ulong arg1)
1555
{
1556
    env->CP0_TagLo = arg1 & 0xFFFFFCF6;
1557 1558
}

1559
void helper_mtc0_datalo(CPUMIPSState *env, target_ulong arg1)
1560
{
1561
    env->CP0_DataLo = arg1; /* XXX */
1562 1563
}

1564
void helper_mtc0_taghi(CPUMIPSState *env, target_ulong arg1)
1565
{
1566
    env->CP0_TagHi = arg1; /* XXX */
1567 1568
}

1569
void helper_mtc0_datahi(CPUMIPSState *env, target_ulong arg1)
1570
{
1571
    env->CP0_DataHi = arg1; /* XXX */
1572 1573 1574
}

/* MIPS MT functions */
1575
target_ulong helper_mftgpr(CPUMIPSState *env, uint32_t sel)
1576 1577
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1578
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1579

1580 1581
    if (other_tc == other->current_tc)
        return other->active_tc.gpr[sel];
1582
    else
1583
        return other->tcs[other_tc].gpr[sel];
1584 1585
}

1586
target_ulong helper_mftlo(CPUMIPSState *env, uint32_t sel)
1587 1588
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1589
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1590

1591 1592
    if (other_tc == other->current_tc)
        return other->active_tc.LO[sel];
1593
    else
1594
        return other->tcs[other_tc].LO[sel];
1595 1596
}

1597
target_ulong helper_mfthi(CPUMIPSState *env, uint32_t sel)
1598 1599
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1600
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1601

1602 1603
    if (other_tc == other->current_tc)
        return other->active_tc.HI[sel];
1604
    else
1605
        return other->tcs[other_tc].HI[sel];
1606 1607
}

1608
target_ulong helper_mftacx(CPUMIPSState *env, uint32_t sel)
1609 1610
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1611
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1612

1613 1614
    if (other_tc == other->current_tc)
        return other->active_tc.ACX[sel];
1615
    else
1616
        return other->tcs[other_tc].ACX[sel];
1617 1618
}

1619
target_ulong helper_mftdsp(CPUMIPSState *env)
1620 1621
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1622
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1623

1624 1625
    if (other_tc == other->current_tc)
        return other->active_tc.DSPControl;
1626
    else
1627
        return other->tcs[other_tc].DSPControl;
1628
}
B
bellard 已提交
1629

1630
void helper_mttgpr(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1631 1632
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1633
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1634

1635 1636
    if (other_tc == other->current_tc)
        other->active_tc.gpr[sel] = arg1;
1637
    else
1638
        other->tcs[other_tc].gpr[sel] = arg1;
1639 1640
}

1641
void helper_mttlo(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1642 1643
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1644
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1645

1646 1647
    if (other_tc == other->current_tc)
        other->active_tc.LO[sel] = arg1;
1648
    else
1649
        other->tcs[other_tc].LO[sel] = arg1;
1650 1651
}

1652
void helper_mtthi(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1653 1654
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1655
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1656

1657 1658
    if (other_tc == other->current_tc)
        other->active_tc.HI[sel] = arg1;
1659
    else
1660
        other->tcs[other_tc].HI[sel] = arg1;
1661 1662
}

1663
void helper_mttacx(CPUMIPSState *env, target_ulong arg1, uint32_t sel)
1664 1665
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1666
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1667

1668 1669
    if (other_tc == other->current_tc)
        other->active_tc.ACX[sel] = arg1;
1670
    else
1671
        other->tcs[other_tc].ACX[sel] = arg1;
1672 1673
}

1674
void helper_mttdsp(CPUMIPSState *env, target_ulong arg1)
1675 1676
{
    int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC);
1677
    CPUMIPSState *other = mips_cpu_map_tc(env, &other_tc);
1678

1679 1680
    if (other_tc == other->current_tc)
        other->active_tc.DSPControl = arg1;
1681
    else
1682
        other->tcs[other_tc].DSPControl = arg1;
1683 1684 1685
}

/* MIPS MT functions */
1686
target_ulong helper_dmt(void)
1687 1688
{
    // TODO
1689
     return 0;
1690 1691
}

1692
target_ulong helper_emt(void)
1693 1694
{
    // TODO
1695
    return 0;
1696 1697
}

1698
target_ulong helper_dvpe(CPUMIPSState *env)
1699
{
1700
    CPUMIPSState *other_cpu_env = first_cpu;
1701 1702 1703 1704
    target_ulong prev = env->mvp->CP0_MVPControl;

    do {
        /* Turn off all VPEs except the one executing the dvpe.  */
1705
        if (other_cpu_env != env) {
1706 1707
            MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env);

1708
            other_cpu_env->mvp->CP0_MVPControl &= ~(1 << CP0MVPCo_EVP);
1709
            mips_vpe_sleep(other_cpu);
1710
        }
1711 1712
        other_cpu_env = other_cpu_env->next_cpu;
    } while (other_cpu_env);
1713
    return prev;
1714 1715
}

1716
target_ulong helper_evpe(CPUMIPSState *env)
1717
{
1718
    CPUMIPSState *other_cpu_env = first_cpu;
1719 1720 1721
    target_ulong prev = env->mvp->CP0_MVPControl;

    do {
1722 1723
        MIPSCPU *other_cpu = mips_env_get_cpu(other_cpu_env);

1724 1725
        if (other_cpu_env != env
            /* If the VPE is WFI, don't disturb its sleep.  */
1726
            && !mips_vpe_is_wfi(other_cpu)) {
1727
            /* Enable the VPE.  */
1728 1729
            other_cpu_env->mvp->CP0_MVPControl |= (1 << CP0MVPCo_EVP);
            mips_vpe_wake(other_cpu_env); /* And wake it up.  */
1730
        }
1731 1732
        other_cpu_env = other_cpu_env->next_cpu;
    } while (other_cpu_env);
1733
    return prev;
1734
}
1735
#endif /* !CONFIG_USER_ONLY */
1736

1737
void helper_fork(target_ulong arg1, target_ulong arg2)
1738
{
1739 1740
    // arg1 = rt, arg2 = rs
    arg1 = 0;
1741 1742 1743
    // TODO: store to TC register
}

1744
target_ulong helper_yield(CPUMIPSState *env, target_ulong arg)
1745
{
B
Blue Swirl 已提交
1746 1747
    target_long arg1 = arg;

1748
    if (arg1 < 0) {
1749
        /* No scheduling policy implemented. */
1750
        if (arg1 != -2) {
1751
            if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) &&
1752
                env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) {
1753 1754
                env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
                env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT;
1755
                helper_raise_exception(env, EXCP_THREAD);
1756 1757
            }
        }
1758
    } else if (arg1 == 0) {
A
aurel32 已提交
1759
        if (0 /* TODO: TC underflow */) {
1760
            env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
1761
            helper_raise_exception(env, EXCP_THREAD);
1762 1763 1764
        } else {
            // TODO: Deallocate TC
        }
1765
    } else if (arg1 > 0) {
1766 1767 1768
        /* Yield qualifier inputs not implemented. */
        env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
        env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT;
1769
        helper_raise_exception(env, EXCP_THREAD);
1770
    }
1771
    return env->CP0_YQMask;
1772 1773 1774
}

#ifndef CONFIG_USER_ONLY
B
bellard 已提交
1775
/* TLB management */
1776
static void cpu_mips_tlb_flush (CPUMIPSState *env, int flush_global)
1777 1778 1779
{
    /* Flush qemu's TLB and discard all shadowed entries.  */
    tlb_flush (env, flush_global);
1780
    env->tlb->tlb_in_use = env->tlb->nb_tlb;
1781 1782
}

1783
static void r4k_mips_tlb_flush_extra (CPUMIPSState *env, int first)
1784 1785
{
    /* Discard entries from env->tlb[first] onwards.  */
1786 1787
    while (env->tlb->tlb_in_use > first) {
        r4k_invalidate_tlb(env, --env->tlb->tlb_in_use, 0);
1788 1789 1790
    }
}

1791
static void r4k_fill_tlb(CPUMIPSState *env, int idx)
B
bellard 已提交
1792
{
A
Anthony Liguori 已提交
1793
    r4k_tlb_t *tlb;
B
bellard 已提交
1794 1795

    /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
1796
    tlb = &env->tlb->mmu.r4k.tlb[idx];
T
ths 已提交
1797
    tlb->VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
1798
#if defined(TARGET_MIPS64)
T
ths 已提交
1799
    tlb->VPN &= env->SEGMask;
1800
#endif
1801
    tlb->ASID = env->CP0_EntryHi & 0xFF;
T
ths 已提交
1802
    tlb->PageMask = env->CP0_PageMask;
B
bellard 已提交
1803
    tlb->G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
1804 1805 1806
    tlb->V0 = (env->CP0_EntryLo0 & 2) != 0;
    tlb->D0 = (env->CP0_EntryLo0 & 4) != 0;
    tlb->C0 = (env->CP0_EntryLo0 >> 3) & 0x7;
B
bellard 已提交
1807
    tlb->PFN[0] = (env->CP0_EntryLo0 >> 6) << 12;
1808 1809 1810
    tlb->V1 = (env->CP0_EntryLo1 & 2) != 0;
    tlb->D1 = (env->CP0_EntryLo1 & 4) != 0;
    tlb->C1 = (env->CP0_EntryLo1 >> 3) & 0x7;
B
bellard 已提交
1811 1812 1813
    tlb->PFN[1] = (env->CP0_EntryLo1 >> 6) << 12;
}

1814
void r4k_helper_tlbwi(CPUMIPSState *env)
B
bellard 已提交
1815
{
1816
    r4k_tlb_t *tlb;
A
aurel32 已提交
1817
    int idx;
1818 1819 1820
    target_ulong VPN;
    uint8_t ASID;
    bool G, V0, D0, V1, D1;
A
aurel32 已提交
1821 1822

    idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
    tlb = &env->tlb->mmu.r4k.tlb[idx];
    VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
#if defined(TARGET_MIPS64)
    VPN &= env->SEGMask;
#endif
    ASID = env->CP0_EntryHi & 0xff;
    G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
    V0 = (env->CP0_EntryLo0 & 2) != 0;
    D0 = (env->CP0_EntryLo0 & 4) != 0;
    V1 = (env->CP0_EntryLo1 & 2) != 0;
    D1 = (env->CP0_EntryLo1 & 4) != 0;

    /* Discard cached TLB entries, unless tlbwi is just upgrading access
       permissions on the current entry. */
    if (tlb->VPN != VPN || tlb->ASID != ASID || tlb->G != G ||
        (tlb->V0 && !V0) || (tlb->D0 && !D0) ||
        (tlb->V1 && !V1) || (tlb->D1 && !D1)) {
        r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
    }
1842

A
aurel32 已提交
1843
    r4k_invalidate_tlb(env, idx, 0);
1844
    r4k_fill_tlb(env, idx);
B
bellard 已提交
1845 1846
}

1847
void r4k_helper_tlbwr(CPUMIPSState *env)
B
bellard 已提交
1848 1849 1850
{
    int r = cpu_mips_get_random(env);

1851
    r4k_invalidate_tlb(env, r, 1);
1852
    r4k_fill_tlb(env, r);
B
bellard 已提交
1853 1854
}

1855
void r4k_helper_tlbp(CPUMIPSState *env)
B
bellard 已提交
1856
{
A
Anthony Liguori 已提交
1857
    r4k_tlb_t *tlb;
T
ths 已提交
1858
    target_ulong mask;
B
bellard 已提交
1859
    target_ulong tag;
T
ths 已提交
1860
    target_ulong VPN;
B
bellard 已提交
1861 1862 1863
    uint8_t ASID;
    int i;

B
bellard 已提交
1864
    ASID = env->CP0_EntryHi & 0xFF;
1865 1866
    for (i = 0; i < env->tlb->nb_tlb; i++) {
        tlb = &env->tlb->mmu.r4k.tlb[i];
T
ths 已提交
1867 1868 1869 1870
        /* 1k pages are not supported. */
        mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
        tag = env->CP0_EntryHi & ~mask;
        VPN = tlb->VPN & ~mask;
A
Aurelien Jarno 已提交
1871 1872 1873
#if defined(TARGET_MIPS64)
        tag &= env->SEGMask;
#endif
B
bellard 已提交
1874
        /* Check ASID, virtual page number & size */
T
ths 已提交
1875
        if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
B
bellard 已提交
1876
            /* TLB match */
T
ths 已提交
1877
            env->CP0_Index = i;
B
bellard 已提交
1878 1879 1880
            break;
        }
    }
1881
    if (i == env->tlb->nb_tlb) {
1882
        /* No match.  Discard any shadow entries, if any of them match.  */
1883
        for (i = env->tlb->nb_tlb; i < env->tlb->tlb_in_use; i++) {
A
aurel32 已提交
1884 1885 1886 1887 1888
            tlb = &env->tlb->mmu.r4k.tlb[i];
            /* 1k pages are not supported. */
            mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
            tag = env->CP0_EntryHi & ~mask;
            VPN = tlb->VPN & ~mask;
A
Aurelien Jarno 已提交
1889 1890 1891
#if defined(TARGET_MIPS64)
            tag &= env->SEGMask;
#endif
A
aurel32 已提交
1892 1893
            /* Check ASID, virtual page number & size */
            if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) {
1894
                r4k_mips_tlb_flush_extra (env, i);
A
aurel32 已提交
1895 1896 1897
                break;
            }
        }
1898

T
ths 已提交
1899
        env->CP0_Index |= 0x80000000;
B
bellard 已提交
1900 1901 1902
    }
}

1903
void r4k_helper_tlbr(CPUMIPSState *env)
B
bellard 已提交
1904
{
A
Anthony Liguori 已提交
1905
    r4k_tlb_t *tlb;
1906
    uint8_t ASID;
A
aurel32 已提交
1907
    int idx;
B
bellard 已提交
1908

1909
    ASID = env->CP0_EntryHi & 0xFF;
A
aurel32 已提交
1910 1911
    idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
    tlb = &env->tlb->mmu.r4k.tlb[idx];
B
bellard 已提交
1912 1913

    /* If this will change the current ASID, flush qemu's TLB.  */
1914 1915 1916
    if (ASID != tlb->ASID)
        cpu_mips_tlb_flush (env, 1);

1917
    r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
B
bellard 已提交
1918

B
bellard 已提交
1919
    env->CP0_EntryHi = tlb->VPN | tlb->ASID;
T
ths 已提交
1920
    env->CP0_PageMask = tlb->PageMask;
T
ths 已提交
1921 1922 1923 1924
    env->CP0_EntryLo0 = tlb->G | (tlb->V0 << 1) | (tlb->D0 << 2) |
                        (tlb->C0 << 3) | (tlb->PFN[0] >> 6);
    env->CP0_EntryLo1 = tlb->G | (tlb->V1 << 1) | (tlb->D1 << 2) |
                        (tlb->C1 << 3) | (tlb->PFN[1] >> 6);
B
bellard 已提交
1925 1926
}

1927
void helper_tlbwi(CPUMIPSState *env)
P
pbrook 已提交
1928
{
1929
    env->tlb->helper_tlbwi(env);
P
pbrook 已提交
1930 1931
}

1932
void helper_tlbwr(CPUMIPSState *env)
P
pbrook 已提交
1933
{
1934
    env->tlb->helper_tlbwr(env);
P
pbrook 已提交
1935 1936
}

1937
void helper_tlbp(CPUMIPSState *env)
P
pbrook 已提交
1938
{
1939
    env->tlb->helper_tlbp(env);
P
pbrook 已提交
1940 1941
}

1942
void helper_tlbr(CPUMIPSState *env)
P
pbrook 已提交
1943
{
1944
    env->tlb->helper_tlbr(env);
P
pbrook 已提交
1945 1946
}

1947
/* Specials */
1948
target_ulong helper_di(CPUMIPSState *env)
1949
{
1950 1951
    target_ulong t0 = env->CP0_Status;

1952 1953
    env->CP0_Status = t0 & ~(1 << CP0St_IE);
    return t0;
1954 1955
}

1956
target_ulong helper_ei(CPUMIPSState *env)
1957
{
1958 1959
    target_ulong t0 = env->CP0_Status;

1960 1961
    env->CP0_Status = t0 | (1 << CP0St_IE);
    return t0;
1962 1963
}

1964
static void debug_pre_eret(CPUMIPSState *env)
B
bellard 已提交
1965
{
1966
    if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1967 1968 1969 1970 1971 1972 1973 1974
        qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
                env->active_tc.PC, env->CP0_EPC);
        if (env->CP0_Status & (1 << CP0St_ERL))
            qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
        if (env->hflags & MIPS_HFLAG_DM)
            qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
        qemu_log("\n");
    }
1975 1976
}

1977
static void debug_post_eret(CPUMIPSState *env)
1978
{
1979
    if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
        qemu_log("  =>  PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
                env->active_tc.PC, env->CP0_EPC);
        if (env->CP0_Status & (1 << CP0St_ERL))
            qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
        if (env->hflags & MIPS_HFLAG_DM)
            qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
        switch (env->hflags & MIPS_HFLAG_KSU) {
        case MIPS_HFLAG_UM: qemu_log(", UM\n"); break;
        case MIPS_HFLAG_SM: qemu_log(", SM\n"); break;
        case MIPS_HFLAG_KM: qemu_log("\n"); break;
        default: cpu_abort(env, "Invalid MMU mode!\n"); break;
        }
T
ths 已提交
1992
    }
B
bellard 已提交
1993 1994
}

1995
static void set_pc(CPUMIPSState *env, target_ulong error_pc)
1996 1997 1998 1999 2000 2001 2002 2003 2004
{
    env->active_tc.PC = error_pc & ~(target_ulong)1;
    if (error_pc & 1) {
        env->hflags |= MIPS_HFLAG_M16;
    } else {
        env->hflags &= ~(MIPS_HFLAG_M16);
    }
}

2005
void helper_eret(CPUMIPSState *env)
2006
{
2007
    debug_pre_eret(env);
2008
    if (env->CP0_Status & (1 << CP0St_ERL)) {
2009
        set_pc(env, env->CP0_ErrorEPC);
2010 2011
        env->CP0_Status &= ~(1 << CP0St_ERL);
    } else {
2012
        set_pc(env, env->CP0_EPC);
2013 2014 2015
        env->CP0_Status &= ~(1 << CP0St_EXL);
    }
    compute_hflags(env);
2016
    debug_post_eret(env);
2017
    env->lladdr = 1;
2018 2019
}

2020
void helper_deret(CPUMIPSState *env)
2021
{
2022 2023
    debug_pre_eret(env);
    set_pc(env, env->CP0_DEPC);
2024

2025 2026
    env->hflags &= MIPS_HFLAG_DM;
    compute_hflags(env);
2027
    debug_post_eret(env);
2028
    env->lladdr = 1;
2029
}
T
ths 已提交
2030
#endif /* !CONFIG_USER_ONLY */
2031

2032
target_ulong helper_rdhwr_cpunum(CPUMIPSState *env)
2033 2034 2035
{
    if ((env->hflags & MIPS_HFLAG_CP0) ||
        (env->CP0_HWREna & (1 << 0)))
2036
        return env->CP0_EBase & 0x3ff;
2037
    else
2038
        helper_raise_exception(env, EXCP_RI);
2039

2040
    return 0;
2041 2042
}

2043
target_ulong helper_rdhwr_synci_step(CPUMIPSState *env)
2044 2045 2046
{
    if ((env->hflags & MIPS_HFLAG_CP0) ||
        (env->CP0_HWREna & (1 << 1)))
2047
        return env->SYNCI_Step;
2048
    else
2049
        helper_raise_exception(env, EXCP_RI);
2050

2051
    return 0;
2052 2053
}

2054
target_ulong helper_rdhwr_cc(CPUMIPSState *env)
2055 2056 2057
{
    if ((env->hflags & MIPS_HFLAG_CP0) ||
        (env->CP0_HWREna & (1 << 2)))
2058
        return env->CP0_Count;
2059
    else
2060
        helper_raise_exception(env, EXCP_RI);
2061

2062
    return 0;
2063 2064
}

2065
target_ulong helper_rdhwr_ccres(CPUMIPSState *env)
2066 2067 2068
{
    if ((env->hflags & MIPS_HFLAG_CP0) ||
        (env->CP0_HWREna & (1 << 3)))
2069
        return env->CCRes;
2070
    else
2071
        helper_raise_exception(env, EXCP_RI);
2072

2073
    return 0;
2074 2075
}

2076
void helper_pmon(CPUMIPSState *env, int function)
B
bellard 已提交
2077 2078 2079 2080
{
    function /= 2;
    switch (function) {
    case 2: /* TODO: char inbyte(int waitflag); */
2081 2082
        if (env->active_tc.gpr[4] == 0)
            env->active_tc.gpr[2] = -1;
B
bellard 已提交
2083 2084
        /* Fall through */
    case 11: /* TODO: char inbyte (void); */
2085
        env->active_tc.gpr[2] = -1;
B
bellard 已提交
2086 2087 2088
        break;
    case 3:
    case 12:
2089
        printf("%c", (char)(env->active_tc.gpr[4] & 0xFF));
B
bellard 已提交
2090 2091 2092 2093 2094
        break;
    case 17:
        break;
    case 158:
        {
2095
            unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4];
B
bellard 已提交
2096 2097 2098 2099 2100
            printf("%s", fmt);
        }
        break;
    }
}
2101

2102
void helper_wait(CPUMIPSState *env)
T
ths 已提交
2103 2104
{
    env->halted = 1;
2105
    cpu_reset_interrupt(env, CPU_INTERRUPT_WAKE);
2106
    helper_raise_exception(env, EXCP_HLT);
T
ths 已提交
2107 2108
}

2109
#if !defined(CONFIG_USER_ONLY)
2110

2111 2112
static void QEMU_NORETURN do_unaligned_access(CPUMIPSState *env,
                                              target_ulong addr, int is_write,
2113
                                              int is_user, uintptr_t retaddr);
B
bellard 已提交
2114

2115
#define MMUSUFFIX _mmu
B
bellard 已提交
2116
#define ALIGNED_ONLY
2117 2118

#define SHIFT 0
2119
#include "exec/softmmu_template.h"
2120 2121

#define SHIFT 1
2122
#include "exec/softmmu_template.h"
2123 2124

#define SHIFT 2
2125
#include "exec/softmmu_template.h"
2126 2127

#define SHIFT 3
2128
#include "exec/softmmu_template.h"
2129

2130 2131
static void do_unaligned_access(CPUMIPSState *env, target_ulong addr,
                                int is_write, int is_user, uintptr_t retaddr)
B
bellard 已提交
2132 2133
{
    env->CP0_BadVAddr = addr;
2134
    do_raise_exception(env, (is_write == 1) ? EXCP_AdES : EXCP_AdEL, retaddr);
B
bellard 已提交
2135 2136
}

2137
void tlb_fill(CPUMIPSState *env, target_ulong addr, int is_write, int mmu_idx,
2138
              uintptr_t retaddr)
2139 2140 2141
{
    int ret;

2142
    ret = cpu_mips_handle_mmu_fault(env, addr, is_write, mmu_idx);
2143
    if (ret) {
2144 2145
        do_raise_exception_err(env, env->exception_index,
                               env->error_code, retaddr);
2146 2147 2148
    }
}

A
Avi Kivity 已提交
2149
void cpu_unassigned_access(CPUMIPSState *env, hwaddr addr,
2150
                           int is_write, int is_exec, int unused, int size)
T
ths 已提交
2151 2152
{
    if (is_exec)
2153
        helper_raise_exception(env, EXCP_IBE);
T
ths 已提交
2154
    else
2155
        helper_raise_exception(env, EXCP_DBE);
T
ths 已提交
2156
}
2157
#endif /* !CONFIG_USER_ONLY */
2158 2159 2160

/* Complex FPU operations which may need stack space. */

P
pbrook 已提交
2161 2162
#define FLOAT_TWO32 make_float32(1 << 30)
#define FLOAT_TWO64 make_float64(1ULL << 62)
2163 2164
#define FP_TO_INT32_OVERFLOW 0x7fffffff
#define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
T
ths 已提交
2165

2166
/* convert MIPS rounding mode in FCR31 to IEEE library */
B
Blue Swirl 已提交
2167
static unsigned int ieee_rm[] = {
2168 2169 2170 2171 2172 2173 2174
    float_round_nearest_even,
    float_round_to_zero,
    float_round_up,
    float_round_down
};

#define RESTORE_ROUNDING_MODE \
2175
    set_float_rounding_mode(ieee_rm[env->active_fpu.fcr31 & 3], &env->active_fpu.fp_status)
2176

2177 2178 2179
#define RESTORE_FLUSH_MODE \
    set_flush_to_zero((env->active_fpu.fcr31 & (1 << 24)) != 0, &env->active_fpu.fp_status);

2180
target_ulong helper_cfc1(CPUMIPSState *env, uint32_t reg)
2181
{
2182
    target_ulong arg1;
2183

2184 2185
    switch (reg) {
    case 0:
2186
        arg1 = (int32_t)env->active_fpu.fcr0;
2187 2188
        break;
    case 25:
2189
        arg1 = ((env->active_fpu.fcr31 >> 24) & 0xfe) | ((env->active_fpu.fcr31 >> 23) & 0x1);
2190 2191
        break;
    case 26:
2192
        arg1 = env->active_fpu.fcr31 & 0x0003f07c;
2193 2194
        break;
    case 28:
2195
        arg1 = (env->active_fpu.fcr31 & 0x00000f83) | ((env->active_fpu.fcr31 >> 22) & 0x4);
2196 2197
        break;
    default:
2198
        arg1 = (int32_t)env->active_fpu.fcr31;
2199 2200
        break;
    }
2201

2202
    return arg1;
2203 2204
}

2205
void helper_ctc1(CPUMIPSState *env, target_ulong arg1, uint32_t reg)
2206 2207
{
    switch(reg) {
2208
    case 25:
2209
        if (arg1 & 0xffffff00)
2210
            return;
2211 2212
        env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0x017fffff) | ((arg1 & 0xfe) << 24) |
                     ((arg1 & 0x1) << 23);
2213 2214
        break;
    case 26:
2215
        if (arg1 & 0x007c0000)
2216
            return;
2217
        env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfffc0f83) | (arg1 & 0x0003f07c);
2218 2219
        break;
    case 28:
2220
        if (arg1 & 0x007c0000)
2221
            return;
2222 2223
        env->active_fpu.fcr31 = (env->active_fpu.fcr31 & 0xfefff07c) | (arg1 & 0x00000f83) |
                     ((arg1 & 0x4) << 22);
2224 2225
        break;
    case 31:
2226
        if (arg1 & 0x007c0000)
2227
            return;
2228
        env->active_fpu.fcr31 = arg1;
2229 2230 2231 2232 2233 2234
        break;
    default:
        return;
    }
    /* set rounding mode */
    RESTORE_ROUNDING_MODE;
2235 2236
    /* set flush-to-zero mode */
    RESTORE_FLUSH_MODE;
2237 2238
    set_float_exception_flags(0, &env->active_fpu.fp_status);
    if ((GET_FP_ENABLE(env->active_fpu.fcr31) | 0x20) & GET_FP_CAUSE(env->active_fpu.fcr31))
2239
        do_raise_exception(env, EXCP_FPE, GETPC());
2240 2241
}

2242
static inline int ieee_ex_to_mips(int xcpt)
2243
{
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262
    int ret = 0;
    if (xcpt) {
        if (xcpt & float_flag_invalid) {
            ret |= FP_INVALID;
        }
        if (xcpt & float_flag_overflow) {
            ret |= FP_OVERFLOW;
        }
        if (xcpt & float_flag_underflow) {
            ret |= FP_UNDERFLOW;
        }
        if (xcpt & float_flag_divbyzero) {
            ret |= FP_DIV0;
        }
        if (xcpt & float_flag_inexact) {
            ret |= FP_INEXACT;
        }
    }
    return ret;
2263 2264
}

2265
static inline void update_fcr31(CPUMIPSState *env, uintptr_t pc)
2266
{
2267
    int tmp = ieee_ex_to_mips(get_float_exception_flags(&env->active_fpu.fp_status));
2268

2269
    SET_FP_CAUSE(env->active_fpu.fcr31, tmp);
2270 2271 2272 2273 2274

    if (tmp) {
        set_float_exception_flags(0, &env->active_fpu.fp_status);

        if (GET_FP_ENABLE(env->active_fpu.fcr31) & tmp) {
2275
            do_raise_exception(env, EXCP_FPE, pc);
2276 2277 2278 2279
        } else {
            UPDATE_FP_FLAGS(env->active_fpu.fcr31, tmp);
        }
    }
2280 2281
}

2282 2283 2284 2285 2286 2287
/* Float support.
   Single precition routines have a "s" suffix, double precision a
   "d" suffix, 32bit integer "w", 64bit integer "l", paired single "ps",
   paired single lower "pl", paired single upper "pu".  */

/* unary operations, modifying fp status  */
2288
uint64_t helper_float_sqrt_d(CPUMIPSState *env, uint64_t fdt0)
2289
{
A
Aurelien Jarno 已提交
2290
    fdt0 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2291
    update_fcr31(env, GETPC());
A
Aurelien Jarno 已提交
2292
    return fdt0;
2293 2294
}

2295
uint32_t helper_float_sqrt_s(CPUMIPSState *env, uint32_t fst0)
2296
{
A
Aurelien Jarno 已提交
2297
    fst0 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2298
    update_fcr31(env, GETPC());
A
Aurelien Jarno 已提交
2299
    return fst0;
2300
}
2301

2302
uint64_t helper_float_cvtd_s(CPUMIPSState *env, uint32_t fst0)
2303
{
2304 2305
    uint64_t fdt2;

2306
    fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status);
2307
    update_fcr31(env, GETPC());
2308
    return fdt2;
2309
}
2310

2311
uint64_t helper_float_cvtd_w(CPUMIPSState *env, uint32_t wt0)
2312
{
2313 2314
    uint64_t fdt2;

2315
    fdt2 = int32_to_float64(wt0, &env->active_fpu.fp_status);
2316
    update_fcr31(env, GETPC());
2317
    return fdt2;
2318
}
2319

2320
uint64_t helper_float_cvtd_l(CPUMIPSState *env, uint64_t dt0)
2321
{
2322 2323
    uint64_t fdt2;

2324
    fdt2 = int64_to_float64(dt0, &env->active_fpu.fp_status);
2325
    update_fcr31(env, GETPC());
2326
    return fdt2;
2327
}
2328

2329
uint64_t helper_float_cvtl_d(CPUMIPSState *env, uint64_t fdt0)
2330
{
2331 2332
    uint64_t dt2;

2333
    dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2334 2335
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2336
        dt2 = FP_TO_INT64_OVERFLOW;
2337
    }
2338
    update_fcr31(env, GETPC());
2339
    return dt2;
2340
}
2341

2342
uint64_t helper_float_cvtl_s(CPUMIPSState *env, uint32_t fst0)
2343
{
2344 2345
    uint64_t dt2;

2346
    dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2347 2348
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2349
        dt2 = FP_TO_INT64_OVERFLOW;
2350
    }
2351
    update_fcr31(env, GETPC());
2352
    return dt2;
2353 2354
}

2355
uint64_t helper_float_cvtps_pw(CPUMIPSState *env, uint64_t dt0)
2356
{
2357 2358 2359
    uint32_t fst2;
    uint32_t fsth2;

2360 2361
    fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
    fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status);
2362
    update_fcr31(env, GETPC());
2363
    return ((uint64_t)fsth2 << 32) | fst2;
2364
}
2365

2366
uint64_t helper_float_cvtpw_ps(CPUMIPSState *env, uint64_t fdt0)
2367
{
2368 2369
    uint32_t wt2;
    uint32_t wth2;
A
Aurelien Jarno 已提交
2370
    int excp, excph;
2371

2372
    wt2 = float32_to_int32(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
A
Aurelien Jarno 已提交
2373 2374
    excp = get_float_exception_flags(&env->active_fpu.fp_status);
    if (excp & (float_flag_overflow | float_flag_invalid)) {
2375
        wt2 = FP_TO_INT32_OVERFLOW;
A
Aurelien Jarno 已提交
2376 2377 2378 2379 2380 2381
    }

    set_float_exception_flags(0, &env->active_fpu.fp_status);
    wth2 = float32_to_int32(fdt0 >> 32, &env->active_fpu.fp_status);
    excph = get_float_exception_flags(&env->active_fpu.fp_status);
    if (excph & (float_flag_overflow | float_flag_invalid)) {
2382
        wth2 = FP_TO_INT32_OVERFLOW;
2383
    }
A
Aurelien Jarno 已提交
2384 2385

    set_float_exception_flags(excp | excph, &env->active_fpu.fp_status);
2386
    update_fcr31(env, GETPC());
A
Aurelien Jarno 已提交
2387

2388
    return ((uint64_t)wth2 << 32) | wt2;
2389
}
2390

2391
uint32_t helper_float_cvts_d(CPUMIPSState *env, uint64_t fdt0)
2392
{
2393 2394
    uint32_t fst2;

2395
    fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status);
2396
    update_fcr31(env, GETPC());
2397
    return fst2;
2398
}
2399

2400
uint32_t helper_float_cvts_w(CPUMIPSState *env, uint32_t wt0)
2401
{
2402 2403
    uint32_t fst2;

2404
    fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status);
2405
    update_fcr31(env, GETPC());
2406
    return fst2;
2407
}
2408

2409
uint32_t helper_float_cvts_l(CPUMIPSState *env, uint64_t dt0)
2410
{
2411 2412
    uint32_t fst2;

2413
    fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status);
2414
    update_fcr31(env, GETPC());
2415
    return fst2;
2416
}
2417

2418
uint32_t helper_float_cvts_pl(CPUMIPSState *env, uint32_t wt0)
2419
{
2420 2421 2422
    uint32_t wt2;

    wt2 = wt0;
2423
    update_fcr31(env, GETPC());
2424
    return wt2;
2425
}
2426

2427
uint32_t helper_float_cvts_pu(CPUMIPSState *env, uint32_t wth0)
2428
{
2429 2430 2431
    uint32_t wt2;

    wt2 = wth0;
2432
    update_fcr31(env, GETPC());
2433
    return wt2;
2434
}
2435

2436
uint32_t helper_float_cvtw_s(CPUMIPSState *env, uint32_t fst0)
2437
{
2438 2439
    uint32_t wt2;

2440
    wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2441
    update_fcr31(env, GETPC());
2442 2443
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2444
        wt2 = FP_TO_INT32_OVERFLOW;
2445
    }
2446
    return wt2;
2447
}
2448

2449
uint32_t helper_float_cvtw_d(CPUMIPSState *env, uint64_t fdt0)
2450
{
2451 2452
    uint32_t wt2;

2453
    wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2454 2455
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2456
        wt2 = FP_TO_INT32_OVERFLOW;
2457
    }
2458
    update_fcr31(env, GETPC());
2459
    return wt2;
2460 2461
}

2462
uint64_t helper_float_roundl_d(CPUMIPSState *env, uint64_t fdt0)
2463
{
2464 2465
    uint64_t dt2;

2466 2467
    set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
    dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2468
    RESTORE_ROUNDING_MODE;
2469 2470
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2471
        dt2 = FP_TO_INT64_OVERFLOW;
2472
    }
2473
    update_fcr31(env, GETPC());
2474
    return dt2;
2475
}
2476

2477
uint64_t helper_float_roundl_s(CPUMIPSState *env, uint32_t fst0)
2478
{
2479 2480
    uint64_t dt2;

2481 2482
    set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
    dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2483
    RESTORE_ROUNDING_MODE;
2484 2485
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2486
        dt2 = FP_TO_INT64_OVERFLOW;
2487
    }
2488
    update_fcr31(env, GETPC());
2489
    return dt2;
2490
}
2491

2492
uint32_t helper_float_roundw_d(CPUMIPSState *env, uint64_t fdt0)
2493
{
2494 2495
    uint32_t wt2;

2496 2497
    set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
    wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2498
    RESTORE_ROUNDING_MODE;
2499 2500
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2501
        wt2 = FP_TO_INT32_OVERFLOW;
2502
    }
2503
    update_fcr31(env, GETPC());
2504
    return wt2;
2505
}
2506

2507
uint32_t helper_float_roundw_s(CPUMIPSState *env, uint32_t fst0)
2508
{
2509 2510
    uint32_t wt2;

2511 2512
    set_float_rounding_mode(float_round_nearest_even, &env->active_fpu.fp_status);
    wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2513
    RESTORE_ROUNDING_MODE;
2514 2515
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2516
        wt2 = FP_TO_INT32_OVERFLOW;
2517
    }
2518
    update_fcr31(env, GETPC());
2519
    return wt2;
2520 2521
}

2522
uint64_t helper_float_truncl_d(CPUMIPSState *env, uint64_t fdt0)
2523
{
2524 2525
    uint64_t dt2;

2526
    dt2 = float64_to_int64_round_to_zero(fdt0, &env->active_fpu.fp_status);
2527 2528
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2529
        dt2 = FP_TO_INT64_OVERFLOW;
2530
    }
2531
    update_fcr31(env, GETPC());
2532
    return dt2;
2533
}
2534

2535
uint64_t helper_float_truncl_s(CPUMIPSState *env, uint32_t fst0)
2536
{
2537 2538
    uint64_t dt2;

2539
    dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status);
2540 2541
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2542
        dt2 = FP_TO_INT64_OVERFLOW;
2543
    }
2544
    update_fcr31(env, GETPC());
2545
    return dt2;
2546
}
2547

2548
uint32_t helper_float_truncw_d(CPUMIPSState *env, uint64_t fdt0)
2549
{
2550 2551
    uint32_t wt2;

2552
    wt2 = float64_to_int32_round_to_zero(fdt0, &env->active_fpu.fp_status);
2553 2554
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2555
        wt2 = FP_TO_INT32_OVERFLOW;
2556
    }
2557
    update_fcr31(env, GETPC());
2558
    return wt2;
2559
}
2560

2561
uint32_t helper_float_truncw_s(CPUMIPSState *env, uint32_t fst0)
2562
{
2563 2564
    uint32_t wt2;

2565
    wt2 = float32_to_int32_round_to_zero(fst0, &env->active_fpu.fp_status);
2566 2567
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2568
        wt2 = FP_TO_INT32_OVERFLOW;
2569
    }
2570
    update_fcr31(env, GETPC());
2571
    return wt2;
2572 2573
}

2574
uint64_t helper_float_ceill_d(CPUMIPSState *env, uint64_t fdt0)
2575
{
2576 2577
    uint64_t dt2;

2578 2579
    set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
    dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2580
    RESTORE_ROUNDING_MODE;
2581 2582
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2583
        dt2 = FP_TO_INT64_OVERFLOW;
2584
    }
2585
    update_fcr31(env, GETPC());
2586
    return dt2;
2587
}
2588

2589
uint64_t helper_float_ceill_s(CPUMIPSState *env, uint32_t fst0)
2590
{
2591 2592
    uint64_t dt2;

2593 2594
    set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
    dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2595
    RESTORE_ROUNDING_MODE;
2596 2597
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2598
        dt2 = FP_TO_INT64_OVERFLOW;
2599
    }
2600
    update_fcr31(env, GETPC());
2601
    return dt2;
2602
}
2603

2604
uint32_t helper_float_ceilw_d(CPUMIPSState *env, uint64_t fdt0)
2605
{
2606 2607
    uint32_t wt2;

2608 2609
    set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
    wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2610
    RESTORE_ROUNDING_MODE;
2611 2612
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2613
        wt2 = FP_TO_INT32_OVERFLOW;
2614
    }
2615
    update_fcr31(env, GETPC());
2616
    return wt2;
2617
}
2618

2619
uint32_t helper_float_ceilw_s(CPUMIPSState *env, uint32_t fst0)
2620
{
2621 2622
    uint32_t wt2;

2623 2624
    set_float_rounding_mode(float_round_up, &env->active_fpu.fp_status);
    wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2625
    RESTORE_ROUNDING_MODE;
2626 2627
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2628
        wt2 = FP_TO_INT32_OVERFLOW;
2629
    }
2630
    update_fcr31(env, GETPC());
2631
    return wt2;
2632 2633
}

2634
uint64_t helper_float_floorl_d(CPUMIPSState *env, uint64_t fdt0)
2635
{
2636 2637
    uint64_t dt2;

2638 2639
    set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
    dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status);
2640
    RESTORE_ROUNDING_MODE;
2641 2642
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2643
        dt2 = FP_TO_INT64_OVERFLOW;
2644
    }
2645
    update_fcr31(env, GETPC());
2646
    return dt2;
2647
}
2648

2649
uint64_t helper_float_floorl_s(CPUMIPSState *env, uint32_t fst0)
2650
{
2651 2652
    uint64_t dt2;

2653 2654
    set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
    dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status);
2655
    RESTORE_ROUNDING_MODE;
2656 2657
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2658
        dt2 = FP_TO_INT64_OVERFLOW;
2659
    }
2660
    update_fcr31(env, GETPC());
2661
    return dt2;
2662
}
2663

2664
uint32_t helper_float_floorw_d(CPUMIPSState *env, uint64_t fdt0)
2665
{
2666 2667
    uint32_t wt2;

2668 2669
    set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
    wt2 = float64_to_int32(fdt0, &env->active_fpu.fp_status);
2670
    RESTORE_ROUNDING_MODE;
2671 2672
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2673
        wt2 = FP_TO_INT32_OVERFLOW;
2674
    }
2675
    update_fcr31(env, GETPC());
2676
    return wt2;
2677
}
2678

2679
uint32_t helper_float_floorw_s(CPUMIPSState *env, uint32_t fst0)
2680
{
2681 2682
    uint32_t wt2;

2683 2684
    set_float_rounding_mode(float_round_down, &env->active_fpu.fp_status);
    wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status);
2685
    RESTORE_ROUNDING_MODE;
2686 2687
    if (get_float_exception_flags(&env->active_fpu.fp_status)
        & (float_flag_invalid | float_flag_overflow)) {
2688
        wt2 = FP_TO_INT32_OVERFLOW;
2689
    }
2690
    update_fcr31(env, GETPC());
2691
    return wt2;
2692 2693
}

2694
/* unary operations, not modifying fp status  */
2695
#define FLOAT_UNOP(name)                                       \
2696
uint64_t helper_float_ ## name ## _d(uint64_t fdt0)                \
2697 2698 2699
{                                                              \
    return float64_ ## name(fdt0);                             \
}                                                              \
2700
uint32_t helper_float_ ## name ## _s(uint32_t fst0)                \
2701 2702 2703
{                                                              \
    return float32_ ## name(fst0);                             \
}                                                              \
2704
uint64_t helper_float_ ## name ## _ps(uint64_t fdt0)               \
2705 2706 2707 2708 2709 2710 2711
{                                                              \
    uint32_t wt0;                                              \
    uint32_t wth0;                                             \
                                                               \
    wt0 = float32_ ## name(fdt0 & 0XFFFFFFFF);                 \
    wth0 = float32_ ## name(fdt0 >> 32);                       \
    return ((uint64_t)wth0 << 32) | wt0;                       \
2712 2713 2714 2715 2716
}
FLOAT_UNOP(abs)
FLOAT_UNOP(chs)
#undef FLOAT_UNOP

T
ths 已提交
2717
/* MIPS specific unary operations */
2718
uint64_t helper_float_recip_d(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2719
{
2720 2721
    uint64_t fdt2;

2722
    fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
2723
    update_fcr31(env, GETPC());
2724
    return fdt2;
T
ths 已提交
2725
}
2726

2727
uint32_t helper_float_recip_s(CPUMIPSState *env, uint32_t fst0)
T
ths 已提交
2728
{
2729 2730
    uint32_t fst2;

2731
    fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
2732
    update_fcr31(env, GETPC());
2733
    return fst2;
T
ths 已提交
2734 2735
}

2736
uint64_t helper_float_rsqrt_d(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2737
{
2738 2739
    uint64_t fdt2;

2740
    fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2741
    fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
2742
    update_fcr31(env, GETPC());
2743
    return fdt2;
T
ths 已提交
2744
}
2745

2746
uint32_t helper_float_rsqrt_s(CPUMIPSState *env, uint32_t fst0)
T
ths 已提交
2747
{
2748 2749
    uint32_t fst2;

2750
    fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2751
    fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2752
    update_fcr31(env, GETPC());
2753
    return fst2;
T
ths 已提交
2754 2755
}

2756
uint64_t helper_float_recip1_d(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2757
{
2758 2759
    uint64_t fdt2;

2760
    fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status);
2761
    update_fcr31(env, GETPC());
2762
    return fdt2;
T
ths 已提交
2763
}
2764

2765
uint32_t helper_float_recip1_s(CPUMIPSState *env, uint32_t fst0)
T
ths 已提交
2766
{
2767 2768
    uint32_t fst2;

2769
    fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status);
2770
    update_fcr31(env, GETPC());
2771
    return fst2;
T
ths 已提交
2772
}
2773

2774
uint64_t helper_float_recip1_ps(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2775
{
2776 2777 2778
    uint32_t fst2;
    uint32_t fsth2;

2779 2780
    fst2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
    fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status);
2781
    update_fcr31(env, GETPC());
2782
    return ((uint64_t)fsth2 << 32) | fst2;
T
ths 已提交
2783 2784
}

2785
uint64_t helper_float_rsqrt1_d(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2786
{
2787 2788
    uint64_t fdt2;

2789
    fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status);
2790
    fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status);
2791
    update_fcr31(env, GETPC());
2792
    return fdt2;
T
ths 已提交
2793
}
2794

2795
uint32_t helper_float_rsqrt1_s(CPUMIPSState *env, uint32_t fst0)
T
ths 已提交
2796
{
2797 2798
    uint32_t fst2;

2799
    fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status);
2800
    fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
2801
    update_fcr31(env, GETPC());
2802
    return fst2;
T
ths 已提交
2803
}
2804

2805
uint64_t helper_float_rsqrt1_ps(CPUMIPSState *env, uint64_t fdt0)
T
ths 已提交
2806
{
2807 2808 2809
    uint32_t fst2;
    uint32_t fsth2;

2810 2811
    fst2 = float32_sqrt(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status);
    fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status);
2812 2813
    fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status);
    fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status);
2814
    update_fcr31(env, GETPC());
2815
    return ((uint64_t)fsth2 << 32) | fst2;
T
ths 已提交
2816 2817
}

2818
#define FLOAT_OP(name, p) void helper_float_##name##_##p(CPUMIPSState *env)
2819

2820
/* binary operations */
2821
#define FLOAT_BINOP(name)                                          \
2822 2823
uint64_t helper_float_ ## name ## _d(CPUMIPSState *env,            \
                                     uint64_t fdt0, uint64_t fdt1) \
2824 2825 2826
{                                                                  \
    uint64_t dt2;                                                  \
                                                                   \
2827
    dt2 = float64_ ## name (fdt0, fdt1, &env->active_fpu.fp_status);     \
2828
    update_fcr31(env, GETPC());                                    \
2829 2830 2831
    return dt2;                                                    \
}                                                                  \
                                                                   \
2832 2833
uint32_t helper_float_ ## name ## _s(CPUMIPSState *env,            \
                                     uint32_t fst0, uint32_t fst1) \
2834 2835 2836
{                                                                  \
    uint32_t wt2;                                                  \
                                                                   \
2837
    wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status);     \
2838
    update_fcr31(env, GETPC());                                    \
2839 2840 2841
    return wt2;                                                    \
}                                                                  \
                                                                   \
2842 2843 2844
uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env,           \
                                      uint64_t fdt0,               \
                                      uint64_t fdt1)               \
2845 2846 2847 2848 2849 2850 2851 2852
{                                                                  \
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;                             \
    uint32_t fsth0 = fdt0 >> 32;                                   \
    uint32_t fst1 = fdt1 & 0XFFFFFFFF;                             \
    uint32_t fsth1 = fdt1 >> 32;                                   \
    uint32_t wt2;                                                  \
    uint32_t wth2;                                                 \
                                                                   \
2853 2854
    wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status);     \
    wth2 = float32_ ## name (fsth0, fsth1, &env->active_fpu.fp_status);  \
2855
    update_fcr31(env, GETPC());                                    \
2856
    return ((uint64_t)wth2 << 32) | wt2;                           \
2857
}
2858

2859 2860 2861 2862 2863 2864
FLOAT_BINOP(add)
FLOAT_BINOP(sub)
FLOAT_BINOP(mul)
FLOAT_BINOP(div)
#undef FLOAT_BINOP

2865 2866 2867 2868 2869 2870 2871 2872
/* FMA based operations */
#define FLOAT_FMA(name, type)                                        \
uint64_t helper_float_ ## name ## _d(CPUMIPSState *env,              \
                                     uint64_t fdt0, uint64_t fdt1,   \
                                     uint64_t fdt2)                  \
{                                                                    \
    fdt0 = float64_muladd(fdt0, fdt1, fdt2, type,                    \
                         &env->active_fpu.fp_status);                \
2873
    update_fcr31(env, GETPC());                                      \
2874 2875 2876 2877 2878 2879 2880 2881 2882
    return fdt0;                                                     \
}                                                                    \
                                                                     \
uint32_t helper_float_ ## name ## _s(CPUMIPSState *env,              \
                                     uint32_t fst0, uint32_t fst1,   \
                                     uint32_t fst2)                  \
{                                                                    \
    fst0 = float32_muladd(fst0, fst1, fst2, type,                    \
                         &env->active_fpu.fp_status);                \
2883
    update_fcr31(env, GETPC());                                      \
2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901
    return fst0;                                                     \
}                                                                    \
                                                                     \
uint64_t helper_float_ ## name ## _ps(CPUMIPSState *env,             \
                                      uint64_t fdt0, uint64_t fdt1,  \
                                      uint64_t fdt2)                 \
{                                                                    \
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;                               \
    uint32_t fsth0 = fdt0 >> 32;                                     \
    uint32_t fst1 = fdt1 & 0XFFFFFFFF;                               \
    uint32_t fsth1 = fdt1 >> 32;                                     \
    uint32_t fst2 = fdt2 & 0XFFFFFFFF;                               \
    uint32_t fsth2 = fdt2 >> 32;                                     \
                                                                     \
    fst0 = float32_muladd(fst0, fst1, fst2, type,                    \
                          &env->active_fpu.fp_status);               \
    fsth0 = float32_muladd(fsth0, fsth1, fsth2, type,                \
                           &env->active_fpu.fp_status);              \
2902
    update_fcr31(env, GETPC());                                      \
2903 2904 2905 2906 2907 2908 2909
    return ((uint64_t)fsth0 << 32) | fst0;                           \
}
FLOAT_FMA(madd, 0)
FLOAT_FMA(msub, float_muladd_negate_c)
FLOAT_FMA(nmadd, float_muladd_negate_result)
FLOAT_FMA(nmsub, float_muladd_negate_result | float_muladd_negate_c)
#undef FLOAT_FMA
2910

T
ths 已提交
2911
/* MIPS specific binary operations */
2912
uint64_t helper_float_recip2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
T
ths 已提交
2913
{
2914
    fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
2915
    fdt2 = float64_chs(float64_sub(fdt2, float64_one, &env->active_fpu.fp_status));
2916
    update_fcr31(env, GETPC());
2917
    return fdt2;
T
ths 已提交
2918
}
2919

2920
uint32_t helper_float_recip2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
T
ths 已提交
2921
{
2922
    fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2923
    fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
2924
    update_fcr31(env, GETPC());
2925
    return fst2;
T
ths 已提交
2926
}
2927

2928
uint64_t helper_float_recip2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
T
ths 已提交
2929
{
2930 2931 2932 2933 2934
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;
    uint32_t fsth0 = fdt0 >> 32;
    uint32_t fst2 = fdt2 & 0XFFFFFFFF;
    uint32_t fsth2 = fdt2 >> 32;

2935 2936
    fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
    fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
2937 2938
    fst2 = float32_chs(float32_sub(fst2, float32_one, &env->active_fpu.fp_status));
    fsth2 = float32_chs(float32_sub(fsth2, float32_one, &env->active_fpu.fp_status));
2939
    update_fcr31(env, GETPC());
2940
    return ((uint64_t)fsth2 << 32) | fst2;
T
ths 已提交
2941 2942
}

2943
uint64_t helper_float_rsqrt2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
T
ths 已提交
2944
{
2945
    fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status);
2946
    fdt2 = float64_sub(fdt2, float64_one, &env->active_fpu.fp_status);
2947
    fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, &env->active_fpu.fp_status));
2948
    update_fcr31(env, GETPC());
2949
    return fdt2;
T
ths 已提交
2950
}
2951

2952
uint32_t helper_float_rsqrt2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2)
T
ths 已提交
2953
{
2954
    fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
2955
    fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
2956
    fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
2957
    update_fcr31(env, GETPC());
2958
    return fst2;
T
ths 已提交
2959
}
2960

2961
uint64_t helper_float_rsqrt2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2)
T
ths 已提交
2962
{
2963 2964 2965 2966 2967
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;
    uint32_t fsth0 = fdt0 >> 32;
    uint32_t fst2 = fdt2 & 0XFFFFFFFF;
    uint32_t fsth2 = fdt2 >> 32;

2968 2969
    fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status);
    fsth2 = float32_mul(fsth0, fsth2, &env->active_fpu.fp_status);
2970 2971
    fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status);
    fsth2 = float32_sub(fsth2, float32_one, &env->active_fpu.fp_status);
2972 2973
    fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status));
    fsth2 = float32_chs(float32_div(fsth2, FLOAT_TWO32, &env->active_fpu.fp_status));
2974
    update_fcr31(env, GETPC());
2975
    return ((uint64_t)fsth2 << 32) | fst2;
T
ths 已提交
2976 2977
}

2978
uint64_t helper_float_addr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
2979
{
2980 2981 2982 2983 2984 2985 2986
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;
    uint32_t fsth0 = fdt0 >> 32;
    uint32_t fst1 = fdt1 & 0XFFFFFFFF;
    uint32_t fsth1 = fdt1 >> 32;
    uint32_t fst2;
    uint32_t fsth2;

2987 2988
    fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status);
    fsth2 = float32_add (fst1, fsth1, &env->active_fpu.fp_status);
2989
    update_fcr31(env, GETPC());
2990
    return ((uint64_t)fsth2 << 32) | fst2;
2991 2992
}

2993
uint64_t helper_float_mulr_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt1)
T
ths 已提交
2994
{
2995 2996 2997 2998 2999 3000 3001
    uint32_t fst0 = fdt0 & 0XFFFFFFFF;
    uint32_t fsth0 = fdt0 >> 32;
    uint32_t fst1 = fdt1 & 0XFFFFFFFF;
    uint32_t fsth1 = fdt1 >> 32;
    uint32_t fst2;
    uint32_t fsth2;

3002 3003
    fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status);
    fsth2 = float32_mul (fst1, fsth1, &env->active_fpu.fp_status);
3004
    update_fcr31(env, GETPC());
3005
    return ((uint64_t)fsth2 << 32) | fst2;
T
ths 已提交
3006 3007
}

T
ths 已提交
3008
/* compare operations */
3009
#define FOP_COND_D(op, cond)                                   \
3010 3011
void helper_cmp_d_ ## op(CPUMIPSState *env, uint64_t fdt0,     \
                         uint64_t fdt1, int cc)                \
3012
{                                                              \
3013 3014
    int c;                                                     \
    c = cond;                                                  \
3015
    update_fcr31(env, GETPC());                                \
3016
    if (c)                                                     \
3017
        SET_FP_COND(cc, env->active_fpu);                      \
3018
    else                                                       \
3019
        CLEAR_FP_COND(cc, env->active_fpu);                    \
3020
}                                                              \
3021 3022
void helper_cmpabs_d_ ## op(CPUMIPSState *env, uint64_t fdt0,  \
                            uint64_t fdt1, int cc)             \
3023 3024 3025 3026 3027
{                                                              \
    int c;                                                     \
    fdt0 = float64_abs(fdt0);                                  \
    fdt1 = float64_abs(fdt1);                                  \
    c = cond;                                                  \
3028
    update_fcr31(env, GETPC());                                \
3029
    if (c)                                                     \
3030
        SET_FP_COND(cc, env->active_fpu);                      \
3031
    else                                                       \
3032
        CLEAR_FP_COND(cc, env->active_fpu);                    \
3033 3034 3035
}

/* NOTE: the comma operator will make "cond" to eval to false,
3036 3037 3038
 * but float64_unordered_quiet() is still called. */
FOP_COND_D(f,   (float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status), 0))
FOP_COND_D(un,  float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status))
3039
FOP_COND_D(eq,  float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3040
FOP_COND_D(ueq, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_eq_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3041 3042 3043 3044
FOP_COND_D(olt, float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
FOP_COND_D(ult, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_lt_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
FOP_COND_D(ole, float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
FOP_COND_D(ule, float64_unordered_quiet(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_le_quiet(fdt0, fdt1, &env->active_fpu.fp_status))
3045
/* NOTE: the comma operator will make "cond" to eval to false,
3046 3047 3048
 * but float64_unordered() is still called. */
FOP_COND_D(sf,  (float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status), 0))
FOP_COND_D(ngle,float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status))
3049 3050 3051
FOP_COND_D(seq, float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
FOP_COND_D(ngl, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_eq(fdt0, fdt1, &env->active_fpu.fp_status))
FOP_COND_D(lt,  float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
3052
FOP_COND_D(nge, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_lt(fdt0, fdt1, &env->active_fpu.fp_status))
3053
FOP_COND_D(le,  float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
3054
FOP_COND_D(ngt, float64_unordered(fdt1, fdt0, &env->active_fpu.fp_status)  || float64_le(fdt0, fdt1, &env->active_fpu.fp_status))
3055 3056

#define FOP_COND_S(op, cond)                                   \
3057 3058
void helper_cmp_s_ ## op(CPUMIPSState *env, uint32_t fst0,     \
                         uint32_t fst1, int cc)                \
3059
{                                                              \
3060 3061
    int c;                                                     \
    c = cond;                                                  \
3062
    update_fcr31(env, GETPC());                                \
3063
    if (c)                                                     \
3064
        SET_FP_COND(cc, env->active_fpu);                      \
3065
    else                                                       \
3066
        CLEAR_FP_COND(cc, env->active_fpu);                    \
3067
}                                                              \
3068 3069
void helper_cmpabs_s_ ## op(CPUMIPSState *env, uint32_t fst0,  \
                            uint32_t fst1, int cc)             \
3070 3071 3072 3073 3074
{                                                              \
    int c;                                                     \
    fst0 = float32_abs(fst0);                                  \
    fst1 = float32_abs(fst1);                                  \
    c = cond;                                                  \
3075
    update_fcr31(env, GETPC());                                \
3076
    if (c)                                                     \
3077
        SET_FP_COND(cc, env->active_fpu);                      \
3078
    else                                                       \
3079
        CLEAR_FP_COND(cc, env->active_fpu);                    \
3080 3081 3082
}

/* NOTE: the comma operator will make "cond" to eval to false,
3083 3084 3085
 * but float32_unordered_quiet() is still called. */
FOP_COND_S(f,   (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0))
FOP_COND_S(un,  float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status))
3086
FOP_COND_S(eq,  float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
3087
FOP_COND_S(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)  || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status))
3088 3089 3090 3091
FOP_COND_S(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
FOP_COND_S(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)  || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status))
FOP_COND_S(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
FOP_COND_S(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)  || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status))
3092
/* NOTE: the comma operator will make "cond" to eval to false,
3093 3094 3095
 * but float32_unordered() is still called. */
FOP_COND_S(sf,  (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0))
FOP_COND_S(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status))
3096 3097 3098
FOP_COND_S(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status))
FOP_COND_S(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)  || float32_eq(fst0, fst1, &env->active_fpu.fp_status))
FOP_COND_S(lt,  float32_lt(fst0, fst1, &env->active_fpu.fp_status))
3099
FOP_COND_S(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)  || float32_lt(fst0, fst1, &env->active_fpu.fp_status))
3100
FOP_COND_S(le,  float32_le(fst0, fst1, &env->active_fpu.fp_status))
3101
FOP_COND_S(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)  || float32_le(fst0, fst1, &env->active_fpu.fp_status))
3102 3103

#define FOP_COND_PS(op, condl, condh)                           \
3104 3105
void helper_cmp_ps_ ## op(CPUMIPSState *env, uint64_t fdt0,     \
                          uint64_t fdt1, int cc)                \
3106
{                                                               \
3107 3108 3109 3110 3111 3112 3113 3114
    uint32_t fst0, fsth0, fst1, fsth1;                          \
    int ch, cl;                                                 \
    fst0 = fdt0 & 0XFFFFFFFF;                                   \
    fsth0 = fdt0 >> 32;                                         \
    fst1 = fdt1 & 0XFFFFFFFF;                                   \
    fsth1 = fdt1 >> 32;                                         \
    cl = condl;                                                 \
    ch = condh;                                                 \
3115
    update_fcr31(env, GETPC());                                 \
3116
    if (cl)                                                     \
3117
        SET_FP_COND(cc, env->active_fpu);                       \
3118
    else                                                        \
3119
        CLEAR_FP_COND(cc, env->active_fpu);                     \
3120
    if (ch)                                                     \
3121
        SET_FP_COND(cc + 1, env->active_fpu);                   \
3122
    else                                                        \
3123
        CLEAR_FP_COND(cc + 1, env->active_fpu);                 \
3124
}                                                               \
3125 3126
void helper_cmpabs_ps_ ## op(CPUMIPSState *env, uint64_t fdt0,  \
                             uint64_t fdt1, int cc)             \
3127
{                                                               \
3128 3129 3130 3131 3132 3133 3134 3135
    uint32_t fst0, fsth0, fst1, fsth1;                          \
    int ch, cl;                                                 \
    fst0 = float32_abs(fdt0 & 0XFFFFFFFF);                      \
    fsth0 = float32_abs(fdt0 >> 32);                            \
    fst1 = float32_abs(fdt1 & 0XFFFFFFFF);                      \
    fsth1 = float32_abs(fdt1 >> 32);                            \
    cl = condl;                                                 \
    ch = condh;                                                 \
3136
    update_fcr31(env, GETPC());                                 \
3137
    if (cl)                                                     \
3138
        SET_FP_COND(cc, env->active_fpu);                       \
3139
    else                                                        \
3140
        CLEAR_FP_COND(cc, env->active_fpu);                     \
3141
    if (ch)                                                     \
3142
        SET_FP_COND(cc + 1, env->active_fpu);                   \
3143
    else                                                        \
3144
        CLEAR_FP_COND(cc + 1, env->active_fpu);                 \
3145 3146 3147
}

/* NOTE: the comma operator will make "cond" to eval to false,
3148 3149 3150 3151 3152
 * but float32_unordered_quiet() is still called. */
FOP_COND_PS(f,   (float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status), 0),
                 (float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status), 0))
FOP_COND_PS(un,  float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status),
                 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status))
3153 3154
FOP_COND_PS(eq,  float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3155 3156
FOP_COND_PS(ueq, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)    || float32_eq_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_eq_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3157 3158 3159 3160 3161 3162 3163 3164
FOP_COND_PS(olt, float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
FOP_COND_PS(ult, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)    || float32_lt_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_lt_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
FOP_COND_PS(ole, float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
FOP_COND_PS(ule, float32_unordered_quiet(fst1, fst0, &env->active_fpu.fp_status)    || float32_le_quiet(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered_quiet(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_le_quiet(fsth0, fsth1, &env->active_fpu.fp_status))
3165
/* NOTE: the comma operator will make "cond" to eval to false,
3166 3167 3168 3169 3170
 * but float32_unordered() is still called. */
FOP_COND_PS(sf,  (float32_unordered(fst1, fst0, &env->active_fpu.fp_status), 0),
                 (float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status), 0))
FOP_COND_PS(ngle,float32_unordered(fst1, fst0, &env->active_fpu.fp_status),
                 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status))
3171 3172 3173 3174 3175 3176
FOP_COND_PS(seq, float32_eq(fst0, fst1, &env->active_fpu.fp_status),
                 float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
FOP_COND_PS(ngl, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)    || float32_eq(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_eq(fsth0, fsth1, &env->active_fpu.fp_status))
FOP_COND_PS(lt,  float32_lt(fst0, fst1, &env->active_fpu.fp_status),
                 float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
3177 3178
FOP_COND_PS(nge, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)    || float32_lt(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_lt(fsth0, fsth1, &env->active_fpu.fp_status))
3179 3180
FOP_COND_PS(le,  float32_le(fst0, fst1, &env->active_fpu.fp_status),
                 float32_le(fsth0, fsth1, &env->active_fpu.fp_status))
3181 3182
FOP_COND_PS(ngt, float32_unordered(fst1, fst0, &env->active_fpu.fp_status)    || float32_le(fst0, fst1, &env->active_fpu.fp_status),
                 float32_unordered(fsth1, fsth0, &env->active_fpu.fp_status)  || float32_le(fsth0, fsth1, &env->active_fpu.fp_status))