VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-PagingGetRootForPAE32.asm@ 97624

Last change on this file since 97624 was 96407, checked in by vboxsync, 2 years ago

scm copyright and license note update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1; $Id: bs3-mode-PagingGetRootForPAE32.asm 96407 2022-08-22 17:43:14Z vboxsync $
2;; @file
3; BS3Kit - Bs3PagingGetRootForPAE32
4;
5
6;
7; Copyright (C) 2007-2022 Oracle and/or its affiliates.
8;
9; This file is part of VirtualBox base platform packages, as
10; available from https://www.virtualbox.org.
11;
12; This program is free software; you can redistribute it and/or
13; modify it under the terms of the GNU General Public License
14; as published by the Free Software Foundation, in version 3 of the
15; License.
16;
17; This program is distributed in the hope that it will be useful, but
18; WITHOUT ANY WARRANTY; without even the implied warranty of
19; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20; General Public License for more details.
21;
22; You should have received a copy of the GNU General Public License
23; along with this program; if not, see <https://www.gnu.org/licenses>.
24;
25; The contents of this file may alternatively be used under the terms
26; of the Common Development and Distribution License Version 1.0
27; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28; in the VirtualBox distribution, in which case the provisions of the
29; CDDL are applicable instead of those of the GPL.
30;
31; You may elect to license modified versions of this file under the
32; terms and conditions of either the GPL or the CDDL or both.
33;
34; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35;
36
37%include "bs3kit-template-header.mac"
38
39
40%ifdef TMPL_RM
41extern TMPL_NM(Bs3SwitchToPE16)
42extern NAME(Bs3SwitchToRM_pe16)
43%elifdef TMPL_CMN_V86
44extern TMPL_NM(Bs3SwitchToRing0)
45extern TMPL_NM(Bs3SwitchTo16BitV86)
46%endif
47
48BS3_EXTERN_CMN Bs3PagingInitRootForPAE
49
50BS3_EXTERN_DATA16 g_PhysPagingRootPAE
51TMPL_BEGIN_TEXT
52
53
54;;
55; @cproto BS3_DECL(uint32_t) Bs3PagingGetRootForPAE32(void)
56;
57; @returns eax
58;
59; @uses ax
60;
61; @remarks returns value in EAX, not dx:ax!
62;
63BS3_PROC_BEGIN_MODE Bs3PagingGetRootForPAE32, BS3_PBC_NEAR ; Internal function, no far variant necessary.
64 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootPAE)]
65 cmp eax, 0ffffffffh
66 je .init_root
67 ret
68
69.init_root:
70 push xBP
71 mov xBP, xSP
72BONLY16 push es
73 push sDX
74 push sCX
75 push sBX
76%if TMPL_BITS == 64
77 push r8
78 push r9
79 push r10
80 push r11
81%endif
82
83%ifdef TMPL_RM
84 ;
85 ; We don't want to be restricted to real mode addressing, so
86 ; temporarily switch to 16-bit protected mode.
87 ;
88 call TMPL_NM(Bs3SwitchToPE16)
89 call Bs3PagingInitRootForPAE
90 call NAME(Bs3SwitchToRM_pe16)
91
92%elifdef TMPL_CMN_V86
93 ;
94 ; V8086 mode uses real mode addressing too. Unlikly that we'll
95 ; ever end up here though.
96 ;
97 call TMPL_NM(Bs3SwitchToRing0)
98 call Bs3PagingInitRootForPAE
99 call TMPL_NM(Bs3SwitchTo16BitV86)
100%else
101 ;
102 ; Not a problematic addressing mode.
103 ;
104BONLY64 sub rsp, 20h
105 BS3_CALL Bs3PagingInitRootForPAE, 0
106BONLY64 add rsp, 20h
107%endif
108
109 ;
110 ; Load the value and return.
111 ;
112 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootPAE)]
113
114%if TMPL_BITS == 64
115 pop r11
116 pop r10
117 pop r9
118 pop r8
119%endif
120 pop sBX
121 pop sCX
122 pop sDX
123BONLY16 pop es
124 leave
125 ret
126BS3_PROC_END_MODE Bs3PagingGetRootForPAE32
127
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