Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / target / alpha / mem_helper.c
blobe2d39f7edde84affe1e4c068424bb73bfda14943
1 /*
2 * Helpers for loads and stores
4 * Copyright (c) 2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * 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/>.
20 #include "qemu/osdep.h"
21 #include "cpu.h"
22 #include "exec/helper-proto.h"
23 #include "exec/exec-all.h"
24 #include "exec/cpu_ldst.h"
26 static void do_unaligned_access(CPUAlphaState *env, vaddr addr, uintptr_t retaddr)
28 uint64_t pc;
29 uint32_t insn;
31 cpu_restore_state(env_cpu(env), retaddr);
33 pc = env->pc;
34 insn = cpu_ldl_code(env, pc);
36 env->trap_arg0 = addr;
37 env->trap_arg1 = insn >> 26; /* opcode */
38 env->trap_arg2 = (insn >> 21) & 31; /* dest regno */
41 #ifdef CONFIG_USER_ONLY
42 void alpha_cpu_record_sigbus(CPUState *cs, vaddr addr,
43 MMUAccessType access_type, uintptr_t retaddr)
45 do_unaligned_access(cpu_env(cs), addr, retaddr);
47 #else
48 void alpha_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
49 MMUAccessType access_type,
50 int mmu_idx, uintptr_t retaddr)
52 CPUAlphaState *env = cpu_env(cs);
54 do_unaligned_access(env, addr, retaddr);
55 cs->exception_index = EXCP_UNALIGN;
56 env->error_code = 0;
57 cpu_loop_exit(cs);
60 void G_NORETURN
61 alpha_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
62 vaddr addr, unsigned size,
63 MMUAccessType access_type,
64 int mmu_idx, MemTxAttrs attrs,
65 MemTxResult response, uintptr_t retaddr)
67 CPUAlphaState *env = cpu_env(cs);
69 env->trap_arg0 = addr;
70 env->trap_arg1 = access_type == MMU_DATA_STORE ? 1 : 0;
71 cs->exception_index = EXCP_MCHK;
72 env->error_code = 0;
73 cpu_loop_exit_restore(cs, retaddr);
75 #endif /* CONFIG_USER_ONLY */