1 | ; $Id: tanf.asm 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; IPRT - No-CRT tanf - AMD64 & X86.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-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 | ; Compute the sine of rf
|
---|
47 | ; @returns st(0) / xmm0
|
---|
48 | ; @param rf [xSP + xCB*2] / xmm0
|
---|
49 | RT_NOCRT_BEGINPROC tanf
|
---|
50 | push xBP
|
---|
51 | SEH64_PUSH_xBP
|
---|
52 | mov xBP, xSP
|
---|
53 | SEH64_SET_FRAME_xBP 0
|
---|
54 | sub xSP, 20h
|
---|
55 | SEH64_ALLOCATE_STACK 20h
|
---|
56 | SEH64_END_PROLOGUE
|
---|
57 |
|
---|
58 | %ifdef RT_OS_WINDOWS
|
---|
59 | ;
|
---|
60 | ; Make sure we use full precision and not the windows default of 53 bits.
|
---|
61 | ;
|
---|
62 | fnstcw [xBP - 20h]
|
---|
63 | mov ax, [xBP - 20h]
|
---|
64 | or ax, X86_FCW_PC_64 ; includes both bits, so no need to clear the mask.
|
---|
65 | mov [xBP - 1ch], ax
|
---|
66 | fldcw [xBP - 1ch]
|
---|
67 | %endif
|
---|
68 |
|
---|
69 | ;
|
---|
70 | ; Load the input into st0.
|
---|
71 | ;
|
---|
72 | %ifdef RT_ARCH_AMD64
|
---|
73 | movss [xBP - 10h], xmm0
|
---|
74 | fld dword [xBP - 10h]
|
---|
75 | %else
|
---|
76 | fld dword [xBP + xCB*2]
|
---|
77 | %endif
|
---|
78 |
|
---|
79 | ;
|
---|
80 | ; Calculate the tangent.
|
---|
81 | ;
|
---|
82 | fptan
|
---|
83 | fnstsw ax
|
---|
84 | test ah, (X86_FSW_C2 >> 8) ; C2 is set if the input was out of range.
|
---|
85 | jz .return_val
|
---|
86 |
|
---|
87 | ;
|
---|
88 | ; Input was out of range, perform reduction to +/-2pi.
|
---|
89 | ;
|
---|
90 | fldpi
|
---|
91 | fadd st0
|
---|
92 | fxch st1
|
---|
93 | .again:
|
---|
94 | fprem1
|
---|
95 | fnstsw ax
|
---|
96 | test ah, (X86_FSW_C2 >> 8) ; C2 is set if partial result.
|
---|
97 | jnz .again ; Loop till C2 == 0 and we have a final result.
|
---|
98 |
|
---|
99 | fstp st1
|
---|
100 |
|
---|
101 | fptan
|
---|
102 |
|
---|
103 | ;
|
---|
104 | ; Run st0.
|
---|
105 | ;
|
---|
106 | .return_val:
|
---|
107 | ffreep st0 ; ignore the 1.0 fptan pushed
|
---|
108 | %ifdef RT_ARCH_AMD64
|
---|
109 | fstp dword [xBP - 10h]
|
---|
110 | movss xmm0, [xBP - 10h]
|
---|
111 | %endif
|
---|
112 | %ifdef RT_OS_WINDOWS
|
---|
113 | fldcw [xBP - 20h] ; restore original
|
---|
114 | %endif
|
---|
115 | .return:
|
---|
116 | leave
|
---|
117 | ret
|
---|
118 | ENDPROC RT_NOCRT(tanf)
|
---|
119 |
|
---|