]> git.proxmox.com Git - qemu.git/blame - exec-all.h
Change ldl_phys to cpu_physical_memory_read, fix pte address
[qemu.git] / exec-all.h
CommitLineData
d4e8164f
FB
1/*
2 * internal execution defines for qemu
5fafdf24 3 *
d4e8164f
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
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
b346ff46
FB
21/* allow to see translation results - the slowdown should be negligible, so we leave it */
22#define DEBUG_DISAS
23
33417e70
FB
24#ifndef glue
25#define xglue(x, y) x ## y
26#define glue(x, y) xglue(x, y)
27#define stringify(s) tostring(s)
28#define tostring(s) #s
29#endif
30
2e03286b 31#ifndef likely
c98baaac 32#if __GNUC__ < 3
33417e70
FB
33#define __builtin_expect(x, n) (x)
34#endif
35
cbecba26
JM
36#define likely(x) __builtin_expect(!!(x), 1)
37#define unlikely(x) __builtin_expect(!!(x), 0)
2e03286b 38#endif
cbecba26 39
e2222c39
FB
40#ifdef __i386__
41#define REGPARM(n) __attribute((regparm(n)))
42#else
43#define REGPARM(n)
44#endif
45
b346ff46
FB
46/* is_jmp field values */
47#define DISAS_NEXT 0 /* next instruction can be analyzed */
48#define DISAS_JUMP 1 /* only pc was modified dynamically */
49#define DISAS_UPDATE 2 /* cpu state was modified dynamically */
50#define DISAS_TB_JUMP 3 /* only pc was modified statically */
51
52struct TranslationBlock;
53
54/* XXX: make safe guess about sizes */
55#define MAX_OP_PER_INSTR 32
56#define OPC_BUF_SIZE 512
57#define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR)
58
59#define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * 3)
60
61extern uint16_t gen_opc_buf[OPC_BUF_SIZE];
62extern uint32_t gen_opparam_buf[OPPARAM_BUF_SIZE];
c27004ec
FB
63extern long gen_labels[OPC_BUF_SIZE];
64extern int nb_gen_labels;
65extern target_ulong gen_opc_pc[OPC_BUF_SIZE];
66extern target_ulong gen_opc_npc[OPC_BUF_SIZE];
66e85a21 67extern uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
b346ff46 68extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
c3278b7b 69extern target_ulong gen_opc_jump_pc[2];
30d6cb84 70extern uint32_t gen_opc_hflags[OPC_BUF_SIZE];
b346ff46 71
9886cc16
FB
72typedef void (GenOpFunc)(void);
73typedef void (GenOpFunc1)(long);
74typedef void (GenOpFunc2)(long, long);
75typedef void (GenOpFunc3)(long, long, long);
3b46e624 76
b346ff46
FB
77#if defined(TARGET_I386)
78
33417e70 79void optimize_flags_init(void);
d4e8164f 80
b346ff46
FB
81#endif
82
83extern FILE *logfile;
84extern int loglevel;
85
69d35728
TS
86void muls64(int64_t *phigh, int64_t *plow, int64_t a, int64_t b);
87void mulu64(uint64_t *phigh, uint64_t *plow, uint64_t a, uint64_t b);
88
4c3a88a2
FB
89int gen_intermediate_code(CPUState *env, struct TranslationBlock *tb);
90int gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb);
b346ff46 91void dump_ops(const uint16_t *opc_buf, const uint32_t *opparam_buf);
4c3a88a2 92int cpu_gen_code(CPUState *env, struct TranslationBlock *tb,
b346ff46 93 int max_code_size, int *gen_code_size_ptr);
5fafdf24 94int cpu_restore_state(struct TranslationBlock *tb,
58fe2f10
FB
95 CPUState *env, unsigned long searched_pc,
96 void *puc);
97int cpu_gen_code_copy(CPUState *env, struct TranslationBlock *tb,
98 int max_code_size, int *gen_code_size_ptr);
5fafdf24 99int cpu_restore_state_copy(struct TranslationBlock *tb,
58fe2f10
FB
100 CPUState *env, unsigned long searched_pc,
101 void *puc);
2e12669a 102void cpu_resume_from_signal(CPUState *env1, void *puc);
6a00d601 103void cpu_exec_init(CPUState *env);
53a5960a 104int page_unprotect(target_ulong address, unsigned long pc, void *puc);
5fafdf24 105void tb_invalidate_phys_page_range(target_ulong start, target_ulong end,
2e12669a 106 int is_cpu_write_access);
4390df51 107void tb_invalidate_page_range(target_ulong start, target_ulong end);
2e12669a 108void tlb_flush_page(CPUState *env, target_ulong addr);
ee8b7021 109void tlb_flush(CPUState *env, int flush_global);
5fafdf24
TS
110int tlb_set_page_exec(CPUState *env, target_ulong vaddr,
111 target_phys_addr_t paddr, int prot,
84b7b8e7 112 int is_user, int is_softmmu);
5fafdf24
TS
113static inline int tlb_set_page(CPUState *env, target_ulong vaddr,
114 target_phys_addr_t paddr, int prot,
84b7b8e7
FB
115 int is_user, int is_softmmu)
116{
117 if (prot & PAGE_READ)
118 prot |= PAGE_EXEC;
119 return tlb_set_page_exec(env, vaddr, paddr, prot, is_user, is_softmmu);
120}
d4e8164f
FB
121
122#define CODE_GEN_MAX_SIZE 65536
123#define CODE_GEN_ALIGN 16 /* must be >= of the size of a icache line */
124
4390df51
FB
125#define CODE_GEN_PHYS_HASH_BITS 15
126#define CODE_GEN_PHYS_HASH_SIZE (1 << CODE_GEN_PHYS_HASH_BITS)
127
d4e8164f 128/* maximum total translate dcode allocated */
4390df51
FB
129
130/* NOTE: the translated code area cannot be too big because on some
c4c7e3e6 131 archs the range of "fast" function calls is limited. Here is a
4390df51
FB
132 summary of the ranges:
133
134 i386 : signed 32 bits
135 arm : signed 26 bits
136 ppc : signed 24 bits
137 sparc : signed 32 bits
138 alpha : signed 23 bits
139*/
140
141#if defined(__alpha__)
142#define CODE_GEN_BUFFER_SIZE (2 * 1024 * 1024)
b8076a74
FB
143#elif defined(__ia64)
144#define CODE_GEN_BUFFER_SIZE (4 * 1024 * 1024) /* range of addl */
4390df51 145#elif defined(__powerpc__)
c4c7e3e6 146#define CODE_GEN_BUFFER_SIZE (6 * 1024 * 1024)
4390df51 147#else
c98baaac 148#define CODE_GEN_BUFFER_SIZE (16 * 1024 * 1024)
4390df51
FB
149#endif
150
d4e8164f
FB
151//#define CODE_GEN_BUFFER_SIZE (128 * 1024)
152
4390df51
FB
153/* estimated block size for TB allocation */
154/* XXX: use a per code average code fragment size and modulate it
155 according to the host CPU */
156#if defined(CONFIG_SOFTMMU)
157#define CODE_GEN_AVG_BLOCK_SIZE 128
158#else
159#define CODE_GEN_AVG_BLOCK_SIZE 64
160#endif
161
162#define CODE_GEN_MAX_BLOCKS (CODE_GEN_BUFFER_SIZE / CODE_GEN_AVG_BLOCK_SIZE)
163
5fafdf24 164#if defined(__powerpc__)
4390df51
FB
165#define USE_DIRECT_JUMP
166#endif
67b915a5 167#if defined(__i386__) && !defined(_WIN32)
d4e8164f
FB
168#define USE_DIRECT_JUMP
169#endif
170
171typedef struct TranslationBlock {
2e12669a
FB
172 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */
173 target_ulong cs_base; /* CS base for this block */
d4e8164f
FB
174 unsigned int flags; /* flags defining in which context the code was generated */
175 uint16_t size; /* size of target code for this block (1 <=
176 size <= TARGET_PAGE_SIZE) */
58fe2f10 177 uint16_t cflags; /* compile flags */
bf088061
FB
178#define CF_CODE_COPY 0x0001 /* block was generated in code copy mode */
179#define CF_TB_FP_USED 0x0002 /* fp ops are used in the TB */
180#define CF_FP_USED 0x0004 /* fp ops are used in the TB or in a chained TB */
2e12669a 181#define CF_SINGLE_INSN 0x0008 /* compile only a single instruction */
58fe2f10 182
d4e8164f 183 uint8_t *tc_ptr; /* pointer to the translated code */
4390df51 184 /* next matching tb for physical address. */
5fafdf24 185 struct TranslationBlock *phys_hash_next;
4390df51
FB
186 /* first and second physical page containing code. The lower bit
187 of the pointer tells the index in page_next[] */
5fafdf24
TS
188 struct TranslationBlock *page_next[2];
189 target_ulong page_addr[2];
4390df51 190
d4e8164f
FB
191 /* the following data are used to directly call another TB from
192 the code of this one. */
193 uint16_t tb_next_offset[2]; /* offset of original jump target */
194#ifdef USE_DIRECT_JUMP
4cbb86e1 195 uint16_t tb_jmp_offset[4]; /* offset of jump instruction */
d4e8164f 196#else
95f7652d 197 uint32_t tb_next[2]; /* address of jump generated code */
d4e8164f
FB
198#endif
199 /* list of TBs jumping to this one. This is a circular list using
200 the two least significant bits of the pointers to tell what is
201 the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
202 jmp_first */
5fafdf24 203 struct TranslationBlock *jmp_next[2];
d4e8164f
FB
204 struct TranslationBlock *jmp_first;
205} TranslationBlock;
206
b362e5e0
PB
207static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc)
208{
209 target_ulong tmp;
210 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
211 return (tmp >> TB_JMP_PAGE_BITS) & TB_JMP_PAGE_MASK;
212}
213
8a40a180 214static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc)
d4e8164f 215{
b362e5e0
PB
216 target_ulong tmp;
217 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
218 return (((tmp >> TB_JMP_PAGE_BITS) & TB_JMP_PAGE_MASK) |
219 (tmp & TB_JMP_ADDR_MASK));
d4e8164f
FB
220}
221
4390df51
FB
222static inline unsigned int tb_phys_hash_func(unsigned long pc)
223{
224 return pc & (CODE_GEN_PHYS_HASH_SIZE - 1);
225}
226
c27004ec 227TranslationBlock *tb_alloc(target_ulong pc);
0124311e 228void tb_flush(CPUState *env);
5fafdf24 229void tb_link_phys(TranslationBlock *tb,
4390df51 230 target_ulong phys_pc, target_ulong phys_page2);
d4e8164f 231
4390df51 232extern TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE];
d4e8164f
FB
233
234extern uint8_t code_gen_buffer[CODE_GEN_BUFFER_SIZE];
235extern uint8_t *code_gen_ptr;
236
4390df51
FB
237#if defined(USE_DIRECT_JUMP)
238
239#if defined(__powerpc__)
4cbb86e1 240static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr)
d4e8164f
FB
241{
242 uint32_t val, *ptr;
d4e8164f
FB
243
244 /* patch the branch destination */
4cbb86e1 245 ptr = (uint32_t *)jmp_addr;
d4e8164f 246 val = *ptr;
4cbb86e1 247 val = (val & ~0x03fffffc) | ((addr - jmp_addr) & 0x03fffffc);
d4e8164f
FB
248 *ptr = val;
249 /* flush icache */
250 asm volatile ("dcbst 0,%0" : : "r"(ptr) : "memory");
251 asm volatile ("sync" : : : "memory");
252 asm volatile ("icbi 0,%0" : : "r"(ptr) : "memory");
253 asm volatile ("sync" : : : "memory");
254 asm volatile ("isync" : : : "memory");
255}
4390df51
FB
256#elif defined(__i386__)
257static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr)
258{
259 /* patch the branch destination */
260 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
261 /* no need to flush icache explicitely */
262}
263#endif
d4e8164f 264
5fafdf24 265static inline void tb_set_jmp_target(TranslationBlock *tb,
4cbb86e1
FB
266 int n, unsigned long addr)
267{
268 unsigned long offset;
269
270 offset = tb->tb_jmp_offset[n];
271 tb_set_jmp_target1((unsigned long)(tb->tc_ptr + offset), addr);
272 offset = tb->tb_jmp_offset[n + 2];
273 if (offset != 0xffff)
274 tb_set_jmp_target1((unsigned long)(tb->tc_ptr + offset), addr);
275}
276
d4e8164f
FB
277#else
278
279/* set the jump target */
5fafdf24 280static inline void tb_set_jmp_target(TranslationBlock *tb,
d4e8164f
FB
281 int n, unsigned long addr)
282{
95f7652d 283 tb->tb_next[n] = addr;
d4e8164f
FB
284}
285
286#endif
287
5fafdf24 288static inline void tb_add_jump(TranslationBlock *tb, int n,
d4e8164f
FB
289 TranslationBlock *tb_next)
290{
cf25629d
FB
291 /* NOTE: this test is only needed for thread safety */
292 if (!tb->jmp_next[n]) {
293 /* patch the native jump address */
294 tb_set_jmp_target(tb, n, (unsigned long)tb_next->tc_ptr);
3b46e624 295
cf25629d
FB
296 /* add in TB jmp circular list */
297 tb->jmp_next[n] = tb_next->jmp_first;
298 tb_next->jmp_first = (TranslationBlock *)((long)(tb) | (n));
299 }
d4e8164f
FB
300}
301
a513fe19
FB
302TranslationBlock *tb_find_pc(unsigned long pc_ptr);
303
d4e8164f
FB
304#ifndef offsetof
305#define offsetof(type, field) ((size_t) &((type *)0)->field)
306#endif
307
d549f7d9
FB
308#if defined(_WIN32)
309#define ASM_DATA_SECTION ".section \".data\"\n"
310#define ASM_PREVIOUS_SECTION ".section .text\n"
311#elif defined(__APPLE__)
312#define ASM_DATA_SECTION ".data\n"
313#define ASM_PREVIOUS_SECTION ".text\n"
d549f7d9
FB
314#else
315#define ASM_DATA_SECTION ".section \".data\"\n"
316#define ASM_PREVIOUS_SECTION ".previous\n"
d549f7d9
FB
317#endif
318
75913b72
FB
319#define ASM_OP_LABEL_NAME(n, opname) \
320 ASM_NAME(__op_label) #n "." ASM_NAME(opname)
321
b346ff46
FB
322#if defined(__powerpc__)
323
4390df51 324/* we patch the jump instruction directly */
ae063a68 325#define GOTO_TB(opname, tbparam, n)\
b346ff46 326do {\
d549f7d9 327 asm volatile (ASM_DATA_SECTION\
75913b72 328 ASM_OP_LABEL_NAME(n, opname) ":\n"\
9257a9e4 329 ".long 1f\n"\
d549f7d9
FB
330 ASM_PREVIOUS_SECTION \
331 "b " ASM_NAME(__op_jmp) #n "\n"\
9257a9e4 332 "1:\n");\
4390df51
FB
333} while (0)
334
335#elif defined(__i386__) && defined(USE_DIRECT_JUMP)
336
337/* we patch the jump instruction directly */
ae063a68 338#define GOTO_TB(opname, tbparam, n)\
c27004ec
FB
339do {\
340 asm volatile (".section .data\n"\
75913b72 341 ASM_OP_LABEL_NAME(n, opname) ":\n"\
c27004ec
FB
342 ".long 1f\n"\
343 ASM_PREVIOUS_SECTION \
344 "jmp " ASM_NAME(__op_jmp) #n "\n"\
345 "1:\n");\
346} while (0)
347
9bbc5cc8
TS
348#elif defined(__s390__)
349/* GCC spills R13, so we have to restore it before branching away */
350
351#define GOTO_TB(opname, tbparam, n)\
352do {\
353 static void __attribute__((used)) *dummy ## n = &&dummy_label ## n;\
354 static void __attribute__((used)) *__op_label ## n \
355 __asm__(ASM_OP_LABEL_NAME(n, opname)) = &&label ## n;\
356 __asm__ __volatile__ ( \
357 "l %%r13,52(%%r15)\n" \
358 "br %0\n" \
359 : : "r" (((TranslationBlock*)tbparam)->tb_next[n]));\
360 \
361 for(;*((int*)0);); /* just to keep GCC busy */ \
362label ## n: ;\
363dummy_label ## n: ;\
364} while(0)
365
b346ff46
FB
366#else
367
368/* jump to next block operations (more portable code, does not need
369 cache flushing, but slower because of indirect jump) */
ae063a68 370#define GOTO_TB(opname, tbparam, n)\
b346ff46 371do {\
6d8aa3bf
AZ
372 static void __attribute__((used)) *dummy ## n = &&dummy_label ## n;\
373 static void __attribute__((used)) *__op_label ## n \
75913b72 374 __asm__(ASM_OP_LABEL_NAME(n, opname)) = &&label ## n;\
b346ff46 375 goto *(void *)(((TranslationBlock *)tbparam)->tb_next[n]);\
ae063a68
FB
376label ## n: ;\
377dummy_label ## n: ;\
b346ff46
FB
378} while (0)
379
ae063a68
FB
380#endif
381
33417e70
FB
382extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4];
383extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4];
a4193c8a 384extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];
33417e70 385
204a1b8d 386#if defined(__powerpc__)
d4e8164f
FB
387static inline int testandset (int *p)
388{
389 int ret;
390 __asm__ __volatile__ (
02e1ec9b
FB
391 "0: lwarx %0,0,%1\n"
392 " xor. %0,%3,%0\n"
393 " bne 1f\n"
394 " stwcx. %2,0,%1\n"
395 " bne- 0b\n"
d4e8164f
FB
396 "1: "
397 : "=&r" (ret)
398 : "r" (p), "r" (1), "r" (0)
399 : "cr0", "memory");
400 return ret;
401}
204a1b8d 402#elif defined(__i386__)
d4e8164f
FB
403static inline int testandset (int *p)
404{
4955a2cd 405 long int readval = 0;
3b46e624 406
4955a2cd
FB
407 __asm__ __volatile__ ("lock; cmpxchgl %2, %0"
408 : "+m" (*p), "+a" (readval)
409 : "r" (1)
410 : "cc");
411 return readval;
d4e8164f 412}
204a1b8d 413#elif defined(__x86_64__)
bc51c5c9
FB
414static inline int testandset (int *p)
415{
4955a2cd 416 long int readval = 0;
3b46e624 417
4955a2cd
FB
418 __asm__ __volatile__ ("lock; cmpxchgl %2, %0"
419 : "+m" (*p), "+a" (readval)
420 : "r" (1)
421 : "cc");
422 return readval;
bc51c5c9 423}
204a1b8d 424#elif defined(__s390__)
d4e8164f
FB
425static inline int testandset (int *p)
426{
427 int ret;
428
429 __asm__ __volatile__ ("0: cs %0,%1,0(%2)\n"
430 " jl 0b"
431 : "=&d" (ret)
5fafdf24 432 : "r" (1), "a" (p), "0" (*p)
d4e8164f
FB
433 : "cc", "memory" );
434 return ret;
435}
204a1b8d 436#elif defined(__alpha__)
2f87c607 437static inline int testandset (int *p)
d4e8164f
FB
438{
439 int ret;
440 unsigned long one;
441
442 __asm__ __volatile__ ("0: mov 1,%2\n"
443 " ldl_l %0,%1\n"
444 " stl_c %2,%1\n"
445 " beq %2,1f\n"
446 ".subsection 2\n"
447 "1: br 0b\n"
448 ".previous"
449 : "=r" (ret), "=m" (*p), "=r" (one)
450 : "m" (*p));
451 return ret;
452}
204a1b8d 453#elif defined(__sparc__)
d4e8164f
FB
454static inline int testandset (int *p)
455{
456 int ret;
457
458 __asm__ __volatile__("ldstub [%1], %0"
459 : "=r" (ret)
460 : "r" (p)
461 : "memory");
462
463 return (ret ? 1 : 0);
464}
204a1b8d 465#elif defined(__arm__)
a95c6790
FB
466static inline int testandset (int *spinlock)
467{
468 register unsigned int ret;
469 __asm__ __volatile__("swp %0, %1, [%2]"
470 : "=r"(ret)
471 : "0"(1), "r"(spinlock));
3b46e624 472
a95c6790
FB
473 return ret;
474}
204a1b8d 475#elif defined(__mc68000)
38e584a0
FB
476static inline int testandset (int *p)
477{
478 char ret;
479 __asm__ __volatile__("tas %1; sne %0"
480 : "=r" (ret)
481 : "m" (p)
482 : "cc","memory");
4955a2cd 483 return ret;
38e584a0 484}
204a1b8d 485#elif defined(__ia64)
38e584a0 486
b8076a74
FB
487#include <ia64intrin.h>
488
489static inline int testandset (int *p)
490{
491 return __sync_lock_test_and_set (p, 1);
492}
204a1b8d 493#elif defined(__mips__)
c4b89d18
TS
494static inline int testandset (int *p)
495{
496 int ret;
497
498 __asm__ __volatile__ (
499 " .set push \n"
500 " .set noat \n"
501 " .set mips2 \n"
502 "1: li $1, 1 \n"
503 " ll %0, %1 \n"
504 " sc $1, %1 \n"
976a0d0d 505 " beqz $1, 1b \n"
c4b89d18
TS
506 " .set pop "
507 : "=r" (ret), "+R" (*p)
508 :
509 : "memory");
510
511 return ret;
512}
204a1b8d
TS
513#else
514#error unimplemented CPU support
c4b89d18
TS
515#endif
516
d4e8164f
FB
517typedef int spinlock_t;
518
519#define SPIN_LOCK_UNLOCKED 0
520
aebcb60e 521#if defined(CONFIG_USER_ONLY)
d4e8164f
FB
522static inline void spin_lock(spinlock_t *lock)
523{
524 while (testandset(lock));
525}
526
527static inline void spin_unlock(spinlock_t *lock)
528{
529 *lock = 0;
530}
531
532static inline int spin_trylock(spinlock_t *lock)
533{
534 return !testandset(lock);
535}
3c1cf9fa
FB
536#else
537static inline void spin_lock(spinlock_t *lock)
538{
539}
540
541static inline void spin_unlock(spinlock_t *lock)
542{
543}
544
545static inline int spin_trylock(spinlock_t *lock)
546{
547 return 1;
548}
549#endif
d4e8164f
FB
550
551extern spinlock_t tb_lock;
552
36bdbe54 553extern int tb_invalidated_flag;
6e59c1db 554
e95c8d51 555#if !defined(CONFIG_USER_ONLY)
6e59c1db 556
5fafdf24 557void tlb_fill(target_ulong addr, int is_write, int is_user,
6e59c1db
FB
558 void *retaddr);
559
560#define ACCESS_TYPE 3
561#define MEMSUFFIX _code
562#define env cpu_single_env
563
564#define DATA_SIZE 1
565#include "softmmu_header.h"
566
567#define DATA_SIZE 2
568#include "softmmu_header.h"
569
570#define DATA_SIZE 4
571#include "softmmu_header.h"
572
c27004ec
FB
573#define DATA_SIZE 8
574#include "softmmu_header.h"
575
6e59c1db
FB
576#undef ACCESS_TYPE
577#undef MEMSUFFIX
578#undef env
579
580#endif
4390df51
FB
581
582#if defined(CONFIG_USER_ONLY)
583static inline target_ulong get_phys_addr_code(CPUState *env, target_ulong addr)
584{
585 return addr;
586}
587#else
588/* NOTE: this function can trigger an exception */
1ccde1cb
FB
589/* NOTE2: the returned address is not exactly the physical address: it
590 is the offset relative to phys_ram_base */
4390df51
FB
591static inline target_ulong get_phys_addr_code(CPUState *env, target_ulong addr)
592{
c27004ec 593 int is_user, index, pd;
4390df51
FB
594
595 index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
3f5dcc34 596#if defined(TARGET_I386)
4390df51 597 is_user = ((env->hflags & HF_CPL_MASK) == 3);
3f5dcc34
FB
598#elif defined (TARGET_PPC)
599 is_user = msr_pr;
6af0bf9c
FB
600#elif defined (TARGET_MIPS)
601 is_user = ((env->hflags & MIPS_HFLAG_MODE) == MIPS_HFLAG_UM);
e95c8d51
FB
602#elif defined (TARGET_SPARC)
603 is_user = (env->psrs == 0);
b5ff1b31
FB
604#elif defined (TARGET_ARM)
605 is_user = ((env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_USR);
fdf9b3e8
FB
606#elif defined (TARGET_SH4)
607 is_user = ((env->sr & SR_MD) == 0);
eddf68a6
JM
608#elif defined (TARGET_ALPHA)
609 is_user = ((env->ps >> 3) & 3);
0633879f
PB
610#elif defined (TARGET_M68K)
611 is_user = ((env->sr & SR_S) == 0);
3f5dcc34 612#else
b5ff1b31 613#error unimplemented CPU
3f5dcc34 614#endif
5fafdf24 615 if (__builtin_expect(env->tlb_table[is_user][index].addr_code !=
4390df51 616 (addr & TARGET_PAGE_MASK), 0)) {
c27004ec
FB
617 ldub_code(addr);
618 }
84b7b8e7 619 pd = env->tlb_table[is_user][index].addr_code & ~TARGET_PAGE_MASK;
2a4188a3 620 if (pd > IO_MEM_ROM && !(pd & IO_MEM_ROMD)) {
6c36d3fa
BS
621#ifdef TARGET_SPARC
622 do_unassigned_access(addr, 0, 1, 0);
623#else
36d23958 624 cpu_abort(env, "Trying to execute code outside RAM or ROM at 0x" TARGET_FMT_lx "\n", addr);
6c36d3fa 625#endif
4390df51 626 }
84b7b8e7 627 return addr + env->tlb_table[is_user][index].addend - (unsigned long)phys_ram_base;
4390df51
FB
628}
629#endif
9df217a3 630
9df217a3 631#ifdef USE_KQEMU
f32fc648
FB
632#define KQEMU_MODIFY_PAGE_MASK (0xff & ~(VGA_DIRTY_FLAG | CODE_DIRTY_FLAG))
633
9df217a3
FB
634int kqemu_init(CPUState *env);
635int kqemu_cpu_exec(CPUState *env);
636void kqemu_flush_page(CPUState *env, target_ulong addr);
637void kqemu_flush(CPUState *env, int global);
4b7df22f 638void kqemu_set_notdirty(CPUState *env, ram_addr_t ram_addr);
f32fc648 639void kqemu_modify_page(CPUState *env, ram_addr_t ram_addr);
a332e112 640void kqemu_cpu_interrupt(CPUState *env);
f32fc648 641void kqemu_record_dump(void);
9df217a3
FB
642
643static inline int kqemu_is_ok(CPUState *env)
644{
645 return(env->kqemu_enabled &&
5fafdf24 646 (env->cr[0] & CR0_PE_MASK) &&
f32fc648 647 !(env->hflags & HF_INHIBIT_IRQ_MASK) &&
9df217a3 648 (env->eflags & IF_MASK) &&
f32fc648 649 !(env->eflags & VM_MASK) &&
5fafdf24 650 (env->kqemu_enabled == 2 ||
f32fc648
FB
651 ((env->hflags & HF_CPL_MASK) == 3 &&
652 (env->eflags & IOPL_MASK) != IOPL_MASK)));
9df217a3
FB
653}
654
655#endif