blob: ad6d22b6c56c16aa6dfab045de122a3ff91416b1 [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
Stefan Weil3cebc3f2012-09-12 19:18:55 +020054#define MAX_OPC_PARAM_IARGS 5
Stuart Brady4d0e4ac2010-04-27 22:23:35 +010055#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,
Avi Kivitya8170e52012-10-23 12:30:10 +0200106 hwaddr paddr, int prot,
Paul Brookd4c430a2010-03-17 02:14:28 +0000107 int mmu_idx, target_ulong size);
Avi Kivitya8170e52012-10-23 12:30:10 +0200108void tb_invalidate_phys_addr(hwaddr 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
bellard4390df52004-01-04 18:03:10 +0000124/* estimated block size for TB allocation */
125/* XXX: use a per code average code fragment size and modulate it
126 according to the host CPU */
127#if defined(CONFIG_SOFTMMU)
128#define CODE_GEN_AVG_BLOCK_SIZE 128
129#else
130#define CODE_GEN_AVG_BLOCK_SIZE 64
131#endif
132
Richard Henderson5bbd2ca2012-09-21 10:48:51 -0700133#if defined(__arm__) || defined(_ARCH_PPC) \
134 || defined(__x86_64__) || defined(__i386__) \
135 || defined(__sparc__) \
136 || defined(CONFIG_TCG_INTERPRETER)
Stefan Weil73163292011-10-05 20:03:02 +0200137#define USE_DIRECT_JUMP
bellardd4e81642003-05-25 16:46:15 +0000138#endif
139
pbrook2e70f6e2008-06-29 01:03:05 +0000140struct TranslationBlock {
bellard2e126692004-04-25 21:28:44 +0000141 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */
142 target_ulong cs_base; /* CS base for this block */
j_mayerc0686882007-09-20 22:47:42 +0000143 uint64_t flags; /* flags defining in which context the code was generated */
bellardd4e81642003-05-25 16:46:15 +0000144 uint16_t size; /* size of target code for this block (1 <=
145 size <= TARGET_PAGE_SIZE) */
bellard58fe2f12004-02-16 22:11:32 +0000146 uint16_t cflags; /* compile flags */
pbrook2e70f6e2008-06-29 01:03:05 +0000147#define CF_COUNT_MASK 0x7fff
148#define CF_LAST_IO 0x8000 /* Last insn may be an IO access. */
bellard58fe2f12004-02-16 22:11:32 +0000149
bellardd4e81642003-05-25 16:46:15 +0000150 uint8_t *tc_ptr; /* pointer to the translated code */
bellard4390df52004-01-04 18:03:10 +0000151 /* next matching tb for physical address. */
ths5fafdf22007-09-16 21:08:06 +0000152 struct TranslationBlock *phys_hash_next;
bellard4390df52004-01-04 18:03:10 +0000153 /* first and second physical page containing code. The lower bit
154 of the pointer tells the index in page_next[] */
ths5fafdf22007-09-16 21:08:06 +0000155 struct TranslationBlock *page_next[2];
Paul Brook41c1b1c2010-03-12 16:54:58 +0000156 tb_page_addr_t page_addr[2];
bellard4390df52004-01-04 18:03:10 +0000157
bellardd4e81642003-05-25 16:46:15 +0000158 /* the following data are used to directly call another TB from
159 the code of this one. */
160 uint16_t tb_next_offset[2]; /* offset of original jump target */
161#ifdef USE_DIRECT_JUMP
Filip Navaraefc0a512010-03-26 16:06:28 +0000162 uint16_t tb_jmp_offset[2]; /* offset of jump instruction */
bellardd4e81642003-05-25 16:46:15 +0000163#else
Stefan Weil6375e092012-04-06 22:26:15 +0200164 uintptr_t tb_next[2]; /* address of jump generated code */
bellardd4e81642003-05-25 16:46:15 +0000165#endif
166 /* list of TBs jumping to this one. This is a circular list using
167 the two least significant bits of the pointers to tell what is
168 the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
169 jmp_first */
ths5fafdf22007-09-16 21:08:06 +0000170 struct TranslationBlock *jmp_next[2];
bellardd4e81642003-05-25 16:46:15 +0000171 struct TranslationBlock *jmp_first;
pbrook2e70f6e2008-06-29 01:03:05 +0000172 uint32_t icount;
173};
bellardd4e81642003-05-25 16:46:15 +0000174
pbrookb362e5e2006-11-12 20:40:55 +0000175static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc)
176{
177 target_ulong tmp;
178 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
edgar_iglb5e19d42008-05-06 08:38:22 +0000179 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
pbrookb362e5e2006-11-12 20:40:55 +0000180}
181
bellard8a40a182005-11-20 10:35:40 +0000182static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc)
bellardd4e81642003-05-25 16:46:15 +0000183{
pbrookb362e5e2006-11-12 20:40:55 +0000184 target_ulong tmp;
185 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
edgar_iglb5e19d42008-05-06 08:38:22 +0000186 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)
187 | (tmp & TB_JMP_ADDR_MASK));
bellardd4e81642003-05-25 16:46:15 +0000188}
189
Paul Brook41c1b1c2010-03-12 16:54:58 +0000190static inline unsigned int tb_phys_hash_func(tb_page_addr_t pc)
bellard4390df52004-01-04 18:03:10 +0000191{
Aurelien Jarnof96a3832010-12-28 17:46:59 +0100192 return (pc >> 2) & (CODE_GEN_PHYS_HASH_SIZE - 1);
bellard4390df52004-01-04 18:03:10 +0000193}
194
pbrook2e70f6e2008-06-29 01:03:05 +0000195void tb_free(TranslationBlock *tb);
Andreas Färber9349b4f2012-03-14 01:38:32 +0100196void tb_flush(CPUArchState *env);
Paul Brook41c1b1c2010-03-12 16:54:58 +0000197void tb_link_page(TranslationBlock *tb,
198 tb_page_addr_t phys_pc, tb_page_addr_t phys_page2);
199void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr);
bellardd4e81642003-05-25 16:46:15 +0000200
bellard4390df52004-01-04 18:03:10 +0000201extern TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE];
bellardd4e81642003-05-25 16:46:15 +0000202
bellard4390df52004-01-04 18:03:10 +0000203#if defined(USE_DIRECT_JUMP)
204
Stefan Weil73163292011-10-05 20:03:02 +0200205#if defined(CONFIG_TCG_INTERPRETER)
206static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
207{
208 /* patch the branch destination */
209 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
210 /* no need to flush icache explicitly */
211}
212#elif defined(_ARCH_PPC)
Blue Swirl64b85a82011-01-23 16:21:20 +0000213void ppc_tb_set_jmp_target(unsigned long jmp_addr, unsigned long addr);
malc810260a2008-07-23 19:17:46 +0000214#define tb_set_jmp_target1 ppc_tb_set_jmp_target
bellard57fec1f2008-02-01 10:50:11 +0000215#elif defined(__i386__) || defined(__x86_64__)
Stefan Weil6375e092012-04-06 22:26:15 +0200216static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
bellard4390df52004-01-04 18:03:10 +0000217{
218 /* patch the branch destination */
219 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
ths1235fc02008-06-03 19:51:57 +0000220 /* no need to flush icache explicitly */
bellard4390df52004-01-04 18:03:10 +0000221}
balrog811d4cf2008-05-19 23:59:38 +0000222#elif defined(__arm__)
Stefan Weil6375e092012-04-06 22:26:15 +0200223static inline void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr)
balrog811d4cf2008-05-19 23:59:38 +0000224{
Aurelien Jarno4a1e19a2010-12-21 19:32:49 +0100225#if !QEMU_GNUC_PREREQ(4, 1)
balrog811d4cf2008-05-19 23:59:38 +0000226 register unsigned long _beg __asm ("a1");
227 register unsigned long _end __asm ("a2");
228 register unsigned long _flg __asm ("a3");
balrog3233f0d2008-12-01 02:02:37 +0000229#endif
balrog811d4cf2008-05-19 23:59:38 +0000230
231 /* we could use a ldr pc, [pc, #-4] kind of branch and avoid the flush */
Laurent Desnogues87b78ad2009-09-21 14:27:59 +0200232 *(uint32_t *)jmp_addr =
233 (*(uint32_t *)jmp_addr & ~0xffffff)
234 | (((addr - (jmp_addr + 8)) >> 2) & 0xffffff);
balrog811d4cf2008-05-19 23:59:38 +0000235
balrog3233f0d2008-12-01 02:02:37 +0000236#if QEMU_GNUC_PREREQ(4, 1)
Aurelien Jarno4a1e19a2010-12-21 19:32:49 +0100237 __builtin___clear_cache((char *) jmp_addr, (char *) jmp_addr + 4);
balrog3233f0d2008-12-01 02:02:37 +0000238#else
balrog811d4cf2008-05-19 23:59:38 +0000239 /* flush icache */
240 _beg = jmp_addr;
241 _end = jmp_addr + 4;
242 _flg = 0;
243 __asm __volatile__ ("swi 0x9f0002" : : "r" (_beg), "r" (_end), "r" (_flg));
balrog3233f0d2008-12-01 02:02:37 +0000244#endif
balrog811d4cf2008-05-19 23:59:38 +0000245}
Richard Henderson5bbd2ca2012-09-21 10:48:51 -0700246#elif defined(__sparc__)
247void tb_set_jmp_target1(uintptr_t jmp_addr, uintptr_t addr);
Stefan Weil73163292011-10-05 20:03:02 +0200248#else
249#error tb_set_jmp_target1 is missing
bellard4390df52004-01-04 18:03:10 +0000250#endif
bellardd4e81642003-05-25 16:46:15 +0000251
ths5fafdf22007-09-16 21:08:06 +0000252static inline void tb_set_jmp_target(TranslationBlock *tb,
Stefan Weil6375e092012-04-06 22:26:15 +0200253 int n, uintptr_t addr)
bellard4cbb86e2003-09-17 22:53:29 +0000254{
Stefan Weil6375e092012-04-06 22:26:15 +0200255 uint16_t offset = tb->tb_jmp_offset[n];
256 tb_set_jmp_target1((uintptr_t)(tb->tc_ptr + offset), addr);
bellard4cbb86e2003-09-17 22:53:29 +0000257}
258
bellardd4e81642003-05-25 16:46:15 +0000259#else
260
261/* set the jump target */
ths5fafdf22007-09-16 21:08:06 +0000262static inline void tb_set_jmp_target(TranslationBlock *tb,
Stefan Weil6375e092012-04-06 22:26:15 +0200263 int n, uintptr_t addr)
bellardd4e81642003-05-25 16:46:15 +0000264{
bellard95f76522003-06-05 00:54:44 +0000265 tb->tb_next[n] = addr;
bellardd4e81642003-05-25 16:46:15 +0000266}
267
268#endif
269
ths5fafdf22007-09-16 21:08:06 +0000270static inline void tb_add_jump(TranslationBlock *tb, int n,
bellardd4e81642003-05-25 16:46:15 +0000271 TranslationBlock *tb_next)
272{
bellardcf256292003-05-25 19:20:31 +0000273 /* NOTE: this test is only needed for thread safety */
274 if (!tb->jmp_next[n]) {
275 /* patch the native jump address */
Stefan Weil6375e092012-04-06 22:26:15 +0200276 tb_set_jmp_target(tb, n, (uintptr_t)tb_next->tc_ptr);
ths3b46e622007-09-17 08:09:54 +0000277
bellardcf256292003-05-25 19:20:31 +0000278 /* add in TB jmp circular list */
279 tb->jmp_next[n] = tb_next->jmp_first;
Stefan Weil6375e092012-04-06 22:26:15 +0200280 tb_next->jmp_first = (TranslationBlock *)((uintptr_t)(tb) | (n));
bellardcf256292003-05-25 19:20:31 +0000281 }
bellardd4e81642003-05-25 16:46:15 +0000282}
283
Stefan Weil6375e092012-04-06 22:26:15 +0200284TranslationBlock *tb_find_pc(uintptr_t pc_ptr);
bellarda513fe12003-05-27 23:29:48 +0000285
pbrookd5975362008-06-07 20:50:51 +0000286#include "qemu-lock.h"
bellardd4e81642003-05-25 16:46:15 +0000287
Anthony Liguoric227f092009-10-01 16:12:16 -0500288extern spinlock_t tb_lock;
bellardd4e81642003-05-25 16:46:15 +0000289
bellard36bdbe52003-11-19 22:12:02 +0000290extern int tb_invalidated_flag;
bellard6e59c1d2003-10-27 21:24:54 +0000291
Blue Swirl39171492011-09-21 18:13:16 +0000292/* The return address may point to the start of the next instruction.
293 Subtracting one gets us the call instruction itself. */
Stefan Weil73163292011-10-05 20:03:02 +0200294#if defined(CONFIG_TCG_INTERPRETER)
295/* Alpha and SH4 user mode emulations and Softmmu call GETPC().
296 For all others, GETPC remains undefined (which makes TCI a little faster. */
Michael Roth42a15922012-10-08 15:45:49 -0500297# if defined(CONFIG_SOFTMMU) || defined(TARGET_ALPHA) || defined(TARGET_SH4) \
298 || defined(TARGET_SPARC)
Stefan Weilc3ca0462012-04-17 19:22:39 +0200299extern uintptr_t tci_tb_ptr;
Stefan Weil73163292011-10-05 20:03:02 +0200300# define GETPC() tci_tb_ptr
301# endif
302#elif defined(__s390__) && !defined(__s390x__)
Stefan Weil6375e092012-04-06 22:26:15 +0200303# define GETPC() \
Blue Swirl20503962012-04-09 14:20:20 +0000304 (((uintptr_t)__builtin_return_address(0) & 0x7fffffffUL) - 1)
Blue Swirl39171492011-09-21 18:13:16 +0000305#elif defined(__arm__)
306/* Thumb return addresses have the low bit set, so we need to subtract two.
307 This is still safe in ARM mode because instructions are 4 bytes. */
Blue Swirl20503962012-04-09 14:20:20 +0000308# define GETPC() ((uintptr_t)__builtin_return_address(0) - 2)
Blue Swirl39171492011-09-21 18:13:16 +0000309#else
Blue Swirl20503962012-04-09 14:20:20 +0000310# define GETPC() ((uintptr_t)__builtin_return_address(0) - 1)
Blue Swirl39171492011-09-21 18:13:16 +0000311#endif
312
Yeongkyoon Leefdbb84d2012-10-31 16:04:24 +0900313#if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU)
314/* qemu_ld/st optimization split code generation to fast and slow path, thus,
315 it needs special handling for an MMU helper which is called from the slow
316 path, to get the fast path's pc without any additional argument.
317 It uses a tricky solution which embeds the fast path pc into the slow path.
318
319 Code flow in slow path:
320 (1) pre-process
321 (2) call MMU helper
322 (3) jump to (5)
323 (4) fast path information (implementation specific)
324 (5) post-process (e.g. stack adjust)
325 (6) jump to corresponding code of the next of fast path
326 */
327# if defined(__i386__) || defined(__x86_64__)
328/* To avoid broken disassembling, long jmp is used for embedding fast path pc,
329 so that the destination is the next code of fast path, though this jmp is
330 never executed.
331
332 call MMU helper
333 jmp POST_PROC (2byte) <- GETRA()
334 jmp NEXT_CODE (5byte)
335 POST_PROCESS ... <- GETRA() + 7
336 */
337# define GETRA() ((uintptr_t)__builtin_return_address(0))
338# define GETPC_LDST() ((uintptr_t)(GETRA() + 7 + \
339 *(int32_t *)((void *)GETRA() + 3) - 1))
340# else
341# error "CONFIG_QEMU_LDST_OPTIMIZATION needs GETPC_LDST() implementation!"
342# endif
343bool is_tcg_gen_code(uintptr_t pc_ptr);
344# define GETPC_EXT() (is_tcg_gen_code(GETRA()) ? GETPC_LDST() : GETPC())
345#else
346# define GETPC_EXT() GETPC()
347#endif
348
bellarde95c8d52004-09-30 22:22:08 +0000349#if !defined(CONFIG_USER_ONLY)
bellard6e59c1d2003-10-27 21:24:54 +0000350
Avi Kivitya8170e52012-10-23 12:30:10 +0200351struct MemoryRegion *iotlb_to_region(hwaddr index);
352uint64_t io_mem_read(struct MemoryRegion *mr, hwaddr addr,
Avi Kivity37ec01d2012-03-08 18:08:35 +0200353 unsigned size);
Avi Kivitya8170e52012-10-23 12:30:10 +0200354void io_mem_write(struct MemoryRegion *mr, hwaddr addr,
Avi Kivity37ec01d2012-03-08 18:08:35 +0200355 uint64_t value, unsigned size);
Paul Brookb3755a92010-03-12 16:54:58 +0000356
Andreas Färber9349b4f2012-03-14 01:38:32 +0100357void tlb_fill(CPUArchState *env1, target_ulong addr, int is_write, int mmu_idx,
Blue Swirl20503962012-04-09 14:20:20 +0000358 uintptr_t retaddr);
bellard6e59c1d2003-10-27 21:24:54 +0000359
blueswir179383c92008-08-30 09:51:20 +0000360#include "softmmu_defs.h"
361
j_mayer6ebbf392007-10-14 07:07:08 +0000362#define ACCESS_TYPE (NB_MMU_MODES + 1)
bellard6e59c1d2003-10-27 21:24:54 +0000363#define MEMSUFFIX _code
bellard6e59c1d2003-10-27 21:24:54 +0000364
365#define DATA_SIZE 1
366#include "softmmu_header.h"
367
368#define DATA_SIZE 2
369#include "softmmu_header.h"
370
371#define DATA_SIZE 4
372#include "softmmu_header.h"
373
bellardc27004e2005-01-03 23:35:10 +0000374#define DATA_SIZE 8
375#include "softmmu_header.h"
376
bellard6e59c1d2003-10-27 21:24:54 +0000377#undef ACCESS_TYPE
378#undef MEMSUFFIX
bellard6e59c1d2003-10-27 21:24:54 +0000379
380#endif
bellard4390df52004-01-04 18:03:10 +0000381
382#if defined(CONFIG_USER_ONLY)
Andreas Färber9349b4f2012-03-14 01:38:32 +0100383static inline tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr)
bellard4390df52004-01-04 18:03:10 +0000384{
385 return addr;
386}
387#else
Blue Swirl0cac1b62012-04-09 16:50:52 +0000388/* cputlb.c */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100389tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr);
bellard4390df52004-01-04 18:03:10 +0000390#endif
bellard9df217a2005-02-10 22:05:51 +0000391
Andreas Färber9349b4f2012-03-14 01:38:32 +0100392typedef void (CPUDebugExcpHandler)(CPUArchState *env);
aliguoridde23672008-11-18 20:50:36 +0000393
Igor Mammedov84e3b602012-06-21 18:29:38 +0200394void cpu_set_debug_excp_handler(CPUDebugExcpHandler *handler);
aurel321b530a62009-04-05 20:08:59 +0000395
396/* vl.c */
397extern int singlestep;
398
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300399/* cpu-exec.c */
400extern volatile sig_atomic_t exit_request;
401
Paolo Bonzini946fb272011-09-12 13:57:37 +0200402/* Deterministic execution requires that IO only be performed on the last
403 instruction of a TB so that interrupts take effect immediately. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100404static inline int can_do_io(CPUArchState *env)
Paolo Bonzini946fb272011-09-12 13:57:37 +0200405{
406 if (!use_icount) {
407 return 1;
408 }
409 /* If not executing code then assume we are ok. */
410 if (!env->current_tb) {
411 return 1;
412 }
413 return env->can_do_io != 0;
414}
415
aliguori875cdcf2008-10-23 13:52:00 +0000416#endif