]> git.proxmox.com Git - mirror_qemu.git/blob - target-alpha/mem_helper.c
Merge remote-tracking branch 'remotes/kevin/tags/for-anthony' into staging
[mirror_qemu.git] / target-alpha / mem_helper.c
1 /*
2 * Helpers for loads and stores
3 *
4 * Copyright (c) 2007 Jocelyn Mayer
5 *
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 of the License, or (at your option) any later version.
10 *
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.
15 *
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/>.
18 */
19
20 #include "cpu.h"
21 #include "helper.h"
22
23
24 /* Softmmu support */
25 #ifndef CONFIG_USER_ONLY
26
27 uint64_t helper_ldl_phys(CPUAlphaState *env, uint64_t p)
28 {
29 CPUState *cs = ENV_GET_CPU(env);
30 return (int32_t)ldl_phys(cs->as, p);
31 }
32
33 uint64_t helper_ldq_phys(CPUAlphaState *env, uint64_t p)
34 {
35 CPUState *cs = ENV_GET_CPU(env);
36 return ldq_phys(cs->as, p);
37 }
38
39 uint64_t helper_ldl_l_phys(CPUAlphaState *env, uint64_t p)
40 {
41 CPUState *cs = ENV_GET_CPU(env);
42 env->lock_addr = p;
43 return env->lock_value = (int32_t)ldl_phys(cs->as, p);
44 }
45
46 uint64_t helper_ldq_l_phys(CPUAlphaState *env, uint64_t p)
47 {
48 CPUState *cs = ENV_GET_CPU(env);
49 env->lock_addr = p;
50 return env->lock_value = ldq_phys(cs->as, p);
51 }
52
53 void helper_stl_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
54 {
55 CPUState *cs = ENV_GET_CPU(env);
56 stl_phys(cs->as, p, v);
57 }
58
59 void helper_stq_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
60 {
61 CPUState *cs = ENV_GET_CPU(env);
62 stq_phys(cs->as, p, v);
63 }
64
65 uint64_t helper_stl_c_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
66 {
67 CPUState *cs = ENV_GET_CPU(env);
68 uint64_t ret = 0;
69
70 if (p == env->lock_addr) {
71 int32_t old = ldl_phys(cs->as, p);
72 if (old == (int32_t)env->lock_value) {
73 stl_phys(cs->as, p, v);
74 ret = 1;
75 }
76 }
77 env->lock_addr = -1;
78
79 return ret;
80 }
81
82 uint64_t helper_stq_c_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
83 {
84 CPUState *cs = ENV_GET_CPU(env);
85 uint64_t ret = 0;
86
87 if (p == env->lock_addr) {
88 uint64_t old = ldq_phys(cs->as, p);
89 if (old == env->lock_value) {
90 stq_phys(cs->as, p, v);
91 ret = 1;
92 }
93 }
94 env->lock_addr = -1;
95
96 return ret;
97 }
98
99 static void do_unaligned_access(CPUAlphaState *env, target_ulong addr,
100 int is_write, int is_user, uintptr_t retaddr)
101 {
102 uint64_t pc;
103 uint32_t insn;
104
105 if (retaddr) {
106 cpu_restore_state(env, retaddr);
107 }
108
109 pc = env->pc;
110 insn = cpu_ldl_code(env, pc);
111
112 env->trap_arg0 = addr;
113 env->trap_arg1 = insn >> 26; /* opcode */
114 env->trap_arg2 = (insn >> 21) & 31; /* dest regno */
115 env->exception_index = EXCP_UNALIGN;
116 env->error_code = 0;
117 cpu_loop_exit(env);
118 }
119
120 void alpha_cpu_unassigned_access(CPUState *cs, hwaddr addr,
121 bool is_write, bool is_exec, int unused,
122 unsigned size)
123 {
124 AlphaCPU *cpu = ALPHA_CPU(cs);
125 CPUAlphaState *env = &cpu->env;
126
127 env->trap_arg0 = addr;
128 env->trap_arg1 = is_write ? 1 : 0;
129 dynamic_excp(env, 0, EXCP_MCHK, 0);
130 }
131
132 #include "exec/softmmu_exec.h"
133
134 #define MMUSUFFIX _mmu
135 #define ALIGNED_ONLY
136
137 #define SHIFT 0
138 #include "exec/softmmu_template.h"
139
140 #define SHIFT 1
141 #include "exec/softmmu_template.h"
142
143 #define SHIFT 2
144 #include "exec/softmmu_template.h"
145
146 #define SHIFT 3
147 #include "exec/softmmu_template.h"
148
149 /* try to fill the TLB and return an exception if error. If retaddr is
150 NULL, it means that the function was called in C code (i.e. not
151 from generated code or from helper.c) */
152 /* XXX: fix it to restore all registers */
153 void tlb_fill(CPUAlphaState *env, target_ulong addr, int is_write,
154 int mmu_idx, uintptr_t retaddr)
155 {
156 int ret;
157
158 ret = cpu_alpha_handle_mmu_fault(env, addr, is_write, mmu_idx);
159 if (unlikely(ret != 0)) {
160 if (retaddr) {
161 cpu_restore_state(env, retaddr);
162 }
163 /* Exception index and error code are already set */
164 cpu_loop_exit(env);
165 }
166 }
167 #endif /* CONFIG_USER_ONLY */