1 | ; $Id: bs3-cmn-RegGetDrX.asm 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3RegGetDrX
|
---|
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 | BS3_EXTERN_CMN Bs3Panic
|
---|
41 | BS3_EXTERN_CMN Bs3Syscall
|
---|
42 | %if TMPL_BITS == 16
|
---|
43 | BS3_EXTERN_DATA16 g_bBs3CurrentMode
|
---|
44 | %endif
|
---|
45 | TMPL_BEGIN_TEXT
|
---|
46 |
|
---|
47 | ;TONLY16 CPU 386
|
---|
48 |
|
---|
49 | ;;
|
---|
50 | ; @cproto BS3_CMN_PROTO_STUB(RTCCUINTXREG, Bs3RegGetDrX,(uint8_t iReg));
|
---|
51 | ;
|
---|
52 | ; @returns Register value.
|
---|
53 | ; @param iRegister The source register
|
---|
54 | ; @remarks Does not require 20h of parameter scratch space in 64-bit mode.
|
---|
55 | ;
|
---|
56 | ; @uses No GPRs (only return full register(s)).
|
---|
57 | ;
|
---|
58 | BS3_PROC_BEGIN_CMN Bs3RegGetDrX, BS3_PBC_HYBRID_SAFE
|
---|
59 | BS3_CALL_CONV_PROLOG 1
|
---|
60 | push xBP
|
---|
61 | mov xBP, xSP
|
---|
62 |
|
---|
63 | %if TMPL_BITS == 16
|
---|
64 | ; If V8086 mode we have to go thru a syscall.
|
---|
65 | test byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_CODE_V86
|
---|
66 | jnz .via_system_call
|
---|
67 | cmp byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_RM
|
---|
68 | je .direct_access
|
---|
69 | %endif
|
---|
70 | ; If not in ring-0, we have to make a system call.
|
---|
71 | mov ax, ss
|
---|
72 | and ax, X86_SEL_RPL
|
---|
73 | jnz .via_system_call
|
---|
74 |
|
---|
75 | .direct_access:
|
---|
76 | ; Switch (iRegister)
|
---|
77 | mov al, [xBP + xCB + cbCurRetAddr]
|
---|
78 | cmp al, 6
|
---|
79 | jz .get_dr6
|
---|
80 | cmp al, 7
|
---|
81 | jz .get_dr7
|
---|
82 | cmp al, 0
|
---|
83 | jz .get_dr0
|
---|
84 | cmp al, 1
|
---|
85 | jz .get_dr1
|
---|
86 | cmp al, 2
|
---|
87 | jz .get_dr2
|
---|
88 | cmp al, 3
|
---|
89 | jz .get_dr3
|
---|
90 | cmp al, 4
|
---|
91 | jz .get_dr4
|
---|
92 | cmp al, 5
|
---|
93 | jz .get_dr5
|
---|
94 | call Bs3Panic
|
---|
95 |
|
---|
96 | .get_dr0:
|
---|
97 | mov sAX, dr0
|
---|
98 | jmp .return_fixup
|
---|
99 | .get_dr1:
|
---|
100 | mov sAX, dr1
|
---|
101 | jmp .return_fixup
|
---|
102 | .get_dr2:
|
---|
103 | mov sAX, dr2
|
---|
104 | jmp .return_fixup
|
---|
105 | .get_dr3:
|
---|
106 | mov sAX, dr3
|
---|
107 | jmp .return_fixup
|
---|
108 | .get_dr4:
|
---|
109 | mov sAX, dr4
|
---|
110 | jmp .return_fixup
|
---|
111 | .get_dr5:
|
---|
112 | mov sAX, dr5
|
---|
113 | jmp .return_fixup
|
---|
114 | .get_dr7:
|
---|
115 | mov sAX, dr7
|
---|
116 | jmp .return_fixup
|
---|
117 | .get_dr6:
|
---|
118 | mov sAX, dr6
|
---|
119 | jmp .return_fixup
|
---|
120 |
|
---|
121 | .via_system_call:
|
---|
122 | mov xAX, BS3_SYSCALL_GET_DRX
|
---|
123 | mov dl, [xBP + xCB + cbCurRetAddr]
|
---|
124 | call Bs3Syscall
|
---|
125 | jmp .return
|
---|
126 |
|
---|
127 | .return_fixup:
|
---|
128 | TONLY16 mov edx, eax
|
---|
129 | TONLY16 shr edx, 16
|
---|
130 | .return:
|
---|
131 | pop xBP
|
---|
132 | BS3_CALL_CONV_EPILOG 1
|
---|
133 | BS3_HYBRID_RET
|
---|
134 | BS3_PROC_END_CMN Bs3RegGetDrX
|
---|
135 |
|
---|