]> Git Repo - qemu.git/blob - target-alpha/mem_helper.c
exec: Make ldq/ldub_*_phys input an AddressSpace
[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(uint64_t p, uint64_t v)
54 {
55     stl_phys(p, v);
56 }
57
58 void helper_stq_phys(uint64_t p, uint64_t v)
59 {
60     stq_phys(p, v);
61 }
62
63 uint64_t helper_stl_c_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
64 {
65     CPUState *cs = ENV_GET_CPU(env);
66     uint64_t ret = 0;
67
68     if (p == env->lock_addr) {
69         int32_t old = ldl_phys(cs->as, p);
70         if (old == (int32_t)env->lock_value) {
71             stl_phys(p, v);
72             ret = 1;
73         }
74     }
75     env->lock_addr = -1;
76
77     return ret;
78 }
79
80 uint64_t helper_stq_c_phys(CPUAlphaState *env, uint64_t p, uint64_t v)
81 {
82     CPUState *cs = ENV_GET_CPU(env);
83     uint64_t ret = 0;
84
85     if (p == env->lock_addr) {
86         uint64_t old = ldq_phys(cs->as, p);
87         if (old == env->lock_value) {
88             stq_phys(p, v);
89             ret = 1;
90         }
91     }
92     env->lock_addr = -1;
93
94     return ret;
95 }
96
97 static void do_unaligned_access(CPUAlphaState *env, target_ulong addr,
98                                 int is_write, int is_user, uintptr_t retaddr)
99 {
100     uint64_t pc;
101     uint32_t insn;
102
103     if (retaddr) {
104         cpu_restore_state(env, retaddr);
105     }
106
107     pc = env->pc;
108     insn = cpu_ldl_code(env, pc);
109
110     env->trap_arg0 = addr;
111     env->trap_arg1 = insn >> 26;                /* opcode */
112     env->trap_arg2 = (insn >> 21) & 31;         /* dest regno */
113     env->exception_index = EXCP_UNALIGN;
114     env->error_code = 0;
115     cpu_loop_exit(env);
116 }
117
118 void alpha_cpu_unassigned_access(CPUState *cs, hwaddr addr,
119                                  bool is_write, bool is_exec, int unused,
120                                  unsigned size)
121 {
122     AlphaCPU *cpu = ALPHA_CPU(cs);
123     CPUAlphaState *env = &cpu->env;
124
125     env->trap_arg0 = addr;
126     env->trap_arg1 = is_write ? 1 : 0;
127     dynamic_excp(env, 0, EXCP_MCHK, 0);
128 }
129
130 #include "exec/softmmu_exec.h"
131
132 #define MMUSUFFIX _mmu
133 #define ALIGNED_ONLY
134
135 #define SHIFT 0
136 #include "exec/softmmu_template.h"
137
138 #define SHIFT 1
139 #include "exec/softmmu_template.h"
140
141 #define SHIFT 2
142 #include "exec/softmmu_template.h"
143
144 #define SHIFT 3
145 #include "exec/softmmu_template.h"
146
147 /* try to fill the TLB and return an exception if error. If retaddr is
148    NULL, it means that the function was called in C code (i.e. not
149    from generated code or from helper.c) */
150 /* XXX: fix it to restore all registers */
151 void tlb_fill(CPUAlphaState *env, target_ulong addr, int is_write,
152               int mmu_idx, uintptr_t retaddr)
153 {
154     int ret;
155
156     ret = cpu_alpha_handle_mmu_fault(env, addr, is_write, mmu_idx);
157     if (unlikely(ret != 0)) {
158         if (retaddr) {
159             cpu_restore_state(env, retaddr);
160         }
161         /* Exception index and error code are already set */
162         cpu_loop_exit(env);
163     }
164 }
165 #endif /* CONFIG_USER_ONLY */
This page took 0.051282 seconds and 4 git commands to generate.