VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMSwitcher/X86Stub.asm@ 76553

Last change on this file since 76553 was 76553, checked in by vboxsync, 5 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1; $Id: X86Stub.asm 76553 2019-01-01 01:45:53Z vboxsync $
2;; @file
3; VMM - World Switchers, X86 Stub.
4;
5
6;
7; Copyright (C) 2006-2019 Oracle Corporation
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;*******************************************************************************
19;* Defined Constants And Macros *
20;*******************************************************************************
21%define NAME_OVERLOAD(name) vmmR3SwitcherX86Stub_ %+ name
22
23
24;*******************************************************************************
25;* Header Files *
26;*******************************************************************************
27%include "VBox/asmdefs.mac"
28%include "VBox/err.mac"
29%include "VMMSwitcher.mac"
30
31
32BEGINCODE
33GLOBALNAME Start
34BITS 32
35
36BEGINPROC vmmR0ToRawMode
37 mov eax, VERR_VMM_SWITCHER_STUB
38 ret
39ENDPROC vmmR0ToRawMode
40
41BEGINPROC vmmRCCallTrampoline
42.tight_loop:
43 int3
44 jmp .tight_loop
45ENDPROC vmmRCCallTrampoline
46
47BEGINPROC vmmRCToHost
48 mov eax, VERR_VMM_SWITCHER_STUB
49 ret
50ENDPROC vmmRCToHost
51
52BEGINPROC vmmRCToHostAsmNoReturn
53 mov eax, VERR_VMM_SWITCHER_STUB
54 ret
55ENDPROC vmmRCToHostAsmNoReturn
56
57BEGINPROC vmmRCToHostAsm
58 mov eax, VERR_VMM_SWITCHER_STUB
59 ret
60ENDPROC vmmRCToHostAsm
61
62GLOBALNAME End
63
64;
65; The description string (in the text section).
66;
67NAME(Description):
68 db "X86 Stub."
69 db 0
70
71
72;
73; Dummy fixups.
74;
75BEGINDATA
76GLOBALNAME Fixups
77 db FIX_THE_END ; final entry.
78GLOBALNAME FixupsEnd
79
80
81;;
82; The switcher definition structure.
83ALIGNDATA(16)
84GLOBALNAME Def
85 istruc VMMSWITCHERDEF
86 at VMMSWITCHERDEF.pvCode, RTCCPTR_DEF NAME(Start)
87 at VMMSWITCHERDEF.pvFixups, RTCCPTR_DEF NAME(Fixups)
88 at VMMSWITCHERDEF.pszDesc, RTCCPTR_DEF NAME(Description)
89 at VMMSWITCHERDEF.pfnRelocate, RTCCPTR_DEF 0
90 at VMMSWITCHERDEF.enmType, dd VMMSWITCHER_X86_STUB
91 at VMMSWITCHERDEF.cbCode, dd NAME(End) - NAME(Start)
92 at VMMSWITCHERDEF.offR0ToRawMode, dd NAME(vmmR0ToRawMode) - NAME(Start)
93 at VMMSWITCHERDEF.offRCToHost, dd NAME(vmmRCToHost) - NAME(Start)
94 at VMMSWITCHERDEF.offRCCallTrampoline, dd NAME(vmmRCCallTrampoline) - NAME(Start)
95 at VMMSWITCHERDEF.offRCToHostAsm, dd NAME(vmmRCToHostAsm) - NAME(Start)
96 at VMMSWITCHERDEF.offRCToHostAsmNoReturn, dd NAME(vmmRCToHostAsmNoReturn) - NAME(Start)
97 ; disasm help
98 at VMMSWITCHERDEF.offHCCode0, dd 0
99 at VMMSWITCHERDEF.cbHCCode0, dd NAME(vmmRCCallTrampoline) - NAME(Start)
100 at VMMSWITCHERDEF.offHCCode1, dd 0
101 at VMMSWITCHERDEF.cbHCCode1, dd 0
102 at VMMSWITCHERDEF.offIDCode0, dd 0
103 at VMMSWITCHERDEF.cbIDCode0, dd 0
104 at VMMSWITCHERDEF.offIDCode1, dd 0
105 at VMMSWITCHERDEF.cbIDCode1, dd 0
106 at VMMSWITCHERDEF.offGCCode, dd NAME(vmmRCCallTrampoline) - NAME(Start)
107 at VMMSWITCHERDEF.cbGCCode, dd NAME(End) - NAME(vmmRCCallTrampoline)
108
109 iend
110
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use