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, see <http://www.gnu.org/licenses/>.
19 #define DATA_SIZE (1 << SHIFT)
24 #define DATA_TYPE uint64_t
28 #define DATA_TYPE uint32_t
32 #define DATA_TYPE uint16_t
36 #define DATA_TYPE uint8_t
38 #error unsupported data size
41 #ifdef SOFTMMU_CODE_ACCESS
42 #define READ_ACCESS_TYPE 2
43 #define ADDR_READ addr_code
45 #define READ_ACCESS_TYPE 0
46 #define ADDR_READ addr_read
49 static DATA_TYPE
glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
52 static inline DATA_TYPE
glue(io_read
, SUFFIX
)(target_phys_addr_t physaddr
,
58 index
= (physaddr
>> IO_MEM_SHIFT
) & (IO_MEM_NB_ENTRIES
- 1);
59 physaddr
= (physaddr
& TARGET_PAGE_MASK
) + addr
;
60 env
->mem_io_pc
= (unsigned long)retaddr
;
61 if (index
> (IO_MEM_NOTDIRTY
>> IO_MEM_SHIFT
)
63 cpu_io_recompile(env
, retaddr
);
66 env
->mem_io_vaddr
= addr
;
68 res
= io_mem_read
[index
][SHIFT
](io_mem_opaque
[index
], physaddr
);
70 #ifdef TARGET_WORDS_BIGENDIAN
71 res
= (uint64_t)io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
) << 32;
72 res
|= io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
+ 4);
74 res
= io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
);
75 res
|= (uint64_t)io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
+ 4) << 32;
77 #endif /* SHIFT > 2 */
79 env
->last_io_time
= cpu_get_time_fast();
84 /* handle all cases except unaligned access which span two pages */
85 DATA_TYPE REGPARM
glue(glue(__ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
90 target_ulong tlb_addr
;
91 target_phys_addr_t addend
;
94 /* test if there is match for unaligned or IO access */
95 /* XXX: could done more in memory macro in a non portable way */
96 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
98 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].ADDR_READ
;
99 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
100 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
102 if ((addr
& (DATA_SIZE
- 1)) != 0)
103 goto do_unaligned_access
;
105 addend
= env
->iotlb
[mmu_idx
][index
];
106 res
= glue(io_read
, SUFFIX
)(addend
, addr
, retaddr
);
107 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
108 /* slow unaligned access (it spans two pages or IO) */
112 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
114 res
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr
,
117 /* unaligned/aligned access in the same page */
119 if ((addr
& (DATA_SIZE
- 1)) != 0) {
121 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
124 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
125 res
= glue(glue(ld
, USUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
));
128 /* the page is not in the TLB : fill it */
131 if ((addr
& (DATA_SIZE
- 1)) != 0)
132 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
134 tlb_fill(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
140 /* handle all unaligned cases */
141 static DATA_TYPE
glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
145 DATA_TYPE res
, res1
, res2
;
147 target_phys_addr_t addend
;
148 target_ulong tlb_addr
, addr1
, addr2
;
150 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
152 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].ADDR_READ
;
153 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
154 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
156 if ((addr
& (DATA_SIZE
- 1)) != 0)
157 goto do_unaligned_access
;
159 addend
= env
->iotlb
[mmu_idx
][index
];
160 res
= glue(io_read
, SUFFIX
)(addend
, addr
, retaddr
);
161 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
163 /* slow unaligned access (it spans two pages) */
164 addr1
= addr
& ~(DATA_SIZE
- 1);
165 addr2
= addr1
+ DATA_SIZE
;
166 res1
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr1
,
168 res2
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr2
,
170 shift
= (addr
& (DATA_SIZE
- 1)) * 8;
171 #ifdef TARGET_WORDS_BIGENDIAN
172 res
= (res1
<< shift
) | (res2
>> ((DATA_SIZE
* 8) - shift
));
174 res
= (res1
>> shift
) | (res2
<< ((DATA_SIZE
* 8) - shift
));
176 res
= (DATA_TYPE
)res
;
178 /* unaligned/aligned access in the same page */
179 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
180 res
= glue(glue(ld
, USUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
));
183 /* the page is not in the TLB : fill it */
184 tlb_fill(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
190 #ifndef SOFTMMU_CODE_ACCESS
192 static void glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
197 static inline void glue(io_write
, SUFFIX
)(target_phys_addr_t physaddr
,
203 index
= (physaddr
>> IO_MEM_SHIFT
) & (IO_MEM_NB_ENTRIES
- 1);
204 physaddr
= (physaddr
& TARGET_PAGE_MASK
) + addr
;
205 if (index
> (IO_MEM_NOTDIRTY
>> IO_MEM_SHIFT
)
206 && !can_do_io(env
)) {
207 cpu_io_recompile(env
, retaddr
);
210 env
->mem_io_vaddr
= addr
;
211 env
->mem_io_pc
= (unsigned long)retaddr
;
213 io_mem_write
[index
][SHIFT
](io_mem_opaque
[index
], physaddr
, val
);
215 #ifdef TARGET_WORDS_BIGENDIAN
216 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
, val
>> 32);
217 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
+ 4, val
);
219 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
, val
);
220 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
+ 4, val
>> 32);
222 #endif /* SHIFT > 2 */
224 env
->last_io_time
= cpu_get_time_fast();
228 void REGPARM
glue(glue(__st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
232 target_phys_addr_t addend
;
233 target_ulong tlb_addr
;
237 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
239 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].addr_write
;
240 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
241 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
243 if ((addr
& (DATA_SIZE
- 1)) != 0)
244 goto do_unaligned_access
;
246 addend
= env
->iotlb
[mmu_idx
][index
];
247 glue(io_write
, SUFFIX
)(addend
, val
, addr
, retaddr
);
248 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
252 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
254 glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(addr
, val
,
257 /* aligned/unaligned access in the same page */
259 if ((addr
& (DATA_SIZE
- 1)) != 0) {
261 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
264 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
265 glue(glue(st
, SUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
), val
);
268 /* the page is not in the TLB : fill it */
271 if ((addr
& (DATA_SIZE
- 1)) != 0)
272 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
274 tlb_fill(addr
, 1, mmu_idx
, retaddr
);
279 /* handles all unaligned cases */
280 static void glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
285 target_phys_addr_t addend
;
286 target_ulong tlb_addr
;
289 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
291 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].addr_write
;
292 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
293 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
295 if ((addr
& (DATA_SIZE
- 1)) != 0)
296 goto do_unaligned_access
;
297 addend
= env
->iotlb
[mmu_idx
][index
];
298 glue(io_write
, SUFFIX
)(addend
, val
, addr
, retaddr
);
299 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
301 /* XXX: not efficient, but simple */
302 /* Note: relies on the fact that tlb_fill() does not remove the
303 * previous page from the TLB cache. */
304 for(i
= DATA_SIZE
- 1; i
>= 0; i
--) {
305 #ifdef TARGET_WORDS_BIGENDIAN
306 glue(slow_stb
, MMUSUFFIX
)(addr
+ i
, val
>> (((DATA_SIZE
- 1) * 8) - (i
* 8)),
309 glue(slow_stb
, MMUSUFFIX
)(addr
+ i
, val
>> (i
* 8),
314 /* aligned/unaligned access in the same page */
315 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
316 glue(glue(st
, SUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
), val
);
319 /* the page is not in the TLB : fill it */
320 tlb_fill(addr
, 1, mmu_idx
, retaddr
);
325 #endif /* !defined(SOFTMMU_CODE_ACCESS) */
327 #undef READ_ACCESS_TYPE