1 | ; $Id: bs3-cmn-SwitchHlpConvProtModeRetfPopBpDecBpAndReturn.asm 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3SwitchToPP32
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2023 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 | %if TMPL_BITS == 16
|
---|
41 | BS3_EXTERN_CMN Bs3SelProtModeCodeToRealMode
|
---|
42 | %else
|
---|
43 | BS3_EXTERN_CMN Bs3SelFar32ToFlat32
|
---|
44 | %endif
|
---|
45 |
|
---|
46 |
|
---|
47 | ;;
|
---|
48 | ; SwitchToXxx helper that converts a 16-bit protected mode far return
|
---|
49 | ; into something suitable for the current mode and performs the return.
|
---|
50 | ;
|
---|
51 | ; The caller jmps to this routine. The stack holds an incremented BP (odd is
|
---|
52 | ; far indicator) and a 16-bit far return address.
|
---|
53 | ;
|
---|
54 | ; @uses Nothing.
|
---|
55 | ; @remarks 16-bit ASSUMES we're returning to protected mode!!
|
---|
56 | ;
|
---|
57 | %if TMPL_BITS == 16
|
---|
58 | BS3_BEGIN_TEXT16_FARSTUBS
|
---|
59 | %endif
|
---|
60 | BS3_PROC_BEGIN_CMN Bs3SwitchHlpConvProtModeRetfPopBpDecBpAndReturn, BS3_PBC_NEAR
|
---|
61 | %if TMPL_BITS == 16
|
---|
62 | ; Convert the selector of the 16:16 protected mode return address to the
|
---|
63 | ; corresponding 16-bit real mode segment.
|
---|
64 | push ax
|
---|
65 |
|
---|
66 | mov ax, [bp + 2 + 2]
|
---|
67 | push ax
|
---|
68 | call Bs3SelProtModeCodeToRealMode ; This doesn't trash any registers (except AX).
|
---|
69 | add sp, 2
|
---|
70 | mov [bp + 2 + 2], ax
|
---|
71 |
|
---|
72 | pop ax
|
---|
73 |
|
---|
74 | pop bp
|
---|
75 | dec bp
|
---|
76 | retf
|
---|
77 |
|
---|
78 | %elif TMPL_BITS == 32
|
---|
79 | push eax
|
---|
80 | push ecx
|
---|
81 | push edx
|
---|
82 |
|
---|
83 | movzx eax, word [esp + 4*3 + 2] ; return offset
|
---|
84 | movzx edx, word [esp + 4*3 + 2 + 2] ; return selector
|
---|
85 | push eax
|
---|
86 | push edx
|
---|
87 | call Bs3SelFar32ToFlat32
|
---|
88 | add esp, 8
|
---|
89 | mov [esp + 4*3 + 2], eax
|
---|
90 |
|
---|
91 | pop edx
|
---|
92 | pop ecx
|
---|
93 | pop eax
|
---|
94 | pop bp
|
---|
95 | dec bp
|
---|
96 | ret
|
---|
97 | %else
|
---|
98 | push rax
|
---|
99 | push rcx
|
---|
100 | push rdx
|
---|
101 | push r8
|
---|
102 | push r9
|
---|
103 | push r10
|
---|
104 | push r11
|
---|
105 |
|
---|
106 | movzx ecx, word [rsp + 8*7 + 2] ; return offset
|
---|
107 | movzx edx, word [rsp + 8*7 + 2 + 2] ; return selector
|
---|
108 | sub rsp, 20h
|
---|
109 | call Bs3SelFar32ToFlat32
|
---|
110 | add rsp, 20h
|
---|
111 | mov [rsp + 8*7 + 2], eax
|
---|
112 |
|
---|
113 | pop r11
|
---|
114 | pop r10
|
---|
115 | pop r9
|
---|
116 | pop r8
|
---|
117 | pop rdx
|
---|
118 | pop rcx
|
---|
119 | pop rax
|
---|
120 | mov bp, [rsp]
|
---|
121 | add rsp, 2h
|
---|
122 | dec bp
|
---|
123 | o32 ret
|
---|
124 | %endif
|
---|
125 | BS3_PROC_END_CMN Bs3SwitchHlpConvProtModeRetfPopBpDecBpAndReturn
|
---|
126 |
|
---|