Statistics
| Branch: | Revision:

root / softmmu_template.h @ b072a3c8

History | View | Annotate | Download (12.1 kB)

1 b92e5a22 bellard
/*
2 b92e5a22 bellard
 *  Software MMU support
3 5fafdf24 ths
 *
4 efbf29b6 Blue Swirl
 * Generate helpers used by TCG for qemu_ld/st ops and code load
5 efbf29b6 Blue Swirl
 * functions.
6 efbf29b6 Blue Swirl
 *
7 efbf29b6 Blue Swirl
 * Included from target op helpers and exec.c.
8 efbf29b6 Blue Swirl
 *
9 b92e5a22 bellard
 *  Copyright (c) 2003 Fabrice Bellard
10 b92e5a22 bellard
 *
11 b92e5a22 bellard
 * This library is free software; you can redistribute it and/or
12 b92e5a22 bellard
 * modify it under the terms of the GNU Lesser General Public
13 b92e5a22 bellard
 * License as published by the Free Software Foundation; either
14 b92e5a22 bellard
 * version 2 of the License, or (at your option) any later version.
15 b92e5a22 bellard
 *
16 b92e5a22 bellard
 * This library is distributed in the hope that it will be useful,
17 b92e5a22 bellard
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 b92e5a22 bellard
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 b92e5a22 bellard
 * Lesser General Public License for more details.
20 b92e5a22 bellard
 *
21 b92e5a22 bellard
 * You should have received a copy of the GNU Lesser General Public
22 8167ee88 Blue Swirl
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 b92e5a22 bellard
 */
24 29e922b6 Blue Swirl
#include "qemu-timer.h"
25 0e0df1e2 Avi Kivity
#include "memory.h"
26 29e922b6 Blue Swirl
27 b92e5a22 bellard
#define DATA_SIZE (1 << SHIFT)
28 b92e5a22 bellard
29 b92e5a22 bellard
#if DATA_SIZE == 8
30 b92e5a22 bellard
#define SUFFIX q
31 61382a50 bellard
#define USUFFIX q
32 b92e5a22 bellard
#define DATA_TYPE uint64_t
33 b92e5a22 bellard
#elif DATA_SIZE == 4
34 b92e5a22 bellard
#define SUFFIX l
35 61382a50 bellard
#define USUFFIX l
36 b92e5a22 bellard
#define DATA_TYPE uint32_t
37 b92e5a22 bellard
#elif DATA_SIZE == 2
38 b92e5a22 bellard
#define SUFFIX w
39 61382a50 bellard
#define USUFFIX uw
40 b92e5a22 bellard
#define DATA_TYPE uint16_t
41 b92e5a22 bellard
#elif DATA_SIZE == 1
42 b92e5a22 bellard
#define SUFFIX b
43 61382a50 bellard
#define USUFFIX ub
44 b92e5a22 bellard
#define DATA_TYPE uint8_t
45 b92e5a22 bellard
#else
46 b92e5a22 bellard
#error unsupported data size
47 b92e5a22 bellard
#endif
48 b92e5a22 bellard
49 b769d8fe bellard
#ifdef SOFTMMU_CODE_ACCESS
50 b769d8fe bellard
#define READ_ACCESS_TYPE 2
51 84b7b8e7 bellard
#define ADDR_READ addr_code
52 b769d8fe bellard
#else
53 b769d8fe bellard
#define READ_ACCESS_TYPE 0
54 84b7b8e7 bellard
#define ADDR_READ addr_read
55 b769d8fe bellard
#endif
56 b769d8fe bellard
57 5fafdf24 ths
static DATA_TYPE glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
58 6ebbf390 j_mayer
                                                        int mmu_idx,
59 61382a50 bellard
                                                        void *retaddr);
60 c227f099 Anthony Liguori
static inline DATA_TYPE glue(io_read, SUFFIX)(target_phys_addr_t physaddr,
61 2e70f6ef pbrook
                                              target_ulong addr,
62 2e70f6ef pbrook
                                              void *retaddr)
