VirtualBox

source: vbox/trunk/src/VBox/VMM/HWACCMInternal.mac@ 16560

Last change on this file since 16560 was 15962, checked in by vboxsync, 15 years ago

Added debugging code (inactive) for tracking the state of the 32/64 switcher in crash dumps

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1;$Id$
2;; @file
3; HWACCM - Internal header file.
4;
5;
6; Copyright (C) 2006-2007 Sun Microsystems, Inc.
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17; Clara, CA 95054 USA or visit http://www.sun.com if you need
18; additional information or have any questions.
19;
20
21%define VMX_USE_CACHED_VMCS_ACCESSES
22
23;Maximum number of cached entries.
24%define VMCSCACHE_MAX_ENTRY 128
25
26; Structure for storing read and write VMCS actions.
27struc VMCSCACHE
28%ifdef VBOX_WITH_CRASHDUMP_MAGIC
29 .aMagic resb 16
30 .uMagic resq 1
31 .u64TimeEntry resq 1
32 .u64TimeSwitch resq 1
33 .cResume resq 1
34 .interPD resq 1
35 .pSwitcher resq 1
36 .uPos resd 1
37 .idCpu resd 1
38%endif
39 .cr2 resq 1
40 .Write.cValidEntries resd 1
41 .Write.uAlignment resd 1
42 .Write.aField resd VMCSCACHE_MAX_ENTRY
43 .Write.aFieldVal resq VMCSCACHE_MAX_ENTRY
44 .Read.cValidEntries resd 1
45 .Read.uAlignment resd 1
46 .Read.aField resd VMCSCACHE_MAX_ENTRY
47 .Read.aFieldVal resq VMCSCACHE_MAX_ENTRY
48%ifdef DEBUG
49 .TestIn.pPageCpuPhys resq 1
50 .TestIn.pVMCSPhys resq 1
51 .TestIn.pCache resq 1
52 .TestIn.pCtx resq 1
53 .TestOut.pVMCSPhys resq 1
54 .TestOut.pCache resq 1
55 .TestOut.pCtx resq 1
56 .TestOut.eflags resq 1
57 .TestOut.cr8 resq 1
58 .ScratchPad.param1 resq 1
59 .ScratchPad.param2 resq 1
60 .ScratchPad.param3 resq 1
61 .ScratchPad.param4 resq 1
62%endif
63endstruc
64
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use