VirtualBox

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

Last change on this file since 36175 was 36175, checked in by vboxsync, 14 years ago

rem: Synced up to v0.11.1 (35bfc7324e2e6946c4113ada5db30553a1a7c40b) from git://git.savannah.nongnu.org/qemu.git.

  • Property svn:eol-style set to native
File size: 14.8 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
34/* allow to see translation results - the slowdown should be negligible, so we leave it */
35#ifndef VBOX
36#define DEBUG_DISAS
37#endif
38
39#ifdef VBOX
40# include <VBox/vmm/tm.h>
41# include <VBox/vmm/pgm.h> /* PGM_DYNAMIC_RAM_ALLOC */
42# ifndef LOG_GROUP
43# define LOG_GROUP LOG_GROUP_REM
44# endif
45# include <VBox/log.h>
46# include "REMInternal.h"
47# include <VBox/vmm/vm.h>
48#endif /* VBOX */
49
50/* is_jmp field values */
51#define DISAS_NEXT 0 /* next instruction can be analyzed */
52#define DISAS_JUMP 1 /* only pc was modified dynamically */
53#define DISAS_UPDATE 2 /* cpu state was modified dynamically */
54#define DISAS_TB_JUMP 3 /* only pc was modified statically */
55
56typedef struct TranslationBlock TranslationBlock;
57
58/* XXX: make safe guess about sizes */
59#define MAX_OP_PER_INSTR 96
60/* A Call op needs up to 6 + 2N parameters (N = number of arguments). */
61#define MAX_OPC_PARAM 10
62#define OPC_BUF_SIZE 512
63#define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR)
64
65/* Maximum size a TCG op can expand to. This is complicated because a
66 single op may require several host instructions and regirster reloads.
67 For now take a wild guess at 128 bytes, which should allow at least
68 a couple of fixup instructions per argument. */
69#define TCG_MAX_OP_SIZE 128
70
71#define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM)
72
73extern target_ulong gen_opc_pc[OPC_BUF_SIZE];
74extern target_ulong gen_opc_npc[OPC_BUF_SIZE];
75extern uint8_t gen_opc_cc_op[OPC_BUF_SIZE];
76extern uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
77extern uint16_t gen_opc_icount[OPC_BUF_SIZE];
78extern target_ulong gen_opc_jump_pc[2];
79extern uint32_t gen_opc_hflags[OPC_BUF_SIZE];
80
81#include "qemu-log.h"
82
83void gen_intermediate_code(CPUState *env, struct TranslationBlock *tb);
84void gen_intermediate_code_pc(CPUState *env, struct TranslationBlock *tb);
85void gen_pc_load(CPUState *env, struct TranslationBlock *tb,
86 unsigned long searched_pc, int pc_pos, void *puc);
87
88unsigned long code_gen_max_block_size(void);
89void cpu_gen_init(void);
90int cpu_gen_code(CPUState *env, struct TranslationBlock *tb,
91 int *gen_code_size_ptr);
92int cpu_restore_state(struct TranslationBlock *tb,
93 CPUState *env, unsigned long searched_pc,
94 void *puc);
95int cpu_restore_state_copy(struct TranslationBlock *tb,
96 CPUState *env, unsigned long searched_pc,
97 void *puc);
98void cpu_resume_from_signal(CPUState *env1, void *puc);
99void cpu_io_recompile(CPUState *env, void *retaddr);
100TranslationBlock *tb_gen_code(CPUState *env,
101 target_ulong pc, target_ulong cs_base, int flags,
102 int cflags);
103void cpu_exec_init(CPUState *env);
104void QEMU_NORETURN cpu_loop_exit(void);
105int page_unprotect(target_ulong address, unsigned long pc, void *puc);
106void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end,
107 int is_cpu_write_access);
108void tb_invalidate_page_range(target_ulong start, target_ulong end);
109void tlb_flush_page(CPUState *env, target_ulong addr);
110void tlb_flush(CPUState *env, int flush_global);
111int tlb_set_page_exec(CPUState *env, target_ulong vaddr,
112 target_phys_addr_t paddr, int prot,
113 int mmu_idx, int is_softmmu);
114static inline int tlb_set_page(CPUState *env1, target_ulong vaddr,
115 target_phys_addr_t paddr, int prot,
116 int mmu_idx, int is_softmmu)
117{
118 if (prot & PAGE_READ)
119 prot |= PAGE_EXEC;
120 return tlb_set_page_exec(env1, vaddr, paddr, prot, mmu_idx, is_softmmu);
121}
122
123#define CODE_GEN_ALIGN 16 /* must be >= of the size of a icache line */
124
125#define CODE_GEN_PHYS_HASH_BITS 15
126#define CODE_GEN_PHYS_HASH_SIZE (1 << CODE_GEN_PHYS_HASH_BITS)
127
128#define MIN_CODE_GEN_BUFFER_SIZE (1024 * 1024)
129
130/* estimated block size for TB allocation */
131/* XXX: use a per code average code fragment size and modulate it
132 according to the host CPU */
133#if defined(CONFIG_SOFTMMU)
134#define CODE_GEN_AVG_BLOCK_SIZE 128
135#else
136#define CODE_GEN_AVG_BLOCK_SIZE 64
137#endif
138
139#if defined(_ARCH_PPC) || defined(__x86_64__) || defined(__arm__)
140#define USE_DIRECT_JUMP
141#endif
142#if defined(__i386__) && !defined(_WIN32)
143#define USE_DIRECT_JUMP
144#endif
145
146#ifdef VBOX /* bird: not safe in next step because of threading & cpu_interrupt. */
147#undef USE_DIRECT_JUMP
148#endif /* VBOX */
149
150struct TranslationBlock {
151 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */
152 target_ulong cs_base; /* CS base for this block */
153 uint64_t flags; /* flags defining in which context the code was generated */
154 uint16_t size; /* size of target code for this block (1 <=
155 size <= TARGET_PAGE_SIZE) */
156 uint16_t cflags; /* compile flags */
157#define CF_COUNT_MASK 0x7fff
158#define CF_LAST_IO 0x8000 /* Last insn may be an IO access. */
159
160#ifdef VBOX
161#define CF_RAW_MODE 0x0010 /* block was generated in raw mode */
162#endif
163
164 uint8_t *tc_ptr; /* pointer to the translated code */
165 /* next matching tb for physical address. */
166 struct TranslationBlock *phys_hash_next;
167 /* first and second physical page containing code. The lower bit
168 of the pointer tells the index in page_next[] */
169 struct TranslationBlock *page_next[2];
170 target_ulong page_addr[2];
171
172 /* the following data are used to directly call another TB from
173 the code of this one. */
174 uint16_t tb_next_offset[2]; /* offset of original jump target */
175#ifdef USE_DIRECT_JUMP
176 uint16_t tb_jmp_offset[4]; /* offset of jump instruction */
177#else
178 unsigned long tb_next[2]; /* address of jump generated code */
179#endif
180 /* list of TBs jumping to this one. This is a circular list using
181 the two least significant bits of the pointers to tell what is
182 the next pointer: 0 = jmp_next[0], 1 = jmp_next[1], 2 =
183 jmp_first */
184 struct TranslationBlock *jmp_next[2];
185 struct TranslationBlock *jmp_first;
186 uint32_t icount;
187};
188
189static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc)
190{
191 target_ulong tmp;
192 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
193 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
194}
195
196static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc)
197{
198 target_ulong tmp;
199 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
200 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)
201 | (tmp & TB_JMP_ADDR_MASK));
202}
203
204static inline unsigned int tb_phys_hash_func(unsigned long pc)
205{
206 return pc & (CODE_GEN_PHYS_HASH_SIZE - 1);
207}
208
209TranslationBlock *tb_alloc(target_ulong pc);
210void tb_free(TranslationBlock *tb);
211void tb_flush(CPUState *env);
212void tb_link_phys(TranslationBlock *tb,
213 target_ulong phys_pc, target_ulong phys_page2);
214void tb_phys_invalidate(TranslationBlock *tb, target_ulong page_addr);
215
216extern TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE];
217extern uint8_t *code_gen_ptr;
218extern int code_gen_max_blocks;
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 offset = tb->tb_jmp_offset[n + 2];
268 if (offset != 0xffff)
269 tb_set_jmp_target1((unsigned long)(tb->tc_ptr + offset), addr);
270}
271
272#else
273
274/* set the jump target */
275static inline void tb_set_jmp_target(TranslationBlock *tb,
276 int n, unsigned long addr)
277{
278 tb->tb_next[n] = addr;
279}
280
281#endif
282
283static inline void tb_add_jump(TranslationBlock *tb, int n,
284 TranslationBlock *tb_next)
285{
286 /* NOTE: this test is only needed for thread safety */
287 if (!tb->jmp_next[n]) {
288 /* patch the native jump address */
289 tb_set_jmp_target(tb, n, (unsigned long)tb_next->tc_ptr);
290
291 /* add in TB jmp circular list */
292 tb->jmp_next[n] = tb_next->jmp_first;
293 tb_next->jmp_first = (TranslationBlock *)((long)(tb) | (n));
294 }
295}
296
297TranslationBlock *tb_find_pc(unsigned long pc_ptr);
298
299extern CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4];
300extern CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4];
301extern void *io_mem_opaque[IO_MEM_NB_ENTRIES];
302
303#include "qemu-lock.h"
304
305extern spinlock_t tb_lock;
306
307extern int tb_invalidated_flag;
308
309#if !defined(CONFIG_USER_ONLY)
310
311void tlb_fill(target_ulong addr, int is_write, int mmu_idx,
312 void *retaddr);
313
314#include "softmmu_defs.h"
315
316#define ACCESS_TYPE (NB_MMU_MODES + 1)
317#define MEMSUFFIX _code
318#define env cpu_single_env
319
320#define DATA_SIZE 1
321#include "softmmu_header.h"
322
323#define DATA_SIZE 2
324#include "softmmu_header.h"
325
326#define DATA_SIZE 4
327#include "softmmu_header.h"
328
329#define DATA_SIZE 8
330#include "softmmu_header.h"
331
332#undef ACCESS_TYPE
333#undef MEMSUFFIX
334#undef env
335
336#endif
337
338#if defined(CONFIG_USER_ONLY)
339static inline target_ulong get_phys_addr_code(CPUState *env1, target_ulong addr)
340{
341 return addr;
342}
343#else
344# ifdef VBOX
345target_ulong remR3PhysGetPhysicalAddressCode(CPUState *env, target_ulong addr, CPUTLBEntry *pTLBEntry, target_phys_addr_t ioTLBEntry);
346# endif
347/* NOTE: this function can trigger an exception */
348/* NOTE2: the returned address is not exactly the physical address: it
349 is the offset relative to phys_ram_base */
350static inline target_ulong get_phys_addr_code(CPUState *env1, target_ulong addr)
351{
352 int mmu_idx, page_index, pd;
353 void *p;
354
355 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
356 mmu_idx = cpu_mmu_index(env1);
357 if (unlikely(env1->tlb_table[mmu_idx][page_index].addr_code !=
358 (addr & TARGET_PAGE_MASK))) {
359 ldub_code(addr);
360 }
361 pd = env1->tlb_table[mmu_idx][page_index].addr_code & ~TARGET_PAGE_MASK;
362 if (pd > IO_MEM_ROM && !(pd & IO_MEM_ROMD)) {
363# ifdef VBOX
364 /* deal with non-MMIO access handlers. */
365 return remR3PhysGetPhysicalAddressCode(env1, addr,
366 &env1->tlb_table[mmu_idx][page_index],
367 env1->iotlb[mmu_idx][page_index]);
368# elif defined(TARGET_SPARC) || defined(TARGET_MIPS)
369 do_unassigned_access(addr, 0, 1, 0, 4);
370#else
371 cpu_abort(env1, "Trying to execute code outside RAM or ROM at 0x" TARGET_FMT_lx "\n", addr);
372#endif
373 }
374
375# if defined(VBOX) && defined(REM_PHYS_ADDR_IN_TLB)
376 return addr + env1->tlb_table[mmu_idx][page_index].addend;
377# elif defined(VBOX)
378 Assert(env1->phys_addends[mmu_idx][page_index] != -1);
379 return addr + env1->phys_addends[mmu_idx][page_index];
380# else
381 p = (void *)(unsigned long)addr
382 + env1->tlb_table[mmu_idx][page_index].addend;
383 return qemu_ram_addr_from_host(p);
384# endif
385}
386
387/* Deterministic execution requires that IO only be performed on the last
388 instruction of a TB so that interrupts take effect immediately. */
389static inline int can_do_io(CPUState *env)
390{
391 if (!use_icount)
392 return 1;
393
394 /* If not executing code then assume we are ok. */
395 if (!env->current_tb)
396 return 1;
397
398 return env->can_do_io != 0;
399}
400#endif
401
402#ifdef CONFIG_KQEMU
403#define KQEMU_MODIFY_PAGE_MASK (0xff & ~(VGA_DIRTY_FLAG | CODE_DIRTY_FLAG))
404
405#define MSR_QPI_COMMBASE 0xfabe0010
406
407int kqemu_init(CPUState *env);
408int kqemu_cpu_exec(CPUState *env);
409void kqemu_flush_page(CPUState *env, target_ulong addr);
410void kqemu_flush(CPUState *env, int global);
411void kqemu_set_notdirty(CPUState *env, ram_addr_t ram_addr);
412void kqemu_modify_page(CPUState *env, ram_addr_t ram_addr);
413void kqemu_set_phys_mem(uint64_t start_addr, ram_addr_t size,
414 ram_addr_t phys_offset);
415void kqemu_cpu_interrupt(CPUState *env);
416void kqemu_record_dump(void);
417
418extern uint32_t kqemu_comm_base;
419
420extern ram_addr_t kqemu_phys_ram_size;
421extern uint8_t *kqemu_phys_ram_base;
422
423static inline int kqemu_is_ok(CPUState *env)
424{
425 return(env->kqemu_enabled &&
426 (env->cr[0] & CR0_PE_MASK) &&
427 !(env->hflags & HF_INHIBIT_IRQ_MASK) &&
428 (env->eflags & IF_MASK) &&
429 !(env->eflags & VM_MASK) &&
430 (env->kqemu_enabled == 2 ||
431 ((env->hflags & HF_CPL_MASK) == 3 &&
432 (env->eflags & IOPL_MASK) != IOPL_MASK)));
433}
434
435#endif
436
437typedef void (CPUDebugExcpHandler)(CPUState *env);
438
439CPUDebugExcpHandler *cpu_set_debug_excp_handler(CPUDebugExcpHandler *handler);
440
441/* vl.c */
442#ifndef VBOX
443extern int singlestep;
444#endif
445
446#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