1 | ; $Id: bs3-cmn-RegGetCr0.asm 93115 2022-01-01 11:31:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; BS3Kit - Bs3RegGetCr0
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2007-2022 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 |
|
---|
38 | ;;
|
---|
39 | ; @cproto BS3_CMN_PROTO_STUB(RTCCUINTXREG, Bs3RegGetCr0,(void));
|
---|
40 | ;
|
---|
41 | ; @returns Register value.
|
---|
42 | ; @remarks Does not require 20h of parameter scratch space in 64-bit mode.
|
---|
43 | ;
|
---|
44 | ; @uses No GPRs (only return full register(s)).
|
---|
45 | ;
|
---|
46 | BS3_PROC_BEGIN_CMN Bs3RegGetCr0, BS3_PBC_HYBRID_SAFE
|
---|
47 | BS3_CALL_CONV_PROLOG 0
|
---|
48 | push xBP
|
---|
49 | mov xBP, xSP
|
---|
50 |
|
---|
51 | %if TMPL_BITS == 16
|
---|
52 | ; If V8086 mode we have to go thru a syscall.
|
---|
53 | test byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_CODE_V86
|
---|
54 | jnz .via_system_call
|
---|
55 | cmp byte [BS3_DATA16_WRT(g_bBs3CurrentMode)], BS3_MODE_RM
|
---|
56 | je .direct_access
|
---|
57 | %endif
|
---|
58 | ; If not in ring-0, we have to make a system call.
|
---|
59 | mov ax, ss
|
---|
60 | and ax, X86_SEL_RPL
|
---|
61 | jnz .via_system_call
|
---|
62 |
|
---|
63 | .direct_access:
|
---|
64 | mov sAX, cr0
|
---|
65 | TONLY16 mov edx, eax
|
---|
66 | TONLY16 shr edx, 16
|
---|
67 | jmp .return
|
---|
68 |
|
---|
69 | .via_system_call:
|
---|
70 | mov xAX, BS3_SYSCALL_GET_CRX
|
---|
71 | mov dl, 0
|
---|
72 | call Bs3Syscall
|
---|
73 |
|
---|
74 | .return:
|
---|
75 | pop xBP
|
---|
76 | BS3_CALL_CONV_EPILOG 0
|
---|
77 | BS3_HYBRID_RET
|
---|
78 | BS3_PROC_END_CMN Bs3RegGetCr0
|
---|
79 |
|
---|