2007-04-05 08:58:33 +02:00
|
|
|
/*
|
2012-03-24 17:51:13 +01:00
|
|
|
* Helpers for loads and stores
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2007-04-05 08:58:33 +02:00
|
|
|
* Copyright (c) 2007 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
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-04-05 08:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:04 +01:00
|
|
|
#include "qemu/osdep.h"
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "cpu.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"
|
2014-03-28 19:42:10 +01:00
|
|
|
#include "exec/cpu_ldst.h"
|
2007-04-05 08:58:33 +02:00
|
|
|
|
|
|
|
/* Softmmu support */
|
2012-03-24 17:51:13 +01:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2014-03-28 18:14:58 +01:00
|
|
|
void alpha_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)
|
2011-04-19 01:13:12 +02:00
|
|
|
{
|
2014-03-28 18:14:58 +01:00
|
|
|
AlphaCPU *cpu = ALPHA_CPU(cs);
|
|
|
|
CPUAlphaState *env = &cpu->env;
|
2011-04-19 01:13:12 +02:00
|
|
|
uint64_t pc;
|
|
|
|
uint32_t insn;
|
|
|
|
|
2012-12-04 21:16:07 +01:00
|
|
|
if (retaddr) {
|
2013-09-01 16:51:34 +02:00
|
|
|
cpu_restore_state(cs, retaddr);
|
2012-12-04 21:16:07 +01:00
|
|
|
}
|
2011-04-19 01:13:12 +02:00
|
|
|
|
|
|
|
pc = env->pc;
|
2012-03-24 17:51:13 +01:00
|
|
|
insn = cpu_ldl_code(env, pc);
|
2011-04-19 01:13:12 +02:00
|
|
|
|
|
|
|
env->trap_arg0 = addr;
|
|
|
|
env->trap_arg1 = insn >> 26; /* opcode */
|
|
|
|
env->trap_arg2 = (insn >> 21) & 31; /* dest regno */
|
2013-08-26 08:31:06 +02:00
|
|
|
cs->exception_index = EXCP_UNALIGN;
|
2012-03-24 17:51:08 +01:00
|
|
|
env->error_code = 0;
|
2013-08-27 17:52:12 +02:00
|
|
|
cpu_loop_exit(cs);
|
2011-04-19 01:13:12 +02:00
|
|
|
}
|
|
|
|
|
2013-05-27 06:49:53 +02:00
|
|
|
void alpha_cpu_unassigned_access(CPUState *cs, hwaddr addr,
|
|
|
|
bool is_write, bool is_exec, int unused,
|
|
|
|
unsigned size)
|
2011-04-19 01:13:12 +02:00
|
|
|
{
|
2013-05-27 06:49:53 +02:00
|
|
|
AlphaCPU *cpu = ALPHA_CPU(cs);
|
|
|
|
CPUAlphaState *env = &cpu->env;
|
|
|
|
|
2011-04-19 01:13:12 +02:00
|
|
|
env->trap_arg0 = addr;
|
2013-05-27 06:49:53 +02:00
|
|
|
env->trap_arg1 = is_write ? 1 : 0;
|
2014-06-28 22:06:19 +02:00
|
|
|
cs->exception_index = EXCP_MCHK;
|
|
|
|
env->error_code = 0;
|
|
|
|
|
|
|
|
/* ??? We should cpu_restore_state to the faulting insn, but this hook
|
2015-09-08 23:45:14 +02:00
|
|
|
does not have access to the retaddr value from the original helper.
|
2014-06-28 22:06:19 +02:00
|
|
|
It's all moot until the QEMU PALcode grows an MCHK handler. */
|
|
|
|
|
|
|
|
cpu_loop_exit(cs);
|
2011-04-19 01:13:12 +02:00
|
|
|
}
|
|
|
|
|
2007-04-05 08:58:33 +02:00
|
|
|
/* 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 */
|
2016-06-14 14:26:17 +02:00
|
|
|
void tlb_fill(CPUState *cs, target_ulong addr, MMUAccessType access_type,
|
2012-04-09 16:20:20 +02:00
|
|
|
int mmu_idx, uintptr_t retaddr)
|
2007-04-05 08:58:33 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-06-14 14:26:17 +02:00
|
|
|
ret = alpha_cpu_handle_mmu_fault(cs, addr, access_type, mmu_idx);
|
2011-04-25 21:20:27 +02:00
|
|
|
if (unlikely(ret != 0)) {
|
2012-12-04 21:16:07 +01:00
|
|
|
if (retaddr) {
|
2013-09-01 16:51:34 +02:00
|
|
|
cpu_restore_state(cs, retaddr);
|
2012-12-04 21:16:07 +01:00
|
|
|
}
|
2007-04-05 08:58:33 +02:00
|
|
|
/* Exception index and error code are already set */
|
2013-08-27 17:52:12 +02:00
|
|
|
cpu_loop_exit(cs);
|
2007-04-05 08:58:33 +02:00
|
|
|
}
|
|
|
|
}
|
2012-03-24 17:51:13 +01:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|