blob: b23be60945d2eb93899da808b9e48da80e1cd6be [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
17 * License along with this library; if not, write to the Free Software
aurel32fad6cb12009-01-04 22:05:52 +000018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
bellard5a9fdfe2003-06-15 20:02:25 +000019 */
20#ifndef CPU_ALL_H
21#define CPU_ALL_H
22
blueswir17d99a002009-01-14 19:00:36 +000023#include "qemu-common.h"
Paul Brook1ad21342009-05-19 16:17:58 +010024#include "cpu-common.h"
bellard0ac4bd52004-01-04 15:44:17 +000025
ths5fafdf22007-09-16 21:08:06 +000026/* some important defines:
27 *
bellard0ac4bd52004-01-04 15:44:17 +000028 * WORDS_ALIGNED : if defined, the host cpu can only make word aligned
29 * memory accesses.
ths5fafdf22007-09-16 21:08:06 +000030 *
bellard0ac4bd52004-01-04 15:44:17 +000031 * WORDS_BIGENDIAN : if defined, the host cpu is big endian and
32 * otherwise little endian.
ths5fafdf22007-09-16 21:08:06 +000033 *
bellard0ac4bd52004-01-04 15:44:17 +000034 * (TARGET_WORDS_ALIGNED : same for target cpu (not supported yet))
ths5fafdf22007-09-16 21:08:06 +000035 *
bellard0ac4bd52004-01-04 15:44:17 +000036 * TARGET_WORDS_BIGENDIAN : same for target cpu
37 */
38
aurel32939ef592008-05-09 18:45:47 +000039#include "softfloat.h"
bellardf193c792004-03-21 17:06:25 +000040
41#if defined(WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN)
42#define BSWAP_NEEDED
43#endif
44
45#ifdef BSWAP_NEEDED
46
47static inline uint16_t tswap16(uint16_t s)
48{
49 return bswap16(s);
50}
51
52static inline uint32_t tswap32(uint32_t s)
53{
54 return bswap32(s);
55}
56
57static inline uint64_t tswap64(uint64_t s)
58{
59 return bswap64(s);
60}
61
62static inline void tswap16s(uint16_t *s)
63{
64 *s = bswap16(*s);
65}
66
67static inline void tswap32s(uint32_t *s)
68{
69 *s = bswap32(*s);
70}
71
72static inline void tswap64s(uint64_t *s)
73{
74 *s = bswap64(*s);
75}
76
77#else
78
79static inline uint16_t tswap16(uint16_t s)
80{
81 return s;
82}
83
84static inline uint32_t tswap32(uint32_t s)
85{
86 return s;
87}
88
89static inline uint64_t tswap64(uint64_t s)
90{
91 return s;
92}
93
94static inline void tswap16s(uint16_t *s)
95{
96}
97
98static inline void tswap32s(uint32_t *s)
99{
100}
101
102static inline void tswap64s(uint64_t *s)
103{
104}
105
106#endif
107
108#if TARGET_LONG_SIZE == 4
109#define tswapl(s) tswap32(s)
110#define tswapls(s) tswap32s((uint32_t *)(s))
bellard0a962c02005-02-10 22:00:27 +0000111#define bswaptls(s) bswap32s(s)
bellardf193c792004-03-21 17:06:25 +0000112#else
113#define tswapl(s) tswap64(s)
114#define tswapls(s) tswap64s((uint64_t *)(s))
bellard0a962c02005-02-10 22:00:27 +0000115#define bswaptls(s) bswap64s(s)
bellardf193c792004-03-21 17:06:25 +0000116#endif
117
aurel320ca9d382008-03-13 19:19:16 +0000118typedef union {
119 float32 f;
120 uint32_t l;
121} CPU_FloatU;
122
bellard832ed0f2005-02-07 12:35:16 +0000123/* NOTE: arm FPA is horrible as double 32 bit words are stored in big
124 endian ! */
bellard0ac4bd52004-01-04 15:44:17 +0000125typedef union {
bellard53cd6632005-03-13 18:50:23 +0000126 float64 d;
bellard9d60cac2005-04-07 19:55:52 +0000127#if defined(WORDS_BIGENDIAN) \
128 || (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT))
bellard0ac4bd52004-01-04 15:44:17 +0000129 struct {
bellard0ac4bd52004-01-04 15:44:17 +0000130 uint32_t upper;
bellard832ed0f2005-02-07 12:35:16 +0000131 uint32_t lower;
bellard0ac4bd52004-01-04 15:44:17 +0000132 } l;
133#else
134 struct {
bellard0ac4bd52004-01-04 15:44:17 +0000135 uint32_t lower;
bellard832ed0f2005-02-07 12:35:16 +0000136 uint32_t upper;
bellard0ac4bd52004-01-04 15:44:17 +0000137 } l;
138#endif
139 uint64_t ll;
140} CPU_DoubleU;
141
blueswir11f587322007-11-25 18:40:20 +0000142#ifdef TARGET_SPARC
143typedef union {
144 float128 q;
145#if defined(WORDS_BIGENDIAN) \
146 || (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT))
147 struct {
148 uint32_t upmost;
149 uint32_t upper;
150 uint32_t lower;
151 uint32_t lowest;
152 } l;
153 struct {
154 uint64_t upper;
155 uint64_t lower;
156 } ll;
157#else
158 struct {
159 uint32_t lowest;
160 uint32_t lower;
161 uint32_t upper;
162 uint32_t upmost;
163 } l;
164 struct {
165 uint64_t lower;
166 uint64_t upper;
167 } ll;
168#endif
169} CPU_QuadU;
170#endif
171
bellard61382a52003-10-27 21:22:23 +0000172/* CPU memory access without any memory or io remapping */
173
bellard83d73962004-02-22 11:53:50 +0000174/*
175 * the generic syntax for the memory accesses is:
176 *
177 * load: ld{type}{sign}{size}{endian}_{access_type}(ptr)
178 *
179 * store: st{type}{size}{endian}_{access_type}(ptr, val)
180 *
181 * type is:
182 * (empty): integer access
183 * f : float access
ths5fafdf22007-09-16 21:08:06 +0000184 *
bellard83d73962004-02-22 11:53:50 +0000185 * sign is:
186 * (empty): for floats or 32 bit size
187 * u : unsigned
188 * s : signed
189 *
190 * size is:
191 * b: 8 bits
192 * w: 16 bits
193 * l: 32 bits
194 * q: 64 bits
ths5fafdf22007-09-16 21:08:06 +0000195 *
bellard83d73962004-02-22 11:53:50 +0000196 * endian is:
197 * (empty): target cpu endianness or 8 bit access
198 * r : reversed target cpu endianness (not implemented yet)
199 * be : big endian (not implemented yet)
200 * le : little endian (not implemented yet)
201 *
202 * access_type is:
203 * raw : host memory access
204 * user : user mode access using soft MMU
205 * kernel : kernel mode access using soft MMU
206 */
balrog8bba3ea2008-12-07 23:44:44 +0000207static inline int ldub_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000208{
209 return *(uint8_t *)ptr;
210}
211
balrog8bba3ea2008-12-07 23:44:44 +0000212static inline int ldsb_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000213{
214 return *(int8_t *)ptr;
215}
216
bellardc27004e2005-01-03 23:35:10 +0000217static inline void stb_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000218{
219 *(uint8_t *)ptr = v;
220}
221
222/* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the
223 kernel handles unaligned load/stores may give better results, but
224 it is a system wide setting : bad */
bellard2df3b952005-11-19 17:47:39 +0000225#if defined(WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
bellard5a9fdfe2003-06-15 20:02:25 +0000226
227/* conservative code for little endian unaligned accesses */
balrog8bba3ea2008-12-07 23:44:44 +0000228static inline int lduw_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000229{
malce58ffeb2009-01-14 18:39:49 +0000230#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000231 int val;
232 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
233 return val;
234#else
malce01fe6d2008-12-11 00:14:30 +0000235 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000236 return p[0] | (p[1] << 8);
237#endif
238}
239
balrog8bba3ea2008-12-07 23:44:44 +0000240static inline int ldsw_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000241{
malce58ffeb2009-01-14 18:39:49 +0000242#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000243 int val;
244 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr));
245 return (int16_t)val;
246#else
malce01fe6d2008-12-11 00:14:30 +0000247 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000248 return (int16_t)(p[0] | (p[1] << 8));
249#endif
250}
251
balrog8bba3ea2008-12-07 23:44:44 +0000252static inline int ldl_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000253{
malce58ffeb2009-01-14 18:39:49 +0000254#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000255 int val;
256 __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (ptr));
257 return val;
258#else
malce01fe6d2008-12-11 00:14:30 +0000259 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000260 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
261#endif
262}
263
balrog8bba3ea2008-12-07 23:44:44 +0000264static inline uint64_t ldq_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000265{
malce01fe6d2008-12-11 00:14:30 +0000266 const uint8_t *p = ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000267 uint32_t v1, v2;
bellardf0aca822005-11-21 23:22:06 +0000268 v1 = ldl_le_p(p);
269 v2 = ldl_le_p(p + 4);
bellard5a9fdfe2003-06-15 20:02:25 +0000270 return v1 | ((uint64_t)v2 << 32);
271}
272
bellard2df3b952005-11-19 17:47:39 +0000273static inline void stw_le_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000274{
malce58ffeb2009-01-14 18:39:49 +0000275#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000276 __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr) : "r" (v), "r" (ptr));
277#else
278 uint8_t *p = ptr;
279 p[0] = v;
280 p[1] = v >> 8;
281#endif
282}
283
bellard2df3b952005-11-19 17:47:39 +0000284static inline void stl_le_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000285{
malce58ffeb2009-01-14 18:39:49 +0000286#ifdef _ARCH_PPC
bellard5a9fdfe2003-06-15 20:02:25 +0000287 __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr) : "r" (v), "r" (ptr));
288#else
289 uint8_t *p = ptr;
290 p[0] = v;
291 p[1] = v >> 8;
292 p[2] = v >> 16;
293 p[3] = v >> 24;
294#endif
295}
296
bellard2df3b952005-11-19 17:47:39 +0000297static inline void stq_le_p(void *ptr, uint64_t v)
bellard5a9fdfe2003-06-15 20:02:25 +0000298{
299 uint8_t *p = ptr;
bellardf0aca822005-11-21 23:22:06 +0000300 stl_le_p(p, (uint32_t)v);
301 stl_le_p(p + 4, v >> 32);
bellard5a9fdfe2003-06-15 20:02:25 +0000302}
303
304/* float access */
305
balrog8bba3ea2008-12-07 23:44:44 +0000306static inline float32 ldfl_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000307{
308 union {
bellard53cd6632005-03-13 18:50:23 +0000309 float32 f;
bellard5a9fdfe2003-06-15 20:02:25 +0000310 uint32_t i;
311 } u;
bellard2df3b952005-11-19 17:47:39 +0000312 u.i = ldl_le_p(ptr);
bellard5a9fdfe2003-06-15 20:02:25 +0000313 return u.f;
314}
315
bellard2df3b952005-11-19 17:47:39 +0000316static inline void stfl_le_p(void *ptr, float32 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000317{
318 union {
bellard53cd6632005-03-13 18:50:23 +0000319 float32 f;
bellard5a9fdfe2003-06-15 20:02:25 +0000320 uint32_t i;
321 } u;
322 u.f = v;
bellard2df3b952005-11-19 17:47:39 +0000323 stl_le_p(ptr, u.i);
bellard5a9fdfe2003-06-15 20:02:25 +0000324}
325
balrog8bba3ea2008-12-07 23:44:44 +0000326static inline float64 ldfq_le_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000327{
bellard0ac4bd52004-01-04 15:44:17 +0000328 CPU_DoubleU u;
bellard2df3b952005-11-19 17:47:39 +0000329 u.l.lower = ldl_le_p(ptr);
330 u.l.upper = ldl_le_p(ptr + 4);
bellard5a9fdfe2003-06-15 20:02:25 +0000331 return u.d;
332}
333
bellard2df3b952005-11-19 17:47:39 +0000334static inline void stfq_le_p(void *ptr, float64 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000335{
bellard0ac4bd52004-01-04 15:44:17 +0000336 CPU_DoubleU u;
bellard5a9fdfe2003-06-15 20:02:25 +0000337 u.d = v;
bellard2df3b952005-11-19 17:47:39 +0000338 stl_le_p(ptr, u.l.lower);
339 stl_le_p(ptr + 4, u.l.upper);
bellard5a9fdfe2003-06-15 20:02:25 +0000340}
341
bellard2df3b952005-11-19 17:47:39 +0000342#else
bellard93ac68b2003-09-30 20:57:29 +0000343
balrog8bba3ea2008-12-07 23:44:44 +0000344static inline int lduw_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000345{
346 return *(uint16_t *)ptr;
347}
348
balrog8bba3ea2008-12-07 23:44:44 +0000349static inline int ldsw_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000350{
351 return *(int16_t *)ptr;
352}
353
balrog8bba3ea2008-12-07 23:44:44 +0000354static inline int ldl_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000355{
356 return *(uint32_t *)ptr;
357}
358
balrog8bba3ea2008-12-07 23:44:44 +0000359static inline uint64_t ldq_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000360{
361 return *(uint64_t *)ptr;
362}
363
364static inline void stw_le_p(void *ptr, int v)
365{
366 *(uint16_t *)ptr = v;
367}
368
369static inline void stl_le_p(void *ptr, int v)
370{
371 *(uint32_t *)ptr = v;
372}
373
374static inline void stq_le_p(void *ptr, uint64_t v)
375{
376 *(uint64_t *)ptr = v;
377}
378
379/* float access */
380
balrog8bba3ea2008-12-07 23:44:44 +0000381static inline float32 ldfl_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000382{
383 return *(float32 *)ptr;
384}
385
balrog8bba3ea2008-12-07 23:44:44 +0000386static inline float64 ldfq_le_p(const void *ptr)
bellard2df3b952005-11-19 17:47:39 +0000387{
388 return *(float64 *)ptr;
389}
390
391static inline void stfl_le_p(void *ptr, float32 v)
392{
393 *(float32 *)ptr = v;
394}
395
396static inline void stfq_le_p(void *ptr, float64 v)
397{
398 *(float64 *)ptr = v;
399}
400#endif
401
402#if !defined(WORDS_BIGENDIAN) || defined(WORDS_ALIGNED)
403
balrog8bba3ea2008-12-07 23:44:44 +0000404static inline int lduw_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000405{
bellard83d73962004-02-22 11:53:50 +0000406#if defined(__i386__)
407 int val;
408 asm volatile ("movzwl %1, %0\n"
409 "xchgb %b0, %h0\n"
410 : "=q" (val)
411 : "m" (*(uint16_t *)ptr));
412 return val;
413#else
malce01fe6d2008-12-11 00:14:30 +0000414 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000415 return ((b[0] << 8) | b[1]);
416#endif
bellard93ac68b2003-09-30 20:57:29 +0000417}
418
balrog8bba3ea2008-12-07 23:44:44 +0000419static inline int ldsw_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000420{
bellard83d73962004-02-22 11:53:50 +0000421#if defined(__i386__)
422 int val;
423 asm volatile ("movzwl %1, %0\n"
424 "xchgb %b0, %h0\n"
425 : "=q" (val)
426 : "m" (*(uint16_t *)ptr));
427 return (int16_t)val;
428#else
malce01fe6d2008-12-11 00:14:30 +0000429 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000430 return (int16_t)((b[0] << 8) | b[1]);
431#endif
bellard93ac68b2003-09-30 20:57:29 +0000432}
433
balrog8bba3ea2008-12-07 23:44:44 +0000434static inline int ldl_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000435{
bellard4f2ac232004-04-26 19:44:02 +0000436#if defined(__i386__) || defined(__x86_64__)
bellard83d73962004-02-22 11:53:50 +0000437 int val;
438 asm volatile ("movl %1, %0\n"
439 "bswap %0\n"
440 : "=r" (val)
441 : "m" (*(uint32_t *)ptr));
442 return val;
443#else
malce01fe6d2008-12-11 00:14:30 +0000444 const uint8_t *b = ptr;
bellard83d73962004-02-22 11:53:50 +0000445 return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3];
446#endif
bellard93ac68b2003-09-30 20:57:29 +0000447}
448
balrog8bba3ea2008-12-07 23:44:44 +0000449static inline uint64_t ldq_be_p(const void *ptr)
bellard93ac68b2003-09-30 20:57:29 +0000450{
451 uint32_t a,b;
bellard2df3b952005-11-19 17:47:39 +0000452 a = ldl_be_p(ptr);
blueswir14d7a0882008-05-10 10:14:22 +0000453 b = ldl_be_p((uint8_t *)ptr + 4);
bellard93ac68b2003-09-30 20:57:29 +0000454 return (((uint64_t)a<<32)|b);
455}
456
bellard2df3b952005-11-19 17:47:39 +0000457static inline void stw_be_p(void *ptr, int v)
bellard93ac68b2003-09-30 20:57:29 +0000458{
bellard83d73962004-02-22 11:53:50 +0000459#if defined(__i386__)
460 asm volatile ("xchgb %b0, %h0\n"
461 "movw %w0, %1\n"
462 : "=q" (v)
463 : "m" (*(uint16_t *)ptr), "0" (v));
464#else
bellard93ac68b2003-09-30 20:57:29 +0000465 uint8_t *d = (uint8_t *) ptr;
466 d[0] = v >> 8;
467 d[1] = v;
bellard83d73962004-02-22 11:53:50 +0000468#endif
bellard93ac68b2003-09-30 20:57:29 +0000469}
470
bellard2df3b952005-11-19 17:47:39 +0000471static inline void stl_be_p(void *ptr, int v)
bellard93ac68b2003-09-30 20:57:29 +0000472{
bellard4f2ac232004-04-26 19:44:02 +0000473#if defined(__i386__) || defined(__x86_64__)
bellard83d73962004-02-22 11:53:50 +0000474 asm volatile ("bswap %0\n"
475 "movl %0, %1\n"
476 : "=r" (v)
477 : "m" (*(uint32_t *)ptr), "0" (v));
478#else
bellard93ac68b2003-09-30 20:57:29 +0000479 uint8_t *d = (uint8_t *) ptr;
480 d[0] = v >> 24;
481 d[1] = v >> 16;
482 d[2] = v >> 8;
483 d[3] = v;
bellard83d73962004-02-22 11:53:50 +0000484#endif
bellard93ac68b2003-09-30 20:57:29 +0000485}
486
bellard2df3b952005-11-19 17:47:39 +0000487static inline void stq_be_p(void *ptr, uint64_t v)
bellard93ac68b2003-09-30 20:57:29 +0000488{
bellard2df3b952005-11-19 17:47:39 +0000489 stl_be_p(ptr, v >> 32);
blueswir14d7a0882008-05-10 10:14:22 +0000490 stl_be_p((uint8_t *)ptr + 4, v);
bellard0ac4bd52004-01-04 15:44:17 +0000491}
492
493/* float access */
494
balrog8bba3ea2008-12-07 23:44:44 +0000495static inline float32 ldfl_be_p(const void *ptr)
bellard0ac4bd52004-01-04 15:44:17 +0000496{
497 union {
bellard53cd6632005-03-13 18:50:23 +0000498 float32 f;
bellard0ac4bd52004-01-04 15:44:17 +0000499 uint32_t i;
500 } u;
bellard2df3b952005-11-19 17:47:39 +0000501 u.i = ldl_be_p(ptr);
bellard0ac4bd52004-01-04 15:44:17 +0000502 return u.f;
503}
504
bellard2df3b952005-11-19 17:47:39 +0000505static inline void stfl_be_p(void *ptr, float32 v)
bellard0ac4bd52004-01-04 15:44:17 +0000506{
507 union {
bellard53cd6632005-03-13 18:50:23 +0000508 float32 f;
bellard0ac4bd52004-01-04 15:44:17 +0000509 uint32_t i;
510 } u;
511 u.f = v;
bellard2df3b952005-11-19 17:47:39 +0000512 stl_be_p(ptr, u.i);
bellard0ac4bd52004-01-04 15:44:17 +0000513}
514
balrog8bba3ea2008-12-07 23:44:44 +0000515static inline float64 ldfq_be_p(const void *ptr)
bellard0ac4bd52004-01-04 15:44:17 +0000516{
517 CPU_DoubleU u;
bellard2df3b952005-11-19 17:47:39 +0000518 u.l.upper = ldl_be_p(ptr);
blueswir14d7a0882008-05-10 10:14:22 +0000519 u.l.lower = ldl_be_p((uint8_t *)ptr + 4);
bellard0ac4bd52004-01-04 15:44:17 +0000520 return u.d;
521}
522
bellard2df3b952005-11-19 17:47:39 +0000523static inline void stfq_be_p(void *ptr, float64 v)
bellard0ac4bd52004-01-04 15:44:17 +0000524{
525 CPU_DoubleU u;
526 u.d = v;
bellard2df3b952005-11-19 17:47:39 +0000527 stl_be_p(ptr, u.l.upper);
blueswir14d7a0882008-05-10 10:14:22 +0000528 stl_be_p((uint8_t *)ptr + 4, u.l.lower);
bellard93ac68b2003-09-30 20:57:29 +0000529}
530
bellard5a9fdfe2003-06-15 20:02:25 +0000531#else
532
balrog8bba3ea2008-12-07 23:44:44 +0000533static inline int lduw_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000534{
535 return *(uint16_t *)ptr;
536}
537
balrog8bba3ea2008-12-07 23:44:44 +0000538static inline int ldsw_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000539{
540 return *(int16_t *)ptr;
541}
542
balrog8bba3ea2008-12-07 23:44:44 +0000543static inline int ldl_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000544{
545 return *(uint32_t *)ptr;
546}
547
balrog8bba3ea2008-12-07 23:44:44 +0000548static inline uint64_t ldq_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000549{
550 return *(uint64_t *)ptr;
551}
552
bellard2df3b952005-11-19 17:47:39 +0000553static inline void stw_be_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000554{
555 *(uint16_t *)ptr = v;
556}
557
bellard2df3b952005-11-19 17:47:39 +0000558static inline void stl_be_p(void *ptr, int v)
bellard5a9fdfe2003-06-15 20:02:25 +0000559{
560 *(uint32_t *)ptr = v;
561}
562
bellard2df3b952005-11-19 17:47:39 +0000563static inline void stq_be_p(void *ptr, uint64_t v)
bellard5a9fdfe2003-06-15 20:02:25 +0000564{
565 *(uint64_t *)ptr = v;
566}
567
568/* float access */
569
balrog8bba3ea2008-12-07 23:44:44 +0000570static inline float32 ldfl_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000571{
bellard53cd6632005-03-13 18:50:23 +0000572 return *(float32 *)ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000573}
574
balrog8bba3ea2008-12-07 23:44:44 +0000575static inline float64 ldfq_be_p(const void *ptr)
bellard5a9fdfe2003-06-15 20:02:25 +0000576{
bellard53cd6632005-03-13 18:50:23 +0000577 return *(float64 *)ptr;
bellard5a9fdfe2003-06-15 20:02:25 +0000578}
579
bellard2df3b952005-11-19 17:47:39 +0000580static inline void stfl_be_p(void *ptr, float32 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000581{
bellard53cd6632005-03-13 18:50:23 +0000582 *(float32 *)ptr = v;
bellard5a9fdfe2003-06-15 20:02:25 +0000583}
584
bellard2df3b952005-11-19 17:47:39 +0000585static inline void stfq_be_p(void *ptr, float64 v)
bellard5a9fdfe2003-06-15 20:02:25 +0000586{
bellard53cd6632005-03-13 18:50:23 +0000587 *(float64 *)ptr = v;
bellard5a9fdfe2003-06-15 20:02:25 +0000588}
bellard2df3b952005-11-19 17:47:39 +0000589
590#endif
591
592/* target CPU memory access functions */
593#if defined(TARGET_WORDS_BIGENDIAN)
594#define lduw_p(p) lduw_be_p(p)
595#define ldsw_p(p) ldsw_be_p(p)
596#define ldl_p(p) ldl_be_p(p)
597#define ldq_p(p) ldq_be_p(p)
598#define ldfl_p(p) ldfl_be_p(p)
599#define ldfq_p(p) ldfq_be_p(p)
600#define stw_p(p, v) stw_be_p(p, v)
601#define stl_p(p, v) stl_be_p(p, v)
602#define stq_p(p, v) stq_be_p(p, v)
603#define stfl_p(p, v) stfl_be_p(p, v)
604#define stfq_p(p, v) stfq_be_p(p, v)
605#else
606#define lduw_p(p) lduw_le_p(p)
607#define ldsw_p(p) ldsw_le_p(p)
608#define ldl_p(p) ldl_le_p(p)
609#define ldq_p(p) ldq_le_p(p)
610#define ldfl_p(p) ldfl_le_p(p)
611#define ldfq_p(p) ldfq_le_p(p)
612#define stw_p(p, v) stw_le_p(p, v)
613#define stl_p(p, v) stl_le_p(p, v)
614#define stq_p(p, v) stq_le_p(p, v)
615#define stfl_p(p, v) stfl_le_p(p, v)
616#define stfq_p(p, v) stfq_le_p(p, v)
bellard5a9fdfe2003-06-15 20:02:25 +0000617#endif
618
bellard61382a52003-10-27 21:22:23 +0000619/* MMU memory access macros */
620
pbrook53a59602006-03-25 19:31:22 +0000621#if defined(CONFIG_USER_ONLY)
aurel320e62fd72008-12-08 18:12:11 +0000622#include <assert.h>
623#include "qemu-types.h"
624
pbrook53a59602006-03-25 19:31:22 +0000625/* On some host systems the guest address space is reserved on the host.
626 * This allows the guest address space to be offset to a convenient location.
627 */
628//#define GUEST_BASE 0x20000000
629#define GUEST_BASE 0
630
631/* All direct uses of g2h and h2g need to go away for usermode softmmu. */
632#define g2h(x) ((void *)((unsigned long)(x) + GUEST_BASE))
aurel320e62fd72008-12-08 18:12:11 +0000633#define h2g(x) ({ \
634 unsigned long __ret = (unsigned long)(x) - GUEST_BASE; \
635 /* Check if given address fits target address space */ \
636 assert(__ret == (abi_ulong)__ret); \
637 (abi_ulong)__ret; \
638})
aurel3214cc46b2008-12-08 18:12:18 +0000639#define h2g_valid(x) ({ \
640 unsigned long __guest = (unsigned long)(x) - GUEST_BASE; \
641 (__guest == (abi_ulong)__guest); \
642})
pbrook53a59602006-03-25 19:31:22 +0000643
644#define saddr(x) g2h(x)
645#define laddr(x) g2h(x)
646
647#else /* !CONFIG_USER_ONLY */
bellardc27004e2005-01-03 23:35:10 +0000648/* NOTE: we use double casts if pointers and target_ulong have
649 different sizes */
pbrook53a59602006-03-25 19:31:22 +0000650#define saddr(x) (uint8_t *)(long)(x)
651#define laddr(x) (uint8_t *)(long)(x)
652#endif
653
654#define ldub_raw(p) ldub_p(laddr((p)))
655#define ldsb_raw(p) ldsb_p(laddr((p)))
656#define lduw_raw(p) lduw_p(laddr((p)))
657#define ldsw_raw(p) ldsw_p(laddr((p)))
658#define ldl_raw(p) ldl_p(laddr((p)))
659#define ldq_raw(p) ldq_p(laddr((p)))
660#define ldfl_raw(p) ldfl_p(laddr((p)))
661#define ldfq_raw(p) ldfq_p(laddr((p)))
662#define stb_raw(p, v) stb_p(saddr((p)), v)
663#define stw_raw(p, v) stw_p(saddr((p)), v)
664#define stl_raw(p, v) stl_p(saddr((p)), v)
665#define stq_raw(p, v) stq_p(saddr((p)), v)
666#define stfl_raw(p, v) stfl_p(saddr((p)), v)
667#define stfq_raw(p, v) stfq_p(saddr((p)), v)
bellardc27004e2005-01-03 23:35:10 +0000668
669
ths5fafdf22007-09-16 21:08:06 +0000670#if defined(CONFIG_USER_ONLY)
bellard61382a52003-10-27 21:22:23 +0000671
672/* if user mode, no other memory access functions */
673#define ldub(p) ldub_raw(p)
674#define ldsb(p) ldsb_raw(p)
675#define lduw(p) lduw_raw(p)
676#define ldsw(p) ldsw_raw(p)
677#define ldl(p) ldl_raw(p)
678#define ldq(p) ldq_raw(p)
679#define ldfl(p) ldfl_raw(p)
680#define ldfq(p) ldfq_raw(p)
681#define stb(p, v) stb_raw(p, v)
682#define stw(p, v) stw_raw(p, v)
683#define stl(p, v) stl_raw(p, v)
684#define stq(p, v) stq_raw(p, v)
685#define stfl(p, v) stfl_raw(p, v)
686#define stfq(p, v) stfq_raw(p, v)
687
688#define ldub_code(p) ldub_raw(p)
689#define ldsb_code(p) ldsb_raw(p)
690#define lduw_code(p) lduw_raw(p)
691#define ldsw_code(p) ldsw_raw(p)
692#define ldl_code(p) ldl_raw(p)
j_mayerbc98a7e2007-04-04 07:55:12 +0000693#define ldq_code(p) ldq_raw(p)
bellard61382a52003-10-27 21:22:23 +0000694
695#define ldub_kernel(p) ldub_raw(p)
696#define ldsb_kernel(p) ldsb_raw(p)
697#define lduw_kernel(p) lduw_raw(p)
698#define ldsw_kernel(p) ldsw_raw(p)
699#define ldl_kernel(p) ldl_raw(p)
j_mayerbc98a7e2007-04-04 07:55:12 +0000700#define ldq_kernel(p) ldq_raw(p)
bellard0ac4bd52004-01-04 15:44:17 +0000701#define ldfl_kernel(p) ldfl_raw(p)
702#define ldfq_kernel(p) ldfq_raw(p)
bellard61382a52003-10-27 21:22:23 +0000703#define stb_kernel(p, v) stb_raw(p, v)
704#define stw_kernel(p, v) stw_raw(p, v)
705#define stl_kernel(p, v) stl_raw(p, v)
706#define stq_kernel(p, v) stq_raw(p, v)
bellard0ac4bd52004-01-04 15:44:17 +0000707#define stfl_kernel(p, v) stfl_raw(p, v)
708#define stfq_kernel(p, vt) stfq_raw(p, v)
bellard61382a52003-10-27 21:22:23 +0000709
710#endif /* defined(CONFIG_USER_ONLY) */
711
bellard5a9fdfe2003-06-15 20:02:25 +0000712/* page related stuff */
713
aurel3203875442008-04-22 20:45:18 +0000714#define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
bellard5a9fdfe2003-06-15 20:02:25 +0000715#define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1)
716#define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK)
717
pbrook53a59602006-03-25 19:31:22 +0000718/* ??? These should be the larger of unsigned long and target_ulong. */
bellard83fb7ad2004-07-05 21:25:26 +0000719extern unsigned long qemu_real_host_page_size;
720extern unsigned long qemu_host_page_bits;
721extern unsigned long qemu_host_page_size;
722extern unsigned long qemu_host_page_mask;
bellard5a9fdfe2003-06-15 20:02:25 +0000723
bellard83fb7ad2004-07-05 21:25:26 +0000724#define HOST_PAGE_ALIGN(addr) (((addr) + qemu_host_page_size - 1) & qemu_host_page_mask)
bellard5a9fdfe2003-06-15 20:02:25 +0000725
726/* same as PROT_xxx */
727#define PAGE_READ 0x0001
728#define PAGE_WRITE 0x0002
729#define PAGE_EXEC 0x0004
730#define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC)
731#define PAGE_VALID 0x0008
732/* original state of the write flag (used when tracking self-modifying
733 code */
ths5fafdf22007-09-16 21:08:06 +0000734#define PAGE_WRITE_ORG 0x0010
balrog50a95692007-12-12 01:16:23 +0000735#define PAGE_RESERVED 0x0020
bellard5a9fdfe2003-06-15 20:02:25 +0000736
737void page_dump(FILE *f);
pbrook53a59602006-03-25 19:31:22 +0000738int page_get_flags(target_ulong address);
739void page_set_flags(target_ulong start, target_ulong end, int flags);
ths3d97b402007-11-02 19:02:07 +0000740int page_check_range(target_ulong start, target_ulong len, int flags);
bellard5a9fdfe2003-06-15 20:02:25 +0000741
bellard26a5f132008-05-28 12:30:31 +0000742void cpu_exec_init_all(unsigned long tb_size);
thsc5be9f02007-02-28 20:20:53 +0000743CPUState *cpu_copy(CPUState *env);
744
ths5fafdf22007-09-16 21:08:06 +0000745void cpu_dump_state(CPUState *env, FILE *f,
bellard7fe48482004-10-09 18:08:01 +0000746 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
747 int flags);
j_mayer76a66252007-03-07 08:32:30 +0000748void cpu_dump_statistics (CPUState *env, FILE *f,
749 int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
750 int flags);
bellard7fe48482004-10-09 18:08:01 +0000751
malca5e50b22009-02-01 22:19:27 +0000752void QEMU_NORETURN cpu_abort(CPUState *env, const char *fmt, ...)
blueswir17d99a002009-01-14 19:00:36 +0000753 __attribute__ ((__format__ (__printf__, 2, 3)));
bellardf0aca822005-11-21 23:22:06 +0000754extern CPUState *first_cpu;
bellarde2f22892003-06-25 16:09:48 +0000755extern CPUState *cpu_single_env;
pbrook2e70f6e2008-06-29 01:03:05 +0000756extern int64_t qemu_icount;
757extern int use_icount;
bellard5a9fdfe2003-06-15 20:02:25 +0000758
bellard9acbed02004-02-16 21:57:02 +0000759#define CPU_INTERRUPT_HARD 0x02 /* hardware interrupt pending */
760#define CPU_INTERRUPT_EXITTB 0x04 /* exit the current TB (use for x86 a20 case) */
bellardef792f92004-05-17 20:19:32 +0000761#define CPU_INTERRUPT_TIMER 0x08 /* internal timer exception pending */
bellard98699962005-11-26 10:29:22 +0000762#define CPU_INTERRUPT_FIQ 0x10 /* Fast interrupt pending. */
bellardba3c64f2005-12-05 20:31:52 +0000763#define CPU_INTERRUPT_HALT 0x20 /* CPU halt wanted */
bellard3b21e032006-09-24 18:41:56 +0000764#define CPU_INTERRUPT_SMI 0x40 /* (x86 only) SMI interrupt pending */
pbrook6658ffb2007-03-16 23:58:11 +0000765#define CPU_INTERRUPT_DEBUG 0x80 /* Debug event occured. */
ths0573fbf2007-09-23 15:28:04 +0000766#define CPU_INTERRUPT_VIRQ 0x100 /* virtual interrupt pending. */
aurel32474ea842008-04-13 16:08:15 +0000767#define CPU_INTERRUPT_NMI 0x200 /* NMI pending. */
bellard98699962005-11-26 10:29:22 +0000768
bellard46907642003-07-07 12:17:46 +0000769void cpu_interrupt(CPUState *s, int mask);
bellardb54ad042004-05-20 13:42:52 +0000770void cpu_reset_interrupt(CPUState *env, int mask);
bellard68a79312003-06-30 13:12:32 +0000771
aurel323098dba2009-03-07 21:28:24 +0000772void cpu_exit(CPUState *s);
773
aliguori6a4955a2009-04-24 18:03:20 +0000774int qemu_cpu_has_work(CPUState *env);
775
aliguoria1d1bb32008-11-18 20:07:32 +0000776/* Breakpoint/watchpoint flags */
777#define BP_MEM_READ 0x01
778#define BP_MEM_WRITE 0x02
779#define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
aliguori06d55cc2008-11-18 20:24:06 +0000780#define BP_STOP_BEFORE_ACCESS 0x04
aliguori6e140f22008-11-18 20:37:55 +0000781#define BP_WATCHPOINT_HIT 0x08
aliguoria1d1bb32008-11-18 20:07:32 +0000782#define BP_GDB 0x10
aliguori2dc9f412008-11-18 20:56:59 +0000783#define BP_CPU 0x20
aliguoria1d1bb32008-11-18 20:07:32 +0000784
785int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags,
786 CPUBreakpoint **breakpoint);
787int cpu_breakpoint_remove(CPUState *env, target_ulong pc, int flags);
788void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint);
789void cpu_breakpoint_remove_all(CPUState *env, int mask);
790int cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len,
791 int flags, CPUWatchpoint **watchpoint);
792int cpu_watchpoint_remove(CPUState *env, target_ulong addr,
793 target_ulong len, int flags);
794void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint);
795void cpu_watchpoint_remove_all(CPUState *env, int mask);
edgar_igl60897d32008-05-09 08:25:14 +0000796
797#define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
798#define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
799#define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
800
bellardc33a3462003-07-29 20:50:33 +0000801void cpu_single_step(CPUState *env, int enabled);
bellardd95dc322004-06-20 12:35:26 +0000802void cpu_reset(CPUState *s);
bellard4c3a88a2003-07-26 12:06:08 +0000803
bellard13eb76e2004-01-24 15:23:36 +0000804/* Return the physical page corresponding to a virtual one. Use it
805 only for debugging because no protection checks are done. Return -1
806 if no page found. */
j_mayer9b3c35e2007-04-07 11:21:28 +0000807target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr);
bellard13eb76e2004-01-24 15:23:36 +0000808
ths5fafdf22007-09-16 21:08:06 +0000809#define CPU_LOG_TB_OUT_ASM (1 << 0)
bellard9fddaa02004-05-21 12:59:32 +0000810#define CPU_LOG_TB_IN_ASM (1 << 1)
bellardf193c792004-03-21 17:06:25 +0000811#define CPU_LOG_TB_OP (1 << 2)
812#define CPU_LOG_TB_OP_OPT (1 << 3)
813#define CPU_LOG_INT (1 << 4)
814#define CPU_LOG_EXEC (1 << 5)
815#define CPU_LOG_PCALL (1 << 6)
bellardfd872592004-05-12 19:11:15 +0000816#define CPU_LOG_IOPORT (1 << 7)
bellard9fddaa02004-05-21 12:59:32 +0000817#define CPU_LOG_TB_CPU (1 << 8)
aliguorieca1bdf2009-01-26 19:54:31 +0000818#define CPU_LOG_RESET (1 << 9)
bellardf193c792004-03-21 17:06:25 +0000819
820/* define log items */
821typedef struct CPULogItem {
822 int mask;
823 const char *name;
824 const char *help;
825} CPULogItem;
826
blueswir1c7cd6a32008-10-02 18:27:46 +0000827extern const CPULogItem cpu_log_items[];
bellardf193c792004-03-21 17:06:25 +0000828
bellard34865132003-10-05 14:28:56 +0000829void cpu_set_log(int log_flags);
830void cpu_set_log_filename(const char *filename);
bellardf193c792004-03-21 17:06:25 +0000831int cpu_str_to_log_mask(const char *str);
bellard34865132003-10-05 14:28:56 +0000832
bellard09683d32004-01-04 23:49:41 +0000833/* IO ports API */
834
835/* NOTE: as these functions may be even used when there is an isa
836 brige on non x86 targets, we always defined them */
837#ifndef NO_CPU_IO_DEFS
838void cpu_outb(CPUState *env, int addr, int val);
839void cpu_outw(CPUState *env, int addr, int val);
840void cpu_outl(CPUState *env, int addr, int val);
841int cpu_inb(CPUState *env, int addr);
842int cpu_inw(CPUState *env, int addr);
843int cpu_inl(CPUState *env, int addr);
844#endif
845
bellard33417e72003-08-10 21:47:01 +0000846/* memory API */
847
bellardedf75d52004-01-04 17:43:30 +0000848extern int phys_ram_fd;
bellard1ccde1c2004-02-06 19:46:14 +0000849extern uint8_t *phys_ram_dirty;
aurel3200f82b82008-04-27 21:12:55 +0000850extern ram_addr_t ram_size;
pbrook94a6b542009-04-11 17:15:54 +0000851extern ram_addr_t last_ram_offset;
bellardedf75d52004-01-04 17:43:30 +0000852
853/* physical memory access */
pbrook0f459d12008-06-09 00:20:13 +0000854
855/* MMIO pages are identified by a combination of an IO device index and
856 3 flags. The ROMD code stores the page ram offset in iotlb entry,
857 so only a limited number of ids are avaiable. */
858
bellard98699962005-11-26 10:29:22 +0000859#define IO_MEM_NB_ENTRIES (1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT))
bellardedf75d52004-01-04 17:43:30 +0000860
pbrook0f459d12008-06-09 00:20:13 +0000861/* Flags stored in the low bits of the TLB virtual address. These are
862 defined so that fast path ram access is all zeros. */
863/* Zero if TLB entry is valid. */
864#define TLB_INVALID_MASK (1 << 3)
865/* Set if TLB entry references a clean RAM page. The iotlb entry will
866 contain the page physical address. */
867#define TLB_NOTDIRTY (1 << 4)
868/* Set if TLB entry is an IO callback. */
869#define TLB_MMIO (1 << 5)
870
ths5fafdf22007-09-16 21:08:06 +0000871int cpu_memory_rw_debug(CPUState *env, target_ulong addr,
bellard8b1f24b2004-02-25 23:24:38 +0000872 uint8_t *buf, int len, int is_write);
bellard13eb76e2004-01-24 15:23:36 +0000873
aliguori74576192008-10-06 14:02:03 +0000874#define VGA_DIRTY_FLAG 0x01
875#define CODE_DIRTY_FLAG 0x02
876#define KQEMU_DIRTY_FLAG 0x04
877#define MIGRATION_DIRTY_FLAG 0x08
bellard0a962c02005-02-10 22:00:27 +0000878
bellard1ccde1c2004-02-06 19:46:14 +0000879/* read dirty bit (return 0 or 1) */
bellard04c504c2005-08-21 09:24:50 +0000880static inline int cpu_physical_memory_is_dirty(ram_addr_t addr)
bellard1ccde1c2004-02-06 19:46:14 +0000881{
bellard0a962c02005-02-10 22:00:27 +0000882 return phys_ram_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
883}
884
ths5fafdf22007-09-16 21:08:06 +0000885static inline int cpu_physical_memory_get_dirty(ram_addr_t addr,
bellard0a962c02005-02-10 22:00:27 +0000886 int dirty_flags)
887{
888 return phys_ram_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
bellard1ccde1c2004-02-06 19:46:14 +0000889}
890
bellard04c504c2005-08-21 09:24:50 +0000891static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
bellard1ccde1c2004-02-06 19:46:14 +0000892{
bellard0a962c02005-02-10 22:00:27 +0000893 phys_ram_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
bellard1ccde1c2004-02-06 19:46:14 +0000894}
895
bellard04c504c2005-08-21 09:24:50 +0000896void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
bellard0a962c02005-02-10 22:00:27 +0000897 int dirty_flags);
bellard04c504c2005-08-21 09:24:50 +0000898void cpu_tlb_update_dirty(CPUState *env);
bellard1ccde1c2004-02-06 19:46:14 +0000899
aliguori74576192008-10-06 14:02:03 +0000900int cpu_physical_memory_set_dirty_tracking(int enable);
901
902int cpu_physical_memory_get_dirty_tracking(void);
903
aliguori2bec46d2008-11-24 20:21:41 +0000904void cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr, target_phys_addr_t end_addr);
905
bellarde3db7222005-01-26 22:00:47 +0000906void dump_exec_info(FILE *f,
907 int (*cpu_fprintf)(FILE *f, const char *fmt, ...));
908
aliguorif65ed4c2008-12-09 20:09:57 +0000909/* Coalesced MMIO regions are areas where write operations can be reordered.
910 * This usually implies that write operations are side-effect free. This allows
911 * batching which can make a major impact on performance when using
912 * virtualization.
913 */
914void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
915
916void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
917
bellardeffedbc2006-07-13 23:00:40 +0000918/*******************************************/
919/* host CPU ticks (if available) */
920
malce58ffeb2009-01-14 18:39:49 +0000921#if defined(_ARCH_PPC)
bellardeffedbc2006-07-13 23:00:40 +0000922
bellardeffedbc2006-07-13 23:00:40 +0000923static inline int64_t cpu_get_real_ticks(void)
924{
malc5e10fc92009-01-25 10:56:48 +0000925 int64_t retval;
926#ifdef _ARCH_PPC64
927 /* This reads timebase in one 64bit go and includes Cell workaround from:
928 http://ozlabs.org/pipermail/linuxppc-dev/2006-October/027052.html
929 */
930 __asm__ __volatile__ (
931 "mftb %0\n\t"
932 "cmpwi %0,0\n\t"
933 "beq- $-8"
934 : "=r" (retval));
935#else
936 /* http://ozlabs.org/pipermail/linuxppc-dev/1999-October/003889.html */
937 unsigned long junk;
938 __asm__ __volatile__ (
939 "mftbu %1\n\t"
940 "mftb %L0\n\t"
941 "mftbu %0\n\t"
942 "cmpw %0,%1\n\t"
943 "bne $-16"
944 : "=r" (retval), "=r" (junk));
945#endif
946 return retval;
bellardeffedbc2006-07-13 23:00:40 +0000947}
948
949#elif defined(__i386__)
950
951static inline int64_t cpu_get_real_ticks(void)
bellard5f1ce942006-02-08 22:40:15 +0000952{
953 int64_t val;
954 asm volatile ("rdtsc" : "=A" (val));
955 return val;
956}
957
bellardeffedbc2006-07-13 23:00:40 +0000958#elif defined(__x86_64__)
959
960static inline int64_t cpu_get_real_ticks(void)
961{
962 uint32_t low,high;
963 int64_t val;
964 asm volatile("rdtsc" : "=a" (low), "=d" (high));
965 val = high;
966 val <<= 32;
967 val |= low;
968 return val;
969}
970
aurel32f54b3f92008-04-12 20:14:54 +0000971#elif defined(__hppa__)
972
973static inline int64_t cpu_get_real_ticks(void)
974{
975 int val;
976 asm volatile ("mfctl %%cr16, %0" : "=r"(val));
977 return val;
978}
979
bellardeffedbc2006-07-13 23:00:40 +0000980#elif defined(__ia64)
981
982static inline int64_t cpu_get_real_ticks(void)
983{
984 int64_t val;
985 asm volatile ("mov %0 = ar.itc" : "=r"(val) :: "memory");
986 return val;
987}
988
989#elif defined(__s390__)
990
991static inline int64_t cpu_get_real_ticks(void)
992{
993 int64_t val;
994 asm volatile("stck 0(%1)" : "=m" (val) : "a" (&val) : "cc");
995 return val;
996}
997
blueswir131422552007-04-16 18:27:06 +0000998#elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__)
bellardeffedbc2006-07-13 23:00:40 +0000999
1000static inline int64_t cpu_get_real_ticks (void)
1001{
1002#if defined(_LP64)
1003 uint64_t rval;
1004 asm volatile("rd %%tick,%0" : "=r"(rval));
1005 return rval;
1006#else
1007 union {
1008 uint64_t i64;
1009 struct {
1010 uint32_t high;
1011 uint32_t low;
1012 } i32;
1013 } rval;
1014 asm volatile("rd %%tick,%1; srlx %1,32,%0"
1015 : "=r"(rval.i32.high), "=r"(rval.i32.low));
1016 return rval.i64;
1017#endif
1018}
thsc4b89d12007-05-05 19:23:11 +00001019
1020#elif defined(__mips__)
1021
1022static inline int64_t cpu_get_real_ticks(void)
1023{
1024#if __mips_isa_rev >= 2
1025 uint32_t count;
1026 static uint32_t cyc_per_count = 0;
1027
1028 if (!cyc_per_count)
1029 __asm__ __volatile__("rdhwr %0, $3" : "=r" (cyc_per_count));
1030
1031 __asm__ __volatile__("rdhwr %1, $2" : "=r" (count));
1032 return (int64_t)(count * cyc_per_count);
1033#else
1034 /* FIXME */
1035 static int64_t ticks = 0;
1036 return ticks++;
1037#endif
1038}
1039
pbrook46152182006-07-30 19:16:29 +00001040#else
1041/* The host CPU doesn't have an easily accessible cycle counter.
ths85028e42007-05-08 22:51:41 +00001042 Just return a monotonically increasing value. This will be
1043 totally wrong, but hopefully better than nothing. */
pbrook46152182006-07-30 19:16:29 +00001044static inline int64_t cpu_get_real_ticks (void)
1045{
1046 static int64_t ticks = 0;
1047 return ticks++;
1048}
bellardeffedbc2006-07-13 23:00:40 +00001049#endif
1050
1051/* profiling */
1052#ifdef CONFIG_PROFILER
1053static inline int64_t profile_getclock(void)
1054{
1055 return cpu_get_real_ticks();
1056}
1057
bellard5f1ce942006-02-08 22:40:15 +00001058extern int64_t kqemu_time, kqemu_time_start;
1059extern int64_t qemu_time, qemu_time_start;
1060extern int64_t tlb_flush_time;
1061extern int64_t kqemu_exec_count;
1062extern int64_t dev_time;
1063extern int64_t kqemu_ret_int_count;
1064extern int64_t kqemu_ret_excp_count;
1065extern int64_t kqemu_ret_intr_count;
bellard5f1ce942006-02-08 22:40:15 +00001066#endif
1067
bellard5a9fdfe2003-06-15 20:02:25 +00001068#endif /* CPU_ALL_H */