63 b92e5a22 bellard
{
64 b92e5a22 bellard
    DATA_TYPE res;
65 b92e5a22 bellard
    int index;
66 11c7ef0c Avi Kivity
    index = physaddr & (IO_MEM_NB_ENTRIES - 1);
67 0f459d16 pbrook
    physaddr = (physaddr & TARGET_PAGE_MASK) + addr;
68 2e70f6ef pbrook
    env->mem_io_pc = (unsigned long)retaddr;
69 0e0df1e2 Avi Kivity
    if (index != io_mem_ram.ram_addr && index != io_mem_rom.ram_addr
70 0e0df1e2 Avi Kivity
        && index != io_mem_unassigned.ram_addr
71 0e0df1e2 Avi Kivity
        && index != io_mem_notdirty.ram_addr
72 2e70f6ef pbrook
            && !can_do_io(env)) {
73 2e70f6ef pbrook
        cpu_io_recompile(env, retaddr);
74 2e70f6ef pbrook
    }
75 b92e5a22 bellard
76 db8886d3 aliguori
    env->mem_io_vaddr = addr;
77 b92e5a22 bellard
#if SHIFT <= 2
78 acbbec5d Avi Kivity
    res = io_mem_read(index, physaddr, 1 << SHIFT);
79 b92e5a22 bellard
#else
80 b92e5a22 bellard
#ifdef TARGET_WORDS_BIGENDIAN
81 acbbec5d Avi Kivity
    res = io_mem_read(index, physaddr, 4) << 32;
82 acbbec5d Avi Kivity
    res |= io_mem_read(index, physaddr + 4, 4);
83 b92e5a22 bellard
#else
84 acbbec5d Avi Kivity
    res = io_mem_read(index, physaddr, 4);
85 acbbec5d Avi Kivity
    res |= io_mem_read(index, physaddr + 4, 4) << 32;
86 b92e5a22 bellard
#endif
87 b92e5a22 bellard
#endif /* SHIFT > 2 */
88 b92e5a22 bellard
    return res;
89 b92e5a22 bellard
}
90 b92e5a22 bellard
91 b92e5a22 bellard
/* handle all cases except unaligned access which span two pages */
92 d656469f bellard
DATA_TYPE REGPARM glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
93 d656469f bellard
                                                      int mmu_idx)
94 b92e5a22 bellard
{
95 b92e5a22 bellard
    DATA_TYPE res;
96 61382a50 bellard
    int index;
97 c27004ec bellard
    target_ulong tlb_addr;
98 355b1943 Paul Brook
    target_phys_addr_t ioaddr;
99 355b1943 Paul Brook
    unsigned long addend;
100 b92e5a22 bellard
    void *retaddr;
101 3b46e624 ths
102 b92e5a22 bellard
    /* test if there is match for unaligned or IO access */
103 b92e5a22 bellard
    /* XXX: could done more in memory macro in a non portable way */
104 b92e5a22 bellard
    index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
105 b92e5a22 bellard
 redo:
106 6ebbf390 j_mayer
    tlb_addr = env->tlb_table[mmu_idx][index].ADDR_READ;
107 b92e5a22 bellard
    if ((addr & TARGET_PAGE_MASK) == (tlb_addr & (TARGET_PAGE_MASK | TLB_INVALID_MASK))) {
108 b92e5a22 bellard
        if (tlb_addr & ~TARGET_PAGE_MASK) {
109 b92e5a22 bellard
            /* IO access */
110 b92e5a22 bellard
            if ((addr & (DATA_SIZE - 1)) != 0)
111 b92e5a22 bellard
                goto do_unaligned_access;
112 2e70f6ef pbrook
            retaddr = GETPC();
113 355b1943 Paul Brook
            ioaddr = env->iotlb[mmu_idx][index];
114 355b1943 Paul Brook
            res = glue(io_read, SUFFIX)(ioaddr, addr, retaddr);
115 98699967 bellard
        } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
116 b92e5a22 bellard
            /* slow unaligned access (it spans two pages or IO) */
117 b92e5a22 bellard
        do_unaligned_access:
118 61382a50 bellard
            retaddr = GETPC();
119 a64d4718 bellard
#ifdef ALIGNED_ONLY
120 6ebbf390 j_mayer
            do_unaligned_access(addr, READ_ACCESS_TYPE, mmu_idx, retaddr);
121 a64d4718 bellard
#endif
122 5fafdf24 ths
            res = glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(addr,
123 6ebbf390 j_mayer
                                                         mmu_idx, retaddr);
124 b92e5a22 bellard
        } else {
125 a64d4718 bellard
            /* unaligned/aligned access in the same page */
126 a64d4718 bellard
#ifdef ALIGNED_ONLY
127 a64d4718 bellard
            if ((addr & (DATA_SIZE - 1)) != 0) {
128 a64d4718 bellard
                retaddr = GETPC();
129 6ebbf390 j_mayer
                do_unaligned_access(addr, READ_ACCESS_TYPE, mmu_idx, retaddr);
130 a64d4718 bellard
            }
131 a64d4718 bellard
#endif
132 0f459d16 pbrook
            addend = env->tlb_table[mmu_idx][index].addend;
133 0f459d16 pbrook
            res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend));
134 b92e5a22 bellard
        }
135 b92e5a22 bellard
    } else {
136 b92e5a22 bellard
        /* the page is not in the TLB : fill it */
137 61382a50 bellard
        retaddr = GETPC();
138 a64d4718 bellard
#ifdef ALIGNED_ONLY
139 a64d4718 bellard
        if ((addr & (DATA_SIZE - 1)) != 0)
140 6ebbf390 j_mayer
            do_unaligned_access(addr, READ_ACCESS_TYPE, mmu_idx, retaddr);
141 a64d4718 bellard
#endif
142 bccd9ec5 Blue Swirl
        tlb_fill(env, addr, READ_ACCESS_TYPE, mmu_idx, retaddr);
143 b92e5a22 bellard
        goto redo;
144 b92e5a22 bellard
    }
145 b92e5a22 bellard
    return res;
146 b92e5a22 bellard
}
147 b92e5a22 bellard
148 b92e5a22 bellard
/* handle all unaligned cases */
149 5fafdf24 ths
static DATA_TYPE glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
150 6ebbf390 j_mayer
                                                        int mmu_idx,
151 61382a50 bellard
                                                        void *retaddr)
152 b92e5a22 bellard
{
153 b92e5a22 bellard
    DATA_TYPE res, res1, res2;
154 61382a50 bellard
    int index, shift;
155 355b1943 Paul Brook
    target_phys_addr_t ioaddr;
156 355b1943 Paul Brook
    unsigned long addend;
157 c27004ec bellard
    target_ulong tlb_addr, addr1, addr2;
158 b92e5a22 bellard
159 b92e5a22 bellard
    index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
160 b92e5a22 bellard
 redo:
161 6ebbf390 j_mayer
    tlb_addr = env->tlb_table[mmu_idx][index].ADDR_READ;
162 b92e5a22 bellard
    if ((addr & TARGET_PAGE_MASK) == (tlb_addr & (TARGET_PAGE_MASK | TLB_INVALID_MASK))) {
163 b92e5a22 bellard
        if (tlb_addr & ~TARGET_PAGE_MASK) {
164 b92e5a22 bellard
            /* IO access */
165 b92e5a22 bellard
            if ((addr & (DATA_SIZE - 1)) != 0)
166 b92e5a22 bellard
                goto do_unaligned_access;
167 355b1943 Paul Brook
            ioaddr = env->iotlb[mmu_idx][index];
168 355b1943 Paul Brook
            res = glue(io_read, SUFFIX)(ioaddr, addr, retaddr);
169 98699967 bellard
        } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
170 b92e5a22 bellard
        do_unaligned_access:
171 b92e5a22 bellard
            /* slow unaligned access (it spans two pages) */
172 b92e5a22 bellard
            addr1 = addr & ~(DATA_SIZE - 1);
173 b92e5a22 bellard
            addr2 = addr1 + DATA_SIZE;
174 5fafdf24 ths
            res1 = glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(addr1,
175 6ebbf390 j_mayer
                                                          mmu_idx, retaddr);
176 5fafdf24 ths
            res2 = glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(addr2,
177 6ebbf390 j_mayer
                                                          mmu_idx, retaddr);
178 b92e5a22 bellard
            shift = (addr & (DATA_SIZE - 1)) * 8;
179 b92e5a22 bellard
#ifdef TARGET_WORDS_BIGENDIAN
180 b92e5a22 bellard
            res = (res1 << shift) | (res2 >> ((DATA_SIZE * 8) - shift));
181 b92e5a22 bellard
#else
182 b92e5a22 bellard
            res = (res1 >> shift) | (res2 << ((DATA_SIZE * 8) - shift));
183 b92e5a22 bellard
#endif
184 6986f88c bellard
            res = (DATA_TYPE)res;
185 b92e5a22 bellard
        } else {
186 b92e5a22 bellard
            /* unaligned/aligned access in the same page */
187 0f459d16 pbrook
            addend = env->tlb_table[mmu_idx][index].addend;
188 0f459d16 pbrook
            res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend));
189 b92e5a22 bellard
        }
190 b92e5a22 bellard
    } else {
191 b92e5a22 bellard
        /* the page is not in the TLB : fill it */
192 bccd9ec5 Blue Swirl
        tlb_fill(env, addr, READ_ACCESS_TYPE, mmu_idx, retaddr);
193 b92e5a22 bellard
        goto redo;
194 b92e5a22 bellard
    }
195 b92e5a22 bellard
    return res;
196 b92e5a22 bellard
}
197 b92e5a22 bellard
198 b769d8fe bellard
#ifndef SOFTMMU_CODE_ACCESS
199 b769d8fe bellard
200 5fafdf24 ths
static void glue(glue(slow_st, SUFFIX), MMUSUFFIX)(target_ulong addr,
201 5fafdf24 ths
                                                   DATA_TYPE val,
202 6ebbf390 j_mayer
                                                   int mmu_idx,
203 b769d8fe bellard
                                                   void *retaddr);
204 b769d8fe bellard
205 c227f099 Anthony Liguori
static inline void glue(io_write, SUFFIX)(target_phys_addr_t physaddr,
206 b769d8fe bellard
                                          DATA_TYPE val,
207 0f459d16 pbrook
                                          target_ulong addr,
208 b769d8fe bellard
                                          void *retaddr)
209 b769d8fe bellard
{
210 b769d8fe bellard
    int index;
211 11c7ef0c Avi Kivity
    index = physaddr & (IO_MEM_NB_ENTRIES - 1);
212 0f459d16 pbrook
    physaddr = (physaddr & TARGET_PAGE_MASK) + addr;
213 0e0df1e2 Avi Kivity
    if (index != io_mem_ram.ram_addr && index != io_mem_rom.ram_addr
214 0e0df1e2 Avi Kivity
        && index != io_mem_unassigned.ram_addr
215 0e0df1e2 Avi Kivity
        && index != io_mem_notdirty.ram_addr
216 2e70f6ef pbrook
            && !can_do_io(env)) {
217 2e70f6ef pbrook
        cpu_io_recompile(env, retaddr);
218 2e70f6ef pbrook
    }
219 b769d8fe bellard
220 2e70f6ef pbrook
    env->mem_io_vaddr = addr;
221 2e70f6ef pbrook
    env->mem_io_pc = (unsigned long)retaddr;
222 b769d8fe bellard
#if SHIFT <= 2
223 acbbec5d Avi Kivity
    io_mem_write(index, physaddr, val, 1 << SHIFT);
224 b769d8fe bellard
#else
225 b769d8fe bellard
#ifdef TARGET_WORDS_BIGENDIAN
226 acbbec5d Avi Kivity
    io_mem_write(index, physaddr, (val >> 32), 4);
227 acbbec5d Avi Kivity
    io_mem_write(index, physaddr + 4, (uint32_t)val, 4);
228 b769d8fe bellard
#else
229 acbbec5d Avi Kivity
    io_mem_write(index, physaddr, (uint32_t)val, 4);
230 acbbec5d Avi Kivity
    io_mem_write(index, physaddr + 4, val >> 32, 4);
231 b769d8fe bellard
#endif
232 b769d8fe bellard
#endif /* SHIFT > 2 */
233 b769d8fe bellard
}
234 b92e5a22 bellard
235 d656469f bellard
void REGPARM glue(glue(__st, SUFFIX), MMUSUFFIX)(target_ulong addr,
236 d656469f bellard
                                                 DATA_TYPE val,
237 d656469f bellard
                                                 int mmu_idx)
