2007-05-23 21:58:11 +02:00
|
|
|
/*
|
|
|
|
* M68K helper routines
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2007-05-23 21:58:11 +02:00
|
|
|
* Copyright (c) 2007 CodeSourcery
|
|
|
|
*
|
|
|
|
* 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
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-05-23 21:58:11 +02:00
|
|
|
*/
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "dyngen-exec.h"
|
2008-05-25 00:29:16 +02:00
|
|
|
#include "helpers.h"
|
2007-05-23 21:58:11 +02:00
|
|
|
|
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
|
2011-05-21 09:55:24 +02:00
|
|
|
void do_interrupt(CPUState *env1)
|
|
|
|
{
|
|
|
|
env1->exception_index = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_interrupt_m68k_hardirq(CPUState *env1)
|
2007-05-23 21:58:11 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-05-26 17:09:38 +02:00
|
|
|
extern int semihosting_enabled;
|
|
|
|
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "softmmu_exec.h"
|
|
|
|
|
2007-05-23 21:58:11 +02:00
|
|
|
#define MMUSUFFIX _mmu
|
|
|
|
|
|
|
|
#define SHIFT 0
|
|
|
|
#include "softmmu_template.h"
|
|
|
|
|
|
|
|
#define SHIFT 1
|
|
|
|
#include "softmmu_template.h"
|
|
|
|
|
|
|
|
#define SHIFT 2
|
|
|
|
#include "softmmu_template.h"
|
|
|
|
|
|
|
|
#define SHIFT 3
|
|
|
|
#include "softmmu_template.h"
|
|
|
|
|
|
|
|
/* Try to fill the TLB and return an exception if error. If retaddr is
|
|
|
|
NULL, it means that the function was called in C code (i.e. not
|
|
|
|
from generated code or from helper.c) */
|
|
|
|
/* XXX: fix it to restore all registers */
|
2011-07-04 22:57:05 +02:00
|
|
|
void tlb_fill(CPUState *env1, target_ulong addr, int is_write, int mmu_idx,
|
|
|
|
void *retaddr)
|
2007-05-23 21:58:11 +02:00
|
|
|
{
|
|
|
|
TranslationBlock *tb;
|
|
|
|
CPUState *saved_env;
|
2007-11-11 13:35:55 +01:00
|
|
|
unsigned long pc;
|
2007-05-23 21:58:11 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
saved_env = env;
|
2011-07-04 22:57:05 +02:00
|
|
|
env = env1;
|
2011-08-01 18:12:17 +02:00
|
|
|
ret = cpu_m68k_handle_mmu_fault(env, addr, is_write, mmu_idx);
|
2008-07-03 19:57:36 +02:00
|
|
|
if (unlikely(ret)) {
|
2007-05-23 21:58:11 +02:00
|
|
|
if (retaddr) {
|
|
|
|
/* now we have a real cpu fault */
|
2007-11-11 13:35:55 +01:00
|
|
|
pc = (unsigned long)retaddr;
|
2007-05-23 21:58:11 +02:00
|
|
|
tb = tb_find_pc(pc);
|
|
|
|
if (tb) {
|
|
|
|
/* the PC is inside the translated code. It means that we have
|
|
|
|
a virtual CPU fault */
|
2011-04-18 08:39:53 +02:00
|
|
|
cpu_restore_state(tb, env, pc);
|
2007-05-23 21:58:11 +02:00
|
|
|
}
|
|
|
|
}
|
2011-05-14 14:52:35 +02:00
|
|
|
cpu_loop_exit(env);
|
2007-05-23 21:58:11 +02:00
|
|
|
}
|
|
|
|
env = saved_env;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_rte(void)
|
|
|
|
{
|
|
|
|
uint32_t sp;
|
|
|
|
uint32_t fmt;
|
|
|
|
|
|
|
|
sp = env->aregs[7];
|
|
|
|
fmt = ldl_kernel(sp);
|
|
|
|
env->pc = ldl_kernel(sp + 4);
|
|
|
|
sp |= (fmt >> 28) & 3;
|
|
|
|
env->sr = fmt & 0xffff;
|
2007-06-03 13:13:39 +02:00
|
|
|
m68k_switch_sp(env);
|
2007-05-23 21:58:11 +02:00
|
|
|
env->aregs[7] = sp + 8;
|
|
|
|
}
|
|
|
|
|
2011-05-21 09:55:24 +02:00
|
|
|
static void do_interrupt_all(int is_hw)
|
2007-05-23 21:58:11 +02:00
|
|
|
{
|
|
|
|
uint32_t sp;
|
|
|
|
uint32_t fmt;
|
|
|
|
uint32_t retaddr;
|
|
|
|
uint32_t vector;
|
|
|
|
|
|
|
|
fmt = 0;
|
|
|
|
retaddr = env->pc;
|
|
|
|
|
|
|
|
if (!is_hw) {
|
|
|
|
switch (env->exception_index) {
|
|
|
|
case EXCP_RTE:
|
|
|
|
/* Return from an exception. */
|
|
|
|
do_rte();
|
|
|
|
return;
|
2007-05-26 17:09:38 +02:00
|
|
|
case EXCP_HALT_INSN:
|
|
|
|
if (semihosting_enabled
|
|
|
|
&& (env->sr & SR_S) != 0
|
|
|
|
&& (env->pc & 3) == 0
|
|
|
|
&& lduw_code(env->pc - 4) == 0x4e71
|
|
|
|
&& ldl_code(env->pc) == 0x4e7bf000) {
|
|
|
|
env->pc += 4;
|
|
|
|
do_m68k_semihosting(env, env->dregs[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
env->halted = 1;
|
|
|
|
env->exception_index = EXCP_HLT;
|
2011-05-14 14:52:35 +02:00
|
|
|
cpu_loop_exit(env);
|
2007-05-26 17:09:38 +02:00
|
|
|
return;
|
2007-05-23 21:58:11 +02:00
|
|
|
}
|
|
|
|
if (env->exception_index >= EXCP_TRAP0
|
|
|
|
&& env->exception_index <= EXCP_TRAP15) {
|
|
|
|
/* Move the PC after the trap instruction. */
|
|
|
|
retaddr += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vector = env->exception_index << 2;
|
|
|
|
|
2007-06-09 22:48:46 +02:00
|
|
|
sp = env->aregs[7];
|
|
|
|
|
2007-05-23 21:58:11 +02:00
|
|
|
fmt |= 0x40000000;
|
|
|
|
fmt |= (sp & 3) << 28;
|
|
|
|
fmt |= vector << 16;
|
|
|
|
fmt |= env->sr;
|
|
|
|
|
2007-06-03 13:13:39 +02:00
|
|
|
env->sr |= SR_S;
|
|
|
|
if (is_hw) {
|
|
|
|
env->sr = (env->sr & ~SR_I) | (env->pending_level << SR_I_SHIFT);
|
|
|
|
env->sr &= ~SR_M;
|
|
|
|
}
|
|
|
|
m68k_switch_sp(env);
|
|
|
|
|
2007-05-23 21:58:11 +02:00
|
|
|
/* ??? This could cause MMU faults. */
|
|
|
|
sp &= ~3;
|
|
|
|
sp -= 4;
|
|
|
|
stl_kernel(sp, retaddr);
|
|
|
|
sp -= 4;
|
|
|
|
stl_kernel(sp, fmt);
|
|
|
|
env->aregs[7] = sp;
|
|
|
|
/* Jump to vector. */
|
|
|
|
env->pc = ldl_kernel(env->vbr + vector);
|
|
|
|
}
|
|
|
|
|
2011-05-21 09:55:24 +02:00
|
|
|
void do_interrupt(CPUState *env1)
|
|
|
|
{
|
|
|
|
CPUState *saved_env;
|
|
|
|
|
|
|
|
saved_env = env;
|
|
|
|
env = env1;
|
|
|
|
do_interrupt_all(0);
|
|
|
|
env = saved_env;
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_interrupt_m68k_hardirq(CPUState *env1)
|
|
|
|
{
|
|
|
|
CPUState *saved_env;
|
|
|
|
|
|
|
|
saved_env = env;
|
|
|
|
env = env1;
|
|
|
|
do_interrupt_all(1);
|
|
|
|
env = saved_env;
|
|
|
|
}
|
2007-05-23 21:58:11 +02:00
|
|
|
#endif
|
2008-05-25 00:29:16 +02:00
|
|
|
|
|
|
|
static void raise_exception(int tt)
|
|
|
|
{
|
|
|
|
env->exception_index = tt;
|
2011-05-14 14:52:35 +02:00
|
|
|
cpu_loop_exit(env);
|
2008-05-25 00:29:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(raise_exception)(uint32_t tt)
|
|
|
|
{
|
|
|
|
raise_exception(tt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(divu)(CPUState *env, uint32_t word)
|
|
|
|
{
|
|
|
|
uint32_t num;
|
|
|
|
uint32_t den;
|
|
|
|
uint32_t quot;
|
|
|
|
uint32_t rem;
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
num = env->div1;
|
|
|
|
den = env->div2;
|
|
|
|
/* ??? This needs to make sure the throwing location is accurate. */
|
|
|
|
if (den == 0)
|
|
|
|
raise_exception(EXCP_DIV0);
|
|
|
|
quot = num / den;
|
|
|
|
rem = num % den;
|
|
|
|
flags = 0;
|
|
|
|
/* Avoid using a PARAM1 of zero. This breaks dyngen because it uses
|
|
|
|
the address of a symbol, and gcc knows symbols can't have address
|
|
|
|
zero. */
|
|
|
|
if (word && quot > 0xffff)
|
|
|
|
flags |= CCF_V;
|
|
|
|
if (quot == 0)
|
|
|
|
flags |= CCF_Z;
|
|
|
|
else if ((int32_t)quot < 0)
|
|
|
|
flags |= CCF_N;
|
|
|
|
env->div1 = quot;
|
|
|
|
env->div2 = rem;
|
|
|
|
env->cc_dest = flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(divs)(CPUState *env, uint32_t word)
|
|
|
|
{
|
|
|
|
int32_t num;
|
|
|
|
int32_t den;
|
|
|
|
int32_t quot;
|
|
|
|
int32_t rem;
|
|
|
|
int32_t flags;
|
|
|
|
|
|
|
|
num = env->div1;
|
|
|
|
den = env->div2;
|
|
|
|
if (den == 0)
|
|
|
|
raise_exception(EXCP_DIV0);
|
|
|
|
quot = num / den;
|
|
|
|
rem = num % den;
|
|
|
|
flags = 0;
|
|
|
|
if (word && quot != (int16_t)quot)
|
|
|
|
flags |= CCF_V;
|
|
|
|
if (quot == 0)
|
|
|
|
flags |= CCF_Z;
|
|
|
|
else if (quot < 0)
|
|
|
|
flags |= CCF_N;
|
|
|
|
env->div1 = quot;
|
|
|
|
env->div2 = rem;
|
|
|
|
env->cc_dest = flags;
|
|
|
|
}
|