4 * Copyright (c) 2003 Fabrice Bellard
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, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #define DATA_TYPE uint64_t
27 #define DATA_TYPE uint32_t
31 #define DATA_TYPE uint16_t
32 #define DATA_STYPE int16_t
36 #define DATA_TYPE uint8_t
37 #define DATA_STYPE int8_t
39 #error unsupported data size
42 #if ACCESS_TYPE < (NB_MMU_MODES)
44 #define CPU_MMU_INDEX ACCESS_TYPE
45 #define MMUSUFFIX _mmu
47 #elif ACCESS_TYPE == (NB_MMU_MODES)
49 #define CPU_MMU_INDEX (cpu_mmu_index(env))
50 #define MMUSUFFIX _mmu
52 #elif ACCESS_TYPE == (NB_MMU_MODES + 1)
54 #define CPU_MMU_INDEX (cpu_mmu_index(env))
55 #define MMUSUFFIX _cmmu
58 #error invalid ACCESS_TYPE
62 #define RES_TYPE uint64_t
67 #if ACCESS_TYPE == (NB_MMU_MODES + 1)
68 #define ADDR_READ addr_code
70 #define ADDR_READ addr_read
73 DATA_TYPE REGPARM
glue(glue(__ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
75 void REGPARM
glue(glue(__st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
, DATA_TYPE v
, int mmu_idx
);
77 #if (DATA_SIZE <= 4) && (TARGET_LONG_BITS == 32) && defined(__i386__) && \
78 (ACCESS_TYPE < NB_MMU_MODES) && defined(ASM_SOFTMMU)
80 static inline RES_TYPE
glue(glue(ld
, USUFFIX
), MEMSUFFIX
)(target_ulong ptr
)
84 asm volatile ("movl %1, %%edx\n"
89 "leal %5(%%edx, %%ebp), %%edx\n"
90 "cmpl (%%edx), %%eax\n"
98 "addl 12(%%edx), %%eax\n"
100 "movzbl (%%eax), %0\n"
102 "movzwl (%%eax), %0\n"
106 #error unsupported size
111 "i" ((CPU_TLB_SIZE
- 1) << CPU_TLB_ENTRY_BITS
),
112 "i" (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
),
113 "i" (TARGET_PAGE_MASK
| (DATA_SIZE
- 1)),
114 "m" (*(uint32_t *)offsetof(CPUState
, tlb_table
[CPU_MMU_INDEX
][0].addr_read
)),
116 "m" (*(uint8_t *)&glue(glue(__ld
, SUFFIX
), MMUSUFFIX
))
117 : "%eax", "%ecx", "%edx", "memory", "cc");
122 static inline int glue(glue(lds
, SUFFIX
), MEMSUFFIX
)(target_ulong ptr
)
126 asm volatile ("movl %1, %%edx\n"
131 "leal %5(%%edx, %%ebp), %%edx\n"
132 "cmpl (%%edx), %%eax\n"
142 #error unsupported size
146 "addl 12(%%edx), %%eax\n"
148 "movsbl (%%eax), %0\n"
150 "movswl (%%eax), %0\n"
152 #error unsupported size
157 "i" ((CPU_TLB_SIZE
- 1) << CPU_TLB_ENTRY_BITS
),
158 "i" (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
),
159 "i" (TARGET_PAGE_MASK
| (DATA_SIZE
- 1)),
160 "m" (*(uint32_t *)offsetof(CPUState
, tlb_table
[CPU_MMU_INDEX
][0].addr_read
)),
162 "m" (*(uint8_t *)&glue(glue(__ld
, SUFFIX
), MMUSUFFIX
))
163 : "%eax", "%ecx", "%edx", "memory", "cc");
168 static inline void glue(glue(st
, SUFFIX
), MEMSUFFIX
)(target_ulong ptr
, RES_TYPE v
)
170 asm volatile ("movl %0, %%edx\n"
175 "leal %5(%%edx, %%ebp), %%edx\n"
176 "cmpl (%%edx), %%eax\n"
180 "movzbl %b1, %%edx\n"
182 "movzwl %w1, %%edx\n"
186 #error unsupported size
192 "addl 8(%%edx), %%eax\n"
194 "movb %b1, (%%eax)\n"
196 "movw %w1, (%%eax)\n"
200 #error unsupported size
210 "i" ((CPU_TLB_SIZE
- 1) << CPU_TLB_ENTRY_BITS
),
211 "i" (TARGET_PAGE_BITS
- CPU_TLB_ENTRY_BITS
),
212 "i" (TARGET_PAGE_MASK
| (DATA_SIZE
- 1)),
213 "m" (*(uint32_t *)offsetof(CPUState
, tlb_table
[CPU_MMU_INDEX
][0].addr_write
)),
215 "m" (*(uint8_t *)&glue(glue(__st
, SUFFIX
), MMUSUFFIX
))
216 : "%eax", "%ecx", "%edx", "memory", "cc");
221 /* generic load/store macros */
223 static inline RES_TYPE
glue(glue(ld
, USUFFIX
), MEMSUFFIX
)(target_ulong ptr
)
228 unsigned long physaddr
;
232 page_index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
233 mmu_idx
= CPU_MMU_INDEX
;
234 if (__builtin_expect(env
->tlb_table
[mmu_idx
][page_index
].ADDR_READ
!=
235 (addr
& (TARGET_PAGE_MASK
| (DATA_SIZE
- 1))), 0)) {
236 res
= glue(glue(__ld
, SUFFIX
), MMUSUFFIX
)(addr
, mmu_idx
);
238 physaddr
= addr
+ env
->tlb_table
[mmu_idx
][page_index
].addend
;
239 res
= glue(glue(ld
, USUFFIX
), _raw
)((uint8_t *)physaddr
);
245 static inline int glue(glue(lds
, SUFFIX
), MEMSUFFIX
)(target_ulong ptr
)
249 unsigned long physaddr
;
253 page_index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
254 mmu_idx
= CPU_MMU_INDEX
;
255 if (__builtin_expect(env
->tlb_table
[mmu_idx
][page_index
].ADDR_READ
!=
256 (addr
& (TARGET_PAGE_MASK
| (DATA_SIZE
- 1))), 0)) {
257 res
= (DATA_STYPE
)glue(glue(__ld
, SUFFIX
), MMUSUFFIX
)(addr
, mmu_idx
);
259 physaddr
= addr
+ env
->tlb_table
[mmu_idx
][page_index
].addend
;
260 res
= glue(glue(lds
, SUFFIX
), _raw
)((uint8_t *)physaddr
);
266 #if ACCESS_TYPE != (NB_MMU_MODES + 1)
268 /* generic store macro */
270 static inline void glue(glue(st
, SUFFIX
), MEMSUFFIX
)(target_ulong ptr
, RES_TYPE v
)
274 unsigned long physaddr
;
278 page_index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
279 mmu_idx
= CPU_MMU_INDEX
;
280 if (__builtin_expect(env
->tlb_table
[mmu_idx
][page_index
].addr_write
!=
281 (addr
& (TARGET_PAGE_MASK
| (DATA_SIZE
- 1))), 0)) {
282 glue(glue(__st
, SUFFIX
), MMUSUFFIX
)(addr
, v
, mmu_idx
);
284 physaddr
= addr
+ env
->tlb_table
[mmu_idx
][page_index
].addend
;
285 glue(glue(st
, SUFFIX
), _raw
)((uint8_t *)physaddr
, v
);
289 #endif /* ACCESS_TYPE != (NB_MMU_MODES + 1) */
293 #if ACCESS_TYPE != (NB_MMU_MODES + 1)
296 static inline float64
glue(ldfq
, MEMSUFFIX
)(target_ulong ptr
)
302 u
.i
= glue(ldq
, MEMSUFFIX
)(ptr
);
306 static inline void glue(stfq
, MEMSUFFIX
)(target_ulong ptr
, float64 v
)
313 glue(stq
, MEMSUFFIX
)(ptr
, u
.i
);
315 #endif /* DATA_SIZE == 8 */
318 static inline float32
glue(ldfl
, MEMSUFFIX
)(target_ulong ptr
)
324 u
.i
= glue(ldl
, MEMSUFFIX
)(ptr
);
328 static inline void glue(stfl
, MEMSUFFIX
)(target_ulong ptr
, float32 v
)
335 glue(stl
, MEMSUFFIX
)(ptr
, u
.i
);
337 #endif /* DATA_SIZE == 4 */
339 #endif /* ACCESS_TYPE != (NB_MMU_MODES + 1) */