238 b92e5a22 bellard
{
239 355b1943 Paul Brook
    target_phys_addr_t ioaddr;
240 355b1943 Paul Brook
    unsigned long addend;
241 c27004ec bellard
    target_ulong tlb_addr;
242 b92e5a22 bellard
    void *retaddr;
243 61382a50 bellard
    int index;
244 3b46e624 ths
245 b92e5a22 bellard
    index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
246 b92e5a22 bellard
 redo:
247 6ebbf390 j_mayer
    tlb_addr = env->tlb_table[mmu_idx][index].addr_write;
248 b92e5a22 bellard
    if ((addr & TARGET_PAGE_MASK) == (tlb_addr & (TARGET_PAGE_MASK | TLB_INVALID_MASK))) {
249 b92e5a22 bellard
        if (tlb_addr & ~TARGET_PAGE_MASK) {
250 b92e5a22 bellard
            /* IO access */
251 b92e5a22 bellard
            if ((addr & (DATA_SIZE - 1)) != 0)
252 b92e5a22 bellard
                goto do_unaligned_access;
253 d720b93d bellard
            retaddr = GETPC();
254 355b1943 Paul Brook
            ioaddr = env->iotlb[mmu_idx][index];
255 355b1943 Paul Brook
            glue(io_write, SUFFIX)(ioaddr, val, addr, retaddr);
256 98699967 bellard
        } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
257 b92e5a22 bellard
        do_unaligned_access:
258 61382a50 bellard
            retaddr = GETPC();
259 a64d4718 bellard
#ifdef ALIGNED_ONLY
260 6ebbf390 j_mayer
            do_unaligned_access(addr, 1, mmu_idx, retaddr);
261 a64d4718 bellard
#endif
262 5fafdf24 ths
            glue(glue(slow_st, SUFFIX), MMUSUFFIX)(addr, val,
263 6ebbf390 j_mayer
                                                   mmu_idx, retaddr);
264 b92e5a22 bellard
        } else {
265 b92e5a22 bellard
            /* aligned/unaligned access in the same page */
266 a64d4718 bellard
#ifdef ALIGNED_ONLY
267 a64d4718 bellard
            if ((addr & (DATA_SIZE - 1)) != 0) {
268 a64d4718 bellard
                retaddr = GETPC();
269 6ebbf390 j_mayer
                do_unaligned_access(addr, 1, mmu_idx, retaddr);
270 a64d4718 bellard
            }
271 a64d4718 bellard
#endif
272 0f459d16 pbrook
            addend = env->tlb_table[mmu_idx][index].addend;
273 0f459d16 pbrook
            glue(glue(st, SUFFIX), _raw)((uint8_t *)(long)(addr+addend), val);
274 b92e5a22 bellard
        }
275 b92e5a22 bellard
    } else {
276 b92e5a22 bellard
        /* the page is not in the TLB : fill it */
277 61382a50 bellard
        retaddr = GETPC();
278 a64d4718 bellard
#ifdef ALIGNED_ONLY
279 a64d4718 bellard
        if ((addr & (DATA_SIZE - 1)) != 0)
280 6ebbf390 j_mayer
            do_unaligned_access(addr, 1, mmu_idx, retaddr);
281 a64d4718 bellard
#endif
282 bccd9ec5 Blue Swirl
        tlb_fill(env, addr, 1, mmu_idx, retaddr);
283 b92e5a22 bellard
        goto redo;
284 b92e5a22 bellard
    }
