2007-04-05 14:58:33 +08:00
|
|
|
/*
|
2012-03-25 00:51:13 +08:00
|
|
|
* Helpers for loads and stores
|
2007-09-17 05:08:06 +08:00
|
|
|
*
|
2007-04-05 14:58:33 +08: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-17 04:47:01 +08:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-04-05 14:58:33 +08:00
|
|
|
*/
|
|
|
|
|
2016-01-27 02:17:04 +08:00
|
|
|
#include "qemu/osdep.h"
|
2011-07-13 20:44:15 +08:00
|
|
|
#include "cpu.h"
|
2014-04-08 13:31:41 +08:00
|
|
|
#include "exec/helper-proto.h"
|
2016-03-15 20:18:37 +08:00
|
|
|
#include "exec/exec-all.h"
|
2014-03-29 02:42:10 +08:00
|
|
|
#include "exec/cpu_ldst.h"
|
2007-04-05 14:58:33 +08:00
|
|
|
|
|
|
|
/* Softmmu support */
|
2012-03-25 00:51:13 +08:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2014-03-29 01:14:58 +08:00
|
|
|
void alpha_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
|
2016-06-14 20:26:17 +08:00
|
|
|
MMUAccessType access_type,
|
|
|
|
int mmu_idx, uintptr_t retaddr)
|
2011-04-19 07:13:12 +08:00
|
|
|
{
|
2014-03-29 01:14:58 +08:00
|
|
|
AlphaCPU *cpu = ALPHA_CPU(cs);
|
|
|
|
CPUAlphaState *env = &cpu->env;
|
2011-04-19 07:13:12 +08:00
|
|
|
uint64_t pc;
|
|
|
|
uint32_t insn;
|
|
|
|
|
2018-04-09 17:13:20 +08:00
|
|
|
cpu_restore_state(cs, retaddr, true);
|
2011-04-19 07:13:12 +08:00
|
|
|
|
|
|
|
pc = env->pc;
|
2012-03-25 00:51:13 +08:00
|
|
|
insn = cpu_ldl_code(env, pc);
|
2011-04-19 07:13:12 +08:00
|
|
|
|
|
|
|
env->trap_arg0 = addr;
|
|
|
|
env->trap_arg1 = insn >> 26; /* opcode */
|
|
|
|
env->trap_arg2 = (insn >> 21) & 31; /* dest regno */
|
2013-08-26 14:31:06 +08:00
|
|
|
cs->exception_index = EXCP_UNALIGN;
|
2012-03-25 00:51:08 +08:00
|
|
|
env->error_code = 0;
|
2013-08-27 23:52:12 +08:00
|
|
|
cpu_loop_exit(cs);
|
2011-04-19 07:13:12 +08:00
|
|
|
}
|
|
|
|
|
2017-08-08 20:42:52 +08:00
|
|
|
void alpha_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)
|
2011-04-19 07:13:12 +08:00
|
|
|
{
|
2013-05-27 12:49:53 +08:00
|
|
|
AlphaCPU *cpu = ALPHA_CPU(cs);
|
|
|
|
CPUAlphaState *env = &cpu->env;
|
|
|
|
|
2011-04-19 07:13:12 +08:00
|
|
|
env->trap_arg0 = addr;
|
2017-08-08 20:42:52 +08:00
|
|
|
env->trap_arg1 = access_type == MMU_DATA_STORE ? 1 : 0;
|
2014-06-29 04:06:19 +08:00
|
|
|
cs->exception_index = EXCP_MCHK;
|
|
|
|
env->error_code = 0;
|
2018-04-09 17:13:20 +08:00
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
2011-04-19 07:13:12 +08:00
|
|
|
}
|
2012-03-25 00:51:13 +08:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|