]>
Commit | Line | Data |
---|---|---|
5a9fdfec FB |
1 | /* |
2 | * defines common to all virtual CPUs | |
5fafdf24 | 3 | * |
5a9fdfec FB |
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 | |
8167ee88 | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
5a9fdfec FB |
18 | */ |
19 | #ifndef CPU_ALL_H | |
20 | #define CPU_ALL_H | |
21 | ||
7d99a001 | 22 | #include "qemu-common.h" |
1ad2134f | 23 | #include "cpu-common.h" |
0ac4bd56 | 24 | |
5fafdf24 TS |
25 | /* some important defines: |
26 | * | |
0ac4bd56 FB |
27 | * WORDS_ALIGNED : if defined, the host cpu can only make word aligned |
28 | * memory accesses. | |
5fafdf24 | 29 | * |
e2542fe2 | 30 | * HOST_WORDS_BIGENDIAN : if defined, the host cpu is big endian and |
0ac4bd56 | 31 | * otherwise little endian. |
5fafdf24 | 32 | * |
0ac4bd56 | 33 | * (TARGET_WORDS_ALIGNED : same for target cpu (not supported yet)) |
5fafdf24 | 34 | * |
0ac4bd56 FB |
35 | * TARGET_WORDS_BIGENDIAN : same for target cpu |
36 | */ | |
37 | ||
939ef593 | 38 | #include "softfloat.h" |
f193c797 | 39 | |
e2542fe2 | 40 | #if defined(HOST_WORDS_BIGENDIAN) != defined(TARGET_WORDS_BIGENDIAN) |
f193c797 FB |
41 | #define BSWAP_NEEDED |
42 | #endif | |
43 | ||
44 | #ifdef BSWAP_NEEDED | |
45 | ||
46 | static inline uint16_t tswap16(uint16_t s) | |
47 | { | |
48 | return bswap16(s); | |
49 | } | |
50 | ||
51 | static inline uint32_t tswap32(uint32_t s) | |
52 | { | |
53 | return bswap32(s); | |
54 | } | |
55 | ||
56 | static inline uint64_t tswap64(uint64_t s) | |
57 | { | |
58 | return bswap64(s); | |
59 | } | |
60 | ||
61 | static inline void tswap16s(uint16_t *s) | |
62 | { | |
63 | *s = bswap16(*s); | |
64 | } | |
65 | ||
66 | static inline void tswap32s(uint32_t *s) | |
67 | { | |
68 | *s = bswap32(*s); | |
69 | } | |
70 | ||
71 | static inline void tswap64s(uint64_t *s) | |
72 | { | |
73 | *s = bswap64(*s); | |
74 | } | |
75 | ||
76 | #else | |
77 | ||
78 | static inline uint16_t tswap16(uint16_t s) | |
79 | { | |
80 | return s; | |
81 | } | |
82 | ||
83 | static inline uint32_t tswap32(uint32_t s) | |
84 | { | |
85 | return s; | |
86 | } | |
87 | ||
88 | static inline uint64_t tswap64(uint64_t s) | |
89 | { | |
90 | return s; | |
91 | } | |
92 | ||
93 | static inline void tswap16s(uint16_t *s) | |
94 | { | |
95 | } | |
96 | ||
97 | static inline void tswap32s(uint32_t *s) | |
98 | { | |
99 | } | |
100 | ||
101 | static 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)) | |
0a962c02 | 110 | #define bswaptls(s) bswap32s(s) |
f193c797 FB |
111 | #else |
112 | #define tswapl(s) tswap64(s) | |
113 | #define tswapls(s) tswap64s((uint64_t *)(s)) | |
0a962c02 | 114 | #define bswaptls(s) bswap64s(s) |
f193c797 FB |
115 | #endif |
116 | ||
0ca9d380 AJ |
117 | typedef union { |
118 | float32 f; | |
119 | uint32_t l; | |
120 | } CPU_FloatU; | |
121 | ||
832ed0fa FB |
122 | /* NOTE: arm FPA is horrible as double 32 bit words are stored in big |
123 | endian ! */ | |
0ac4bd56 | 124 | typedef union { |
53cd6637 | 125 | float64 d; |
e2542fe2 | 126 | #if defined(HOST_WORDS_BIGENDIAN) \ |
9d60cac0 | 127 | || (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT)) |
0ac4bd56 | 128 | struct { |
0ac4bd56 | 129 | uint32_t upper; |
832ed0fa | 130 | uint32_t lower; |
0ac4bd56 FB |
131 | } l; |
132 | #else | |
133 | struct { | |
0ac4bd56 | 134 | uint32_t lower; |
832ed0fa | 135 | uint32_t upper; |
0ac4bd56 FB |
136 | } l; |
137 | #endif | |
138 | uint64_t ll; | |
139 | } CPU_DoubleU; | |
140 | ||
1f587329 BS |
141 | #ifdef TARGET_SPARC |
142 | typedef union { | |
143 | float128 q; | |
e2542fe2 | 144 | #if defined(HOST_WORDS_BIGENDIAN) \ |
1f587329 BS |
145 | || (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT)) |
146 | struct { | |
147 | uint32_t upmost; | |
148 | uint32_t upper; | |
149 | uint32_t lower; | |
150 | uint32_t lowest; | |
151 | } l; | |
152 | struct { | |
153 | uint64_t upper; | |
154 | uint64_t lower; | |
155 | } ll; | |
156 | #else | |
157 | struct { | |
158 | uint32_t lowest; | |
159 | uint32_t lower; | |
160 | uint32_t upper; | |
161 | uint32_t upmost; | |
162 | } l; | |
163 | struct { | |
164 | uint64_t lower; | |
165 | uint64_t upper; | |
166 | } ll; | |
167 | #endif | |
168 | } CPU_QuadU; | |
169 | #endif | |
170 | ||
61382a50 FB |
171 | /* CPU memory access without any memory or io remapping */ |
172 | ||
83d73968 FB |
173 | /* |
174 | * the generic syntax for the memory accesses is: | |
175 | * | |
176 | * load: ld{type}{sign}{size}{endian}_{access_type}(ptr) | |
177 | * | |
178 | * store: st{type}{size}{endian}_{access_type}(ptr, val) | |
179 | * | |
180 | * type is: | |
181 | * (empty): integer access | |
182 | * f : float access | |
5fafdf24 | 183 | * |
83d73968 FB |
184 | * sign is: |
185 | * (empty): for floats or 32 bit size | |
186 | * u : unsigned | |
187 | * s : signed | |
188 | * | |
189 | * size is: | |
190 | * b: 8 bits | |
191 | * w: 16 bits | |
192 | * l: 32 bits | |
193 | * q: 64 bits | |
5fafdf24 | 194 | * |
83d73968 FB |
195 | * endian is: |
196 | * (empty): target cpu endianness or 8 bit access | |
197 | * r : reversed target cpu endianness (not implemented yet) | |
198 | * be : big endian (not implemented yet) | |
199 | * le : little endian (not implemented yet) | |
200 | * | |
201 | * access_type is: | |
202 | * raw : host memory access | |
203 | * user : user mode access using soft MMU | |
204 | * kernel : kernel mode access using soft MMU | |
205 | */ | |
8bba3ea1 | 206 | static inline int ldub_p(const void *ptr) |
5a9fdfec FB |
207 | { |
208 | return *(uint8_t *)ptr; | |
209 | } | |
210 | ||
8bba3ea1 | 211 | static inline int ldsb_p(const void *ptr) |
5a9fdfec FB |
212 | { |
213 | return *(int8_t *)ptr; | |
214 | } | |
215 | ||
c27004ec | 216 | static inline void stb_p(void *ptr, int v) |
5a9fdfec FB |
217 | { |
218 | *(uint8_t *)ptr = v; | |
219 | } | |
220 | ||
221 | /* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the | |
222 | kernel handles unaligned load/stores may give better results, but | |
223 | it is a system wide setting : bad */ | |
e2542fe2 | 224 | #if defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED) |
5a9fdfec FB |
225 | |
226 | /* conservative code for little endian unaligned accesses */ | |
8bba3ea1 | 227 | static inline int lduw_le_p(const void *ptr) |
5a9fdfec | 228 | { |
e58ffeb3 | 229 | #ifdef _ARCH_PPC |
5a9fdfec FB |
230 | int val; |
231 | __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr)); | |
232 | return val; | |
233 | #else | |
e01fe6d5 | 234 | const uint8_t *p = ptr; |
5a9fdfec FB |
235 | return p[0] | (p[1] << 8); |
236 | #endif | |
237 | } | |
238 | ||
8bba3ea1 | 239 | static inline int ldsw_le_p(const void *ptr) |
5a9fdfec | 240 | { |
e58ffeb3 | 241 | #ifdef _ARCH_PPC |
5a9fdfec FB |
242 | int val; |
243 | __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (ptr)); | |
244 | return (int16_t)val; | |
245 | #else | |
e01fe6d5 | 246 | const uint8_t *p = ptr; |
5a9fdfec FB |
247 | return (int16_t)(p[0] | (p[1] << 8)); |
248 | #endif | |
249 | } | |
250 | ||
8bba3ea1 | 251 | static inline int ldl_le_p(const void *ptr) |
5a9fdfec | 252 | { |
e58ffeb3 | 253 | #ifdef _ARCH_PPC |
5a9fdfec FB |
254 | int val; |
255 | __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (ptr)); | |
256 | return val; | |
257 | #else | |
e01fe6d5 | 258 | const uint8_t *p = ptr; |
5a9fdfec FB |
259 | return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24); |
260 | #endif | |
261 | } | |
262 | ||
8bba3ea1 | 263 | static inline uint64_t ldq_le_p(const void *ptr) |
5a9fdfec | 264 | { |
e01fe6d5 | 265 | const uint8_t *p = ptr; |
5a9fdfec | 266 | uint32_t v1, v2; |
f0aca822 FB |
267 | v1 = ldl_le_p(p); |
268 | v2 = ldl_le_p(p + 4); | |
5a9fdfec FB |
269 | return v1 | ((uint64_t)v2 << 32); |
270 | } | |
271 | ||
2df3b95d | 272 | static inline void stw_le_p(void *ptr, int v) |
5a9fdfec | 273 | { |
e58ffeb3 | 274 | #ifdef _ARCH_PPC |
5a9fdfec FB |
275 | __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr) : "r" (v), "r" (ptr)); |
276 | #else | |
277 | uint8_t *p = ptr; | |
278 | p[0] = v; | |
279 | p[1] = v >> 8; | |
280 | #endif | |
281 | } | |
282 | ||
2df3b95d | 283 | static inline void stl_le_p(void *ptr, int v) |
5a9fdfec | 284 | { |
e58ffeb3 | 285 | #ifdef _ARCH_PPC |
5a9fdfec FB |
286 | __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr) : "r" (v), "r" (ptr)); |
287 | #else | |
288 | uint8_t *p = ptr; | |
289 | p[0] = v; | |
290 | p[1] = v >> 8; | |
291 | p[2] = v >> 16; | |
292 | p[3] = v >> 24; | |
293 | #endif | |
294 | } | |
295 | ||
2df3b95d | 296 | static inline void stq_le_p(void *ptr, uint64_t v) |
5a9fdfec FB |
297 | { |
298 | uint8_t *p = ptr; | |
f0aca822 FB |
299 | stl_le_p(p, (uint32_t)v); |
300 | stl_le_p(p + 4, v >> 32); | |
5a9fdfec FB |
301 | } |
302 | ||
303 | /* float access */ | |
304 | ||
8bba3ea1 | 305 | static inline float32 ldfl_le_p(const void *ptr) |
5a9fdfec FB |
306 | { |
307 | union { | |
53cd6637 | 308 | float32 f; |
5a9fdfec FB |
309 | uint32_t i; |
310 | } u; | |
2df3b95d | 311 | u.i = ldl_le_p(ptr); |
5a9fdfec FB |
312 | return u.f; |
313 | } | |
314 | ||
2df3b95d | 315 | static inline void stfl_le_p(void *ptr, float32 v) |
5a9fdfec FB |
316 | { |
317 | union { | |
53cd6637 | 318 | float32 f; |
5a9fdfec FB |
319 | uint32_t i; |
320 | } u; | |
321 | u.f = v; | |
2df3b95d | 322 | stl_le_p(ptr, u.i); |
5a9fdfec FB |
323 | } |
324 | ||
8bba3ea1 | 325 | static inline float64 ldfq_le_p(const void *ptr) |
5a9fdfec | 326 | { |
0ac4bd56 | 327 | CPU_DoubleU u; |
2df3b95d FB |
328 | u.l.lower = ldl_le_p(ptr); |
329 | u.l.upper = ldl_le_p(ptr + 4); | |
5a9fdfec FB |
330 | return u.d; |
331 | } | |
332 | ||
2df3b95d | 333 | static inline void stfq_le_p(void *ptr, float64 v) |
5a9fdfec | 334 | { |
0ac4bd56 | 335 | CPU_DoubleU u; |
5a9fdfec | 336 | u.d = v; |
2df3b95d FB |
337 | stl_le_p(ptr, u.l.lower); |
338 | stl_le_p(ptr + 4, u.l.upper); | |
5a9fdfec FB |
339 | } |
340 | ||
2df3b95d FB |
341 | #else |
342 | ||
8bba3ea1 | 343 | static inline int lduw_le_p(const void *ptr) |
2df3b95d FB |
344 | { |
345 | return *(uint16_t *)ptr; | |
346 | } | |
347 | ||
8bba3ea1 | 348 | static inline int ldsw_le_p(const void *ptr) |
2df3b95d FB |
349 | { |
350 | return *(int16_t *)ptr; | |
351 | } | |
93ac68bc | 352 | |
8bba3ea1 | 353 | static inline int ldl_le_p(const void *ptr) |
2df3b95d FB |
354 | { |
355 | return *(uint32_t *)ptr; | |
356 | } | |
357 | ||
8bba3ea1 | 358 | static inline uint64_t ldq_le_p(const void *ptr) |
2df3b95d FB |
359 | { |
360 | return *(uint64_t *)ptr; | |
361 | } | |
362 | ||
363 | static inline void stw_le_p(void *ptr, int v) | |
364 | { | |
365 | *(uint16_t *)ptr = v; | |
366 | } | |
367 | ||
368 | static inline void stl_le_p(void *ptr, int v) | |
369 | { | |
370 | *(uint32_t *)ptr = v; | |
371 | } | |
372 | ||
373 | static inline void stq_le_p(void *ptr, uint64_t v) | |
374 | { | |
375 | *(uint64_t *)ptr = v; | |
376 | } | |
377 | ||
378 | /* float access */ | |
379 | ||
8bba3ea1 | 380 | static inline float32 ldfl_le_p(const void *ptr) |
2df3b95d FB |
381 | { |
382 | return *(float32 *)ptr; | |
383 | } | |
384 | ||
8bba3ea1 | 385 | static inline float64 ldfq_le_p(const void *ptr) |
2df3b95d FB |
386 | { |
387 | return *(float64 *)ptr; | |
388 | } | |
389 | ||
390 | static inline void stfl_le_p(void *ptr, float32 v) | |
391 | { | |
392 | *(float32 *)ptr = v; | |
393 | } | |
394 | ||
395 | static inline void stfq_le_p(void *ptr, float64 v) | |
396 | { | |
397 | *(float64 *)ptr = v; | |
398 | } | |
399 | #endif | |
400 | ||
e2542fe2 | 401 | #if !defined(HOST_WORDS_BIGENDIAN) || defined(WORDS_ALIGNED) |
2df3b95d | 402 | |
8bba3ea1 | 403 | static inline int lduw_be_p(const void *ptr) |
93ac68bc | 404 | { |
83d73968 FB |
405 | #if defined(__i386__) |
406 | int val; | |
407 | asm volatile ("movzwl %1, %0\n" | |
408 | "xchgb %b0, %h0\n" | |
409 | : "=q" (val) | |
410 | : "m" (*(uint16_t *)ptr)); | |
411 | return val; | |
412 | #else | |
e01fe6d5 | 413 | const uint8_t *b = ptr; |
83d73968 FB |
414 | return ((b[0] << 8) | b[1]); |
415 | #endif | |
93ac68bc FB |
416 | } |
417 | ||
8bba3ea1 | 418 | static inline int ldsw_be_p(const void *ptr) |
93ac68bc | 419 | { |
83d73968 FB |
420 | #if defined(__i386__) |
421 | int val; | |
422 | asm volatile ("movzwl %1, %0\n" | |
423 | "xchgb %b0, %h0\n" | |
424 | : "=q" (val) | |
425 | : "m" (*(uint16_t *)ptr)); | |
426 | return (int16_t)val; | |
427 | #else | |
e01fe6d5 | 428 | const uint8_t *b = ptr; |
83d73968 FB |
429 | return (int16_t)((b[0] << 8) | b[1]); |
430 | #endif | |
93ac68bc FB |
431 | } |
432 | ||
8bba3ea1 | 433 | static inline int ldl_be_p(const void *ptr) |
93ac68bc | 434 | { |
4f2ac237 | 435 | #if defined(__i386__) || defined(__x86_64__) |
83d73968 FB |
436 | int val; |
437 | asm volatile ("movl %1, %0\n" | |
438 | "bswap %0\n" | |
439 | : "=r" (val) | |
440 | : "m" (*(uint32_t *)ptr)); | |
441 | return val; | |
442 | #else | |
e01fe6d5 | 443 | const uint8_t *b = ptr; |
83d73968 FB |
444 | return (b[0] << 24) | (b[1] << 16) | (b[2] << 8) | b[3]; |
445 | #endif | |
93ac68bc FB |
446 | } |
447 | ||
8bba3ea1 | 448 | static inline uint64_t ldq_be_p(const void *ptr) |
93ac68bc FB |
449 | { |
450 | uint32_t a,b; | |
2df3b95d | 451 | a = ldl_be_p(ptr); |
4d7a0880 | 452 | b = ldl_be_p((uint8_t *)ptr + 4); |
93ac68bc FB |
453 | return (((uint64_t)a<<32)|b); |
454 | } | |
455 | ||
2df3b95d | 456 | static inline void stw_be_p(void *ptr, int v) |
93ac68bc | 457 | { |
83d73968 FB |
458 | #if defined(__i386__) |
459 | asm volatile ("xchgb %b0, %h0\n" | |
460 | "movw %w0, %1\n" | |
461 | : "=q" (v) | |
462 | : "m" (*(uint16_t *)ptr), "0" (v)); | |
463 | #else | |
93ac68bc FB |
464 | uint8_t *d = (uint8_t *) ptr; |
465 | d[0] = v >> 8; | |
466 | d[1] = v; | |
83d73968 | 467 | #endif |
93ac68bc FB |
468 | } |
469 | ||
2df3b95d | 470 | static inline void stl_be_p(void *ptr, int v) |
93ac68bc | 471 | { |
4f2ac237 | 472 | #if defined(__i386__) || defined(__x86_64__) |
83d73968 FB |
473 | asm volatile ("bswap %0\n" |
474 | "movl %0, %1\n" | |
475 | : "=r" (v) | |
476 | : "m" (*(uint32_t *)ptr), "0" (v)); | |
477 | #else | |
93ac68bc FB |
478 | uint8_t *d = (uint8_t *) ptr; |
479 | d[0] = v >> 24; | |
480 | d[1] = v >> 16; | |
481 | d[2] = v >> 8; | |
482 | d[3] = v; | |
83d73968 | 483 | #endif |
93ac68bc FB |
484 | } |
485 | ||
2df3b95d | 486 | static inline void stq_be_p(void *ptr, uint64_t v) |
93ac68bc | 487 | { |
2df3b95d | 488 | stl_be_p(ptr, v >> 32); |
4d7a0880 | 489 | stl_be_p((uint8_t *)ptr + 4, v); |
0ac4bd56 FB |
490 | } |
491 | ||
492 | /* float access */ | |
493 | ||
8bba3ea1 | 494 | static inline float32 ldfl_be_p(const void *ptr) |
0ac4bd56 FB |
495 | { |
496 | union { | |
53cd6637 | 497 | float32 f; |
0ac4bd56 FB |
498 | uint32_t i; |
499 | } u; | |
2df3b95d | 500 | u.i = ldl_be_p(ptr); |
0ac4bd56 FB |
501 | return u.f; |
502 | } | |
503 | ||
2df3b95d | 504 | static inline void stfl_be_p(void *ptr, float32 v) |
0ac4bd56 FB |
505 | { |
506 | union { | |
53cd6637 | 507 | float32 f; |
0ac4bd56 FB |
508 | uint32_t i; |
509 | } u; | |
510 | u.f = v; | |
2df3b95d | 511 | stl_be_p(ptr, u.i); |
0ac4bd56 FB |
512 | } |
513 | ||
8bba3ea1 | 514 | static inline float64 ldfq_be_p(const void *ptr) |
0ac4bd56 FB |
515 | { |
516 | CPU_DoubleU u; | |
2df3b95d | 517 | u.l.upper = ldl_be_p(ptr); |
4d7a0880 | 518 | u.l.lower = ldl_be_p((uint8_t *)ptr + 4); |
0ac4bd56 FB |
519 | return u.d; |
520 | } | |
521 | ||
2df3b95d | 522 | static inline void stfq_be_p(void *ptr, float64 v) |
0ac4bd56 FB |
523 | { |
524 | CPU_DoubleU u; | |
525 | u.d = v; | |
2df3b95d | 526 | stl_be_p(ptr, u.l.upper); |
4d7a0880 | 527 | stl_be_p((uint8_t *)ptr + 4, u.l.lower); |
93ac68bc FB |
528 | } |
529 | ||
5a9fdfec FB |
530 | #else |
531 | ||
8bba3ea1 | 532 | static inline int lduw_be_p(const void *ptr) |
5a9fdfec FB |
533 | { |
534 | return *(uint16_t *)ptr; | |
535 | } | |
536 | ||
8bba3ea1 | 537 | static inline int ldsw_be_p(const void *ptr) |
5a9fdfec FB |
538 | { |
539 | return *(int16_t *)ptr; | |
540 | } | |
541 | ||
8bba3ea1 | 542 | static inline int ldl_be_p(const void *ptr) |
5a9fdfec FB |
543 | { |
544 | return *(uint32_t *)ptr; | |
545 | } | |
546 | ||
8bba3ea1 | 547 | static inline uint64_t ldq_be_p(const void *ptr) |
5a9fdfec FB |
548 | { |
549 | return *(uint64_t *)ptr; | |
550 | } | |
551 | ||
2df3b95d | 552 | static inline void stw_be_p(void *ptr, int v) |
5a9fdfec FB |
553 | { |
554 | *(uint16_t *)ptr = v; | |
555 | } | |
556 | ||
2df3b95d | 557 | static inline void stl_be_p(void *ptr, int v) |
5a9fdfec FB |
558 | { |
559 | *(uint32_t *)ptr = v; | |
560 | } | |
561 | ||
2df3b95d | 562 | static inline void stq_be_p(void *ptr, uint64_t v) |
5a9fdfec FB |
563 | { |
564 | *(uint64_t *)ptr = v; | |
565 | } | |
566 | ||
567 | /* float access */ | |
568 | ||
8bba3ea1 | 569 | static inline float32 ldfl_be_p(const void *ptr) |
5a9fdfec | 570 | { |
53cd6637 | 571 | return *(float32 *)ptr; |
5a9fdfec FB |
572 | } |
573 | ||
8bba3ea1 | 574 | static inline float64 ldfq_be_p(const void *ptr) |
5a9fdfec | 575 | { |
53cd6637 | 576 | return *(float64 *)ptr; |
5a9fdfec FB |
577 | } |
578 | ||
2df3b95d | 579 | static inline void stfl_be_p(void *ptr, float32 v) |
5a9fdfec | 580 | { |
53cd6637 | 581 | *(float32 *)ptr = v; |
5a9fdfec FB |
582 | } |
583 | ||
2df3b95d | 584 | static inline void stfq_be_p(void *ptr, float64 v) |
5a9fdfec | 585 | { |
53cd6637 | 586 | *(float64 *)ptr = v; |
5a9fdfec | 587 | } |
2df3b95d FB |
588 | |
589 | #endif | |
590 | ||
591 | /* target CPU memory access functions */ | |
592 | #if defined(TARGET_WORDS_BIGENDIAN) | |
593 | #define lduw_p(p) lduw_be_p(p) | |
594 | #define ldsw_p(p) ldsw_be_p(p) | |
595 | #define ldl_p(p) ldl_be_p(p) | |
596 | #define ldq_p(p) ldq_be_p(p) | |
597 | #define ldfl_p(p) ldfl_be_p(p) | |
598 | #define ldfq_p(p) ldfq_be_p(p) | |
599 | #define stw_p(p, v) stw_be_p(p, v) | |
600 | #define stl_p(p, v) stl_be_p(p, v) | |
601 | #define stq_p(p, v) stq_be_p(p, v) | |
602 | #define stfl_p(p, v) stfl_be_p(p, v) | |
603 | #define stfq_p(p, v) stfq_be_p(p, v) | |
604 | #else | |
605 | #define lduw_p(p) lduw_le_p(p) | |
606 | #define ldsw_p(p) ldsw_le_p(p) | |
607 | #define ldl_p(p) ldl_le_p(p) | |
608 | #define ldq_p(p) ldq_le_p(p) | |
609 | #define ldfl_p(p) ldfl_le_p(p) | |
610 | #define ldfq_p(p) ldfq_le_p(p) | |
611 | #define stw_p(p, v) stw_le_p(p, v) | |
612 | #define stl_p(p, v) stl_le_p(p, v) | |
613 | #define stq_p(p, v) stq_le_p(p, v) | |
614 | #define stfl_p(p, v) stfl_le_p(p, v) | |
615 | #define stfq_p(p, v) stfq_le_p(p, v) | |
5a9fdfec FB |
616 | #endif |
617 | ||
61382a50 FB |
618 | /* MMU memory access macros */ |
619 | ||
53a5960a | 620 | #if defined(CONFIG_USER_ONLY) |
0e62fd79 AJ |
621 | #include <assert.h> |
622 | #include "qemu-types.h" | |
623 | ||
53a5960a PB |
624 | /* On some host systems the guest address space is reserved on the host. |
625 | * This allows the guest address space to be offset to a convenient location. | |
626 | */ | |
379f6698 PB |
627 | #if defined(CONFIG_USE_GUEST_BASE) |
628 | extern unsigned long guest_base; | |
629 | extern int have_guest_base; | |
630 | #define GUEST_BASE guest_base | |
631 | #else | |
632 | #define GUEST_BASE 0ul | |
633 | #endif | |
53a5960a PB |
634 | |
635 | /* All direct uses of g2h and h2g need to go away for usermode softmmu. */ | |
636 | #define g2h(x) ((void *)((unsigned long)(x) + GUEST_BASE)) | |
0e62fd79 AJ |
637 | #define h2g(x) ({ \ |
638 | unsigned long __ret = (unsigned long)(x) - GUEST_BASE; \ | |
639 | /* Check if given address fits target address space */ \ | |
640 | assert(__ret == (abi_ulong)__ret); \ | |
641 | (abi_ulong)__ret; \ | |
642 | }) | |
14cc46b1 AJ |
643 | #define h2g_valid(x) ({ \ |
644 | unsigned long __guest = (unsigned long)(x) - GUEST_BASE; \ | |
645 | (__guest == (abi_ulong)__guest); \ | |
646 | }) | |
53a5960a PB |
647 | |
648 | #define saddr(x) g2h(x) | |
649 | #define laddr(x) g2h(x) | |
650 | ||
651 | #else /* !CONFIG_USER_ONLY */ | |
c27004ec FB |
652 | /* NOTE: we use double casts if pointers and target_ulong have |
653 | different sizes */ | |
53a5960a PB |
654 | #define saddr(x) (uint8_t *)(long)(x) |
655 | #define laddr(x) (uint8_t *)(long)(x) | |
656 | #endif | |
657 | ||
658 | #define ldub_raw(p) ldub_p(laddr((p))) | |
659 | #define ldsb_raw(p) ldsb_p(laddr((p))) | |
660 | #define lduw_raw(p) lduw_p(laddr((p))) | |
661 | #define ldsw_raw(p) ldsw_p(laddr((p))) | |
662 | #define ldl_raw(p) ldl_p(laddr((p))) | |
663 | #define ldq_raw(p) ldq_p(laddr((p))) | |
664 | #define ldfl_raw(p) ldfl_p(laddr((p))) | |
665 | #define ldfq_raw(p) ldfq_p(laddr((p))) | |
666 | #define stb_raw(p, v) stb_p(saddr((p)), v) | |
667 | #define stw_raw(p, v) stw_p(saddr((p)), v) | |
668 | #define stl_raw(p, v) stl_p(saddr((p)), v) | |
669 | #define stq_raw(p, v) stq_p(saddr((p)), v) | |
670 | #define stfl_raw(p, v) stfl_p(saddr((p)), v) | |
671 | #define stfq_raw(p, v) stfq_p(saddr((p)), v) | |
c27004ec FB |
672 | |
673 | ||
5fafdf24 | 674 | #if defined(CONFIG_USER_ONLY) |
61382a50 FB |
675 | |
676 | /* if user mode, no other memory access functions */ | |
677 | #define ldub(p) ldub_raw(p) | |
678 | #define ldsb(p) ldsb_raw(p) | |
679 | #define lduw(p) lduw_raw(p) | |
680 | #define ldsw(p) ldsw_raw(p) | |
681 | #define ldl(p) ldl_raw(p) | |
682 | #define ldq(p) ldq_raw(p) | |
683 | #define ldfl(p) ldfl_raw(p) | |
684 | #define ldfq(p) ldfq_raw(p) | |
685 | #define stb(p, v) stb_raw(p, v) | |
686 | #define stw(p, v) stw_raw(p, v) | |
687 | #define stl(p, v) stl_raw(p, v) | |
688 | #define stq(p, v) stq_raw(p, v) | |
689 | #define stfl(p, v) stfl_raw(p, v) | |
690 | #define stfq(p, v) stfq_raw(p, v) | |
691 | ||
692 | #define ldub_code(p) ldub_raw(p) | |
693 | #define ldsb_code(p) ldsb_raw(p) | |
694 | #define lduw_code(p) lduw_raw(p) | |
695 | #define ldsw_code(p) ldsw_raw(p) | |
696 | #define ldl_code(p) ldl_raw(p) | |
bc98a7ef | 697 | #define ldq_code(p) ldq_raw(p) |
61382a50 FB |
698 | |
699 | #define ldub_kernel(p) ldub_raw(p) | |
700 | #define ldsb_kernel(p) ldsb_raw(p) | |
701 | #define lduw_kernel(p) lduw_raw(p) | |
702 | #define ldsw_kernel(p) ldsw_raw(p) | |
703 | #define ldl_kernel(p) ldl_raw(p) | |
bc98a7ef | 704 | #define ldq_kernel(p) ldq_raw(p) |
0ac4bd56 FB |
705 | #define ldfl_kernel(p) ldfl_raw(p) |
706 | #define ldfq_kernel(p) ldfq_raw(p) | |
61382a50 FB |
707 | #define stb_kernel(p, v) stb_raw(p, v) |
708 | #define stw_kernel(p, v) stw_raw(p, v) | |
709 | #define stl_kernel(p, v) stl_raw(p, v) | |
710 | #define stq_kernel(p, v) stq_raw(p, v) | |
0ac4bd56 FB |
711 | #define stfl_kernel(p, v) stfl_raw(p, v) |
712 | #define stfq_kernel(p, vt) stfq_raw(p, v) | |
61382a50 FB |
713 | |
714 | #endif /* defined(CONFIG_USER_ONLY) */ | |
715 | ||
5a9fdfec FB |
716 | /* page related stuff */ |
717 | ||
03875444 | 718 | #define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS) |
5a9fdfec FB |
719 | #define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1) |
720 | #define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK) | |
721 | ||
53a5960a | 722 | /* ??? These should be the larger of unsigned long and target_ulong. */ |
83fb7adf FB |
723 | extern unsigned long qemu_real_host_page_size; |
724 | extern unsigned long qemu_host_page_bits; | |
725 | extern unsigned long qemu_host_page_size; | |
726 | extern unsigned long qemu_host_page_mask; | |
5a9fdfec | 727 | |
83fb7adf | 728 | #define HOST_PAGE_ALIGN(addr) (((addr) + qemu_host_page_size - 1) & qemu_host_page_mask) |
5a9fdfec FB |
729 | |
730 | /* same as PROT_xxx */ | |
731 | #define PAGE_READ 0x0001 | |
732 | #define PAGE_WRITE 0x0002 | |
733 | #define PAGE_EXEC 0x0004 | |
734 | #define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC) | |
735 | #define PAGE_VALID 0x0008 | |
736 | /* original state of the write flag (used when tracking self-modifying | |
737 | code */ | |
5fafdf24 | 738 | #define PAGE_WRITE_ORG 0x0010 |
50a9569b | 739 | #define PAGE_RESERVED 0x0020 |
5a9fdfec FB |
740 | |
741 | void page_dump(FILE *f); | |
edf8e2af MW |
742 | int walk_memory_regions(void *, |
743 | int (*fn)(void *, unsigned long, unsigned long, unsigned long)); | |
53a5960a PB |
744 | int page_get_flags(target_ulong address); |
745 | void page_set_flags(target_ulong start, target_ulong end, int flags); | |
3d97b40b | 746 | int page_check_range(target_ulong start, target_ulong len, int flags); |
5a9fdfec | 747 | |
26a5f13b | 748 | void cpu_exec_init_all(unsigned long tb_size); |
c5be9f08 | 749 | CPUState *cpu_copy(CPUState *env); |
950f1472 | 750 | CPUState *qemu_get_cpu(int cpu); |
c5be9f08 | 751 | |
5fafdf24 | 752 | void cpu_dump_state(CPUState *env, FILE *f, |
7fe48483 FB |
753 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...), |
754 | int flags); | |
76a66253 JM |
755 | void cpu_dump_statistics (CPUState *env, FILE *f, |
756 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...), | |
757 | int flags); | |
7fe48483 | 758 | |
a5e50b26 | 759 | void QEMU_NORETURN cpu_abort(CPUState *env, const char *fmt, ...) |
7d99a001 | 760 | __attribute__ ((__format__ (__printf__, 2, 3))); |
f0aca822 | 761 | extern CPUState *first_cpu; |
e2f22898 | 762 | extern CPUState *cpu_single_env; |
2e70f6ef PB |
763 | extern int64_t qemu_icount; |
764 | extern int use_icount; | |
5a9fdfec | 765 | |
9acbed06 FB |
766 | #define CPU_INTERRUPT_HARD 0x02 /* hardware interrupt pending */ |
767 | #define CPU_INTERRUPT_EXITTB 0x04 /* exit the current TB (use for x86 a20 case) */ | |
ef792f9d | 768 | #define CPU_INTERRUPT_TIMER 0x08 /* internal timer exception pending */ |
98699967 | 769 | #define CPU_INTERRUPT_FIQ 0x10 /* Fast interrupt pending. */ |
ba3c64fb | 770 | #define CPU_INTERRUPT_HALT 0x20 /* CPU halt wanted */ |
3b21e03e | 771 | #define CPU_INTERRUPT_SMI 0x40 /* (x86 only) SMI interrupt pending */ |
6658ffb8 | 772 | #define CPU_INTERRUPT_DEBUG 0x80 /* Debug event occured. */ |
0573fbfc | 773 | #define CPU_INTERRUPT_VIRQ 0x100 /* virtual interrupt pending. */ |
474ea849 | 774 | #define CPU_INTERRUPT_NMI 0x200 /* NMI pending. */ |
b09ea7d5 GN |
775 | #define CPU_INTERRUPT_INIT 0x400 /* INIT pending. */ |
776 | #define CPU_INTERRUPT_SIPI 0x800 /* SIPI pending. */ | |
79c4f6b0 | 777 | #define CPU_INTERRUPT_MCE 0x1000 /* (x86 only) MCE pending. */ |
98699967 | 778 | |
4690764b | 779 | void cpu_interrupt(CPUState *s, int mask); |
b54ad049 | 780 | void cpu_reset_interrupt(CPUState *env, int mask); |
68a79315 | 781 | |
3098dba0 AJ |
782 | void cpu_exit(CPUState *s); |
783 | ||
6a4955a8 AL |
784 | int qemu_cpu_has_work(CPUState *env); |
785 | ||
a1d1bb31 AL |
786 | /* Breakpoint/watchpoint flags */ |
787 | #define BP_MEM_READ 0x01 | |
788 | #define BP_MEM_WRITE 0x02 | |
789 | #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE) | |
06d55cc1 | 790 | #define BP_STOP_BEFORE_ACCESS 0x04 |
6e140f28 | 791 | #define BP_WATCHPOINT_HIT 0x08 |
a1d1bb31 | 792 | #define BP_GDB 0x10 |
2dc9f411 | 793 | #define BP_CPU 0x20 |
a1d1bb31 AL |
794 | |
795 | int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, | |
796 | CPUBreakpoint **breakpoint); | |
797 | int cpu_breakpoint_remove(CPUState *env, target_ulong pc, int flags); | |
798 | void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint); | |
799 | void cpu_breakpoint_remove_all(CPUState *env, int mask); | |
800 | int cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len, | |
801 | int flags, CPUWatchpoint **watchpoint); | |
802 | int cpu_watchpoint_remove(CPUState *env, target_ulong addr, | |
803 | target_ulong len, int flags); | |
804 | void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint); | |
805 | void cpu_watchpoint_remove_all(CPUState *env, int mask); | |
60897d36 EI |
806 | |
807 | #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */ | |
808 | #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */ | |
809 | #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */ | |
810 | ||
c33a346e | 811 | void cpu_single_step(CPUState *env, int enabled); |
d95dc32d | 812 | void cpu_reset(CPUState *s); |
4c3a88a2 | 813 | |
13eb76e0 FB |
814 | /* Return the physical page corresponding to a virtual one. Use it |
815 | only for debugging because no protection checks are done. Return -1 | |
816 | if no page found. */ | |
c227f099 | 817 | target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr); |
13eb76e0 | 818 | |
5fafdf24 | 819 | #define CPU_LOG_TB_OUT_ASM (1 << 0) |
9fddaa0c | 820 | #define CPU_LOG_TB_IN_ASM (1 << 1) |
f193c797 FB |
821 | #define CPU_LOG_TB_OP (1 << 2) |
822 | #define CPU_LOG_TB_OP_OPT (1 << 3) | |
823 | #define CPU_LOG_INT (1 << 4) | |
824 | #define CPU_LOG_EXEC (1 << 5) | |
825 | #define CPU_LOG_PCALL (1 << 6) | |
fd872598 | 826 | #define CPU_LOG_IOPORT (1 << 7) |
9fddaa0c | 827 | #define CPU_LOG_TB_CPU (1 << 8) |
eca1bdf4 | 828 | #define CPU_LOG_RESET (1 << 9) |
f193c797 FB |
829 | |
830 | /* define log items */ | |
831 | typedef struct CPULogItem { | |
832 | int mask; | |
833 | const char *name; | |
834 | const char *help; | |
835 | } CPULogItem; | |
836 | ||
c7cd6a37 | 837 | extern const CPULogItem cpu_log_items[]; |
f193c797 | 838 | |
34865134 FB |
839 | void cpu_set_log(int log_flags); |
840 | void cpu_set_log_filename(const char *filename); | |
f193c797 | 841 | int cpu_str_to_log_mask(const char *str); |
34865134 | 842 | |
09683d35 | 843 | /* IO ports API */ |
32993977 | 844 | #include "ioport.h" |
09683d35 | 845 | |
33417e70 FB |
846 | /* memory API */ |
847 | ||
edf75d59 | 848 | extern int phys_ram_fd; |
1ccde1cb | 849 | extern uint8_t *phys_ram_dirty; |
c227f099 AL |
850 | extern ram_addr_t ram_size; |
851 | extern ram_addr_t last_ram_offset; | |
edf75d59 FB |
852 | |
853 | /* physical memory access */ | |
0f459d16 PB |
854 | |
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 | ||
98699967 | 859 | #define IO_MEM_NB_ENTRIES (1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT)) |
edf75d59 | 860 | |
0f459d16 PB |
861 | /* 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 | ||
5fafdf24 | 871 | int cpu_memory_rw_debug(CPUState *env, target_ulong addr, |
8b1f24b0 | 872 | uint8_t *buf, int len, int is_write); |
13eb76e0 | 873 | |
74576198 AL |
874 | #define VGA_DIRTY_FLAG 0x01 |
875 | #define CODE_DIRTY_FLAG 0x02 | |
74576198 | 876 | #define MIGRATION_DIRTY_FLAG 0x08 |
0a962c02 | 877 | |
1ccde1cb | 878 | /* read dirty bit (return 0 or 1) */ |
c227f099 | 879 | static inline int cpu_physical_memory_is_dirty(ram_addr_t addr) |
1ccde1cb | 880 | { |
0a962c02 FB |
881 | return phys_ram_dirty[addr >> TARGET_PAGE_BITS] == 0xff; |
882 | } | |
883 | ||
c227f099 | 884 | static inline int cpu_physical_memory_get_dirty(ram_addr_t addr, |
0a962c02 FB |
885 | int dirty_flags) |
886 | { | |
887 | return phys_ram_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags; | |
1ccde1cb FB |
888 | } |
889 | ||
c227f099 | 890 | static inline void cpu_physical_memory_set_dirty(ram_addr_t addr) |
1ccde1cb | 891 | { |
0a962c02 | 892 | phys_ram_dirty[addr >> TARGET_PAGE_BITS] = 0xff; |
1ccde1cb FB |
893 | } |
894 | ||
c227f099 | 895 | void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end, |
0a962c02 | 896 | int dirty_flags); |
04c504cc | 897 | void cpu_tlb_update_dirty(CPUState *env); |
1ccde1cb | 898 | |
74576198 AL |
899 | int cpu_physical_memory_set_dirty_tracking(int enable); |
900 | ||
901 | int cpu_physical_memory_get_dirty_tracking(void); | |
902 | ||
c227f099 AL |
903 | int cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr, |
904 | target_phys_addr_t end_addr); | |
2bec46dc | 905 | |
e3db7226 FB |
906 | void dump_exec_info(FILE *f, |
907 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); | |
908 | ||
f65ed4c1 AL |
909 | /* 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 | */ | |
c227f099 | 914 | void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); |
f65ed4c1 | 915 | |
c227f099 | 916 | void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size); |
f65ed4c1 | 917 | |
effedbc9 FB |
918 | /*******************************************/ |
919 | /* host CPU ticks (if available) */ | |
920 | ||
e58ffeb3 | 921 | #if defined(_ARCH_PPC) |
effedbc9 | 922 | |
effedbc9 FB |
923 | static inline int64_t cpu_get_real_ticks(void) |
924 | { | |
5e10fc90 | 925 | 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; | |
effedbc9 FB |
947 | } |
948 | ||
949 | #elif defined(__i386__) | |
950 | ||
951 | static inline int64_t cpu_get_real_ticks(void) | |
5f1ce948 FB |
952 | { |
953 | int64_t val; | |
954 | asm volatile ("rdtsc" : "=A" (val)); | |
955 | return val; | |
956 | } | |
957 | ||
effedbc9 FB |
958 | #elif defined(__x86_64__) |
959 | ||
960 | static 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 | ||
f54b3f92 AJ |
971 | #elif defined(__hppa__) |
972 | ||
973 | static 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 | ||
effedbc9 FB |
980 | #elif defined(__ia64) |
981 | ||
982 | static 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 | ||
991 | static 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 | ||
3142255c | 998 | #elif defined(__sparc_v8plus__) || defined(__sparc_v8plusa__) || defined(__sparc_v9__) |
effedbc9 FB |
999 | |
1000 | static 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 | } | |
c4b89d18 TS |
1019 | |
1020 | #elif defined(__mips__) | |
1021 | ||
1022 | static inline int64_t cpu_get_real_ticks(void) | |
1023 | { | |
aeec26d3 | 1024 | #if defined(__mips_isa_rev) && __mips_isa_rev >= 2 |
c4b89d18 TS |
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 | ||
46152182 PB |
1040 | #else |
1041 | /* The host CPU doesn't have an easily accessible cycle counter. | |
85028e4d TS |
1042 | Just return a monotonically increasing value. This will be |
1043 | totally wrong, but hopefully better than nothing. */ | |
46152182 PB |
1044 | static inline int64_t cpu_get_real_ticks (void) |
1045 | { | |
1046 | static int64_t ticks = 0; | |
1047 | return ticks++; | |
1048 | } | |
effedbc9 FB |
1049 | #endif |
1050 | ||
1051 | /* profiling */ | |
1052 | #ifdef CONFIG_PROFILER | |
1053 | static inline int64_t profile_getclock(void) | |
1054 | { | |
1055 | return cpu_get_real_ticks(); | |
1056 | } | |
1057 | ||
5f1ce948 FB |
1058 | extern int64_t qemu_time, qemu_time_start; |
1059 | extern int64_t tlb_flush_time; | |
5f1ce948 | 1060 | extern int64_t dev_time; |
5f1ce948 FB |
1061 | #endif |
1062 | ||
79c4f6b0 HY |
1063 | void cpu_inject_x86_mce(CPUState *cenv, int bank, uint64_t status, |
1064 | uint64_t mcg_status, uint64_t addr, uint64_t misc); | |
1065 | ||
5a9fdfec | 1066 | #endif /* CPU_ALL_H */ |