]>
git.proxmox.com Git - qemu.git/blob - cpu-all.h
3eacfa89aa3a5efd78cb57bb1df51183a2bc36ef
2 * defines common to all virtual CPUs
4 * Copyright (c) 2003 Fabrice Bellard
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /* all CPU memory access use these macros */
24 static inline int ldub(void *ptr
)
26 return *(uint8_t *)ptr
;
29 static inline int ldsb(void *ptr
)
31 return *(int8_t *)ptr
;
34 static inline void stb(void *ptr
, int v
)
39 /* NOTE: on arm, putting 2 in /proc/sys/debug/alignment so that the
40 kernel handles unaligned load/stores may give better results, but
41 it is a system wide setting : bad */
42 #if defined(WORDS_BIGENDIAN) || defined(__arm__)
44 /* conservative code for little endian unaligned accesses */
45 static inline int lduw(void *ptr
)
49 __asm__
__volatile__ ("lhbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
53 return p
[0] | (p
[1] << 8);
57 static inline int ldsw(void *ptr
)
61 __asm__
__volatile__ ("lhbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
65 return (int16_t)(p
[0] | (p
[1] << 8));
69 static inline int ldl(void *ptr
)
73 __asm__
__volatile__ ("lwbrx %0,0,%1" : "=r" (val
) : "r" (ptr
));
77 return p
[0] | (p
[1] << 8) | (p
[2] << 16) | (p
[3] << 24);
81 static inline uint64_t ldq(void *ptr
)
87 return v1
| ((uint64_t)v2
<< 32);
90 static inline void stw(void *ptr
, int v
)
93 __asm__
__volatile__ ("sthbrx %1,0,%2" : "=m" (*(uint16_t *)ptr
) : "r" (v
), "r" (ptr
));
101 static inline void stl(void *ptr
, int v
)
104 __asm__
__volatile__ ("stwbrx %1,0,%2" : "=m" (*(uint32_t *)ptr
) : "r" (v
), "r" (ptr
));
114 static inline void stq(void *ptr
, uint64_t v
)
123 static inline float ldfl(void *ptr
)
133 static inline void stfl(void *ptr
, float v
)
143 #if defined(__arm__) && !defined(WORDS_BIGENDIAN)
145 /* NOTE: arm is horrible as double 32 bit words are stored in big endian ! */
146 static inline double ldfq(void *ptr
)
153 u
.tab
[0] = ldl(ptr
+ 4);
157 static inline void stfq(void *ptr
, double v
)
165 stl(ptr
+ 4, u
.tab
[0]);
169 static inline double ldfq(void *ptr
)
179 static inline void stfq(void *ptr
, double v
)
192 static inline int lduw(void *ptr
)
194 return *(uint16_t *)ptr
;
197 static inline int ldsw(void *ptr
)
199 return *(int16_t *)ptr
;
202 static inline int ldl(void *ptr
)
204 return *(uint32_t *)ptr
;
207 static inline uint64_t ldq(void *ptr
)
209 return *(uint64_t *)ptr
;
212 static inline void stw(void *ptr
, int v
)
214 *(uint16_t *)ptr
= v
;
217 static inline void stl(void *ptr
, int v
)
219 *(uint32_t *)ptr
= v
;
222 static inline void stq(void *ptr
, uint64_t v
)
224 *(uint64_t *)ptr
= v
;
229 static inline float ldfl(void *ptr
)
231 return *(float *)ptr
;
234 static inline double ldfq(void *ptr
)
236 return *(double *)ptr
;
239 static inline void stfl(void *ptr
, float v
)
244 static inline void stfq(void *ptr
, double v
)
250 /* page related stuff */
252 #define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
253 #define TARGET_PAGE_MASK ~(TARGET_PAGE_SIZE - 1)
254 #define TARGET_PAGE_ALIGN(addr) (((addr) + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK)
256 extern unsigned long real_host_page_size
;
257 extern unsigned long host_page_bits
;
258 extern unsigned long host_page_size
;
259 extern unsigned long host_page_mask
;
261 #define HOST_PAGE_ALIGN(addr) (((addr) + host_page_size - 1) & host_page_mask)
263 /* same as PROT_xxx */
264 #define PAGE_READ 0x0001
265 #define PAGE_WRITE 0x0002
266 #define PAGE_EXEC 0x0004
267 #define PAGE_BITS (PAGE_READ | PAGE_WRITE | PAGE_EXEC)
268 #define PAGE_VALID 0x0008
269 /* original state of the write flag (used when tracking self-modifying
271 #define PAGE_WRITE_ORG 0x0010
273 void page_dump(FILE *f
);
274 int page_get_flags(unsigned long address
);
275 void page_set_flags(unsigned long start
, unsigned long end
, int flags
);
276 void page_unprotect_range(uint8_t *data
, unsigned long data_size
);
278 #define SINGLE_CPU_DEFINES
279 #ifdef SINGLE_CPU_DEFINES
281 #if defined(TARGET_I386)
283 #define CPUState CPUX86State
284 #define cpu_init cpu_x86_init
285 #define cpu_exec cpu_x86_exec
286 #define cpu_gen_code cpu_x86_gen_code
287 #define cpu_interrupt cpu_x86_interrupt
288 #define cpu_signal_handler cpu_x86_signal_handler
290 #elif defined(TARGET_ARM)
292 #define CPUState CPUARMState
293 #define cpu_init cpu_arm_init
294 #define cpu_exec cpu_arm_exec
295 #define cpu_gen_code cpu_arm_gen_code
296 #define cpu_interrupt cpu_arm_interrupt
297 #define cpu_signal_handler cpu_arm_signal_handler
301 #error unsupported target CPU
305 #endif /* SINGLE_CPU_DEFINES */
307 void cpu_abort(CPUState
*env
, const char *fmt
, ...);
309 #endif /* CPU_ALL_H */