1 | ; $Id: fedisableexcept.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT fedisableexcept - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2022-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 | %define RT_ASM_WITH_SEH64
|
---|
39 | %include "iprt/asmdefs.mac"
|
---|
40 | %include "iprt/x86.mac"
|
---|
41 |
|
---|
42 |
|
---|
43 | BEGINCODE
|
---|
44 |
|
---|
45 | ;;
|
---|
46 | ; Enables a set of exceptions (BSD/GNU extension).
|
---|
47 | ;
|
---|
48 | ; @returns eax = Previous enabled exceptions on success (not subject to fXcpt),
|
---|
49 | ; -1 on failure.
|
---|
50 | ; @param fXcpt 32-bit: [xBP+8]; msc64: ecx; gcc64: edi; -- Mask of exceptions to disable.
|
---|
51 | ;
|
---|
52 | RT_NOCRT_BEGINPROC fedisableexcept
|
---|
53 | push xBP
|
---|
54 | SEH64_PUSH_xBP
|
---|
55 | mov xBP, xSP
|
---|
56 | SEH64_SET_FRAME_xBP 0
|
---|
57 | sub xSP, 10h
|
---|
58 | SEH64_ALLOCATE_STACK 10h
|
---|
59 | SEH64_END_PROLOGUE
|
---|
60 |
|
---|
61 | ;
|
---|
62 | ; Load the parameter into ecx.
|
---|
63 | ;
|
---|
64 | %ifdef ASM_CALL64_GCC
|
---|
65 | mov ecx, edi
|
---|
66 | %elifdef RT_ARCH_X86
|
---|
67 | mov ecx, [xBP + xCB*2]
|
---|
68 | %endif
|
---|
69 | or eax, -1
|
---|
70 | test ecx, ~X86_FCW_XCPT_MASK
|
---|
71 | %ifndef RT_STRICT
|
---|
72 | jnz .return
|
---|
73 | %else
|
---|
74 | jz .input_ok
|
---|
75 | int3
|
---|
76 | jmp .return
|
---|
77 | .input_ok:
|
---|
78 | %endif
|
---|
79 |
|
---|
80 | ;
|
---|
81 | ; Make the changes (old mask in eax).
|
---|
82 | ;
|
---|
83 |
|
---|
84 | ; Modify the x87 mask first (ecx preserved).
|
---|
85 | fstcw [xBP - 10h]
|
---|
86 | %ifdef RT_ARCH_X86 ; Return the inverted x87 mask in 32-bit mode.
|
---|
87 | movzx eax, word [xBP - 10h]
|
---|
88 | %endif
|
---|
89 | or word [xBP - 10h], cx
|
---|
90 | fldcw [xBP - 10h]
|
---|
91 |
|
---|
92 | %ifdef RT_ARCH_X86
|
---|
93 | ; SSE supported (ecx preserved)?
|
---|
94 | extern NAME(rtNoCrtHasSse)
|
---|
95 | call NAME(rtNoCrtHasSse)
|
---|
96 | test al, al
|
---|
97 | jz .return_ok
|
---|
98 | %endif
|
---|
99 |
|
---|
100 | ; Modify the SSE mask (modifies ecx).
|
---|
101 | stmxcsr [xBP - 10h]
|
---|
102 | %ifdef RT_ARCH_AMD64 ; Return the inverted MXCSR exception mask on AMD64 because windows doesn't necessarily set the x87 one.
|
---|
103 | mov eax, [xBP - 10h]
|
---|
104 | shr eax, X86_MXCSR_XCPT_MASK_SHIFT
|
---|
105 | %endif
|
---|
106 | shl ecx, X86_MXCSR_XCPT_MASK_SHIFT
|
---|
107 | or [xBP - 10h], ecx
|
---|
108 | ldmxcsr [xBP - 10h]
|
---|
109 |
|
---|
110 | .return_ok:
|
---|
111 | not eax ; Invert it as we return the enabled rather than masked exceptions.
|
---|
112 | and eax, X86_FCW_XCPT_MASK
|
---|
113 | .return:
|
---|
114 | leave
|
---|
115 | ret
|
---|
116 | ENDPROC RT_NOCRT(fedisableexcept)
|
---|
117 |
|
---|