VirtualBox

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

Last change on this file since 6079 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

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