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
|
---|
55 | typedef int32_t target_long;
|
---|
56 | typedef 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
|
---|
61 | typedef int64_t target_long;
|
---|
62 | typedef 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
|
---|
77 | typedef uint32_t target_phys_addr_t;
|
---|
78 | #define TARGET_FMT_plx "%08x"
|
---|
79 | #elif TARGET_PHYS_ADDR_BITS == 64
|
---|
80 | typedef 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 |
|
---|
121 | typedef 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
|
---|
147 | typedef struct icount_decr_u16 {
|
---|
148 | uint16_t high;
|
---|
149 | uint16_t low;
|
---|
150 | } icount_decr_u16;
|
---|
151 | #else
|
---|
152 | typedef 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 | struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; \
|
---|
177 | /* buffer for temporaries in the code generator */ \
|
---|
178 | long temp_buf[CPU_TEMP_BUF_NLONGS]; \
|
---|
179 | \
|
---|
180 | int64_t icount_extra; /* Instructions until next timer event. */ \
|
---|
181 | /* Number of cycles left, with interrupt flag in high bit. \
|
---|
182 | This allows a single read-compare-cbranch-write sequence to test \
|
---|
183 | for both decrementer underflow and exceptions. */ \
|
---|
184 | union { \
|
---|
185 | uint32_t u32; \
|
---|
186 | icount_decr_u16 u16; \
|
---|
187 | } icount_decr; \
|
---|
188 | uint32_t can_do_io; /* nonzero if memory mapped IO is safe. */ \
|
---|
189 | \
|
---|
190 | /* from this point: preserved by CPU reset */ \
|
---|
191 | /* ice debug support */ \
|
---|
192 | target_ulong breakpoints[MAX_BREAKPOINTS]; \
|
---|
193 | int nb_breakpoints; \
|
---|
194 | int singlestep_enabled; \
|
---|
195 | \
|
---|
196 | struct { \
|
---|
197 | target_ulong vaddr; \
|
---|
198 | int type; /* PAGE_READ/PAGE_WRITE */ \
|
---|
199 | } watchpoint[MAX_WATCHPOINTS]; \
|
---|
200 | int nb_watchpoints; \
|
---|
201 | int watchpoint_hit; \
|
---|
202 | \
|
---|
203 | /* Core interrupt code */ \
|
---|
204 | jmp_buf jmp_env; \
|
---|
205 | int exception_index; \
|
---|
206 | \
|
---|
207 | int user_mode_only; \
|
---|
208 | \
|
---|
209 | void *next_cpu; /* next CPU sharing TB cache */ \
|
---|
210 | int cpu_index; /* CPU index (informative) */ \
|
---|
211 | int running; /* Nonzero if cpu is currently running(usermode). */ \
|
---|
212 | /* user data */ \
|
---|
213 | void *opaque; \
|
---|
214 | \
|
---|
215 | const char *cpu_model_str;
|
---|
216 |
|
---|
217 | #endif
|
---|