1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
; $Id: fesetenv.asm $
;; @file
; IPRT - No-CRT fesetenv - AMD64 & X86.
;
;
; Copyright (C) 2022 Oracle and/or its affiliates.
;
; This file is part of VirtualBox base platform packages, as
; available from https://www.virtualbox.org.
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation, in version 3 of the
; License.
;
; This program is distributed in the hope that it will be useful, but
; WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
; General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, see <https://www.gnu.org/licenses>.
;
; The contents of this file may alternatively be used under the terms
; of the Common Development and Distribution License Version 1.0
; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
; in the VirtualBox distribution, in which case the provisions of the
; CDDL are applicable instead of those of the GPL.
;
; You may elect to license modified versions of this file under the
; terms and conditions of either the GPL or the CDDL or both.
;
; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
;
%define RT_ASM_WITH_SEH64
%include "iprt/asmdefs.mac"
%include "iprt/x86.mac"
%define RT_NOCRT_FE_DFL_ENV 1
%define RT_NOCRT_FE_NOMASK_ENV 2
%define RT_NOCRT_FE_PC53_ENV 3
%define RT_NOCRT_FE_PC64_ENV 4
%define RT_NOCRT_FE_LAST_ENV 4
BEGINCODE
;;
; Sets the FPU+SSE environment.
;
; @returns eax = 0 on success, -1 on failure.
; @param pEnv 32-bit: [xBP+8] msc64: rcx gcc64: rdi - Saved environment to restore.
;
RT_NOCRT_BEGINPROC fesetenv
push xBP
SEH64_PUSH_xBP
mov xBP, xSP
SEH64_SET_FRAME_xBP 0
sub xBP, 20h
SEH64_ALLOCATE_STACK 20h
SEH64_END_PROLOGUE
;
; Load the parameter into rcx.
;
%ifdef ASM_CALL64_GCC
mov rcx, rdi
%elifdef RT_ARCH_X86
mov ecx, [xBP + xCB*2]
%endif
;
; For the x87 state we only set FSW.XCPT, FCW.XCPT, FCW.RC and FCW.PC.
; So we save the current environment, merge those fields and load it.
;
fnstenv [xBP - 20h]
; Check for special "pointer" values:
cmp xCX, RT_NOCRT_FE_LAST_ENV
ja .x87_regular
or eax, -1
test xCX, xCX
jnz .x87_special
%ifdef RT_STRICT
int3
%endif
jmp .return
;
; Special x87 state. Clear all pending exceptions.
;
; We have 4 special environments with only some differences in FCW differs, so set
; up FCW in AX, starting with a NOMASK environment as it has the fewest bits set.
;
.x87_special:
and word [xBP - 20h + X86FSTENV32P.FSW], ~X86_FSW_XCPT_ES_MASK
mov ax, [xBP - 20h + X86FSTENV32P.FCW]
and ax, ~(X86_FCW_MASK_ALL | X86_FCW_PC_MASK | X86_FCW_RC_MASK | X86_FCW_IC_MASK)
%ifdef RT_OS_WINDOWS
or ax, X86_FCW_DM | X86_FCW_PC_53 | X86_FCW_RC_NEAREST | X86_FCW_IC_PROJECTIVE
%else
or ax, X86_FCW_DM | X86_FCW_PC_64 | X86_FCW_RC_NEAREST | X86_FCW_IC_PROJECTIVE
%endif
cmp xCX, RT_NOCRT_FE_NOMASK_ENV
je .x87_special_done
or ax, X86_FCW_MASK_ALL
%ifdef RT_OS_WINDOWS
cmp xCX, RT_NOCRT_FE_PC64_ENV
jne .x87_special_done
or ax, X86_FCW_PC_64 ; X86_FCW_PC_64 is a super set of X86_FCW_PC_53, so no need to clear bits
%else
cmp xCX, RT_NOCRT_FE_PC53_ENV
jne .x87_special_done
and ax, X86_FCW_PC_64 & ~X86_FCW_PC_53 ; X86_FCW_PC_64 is a super set of X86_FCW_PC_53, so clear the bit that differs.
%endif
.x87_special_done:
mov [xBP - 20h + X86FSTENV32P.FCW], ax
jmp .x87_common
;
; Merge input and current.
;
.x87_regular:
; FCW:
mov ax, [xCX + X86FSTENV32P.FCW]
mov dx, [xBP - 20h + X86FSTENV32P.FCW]
and ax, X86_FCW_MASK_ALL | X86_FCW_RC_MASK | X86_FCW_PC_MASK
and dx, ~(X86_FCW_MASK_ALL | X86_FCW_RC_MASK | X86_FCW_PC_MASK)
or dx, ax
mov [xBP - 20h + X86FSTENV32P.FCW], dx
; FSW
mov ax, [xCX + X86FSTENV32P.FSW]
mov dx, [xBP - 20h + X86FSTENV32P.FSW]
and ax, X86_FSW_XCPT_MASK
and dx, ~(X86_FSW_XCPT_MASK)
or dx, ax
mov [xBP - 20h + X86FSTENV32P.FSW], dx
.x87_common:
; Clear the exception info.
xor eax, eax
mov [xBP - 20h + X86FSTENV32P.FPUIP], eax
mov [xBP - 20h + X86FSTENV32P.FPUCS], eax ; covers FOP too.
mov [xBP - 20h + X86FSTENV32P.FPUDP], eax
mov [xBP - 20h + X86FSTENV32P.FPUDS], eax
; Load the merged and cleaned up environment.
fldenv [xBP - 20h]
;
; Now for SSE, if supported, where we'll restore everything as is.
;
%ifdef RT_ARCH_X86
; SSE supported (ecx preserved)?
extern NAME(rtNoCrtHasSse)
call NAME(rtNoCrtHasSse)
test al, al
jz .return_okay
%endif
cmp xCX, RT_NOCRT_FE_LAST_ENV
jb .sse_special_env
ldmxcsr [xCX + 28]
jmp .return_okay
.sse_special_env:
stmxcsr [xBP - 10h]
mov eax, [xBP - 10h]
and eax, ~(X86_MXCSR_XCPT_FLAGS | X86_MXCSR_XCPT_MASK | X86_MXCSR_RC_MASK | X86_MXCSR_DAZ | X86_MXCSR_FZ)
or eax, X86_MXCSR_RC_NEAREST | X86_MXCSR_DM
cmp xCX, RT_NOCRT_FE_NOMASK_ENV ; Only the NOMASK one differs here.
je .sse_special_load_eax
or eax, X86_MXCSR_RC_NEAREST | X86_MXCSR_XCPT_MASK ; default environment masks all exceptions
.sse_special_load_eax:
mov [xBP - 10h], eax
ldmxcsr [xBP - 10h]
;
; Return success.
;
.return_okay:
xor eax, eax
.return:
leave
ret
ENDPROC RT_NOCRT(fesetenv)
|