285 b92e5a22 bellard
}
286 b92e5a22 bellard
287 b92e5a22 bellard
/* handles all unaligned cases */
288 5fafdf24 ths
static void glue(glue(slow_st, SUFFIX), MMUSUFFIX)(target_ulong addr,
289 61382a50 bellard
                                                   DATA_TYPE val,
290 6ebbf390 j_mayer
                                                   int mmu_idx,
291 61382a50 bellard
                                                   void *retaddr)
292 b92e5a22 bellard
{
293 355b1943 Paul Brook
    target_phys_addr_t ioaddr;
294 355b1943 Paul Brook
    unsigned long addend;
295 c27004ec bellard
    target_ulong tlb_addr;
296 61382a50 bellard
    int index, i;
297 b92e5a22 bellard
298 b92e5a22 bellard
    index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
299 b92e5a22 bellard
 redo:
300 6ebbf390 j_mayer
    tlb_addr = env->tlb_table[mmu_idx][index].addr_write;
301 b92e5a22 bellard
    if ((addr & TARGET_PAGE_MASK) == (tlb_addr & (TARGET_PAGE_MASK | TLB_INVALID_MASK))) {
302 b92e5a22 bellard
        if (tlb_addr & ~TARGET_PAGE_MASK) {
303 b92e5a22 bellard
            /* IO access */
304 b92e5a22 bellard
            if ((addr & (DATA_SIZE - 1)) != 0)
305 b92e5a22 bellard
                goto do_unaligned_access;
306 355b1943 Paul Brook
            ioaddr = env->iotlb[mmu_idx][index];
307 355b1943 Paul Brook
            glue(io_write, SUFFIX)(ioaddr, val, addr, retaddr);
308 98699967 bellard
        } else if (((addr & ~TARGET_PAGE_MASK) + DATA_SIZE - 1) >= TARGET_PAGE_SIZE) {
309 b92e5a22 bellard
        do_unaligned_access:
310 b92e5a22 bellard
            /* XXX: not efficient, but simple */
311 6c41b272 balrog
            /* Note: relies on the fact that tlb_fill() does not remove the
312 6c41b272 balrog
             * previous page from the TLB cache.  */
313 7221fa98 balrog
            for(i = DATA_SIZE - 1; i >= 0; i--) {
314 b92e5a22 bellard
#ifdef TARGET_WORDS_BIGENDIAN
315 5fafdf24 ths
                glue(slow_stb, MMUSUFFIX)(addr + i, val >> (((DATA_SIZE - 1) * 8) - (i * 8)),
316 6ebbf390 j_mayer
                                          mmu_idx, retaddr);
317 b92e5a22 bellard
#else
318 5fafdf24 ths
                glue(slow_stb, MMUSUFFIX)(addr + i, val >> (i * 8),
319 6ebbf390 j_mayer
                                          mmu_idx, retaddr);
320 b92e5a22 bellard
#endif
321 b92e5a22 bellard
            }
322 b92e5a22 bellard
        } else {
323 b92e5a22 bellard
            /* aligned/unaligned access in the same page */
324 0f459d16 pbrook
            addend = env->tlb_table[mmu_idx][index].addend;
325 0f459d16 pbrook
            glue(glue(st, SUFFIX), _raw)((uint8_t *)(long)(addr+addend), val);
326 b92e5a22 bellard
        }
327 b92e5a22 bellard
    } else {
328 b92e5a22 bellard
        /* the page is not in the TLB : fill it */
329 bccd9ec5 Blue Swirl
        tlb_fill(env, addr, 1, mmu_idx, retaddr);
330 b92e5a22 bellard
        goto redo;
331 b92e5a22 bellard
    }
332 b92e5a22 bellard
}
333 b92e5a22 bellard
334 b769d8fe bellard
#endif /* !defined(SOFTMMU_CODE_ACCESS) */
335 b769d8fe bellard
336 b769d8fe bellard
#undef READ_ACCESS_TYPE
337 b92e5a22 bellard
#undef SHIFT
338 b92e5a22 bellard
#undef DATA_TYPE
339 b92e5a22 bellard
#undef SUFFIX
340 61382a50 bellard
#undef USUFFIX
341 b92e5a22 bellard
#undef DATA_SIZE
342 84b7b8e7 bellard
#undef ADDR_READ