VirtualBox

source: vbox/trunk/src/recompiler/cpu-defs.h@ 28800

Last change on this file since 28800 was 17274, checked in by vboxsync, 15 years ago

REM: fixed #3525 - avoid using HVA -> GPA PGM function, store GPA in REM TLB instead

  • Property svn:eol-style set to native
File size: 9.5 KB
Line 
1/*
2 * common defines for all CPUs
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, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21/*
22 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
23 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
24 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
25 * a choice of LGPL license versions is made available with the language indicating
26 * that LGPLv2 or any later version may be used, or where a choice of which version
27 * of the LGPL is applied is otherwise unspecified.
28 */
29#ifndef CPU_DEFS_H
30#define CPU_DEFS_H
31
32#include "config.h"
33#include <setjmp.h>
34#ifndef VBOX
35#include <inttypes.h>
36#endif
37#include "osdep.h"
38
39#ifndef TARGET_LONG_BITS
40#error TARGET_LONG_BITS must be defined before including this header
41#endif
42
43#ifndef TARGET_PHYS_ADDR_BITS
44#if TARGET_LONG_BITS >= HOST_LONG_BITS
45#define TARGET_PHYS_ADDR_BITS TARGET_LONG_BITS
46#else
47#define TARGET_PHYS_ADDR_BITS HOST_LONG_BITS
48#endif
49#endif
50
51#define TARGET_LONG_SIZE (TARGET_LONG_BITS / 8)
52
53/* target_ulong is the type of a virtual address */
54#if TARGET_LONG_SIZE == 4
55typedef int32_t target_long;
56typedef uint32_t target_ulong;
57#define TARGET_FMT_lx "%08x"
58#define TARGET_FMT_ld "%d"
59#define TARGET_FMT_lu "%u"
60#elif TARGET_LONG_SIZE == 8
61typedef int64_t target_long;
62typedef uint64_t target_ulong;
63#define TARGET_FMT_lx "%016" PRIx64
64#define TARGET_FMT_ld "%" PRId64
65#define TARGET_FMT_lu "%" PRIu64
66#else
67#error TARGET_LONG_SIZE undefined
68#endif
69
70/* target_phys_addr_t is the type of a physical address (its size can
71 be different from 'target_ulong'). We have sizeof(target_phys_addr)
72 = max(sizeof(unsigned long),
73 sizeof(size_of_target_physical_address)) because we must pass a
74 host pointer to memory operations in some cases */
75
76#if TARGET_PHYS_ADDR_BITS == 32
77typedef uint32_t target_phys_addr_t;
78#define TARGET_FMT_plx "%08x"
79#elif TARGET_PHYS_ADDR_BITS == 64
80typedef uint64_t target_phys_addr_t;
81#define TARGET_FMT_plx "%016" PRIx64
82#else
83#error TARGET_PHYS_ADDR_BITS undefined
84#endif
85
86#define HOST_LONG_SIZE (HOST_LONG_BITS / 8)
87
88#define EXCP_INTERRUPT 0x10000 /* async interruption */
89#define EXCP_HLT 0x10001 /* hlt instruction reached */
90#define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */
91#define EXCP_HALTED 0x10003 /* cpu is halted (waiting for external event) */
92#if defined(VBOX)
93#define EXCP_EXECUTE_RAW 0x11024 /* execute raw mode. */
94#define EXCP_EXECUTE_HWACC 0x11025 /* execute hardware accelerated raw mode. */
95#define EXCP_SINGLE_INSTR 0x11026 /* executed single instruction. */
96#define EXCP_RC 0x11027 /* a EM rc was raised (VMR3Reset/Suspend/PowerOff). */
97#endif /* VBOX */
98#define MAX_BREAKPOINTS 32
99#define MAX_WATCHPOINTS 32
100
101#define TB_JMP_CACHE_BITS 12
102#define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS)
103
104/* Only the bottom TB_JMP_PAGE_BITS of the jump cache hash bits vary for
105 addresses on the same page. The top bits are the same. This allows
106 TLB invalidation to quickly clear a subset of the hash table. */
107#define TB_JMP_PAGE_BITS (TB_JMP_CACHE_BITS / 2)
108#define TB_JMP_PAGE_SIZE (1 << TB_JMP_PAGE_BITS)
109#define TB_JMP_ADDR_MASK (TB_JMP_PAGE_SIZE - 1)
110#define TB_JMP_PAGE_MASK (TB_JMP_CACHE_SIZE - TB_JMP_PAGE_SIZE)
111
112#define CPU_TLB_BITS 8
113#define CPU_TLB_SIZE (1 << CPU_TLB_BITS)
114
115#if TARGET_PHYS_ADDR_BITS == 32 && TARGET_LONG_BITS == 32
116#define CPU_TLB_ENTRY_BITS 4
117#else
118#define CPU_TLB_ENTRY_BITS 5
119#endif
120
121typedef struct CPUTLBEntry {
122 /* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address
123 bit TARGET_PAGE_BITS-1..4 : Nonzero for accesses that should not
124 go directly to ram.
125 bit 3 : indicates that the entry is invalid
126 bit 2..0 : zero
127 */
128 target_ulong addr_read;
129 target_ulong addr_write;
130 target_ulong addr_code;
131 /* Addend to virtual address to get physical address. IO accesses
132 use the correcponding iotlb value. */
133#if TARGET_PHYS_ADDR_BITS == 64
134 /* on i386 Linux make sure it is aligned */
135 target_phys_addr_t addend __attribute__((aligned(8)));
136#else
137 target_phys_addr_t addend;
138#endif
139 /* padding to get a power of two size */
140 uint8_t dummy[(1 << CPU_TLB_ENTRY_BITS) -
141 (sizeof(target_ulong) * 3 +
142 ((-sizeof(target_ulong) * 3) & (sizeof(target_phys_addr_t) - 1)) +
143 sizeof(target_phys_addr_t))];
144} CPUTLBEntry;
145
146#ifdef WORDS_BIGENDIAN
147typedef struct icount_decr_u16 {
148 uint16_t high;
149 uint16_t low;
150} icount_decr_u16;
151#else
152typedef struct icount_decr_u16 {
153 uint16_t low;
154 uint16_t high;
155} icount_decr_u16;
156#endif
157
158
159#define CPU_TEMP_BUF_NLONGS 128
160
161#define CPU_COMMON \
162 struct TranslationBlock *current_tb; /* currently executing TB */ \
163 /* soft mmu support */ \
164 /* in order to avoid passing too many arguments to the MMIO \
165 helpers, we store some rarely used information in the CPU \
166 context) */ \
167 unsigned long mem_io_pc; /* host pc at which the memory was \
168 accessed */ \
169 target_ulong mem_io_vaddr; /* target virtual addr at which the \
170 memory was accessed */ \
171 uint32_t halted; /* Nonzero if the CPU is in suspend state */ \
172 uint32_t interrupt_request; \
173 /* The meaning of the MMU modes is defined in the target code. */ \
174 CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE]; \
175 target_phys_addr_t iotlb[NB_MMU_MODES][CPU_TLB_SIZE]; \
176 /** addends for HVA -> GPA translations */ \
177 VBOX_ONLY(target_phys_addr_t phys_addends[NB_MMU_MODES][CPU_TLB_SIZE]); \
178 struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \
179 /* buffer for temporaries in the code generator */ \
180 long temp_buf[CPU_TEMP_BUF_NLONGS]; \
181 \
182 int64_t icount_extra; /* Instructions until next timer event. */ \
183 /* Number of cycles left, with interrupt flag in high bit. \
184 This allows a single read-compare-cbranch-write sequence to test \
185 for both decrementer underflow and exceptions. */ \
186 union { \
187 uint32_t u32; \
188 icount_decr_u16 u16; \
189 } icount_decr; \
190 uint32_t can_do_io; /* nonzero if memory mapped IO is safe. */ \
191 \
192 /* from this point: preserved by CPU reset */ \
193 /* ice debug support */ \
194 target_ulong breakpoints[MAX_BREAKPOINTS]; \
195 int nb_breakpoints; \
196 int singlestep_enabled; \
197 \
198 struct { \
199 target_ulong vaddr; \
200 int type; /* PAGE_READ/PAGE_WRITE */ \
201 } watchpoint[MAX_WATCHPOINTS]; \
202 int nb_watchpoints; \
203 int watchpoint_hit; \
204 \
205 /* Core interrupt code */ \
206 jmp_buf jmp_env; \
207 int exception_index; \
208 \
209 int user_mode_only; \
210 \
211 void *next_cpu; /* next CPU sharing TB cache */ \
212 int cpu_index; /* CPU index (informative) */ \
213 int running; /* Nonzero if cpu is currently running(usermode). */ \
214 /* user data */ \
215 void *opaque; \
216 \
217 const char *cpu_model_str;
218
219#endif
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use