VirtualBox

source: vbox/trunk/src/recompiler/exec-all.h@ 37689

Last change on this file since 37689 was 37689, checked in by vboxsync, 13 years ago

recompiler: Merged in changes from 0.13.0.

  • Property svn:eol-style set to native
File size: 13.1 KB
Line 
1/*
2 * internal execution defines for qemu
3 *
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, see <http://www.gnu.org/licenses/>.
18 */
19
20/*
21 * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
22 * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
23 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
24 * a choice of LGPL license versions is made available with the language indicating
25 * that LGPLv2 or any later version may be used, or where a choice of which version
26 * of the LGPL is applied is otherwise unspecified.
27 */
28
29#ifndef _EXEC_ALL_H_
30#define _EXEC_ALL_H_
31
32#include "qemu-common.h"
33#ifdef VBOX
34# include <VBox/vmm/tm.h>
35# include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */
36# ifndef LOG_GROUP
37# define LOG_GROUP LOG_GROUP_REM
38# endif
39# include <VBox/log.h>
40# include "REMInternal.h"
41# include <VBox/vmm/vm.h>
42#endif /* VBOX */
43
44/* allow to see translation results - the slowdown should be negligible, so we leave it */
45#ifndef VBOX
46#define DEBUG_DISAS
47#endif /* !VBOX */
48
49/* Page tracking code uses ram addresses in system mode, and virtual
50 addresses in userspace mode. Define tb_page_addr_t to be an appropriate
51 type. */
52#if defined(CONFIG_USER_ONLY)
53typedef abi_ulong tb_page_addr_t;
54#else
55typedef ram_addr_t tb_page_addr_t;
56#endif
57
58/* is_jmp field values */
59#define DISAS_NEXT 0 /* next instruction can be analyzed */
60#define DISAS_JUMP 1 /* only pc was modified dynamically */
61#define DISAS_UPDATE 2 /* cpu state was modified dynamically */
62#define DISAS_TB_JUMP 3 /* only pc was modified statically */
63
64typedef struct TranslationBlock TranslationBlock;
65
66/* XXX: make safe guess about sizes */
67#define MAX_OP_PER_INSTR 96
68
69#if HOST_LONG_BITS == 32
70#define MAX_OPC_PARAM_PER_ARG 2
71#else
72#define MAX_OPC_PARAM_PER_ARG 1
73#endif
74#define MAX_OPC_PARAM_IARGS 4
75#define MAX_OPC_PARAM_OARGS 1
76#define MAX_OPC_PARAM_ARGS (MAX_OPC_PARAM_IARGS + MAX_OPC_PARAM_OARGS)
77
78/* A Call op needs up to 4 + 2N parameters on 32-bit archs,
79 * and up to 4 + N parameters on 64-bit archs
80 * (N = number of input arguments + output arguments). */
81#define MAX_OPC_PARAM (4 + (MAX_OPC_PARAM_PER_ARG * MAX_OPC_PARAM_ARGS))
82#define OPC_BUF_SIZE 640
83#define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR)
84
85/* Maximum size a TCG op can expand to. This is complicated because a
86 single op may require several host instructions and register reloads.
87 For now take a wild guess at 192 bytes, which should allow at least
88 a couple of fixup instructions per argument. */
89#define TCG_MAX_OP_SIZE 192
90
91#define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM)
92
93extern target_ulong gen_opc_pc[OPC_BUF_SIZE];
94extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
95extern uint16_t gen_opc_icount[OPC_BUF_SIZE];
96
97#include "qemu-log.h"
98
99void gen_intermediate_code(CPUState *env, struct TranslationBlock *tb);
100void gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb);
101void gen_pc_load(CPUState *env, struct TranslationBlock *tb,
102 unsigned long searched_pc, int pc_pos, void *puc);
103
104void cpu_gen_init(void);
105int cpu_gen_code(CPUState *env, struct TranslationBlock *tb,
106 int *gen_code_size_ptr);
107int cpu_restore_state(struct TranslationBlock *tb,
108 CPUState *env, unsigned long searched_pc,
109 void *puc);
110void cpu_resume_from_signal(CPUState *env1, void *puc);
111void cpu_io_recompile(CPUState *env, void *retaddr);
112TranslationBlock *tb_gen_code(CPUState *env,
113 target_ulong pc, target_ulong cs_base, int flags,
114 int cflags);
115void cpu_exec_init(CPUState *env);
116void QEMU_NORETURN cpu_loop_exit(void);
117int page_unprotect(target_ulong address, unsigned long pc, void *puc);
118void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end,
119 int is_cpu_write_access);
120void tb_invalidate_page_range(target_ulong start, target_ulong end);
121void tlb_flush_page(CPUState *env, target_ulong addr);
122void tlb_flush(CPUState *env, int flush_global);
123#if !defined(CONFIG_USER_ONLY)
124void tlb_set_page(CPUState *env, target_ulong vaddr,
125 target_phys_addr_t paddr, int prot,
126 int mmu_idx, target_ulong size);
127#endif
128
129#define CODE_GEN_ALIGN 16 /* must be >= of the size of a icache line */
130
131#define CODE_GEN_PHYS_HASH_BITS 15
132#define CODE_GEN_PHYS_HASH_SIZE (1 << CODE_GEN_PHYS_HASH_BITS)
133
134#define MIN_CODE_GEN_BUFFER_SIZE (1024 * 1024)
135
136/* estimated block size for TB allocation */
137/* XXX: use a per code average code fragment size and modulate it
138 according to the host CPU */
139#if defined(CONFIG_SOFTMMU)
140#define CODE_GEN_AVG_BLOCK_SIZE 128
141#else
142#define CODE_GEN_AVG_BLOCK_SIZE 64
143#endif
144
145#if defined(_ARCH_PPC) || defined(__x86_64__) || defined(__arm__) || defined(__i386__)
146#define USE_DIRECT_JUMP
147#endif
148
149#ifdef VBOX /* bird: not safe in next step because of threading & cpu_interrupt. */
150# undef USE_DIRECT_JUMP
151#endif /* VBOX */
152
153struct TranslationBlock {
154 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */
155 target_ulong cs_base; /* CS base for this block */
156 uint64_t flags; /* flags defining in which context the code was generated */
157 uint16_t size; /* size of target code for this block (1 <=
158 size <= TARGET_PAGE_SIZE) */
159 uint16_t cflags; /* compile flags */
160#define CF_COUNT_MASK 0x7fff
161#define CF_LAST_IO 0x8000 /* Last insn may be an IO access. */
162#ifdef VBOX
163# define CF_RAW_MODE 0x0010 /* block was generated in raw mode */
164#endif
165
166 uint8_t *tc_ptr; /* pointer to the translated code */
167 /* next matching tb for physical address. */
168 struct TranslationBlock *phys_hash_next;
169 /* first and second physical page containing code. The lower bit
170 of the pointer tells the index in page_next[] */
171 struct TranslationBlock *page_next[2];
172 tb_page_addr_t page_addr[2];
173
174 /* the following data are used to directly call another TB from
175 the code of this one. */
176 uint16_t tb_next_offset[2]; /* offset of original jump target */
177#ifdef USE_DIRECT_JUMP
178 uint16_t tb_jmp_offset[2]; /* offset of jump instruction */
179#else
180 unsigned long tb_next[2]; /* address of jump generated code */
181#endif
182 /* list of TBs jumping to this one. This is a circular list using
183 the two least significant bits of the pointers to tell what is
184 the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
185 jmp_first */
186 struct TranslationBlock *jmp_next[2];
187 struct TranslationBlock *jmp_first;
188 uint32_t icount;
189};
190
191static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc)
192{
193 target_ulong tmp;
194 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
195 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
196}
197
198static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc)
199{
200 target_ulong tmp;
201 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
202 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)
203 | (tmp & TB_JMP_ADDR_MASK));
204}
205
206static inline unsigned int tb_phys_hash_func(tb_page_addr_t pc)
207{
208 return pc & (CODE_GEN_PHYS_HASH_SIZE - 1);
209}
210
211TranslationBlock *tb_alloc(target_ulong pc);
212void tb_free(TranslationBlock *tb);
213void tb_flush(CPUState *env);
214void tb_link_page(TranslationBlock *tb,
215 tb_page_addr_t phys_pc, tb_page_addr_t phys_page2);
216void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr);
217
218extern TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE];
219
220#if defined(USE_DIRECT_JUMP)
221
222#if defined(_ARCH_PPC)
223extern void ppc_tb_set_jmp_target(unsigned long jmp_addr, unsigned long addr);
224#define tb_set_jmp_target1 ppc_tb_set_jmp_target
225#elif defined(__i386__) || defined(__x86_64__)
226static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr)
227{
228 /* patch the branch destination */
229 *(uint32_t *)jmp_addr = addr - (jmp_addr + 4);
230 /* no need to flush icache explicitly */
231}
232#elif defined(__arm__)
233static inline void tb_set_jmp_target1(unsigned long jmp_addr, unsigned long addr)
234{
235#if QEMU_GNUC_PREREQ(4, 1)
236 void __clear_cache(char *beg, char *end);
237#else
238 register unsigned long _beg __asm ("a1");
239 register unsigned long _end __asm ("a2");
240 register unsigned long _flg __asm ("a3");
241#endif
242
243 /* we could use a ldr pc, [pc, #-4] kind of branch and avoid the flush */
244 *(uint32_t *)jmp_addr =
245 (*(uint32_t *)jmp_addr & ~0xffffff)
246 | (((addr - (jmp_addr + 8)) >> 2) & 0xffffff);
247
248#if QEMU_GNUC_PREREQ(4, 1)
249 __clear_cache((char *) jmp_addr, (char *) jmp_addr + 4);
250#else
251 /* flush icache */
252 _beg = jmp_addr;
253 _end = jmp_addr + 4;
254 _flg = 0;
255 __asm __volatile__ ("swi 0x9f0002" : : "r" (_beg), "r" (_end), "r" (_flg));
256#endif
257}
258#endif
259
260static inline void tb_set_jmp_target(TranslationBlock *tb,
261 int n, unsigned long addr)
262{
263 unsigned long offset;
264
265 offset = tb->tb_jmp_offset[n];
266 tb_set_jmp_target1((unsigned long)(tb->tc_ptr + offset), addr);
267}
268
269#else
270
271/* set the jump target */
272static inline void tb_set_jmp_target(TranslationBlock *tb,
273 int n, unsigned long addr)
274{
275 tb->tb_next[n] = addr;
276}
277
278#endif
279
280static inline void tb_add_jump(TranslationBlock *tb, int n,
281 TranslationBlock *tb_next)
282{
283 /* NOTE: this test is only needed for thread safety */
284 if (!tb->jmp_next[n]) {
285 /* patch the native jump address */
286 tb_set_jmp_target(tb, n, (unsigned long)tb_next->tc_ptr);
287
288 /* add in TB jmp circular list */
289 tb->jmp_next[n] = tb_next->jmp_first;
290 tb_next->jmp_first = (TranslationBlock *)((long)(tb) | (n));
291 }
292}
293
294TranslationBlock *tb_find_pc(unsigned long pc_ptr);
295
296#include "qemu-lock.h"
297
298extern spinlock_t tb_lock;
299
300extern int tb_invalidated_flag;
301
302#if !defined(CONFIG_USER_ONLY)
303
304extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4];
305extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4];
306extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];
307
308void tlb_fill(target_ulong addr, int is_write, int mmu_idx,
309 void *retaddr);
310
311#include "softmmu_defs.h"
312
313#define ACCESS_TYPE (NB_MMU_MODES + 1)
314#define MEMSUFFIX _code
315#define env cpu_single_env
316
317#define DATA_SIZE 1
318#include "softmmu_header.h"
319
320#define DATA_SIZE 2
321#include "softmmu_header.h"
322
323#define DATA_SIZE 4
324#include "softmmu_header.h"
325
326#define DATA_SIZE 8
327#include "softmmu_header.h"
328
329#undef ACCESS_TYPE
330#undef MEMSUFFIX
331#undef env
332
333#endif
334
335#if defined(CONFIG_USER_ONLY)
336static inline tb_page_addr_t get_page_addr_code(CPUState *env1, target_ulong addr)
337{
338 return addr;
339}
340#else
341# ifdef VBOX
342target_ulong remR3PhysGetPhysicalAddressCode(CPUState *env, target_ulong addr, CPUTLBEntry *pTLBEntry, target_phys_addr_t ioTLBEntry);
343# endif
344/* NOTE: this function can trigger an exception */
345/* NOTE2: the returned address is not exactly the physical address: it
346 is the offset relative to phys_ram_base */
347static inline tb_page_addr_t get_page_addr_code(CPUState *env1, target_ulong addr)
348{
349 int mmu_idx, page_index, pd;
350 void *p;
351
352 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
353 mmu_idx = cpu_mmu_index(env1);
354 if (unlikely(env1->tlb_table[mmu_idx][page_index].addr_code !=
355 (addr & TARGET_PAGE_MASK))) {
356 ldub_code(addr);
357 }
358 pd = env1->tlb_table[mmu_idx][page_index].addr_code & ~TARGET_PAGE_MASK;
359 if (pd > IO_MEM_ROM && !(pd & IO_MEM_ROMD)) {
360# ifdef VBOX
361 /* deal with non-MMIO access handlers. */
362 return remR3PhysGetPhysicalAddressCode(env1, addr,
363 &env1->tlb_table[mmu_idx][page_index],
364 env1->iotlb[mmu_idx][page_index]);
365# elif defined(TARGET_SPARC) || defined(TARGET_MIPS)
366 do_unassigned_access(addr, 0, 1, 0, 4);
367#else
368 cpu_abort(env1, "Trying to execute code outside RAM or ROM at 0x" TARGET_FMT_lx "\n", addr);
369#endif
370 }
371# if defined(VBOX) && defined(REM_PHYS_ADDR_IN_TLB)
372 return addr + env1->tlb_table[mmu_idx][page_index].addend;
373# elif defined(VBOX)
374 Assert(env1->phys_addends[mmu_idx][page_index] != -1);
375 return addr + env1->phys_addends[mmu_idx][page_index];
376# else
377 p = (void *)(unsigned long)addr
378 + env1->tlb_table[mmu_idx][page_index].addend;
379 return qemu_ram_addr_from_host(p);
380# endif
381}
382#endif
383
384typedef void (CPUDebugExcpHandler)(CPUState *env);
385
386CPUDebugExcpHandler *cpu_set_debug_excp_handler(CPUDebugExcpHandler *handler);
387
388#ifndef VBOX
389/* vl.c */
390extern int singlestep;
391
392/* cpu-exec.c */
393extern volatile sig_atomic_t exit_request;
394#endif /*!VBOX*/
395
396
397#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette