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 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/>.
25 #ifndef CONFIG_USER_ONLY
27 uint64_t helper_ldl_phys(uint64_t p
)
29 return (int32_t)ldl_phys(p
);
32 uint64_t helper_ldq_phys(uint64_t p
)
37 uint64_t helper_ldl_l_phys(CPUAlphaState
*env
, uint64_t p
)
40 return env
->lock_value
= (int32_t)ldl_phys(p
);
43 uint64_t helper_ldq_l_phys(CPUAlphaState
*env
, uint64_t p
)
46 return env
->lock_value
= ldq_phys(p
);
49 void helper_stl_phys(uint64_t p
, uint64_t v
)
54 void helper_stq_phys(uint64_t p
, uint64_t v
)
59 uint64_t helper_stl_c_phys(CPUAlphaState
*env
, uint64_t p
, uint64_t v
)
63 if (p
== env
->lock_addr
) {
64 int32_t old
= ldl_phys(p
);
65 if (old
== (int32_t)env
->lock_value
) {
75 uint64_t helper_stq_c_phys(CPUAlphaState
*env
, uint64_t p
, uint64_t v
)
79 if (p
== env
->lock_addr
) {
80 uint64_t old
= ldq_phys(p
);
81 if (old
== env
->lock_value
) {
91 static void do_unaligned_access(CPUAlphaState
*env
, target_ulong addr
,
92 int is_write
, int is_user
, uintptr_t retaddr
)
97 do_restore_state(env
, retaddr
);
100 insn
= cpu_ldl_code(env
, pc
);
102 env
->trap_arg0
= addr
;
103 env
->trap_arg1
= insn
>> 26; /* opcode */
104 env
->trap_arg2
= (insn
>> 21) & 31; /* dest regno */
105 env
->exception_index
= EXCP_UNALIGN
;
110 void cpu_unassigned_access(CPUAlphaState
*env
, hwaddr addr
,
111 int is_write
, int is_exec
, int unused
, int size
)
113 env
->trap_arg0
= addr
;
114 env
->trap_arg1
= is_write
;
115 dynamic_excp(env
, 0, EXCP_MCHK
, 0);
118 #include "softmmu_exec.h"
120 #define MMUSUFFIX _mmu
124 #include "softmmu_template.h"
127 #include "softmmu_template.h"
130 #include "softmmu_template.h"
133 #include "softmmu_template.h"
135 /* try to fill the TLB and return an exception if error. If retaddr is
136 NULL, it means that the function was called in C code (i.e. not
137 from generated code or from helper.c) */
138 /* XXX: fix it to restore all registers */
139 void tlb_fill(CPUAlphaState
*env
, target_ulong addr
, int is_write
,
140 int mmu_idx
, uintptr_t retaddr
)
144 ret
= cpu_alpha_handle_mmu_fault(env
, addr
, is_write
, mmu_idx
);
145 if (unlikely(ret
!= 0)) {
146 do_restore_state(env
, retaddr
);
147 /* Exception index and error code are already set */
151 #endif /* CONFIG_USER_ONLY */