blob: 9bda7f735451c8d75540dda758940840208fd977 [file] [log] [blame]
bellardd4e81642003-05-25 16:46:15 +00001/*
2 * internal execution defines for qemu
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardd4e81642003-05-25 16:46:15 +00004 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
bellardd4e81642003-05-25 16:46:15 +000018 */
19
aliguori875cdcf2008-10-23 13:52:00 +000020#ifndef _EXEC_ALL_H_
21#define _EXEC_ALL_H_
blueswir17d99a002009-01-14 19:00:36 +000022
23#include "qemu-common.h"
24
bellardb346ff42003-06-15 20:05:50 +000025/* allow to see translation results - the slowdown should be negligible, so we leave it */
aurel32de9a95f2008-11-11 13:41:01 +000026#define DEBUG_DISAS
bellardb346ff42003-06-15 20:05:50 +000027
Paul Brook41c1b1c2010-03-12 16:54:58 +000028/* Page tracking code uses ram addresses in system mode, and virtual
29 addresses in userspace mode. Define tb_page_addr_t to be an appropriate
30 type. */
31#if defined(CONFIG_USER_ONLY)
Paul Brookb480d9b2010-03-12 23:23:29 +000032typedef abi_ulong tb_page_addr_t;
Paul Brook41c1b1c2010-03-12 16:54:58 +000033#else
34typedef ram_addr_t tb_page_addr_t;
35#endif
36
bellardb346ff42003-06-15 20:05:50 +000037/* is_jmp field values */
38#define DISAS_NEXT 0 /* next instruction can be analyzed */
39#define DISAS_JUMP 1 /* only pc was modified dynamically */
40#define DISAS_UPDATE 2 /* cpu state was modified dynamically */
41#define DISAS_TB_JUMP 3 /* only pc was modified statically */
42
Blue Swirlf081c762011-05-21 07:10:23 +000043struct TranslationBlock;
pbrook2e70f6e2008-06-29 01:03:05 +000044typedef struct TranslationBlock TranslationBlock;
bellardb346ff42003-06-15 20:05:50 +000045
46/* XXX: make safe guess about sizes */
Peter Maydell5b620fb2011-06-22 15:16:32 +010047#define MAX_OP_PER_INSTR 208
Stuart Brady4d0e4ac2010-04-27 22:23:35 +010048
49#if HOST_LONG_BITS == 32
50#define MAX_OPC_PARAM_PER_ARG 2
51#else
52#define MAX_OPC_PARAM_PER_ARG 1
53#endif
54#define MAX_OPC_PARAM_IARGS 4
55#define MAX_OPC_PARAM_OARGS 1
56#define MAX_OPC_PARAM_ARGS (MAX_OPC_PARAM_IARGS + MAX_OPC_PARAM_OARGS)
57
58/* A Call op needs up to 4 + 2N parameters on 32-bit archs,
59 * and up to 4 + N parameters on 64-bit archs
60 * (N = number of input arguments + output arguments). */
61#define MAX_OPC_PARAM (4 + (MAX_OPC_PARAM_PER_ARG * MAX_OPC_PARAM_ARGS))
Aurelien Jarno6db73502009-09-22 23:31:04 +020062#define OPC_BUF_SIZE 640
bellardb346ff42003-06-15 20:05:50 +000063#define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR)
64
pbrooka208e542008-03-31 17:07:36 +000065/* Maximum size a TCG op can expand to. This is complicated because a
Aurelien Jarno0cbfcd22009-10-22 02:36:27 +020066 single op may require several host instructions and register reloads.
67 For now take a wild guess at 192 bytes, which should allow at least
pbrooka208e542008-03-31 17:07:36 +000068 a couple of fixup instructions per argument. */
Aurelien Jarno0cbfcd22009-10-22 02:36:27 +020069#define TCG_MAX_OP_SIZE 192
pbrooka208e542008-03-31 17:07:36 +000070
pbrook0115be32008-02-03 17:35:41 +000071#define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM)
bellardb346ff42003-06-15 20:05:50 +000072
bellardc27004e2005-01-03 23:35:10 +000073extern target_ulong gen_opc_pc[OPC_BUF_SIZE];
bellardb346ff42003-06-15 20:05:50 +000074extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
pbrook2e70f6e2008-06-29 01:03:05 +000075extern uint16_t gen_opc_icount[OPC_BUF_SIZE];
bellardb346ff42003-06-15 20:05:50 +000076
blueswir179383c92008-08-30 09:51:20 +000077#include "qemu-log.h"
bellardb346ff42003-06-15 20:05:50 +000078
Andreas Färber9349b4f2012-03-14 01:38:32 +010079void gen_intermediate_code(CPUArchState *env, struct TranslationBlock *tb);
80void gen_intermediate_code_pc(CPUArchState *env, struct TranslationBlock *tb);
81void restore_state_to_opc(CPUArchState *env, struct TranslationBlock *tb,
Stefan Weile87b7cb2011-04-18 06:39:52 +000082 int pc_pos);
aurel32d2856f12008-04-28 00:32:32 +000083
bellard57fec1f2008-02-01 10:50:11 +000084void cpu_gen_init(void);
Andreas Färber9349b4f2012-03-14 01:38:32 +010085int cpu_gen_code(CPUArchState *env, struct TranslationBlock *tb,
blueswir1d07bde82007-12-11 19:35:45 +000086 int *gen_code_size_ptr);
ths5fafdf22007-09-16 21:08:06 +000087int cpu_restore_state(struct TranslationBlock *tb,
Stefan Weil6375e092012-04-06 22:26:15 +020088 CPUArchState *env, uintptr_t searched_pc);
Stefan Weil38c30fb2012-04-07 17:58:33 +020089void QEMU_NORETURN cpu_resume_from_signal(CPUArchState *env1, void *puc);
Blue Swirl20503962012-04-09 14:20:20 +000090void QEMU_NORETURN cpu_io_recompile(CPUArchState *env, uintptr_t retaddr);
Andreas Färber9349b4f2012-03-14 01:38:32 +010091TranslationBlock *tb_gen_code(CPUArchState *env,
pbrook2e70f6e2008-06-29 01:03:05 +000092 target_ulong pc, target_ulong cs_base, int flags,
93 int cflags);
Andreas Färber9349b4f2012-03-14 01:38:32 +010094void cpu_exec_init(CPUArchState *env);
95void QEMU_NORETURN cpu_loop_exit(CPUArchState *env1);
Stefan Weil6375e092012-04-06 22:26:15 +020096int page_unprotect(target_ulong address, uintptr_t pc, void *puc);
Paul Brook41c1b1c2010-03-12 16:54:58 +000097void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end,
bellard2e126692004-04-25 21:28:44 +000098 int is_cpu_write_access);
Alexander Graf77a8f1a2012-05-10 22:40:10 +000099void tb_invalidate_phys_range(tb_page_addr_t start, tb_page_addr_t end,
100 int is_cpu_write_access);
Blue Swirl0cac1b62012-04-09 16:50:52 +0000101#if !defined(CONFIG_USER_ONLY)
102/* cputlb.c */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100103void tlb_flush_page(CPUArchState *env, target_ulong addr);
104void tlb_flush(CPUArchState *env, int flush_global);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100105void tlb_set_page(CPUArchState *env, target_ulong vaddr,
Paul Brookd4c430a2010-03-17 02:14:28 +0000106 target_phys_addr_t paddr, int prot,
107 int mmu_idx, target_ulong size);
Max Filippov1e7855a2012-04-10 02:48:17 +0400108void tb_invalidate_phys_addr(target_phys_addr_t addr);
Blue Swirl0cac1b62012-04-09 16:50:52 +0000109#else
110static inline void tlb_flush_page(CPUArchState *env, target_ulong addr)
111{
112}
113
114static inline void tlb_flush(CPUArchState *env, int flush_global)
115{
116}
Paul Brookc527ee82010-03-01 03:31:14 +0000117#endif
bellardd4e81642003-05-25 16:46:15 +0000118
bellardd4e81642003-05-25 16:46:15 +0000119#define CODE_GEN_ALIGN 16 /* must be >= of the size of a icache line */
120
bellard4390df52004-01-04 18:03:10 +0000121#define CODE_GEN_PHYS_HASH_BITS 15
122#define CODE_GEN_PHYS_HASH_SIZE (1 << CODE_GEN_PHYS_HASH_BITS)
123
bellard26a5f132008-05-28 12:30:31 +0000124#define MIN_CODE_GEN_BUFFER_SIZE (1024 * 1024)
bellardd4e81642003-05-25 16:46:15 +0000125
bellard4390df52004-01-04 18:03:10 +0000126/* estimated block size for TB allocation */
127/* XXX: use a per code average code fragment size and modulate it
128 according to the host CPU */
129#if defined(CONFIG_SOFTMMU)
130#define CODE_GEN_AVG_BLOCK_SIZE 128
131#else
132#define CODE_GEN_AVG_BLOCK_SIZE 64
133#endif
134
Filip Navaraa8cd70f2009-07-27 10:02:07 -0500135#if defined(_ARCH_PPC) || defined(__x86_64__) || defined(__arm__) || defined(__i386__)
bellardd4e81642003-05-25 16:46:15 +0000136#define USE_DIRECT_JUMP
Stefan Weil73163292011-10-05 20:03:02 +0200137#elif defined(CONFIG_TCG_INTERPRETER)
138#define USE_DIRECT_JUMP
bellardd4e81642003-05-25 16:46:15 +0000139#endif
140
pbrook2e70f6e2008-06-29 01:03:05 +0000141struct TranslationBlock {
bellard2e126692004-04-25 21:28:44 +0000142 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */
143 target_ulong cs_base; /* CS base for this block */
j_mayerc0686882007-09-20 22:47:42 +0000144 uint64_t flags; /* flags defining in which context the code was generated */
bellardd4e81642003-05-25 16:46:15 +0000145 uint16_t size; /* size of target code for this block (1 <=
146 size <= TARGET_PAGE_SIZE) */
bellard58fe2f12004-02-16 22:11:32 +0000147 uint16_t cflags; /* compile flags */
pbrook2e70f6e2008-06-29 01:03:05 +0000148#define CF_COUNT_MASK 0x7fff
149#define CF_LAST_IO 0x8000 /* Last insn may be an IO access. */
bellard58fe2f12004-02-16 22:11:32 +0000150
bellardd4e81642003-05-25 16:46:15 +0000151 uint8_t *tc_ptr; /* pointer to the translated code */
bellard4390df52004-01-04 18:03:10 +0000152 /* next matching tb for physical address. */
ths5fafdf22007-09-16 21:08:06 +0000153 struct TranslationBlock *phys_hash_next;
bellard4390df52004-01-04 18:03:10 +0000154 /* first and second physical page containing code. The lower bit
155 of the pointer tells the index in page_next[] */
ths5fafdf22007-09-16 21:08:06 +0000156 struct TranslationBlock *page_next[2];
Paul Brook41c1b1c2010-03-12 16:54:58 +0000157 tb_page_addr_t page_addr[2];
bellard4390df52004-01-04 18:03:10 +0000158
bellardd4e81642003-05-25 16:46:15 +0000159 /* the following data are used to directly call another TB from
160 the code of this one. */
161 uint16_t tb_next_offset[2]; /* offset of original jump target */
162#ifdef USE_DIRECT_JUMP
Filip Navaraefc0a512010-03-26 16:06:28 +0000163 uint16_t tb_jmp_offset[2]; /* offset of jump instruction */
bellardd4e81642003-05-25 16:46:15 +0000164#else
Stefan Weil6375e092012-04-06 22:26:15 +0200165 uintptr_t tb_next[2]; /* address of jump generated code */
bellardd4e81642003-05-25 16:46:15 +0000166#endif
167 /* list of TBs jumping to this one. This is a circular list using
168 the two least significant bits of the pointers to tell what is
169 the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
170 jmp_first */
ths5fafdf22007-09-16 21:08:06 +0000171 struct TranslationBlock *jmp_next[2];
bellardd4e81642003-05-25 16:46:15 +0000172 struct TranslationBlock *jmp_first;
pbrook2e70f6e2008-06-29 01:03:05 +0000173 uint32_t icount;
174};
bellardd4e81642003-05-25 16:46:15 +0000175
pbrookb362e5e2006-11-12 20:40:55 +0000176static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc)
177{
178 target_ulong tmp;
179 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
edgar_iglb5e19d42008-05-06 08:38:22 +0000180 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
pbrookb362e5e2006-11-12 20:40:55 +0000181}
182
bellard8a40a182005-11-20 10:35:40 +0000183static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc)
bellardd4e81642003-05-25 16:46:15 +0000184{
pbrookb362e5e2006-11-12 20:40:55 +0000185 target_ulong tmp;
186 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
edgar_iglb5e19d42008-05-06 08:38:22 +0000187 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)
188 | (tmp & TB_JMP_ADDR_MASK));
bellardd4e81642003-05-25 16:46:15 +0000189}
190
Paul Brook41c1b1c2010-03-12 16:54:58 +0000191static inline unsigned int tb_phys_hash_func(tb_page_addr_t pc)
bellard4390df52004-01-04 18:03:10 +0000192{
Aurelien Jarnof96a3832010-12-28 17:46:59 +0100193 return (pc >> 2) & (CODE_GEN_PHYS_HASH_SIZE - 1);
bellard4390df52004-01-04 18:03:10 +0000194}
195
pbrook2e70f6e2008-06-29 01:03:05 +0000196void tb_free(TranslationBlock *tb);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100197void tb_flush(CPUArchState *env);
Paul Brook41c1b1c2010-03-12 16:54:58 +0000198void tb_link_page(TranslationBlock *tb,
199 tb_page_addr_t phys_pc, tb_page_addr_t phys_page2);
200void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr);
bellardd4e81642003-05-25 16:46:15 +0000201
bellard4390df52004-01-04 18:03:10 +0000202extern TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE];
bellardd4e81642003-05-25 16:46:15 +0000203
bellard4390df52004-01-04 18:03:10 +0000204#if defined(USE_DIRECT_JUMP)
205
Stefan Weil73163292011-10-05 20:03:02 +0200206#if defined(CONFIG_TCG_INTERPRETER)
207static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
208{
209 /* patch the branch destination */
210 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
211 /* no need to flush icache explicitly */
212}
213#elif defined(_ARCH_PPC)
Blue Swirl64b85a82011-01-23 16:21:20 +0000214void ppc_tb_set_jmp_target(unsigned long jmp_addr, unsigned long addr);
malc810260a2008-07-23 19:17:46 +0000215#define tb_set_jmp_target1 ppc_tb_set_jmp_target
bellard57fec1f2008-02-01 10:50:11 +0000216#elif defined(__i386__) || defined(__x86_64__)
Stefan Weil6375e092012-04-06 22:26:15 +0200217static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
bellard4390df52004-01-04 18:03:10 +0000218{
219 /* patch the branch destination */
220 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
ths1235fc02008-06-03 19:51:57 +0000221 /* no need to flush icache explicitly */
bellard4390df52004-01-04 18:03:10 +0000222}
balrog811d4cf2008-05-19 23:59:38 +0000223#elif defined(__arm__)
Stefan Weil6375e092012-04-06 22:26:15 +0200224static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
balrog811d4cf2008-05-19 23:59:38 +0000225{
Aurelien Jarno4a1e19a2010-12-21 19:32:49 +0100226#if !QEMU_GNUC_PREREQ(4, 1)
balrog811d4cf2008-05-19 23:59:38 +0000227 register unsigned long _beg __asm ("a1");
228 register unsigned long _end __asm ("a2");
229 register unsigned long _flg __asm ("a3");
balrog3233f0d2008-12-01 02:02:37 +0000230#endif
balrog811d4cf2008-05-19 23:59:38 +0000231
232 /* we could use a ldr pc, [pc, #-4] kind of branch and avoid the flush */
Laurent Desnogues87b78ad2009-09-21 14:27:59 +0200233 *(uint32_t *)jmp_addr =
234 (*(uint32_t *)jmp_addr & ~0xffffff)
235 | (((addr - (jmp_addr + 8)) >> 2) & 0xffffff);
balrog811d4cf2008-05-19 23:59:38 +0000236
balrog3233f0d2008-12-01 02:02:37 +0000237#if QEMU_GNUC_PREREQ(4, 1)
Aurelien Jarno4a1e19a2010-12-21 19:32:49 +0100238 __builtin___clear_cache((char *) jmp_addr, (char *) jmp_addr + 4);
balrog3233f0d2008-12-01 02:02:37 +0000239#else
balrog811d4cf2008-05-19 23:59:38 +0000240 /* flush icache */
241 _beg = jmp_addr;
242 _end = jmp_addr + 4;
243 _flg = 0;
244 __asm __volatile__ ("swi 0x9f0002" : : "r" (_beg), "r" (_end), "r" (_flg));
balrog3233f0d2008-12-01 02:02:37 +0000245#endif
balrog811d4cf2008-05-19 23:59:38 +0000246}
Stefan Weil73163292011-10-05 20:03:02 +0200247#else
248#error tb_set_jmp_target1 is missing
bellard4390df52004-01-04 18:03:10 +0000249#endif
bellardd4e81642003-05-25 16:46:15 +0000250
ths5fafdf22007-09-16 21:08:06 +0000251static inline void tb_set_jmp_target(TranslationBlock *tb,
Stefan Weil6375e092012-04-06 22:26:15 +0200252 int n, uintptr_t addr)
bellard4cbb86e2003-09-17 22:53:29 +0000253{
Stefan Weil6375e092012-04-06 22:26:15 +0200254 uint16_t offset = tb->tb_jmp_offset[n];
255 tb_set_jmp_target1((uintptr_t)(tb->tc_ptr + offset), addr);
bellard4cbb86e2003-09-17 22:53:29 +0000256}
257
bellardd4e81642003-05-25 16:46:15 +0000258#else
259
260/* set the jump target */
ths5fafdf22007-09-16 21:08:06 +0000261static inline void tb_set_jmp_target(TranslationBlock *tb,
Stefan Weil6375e092012-04-06 22:26:15 +0200262 int n, uintptr_t addr)
bellardd4e81642003-05-25 16:46:15 +0000263{
bellard95f76522003-06-05 00:54:44 +0000264 tb->tb_next[n] = addr;
bellardd4e81642003-05-25 16:46:15 +0000265}
266
267#endif
268
ths5fafdf22007-09-16 21:08:06 +0000269static inline void tb_add_jump(TranslationBlock *tb, int n,
bellardd4e81642003-05-25 16:46:15 +0000270 TranslationBlock *tb_next)
271{
bellardcf256292003-05-25 19:20:31 +0000272 /* NOTE: this test is only needed for thread safety */
273 if (!tb->jmp_next[n]) {
274 /* patch the native jump address */
Stefan Weil6375e092012-04-06 22:26:15 +0200275 tb_set_jmp_target(tb, n, (uintptr_t)tb_next->tc_ptr);
ths3b46e622007-09-17 08:09:54 +0000276
bellardcf256292003-05-25 19:20:31 +0000277 /* add in TB jmp circular list */
278 tb->jmp_next[n] = tb_next->jmp_first;
Stefan Weil6375e092012-04-06 22:26:15 +0200279 tb_next->jmp_first = (TranslationBlock *)((uintptr_t)(tb) | (n));
bellardcf256292003-05-25 19:20:31 +0000280 }
bellardd4e81642003-05-25 16:46:15 +0000281}
282
Stefan Weil6375e092012-04-06 22:26:15 +0200283TranslationBlock *tb_find_pc(uintptr_t pc_ptr);
bellarda513fe12003-05-27 23:29:48 +0000284
pbrookd5975362008-06-07 20:50:51 +0000285#include "qemu-lock.h"
bellardd4e81642003-05-25 16:46:15 +0000286
Anthony Liguoric227f092009-10-01 16:12:16 -0500287extern spinlock_t tb_lock;
bellardd4e81642003-05-25 16:46:15 +0000288
bellard36bdbe52003-11-19 22:12:02 +0000289extern int tb_invalidated_flag;
bellard6e59c1d2003-10-27 21:24:54 +0000290
Blue Swirl39171492011-09-21 18:13:16 +0000291/* The return address may point to the start of the next instruction.
292 Subtracting one gets us the call instruction itself. */
Stefan Weil73163292011-10-05 20:03:02 +0200293#if defined(CONFIG_TCG_INTERPRETER)
294/* Alpha and SH4 user mode emulations and Softmmu call GETPC().
295 For all others, GETPC remains undefined (which makes TCI a little faster. */
296# if defined(CONFIG_SOFTMMU) || defined(TARGET_ALPHA) || defined(TARGET_SH4)
Stefan Weilc3ca0462012-04-17 19:22:39 +0200297extern uintptr_t tci_tb_ptr;
Stefan Weil73163292011-10-05 20:03:02 +0200298# define GETPC() tci_tb_ptr
299# endif
300#elif defined(__s390__) && !defined(__s390x__)
Stefan Weil6375e092012-04-06 22:26:15 +0200301# define GETPC() \
Blue Swirl20503962012-04-09 14:20:20 +0000302 (((uintptr_t)__builtin_return_address(0) & 0x7fffffffUL) - 1)
Blue Swirl39171492011-09-21 18:13:16 +0000303#elif defined(__arm__)
304/* Thumb return addresses have the low bit set, so we need to subtract two.
305 This is still safe in ARM mode because instructions are 4 bytes. */
Blue Swirl20503962012-04-09 14:20:20 +0000306# define GETPC() ((uintptr_t)__builtin_return_address(0) - 2)
Blue Swirl39171492011-09-21 18:13:16 +0000307#else
Blue Swirl20503962012-04-09 14:20:20 +0000308# define GETPC() ((uintptr_t)__builtin_return_address(0) - 1)
Blue Swirl39171492011-09-21 18:13:16 +0000309#endif
310
bellarde95c8d52004-09-30 22:22:08 +0000311#if !defined(CONFIG_USER_ONLY)
bellard6e59c1d2003-10-27 21:24:54 +0000312
Avi Kivity37ec01d2012-03-08 18:08:35 +0200313struct MemoryRegion *iotlb_to_region(target_phys_addr_t index);
314uint64_t io_mem_read(struct MemoryRegion *mr, target_phys_addr_t addr,
315 unsigned size);
316void io_mem_write(struct MemoryRegion *mr, target_phys_addr_t addr,
317 uint64_t value, unsigned size);
Paul Brookb3755a92010-03-12 16:54:58 +0000318
Andreas Färber9349b4f2012-03-14 01:38:32 +0100319void tlb_fill(CPUArchState *env1, target_ulong addr, int is_write, int mmu_idx,
Blue Swirl20503962012-04-09 14:20:20 +0000320 uintptr_t retaddr);
bellard6e59c1d2003-10-27 21:24:54 +0000321
blueswir179383c92008-08-30 09:51:20 +0000322#include "softmmu_defs.h"
323
j_mayer6ebbf392007-10-14 07:07:08 +0000324#define ACCESS_TYPE (NB_MMU_MODES + 1)
bellard6e59c1d2003-10-27 21:24:54 +0000325#define MEMSUFFIX _code
Blue Swirle141ab52011-09-18 14:55:46 +0000326#ifndef CONFIG_TCG_PASS_AREG0
bellard6e59c1d2003-10-27 21:24:54 +0000327#define env cpu_single_env
Blue Swirle141ab52011-09-18 14:55:46 +0000328#endif
bellard6e59c1d2003-10-27 21:24:54 +0000329
330#define DATA_SIZE 1
331#include "softmmu_header.h"
332
333#define DATA_SIZE 2
334#include "softmmu_header.h"
335
336#define DATA_SIZE 4
337#include "softmmu_header.h"
338
bellardc27004e2005-01-03 23:35:10 +0000339#define DATA_SIZE 8
340#include "softmmu_header.h"
341
bellard6e59c1d2003-10-27 21:24:54 +0000342#undef ACCESS_TYPE
343#undef MEMSUFFIX
344#undef env
345
346#endif
bellard4390df52004-01-04 18:03:10 +0000347
348#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100349static inline tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr)
bellard4390df52004-01-04 18:03:10 +0000350{
351 return addr;
352}
353#else
Blue Swirl0cac1b62012-04-09 16:50:52 +0000354/* cputlb.c */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100355tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr);
bellard4390df52004-01-04 18:03:10 +0000356#endif
bellard9df217a2005-02-10 22:05:51 +0000357
Andreas Färber9349b4f2012-03-14 01:38:32 +0100358typedef void (CPUDebugExcpHandler)(CPUArchState *env);
aliguoridde23672008-11-18 20:50:36 +0000359
360CPUDebugExcpHandler *cpu_set_debug_excp_handler(CPUDebugExcpHandler *handler);
aurel321b530a62009-04-05 20:08:59 +0000361
362/* vl.c */
363extern int singlestep;
364
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300365/* cpu-exec.c */
366extern volatile sig_atomic_t exit_request;
367
Paolo Bonzini946fb272011-09-12 13:57:37 +0200368/* Deterministic execution requires that IO only be performed on the last
369 instruction of a TB so that interrupts take effect immediately. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100370static inline int can_do_io(CPUArchState *env)
Paolo Bonzini946fb272011-09-12 13:57:37 +0200371{
372 if (!use_icount) {
373 return 1;
374 }
375 /* If not executing code then assume we are ok. */
376 if (!env->current_tb) {
377 return 1;
378 }
379 return env->can_do_io != 0;
380}
381
aliguori875cdcf2008-10-23 13:52:00 +0000382#endif