VirtualBox

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

Last change on this file since 106560 was 106061, checked in by vboxsync, 4 months ago

Copyright year updates by scm.

  • 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-PagingGetRootForLM64.asm 106061 2024-09-16 14:03:52Z vboxsync $
2;; @file
3; BS3Kit - Bs3PagingGetRootForLM64
4;
5
6;
7; Copyright (C) 2007-2024 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 Bs3PagingInitRootForLM
49
50BS3_EXTERN_DATA16 g_PhysPagingRootLM
51TMPL_BEGIN_TEXT
52
53
54;;
55; @cproto BS3_DECL(uint32_t) Bs3PagingGetRootForLM64(void)
56;
57; @returns eax
58;
59; @uses ax
60;
61; @remarks returns value in EAX, not dx:ax!
62;
63BS3_PROC_BEGIN_MODE Bs3PagingGetRootForLM64, BS3_PBC_NEAR ; Internal function, no far variant necessary.
64 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootLM)]
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 Bs3PagingInitRootForLM
101 call NAME(Bs3SwitchToRM_pe16)
102%elifdef TMPL_CMN_V86
103 ;
104 ; V8086 mode uses real mode addressing too. Unlikly that we'll
105 ; ever end up here though.
106 ;
107 call TMPL_NM(Bs3SwitchToRing0)
108 call Bs3PagingInitRootForLM
109 call TMPL_NM(Bs3SwitchTo16BitV86)
110%else
111 ;
112 ; Not a problematic addressing mode.
113 ;
114BONLY64 sub rsp, 20h
115 BS3_CALL Bs3PagingInitRootForLM, 0
116BONLY64 add rsp, 20h
117%endif
118
119 ;
120 ; Load the value and return.
121 ;
122 mov eax, [BS3_DATA16_WRT(g_PhysPagingRootLM)]
123
124%if TMPL_BITS == 64
125 pop r11
126 pop r10
127 pop r9
128 pop r8
129%endif
130 pop sBX
131 pop sCX
132 pop sDX
133BONLY16 pop es
134 leave
135%ifdef BS3_STRICT
136 jmp .return
137%else
138 ret
139%endif
140BS3_PROC_END_MODE Bs3PagingGetRootForLM64
141
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