blob: 26b4f2cddb116f659af1e9f53196968003539661 [file] [log] [blame]
bellardb92e5a22003-08-08 23:58:05 +00001/*
2 * Software MMU support
3 *
4 * Copyright (c) 2003 Fabrice Bellard
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, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#if DATA_SIZE == 8
21#define SUFFIX q
bellard61382a52003-10-27 21:22:23 +000022#define USUFFIX q
bellardb92e5a22003-08-08 23:58:05 +000023#define DATA_TYPE uint64_t
24#elif DATA_SIZE == 4
25#define SUFFIX l
bellard61382a52003-10-27 21:22:23 +000026#define USUFFIX l
bellardb92e5a22003-08-08 23:58:05 +000027#define DATA_TYPE uint32_t
28#elif DATA_SIZE == 2
29#define SUFFIX w
bellard61382a52003-10-27 21:22:23 +000030#define USUFFIX uw
bellardb92e5a22003-08-08 23:58:05 +000031#define DATA_TYPE uint16_t
32#define DATA_STYPE int16_t
33#elif DATA_SIZE == 1
34#define SUFFIX b
bellard61382a52003-10-27 21:22:23 +000035#define USUFFIX ub
bellardb92e5a22003-08-08 23:58:05 +000036#define DATA_TYPE uint8_t
37#define DATA_STYPE int8_t
38#else
39#error unsupported data size
40#endif
41
bellard61382a52003-10-27 21:22:23 +000042#if ACCESS_TYPE == 0
43
44#define CPU_MEM_INDEX 0
45#define MMUSUFFIX _mmu
46
47#elif ACCESS_TYPE == 1
48
49#define CPU_MEM_INDEX 1
50#define MMUSUFFIX _mmu
51
52#elif ACCESS_TYPE == 2
53
54#define CPU_MEM_INDEX ((env->hflags & HF_CPL_MASK) == 3)
55#define MMUSUFFIX _mmu
56
57#elif ACCESS_TYPE == 3
58
59#define CPU_MEM_INDEX ((env->hflags & HF_CPL_MASK) == 3)
60#define MMUSUFFIX _cmmu
61
bellardb92e5a22003-08-08 23:58:05 +000062#else
bellard61382a52003-10-27 21:22:23 +000063#error invalid ACCESS_TYPE
bellardb92e5a22003-08-08 23:58:05 +000064#endif
65
66#if DATA_SIZE == 8
67#define RES_TYPE uint64_t
68#else
69#define RES_TYPE int
70#endif
71
72
bellard61382a52003-10-27 21:22:23 +000073DATA_TYPE REGPARM(1) glue(glue(__ld, SUFFIX), MMUSUFFIX)(unsigned long addr,
74 int is_user);
75void REGPARM(2) glue(glue(__st, SUFFIX), MMUSUFFIX)(unsigned long addr, DATA_TYPE v, int is_user);
bellardb92e5a22003-08-08 23:58:05 +000076
bellard61382a52003-10-27 21:22:23 +000077static inline int glue(glue(ld, USUFFIX), MEMSUFFIX)(void *ptr)
bellardb92e5a22003-08-08 23:58:05 +000078{
79 int index;
80 RES_TYPE res;
81 unsigned long addr, physaddr;
bellard61382a52003-10-27 21:22:23 +000082 int is_user;
83
bellardb92e5a22003-08-08 23:58:05 +000084 addr = (unsigned long)ptr;
85 index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
bellard61382a52003-10-27 21:22:23 +000086 is_user = CPU_MEM_INDEX;
87 if (__builtin_expect(env->tlb_read[is_user][index].address !=
bellardb92e5a22003-08-08 23:58:05 +000088 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))), 0)) {
bellard61382a52003-10-27 21:22:23 +000089 res = glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, is_user);
bellardb92e5a22003-08-08 23:58:05 +000090 } else {
bellard61382a52003-10-27 21:22:23 +000091 physaddr = addr + env->tlb_read[is_user][index].addend;
92 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)physaddr);
bellardb92e5a22003-08-08 23:58:05 +000093 }
94 return res;
95}
96
97#if DATA_SIZE <= 2
98static inline int glue(glue(lds, SUFFIX), MEMSUFFIX)(void *ptr)
99{
100 int res, index;
101 unsigned long addr, physaddr;
bellard61382a52003-10-27 21:22:23 +0000102 int is_user;
103
bellardb92e5a22003-08-08 23:58:05 +0000104 addr = (unsigned long)ptr;
105 index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
bellard61382a52003-10-27 21:22:23 +0000106 is_user = CPU_MEM_INDEX;
107 if (__builtin_expect(env->tlb_read[is_user][index].address !=
bellardb92e5a22003-08-08 23:58:05 +0000108 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))), 0)) {
bellard61382a52003-10-27 21:22:23 +0000109 res = (DATA_STYPE)glue(glue(__ld, SUFFIX), MMUSUFFIX)(addr, is_user);
bellardb92e5a22003-08-08 23:58:05 +0000110 } else {
bellard61382a52003-10-27 21:22:23 +0000111 physaddr = addr + env->tlb_read[is_user][index].addend;
bellardb92e5a22003-08-08 23:58:05 +0000112 res = glue(glue(lds, SUFFIX), _raw)((uint8_t *)physaddr);
113 }
114 return res;
115}
116#endif
117
118static inline void glue(glue(st, SUFFIX), MEMSUFFIX)(void *ptr, RES_TYPE v)
119{
120 int index;
121 unsigned long addr, physaddr;
bellard61382a52003-10-27 21:22:23 +0000122 int is_user;
123
bellardb92e5a22003-08-08 23:58:05 +0000124 addr = (unsigned long)ptr;
125 index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
bellard61382a52003-10-27 21:22:23 +0000126 is_user = CPU_MEM_INDEX;
127 if (__builtin_expect(env->tlb_write[is_user][index].address !=
bellardb92e5a22003-08-08 23:58:05 +0000128 (addr & (TARGET_PAGE_MASK | (DATA_SIZE - 1))), 0)) {
bellard61382a52003-10-27 21:22:23 +0000129 glue(glue(__st, SUFFIX), MMUSUFFIX)(addr, v, is_user);
bellardb92e5a22003-08-08 23:58:05 +0000130 } else {
bellard61382a52003-10-27 21:22:23 +0000131 physaddr = addr + env->tlb_write[is_user][index].addend;
bellardb92e5a22003-08-08 23:58:05 +0000132 glue(glue(st, SUFFIX), _raw)((uint8_t *)physaddr, v);
133 }
134}
135
136#undef RES_TYPE
137#undef DATA_TYPE
138#undef DATA_STYPE
139#undef SUFFIX
bellard61382a52003-10-27 21:22:23 +0000140#undef USUFFIX
bellardb92e5a22003-08-08 23:58:05 +0000141#undef DATA_SIZE
bellard61382a52003-10-27 21:22:23 +0000142#undef CPU_MEM_INDEX
143#undef MMUSUFFIX