1 | ; $Id: fetestexcept.asm 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT fetestexcept - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2022-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 |
|
---|
38 | %define RT_ASM_WITH_SEH64
|
---|
39 | %include "iprt/asmdefs.mac"
|
---|
40 | %include "iprt/x86.mac"
|
---|
41 |
|
---|
42 |
|
---|
43 | BEGINCODE
|
---|
44 |
|
---|
45 | ;;
|
---|
46 | ; Return the pending exceptions in the given mask.
|
---|
47 | ;
|
---|
48 | ; Basically a simpler fegetexceptflags function.
|
---|
49 | ;
|
---|
50 | ; @returns eax = pending exceptions (X86_FSW_XCPT_MASK) & fXcptMask.
|
---|
51 | ; @param fXcptMask 32-bit: [xBP+8]; msc64: ecx; gcc64: edi; -- Exceptions to test for (X86_FSW_XCPT_MASK).
|
---|
52 | ; Accepts X86_FSW_SF and will return it if given as input.
|
---|
53 | ;
|
---|
54 | RT_NOCRT_BEGINPROC fetestexcept
|
---|
55 | push xBP
|
---|
56 | SEH64_PUSH_xBP
|
---|
57 | mov xBP, xSP
|
---|
58 | SEH64_SET_FRAME_xBP 0
|
---|
59 | sub xSP, 10h
|
---|
60 | SEH64_ALLOCATE_STACK 10h
|
---|
61 | SEH64_END_PROLOGUE
|
---|
62 |
|
---|
63 | ;
|
---|
64 | ; Load the parameter into ecx (fXcptMask).
|
---|
65 | ;
|
---|
66 | %ifdef ASM_CALL64_GCC
|
---|
67 | mov ecx, edi
|
---|
68 | %elifdef RT_ARCH_X86
|
---|
69 | mov ecx, [xBP + xCB*2]
|
---|
70 | %endif
|
---|
71 | %if 0
|
---|
72 | and ecx, X86_FSW_XCPT_MASK
|
---|
73 | %else
|
---|
74 | or eax, -1
|
---|
75 | test ecx, ~X86_FSW_XCPT_MASK
|
---|
76 | jnz .return
|
---|
77 | %endif
|
---|
78 |
|
---|
79 | ;
|
---|
80 | ; Get the pending exceptions.
|
---|
81 | ;
|
---|
82 |
|
---|
83 | ; Get x87 exceptions first.
|
---|
84 | fnstsw ax
|
---|
85 | and eax, ecx
|
---|
86 |
|
---|
87 | %ifdef RT_ARCH_X86
|
---|
88 | ; SSE supported (ecx preserved)?
|
---|
89 | mov ch, al ; Save the return value - it's only the lower 6 bits.
|
---|
90 | extern NAME(rtNoCrtHasSse)
|
---|
91 | call NAME(rtNoCrtHasSse)
|
---|
92 | test al, al
|
---|
93 | mov al, ch ; Restore the return value - no need for movzx here.
|
---|
94 | jz .return
|
---|
95 | %endif
|
---|
96 |
|
---|
97 | ; OR in the SSE exceptions (modifies ecx).
|
---|
98 | stmxcsr [xBP - 10h]
|
---|
99 | and ecx, [xBP - 10h]
|
---|
100 | and ecx, X86_MXCSR_XCPT_FLAGS
|
---|
101 | or eax, ecx
|
---|
102 |
|
---|
103 | .return:
|
---|
104 | leave
|
---|
105 | ret
|
---|
106 | ENDPROC RT_NOCRT(fetestexcept)
|
---|
107 |
|
---|