VirtualBox

source: vbox/trunk/src/VBox/VMM/EMInternal.h@ 8170

Last change on this file since 8170 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 11.8 KB
Line 
1/* $Id: EMInternal.h 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * EM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___EMInternal_h
23#define ___EMInternal_h
24
25#include <VBox/cdefs.h>
26#include <VBox/types.h>
27#include <VBox/em.h>
28#include <VBox/stam.h>
29#include <VBox/patm.h>
30#include <VBox/dis.h>
31#include <iprt/avl.h>
32#include <setjmp.h>
33
34__BEGIN_DECLS
35
36
37/** @defgroup grp_em_int Internal
38 * @ingroup grp_em
39 * @internal
40 * @{
41 */
42
43/** The saved state version. */
44#define EM_SAVED_STATE_VERSION 2
45
46/** Enable for tracing in raw mode.
47 * @remark SvL: debugging help primarily for myself. */
48#define DEBUG_TRACING_ENABLED
49
50/**
51 * Converts a EM pointer into a VM pointer.
52 * @returns Pointer to the VM structure the EM is part of.
53 * @param pEM Pointer to EM instance data.
54 */
55#define EM2VM(pEM) ( (PVM)((char*)pEM - pEM->offVM) )
56
57/**
58 * Cli node structure
59 */
60typedef struct CLISTAT
61{
62 /** The key is the cli address. */
63 AVLPVNODECORE Core;
64 /** Occurrences. */
65 STAMCOUNTER Counter;
66} CLISTAT, *PCLISTAT;
67
68
69/**
70 * Excessive EM statistics.
71 */
72typedef struct EMSTATS
73{
74 /** GC: Profiling of EMInterpretInstruction(). */
75 STAMPROFILE StatGCEmulate;
76 /** HC: Profiling of EMInterpretInstruction(). */
77 STAMPROFILE StatHCEmulate;
78
79 /** @name Interpreter Instruction statistics.
80 * @{
81 */
82 STAMCOUNTER StatGCInterpretSucceeded;
83 STAMCOUNTER StatHCInterpretSucceeded;
84
85 STAMCOUNTER StatGCAnd;
86 STAMCOUNTER StatHCAnd;
87 STAMCOUNTER StatGCCpuId;
88 STAMCOUNTER StatHCCpuId;
89 STAMCOUNTER StatGCDec;
90 STAMCOUNTER StatHCDec;
91 STAMCOUNTER StatGCHlt;
92 STAMCOUNTER StatHCHlt;
93 STAMCOUNTER StatGCInc;
94 STAMCOUNTER StatHCInc;
95 STAMCOUNTER StatGCInvlPg;
96 STAMCOUNTER StatHCInvlPg;
97 STAMCOUNTER StatGCIret;
98 STAMCOUNTER StatHCIret;
99 STAMCOUNTER StatGCLLdt;
100 STAMCOUNTER StatHCLLdt;
101 STAMCOUNTER StatGCMov;
102 STAMCOUNTER StatHCMov;
103 STAMCOUNTER StatGCMovCRx;
104 STAMCOUNTER StatHCMovCRx;
105 STAMCOUNTER StatGCMovDRx;
106 STAMCOUNTER StatHCMovDRx;
107 STAMCOUNTER StatGCOr;
108 STAMCOUNTER StatHCOr;
109 STAMCOUNTER StatGCPop;
110 STAMCOUNTER StatHCPop;
111 STAMCOUNTER StatGCSti;
112 STAMCOUNTER StatHCSti;
113 STAMCOUNTER StatGCXchg;
114 STAMCOUNTER StatHCXchg;
115 STAMCOUNTER StatGCXor;
116 STAMCOUNTER StatHCXor;
117 STAMCOUNTER StatGCMonitor;
118 STAMCOUNTER StatHCMonitor;
119 STAMCOUNTER StatGCMWait;
120 STAMCOUNTER StatHCMWait;
121 STAMCOUNTER StatGCAdd;
122 STAMCOUNTER StatHCAdd;
123 STAMCOUNTER StatGCSub;
124 STAMCOUNTER StatHCSub;
125 STAMCOUNTER StatGCAdc;
126 STAMCOUNTER StatHCAdc;
127 STAMCOUNTER StatGCRdtsc;
128 STAMCOUNTER StatHCRdtsc;
129 STAMCOUNTER StatGCBtr;
130 STAMCOUNTER StatHCBtr;
131 STAMCOUNTER StatGCBts;
132 STAMCOUNTER StatHCBts;
133 STAMCOUNTER StatGCBtc;
134 STAMCOUNTER StatHCBtc;
135 STAMCOUNTER StatGCCmpXchg;
136 STAMCOUNTER StatHCCmpXchg;
137 STAMCOUNTER StatGCCmpXchg8b;
138 STAMCOUNTER StatHCCmpXchg8b;
139 STAMCOUNTER StatGCXAdd;
140 STAMCOUNTER StatHCXAdd;
141 STAMCOUNTER StatGCClts;
142 STAMCOUNTER StatHCClts;
143
144 STAMCOUNTER StatGCInterpretFailed;
145 STAMCOUNTER StatHCInterpretFailed;
146
147 STAMCOUNTER StatGCFailedAnd;
148 STAMCOUNTER StatHCFailedAnd;
149 STAMCOUNTER StatGCFailedCpuId;
150 STAMCOUNTER StatHCFailedCpuId;
151 STAMCOUNTER StatGCFailedDec;
152 STAMCOUNTER StatHCFailedDec;
153 STAMCOUNTER StatGCFailedHlt;
154 STAMCOUNTER StatHCFailedHlt;
155 STAMCOUNTER StatGCFailedInc;
156 STAMCOUNTER StatHCFailedInc;
157 STAMCOUNTER StatGCFailedInvlPg;
158 STAMCOUNTER StatHCFailedInvlPg;
159 STAMCOUNTER StatGCFailedIret;
160 STAMCOUNTER StatHCFailedIret;
161 STAMCOUNTER StatGCFailedLLdt;
162 STAMCOUNTER StatHCFailedLLdt;
163 STAMCOUNTER StatGCFailedMisc;
164 STAMCOUNTER StatHCFailedMisc;
165 STAMCOUNTER StatGCFailedMov;
166 STAMCOUNTER StatHCFailedMov;
167 STAMCOUNTER StatGCFailedMovCRx;
168 STAMCOUNTER StatHCFailedMovCRx;
169 STAMCOUNTER StatGCFailedMovDRx;
170 STAMCOUNTER StatHCFailedMovDRx;
171 STAMCOUNTER StatGCFailedOr;
172 STAMCOUNTER StatHCFailedOr;
173 STAMCOUNTER StatGCFailedPop;
174 STAMCOUNTER StatHCFailedPop;
175 STAMCOUNTER StatGCFailedSti;
176 STAMCOUNTER StatHCFailedSti;
177 STAMCOUNTER StatGCFailedXchg;
178 STAMCOUNTER StatHCFailedXchg;
179 STAMCOUNTER StatGCFailedXor;
180 STAMCOUNTER StatHCFailedXor;
181 STAMCOUNTER StatGCFailedMonitor;
182 STAMCOUNTER StatHCFailedMonitor;
183 STAMCOUNTER StatGCFailedMWait;
184 STAMCOUNTER StatHCFailedMWait;
185
186 STAMCOUNTER StatGCFailedAdd;
187 STAMCOUNTER StatHCFailedAdd;
188 STAMCOUNTER StatGCFailedAdc;
189 STAMCOUNTER StatHCFailedAdc;
190 STAMCOUNTER StatGCFailedBtr;
191 STAMCOUNTER StatHCFailedBtr;
192 STAMCOUNTER StatGCFailedBts;
193 STAMCOUNTER StatHCFailedBts;
194 STAMCOUNTER StatGCFailedBtc;
195 STAMCOUNTER StatHCFailedBtc;
196 STAMCOUNTER StatGCFailedCli;
197 STAMCOUNTER StatHCFailedCli;
198 STAMCOUNTER StatGCFailedCmpXchg;
199 STAMCOUNTER StatHCFailedCmpXchg;
200 STAMCOUNTER StatGCFailedCmpXchg8b;
201 STAMCOUNTER StatHCFailedCmpXchg8b;
202 STAMCOUNTER StatGCFailedXAdd;
203 STAMCOUNTER StatHCFailedXAdd;
204 STAMCOUNTER StatHCFailedMovNTPS;
205 STAMCOUNTER StatGCFailedMovNTPS;
206 STAMCOUNTER StatGCFailedStosWD;
207 STAMCOUNTER StatHCFailedStosWD;
208 STAMCOUNTER StatGCFailedSub;
209 STAMCOUNTER StatHCFailedSub;
210 STAMCOUNTER StatGCFailedWbInvd;
211 STAMCOUNTER StatHCFailedWbInvd;
212 STAMCOUNTER StatGCFailedRdtsc;
213 STAMCOUNTER StatHCFailedRdtsc;
214 STAMCOUNTER StatGCFailedClts;
215 STAMCOUNTER StatHCFailedClts;
216
217 STAMCOUNTER StatGCFailedUserMode;
218 STAMCOUNTER StatHCFailedUserMode;
219 STAMCOUNTER StatGCFailedPrefix;
220 STAMCOUNTER StatHCFailedPrefix;
221 /** @} */
222
223 /** @name Privileged Instructions Ending Up In HC.
224 * @{ */
225 STAMCOUNTER StatCli;
226 STAMCOUNTER StatSti;
227 STAMCOUNTER StatIn;
228 STAMCOUNTER StatOut;
229 STAMCOUNTER StatInvlpg;
230 STAMCOUNTER StatHlt;
231 STAMCOUNTER StatMovReadCR[USE_REG_CR4 + 1];
232 STAMCOUNTER StatMovWriteCR[USE_REG_CR4 + 1];
233 STAMCOUNTER StatMovDRx;
234 STAMCOUNTER StatIret;
235 STAMCOUNTER StatMovLgdt;
236 STAMCOUNTER StatMovLldt;
237 STAMCOUNTER StatMovLidt;
238 STAMCOUNTER StatMisc;
239 STAMCOUNTER StatSysEnter;
240 STAMCOUNTER StatSysExit;
241 STAMCOUNTER StatSysCall;
242 STAMCOUNTER StatSysRet;
243 /** @} */
244
245} EMSTATS, *PEMSTATS;
246
247/**
248 * EM VM Instance data.
249 * Changes to this must checked against the padding of the cfgm union in VM!
250 */
251typedef struct EM
252{
253 /** Offset to the VM structure.
254 * See EM2VM(). */
255 RTUINT offVM;
256
257 /** Execution Manager State. */
258 volatile EMSTATE enmState;
259 /** Force raw-mode execution.
260 * This is used to prevent REM from trying to execute patch code.
261 * The flag is cleared upon entering emR3RawExecute() and updated in certain return paths. */
262 bool fForceRAW;
263
264#ifdef DEBUG_TRACING_ENABLED
265 /** @see DEBUG_TRACING_ENABLED */
266 bool fTracing;
267#endif
268
269 /** Inhibit interrupts for this instruction. Valid only when VM_FF_INHIBIT_INTERRUPTS is set. */
270 RTGCUINTPTR GCPtrInhibitInterrupts;
271
272
273 /** Pointer to the PATM status structure. (HC Ptr) */
274 R3R0PTRTYPE(PPATMGCSTATE) pPatmGCState;
275
276 /** Pointer to the guest CPUM state. (HC Ptr) */
277 R3R0PTRTYPE(PCPUMCTX) pCtx;
278
279
280 union
281 {
282 /** Padding used in the other rings.
283 * This must be larger than jmp_buf on any supported platform. */
284 char achPaddingFatalLongJump[HC_ARCH_BITS == 32 ? 176 : 256];
285#ifdef IN_RING3
286 /** Long buffer jump for fatal VM errors.
287 * It will jump to before the outer EM loop is entered. */
288 jmp_buf FatalLongJump;
289#endif
290 } u;
291
292 /** @name Execution profiling.
293 * @{ */
294 STAMPROFILE StatForcedActions;
295 STAMPROFILE StatHalted;
296 STAMPROFILEADV StatHwAccEntry;
297 STAMPROFILE StatHwAccExec;
298 STAMPROFILE StatREMEmu;
299 STAMPROFILE StatREMExec;
300 STAMPROFILE StatREMSync;
301 STAMPROFILEADV StatREMTotal;
302 STAMPROFILE StatRAWExec;
303 STAMPROFILEADV StatRAWEntry;
304 STAMPROFILEADV StatRAWTail;
305 STAMPROFILEADV StatRAWTotal;
306 STAMPROFILEADV StatTotal;
307 /** @} */
308
309 /** HC: Profiling of emR3RawExecuteIOInstruction. */
310 STAMPROFILE StatIOEmu;
311 /** HC: Profiling of emR3RawPrivileged. */
312 STAMPROFILE StatPrivEmu;
313 /** HC: Profiling of emR3RawExecuteInstruction. */
314 STAMPROFILE StatMiscEmu;
315
316 /** @todo r=bird: Are any of these actually used? */
317 STAMCOUNTER StatPatchTrap;
318 STAMCOUNTER StatPatchInt3;
319 STAMCOUNTER StatPatchIF0;
320 STAMCOUNTER StatPatchEmulate;
321 STAMCOUNTER StatPageOutOfSync;
322 STAMCOUNTER StatHwAccExecuteEntry;
323
324 /** More statistics (HC). */
325 R3R0PTRTYPE(PEMSTATS) pStatsHC;
326 /** More statistics (GC). */
327 GCPTRTYPE(PEMSTATS) pStatsGC;
328#if HC_ARCH_BITS != GC_ARCH_BITS && GC_ARCH_BITS == 32
329 RTGCPTR padding0;
330#endif
331
332 /** Tree for keeping track of cli occurances (debug only). */
333 R3PTRTYPE(PAVLPVNODECORE) pCliStatTree;
334 STAMCOUNTER StatTotalClis;
335#if 0
336 /** 64-bit Visual C++ rounds the struct size up to 16 byte. */
337 uint64_t padding1;
338#endif
339
340} EM;
341/** Pointer to EM VM instance data. */
342typedef EM *PEM;
343
344
345
346/** @} */
347
348__END_DECLS
349
350#endif
351
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