1 | ; $Id: bs3-cmn-RegGetDrX.asm 72138 2018-05-07 13:03:51Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3RegGetDrX
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2018 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | %include "bs3kit-template-header.mac"
|
---|
28 |
|
---|
29 |
|
---|
30 | BS3_EXTERN_CMN Bs3Panic
|
---|
31 | BS3_EXTERN_CMN Bs3Syscall
|
---|
32 | %if TMPL_BITS == 16
|
---|
33 | BS3_EXTERN_DATA16 g_bBs3CurrentMode
|
---|
34 | %endif
|
---|
35 | TMPL_BEGIN_TEXT
|
---|
36 |
|
---|
37 | ;TONLY16 CPU 386
|
---|
38 |
|
---|
39 | ;;
|
---|
40 | ; @cproto BS3_CMN_PROTO_STUB(RTCCUINTXREG, Bs3RegGetDrX,(uint8_t iReg));
|
---|
41 | ;
|
---|
42 | ; @returns Register value.
|
---|
43 | ; @param iRegister The source register
|
---|
44 | ; @remarks Does not require 20h of parameter scratch space in 64-bit mode.
|
---|
45 | ;
|
---|
46 | ; @uses No GPRs (only return full register(s)).
|
---|
47 | ;
|
---|
48 | BS3_PROC_BEGIN_CMN Bs3RegGetDrX, BS3_PBC_HYBRID_SAFE
|
---|
49 | BS3_CALL_CONV_PROLOG 1
|
---|
50 | push xBP
|
---|
51 | mov xBP, xSP
|
---|
52 |
|
---|
53 | %if TMPL_BITS == 16
|
---|
54 | ; If V8086 mode we have to go thru a syscall.
|
---|
55 | test byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_CODE_V86
|
---|
56 | jnz .via_system_call
|
---|
57 | cmp byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_RM
|
---|
58 | je .direct_access
|
---|
59 | %endif
|
---|
60 | ; If not in ring-0, we have to make a system call.
|
---|
61 | mov ax, ss
|
---|
62 | and ax, X86_SEL_RPL
|
---|
63 | jnz .via_system_call
|
---|
64 |
|
---|
65 | .direct_access:
|
---|
66 | ; Switch (iRegister)
|
---|
67 | mov al, [xBP + xCB + cbCurRetAddr]
|
---|
68 | cmp al, 6
|
---|
69 | jz .get_dr6
|
---|
70 | cmp al, 7
|
---|
71 | jz .get_dr7
|
---|
72 | cmp al, 0
|
---|
73 | jz .get_dr0
|
---|
74 | cmp al, 1
|
---|
75 | jz .get_dr1
|
---|
76 | cmp al, 2
|
---|
77 | jz .get_dr2
|
---|
78 | cmp al, 3
|
---|
79 | jz .get_dr3
|
---|
80 | cmp al, 4
|
---|
81 | jz .get_dr4
|
---|
82 | cmp al, 5
|
---|
83 | jz .get_dr5
|
---|
84 | call Bs3Panic
|
---|
85 |
|
---|
86 | .get_dr0:
|
---|
87 | mov sAX, dr0
|
---|
88 | jmp .return_fixup
|
---|
89 | .get_dr1:
|
---|
90 | mov sAX, dr1
|
---|
91 | jmp .return_fixup
|
---|
92 | .get_dr2:
|
---|
93 | mov sAX, dr2
|
---|
94 | jmp .return_fixup
|
---|
95 | .get_dr3:
|
---|
96 | mov sAX, dr3
|
---|
97 | jmp .return_fixup
|
---|
98 | .get_dr4:
|
---|
99 | mov sAX, dr4
|
---|
100 | jmp .return_fixup
|
---|
101 | .get_dr5:
|
---|
102 | mov sAX, dr5
|
---|
103 | jmp .return_fixup
|
---|
104 | .get_dr7:
|
---|
105 | mov sAX, dr7
|
---|
106 | jmp .return_fixup
|
---|
107 | .get_dr6:
|
---|
108 | mov sAX, dr6
|
---|
109 | jmp .return_fixup
|
---|
110 |
|
---|
111 | .via_system_call:
|
---|
112 | mov xAX, BS3_SYSCALL_GET_DRX
|
---|
113 | mov dl, [xBP + xCB + cbCurRetAddr]
|
---|
114 | call Bs3Syscall
|
---|
115 | jmp .return
|
---|
116 |
|
---|
117 | .return_fixup:
|
---|
118 | TONLY16 mov edx, eax
|
---|
119 | TONLY16 shr edx, 16
|
---|
120 | .return:
|
---|
121 | pop xBP
|
---|
122 | BS3_CALL_CONV_EPILOG 1
|
---|
123 | BS3_HYBRID_RET
|
---|
124 | BS3_PROC_END_CMN Bs3RegGetDrX
|
---|
125 |
|
---|