2005-07-02 16:58:51 +02:00
|
|
|
/*
|
|
|
|
* MIPS emulation helpers for qemu.
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2005-07-02 16:58:51 +02:00
|
|
|
* 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
|
2020-10-16 16:35:09 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-07-02 16:58:51 +02:00
|
|
|
*
|
|
|
|
* 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
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2020-02-03 16:57:22 +01:00
|
|
|
*
|
2005-07-02 16:58:51 +02:00
|
|
|
*/
|
2020-02-03 16:57:22 +01:00
|
|
|
|
2016-01-18 18:35:00 +01:00
|
|
|
#include "qemu/osdep.h"
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "cpu.h"
|
2017-09-20 21:49:30 +02:00
|
|
|
#include "internal.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "exec/helper-proto.h"
|
2016-03-15 13:18:37 +01:00
|
|
|
#include "exec/exec-all.h"
|
2019-08-23 20:36:41 +02:00
|
|
|
#include "exec/memop.h"
|
2020-11-14 19:03:11 +01:00
|
|
|
#include "fpu_helper.h"
|
2020-02-03 16:57:22 +01:00
|
|
|
|
2005-07-02 16:58:51 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* Exceptions processing helpers */
|
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
void helper_raise_exception_err(CPUMIPSState *env, uint32_t exception,
|
|
|
|
int error_code)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2015-07-10 11:57:08 +02:00
|
|
|
do_raise_exception_err(env, exception, error_code, 0);
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
void helper_raise_exception(CPUMIPSState *env, uint32_t exception)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2015-07-10 11:57:08 +02:00
|
|
|
do_raise_exception(env, exception, GETPC());
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
void helper_raise_exception_debug(CPUMIPSState *env)
|
2005-12-05 20:59:36 +01:00
|
|
|
{
|
2015-07-10 11:57:08 +02:00
|
|
|
do_raise_exception(env, EXCP_DEBUG, 0);
|
2012-10-28 19:34:03 +01:00
|
|
|
}
|
2012-04-09 16:20:20 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
static void raise_exception(CPUMIPSState *env, uint32_t exception)
|
2012-10-28 19:34:03 +01:00
|
|
|
{
|
|
|
|
do_raise_exception(env, exception, 0);
|
2005-12-05 20:59:36 +01:00
|
|
|
}
|
|
|
|
|
2005-07-02 16:58:51 +02:00
|
|
|
/* 64 bits arithmetic for 32 bits hosts */
|
2012-09-02 16:52:59 +02:00
|
|
|
static inline uint64_t get_HILO(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2019-10-23 12:23:35 +02:00
|
|
|
return ((uint64_t)(env->active_tc.HI[0]) << 32) |
|
|
|
|
(uint32_t)env->active_tc.LO[0];
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static inline target_ulong set_HIT0_LO(CPUMIPSState *env, uint64_t HILO)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2008-06-27 12:02:35 +02:00
|
|
|
env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
|
2016-06-13 23:57:58 +02:00
|
|
|
return env->active_tc.HI[0] = (int32_t)(HILO >> 32);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static inline target_ulong set_HI_LOT0(CPUMIPSState *env, uint64_t HILO)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-03-04 08:21:39 +01:00
|
|
|
target_ulong tmp = env->active_tc.LO[0] = (int32_t)(HILO & 0xFFFFFFFF);
|
2008-06-27 12:02:35 +02:00
|
|
|
env->active_tc.HI[0] = (int32_t)(HILO >> 32);
|
2012-03-04 08:21:39 +01:00
|
|
|
return tmp;
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Multiplication variants of the vr54xx. */
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_muls(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, 0 - ((int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2));
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_mulsu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, 0 - (uint64_t)(uint32_t)arg1 *
|
|
|
|
(uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_macc(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_macchi(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (int64_t)get_HILO(env) + (int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_maccu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, (uint64_t)get_HILO(env) +
|
|
|
|
(uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_macchiu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (uint64_t)get_HILO(env) +
|
|
|
|
(uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_msac(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_msachi(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (int64_t)get_HILO(env) - (int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_msacu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HI_LOT0(env, (uint64_t)get_HILO(env) -
|
|
|
|
(uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_msachiu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (uint64_t)get_HILO(env) -
|
|
|
|
(uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_mulhi(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (int64_t)(int32_t)arg1 * (int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_mulhiu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, (uint64_t)(uint32_t)arg1 *
|
|
|
|
(uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_mulshi(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, 0 - (int64_t)(int32_t)arg1 *
|
|
|
|
(int64_t)(int32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_mulshiu(CPUMIPSState *env, target_ulong arg1,
|
|
|
|
target_ulong arg2)
|
2007-12-25 21:46:56 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
return set_HIT0_LO(env, 0 - (uint64_t)(uint32_t)arg1 *
|
|
|
|
(uint64_t)(uint32_t)arg2);
|
2007-12-25 21:46:56 +01:00
|
|
|
}
|
2005-07-02 16:58:51 +02:00
|
|
|
|
2014-06-27 09:49:05 +02:00
|
|
|
static inline target_ulong bitswap(target_ulong v)
|
|
|
|
{
|
2014-10-22 15:00:29 +02:00
|
|
|
v = ((v >> 1) & (target_ulong)0x5555555555555555ULL) |
|
|
|
|
((v & (target_ulong)0x5555555555555555ULL) << 1);
|
|
|
|
v = ((v >> 2) & (target_ulong)0x3333333333333333ULL) |
|
|
|
|
((v & (target_ulong)0x3333333333333333ULL) << 2);
|
|
|
|
v = ((v >> 4) & (target_ulong)0x0F0F0F0F0F0F0F0FULL) |
|
|
|
|
((v & (target_ulong)0x0F0F0F0F0F0F0F0FULL) << 4);
|
2014-06-27 09:49:05 +02:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TARGET_MIPS64
|
|
|
|
target_ulong helper_dbitswap(target_ulong rt)
|
|
|
|
{
|
|
|
|
return bitswap(rt);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
target_ulong helper_bitswap(target_ulong rt)
|
|
|
|
{
|
|
|
|
return (int32_t)bitswap(rt);
|
|
|
|
}
|
|
|
|
|
2018-08-02 16:16:20 +02:00
|
|
|
target_ulong helper_rotx(target_ulong rs, uint32_t shift, uint32_t shiftx,
|
|
|
|
uint32_t stripe)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint64_t tmp0 = ((uint64_t)rs) << 32 | ((uint64_t)rs & 0xffffffff);
|
|
|
|
uint64_t tmp1 = tmp0;
|
|
|
|
for (i = 0; i <= 46; i++) {
|
|
|
|
int s;
|
|
|
|
if (i & 0x8) {
|
|
|
|
s = shift;
|
|
|
|
} else {
|
|
|
|
s = shiftx;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stripe != 0 && !(i & 0x4)) {
|
|
|
|
s = ~s;
|
|
|
|
}
|
|
|
|
if (s & 0x10) {
|
|
|
|
if (tmp0 & (1LL << (i + 16))) {
|
|
|
|
tmp1 |= 1LL << i;
|
|
|
|
} else {
|
|
|
|
tmp1 &= ~(1LL << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t tmp2 = tmp1;
|
|
|
|
for (i = 0; i <= 38; i++) {
|
|
|
|
int s;
|
|
|
|
if (i & 0x4) {
|
|
|
|
s = shift;
|
|
|
|
} else {
|
|
|
|
s = shiftx;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s & 0x8) {
|
|
|
|
if (tmp1 & (1LL << (i + 8))) {
|
|
|
|
tmp2 |= 1LL << i;
|
|
|
|
} else {
|
|
|
|
tmp2 &= ~(1LL << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t tmp3 = tmp2;
|
|
|
|
for (i = 0; i <= 34; i++) {
|
|
|
|
int s;
|
|
|
|
if (i & 0x2) {
|
|
|
|
s = shift;
|
|
|
|
} else {
|
|
|
|
s = shiftx;
|
|
|
|
}
|
|
|
|
if (s & 0x4) {
|
|
|
|
if (tmp2 & (1LL << (i + 4))) {
|
|
|
|
tmp3 |= 1LL << i;
|
|
|
|
} else {
|
|
|
|
tmp3 &= ~(1LL << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t tmp4 = tmp3;
|
|
|
|
for (i = 0; i <= 32; i++) {
|
|
|
|
int s;
|
|
|
|
if (i & 0x1) {
|
|
|
|
s = shift;
|
|
|
|
} else {
|
|
|
|
s = shiftx;
|
|
|
|
}
|
|
|
|
if (s & 0x2) {
|
|
|
|
if (tmp3 & (1LL << (i + 2))) {
|
|
|
|
tmp4 |= 1LL << i;
|
|
|
|
} else {
|
|
|
|
tmp4 &= ~(1LL << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t tmp5 = tmp4;
|
|
|
|
for (i = 0; i <= 31; i++) {
|
|
|
|
int s;
|
|
|
|
s = shift;
|
|
|
|
if (s & 0x1) {
|
|
|
|
if (tmp4 & (1LL << (i + 1))) {
|
|
|
|
tmp5 |= 1LL << i;
|
|
|
|
} else {
|
|
|
|
tmp5 &= ~(1LL << i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int64_t)(int32_t)(uint32_t)tmp5;
|
|
|
|
}
|
|
|
|
|
2009-11-30 15:39:54 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2010-02-06 17:02:45 +01:00
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static inline hwaddr do_translate_address(CPUMIPSState *env,
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong address,
|
2015-07-10 11:57:08 +02:00
|
|
|
int rw, uintptr_t retaddr)
|
2010-02-06 17:02:45 +01:00
|
|
|
{
|
2019-02-11 14:56:40 +01:00
|
|
|
hwaddr paddr;
|
2019-03-23 02:38:42 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2010-02-06 17:02:45 +01:00
|
|
|
|
2019-02-11 14:56:40 +01:00
|
|
|
paddr = cpu_mips_translate_address(env, address, rw);
|
2010-02-06 17:02:45 +01:00
|
|
|
|
2019-02-11 14:56:40 +01:00
|
|
|
if (paddr == -1LL) {
|
2015-07-10 11:57:08 +02:00
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
2010-02-06 17:02:45 +01:00
|
|
|
} else {
|
2019-02-11 14:56:40 +01:00
|
|
|
return paddr;
|
2010-02-06 17:02:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 16:34:09 +01:00
|
|
|
#define HELPER_LD_ATOMIC(name, insn, almask, do_cast) \
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_##name(CPUMIPSState *env, target_ulong arg, int mem_idx) \
|
2009-11-30 15:39:54 +01:00
|
|
|
{ \
|
2015-01-26 17:06:43 +01:00
|
|
|
if (arg & almask) { \
|
2018-08-02 16:15:55 +02:00
|
|
|
if (!(env->hflags & MIPS_HFLAG_DM)) { \
|
|
|
|
env->CP0_BadVAddr = arg; \
|
|
|
|
} \
|
2015-07-10 11:57:08 +02:00
|
|
|
do_raise_exception(env, EXCP_AdEL, GETPC()); \
|
2015-01-26 17:06:43 +01:00
|
|
|
} \
|
2019-02-11 14:56:40 +01:00
|
|
|
env->CP0_LLAddr = do_translate_address(env, arg, 0, GETPC()); \
|
|
|
|
env->lladdr = arg; \
|
2020-02-02 16:34:09 +01:00
|
|
|
env->llval = do_cast cpu_##insn##_mmuidx_ra(env, arg, mem_idx, GETPC()); \
|
2009-11-30 15:39:54 +01:00
|
|
|
return env->llval; \
|
|
|
|
}
|
2020-02-02 16:34:09 +01:00
|
|
|
HELPER_LD_ATOMIC(ll, ldl, 0x3, (target_long)(int32_t))
|
2009-11-30 15:39:54 +01:00
|
|
|
#ifdef TARGET_MIPS64
|
2020-02-02 16:34:09 +01:00
|
|
|
HELPER_LD_ATOMIC(lld, ldq, 0x7, (target_ulong))
|
2009-11-30 15:39:54 +01:00
|
|
|
#endif
|
|
|
|
#undef HELPER_LD_ATOMIC
|
|
|
|
#endif
|
|
|
|
|
2008-06-20 17:12:14 +02:00
|
|
|
#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
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_swl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
|
|
|
|
int mem_idx)
|
2008-06-20 17:12:14 +02:00
|
|
|
{
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, arg2, (uint8_t)(arg1 >> 24), mem_idx, GETPC());
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) <= 2) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 16),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) <= 1) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 8),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) == 0) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 3), (uint8_t)arg1,
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_swr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
|
|
|
|
int mem_idx)
|
2008-06-20 17:12:14 +02:00
|
|
|
{
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, arg2, (uint8_t)arg1, mem_idx, GETPC());
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) >= 1) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) >= 2) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK(arg2) == 3) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(TARGET_MIPS64)
|
2019-10-23 12:23:35 +02:00
|
|
|
/*
|
|
|
|
* "half" load and stores. We must do the memory access inline,
|
|
|
|
* or fault handling won't work.
|
|
|
|
*/
|
2008-06-20 17:12:14 +02:00
|
|
|
#ifdef TARGET_WORDS_BIGENDIAN
|
|
|
|
#define GET_LMASK64(v) ((v) & 7)
|
|
|
|
#else
|
|
|
|
#define GET_LMASK64(v) (((v) & 7) ^ 7)
|
|
|
|
#endif
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_sdl(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
|
|
|
|
int mem_idx)
|
2008-06-20 17:12:14 +02:00
|
|
|
{
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, arg2, (uint8_t)(arg1 >> 56), mem_idx, GETPC());
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 6) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 1), (uint8_t)(arg1 >> 48),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 5) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 2), (uint8_t)(arg1 >> 40),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 4) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 3), (uint8_t)(arg1 >> 32),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 3) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 4), (uint8_t)(arg1 >> 24),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 2) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 5), (uint8_t)(arg1 >> 16),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 1) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 6), (uint8_t)(arg1 >> 8),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) <= 0) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, 7), (uint8_t)arg1,
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_sdr(CPUMIPSState *env, target_ulong arg1, target_ulong arg2,
|
|
|
|
int mem_idx)
|
2008-06-20 17:12:14 +02:00
|
|
|
{
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, arg2, (uint8_t)arg1, mem_idx, GETPC());
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 1) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -1), (uint8_t)(arg1 >> 8),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 2) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -2), (uint8_t)(arg1 >> 16),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 3) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -3), (uint8_t)(arg1 >> 24),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 4) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -4), (uint8_t)(arg1 >> 32),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 5) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -5), (uint8_t)(arg1 >> 40),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) >= 6) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -6), (uint8_t)(arg1 >> 48),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
|
2015-07-10 11:57:08 +02:00
|
|
|
if (GET_LMASK64(arg2) == 7) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stb_mmuidx_ra(env, GET_OFFSET(arg2, -7), (uint8_t)(arg1 >> 56),
|
|
|
|
mem_idx, GETPC());
|
2015-07-10 11:57:08 +02:00
|
|
|
}
|
2008-06-20 17:12:14 +02:00
|
|
|
}
|
|
|
|
#endif /* TARGET_MIPS64 */
|
|
|
|
|
2010-06-08 22:29:59 +02:00
|
|
|
static const int multiple_regs[] = { 16, 17, 18, 19, 20, 21, 22, 23, 30 };
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_lwm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
|
|
|
|
uint32_t mem_idx)
|
2010-06-08 22:29:59 +02:00
|
|
|
{
|
|
|
|
target_ulong base_reglist = reglist & 0xf;
|
|
|
|
target_ulong do_r31 = reglist & 0x10;
|
|
|
|
|
2019-10-23 12:23:35 +02:00
|
|
|
if (base_reglist > 0 && base_reglist <= ARRAY_SIZE(multiple_regs)) {
|
2010-06-08 22:29:59 +02:00
|
|
|
target_ulong i;
|
|
|
|
|
|
|
|
for (i = 0; i < base_reglist; i++) {
|
2012-10-09 21:53:20 +02:00
|
|
|
env->active_tc.gpr[multiple_regs[i]] =
|
2019-12-10 20:16:29 +01:00
|
|
|
(target_long)cpu_ldl_mmuidx_ra(env, addr, mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
addr += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_r31) {
|
2019-12-10 20:16:29 +01:00
|
|
|
env->active_tc.gpr[31] =
|
|
|
|
(target_long)cpu_ldl_mmuidx_ra(env, addr, mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_swm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
|
|
|
|
uint32_t mem_idx)
|
2010-06-08 22:29:59 +02:00
|
|
|
{
|
|
|
|
target_ulong base_reglist = reglist & 0xf;
|
|
|
|
target_ulong do_r31 = reglist & 0x10;
|
|
|
|
|
2019-10-23 12:23:35 +02:00
|
|
|
if (base_reglist > 0 && base_reglist <= ARRAY_SIZE(multiple_regs)) {
|
2010-06-08 22:29:59 +02:00
|
|
|
target_ulong i;
|
|
|
|
|
|
|
|
for (i = 0; i < base_reglist; i++) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stw_mmuidx_ra(env, addr, env->active_tc.gpr[multiple_regs[i]],
|
|
|
|
mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
addr += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_r31) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stw_mmuidx_ra(env, addr, env->active_tc.gpr[31], mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(TARGET_MIPS64)
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_ldm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
|
|
|
|
uint32_t mem_idx)
|
2010-06-08 22:29:59 +02:00
|
|
|
{
|
|
|
|
target_ulong base_reglist = reglist & 0xf;
|
|
|
|
target_ulong do_r31 = reglist & 0x10;
|
|
|
|
|
2019-10-23 12:23:35 +02:00
|
|
|
if (base_reglist > 0 && base_reglist <= ARRAY_SIZE(multiple_regs)) {
|
2010-06-08 22:29:59 +02:00
|
|
|
target_ulong i;
|
|
|
|
|
|
|
|
for (i = 0; i < base_reglist; i++) {
|
2019-12-10 20:16:29 +01:00
|
|
|
env->active_tc.gpr[multiple_regs[i]] =
|
|
|
|
cpu_ldq_mmuidx_ra(env, addr, mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
addr += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_r31) {
|
2019-12-10 20:16:29 +01:00
|
|
|
env->active_tc.gpr[31] =
|
|
|
|
cpu_ldq_mmuidx_ra(env, addr, mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_sdm(CPUMIPSState *env, target_ulong addr, target_ulong reglist,
|
|
|
|
uint32_t mem_idx)
|
2010-06-08 22:29:59 +02:00
|
|
|
{
|
|
|
|
target_ulong base_reglist = reglist & 0xf;
|
|
|
|
target_ulong do_r31 = reglist & 0x10;
|
|
|
|
|
2019-10-23 12:23:35 +02:00
|
|
|
if (base_reglist > 0 && base_reglist <= ARRAY_SIZE(multiple_regs)) {
|
2010-06-08 22:29:59 +02:00
|
|
|
target_ulong i;
|
|
|
|
|
|
|
|
for (i = 0; i < base_reglist; i++) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stq_mmuidx_ra(env, addr, env->active_tc.gpr[multiple_regs[i]],
|
|
|
|
mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
addr += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_r31) {
|
2019-12-10 20:16:29 +01:00
|
|
|
cpu_stq_mmuidx_ra(env, addr, env->active_tc.gpr[31], mem_idx, GETPC());
|
2010-06-08 22:29:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-29 23:07:40 +02:00
|
|
|
|
2020-02-03 16:57:22 +01:00
|
|
|
void helper_fork(target_ulong arg1, target_ulong arg2)
|
2011-08-29 23:07:40 +02:00
|
|
|
{
|
2019-10-23 12:23:35 +02:00
|
|
|
/*
|
2020-02-03 16:57:22 +01:00
|
|
|
* arg1 = rt, arg2 = rs
|
|
|
|
* TODO: store to TC register
|
2019-10-23 12:23:35 +02:00
|
|
|
*/
|
2008-06-09 09:13:38 +02:00
|
|
|
}
|
|
|
|
|
2020-02-03 16:57:22 +01:00
|
|
|
target_ulong helper_yield(CPUMIPSState *env, target_ulong arg)
|
2019-01-03 14:58:16 +01:00
|
|
|
{
|
2020-02-03 16:57:22 +01:00
|
|
|
target_long arg1 = arg;
|
2008-06-09 09:13:38 +02:00
|
|
|
|
2020-02-03 16:57:22 +01:00
|
|
|
if (arg1 < 0) {
|
|
|
|
/* No scheduling policy implemented. */
|
|
|
|
if (arg1 != -2) {
|
|
|
|
if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) &&
|
|
|
|
env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) {
|
|
|
|
env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
|
|
|
|
env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT;
|
|
|
|
do_raise_exception(env, EXCP_THREAD, GETPC());
|
|
|
|
}
|
2014-07-11 17:11:34 +02:00
|
|
|
}
|
2020-02-03 16:57:22 +01:00
|
|
|
} else if (arg1 == 0) {
|
|
|
|
if (0) {
|
|
|
|
/* TODO: TC underflow */
|
|
|
|
env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
|
|
|
|
do_raise_exception(env, EXCP_THREAD, GETPC());
|
|
|
|
} else {
|
|
|
|
/* TODO: Deallocate TC */
|
|
|
|
}
|
|
|
|
} else if (arg1 > 0) {
|
|
|
|
/* Yield qualifier inputs not implemented. */
|
|
|
|
env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT);
|
|
|
|
env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT;
|
|
|
|
do_raise_exception(env, EXCP_THREAD, GETPC());
|
2008-06-09 09:13:38 +02:00
|
|
|
}
|
2008-06-23 14:57:09 +02:00
|
|
|
return env->CP0_YQMask;
|
2008-06-09 09:13:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2005-07-02 16:58:51 +02:00
|
|
|
/* TLB management */
|
2019-10-23 12:23:35 +02:00
|
|
|
static void r4k_mips_tlb_flush_extra(CPUMIPSState *env, int first)
|
2006-12-06 18:42:40 +01:00
|
|
|
{
|
|
|
|
/* Discard entries from env->tlb[first] onwards. */
|
2007-09-06 02:18:15 +02:00
|
|
|
while (env->tlb->tlb_in_use > first) {
|
|
|
|
r4k_invalidate_tlb(env, --env->tlb->tlb_in_use, 0);
|
2006-12-06 18:42:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 17:28:16 +02:00
|
|
|
static inline uint64_t get_tlb_pfn_from_entrylo(uint64_t entrylo)
|
|
|
|
{
|
|
|
|
#if defined(TARGET_MIPS64)
|
|
|
|
return extract64(entrylo, 6, 54);
|
|
|
|
#else
|
|
|
|
return extract64(entrylo, 6, 24) | /* PFN */
|
|
|
|
(extract64(entrylo, 32, 32) << 24); /* PFNX */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static void r4k_fill_tlb(CPUMIPSState *env, int idx)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
r4k_tlb_t *tlb;
|
2014-12-10 13:36:39 +01:00
|
|
|
uint64_t mask = env->CP0_PageMask >> (TARGET_PAGE_BITS + 1);
|
2005-07-02 16:58:51 +02:00
|
|
|
|
|
|
|
/* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
|
2007-09-06 02:18:15 +02:00
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[idx];
|
2014-07-07 12:24:00 +02:00
|
|
|
if (env->CP0_EntryHi & (1 << CP0EnHi_EHINV)) {
|
|
|
|
tlb->EHINV = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tlb->EHINV = 0;
|
2007-05-13 16:07:26 +02:00
|
|
|
tlb->VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
|
2007-11-08 19:05:37 +01:00
|
|
|
#if defined(TARGET_MIPS64)
|
2007-06-23 20:04:12 +02:00
|
|
|
tlb->VPN &= env->SEGMask;
|
2007-05-13 21:22:13 +02:00
|
|
|
#endif
|
2016-06-27 17:19:09 +02:00
|
|
|
tlb->ASID = env->CP0_EntryHi & env->CP0_EntryHi_ASID_mask;
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb->MMID = env->CP0_MemoryMapID;
|
2007-01-22 21:50:42 +01:00
|
|
|
tlb->PageMask = env->CP0_PageMask;
|
2005-07-02 16:58:51 +02:00
|
|
|
tlb->G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
|
2006-03-11 17:20:36 +01:00
|
|
|
tlb->V0 = (env->CP0_EntryLo0 & 2) != 0;
|
|
|
|
tlb->D0 = (env->CP0_EntryLo0 & 4) != 0;
|
|
|
|
tlb->C0 = (env->CP0_EntryLo0 >> 3) & 0x7;
|
2014-07-07 12:23:58 +02:00
|
|
|
tlb->XI0 = (env->CP0_EntryLo0 >> CP0EnLo_XI) & 1;
|
|
|
|
tlb->RI0 = (env->CP0_EntryLo0 >> CP0EnLo_RI) & 1;
|
2014-12-10 13:36:39 +01:00
|
|
|
tlb->PFN[0] = (get_tlb_pfn_from_entrylo(env->CP0_EntryLo0) & ~mask) << 12;
|
2006-03-11 17:20:36 +01:00
|
|
|
tlb->V1 = (env->CP0_EntryLo1 & 2) != 0;
|
|
|
|
tlb->D1 = (env->CP0_EntryLo1 & 4) != 0;
|
|
|
|
tlb->C1 = (env->CP0_EntryLo1 >> 3) & 0x7;
|
2014-07-07 12:23:58 +02:00
|
|
|
tlb->XI1 = (env->CP0_EntryLo1 >> CP0EnLo_XI) & 1;
|
|
|
|
tlb->RI1 = (env->CP0_EntryLo1 >> CP0EnLo_RI) & 1;
|
2014-12-10 13:36:39 +01:00
|
|
|
tlb->PFN[1] = (get_tlb_pfn_from_entrylo(env->CP0_EntryLo1) & ~mask) << 12;
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2014-07-07 12:24:00 +02:00
|
|
|
void r4k_helper_tlbinv(CPUMIPSState *env)
|
|
|
|
{
|
2019-12-20 10:29:34 +01:00
|
|
|
bool mi = !!((env->CP0_Config5 >> CP0C5_MI) & 1);
|
2016-06-27 17:19:10 +02:00
|
|
|
uint16_t ASID = env->CP0_EntryHi & env->CP0_EntryHi_ASID_mask;
|
2019-12-20 10:29:34 +01:00
|
|
|
uint32_t MMID = env->CP0_MemoryMapID;
|
|
|
|
uint32_t tlb_mmid;
|
|
|
|
r4k_tlb_t *tlb;
|
|
|
|
int idx;
|
2014-07-07 12:24:00 +02:00
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
MMID = mi ? MMID : (uint32_t) ASID;
|
2014-07-07 12:24:00 +02:00
|
|
|
for (idx = 0; idx < env->tlb->nb_tlb; idx++) {
|
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[idx];
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb_mmid = mi ? tlb->MMID : (uint32_t) tlb->ASID;
|
|
|
|
if (!tlb->G && tlb_mmid == MMID) {
|
2014-07-07 12:24:00 +02:00
|
|
|
tlb->EHINV = 1;
|
|
|
|
}
|
|
|
|
}
|
2016-11-14 15:17:28 +01:00
|
|
|
cpu_mips_tlb_flush(env);
|
2014-07-07 12:24:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void r4k_helper_tlbinvf(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
for (idx = 0; idx < env->tlb->nb_tlb; idx++) {
|
|
|
|
env->tlb->mmu.r4k.tlb[idx].EHINV = 1;
|
|
|
|
}
|
2016-11-14 15:17:28 +01:00
|
|
|
cpu_mips_tlb_flush(env);
|
2014-07-07 12:24:00 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void r4k_helper_tlbwi(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2019-12-20 10:29:34 +01:00
|
|
|
bool mi = !!((env->CP0_Config5 >> CP0C5_MI) & 1);
|
2012-10-09 21:53:21 +02:00
|
|
|
target_ulong VPN;
|
2019-12-20 10:29:34 +01:00
|
|
|
uint16_t ASID = env->CP0_EntryHi & env->CP0_EntryHi_ASID_mask;
|
|
|
|
uint32_t MMID = env->CP0_MemoryMapID;
|
|
|
|
uint32_t tlb_mmid;
|
2017-07-18 13:55:47 +02:00
|
|
|
bool EHINV, G, V0, D0, V1, D1, XI0, XI1, RI0, RI1;
|
2019-12-20 10:29:34 +01:00
|
|
|
r4k_tlb_t *tlb;
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
MMID = mi ? MMID : (uint32_t) ASID;
|
2008-09-14 19:09:56 +02:00
|
|
|
|
|
|
|
idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
|
2012-10-09 21:53:21 +02:00
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[idx];
|
|
|
|
VPN = env->CP0_EntryHi & (TARGET_PAGE_MASK << 1);
|
|
|
|
#if defined(TARGET_MIPS64)
|
|
|
|
VPN &= env->SEGMask;
|
|
|
|
#endif
|
2017-07-18 13:55:47 +02:00
|
|
|
EHINV = (env->CP0_EntryHi & (1 << CP0EnHi_EHINV)) != 0;
|
2012-10-09 21:53:21 +02:00
|
|
|
G = env->CP0_EntryLo0 & env->CP0_EntryLo1 & 1;
|
|
|
|
V0 = (env->CP0_EntryLo0 & 2) != 0;
|
|
|
|
D0 = (env->CP0_EntryLo0 & 4) != 0;
|
2017-07-18 13:55:47 +02:00
|
|
|
XI0 = (env->CP0_EntryLo0 >> CP0EnLo_XI) &1;
|
|
|
|
RI0 = (env->CP0_EntryLo0 >> CP0EnLo_RI) &1;
|
2012-10-09 21:53:21 +02:00
|
|
|
V1 = (env->CP0_EntryLo1 & 2) != 0;
|
|
|
|
D1 = (env->CP0_EntryLo1 & 4) != 0;
|
2017-07-18 13:55:47 +02:00
|
|
|
XI1 = (env->CP0_EntryLo1 >> CP0EnLo_XI) &1;
|
|
|
|
RI1 = (env->CP0_EntryLo1 >> CP0EnLo_RI) &1;
|
2012-10-09 21:53:21 +02:00
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb_mmid = mi ? tlb->MMID : (uint32_t) tlb->ASID;
|
2019-10-23 12:23:35 +02:00
|
|
|
/*
|
|
|
|
* Discard cached TLB entries, unless tlbwi is just upgrading access
|
|
|
|
* permissions on the current entry.
|
|
|
|
*/
|
2019-12-20 10:29:34 +01:00
|
|
|
if (tlb->VPN != VPN || tlb_mmid != MMID || tlb->G != G ||
|
2017-07-18 13:55:47 +02:00
|
|
|
(!tlb->EHINV && EHINV) ||
|
2012-10-09 21:53:21 +02:00
|
|
|
(tlb->V0 && !V0) || (tlb->D0 && !D0) ||
|
2017-07-18 13:55:47 +02:00
|
|
|
(!tlb->XI0 && XI0) || (!tlb->RI0 && RI0) ||
|
|
|
|
(tlb->V1 && !V1) || (tlb->D1 && !D1) ||
|
|
|
|
(!tlb->XI1 && XI1) || (!tlb->RI1 && RI1)) {
|
2012-10-09 21:53:21 +02:00
|
|
|
r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
|
|
|
|
}
|
2006-12-06 18:42:40 +01:00
|
|
|
|
2008-09-14 19:09:56 +02:00
|
|
|
r4k_invalidate_tlb(env, idx, 0);
|
2012-09-02 16:52:59 +02:00
|
|
|
r4k_fill_tlb(env, idx);
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void r4k_helper_tlbwr(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
|
|
|
int r = cpu_mips_get_random(env);
|
|
|
|
|
2007-05-13 15:49:44 +02:00
|
|
|
r4k_invalidate_tlb(env, r, 1);
|
2012-09-02 16:52:59 +02:00
|
|
|
r4k_fill_tlb(env, r);
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void r4k_helper_tlbp(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2019-12-20 10:29:34 +01:00
|
|
|
bool mi = !!((env->CP0_Config5 >> CP0C5_MI) & 1);
|
2009-10-01 23:12:16 +02:00
|
|
|
r4k_tlb_t *tlb;
|
2007-05-13 16:07:26 +02:00
|
|
|
target_ulong mask;
|
2005-07-02 16:58:51 +02:00
|
|
|
target_ulong tag;
|
2007-05-13 16:07:26 +02:00
|
|
|
target_ulong VPN;
|
2019-12-20 10:29:34 +01:00
|
|
|
uint16_t ASID = env->CP0_EntryHi & env->CP0_EntryHi_ASID_mask;
|
|
|
|
uint32_t MMID = env->CP0_MemoryMapID;
|
|
|
|
uint32_t tlb_mmid;
|
2005-07-02 16:58:51 +02:00
|
|
|
int i;
|
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
MMID = mi ? MMID : (uint32_t) ASID;
|
2007-09-06 02:18:15 +02:00
|
|
|
for (i = 0; i < env->tlb->nb_tlb; i++) {
|
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[i];
|
2007-05-13 16:07:26 +02:00
|
|
|
/* 1k pages are not supported. */
|
|
|
|
mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1);
|
|
|
|
tag = env->CP0_EntryHi & ~mask;
|
|
|
|
VPN = tlb->VPN & ~mask;
|
2012-10-09 21:53:21 +02:00
|
|
|
#if defined(TARGET_MIPS64)
|
|
|
|
tag &= env->SEGMask;
|
|
|
|
#endif
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb_mmid = mi ? tlb->MMID : (uint32_t) tlb->ASID;
|
|
|
|
/* Check ASID/MMID, virtual page number & size */
|
|
|
|
if ((tlb->G == 1 || tlb_mmid == MMID) && VPN == tag && !tlb->EHINV) {
|
2005-07-02 16:58:51 +02:00
|
|
|
/* TLB match */
|
2007-01-23 23:45:22 +01:00
|
|
|
env->CP0_Index = i;
|
2005-07-02 16:58:51 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-09-06 02:18:15 +02:00
|
|
|
if (i == env->tlb->nb_tlb) {
|
2006-12-06 18:42:40 +01:00
|
|
|
/* No match. Discard any shadow entries, if any of them match. */
|
2007-09-06 02:18:15 +02:00
|
|
|
for (i = env->tlb->nb_tlb; i < env->tlb->tlb_in_use; i++) {
|
2009-01-14 20:40:36 +01:00
|
|
|
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;
|
2012-10-09 21:53:21 +02:00
|
|
|
#if defined(TARGET_MIPS64)
|
|
|
|
tag &= env->SEGMask;
|
|
|
|
#endif
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb_mmid = mi ? tlb->MMID : (uint32_t) tlb->ASID;
|
|
|
|
/* Check ASID/MMID, virtual page number & size */
|
|
|
|
if ((tlb->G == 1 || tlb_mmid == MMID) && VPN == tag) {
|
2019-10-23 12:23:35 +02:00
|
|
|
r4k_mips_tlb_flush_extra(env, i);
|
2009-01-14 20:40:36 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-12-06 18:42:40 +01:00
|
|
|
|
2007-01-23 23:45:22 +01:00
|
|
|
env->CP0_Index |= 0x80000000;
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-11 17:28:16 +02:00
|
|
|
static inline uint64_t get_entrylo_pfn_from_tlb(uint64_t tlb_pfn)
|
|
|
|
{
|
|
|
|
#if defined(TARGET_MIPS64)
|
|
|
|
return tlb_pfn << 6;
|
|
|
|
#else
|
|
|
|
return (extract64(tlb_pfn, 0, 24) << 6) | /* PFN */
|
|
|
|
(extract64(tlb_pfn, 24, 32) << 32); /* PFNX */
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void r4k_helper_tlbr(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2019-12-20 10:29:34 +01:00
|
|
|
bool mi = !!((env->CP0_Config5 >> CP0C5_MI) & 1);
|
|
|
|
uint16_t ASID = env->CP0_EntryHi & env->CP0_EntryHi_ASID_mask;
|
|
|
|
uint32_t MMID = env->CP0_MemoryMapID;
|
|
|
|
uint32_t tlb_mmid;
|
2009-10-01 23:12:16 +02:00
|
|
|
r4k_tlb_t *tlb;
|
2008-09-14 19:09:56 +02:00
|
|
|
int idx;
|
2005-07-02 16:58:51 +02:00
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
MMID = mi ? MMID : (uint32_t) ASID;
|
2008-09-14 19:09:56 +02:00
|
|
|
idx = (env->CP0_Index & ~0x80000000) % env->tlb->nb_tlb;
|
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[idx];
|
2005-12-05 20:59:36 +01:00
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
tlb_mmid = mi ? tlb->MMID : (uint32_t) tlb->ASID;
|
|
|
|
/* If this will change the current ASID/MMID, flush qemu's TLB. */
|
|
|
|
if (MMID != tlb_mmid) {
|
2016-11-14 15:17:28 +01:00
|
|
|
cpu_mips_tlb_flush(env);
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
2006-12-06 18:42:40 +01:00
|
|
|
|
2007-09-06 02:18:15 +02:00
|
|
|
r4k_mips_tlb_flush_extra(env, env->tlb->nb_tlb);
|
2005-12-05 20:59:36 +01:00
|
|
|
|
2014-07-07 12:24:00 +02:00
|
|
|
if (tlb->EHINV) {
|
|
|
|
env->CP0_EntryHi = 1 << CP0EnHi_EHINV;
|
|
|
|
env->CP0_PageMask = 0;
|
|
|
|
env->CP0_EntryLo0 = 0;
|
|
|
|
env->CP0_EntryLo1 = 0;
|
|
|
|
} else {
|
2019-12-20 10:29:34 +01:00
|
|
|
env->CP0_EntryHi = mi ? tlb->VPN : tlb->VPN | tlb->ASID;
|
|
|
|
env->CP0_MemoryMapID = tlb->MMID;
|
2014-07-07 12:24:00 +02:00
|
|
|
env->CP0_PageMask = tlb->PageMask;
|
|
|
|
env->CP0_EntryLo0 = tlb->G | (tlb->V0 << 1) | (tlb->D0 << 2) |
|
2015-06-09 18:14:13 +02:00
|
|
|
((uint64_t)tlb->RI0 << CP0EnLo_RI) |
|
2014-09-11 17:28:16 +02:00
|
|
|
((uint64_t)tlb->XI0 << CP0EnLo_XI) | (tlb->C0 << 3) |
|
|
|
|
get_entrylo_pfn_from_tlb(tlb->PFN[0] >> 12);
|
2014-07-07 12:24:00 +02:00
|
|
|
env->CP0_EntryLo1 = tlb->G | (tlb->V1 << 1) | (tlb->D1 << 2) |
|
2015-06-09 18:14:13 +02:00
|
|
|
((uint64_t)tlb->RI1 << CP0EnLo_RI) |
|
2014-09-11 17:28:16 +02:00
|
|
|
((uint64_t)tlb->XI1 << CP0EnLo_XI) | (tlb->C1 << 3) |
|
|
|
|
get_entrylo_pfn_from_tlb(tlb->PFN[1] >> 12);
|
2014-07-07 12:24:00 +02:00
|
|
|
}
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_tlbwi(CPUMIPSState *env)
|
2008-11-17 15:43:54 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
env->tlb->helper_tlbwi(env);
|
2008-11-17 15:43:54 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_tlbwr(CPUMIPSState *env)
|
2008-11-17 15:43:54 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
env->tlb->helper_tlbwr(env);
|
2008-11-17 15:43:54 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_tlbp(CPUMIPSState *env)
|
2008-11-17 15:43:54 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
env->tlb->helper_tlbp(env);
|
2008-11-17 15:43:54 +01:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_tlbr(CPUMIPSState *env)
|
2008-11-17 15:43:54 +01:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
env->tlb->helper_tlbr(env);
|
2008-11-17 15:43:54 +01:00
|
|
|
}
|
|
|
|
|
2014-07-07 12:24:00 +02:00
|
|
|
void helper_tlbinv(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
env->tlb->helper_tlbinv(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void helper_tlbinvf(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
env->tlb->helper_tlbinvf(env);
|
|
|
|
}
|
|
|
|
|
2019-12-20 10:29:34 +01:00
|
|
|
static void global_invalidate_tlb(CPUMIPSState *env,
|
|
|
|
uint32_t invMsgVPN2,
|
|
|
|
uint8_t invMsgR,
|
|
|
|
uint32_t invMsgMMid,
|
|
|
|
bool invAll,
|
|
|
|
bool invVAMMid,
|
|
|
|
bool invMMid,
|
|
|
|
bool invVA)
|
|
|
|
{
|
|
|
|
|
|
|
|
int idx;
|
|
|
|
r4k_tlb_t *tlb;
|
|
|
|
bool VAMatch;
|
|
|
|
bool MMidMatch;
|
|
|
|
|
|
|
|
for (idx = 0; idx < env->tlb->nb_tlb; idx++) {
|
|
|
|
tlb = &env->tlb->mmu.r4k.tlb[idx];
|
|
|
|
VAMatch =
|
|
|
|
(((tlb->VPN & ~tlb->PageMask) == (invMsgVPN2 & ~tlb->PageMask))
|
|
|
|
#ifdef TARGET_MIPS64
|
|
|
|
&&
|
|
|
|
(extract64(env->CP0_EntryHi, 62, 2) == invMsgR)
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
MMidMatch = tlb->MMID == invMsgMMid;
|
|
|
|
if ((invAll && (idx > env->CP0_Wired)) ||
|
|
|
|
(VAMatch && invVAMMid && (tlb->G || MMidMatch)) ||
|
|
|
|
(VAMatch && invVA) ||
|
|
|
|
(MMidMatch && !(tlb->G) && invMMid)) {
|
|
|
|
tlb->EHINV = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cpu_mips_tlb_flush(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
void helper_ginvt(CPUMIPSState *env, target_ulong arg, uint32_t type)
|
|
|
|
{
|
|
|
|
bool invAll = type == 0;
|
|
|
|
bool invVA = type == 1;
|
|
|
|
bool invMMid = type == 2;
|
|
|
|
bool invVAMMid = type == 3;
|
|
|
|
uint32_t invMsgVPN2 = arg & (TARGET_PAGE_MASK << 1);
|
|
|
|
uint8_t invMsgR = 0;
|
|
|
|
uint32_t invMsgMMid = env->CP0_MemoryMapID;
|
|
|
|
CPUState *other_cs = first_cpu;
|
|
|
|
|
|
|
|
#ifdef TARGET_MIPS64
|
|
|
|
invMsgR = extract64(arg, 62, 2);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CPU_FOREACH(other_cs) {
|
|
|
|
MIPSCPU *other_cpu = MIPS_CPU(other_cs);
|
|
|
|
global_invalidate_tlb(&other_cpu->env, invMsgVPN2, invMsgR, invMsgMMid,
|
|
|
|
invAll, invVAMMid, invMMid, invVA);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-12 14:42:35 +02:00
|
|
|
/* Specials */
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_di(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2008-06-27 12:03:42 +02:00
|
|
|
target_ulong t0 = env->CP0_Status;
|
|
|
|
|
2008-06-23 14:57:09 +02:00
|
|
|
env->CP0_Status = t0 & ~(1 << CP0St_IE);
|
|
|
|
return t0;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_ei(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2008-06-27 12:03:42 +02:00
|
|
|
target_ulong t0 = env->CP0_Status;
|
|
|
|
|
2008-06-23 14:57:09 +02:00
|
|
|
env->CP0_Status = t0 | (1 << CP0St_IE);
|
|
|
|
return t0;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static void debug_pre_eret(CPUMIPSState *env)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
2009-01-15 23:36:53 +01:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log("ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
|
|
|
|
env->active_tc.PC, env->CP0_EPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
if (env->CP0_Status & (1 << CP0St_ERL)) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
|
|
|
if (env->hflags & MIPS_HFLAG_DM) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log("\n");
|
|
|
|
}
|
2007-04-06 20:46:01 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static void debug_post_eret(CPUMIPSState *env)
|
2007-04-06 20:46:01 +02:00
|
|
|
{
|
2009-01-15 23:36:53 +01:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log(" => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
|
|
|
|
env->active_tc.PC, env->CP0_EPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
if (env->CP0_Status & (1 << CP0St_ERL)) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log(" ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
|
|
|
if (env->hflags & MIPS_HFLAG_DM) {
|
2009-01-15 23:34:14 +01:00
|
|
|
qemu_log(" DEPC " TARGET_FMT_lx, env->CP0_DEPC);
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
2017-07-18 13:55:54 +02:00
|
|
|
switch (cpu_mmu_index(env, false)) {
|
2017-07-18 13:55:55 +02:00
|
|
|
case 3:
|
|
|
|
qemu_log(", ERL\n");
|
|
|
|
break;
|
2019-10-23 12:23:35 +02:00
|
|
|
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;
|
2013-09-03 17:38:47 +02:00
|
|
|
default:
|
2019-03-23 02:38:42 +01:00
|
|
|
cpu_abort(env_cpu(env), "Invalid MMU mode!\n");
|
2013-09-03 17:38:47 +02:00
|
|
|
break;
|
2009-01-15 23:34:14 +01:00
|
|
|
}
|
2007-10-28 20:45:05 +01:00
|
|
|
}
|
2005-07-02 16:58:51 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
static void set_pc(CPUMIPSState *env, target_ulong error_pc)
|
2009-12-08 17:06:23 +01:00
|
|
|
{
|
|
|
|
env->active_tc.PC = error_pc & ~(target_ulong)1;
|
|
|
|
if (error_pc & 1) {
|
|
|
|
env->hflags |= MIPS_HFLAG_M16;
|
|
|
|
} else {
|
|
|
|
env->hflags &= ~(MIPS_HFLAG_M16);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-04 18:00:31 +02:00
|
|
|
static inline void exception_return(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
debug_pre_eret(env);
|
2008-06-12 14:42:35 +02:00
|
|
|
if (env->CP0_Status & (1 << CP0St_ERL)) {
|
2012-09-02 16:52:59 +02:00
|
|
|
set_pc(env, env->CP0_ErrorEPC);
|
2008-06-12 14:42:35 +02:00
|
|
|
env->CP0_Status &= ~(1 << CP0St_ERL);
|
|
|
|
} else {
|
2012-09-02 16:52:59 +02:00
|
|
|
set_pc(env, env->CP0_EPC);
|
2008-06-12 14:42:35 +02:00
|
|
|
env->CP0_Status &= ~(1 << CP0St_EXL);
|
|
|
|
}
|
|
|
|
compute_hflags(env);
|
2012-09-02 16:52:59 +02:00
|
|
|
debug_post_eret(env);
|
2015-06-04 18:00:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void helper_eret(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
exception_return(env);
|
2019-02-11 14:56:40 +01:00
|
|
|
env->CP0_LLAddr = 1;
|
2009-11-22 13:08:14 +01:00
|
|
|
env->lladdr = 1;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2015-06-04 18:00:31 +02:00
|
|
|
void helper_eretnc(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
exception_return(env);
|
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_deret(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2012-09-02 16:52:59 +02:00
|
|
|
debug_pre_eret(env);
|
2009-12-08 17:06:23 +01:00
|
|
|
|
2015-07-14 12:08:13 +02:00
|
|
|
env->hflags &= ~MIPS_HFLAG_DM;
|
2008-06-12 14:42:35 +02:00
|
|
|
compute_hflags(env);
|
2018-08-02 16:16:38 +02:00
|
|
|
|
|
|
|
set_pc(env, env->CP0_DEPC);
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
debug_post_eret(env);
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
2008-07-23 18:14:22 +02:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
2008-06-12 14:42:35 +02:00
|
|
|
|
2016-04-28 00:21:06 +02:00
|
|
|
static inline void check_hwrena(CPUMIPSState *env, int reg, uintptr_t pc)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2015-10-29 16:18:39 +01:00
|
|
|
if ((env->hflags & MIPS_HFLAG_CP0) || (env->CP0_HWREna & (1 << reg))) {
|
|
|
|
return;
|
|
|
|
}
|
2016-04-28 00:21:06 +02:00
|
|
|
do_raise_exception(env, EXCP_RI, pc);
|
2015-10-29 16:18:39 +01:00
|
|
|
}
|
2008-06-23 14:57:09 +02:00
|
|
|
|
2015-10-29 16:18:39 +01:00
|
|
|
target_ulong helper_rdhwr_cpunum(CPUMIPSState *env)
|
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 0, GETPC());
|
2015-10-29 16:18:39 +01:00
|
|
|
return env->CP0_EBase & 0x3ff;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_rdhwr_synci_step(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 1, GETPC());
|
2015-10-29 16:18:39 +01:00
|
|
|
return env->SYNCI_Step;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_rdhwr_cc(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 2, GETPC());
|
2015-09-08 12:34:11 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
2019-02-11 16:28:16 +01:00
|
|
|
return env->CP0_Count;
|
2015-09-08 12:34:11 +02:00
|
|
|
#else
|
2019-02-11 16:28:16 +01:00
|
|
|
return (int32_t)cpu_mips_get_count(env);
|
2015-09-08 12:34:11 +02:00
|
|
|
#endif
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
target_ulong helper_rdhwr_ccres(CPUMIPSState *env)
|
2008-06-12 14:42:35 +02:00
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 3, GETPC());
|
2015-10-29 16:18:39 +01:00
|
|
|
return env->CCRes;
|
|
|
|
}
|
2008-06-23 14:57:09 +02:00
|
|
|
|
2015-10-29 16:18:39 +01:00
|
|
|
target_ulong helper_rdhwr_performance(CPUMIPSState *env)
|
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 4, GETPC());
|
2015-10-29 16:18:39 +01:00
|
|
|
return env->CP0_Performance0;
|
|
|
|
}
|
|
|
|
|
|
|
|
target_ulong helper_rdhwr_xnp(CPUMIPSState *env)
|
|
|
|
{
|
2016-04-28 00:21:06 +02:00
|
|
|
check_hwrena(env, 5, GETPC());
|
2015-10-29 16:18:39 +01:00
|
|
|
return (env->CP0_Config5 >> CP0C5_XNP) & 1;
|
2008-06-12 14:42:35 +02:00
|
|
|
}
|
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_pmon(CPUMIPSState *env, int function)
|
2005-07-02 16:58:51 +02:00
|
|
|
{
|
|
|
|
function /= 2;
|
|
|
|
switch (function) {
|
|
|
|
case 2: /* TODO: char inbyte(int waitflag); */
|
2019-10-23 12:23:35 +02:00
|
|
|
if (env->active_tc.gpr[4] == 0) {
|
2008-06-27 12:02:35 +02:00
|
|
|
env->active_tc.gpr[2] = -1;
|
2019-10-23 12:23:35 +02:00
|
|
|
}
|
2005-07-02 16:58:51 +02:00
|
|
|
/* Fall through */
|
|
|
|
case 11: /* TODO: char inbyte (void); */
|
2008-06-27 12:02:35 +02:00
|
|
|
env->active_tc.gpr[2] = -1;
|
2005-07-02 16:58:51 +02:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
case 12:
|
2008-06-27 12:02:35 +02:00
|
|
|
printf("%c", (char)(env->active_tc.gpr[4] & 0xFF));
|
2005-07-02 16:58:51 +02:00
|
|
|
break;
|
|
|
|
case 17:
|
|
|
|
break;
|
|
|
|
case 158:
|
|
|
|
{
|
2012-04-12 15:43:09 +02:00
|
|
|
unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4];
|
2005-07-02 16:58:51 +02:00
|
|
|
printf("%s", fmt);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-07-05 00:17:33 +02:00
|
|
|
|
2012-09-02 16:52:59 +02:00
|
|
|
void helper_wait(CPUMIPSState *env)
|
2008-06-12 05:15:13 +02:00
|
|
|
{
|
2019-03-23 02:38:42 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2013-01-17 18:51:17 +01:00
|
|
|
|
|
|
|
cs->halted = 1;
|
2013-01-17 22:30:20 +01:00
|
|
|
cpu_reset_interrupt(cs, CPU_INTERRUPT_WAKE);
|
2019-10-23 12:23:35 +02:00
|
|
|
/*
|
|
|
|
* Last instruction in the block, PC was updated before
|
|
|
|
* - no need to recover PC and icount.
|
|
|
|
*/
|
2015-07-10 11:57:08 +02:00
|
|
|
raise_exception(env, EXCP_HLT);
|
2008-06-12 05:15:13 +02:00
|
|
|
}
|
|
|
|
|
2007-09-16 23:08:06 +02:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-07-05 00:17:33 +02:00
|
|
|
|
2014-03-28 18:14:58 +01:00
|
|
|
void mips_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
|
2016-06-14 14:26:17 +02:00
|
|
|
MMUAccessType access_type,
|
|
|
|
int mmu_idx, uintptr_t retaddr)
|
2005-12-05 20:59:36 +01:00
|
|
|
{
|
2014-03-28 18:14:58 +01:00
|
|
|
MIPSCPU *cpu = MIPS_CPU(cs);
|
|
|
|
CPUMIPSState *env = &cpu->env;
|
2014-07-07 12:24:01 +02:00
|
|
|
int error_code = 0;
|
|
|
|
int excp;
|
2014-03-28 18:14:58 +01:00
|
|
|
|
2018-08-02 16:15:55 +02:00
|
|
|
if (!(env->hflags & MIPS_HFLAG_DM)) {
|
|
|
|
env->CP0_BadVAddr = addr;
|
|
|
|
}
|
2014-07-07 12:24:01 +02:00
|
|
|
|
|
|
|
if (access_type == MMU_DATA_STORE) {
|
|
|
|
excp = EXCP_AdES;
|
|
|
|
} else {
|
|
|
|
excp = EXCP_AdEL;
|
|
|
|
if (access_type == MMU_INST_FETCH) {
|
|
|
|
error_code |= EXCP_INST_NOTAVAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_raise_exception_err(env, excp, error_code, retaddr);
|
2005-12-05 20:59:36 +01:00
|
|
|
}
|
|
|
|
|
2019-08-02 18:04:57 +02:00
|
|
|
void mips_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
|
|
|
|
vaddr addr, unsigned size,
|
|
|
|
MMUAccessType access_type,
|
|
|
|
int mmu_idx, MemTxAttrs attrs,
|
|
|
|
MemTxResult response, uintptr_t retaddr)
|
2007-10-20 21:45:44 +02:00
|
|
|
{
|
2013-05-27 06:49:53 +02:00
|
|
|
MIPSCPU *cpu = MIPS_CPU(cs);
|
|
|
|
CPUMIPSState *env = &cpu->env;
|
|
|
|
|
2019-08-02 18:04:57 +02:00
|
|
|
if (access_type == MMU_INST_FETCH) {
|
|
|
|
do_raise_exception(env, EXCP_IBE, retaddr);
|
2013-05-27 06:49:53 +02:00
|
|
|
} else {
|
2019-08-02 18:04:57 +02:00
|
|
|
do_raise_exception(env, EXCP_DBE, retaddr);
|
2013-05-27 06:49:53 +02:00
|
|
|
}
|
2007-10-20 21:45:44 +02:00
|
|
|
}
|
2008-06-09 09:13:38 +02:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
2007-05-18 13:55:54 +02:00
|
|
|
|
2016-03-25 14:49:36 +01:00
|
|
|
void helper_cache(CPUMIPSState *env, target_ulong addr, uint32_t op)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2020-08-13 19:48:32 +02:00
|
|
|
static const char *const type_name[] = {
|
|
|
|
"Primary Instruction",
|
|
|
|
"Primary Data or Unified Primary",
|
|
|
|
"Tertiary",
|
|
|
|
"Secondary"
|
|
|
|
};
|
|
|
|
uint32_t cache_type = extract32(op, 0, 2);
|
2020-08-13 19:48:49 +02:00
|
|
|
uint32_t cache_operation = extract32(op, 2, 3);
|
2016-03-25 14:49:36 +01:00
|
|
|
target_ulong index = addr & 0x1fffffff;
|
2020-08-13 19:48:49 +02:00
|
|
|
|
|
|
|
switch (cache_operation) {
|
|
|
|
case 0b010: /* Index Store Tag */
|
2016-03-25 14:49:36 +01:00
|
|
|
memory_region_dispatch_write(env->itc_tag, index, env->CP0_TagLo,
|
2019-08-23 20:36:50 +02:00
|
|
|
MO_64, MEMTXATTRS_UNSPECIFIED);
|
2020-08-13 19:48:49 +02:00
|
|
|
break;
|
|
|
|
case 0b001: /* Index Load Tag */
|
2016-03-25 14:49:36 +01:00
|
|
|
memory_region_dispatch_read(env->itc_tag, index, &env->CP0_TagLo,
|
2019-08-23 20:36:50 +02:00
|
|
|
MO_64, MEMTXATTRS_UNSPECIFIED);
|
2020-08-13 19:48:49 +02:00
|
|
|
break;
|
2020-08-13 19:49:22 +02:00
|
|
|
case 0b000: /* Index Invalidate */
|
|
|
|
case 0b100: /* Hit Invalidate */
|
|
|
|
case 0b110: /* Hit Writeback */
|
|
|
|
/* no-op */
|
|
|
|
break;
|
2020-08-13 19:48:49 +02:00
|
|
|
default:
|
2020-08-13 19:48:32 +02:00
|
|
|
qemu_log_mask(LOG_UNIMP, "cache operation:%u (type: %s cache)\n",
|
|
|
|
cache_operation, type_name[cache_type]);
|
2020-08-13 19:48:49 +02:00
|
|
|
break;
|
2016-03-25 14:49:36 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|