1 | ; $Id: feenableexcept.asm 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT feenableexcept - 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 enable.
|
---|
51 | ;
|
---|
52 | RT_NOCRT_BEGINPROC feenableexcept
|
---|
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 | ; Invert the mask as we're enabling the exceptions, not masking them.
|
---|
81 | not ecx
|
---|
82 |
|
---|
83 | ;
|
---|
84 | ; Make the changes (old mask in eax).
|
---|
85 | ;
|
---|
86 |
|
---|
87 | ; Modify the x87 mask first (ecx preserved).
|
---|
88 | fstcw [xBP - 10h]
|
---|
89 | %ifdef RT_ARCH_X86 ; Return the inverted x87 mask in 32-bit mode.
|
---|
90 | mov ax, word [xBP - 10h]
|
---|
91 | and eax, X86_FCW_XCPT_MASK
|
---|
92 | %endif
|
---|
93 | and word [xBP - 10h], cx
|
---|
94 | fldcw [xBP - 10h]
|
---|
95 |
|
---|
96 | %ifdef RT_ARCH_X86
|
---|
97 | ; SSE supported (ecx preserved)?
|
---|
98 | extern NAME(rtNoCrtHasSse)
|
---|
99 | call NAME(rtNoCrtHasSse)
|
---|
100 | test al, al
|
---|
101 | jz .return_ok
|
---|
102 | %endif
|
---|
103 |
|
---|
104 | ; Modify the SSE mask (modifies ecx).
|
---|
105 | stmxcsr [xBP - 10h]
|
---|
106 | %ifdef RT_ARCH_AMD64 ; Return the inverted MXCSR exception mask on AMD64 because windows doesn't necessarily set the x87 one.
|
---|
107 | mov eax, [xBP - 10h]
|
---|
108 | and eax, X86_MXCSR_XCPT_MASK
|
---|
109 | shr eax, X86_MXCSR_XCPT_MASK_SHIFT
|
---|
110 | %endif
|
---|
111 | rol ecx, X86_MXCSR_XCPT_MASK_SHIFT
|
---|
112 | and [xBP - 10h], ecx
|
---|
113 | ldmxcsr [xBP - 10h]
|
---|
114 |
|
---|
115 | .return_ok:
|
---|
116 | not eax ; Invert it as we return the enabled rather than masked exceptions.
|
---|
117 | .return:
|
---|
118 | leave
|
---|
119 | ret
|
---|
120 | ENDPROC RT_NOCRT(feenableexcept)
|
---|
121 |
|
---|