VirtualBox

source: vbox/trunk/src/VBox/VMM/PATM/PATMA.mac@ 1

Last change on this file since 1 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1;; @file
2;
3; PATM macros & definitions (identical to PATMA.h!!)
4;
5
6; Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
12; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13; distribution. VirtualBox OSE is distributed in the hope that it will
14; be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; If you received this file as part of a commercial VirtualBox
17; distribution, then only the terms of your commercial VirtualBox
18; license agreement apply instead of the previous paragraph.
19
20; hardcoded dependency on single byte int 3
21%define PATM_INT3 int3
22
23%define PATM_VMFLAGS 0xF1ABCD00
24%ifdef VBOX_WITH_STATISTICS
25%define PATM_ALLPATCHCALLS 0xF1ABCD01
26%define PATM_PERPATCHCALLS 0xF1ABCD02
27%endif
28%define PATM_JUMPDELTA 0xF1ABCD03
29%ifdef VBOX_WITH_STATISTICS
30%define PATM_IRETEFLAGS 0xF1ABCD04
31%define PATM_IRETCS 0xF1ABCD05
32%define PATM_IRETEIP 0xF1ABCD06
33%endif
34%define PATM_FIXUP 0xF1ABCD07
35%define PATM_PENDINGACTION 0xF1ABCD08
36%define PATM_CPUID_STD_PTR 0xF1ABCD09
37%define PATM_CPUID_EXT_PTR 0xF1ABCD0a
38%define PATM_CPUID_DEF_PTR 0xF1ABCD0b
39%define PATM_STACKBASE 0xF1ABCD0c ;/** Stack to store our private patch return addesses */
40%define PATM_STACKBASE_GUEST 0xF1ABCD0d ;/** Stack to store guest return addresses */
41%define PATM_STACKPTR 0xF1ABCD0e
42%define PATM_PATCHBASE 0xF1ABCD0f
43%define PATM_INTERRUPTFLAG 0xF1ABCD10
44%define PATM_INHIBITIRQADDR 0xF1ABCD11
45%define PATM_VM_FORCEDACTIONS 0xF1ABCD12
46%define PATM_TEMP_EAX 0xF1ABCD13 ;/** Location for original EAX register */
47%define PATM_TEMP_ECX 0xF1ABCD14 ;/** Location for original ECX register */
48%define PATM_TEMP_EDI 0xF1ABCD15 ;/** Location for original EDI register */
49%define PATM_TEMP_EFLAGS 0xF1ABCD16 ;/** Location for original eflags */
50%define PATM_TEMP_RESTORE_FLAGS 0xF1ABCD17 ;/** Which registers to restore */
51
52;/* Anything larger doesn't require a fixup */
53%define PATM_NO_FIXUP 0xF1ABCE00
54%define PATM_CPUID_STD_MAX 0xF1ABCE00
55%define PATM_CPUID_EXT_MAX 0xF1ABCE01
56%define PATM_RETURNADDR 0xF1ABCE02
57%define PATM_PATCHNEXTBLOCK 0xF1ABCE03
58%define PATM_CALLTARGET 0xF1ABCE04 ; /* relative */
59%define PATM_NEXTINSTRADDR 0xF1ABCE05 ; /* absolute guest address of the next instruction */
60%define PATM_CURINSTRADDR 0xF1ABCE06 ; /* absolute guest address of the current instruction */
61%define PATM_LOOKUP_AND_CALL_FUNCTION 0xF1ABCE07 ; /** Relative address of global PATM lookup and call function. */
62%define PATM_RETURN_FUNCTION 0xF1ABCE08 ; /** Relative address of global PATM return function. */
63%define PATM_LOOKUP_AND_JUMP_FUNCTION 0xF1ABCE09 ; /** Relative address of global PATM lookup and jump function. */
64
65
66; everything except IOPL, NT, IF, VM, VIF, VIP and RF
67%define PATM_FLAGS_MASK (X86_EFL_CF|X86_EFL_PF|X86_EFL_AF|X86_EFL_ZF|X86_EFL_SF|X86_EFL_TF|X86_EFL_DF|X86_EFL_OF|X86_EFL_AC|X86_EFL_ID)
68
69; currently only IF & IOPL
70%define PATM_VIRTUAL_FLAGS_MASK (X86_EFL_IF|X86_EFL_IOPL)
71
72; PATM stack size (identical in PATMA.mac!!)
73%define PATM_STACK_SIZE (4096)
74%define PATM_STACK_TOTAL_SIZE (2*PATM_STACK_SIZE)
75
76;/* Patch Manager pending actions (in GCSTATE). */
77%define PATM_ACTION_LOOKUP_ADDRESS 1
78%define PATM_ACTION_DISPATCH_PENDING_IRQ 2
79%define PATM_ACTION_LOG_IF1 3
80%define PATM_ACTION_LOG_CLI 4
81%define PATM_ACTION_LOG_STI 5
82%define PATM_ACTION_LOG_POPF_IF1 6
83%define PATM_ACTION_LOG_POPF_IF0 7
84%define PATM_ACTION_LOG_PUSHF 8
85%define PATM_ACTION_LOG_IRET 9
86
87;/* Magic dword found in ecx for patm pending actions. */
88%define PATM_ACTION_MAGIC 0xABCD4321
89
90%define PATM_RESTORE_EAX BIT(0)
91%define PATM_RESTORE_ECX BIT(1)
92%define PATM_RESTORE_EDI BIT(2)
93
94
95;/* For indirect calls/jump (identical in PATMA.h & PATMA.mac!) */
96%define PATM_MAX_JUMPTABLE_ENTRIES 16
97
98struc PATCHJUMPTABLE
99 .nrSlots resw 1
100 .ulInsertPos resw 1
101 .cAddresses resd 1
102 ; array of pInstrGC and pRelPatchGC pairs (nrSlot times)
103 .Slot_pInstrGC resd 1
104 .Slot_pRelPatchGC resd 1
105endstruc
106
107;/* Must match structure size!!
108%define PATCHJUMPTABLE_SIZE (PATM_MAX_JUMPTABLE_ENTRIES*2*4)
109;/* Direct calls need only one lookup slot */
110%define PATCHDIRECTJUMPTABLE_SIZE (2*4)
111
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette