1 | ; $Id: bs3-cmn-SelFlatCodeToProtFar16.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3SelFlatCodeToProtFar16.
|
---|
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 |
|
---|
38 | ;*********************************************************************************************************************************
|
---|
39 | ;* Header Files *
|
---|
40 | ;*********************************************************************************************************************************
|
---|
41 | %include "bs3kit-template-header.mac"
|
---|
42 |
|
---|
43 |
|
---|
44 | ;*********************************************************************************************************************************
|
---|
45 | ;* External Symbols *
|
---|
46 | ;*********************************************************************************************************************************
|
---|
47 | BS3_EXTERN_CMN Bs3SelFlatCodeToRealMode
|
---|
48 | BS3_EXTERN_CMN Bs3SelRealModeCodeToProtMode
|
---|
49 | TMPL_BEGIN_TEXT
|
---|
50 |
|
---|
51 |
|
---|
52 | ;;
|
---|
53 | ; @cproto BS3_CMN_PROTO(uint32_t, Bs3SelRealModeCodeToProtMode,(uint32_t uFlatAddr), false);
|
---|
54 | ;
|
---|
55 | ; @uses Only return registers (ax:dx, eax, eax)
|
---|
56 | ;
|
---|
57 | BS3_PROC_BEGIN_CMN Bs3SelFlatCodeToProtFar16, BS3_PBC_NEAR
|
---|
58 | BS3_CALL_CONV_PROLOG 1
|
---|
59 | push xBP
|
---|
60 | mov xBP, xSP
|
---|
61 |
|
---|
62 | ;
|
---|
63 | ; Call Bs3SelFlatCodeToRealMode and then Bs3SelRealModeCodeToProtMode.
|
---|
64 | ; This avoid some code duplication.
|
---|
65 | ;
|
---|
66 | %if TMPL_BITS == 16
|
---|
67 | push word [xBP + xCB + cbCurRetAddr + 2]
|
---|
68 | push word [xBP + xCB + cbCurRetAddr]
|
---|
69 | call Bs3SelFlatCodeToRealMode
|
---|
70 | add sp, 4h
|
---|
71 |
|
---|
72 | push ax ; save the offset as it will be the same.
|
---|
73 |
|
---|
74 | push dx
|
---|
75 | call Bs3SelRealModeCodeToProtMode
|
---|
76 | add sp, 2h
|
---|
77 |
|
---|
78 | mov dx, ax ; The protected mode selector.
|
---|
79 | pop ax ; The offset.
|
---|
80 |
|
---|
81 | %elif TMPL_BITS == 32
|
---|
82 | push dword [xBP + xCB + cbCurRetAddr]
|
---|
83 | call Bs3SelFlatCodeToRealMode
|
---|
84 | add esp, 4h
|
---|
85 |
|
---|
86 | push eax ; save the result.
|
---|
87 |
|
---|
88 | shr eax, 16
|
---|
89 | push eax
|
---|
90 | call Bs3SelRealModeCodeToProtMode
|
---|
91 | add esp, 4h
|
---|
92 |
|
---|
93 | mov [esp + 2], ax ; Update the selector before popping the result.
|
---|
94 | pop eax
|
---|
95 |
|
---|
96 | %elif TMPL_BITS == 64
|
---|
97 | push xCX ; Preserve RCX to make the behaviour uniform.
|
---|
98 | sub xSP, 28h ; 20h bytes of calling convention scratch and 8 byte for saving the result.
|
---|
99 |
|
---|
100 | mov ecx, [xBP + xCB + cbCurRetAddr] ; move straight to parameter 0 register.
|
---|
101 | call Bs3SelFlatCodeToRealMode
|
---|
102 |
|
---|
103 | mov [xBP - xCB*2], eax ; Save the result.
|
---|
104 |
|
---|
105 | shr eax, 16
|
---|
106 | mov ecx, eax ; Move straight to parameter 0 register.
|
---|
107 | call Bs3SelRealModeCodeToProtMode
|
---|
108 |
|
---|
109 | shl eax, 16 ; Shift prot mode selector into result position.
|
---|
110 | mov ax, [xBP - xCB*2] ; The segment offset from the previous call.
|
---|
111 |
|
---|
112 | add xSP, 28h
|
---|
113 | pop xCX
|
---|
114 | %else
|
---|
115 | %error "TMPL_BITS=" TMPL_BITS "!"
|
---|
116 | %endif
|
---|
117 | pop xBP
|
---|
118 | BS3_CALL_CONV_EPILOG 1
|
---|
119 | BS3_HYBRID_RET
|
---|
120 | BS3_PROC_END_CMN Bs3SelFlatCodeToProtFar16
|
---|
121 |
|
---|
122 |
|
---|
123 | ;
|
---|
124 | ; We may be using the near code in some critical code paths, so don't
|
---|
125 | ; penalize it.
|
---|
126 | ;
|
---|
127 | BS3_CMN_FAR_STUB Bs3SelFlatCodeToProtFar16, 4
|
---|
128 |
|
---|