blob: e8391009a36e4de3accd1ac2feb0a2ac28cb18de [file] [log] [blame]
bellard5a9fdfe2003-06-15 20:02:25 +00001/*
2 * defines common to all virtual CPUs
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard5a9fdfe2003-06-15 20:02:25 +00004 * 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
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellard5a9fdfe2003-06-15 20:02:25 +000018 */
19#ifndef CPU_ALL_H
20#define CPU_ALL_H
21
blueswir17d99a002009-01-14 19:00:36 +000022#include "qemu-common.h"
Paul Brook1ad21342009-05-19 16:17:58 +010023#include "cpu-common.h"
bellard0ac4bd52004-01-04 15:44:17 +000024
ths5fafdf22007-09-16 21:08:06 +000025/* some important defines:
26 *
bellard0ac4bd52004-01-04 15:44:17 +000027 * WORDS_ALIGNED : if defined, the host cpu can only make word aligned
28 * memory accesses.
ths5fafdf22007-09-16 21:08:06 +000029 *
Juan Quintelae2542fe2009-07-27 16:13:06 +020030 * HOST_WORDS_BIGENDIAN : if defined, the host cpu is big endian and
bellard0ac4bd52004-01-04 15:44:17 +000031 * otherwise little endian.
ths5fafdf22007-09-16 21:08:06 +000032 *
bellard0ac4bd52004-01-04 15:44:17 +000033 * (TARGET_WORDS_ALIGNED : same for target cpu (not supported yet))
ths5fafdf22007-09-16 21:08:06 +000034 *
bellard0ac4bd52004-01-04 15:44:17 +000035 * TARGET_WORDS_BIGENDIAN : same for target cpu
36 */
37
aurel32939ef592008-05-09 18:45:47 +000038#include "softfloat.h"
bellardf193c792004-03-21 17:06:25 +000039
Juan Quintelae2542fe2009-07-27 16:13:06 +020040#if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
bellardf193c792004-03-21 17:06:25 +000041#define BSWAP_NEEDED
42#endif
43
44#ifdef BSWAP_NEEDED
45
46static inline uint16_t tswap16(uint16_t s)
47{
48 return bswap16(s);
49}
50
51static inline uint32_t tswap32(uint32_t s)
52{
53 return bswap32(s);
54}
55
56static inline uint64_t tswap64(uint64_t s)
57{
58 return bswap64(s);
59}
60
61static inline void tswap16s(uint16_t *s)
62{
63 *s = bswap16(*s);
64}
65
66static inline void tswap32s(uint32_t *s)
67{
68 *s = bswap32(*s);
69}
70
71static inline void tswap64s(uint64_t *s)
72{
73 *s = bswap64(*s);
74}
75
76#else
77
78static inline uint16_t tswap16(uint16_t s)
79{
80 return s;
81}
82
83static inline uint32_t tswap32(uint32_t s)
84{
85 return s;
86}
87
88static inline uint64_t tswap64(uint64_t s)
89{
90 return s;
91}
92
93static inline void tswap16s(uint16_t *s)
94{
95}
96
97static inline void tswap32s(uint32_t *s)
98{
99}
100
101static inline void tswap64s(uint64_t *s)
102{
103}
104
105#endif
106
107#if TARGET_LONG_SIZE == 4
108#define tswapl(s) tswap32(s)
109#define tswapls(s) tswap32s((uint32_t *)(s))
bellard0a962c02005-02-10 22:00:27 +0000110#define bswaptls(s) bswap32s(s)
bellardf193c792004-03-21 17:06:25 +0000111#else
112#define tswapl(s) tswap64(s)
113#define tswapls(s) tswap64s((uint64_t *)(s))
bellard0a962c02005-02-10 22:00:27 +0000114#define bswaptls(s) bswap64s(s)
bellardf193c792004-03-21 17:06:25 +0000115#endif
116
aurel320ca9d382008-03-13 19:19:16 +0000117typedef union {
118 float32 f;
119 uint32_t l;
120} CPU_FloatU;
121
bellard832ed0f2005-02-07 12:35:16 +0000122/* NOTE: arm FPA is horrible as double 32 bit words are stored in big
123 endian ! */
bellard0ac4bd52004-01-04 15:44:17 +0000124typedef union {
bellard53cd6632005-03-13 18:50:23 +0000125 float64 d;
Aurelien Jarnocf67c6b2011-05-15 14:09:18 +0200126#if defined(HOST_WORDS_BIGENDIAN)
bellard0ac4bd52004-01-04 15:44:17 +0000127 struct {
bellard0ac4bd52004-01-04 15:44:17 +0000128 uint32_t upper;
bellard832ed0f2005-02-07 12:35:16 +0000129 uint32_t lower;
bellard0ac4bd52004-01-04 15:44:17 +0000130 } l;
131#else
132 struct {
bellard0ac4bd52004-01-04 15:44:17 +0000133 uint32_t lower;
bellard832ed0f2005-02-07 12:35:16 +0000134 uint32_t upper;
bellard0ac4bd52004-01-04 15:44:17 +0000135 } l;
136#endif
137 uint64_t ll;
138} CPU_DoubleU;
139
Aurelien Jarno602308f2011-04-14 00:49:29 +0200140typedef union {
141 floatx80 d;
142 struct {
143 uint64_t lower;
144 uint16_t upper;
145 } l;
146} CPU_LDoubleU;
Aurelien Jarno602308f2011-04-14 00:49:29 +0200147
blueswir11f587322007-11-25 18:40:20 +0000148typedef union {
149 float128 q;
Peter Maydellc8f930c2011-04-04 12:09:22 +0100150#if defined(HOST_WORDS_BIGENDIAN)
blueswir11f587322007-11-25 18:40:20 +0000151 struct {
152 uint32_t upmost;
153 uint32_t upper;
154 uint32_t lower;
155 uint32_t lowest;
156 } l;
157 struct {
158 uint64_t upper;
159 uint64_t lower;
160 } ll;
161#else
162 struct {
163 uint32_t lowest;
164 uint32_t lower;
165 uint32_t upper;
166 uint32_t upmost;
167 } l;
168 struct {
169 uint64_t lower;
170 uint64_t upper;
171 } ll;
172#endif
173} CPU_QuadU;
blueswir11f587322007-11-25 18:40:20 +0000174
bellard61382a52003-10-27 21:22:23 +0000175/* CPU memory access without any memory or io remapping */
176
bellard83d73962004-02-22 11:53:50 +0000177/*
178 * the generic syntax for the memory accesses is:
179 *
180 * load: ld{type}{sign}{size}{endian}_{access_type}(ptr)
181 *
182 * store: st{type}{size}{endian}_{access_type}(ptr, val)
183 *
184 * type is:
185 * (empty): integer access
186 * f : float access
ths5fafdf22007-09-16 21:08:06 +0000187 *
bellard83d73962004-02-22 11:53:50 +0000188 * sign is:
189 * (empty): for floats or 32 bit size
190 * u : unsigned
191 * s : signed
192 *
193 * size is:
194 * b: 8 bits
195 * w: 16 bits
196 * l: 32 bits
197 * q: 64 bits
ths5fafdf22007-09-16 21:08:06 +0000198 *
bellard83d73962004-02-22 11:53:50 +0000199 * endian is:
200 * (empty): target cpu endianness or 8 bit access
201 * r : reversed target cpu endianness (not implemented yet)
202 * be : big endian (not implemented yet)
203 * le : little endian (not implemented yet)
204 *
205 * access_type is:
206 * raw : host memory access
207 * user : user mode access using soft MMU
208 * kernel : kernel mode access using soft MMU
209 */
balrog8bba3ea2008-12-07 23:44:44 +0000210static inline int ldub_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000211{
212 return *(uint8_t *)ptr;
213}
214
balrog8bba3ea2008-12-07 23:44:44 +0000215static inline int ldsb_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000216{
217 return *(int8_t *)ptr;
218}
219
bellardc27004e2005-01-03 23:35:10 +0000220static inline void stb_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000221{
222 *(uint8_t *)ptr = v;
223}
224
225/* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the
226 kernel handles unaligned load/stores may give better results, but
227 it is a system wide setting : bad */
Juan Quintelae2542fe2009-07-27 16:13:06 +0200228#if defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
bellard5a9fdfe2003-06-15 20:02:25 +0000229
230/* conservative code for little endian unaligned accesses */
balrog8bba3ea2008-12-07 23:44:44 +0000231static inline int lduw_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000232{
malce58ffeb2009-01-14 18:39:49 +0000233#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000234 int val;
235 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
236 return val;
237#else
malce01fe6d2008-12-11 00:14:30 +0000238 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000239 return p[0] | (p[1] << 8);
240#endif
241}
242
balrog8bba3ea2008-12-07 23:44:44 +0000243static inline int ldsw_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000244{
malce58ffeb2009-01-14 18:39:49 +0000245#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000246 int val;
247 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
248 return (int16_t)val;
249#else
malce01fe6d2008-12-11 00:14:30 +0000250 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000251 return (int16_t)(p[0] | (p[1] << 8));
252#endif
253}
254
balrog8bba3ea2008-12-07 23:44:44 +0000255static inline int ldl_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000256{
malce58ffeb2009-01-14 18:39:49 +0000257#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000258 int val;
259 __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (ptr));
260 return val;
261#else
malce01fe6d2008-12-11 00:14:30 +0000262 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000263 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
264#endif
265}
266
balrog8bba3ea2008-12-07 23:44:44 +0000267static inline uint64_t ldq_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000268{
malce01fe6d2008-12-11 00:14:30 +0000269 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000270 uint32_t v1, v2;
bellardf0aca822005-11-21 23:22:06 +0000271 v1 = ldl_le_p(p);
272 v2 = ldl_le_p(p + 4);
bellard5a9fdfe2003-06-15 20:02:25 +0000273 return v1 | ((uint64_t)v2 << 32);
274}
275
bellard2df3b952005-11-19 17:47:39 +0000276static inline void stw_le_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000277{
malce58ffeb2009-01-14 18:39:49 +0000278#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000279 __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr) : "r" (v), "r" (ptr));
280#else
281 uint8_t *p = ptr;
282 p[0] = v;
283 p[1] = v >> 8;
284#endif
285}
286
bellard2df3b952005-11-19 17:47:39 +0000287static inline void stl_le_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000288{
malce58ffeb2009-01-14 18:39:49 +0000289#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000290 __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr) : "r" (v), "r" (ptr));
291#else
292 uint8_t *p = ptr;
293 p[0] = v;
294 p[1] = v >> 8;
295 p[2] = v >> 16;
296 p[3] = v >> 24;
297#endif
298}
299
bellard2df3b952005-11-19 17:47:39 +0000300static inline void stq_le_p(void *ptr, uint64_t v)
bellard5a9fdfe2003-06-15 20:02:25 +0000301{
302 uint8_t *p = ptr;
bellardf0aca822005-11-21 23:22:06 +0000303 stl_le_p(p, (uint32_t)v);
304 stl_le_p(p + 4, v >> 32);
bellard5a9fdfe2003-06-15 20:02:25 +0000305}
306
307/* float access */
308
balrog8bba3ea2008-12-07 23:44:44 +0000309static inline float32 ldfl_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000310{
311 union {
bellard53cd6632005-03-13 18:50:23 +0000312 float32 f;
bellard5a9fdfe2003-06-15 20:02:25 +0000313 uint32_t i;
314 } u;
bellard2df3b952005-11-19 17:47:39 +0000315 u.i = ldl_le_p(ptr);
bellard5a9fdfe2003-06-15 20:02:25 +0000316 return u.f;
317}
318
bellard2df3b952005-11-19 17:47:39 +0000319static inline void stfl_le_p(void *ptr, float32 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000320{
321 union {
bellard53cd6632005-03-13 18:50:23 +0000322 float32 f;
bellard5a9fdfe2003-06-15 20:02:25 +0000323 uint32_t i;
324 } u;
325 u.f = v;
bellard2df3b952005-11-19 17:47:39 +0000326 stl_le_p(ptr, u.i);
bellard5a9fdfe2003-06-15 20:02:25 +0000327}
328
balrog8bba3ea2008-12-07 23:44:44 +0000329static inline float64 ldfq_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000330{
bellard0ac4bd52004-01-04 15:44:17 +0000331 CPU_DoubleU u;
bellard2df3b952005-11-19 17:47:39 +0000332 u.l.lower = ldl_le_p(ptr);
333 u.l.upper = ldl_le_p(ptr + 4);
bellard5a9fdfe2003-06-15 20:02:25 +0000334 return u.d;
335}
336
bellard2df3b952005-11-19 17:47:39 +0000337static inline void stfq_le_p(void *ptr, float64 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000338{
bellard0ac4bd52004-01-04 15:44:17 +0000339 CPU_DoubleU u;
bellard5a9fdfe2003-06-15 20:02:25 +0000340 u.d = v;
bellard2df3b952005-11-19 17:47:39 +0000341 stl_le_p(ptr, u.l.lower);
342 stl_le_p(ptr + 4, u.l.upper);
bellard5a9fdfe2003-06-15 20:02:25 +0000343}
344
bellard2df3b952005-11-19 17:47:39 +0000345#else
bellard93ac68b2003-09-30 20:57:29 +0000346
balrog8bba3ea2008-12-07 23:44:44 +0000347static inline int lduw_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000348{
349 return *(uint16_t *)ptr;
350}
351
balrog8bba3ea2008-12-07 23:44:44 +0000352static inline int ldsw_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000353{
354 return *(int16_t *)ptr;
355}
356
balrog8bba3ea2008-12-07 23:44:44 +0000357static inline int ldl_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000358{
359 return *(uint32_t *)ptr;
360}
361
balrog8bba3ea2008-12-07 23:44:44 +0000362static inline uint64_t ldq_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000363{
364 return *(uint64_t *)ptr;
365}
366
367static inline void stw_le_p(void *ptr, int v)
368{
369 *(uint16_t *)ptr = v;
370}
371
372static inline void stl_le_p(void *ptr, int v)
373{
374 *(uint32_t *)ptr = v;
375}
376
377static inline void stq_le_p(void *ptr, uint64_t v)
378{
379 *(uint64_t *)ptr = v;
380}
381
382/* float access */
383
balrog8bba3ea2008-12-07 23:44:44 +0000384static inline float32 ldfl_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000385{
386 return *(float32 *)ptr;
387}
388
balrog8bba3ea2008-12-07 23:44:44 +0000389static inline float64 ldfq_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000390{
391 return *(float64 *)ptr;
392}
393
394static inline void stfl_le_p(void *ptr, float32 v)
395{
396 *(float32 *)ptr = v;
397}
398
399static inline void stfq_le_p(void *ptr, float64 v)
400{
401 *(float64 *)ptr = v;
402}
403#endif
404
Juan Quintelae2542fe2009-07-27 16:13:06 +0200405#if !defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
bellard2df3b952005-11-19 17:47:39 +0000406
balrog8bba3ea2008-12-07 23:44:44 +0000407static inline int lduw_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000408{
bellard83d73962004-02-22 11:53:50 +0000409#if defined(__i386__)
410 int val;
411 asm volatile ("movzwl %1, %0\n"
412 "xchgb %b0, %h0\n"
413 : "=q" (val)
414 : "m" (*(uint16_t *)ptr));
415 return val;
416#else
malce01fe6d2008-12-11 00:14:30 +0000417 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000418 return ((b[0] << 8) | b[1]);
419#endif
bellard93ac68b2003-09-30 20:57:29 +0000420}
421
balrog8bba3ea2008-12-07 23:44:44 +0000422static inline int ldsw_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000423{
bellard83d73962004-02-22 11:53:50 +0000424#if defined(__i386__)
425 int val;
426 asm volatile ("movzwl %1, %0\n"
427 "xchgb %b0, %h0\n"
428 : "=q" (val)
429 : "m" (*(uint16_t *)ptr));
430 return (int16_t)val;
431#else
malce01fe6d2008-12-11 00:14:30 +0000432 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000433 return (int16_t)((b[0] << 8) | b[1]);
434#endif
bellard93ac68b2003-09-30 20:57:29 +0000435}
436
balrog8bba3ea2008-12-07 23:44:44 +0000437static inline int ldl_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000438{
bellard4f2ac232004-04-26 19:44:02 +0000439#if defined(__i386__) || defined(__x86_64__)
bellard83d73962004-02-22 11:53:50 +0000440 int val;
441 asm volatile ("movl %1, %0\n"
442 "bswap %0\n"
443 : "=r" (val)
444 : "m" (*(uint32_t *)ptr));
445 return val;
446#else
malce01fe6d2008-12-11 00:14:30 +0000447 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000448 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
449#endif
bellard93ac68b2003-09-30 20:57:29 +0000450}
451
balrog8bba3ea2008-12-07 23:44:44 +0000452static inline uint64_t ldq_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000453{
454 uint32_t a,b;
bellard2df3b952005-11-19 17:47:39 +0000455 a = ldl_be_p(ptr);
blueswir14d7a0882008-05-10 10:14:22 +0000456 b = ldl_be_p((uint8_t *)ptr + 4);
bellard93ac68b2003-09-30 20:57:29 +0000457 return (((uint64_t)a<<32)|b);
458}
459
bellard2df3b952005-11-19 17:47:39 +0000460static inline void stw_be_p(void *ptr, int v)
bellard93ac68b2003-09-30 20:57:29 +0000461{
bellard83d73962004-02-22 11:53:50 +0000462#if defined(__i386__)
463 asm volatile ("xchgb %b0, %h0\n"
464 "movw %w0, %1\n"
465 : "=q" (v)
466 : "m" (*(uint16_t *)ptr), "0" (v));
467#else
bellard93ac68b2003-09-30 20:57:29 +0000468 uint8_t *d = (uint8_t *) ptr;
469 d[0] = v >> 8;
470 d[1] = v;
bellard83d73962004-02-22 11:53:50 +0000471#endif
bellard93ac68b2003-09-30 20:57:29 +0000472}
473
bellard2df3b952005-11-19 17:47:39 +0000474static inline void stl_be_p(void *ptr, int v)
bellard93ac68b2003-09-30 20:57:29 +0000475{
bellard4f2ac232004-04-26 19:44:02 +0000476#if defined(__i386__) || defined(__x86_64__)
bellard83d73962004-02-22 11:53:50 +0000477 asm volatile ("bswap %0\n"
478 "movl %0, %1\n"
479 : "=r" (v)
480 : "m" (*(uint32_t *)ptr), "0" (v));
481#else
bellard93ac68b2003-09-30 20:57:29 +0000482 uint8_t *d = (uint8_t *) ptr;
483 d[0] = v >> 24;
484 d[1] = v >> 16;
485 d[2] = v >> 8;
486 d[3] = v;
bellard83d73962004-02-22 11:53:50 +0000487#endif
bellard93ac68b2003-09-30 20:57:29 +0000488}
489
bellard2df3b952005-11-19 17:47:39 +0000490static inline void stq_be_p(void *ptr, uint64_t v)
bellard93ac68b2003-09-30 20:57:29 +0000491{
bellard2df3b952005-11-19 17:47:39 +0000492 stl_be_p(ptr, v >> 32);
blueswir14d7a0882008-05-10 10:14:22 +0000493 stl_be_p((uint8_t *)ptr + 4, v);
bellard0ac4bd52004-01-04 15:44:17 +0000494}
495
496/* float access */
497
balrog8bba3ea2008-12-07 23:44:44 +0000498static inline float32 ldfl_be_p(const void *ptr)
bellard0ac4bd52004-01-04 15:44:17 +0000499{
500 union {
bellard53cd6632005-03-13 18:50:23 +0000501 float32 f;
bellard0ac4bd52004-01-04 15:44:17 +0000502 uint32_t i;
503 } u;
bellard2df3b952005-11-19 17:47:39 +0000504 u.i = ldl_be_p(ptr);
bellard0ac4bd52004-01-04 15:44:17 +0000505 return u.f;
506}
507
bellard2df3b952005-11-19 17:47:39 +0000508static inline void stfl_be_p(void *ptr, float32 v)
bellard0ac4bd52004-01-04 15:44:17 +0000509{
510 union {
bellard53cd6632005-03-13 18:50:23 +0000511 float32 f;
bellard0ac4bd52004-01-04 15:44:17 +0000512 uint32_t i;
513 } u;
514 u.f = v;
bellard2df3b952005-11-19 17:47:39 +0000515 stl_be_p(ptr, u.i);
bellard0ac4bd52004-01-04 15:44:17 +0000516}
517
balrog8bba3ea2008-12-07 23:44:44 +0000518static inline float64 ldfq_be_p(const void *ptr)
bellard0ac4bd52004-01-04 15:44:17 +0000519{
520 CPU_DoubleU u;
bellard2df3b952005-11-19 17:47:39 +0000521 u.l.upper = ldl_be_p(ptr);
blueswir14d7a0882008-05-10 10:14:22 +0000522 u.l.lower = ldl_be_p((uint8_t *)ptr + 4);
bellard0ac4bd52004-01-04 15:44:17 +0000523 return u.d;
524}
525
bellard2df3b952005-11-19 17:47:39 +0000526static inline void stfq_be_p(void *ptr, float64 v)
bellard0ac4bd52004-01-04 15:44:17 +0000527{
528 CPU_DoubleU u;
529 u.d = v;
bellard2df3b952005-11-19 17:47:39 +0000530 stl_be_p(ptr, u.l.upper);
blueswir14d7a0882008-05-10 10:14:22 +0000531 stl_be_p((uint8_t *)ptr + 4, u.l.lower);
bellard93ac68b2003-09-30 20:57:29 +0000532}
533
bellard5a9fdfe2003-06-15 20:02:25 +0000534#else
535
balrog8bba3ea2008-12-07 23:44:44 +0000536static inline int lduw_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000537{
538 return *(uint16_t *)ptr;
539}
540
balrog8bba3ea2008-12-07 23:44:44 +0000541static inline int ldsw_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000542{
543 return *(int16_t *)ptr;
544}
545
balrog8bba3ea2008-12-07 23:44:44 +0000546static inline int ldl_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000547{
548 return *(uint32_t *)ptr;
549}
550
balrog8bba3ea2008-12-07 23:44:44 +0000551static inline uint64_t ldq_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000552{
553 return *(uint64_t *)ptr;
554}
555
bellard2df3b952005-11-19 17:47:39 +0000556static inline void stw_be_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000557{
558 *(uint16_t *)ptr = v;
559}
560
bellard2df3b952005-11-19 17:47:39 +0000561static inline void stl_be_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000562{
563 *(uint32_t *)ptr = v;
564}
565
bellard2df3b952005-11-19 17:47:39 +0000566static inline void stq_be_p(void *ptr, uint64_t v)
bellard5a9fdfe2003-06-15 20:02:25 +0000567{
568 *(uint64_t *)ptr = v;
569}
570
571/* float access */
572
balrog8bba3ea2008-12-07 23:44:44 +0000573static inline float32 ldfl_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000574{
bellard53cd6632005-03-13 18:50:23 +0000575 return *(float32 *)ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000576}
577
balrog8bba3ea2008-12-07 23:44:44 +0000578static inline float64 ldfq_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000579{
bellard53cd6632005-03-13 18:50:23 +0000580 return *(float64 *)ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000581}
582
bellard2df3b952005-11-19 17:47:39 +0000583static inline void stfl_be_p(void *ptr, float32 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000584{
bellard53cd6632005-03-13 18:50:23 +0000585 *(float32 *)ptr = v;
bellard5a9fdfe2003-06-15 20:02:25 +0000586}
587
bellard2df3b952005-11-19 17:47:39 +0000588static inline void stfq_be_p(void *ptr, float64 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000589{
bellard53cd6632005-03-13 18:50:23 +0000590 *(float64 *)ptr = v;
bellard5a9fdfe2003-06-15 20:02:25 +0000591}
bellard2df3b952005-11-19 17:47:39 +0000592
593#endif
594
595/* target CPU memory access functions */
596#if defined(TARGET_WORDS_BIGENDIAN)
597#define lduw_p(p) lduw_be_p(p)
598#define ldsw_p(p) ldsw_be_p(p)
599#define ldl_p(p) ldl_be_p(p)
600#define ldq_p(p) ldq_be_p(p)
601#define ldfl_p(p) ldfl_be_p(p)
602#define ldfq_p(p) ldfq_be_p(p)
603#define stw_p(p, v) stw_be_p(p, v)
604#define stl_p(p, v) stl_be_p(p, v)
605#define stq_p(p, v) stq_be_p(p, v)
606#define stfl_p(p, v) stfl_be_p(p, v)
607#define stfq_p(p, v) stfq_be_p(p, v)
608#else
609#define lduw_p(p) lduw_le_p(p)
610#define ldsw_p(p) ldsw_le_p(p)
611#define ldl_p(p) ldl_le_p(p)
612#define ldq_p(p) ldq_le_p(p)
613#define ldfl_p(p) ldfl_le_p(p)
614#define ldfq_p(p) ldfq_le_p(p)
615#define stw_p(p, v) stw_le_p(p, v)
616#define stl_p(p, v) stl_le_p(p, v)
617#define stq_p(p, v) stq_le_p(p, v)
618#define stfl_p(p, v) stfl_le_p(p, v)
619#define stfq_p(p, v) stfq_le_p(p, v)
bellard5a9fdfe2003-06-15 20:02:25 +0000620#endif
621
bellard61382a52003-10-27 21:22:23 +0000622/* MMU memory access macros */
623
pbrook53a59602006-03-25 19:31:22 +0000624#if defined(CONFIG_USER_ONLY)
aurel320e62fd72008-12-08 18:12:11 +0000625#include <assert.h>
626#include "qemu-types.h"
627
pbrook53a59602006-03-25 19:31:22 +0000628/* On some host systems the guest address space is reserved on the host.
629 * This allows the guest address space to be offset to a convenient location.
630 */
Paul Brook379f6692009-07-17 12:48:08 +0100631#if defined(CONFIG_USE_GUEST_BASE)
632extern unsigned long guest_base;
633extern int have_guest_base;
Paul Brook68a1c812010-05-29 02:27:35 +0100634extern unsigned long reserved_va;
Paul Brook379f6692009-07-17 12:48:08 +0100635#define GUEST_BASE guest_base
Aurelien Jarno18e9ea82010-07-30 21:09:10 +0200636#define RESERVED_VA reserved_va
Paul Brook379f6692009-07-17 12:48:08 +0100637#else
638#define GUEST_BASE 0ul
Aurelien Jarno18e9ea82010-07-30 21:09:10 +0200639#define RESERVED_VA 0ul
Paul Brook379f6692009-07-17 12:48:08 +0100640#endif
pbrook53a59602006-03-25 19:31:22 +0000641
642/* All direct uses of g2h and h2g need to go away for usermode softmmu. */
643#define g2h(x) ((void *)((unsigned long)(x) + GUEST_BASE))
Richard Hendersonb9f83122010-03-10 14:36:58 -0800644
645#if HOST_LONG_BITS <= TARGET_VIRT_ADDR_SPACE_BITS
646#define h2g_valid(x) 1
647#else
648#define h2g_valid(x) ({ \
649 unsigned long __guest = (unsigned long)(x) - GUEST_BASE; \
650 __guest < (1ul << TARGET_VIRT_ADDR_SPACE_BITS); \
651})
652#endif
653
aurel320e62fd72008-12-08 18:12:11 +0000654#define h2g(x) ({ \
655 unsigned long __ret = (unsigned long)(x) - GUEST_BASE; \
656 /* Check if given address fits target address space */ \
Richard Hendersonb9f83122010-03-10 14:36:58 -0800657 assert(h2g_valid(x)); \
aurel320e62fd72008-12-08 18:12:11 +0000658 (abi_ulong)__ret; \
659})
pbrook53a59602006-03-25 19:31:22 +0000660
661#define saddr(x) g2h(x)
662#define laddr(x) g2h(x)
663
664#else /* !CONFIG_USER_ONLY */
bellardc27004e2005-01-03 23:35:10 +0000665/* NOTE: we use double casts if pointers and target_ulong have
666 different sizes */
pbrook53a59602006-03-25 19:31:22 +0000667#define saddr(x) (uint8_t *)(long)(x)
668#define laddr(x) (uint8_t *)(long)(x)
669#endif
670
671#define ldub_raw(p) ldub_p(laddr((p)))
672#define ldsb_raw(p) ldsb_p(laddr((p)))
673#define lduw_raw(p) lduw_p(laddr((p)))
674#define ldsw_raw(p) ldsw_p(laddr((p)))
675#define ldl_raw(p) ldl_p(laddr((p)))
676#define ldq_raw(p) ldq_p(laddr((p)))
677#define ldfl_raw(p) ldfl_p(laddr((p)))
678#define ldfq_raw(p) ldfq_p(laddr((p)))
679#define stb_raw(p, v) stb_p(saddr((p)), v)
680#define stw_raw(p, v) stw_p(saddr((p)), v)
681#define stl_raw(p, v) stl_p(saddr((p)), v)
682#define stq_raw(p, v) stq_p(saddr((p)), v)
683#define stfl_raw(p, v) stfl_p(saddr((p)), v)
684#define stfq_raw(p, v) stfq_p(saddr((p)), v)
bellardc27004e2005-01-03 23:35:10 +0000685
686
ths5fafdf22007-09-16 21:08:06 +0000687#if defined(CONFIG_USER_ONLY)
bellard61382a52003-10-27 21:22:23 +0000688
689/* if user mode, no other memory access functions */
690#define ldub(p) ldub_raw(p)
691#define ldsb(p) ldsb_raw(p)
692#define lduw(p) lduw_raw(p)
693#define ldsw(p) ldsw_raw(p)
694#define ldl(p) ldl_raw(p)
695#define ldq(p) ldq_raw(p)
696#define ldfl(p) ldfl_raw(p)
697#define ldfq(p) ldfq_raw(p)
698#define stb(p, v) stb_raw(p, v)
699#define stw(p, v) stw_raw(p, v)
700#define stl(p, v) stl_raw(p, v)
701#define stq(p, v) stq_raw(p, v)
702#define stfl(p, v) stfl_raw(p, v)
703#define stfq(p, v) stfq_raw(p, v)
704
705#define ldub_code(p) ldub_raw(p)
706#define ldsb_code(p) ldsb_raw(p)
707#define lduw_code(p) lduw_raw(p)
708#define ldsw_code(p) ldsw_raw(p)
709#define ldl_code(p) ldl_raw(p)
j_mayerbc98a7e2007-04-04 07:55:12 +0000710#define ldq_code(p) ldq_raw(p)
bellard61382a52003-10-27 21:22:23 +0000711
712#define ldub_kernel(p) ldub_raw(p)
713#define ldsb_kernel(p) ldsb_raw(p)
714#define lduw_kernel(p) lduw_raw(p)
715#define ldsw_kernel(p) ldsw_raw(p)
716#define ldl_kernel(p) ldl_raw(p)
j_mayerbc98a7e2007-04-04 07:55:12 +0000717#define ldq_kernel(p) ldq_raw(p)
bellard0ac4bd52004-01-04 15:44:17 +0000718#define ldfl_kernel(p) ldfl_raw(p)
719#define ldfq_kernel(p) ldfq_raw(p)
bellard61382a52003-10-27 21:22:23 +0000720#define stb_kernel(p, v) stb_raw(p, v)
721#define stw_kernel(p, v) stw_raw(p, v)
722#define stl_kernel(p, v) stl_raw(p, v)
723#define stq_kernel(p, v) stq_raw(p, v)
bellard0ac4bd52004-01-04 15:44:17 +0000724#define stfl_kernel(p, v) stfl_raw(p, v)
725#define stfq_kernel(p, vt) stfq_raw(p, v)
bellard61382a52003-10-27 21:22:23 +0000726
727#endif /* defined(CONFIG_USER_ONLY) */
728
bellard5a9fdfe2003-06-15 20:02:25 +0000729/* page related stuff */
730
aurel3203875442008-04-22 20:45:18 +0000731#define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
bellard5a9fdfe2003-06-15 20:02:25 +0000732#define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1)
733#define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK)
734
pbrook53a59602006-03-25 19:31:22 +0000735/* ??? These should be the larger of unsigned long and target_ulong. */
bellard83fb7ad2004-07-05 21:25:26 +0000736extern unsigned long qemu_real_host_page_size;
737extern unsigned long qemu_host_page_bits;
738extern unsigned long qemu_host_page_size;
739extern unsigned long qemu_host_page_mask;
bellard5a9fdfe2003-06-15 20:02:25 +0000740
bellard83fb7ad2004-07-05 21:25:26 +0000741#define HOST_PAGE_ALIGN(addr) (((addr) + qemu_host_page_size - 1) & qemu_host_page_mask)
bellard5a9fdfe2003-06-15 20:02:25 +0000742
743/* same as PROT_xxx */
744#define PAGE_READ 0x0001
745#define PAGE_WRITE 0x0002
746#define PAGE_EXEC 0x0004
747#define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC)
748#define PAGE_VALID 0x0008
749/* original state of the write flag (used when tracking self-modifying
750 code */
ths5fafdf22007-09-16 21:08:06 +0000751#define PAGE_WRITE_ORG 0x0010
Paul Brook2e9a5712010-05-05 16:32:59 +0100752#if defined(CONFIG_BSD) && defined(CONFIG_USER_ONLY)
753/* FIXME: Code that sets/uses this is broken and needs to go away. */
balrog50a95692007-12-12 01:16:23 +0000754#define PAGE_RESERVED 0x0020
Paul Brook2e9a5712010-05-05 16:32:59 +0100755#endif
bellard5a9fdfe2003-06-15 20:02:25 +0000756
Paul Brookb480d9b2010-03-12 23:23:29 +0000757#if defined(CONFIG_USER_ONLY)
bellard5a9fdfe2003-06-15 20:02:25 +0000758void page_dump(FILE *f);
Richard Henderson5cd2c5b2010-03-10 15:53:37 -0800759
Paul Brookb480d9b2010-03-12 23:23:29 +0000760typedef int (*walk_memory_regions_fn)(void *, abi_ulong,
761 abi_ulong, unsigned long);
Richard Henderson5cd2c5b2010-03-10 15:53:37 -0800762int walk_memory_regions(void *, walk_memory_regions_fn);
763
pbrook53a59602006-03-25 19:31:22 +0000764int page_get_flags(target_ulong address);
765void page_set_flags(target_ulong start, target_ulong end, int flags);
ths3d97b402007-11-02 19:02:07 +0000766int page_check_range(target_ulong start, target_ulong len, int flags);
Paul Brookb480d9b2010-03-12 23:23:29 +0000767#endif
bellard5a9fdfe2003-06-15 20:02:25 +0000768
thsc5be9f02007-02-28 20:20:53 +0000769CPUState *cpu_copy(CPUState *env);
Glauber Costa950f1472009-06-09 12:15:18 -0400770CPUState *qemu_get_cpu(int cpu);
thsc5be9f02007-02-28 20:20:53 +0000771
Jan Kiszkaf5c848e2011-01-21 21:48:08 +0100772#define CPU_DUMP_CODE 0x00010000
773
Stefan Weil9a78eea2010-10-22 23:03:33 +0200774void cpu_dump_state(CPUState *env, FILE *f, fprintf_function cpu_fprintf,
bellard7fe48482004-10-09 18:08:01 +0000775 int flags);
Stefan Weil9a78eea2010-10-22 23:03:33 +0200776void cpu_dump_statistics(CPUState *env, FILE *f, fprintf_function cpu_fprintf,
777 int flags);
bellard7fe48482004-10-09 18:08:01 +0000778
malca5e50b22009-02-01 22:19:27 +0000779void QEMU_NORETURN cpu_abort(CPUState *env, const char *fmt, ...)
Stefan Weil2c80e422010-10-13 20:54:27 +0200780 GCC_FMT_ATTR(2, 3);
bellardf0aca822005-11-21 23:22:06 +0000781extern CPUState *first_cpu;
bellarde2f22892003-06-25 16:09:48 +0000782extern CPUState *cpu_single_env;
Paolo Bonzinidb1a4972010-03-10 11:38:55 +0100783
Richard Henderson9c762192011-05-04 13:34:24 -0700784/* Flags for use in ENV->INTERRUPT_PENDING.
785
786 The numbers assigned here are non-sequential in order to preserve
787 binary compatibility with the vmstate dump. Bit 0 (0x0001) was
788 previously used for CPU_INTERRUPT_EXIT, and is cleared when loading
789 the vmstate dump. */
790
791/* External hardware interrupt pending. This is typically used for
792 interrupts from devices. */
793#define CPU_INTERRUPT_HARD 0x0002
794
795/* Exit the current TB. This is typically used when some system-level device
796 makes some change to the memory mapping. E.g. the a20 line change. */
797#define CPU_INTERRUPT_EXITTB 0x0004
798
799/* Halt the CPU. */
800#define CPU_INTERRUPT_HALT 0x0020
801
802/* Debug event pending. */
803#define CPU_INTERRUPT_DEBUG 0x0080
804
805/* Several target-specific external hardware interrupts. Each target/cpu.h
806 should define proper names based on these defines. */
807#define CPU_INTERRUPT_TGT_EXT_0 0x0008
808#define CPU_INTERRUPT_TGT_EXT_1 0x0010
809#define CPU_INTERRUPT_TGT_EXT_2 0x0040
810#define CPU_INTERRUPT_TGT_EXT_3 0x0200
811#define CPU_INTERRUPT_TGT_EXT_4 0x1000
812
813/* Several target-specific internal interrupts. These differ from the
814 preceeding target-specific interrupts in that they are intended to
815 originate from within the cpu itself, typically in response to some
816 instruction being executed. These, therefore, are not masked while
817 single-stepping within the debugger. */
818#define CPU_INTERRUPT_TGT_INT_0 0x0100
819#define CPU_INTERRUPT_TGT_INT_1 0x0400
820#define CPU_INTERRUPT_TGT_INT_2 0x0800
821
822/* First unused bit: 0x2000. */
823
Richard Henderson3125f762011-05-04 13:34:25 -0700824/* The set of all bits that should be masked when single-stepping. */
825#define CPU_INTERRUPT_SSTEP_MASK \
826 (CPU_INTERRUPT_HARD \
827 | CPU_INTERRUPT_TGT_EXT_0 \
828 | CPU_INTERRUPT_TGT_EXT_1 \
829 | CPU_INTERRUPT_TGT_EXT_2 \
830 | CPU_INTERRUPT_TGT_EXT_3 \
831 | CPU_INTERRUPT_TGT_EXT_4)
bellard98699962005-11-26 10:29:22 +0000832
Jan Kiszkaec6959d2011-04-13 01:32:56 +0200833#ifndef CONFIG_USER_ONLY
834typedef void (*CPUInterruptHandler)(CPUState *, int);
835
836extern CPUInterruptHandler cpu_interrupt_handler;
837
838static inline void cpu_interrupt(CPUState *s, int mask)
839{
840 cpu_interrupt_handler(s, mask);
841}
842#else /* USER_ONLY */
843void cpu_interrupt(CPUState *env, int mask);
844#endif /* USER_ONLY */
845
bellardb54ad042004-05-20 13:42:52 +0000846void cpu_reset_interrupt(CPUState *env, int mask);
bellard68a79312003-06-30 13:12:32 +0000847
aurel323098dba2009-03-07 21:28:24 +0000848void cpu_exit(CPUState *s);
849
Blue Swirlf3e27032011-05-21 12:16:05 +0000850bool qemu_cpu_has_work(CPUState *env);
aliguori6a4955a2009-04-24 18:03:20 +0000851
aliguoria1d1bb32008-11-18 20:07:32 +0000852/* Breakpoint/watchpoint flags */
853#define BP_MEM_READ 0x01
854#define BP_MEM_WRITE 0x02
855#define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
aliguori06d55cc2008-11-18 20:24:06 +0000856#define BP_STOP_BEFORE_ACCESS 0x04
aliguori6e140f22008-11-18 20:37:55 +0000857#define BP_WATCHPOINT_HIT 0x08
aliguoria1d1bb32008-11-18 20:07:32 +0000858#define BP_GDB 0x10
aliguori2dc9f412008-11-18 20:56:59 +0000859#define BP_CPU 0x20
aliguoria1d1bb32008-11-18 20:07:32 +0000860
861int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags,
862 CPUBreakpoint **breakpoint);
863int cpu_breakpoint_remove(CPUState *env, target_ulong pc, int flags);
864void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint);
865void cpu_breakpoint_remove_all(CPUState *env, int mask);
866int cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len,
867 int flags, CPUWatchpoint **watchpoint);
868int cpu_watchpoint_remove(CPUState *env, target_ulong addr,
869 target_ulong len, int flags);
870void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint);
871void cpu_watchpoint_remove_all(CPUState *env, int mask);
edgar_igl60897d32008-05-09 08:25:14 +0000872
873#define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
874#define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
875#define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
876
bellardc33a3462003-07-29 20:50:33 +0000877void cpu_single_step(CPUState *env, int enabled);
bellardd95dc322004-06-20 12:35:26 +0000878void cpu_reset(CPUState *s);
Marcelo Tosatti3ae95012010-05-04 09:45:24 -0300879int cpu_is_stopped(CPUState *env);
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300880void run_on_cpu(CPUState *env, void (*func)(void *data), void *data);
bellard4c3a88a2003-07-26 12:06:08 +0000881
ths5fafdf22007-09-16 21:08:06 +0000882#define CPU_LOG_TB_OUT_ASM (1 << 0)
bellard9fddaa02004-05-21 12:59:32 +0000883#define CPU_LOG_TB_IN_ASM (1 << 1)
bellardf193c792004-03-21 17:06:25 +0000884#define CPU_LOG_TB_OP (1 << 2)
885#define CPU_LOG_TB_OP_OPT (1 << 3)
886#define CPU_LOG_INT (1 << 4)
887#define CPU_LOG_EXEC (1 << 5)
888#define CPU_LOG_PCALL (1 << 6)
bellardfd872592004-05-12 19:11:15 +0000889#define CPU_LOG_IOPORT (1 << 7)
bellard9fddaa02004-05-21 12:59:32 +0000890#define CPU_LOG_TB_CPU (1 << 8)
aliguorieca1bdf2009-01-26 19:54:31 +0000891#define CPU_LOG_RESET (1 << 9)
bellardf193c792004-03-21 17:06:25 +0000892
893/* define log items */
894typedef struct CPULogItem {
895 int mask;
896 const char *name;
897 const char *help;
898} CPULogItem;
899
blueswir1c7cd6a32008-10-02 18:27:46 +0000900extern const CPULogItem cpu_log_items[];
bellardf193c792004-03-21 17:06:25 +0000901
bellard34865132003-10-05 14:28:56 +0000902void cpu_set_log(int log_flags);
903void cpu_set_log_filename(const char *filename);
bellardf193c792004-03-21 17:06:25 +0000904int cpu_str_to_log_mask(const char *str);
bellard34865132003-10-05 14:28:56 +0000905
Paul Brookb3755a92010-03-12 16:54:58 +0000906#if !defined(CONFIG_USER_ONLY)
907
Paul Brook4fcc5622010-03-01 03:46:18 +0000908/* Return the physical page corresponding to a virtual one. Use it
909 only for debugging because no protection checks are done. Return -1
910 if no page found. */
911target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr);
912
bellard33417e72003-08-10 21:47:01 +0000913/* memory API */
914
bellardedf75d52004-01-04 17:43:30 +0000915extern int phys_ram_fd;
Anthony Liguoric227f092009-10-01 16:12:16 -0500916extern ram_addr_t ram_size;
Alex Williamsonf471a172010-06-11 11:11:42 -0600917
Huang Yingcd19cfa2011-03-02 08:56:19 +0100918/* RAM is pre-allocated and passed into qemu_ram_alloc_from_ptr */
919#define RAM_PREALLOC_MASK (1 << 0)
920
Alex Williamsonf471a172010-06-11 11:11:42 -0600921typedef struct RAMBlock {
922 uint8_t *host;
923 ram_addr_t offset;
924 ram_addr_t length;
Huang Yingcd19cfa2011-03-02 08:56:19 +0100925 uint32_t flags;
Alex Williamsoncc9e98c2010-06-25 11:09:43 -0600926 char idstr[256];
Alex Williamsonf471a172010-06-11 11:11:42 -0600927 QLIST_ENTRY(RAMBlock) next;
Alex Williamson04b16652010-07-02 11:13:17 -0600928#if defined(__linux__) && !defined(TARGET_S390X)
929 int fd;
930#endif
Alex Williamsonf471a172010-06-11 11:11:42 -0600931} RAMBlock;
932
933typedef struct RAMList {
934 uint8_t *phys_dirty;
Alex Williamsonf471a172010-06-11 11:11:42 -0600935 QLIST_HEAD(ram, RAMBlock) blocks;
936} RAMList;
937extern RAMList ram_list;
bellardedf75d52004-01-04 17:43:30 +0000938
Marcelo Tosattic9027602010-03-01 20:25:08 -0300939extern const char *mem_path;
940extern int mem_prealloc;
941
bellardedf75d52004-01-04 17:43:30 +0000942/* physical memory access */
pbrook0f459d12008-06-09 00:20:13 +0000943
944/* MMIO pages are identified by a combination of an IO device index and
945 3 flags. The ROMD code stores the page ram offset in iotlb entry,
946 so only a limited number of ids are avaiable. */
947
bellard98699962005-11-26 10:29:22 +0000948#define IO_MEM_NB_ENTRIES (1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT))
bellardedf75d52004-01-04 17:43:30 +0000949
pbrook0f459d12008-06-09 00:20:13 +0000950/* Flags stored in the low bits of the TLB virtual address. These are
951 defined so that fast path ram access is all zeros. */
952/* Zero if TLB entry is valid. */
953#define TLB_INVALID_MASK (1 << 3)
954/* Set if TLB entry references a clean RAM page. The iotlb entry will
955 contain the page physical address. */
956#define TLB_NOTDIRTY (1 << 4)
957/* Set if TLB entry is an IO callback. */
958#define TLB_MMIO (1 << 5)
959
aliguori74576192008-10-06 14:02:03 +0000960#define VGA_DIRTY_FLAG 0x01
961#define CODE_DIRTY_FLAG 0x02
aliguori74576192008-10-06 14:02:03 +0000962#define MIGRATION_DIRTY_FLAG 0x08
bellard0a962c02005-02-10 22:00:27 +0000963
bellard1ccde1c2004-02-06 19:46:14 +0000964/* read dirty bit (return 0 or 1) */
Anthony Liguoric227f092009-10-01 16:12:16 -0500965static inline int cpu_physical_memory_is_dirty(ram_addr_t addr)
bellard1ccde1c2004-02-06 19:46:14 +0000966{
Alex Williamsonf471a172010-06-11 11:11:42 -0600967 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
bellard0a962c02005-02-10 22:00:27 +0000968}
969
Yoshiaki Tamuraca39b462010-03-23 16:39:52 +0900970static inline int cpu_physical_memory_get_dirty_flags(ram_addr_t addr)
971{
Alex Williamsonf471a172010-06-11 11:11:42 -0600972 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
Yoshiaki Tamuraca39b462010-03-23 16:39:52 +0900973}
974
Anthony Liguoric227f092009-10-01 16:12:16 -0500975static inline int cpu_physical_memory_get_dirty(ram_addr_t addr,
bellard0a962c02005-02-10 22:00:27 +0000976 int dirty_flags)
977{
Alex Williamsonf471a172010-06-11 11:11:42 -0600978 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
bellard1ccde1c2004-02-06 19:46:14 +0000979}
980
Anthony Liguoric227f092009-10-01 16:12:16 -0500981static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
bellard1ccde1c2004-02-06 19:46:14 +0000982{
Alex Williamsonf471a172010-06-11 11:11:42 -0600983 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
bellard1ccde1c2004-02-06 19:46:14 +0000984}
985
Yoshiaki Tamuraca39b462010-03-23 16:39:52 +0900986static inline int cpu_physical_memory_set_dirty_flags(ram_addr_t addr,
987 int dirty_flags)
988{
Alex Williamsonf471a172010-06-11 11:11:42 -0600989 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
Yoshiaki Tamuraca39b462010-03-23 16:39:52 +0900990}
991
992static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
993 int length,
994 int dirty_flags)
995{
996 int i, mask, len;
997 uint8_t *p;
998
999 len = length >> TARGET_PAGE_BITS;
1000 mask = ~dirty_flags;
Alex Williamsonf471a172010-06-11 11:11:42 -06001001 p = ram_list.phys_dirty + (start >> TARGET_PAGE_BITS);
Yoshiaki Tamuraca39b462010-03-23 16:39:52 +09001002 for (i = 0; i < len; i++) {
1003 p[i] &= mask;
1004 }
1005}
1006
Anthony Liguoric227f092009-10-01 16:12:16 -05001007void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
bellard0a962c02005-02-10 22:00:27 +00001008 int dirty_flags);
bellard04c504c2005-08-21 09:24:50 +00001009void cpu_tlb_update_dirty(CPUState *env);
bellard1ccde1c2004-02-06 19:46:14 +00001010
aliguori74576192008-10-06 14:02:03 +00001011int cpu_physical_memory_set_dirty_tracking(int enable);
1012
1013int cpu_physical_memory_get_dirty_tracking(void);
1014
Anthony Liguoric227f092009-10-01 16:12:16 -05001015int cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr,
1016 target_phys_addr_t end_addr);
aliguori2bec46d2008-11-24 20:21:41 +00001017
Anthony PERARDe5896b12011-02-07 12:19:23 +01001018int cpu_physical_log_start(target_phys_addr_t start_addr,
1019 ram_addr_t size);
1020
1021int cpu_physical_log_stop(target_phys_addr_t start_addr,
1022 ram_addr_t size);
1023
Stefan Weil055403b2010-10-22 23:03:32 +02001024void dump_exec_info(FILE *f, fprintf_function cpu_fprintf);
Paul Brookb3755a92010-03-12 16:54:58 +00001025#endif /* !CONFIG_USER_ONLY */
1026
1027int cpu_memory_rw_debug(CPUState *env, target_ulong addr,
1028 uint8_t *buf, int len, int is_write);
1029
bellard5a9fdfe2003-06-15 20:02:25 +00001030#endif /* CPU_ALL_H */