VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-PagingGetRootForPP32.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.5 KB
Line 
1; $Id: bs3-mode-PagingGetRootForPP32.asm 96407 2022-08-22 17:43:14Z vboxsync $
2;; @file
3; BS3Kit - Bs3PagingGetRootForPP32
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 Bs3PagingInitRootForPP
49
50BS3_EXTERN_DATA16 g_PhysPagingRootPP
51TMPL_BEGIN_TEXT
52
53
54;;
55; @cproto BS3_DECL(uint32_t) Bs3PagingGetRootForPP32(void)
56;
57; @returns eax
58;
59; @uses ax
60;
61; @remarks returns value in EAX, not dx:ax!
62;
63BS3_PROC_BEGIN_MODE Bs3PagingGetRootForPP32, BS3_PBC_NEAR ; Internal function, no far variant necessary.
64 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootPP)]
65 cmp eax, 0ffffffffh
66 je .init_root
67%ifdef BS3_STRICT
68.return:
69 cmp eax, 1000h
70 jnb .cr3_ok_low
71 hlt
72.cr3_ok_low:
73 cmp eax, 16*_1M
74 jb .cr3_ok_high
75 hlt
76.cr3_ok_high:
77%endif
78 ret
79
80.init_root:
81 push xBP
82 mov xBP, xSP
83BONLY16 push es
84 push sDX
85 push sCX
86 push sBX
87%if TMPL_BITS == 64
88 push r8
89 push r9
90 push r10
91 push r11
92%endif
93
94%ifdef TMPL_RM
95 ;
96 ; We don't want to be restricted to real mode addressing, so
97 ; temporarily switch to 16-bit protected mode.
98 ;
99 call TMPL_NM(Bs3SwitchToPE16)
100 call Bs3PagingInitRootForPP
101 call NAME(Bs3SwitchToRM_pe16)
102
103%elifdef TMPL_CMN_V86
104 ;
105 ; V8086 mode uses real mode addressing too. Unlikly that we'll
106 ; ever end up here though.
107 ;
108 call TMPL_NM(Bs3SwitchToRing0)
109 call Bs3PagingInitRootForPP
110 call TMPL_NM(Bs3SwitchTo16BitV86)
111%else
112 ;
113 ; Not a problematic addressing mode.
114 ;
115BONLY64 sub rsp, 20h
116 BS3_CALL Bs3PagingInitRootForPP, 0
117BONLY64 add rsp, 20h
118%endif
119
120 ;
121 ; Load the value and return.
122 ;
123 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootPP)]
124
125%if TMPL_BITS == 64
126 pop r11
127 pop r10
128 pop r9
129 pop r8
130%endif
131 pop sBX
132 pop sCX
133 pop sDX
134BONLY16 pop es
135 leave
136%ifdef BS3_STRICT
137 jmp .return
138%else
139 ret
140%endif
141BS3_PROC_END_MODE Bs3PagingGetRootForPP32
142
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