VirtualBox

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

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

*: rebrand Sun (L)GPL disclaimers

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

© 2023 Oracle
ContactPrivacy policyTerms of Use