Print this page
5261 libm should stop using synonyms.h
5298 fabs is 0-sized, confuses dis(1) and others
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Approved by: Gordon Ross <gwr@nexenta.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libm/amd64/src/expl.s
+++ new/usr/src/lib/libm/amd64/src/expl.s
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
↓ open down ↓ |
22 lines elided |
↑ open up ↑ |
23 23 */
24 24 /*
25 25 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
26 26 * Use is subject to license terms.
27 27 */
28 28
29 29 .file "expl.s"
30 30
31 31 #include "libm.h"
32 32 LIBM_ANSI_PRAGMA_WEAK(expl,function)
33 -#include "libm_synonyms.h"
34 33
35 34 .data
36 35 .align 16
37 36 ln2_hi: .4byte 0xd1d00000, 0xb17217f7, 0x3ffe, 0x0
38 37 ln2_lo: .4byte 0x4c67fc0d, 0x8654361c, 0xbfce, 0x0
39 38
40 39 ENTRY(expl)
41 40 movl 16(%rsp),%ecx / cx <--sign&bexp(x)
42 41 andl $0x7fff,%ecx / ecx <-- zero_xtnd(bexp(x))
43 42 cmpl $0x3ffe,%ecx / Is |x| < 0.5?
44 43 jb 2f / If so, see which shortcut to take
45 44 je .check_tail / More checking if 0.5 <= |x| < 1
46 45 .general_case: / Here, |x| >= 1 or x is NaN
47 46 cmpl $0x7fff,%ecx / bexp(|x|) = bexp(INF)?
48 47 je .not_finite / if so, x is not finite
49 48 cmpl $0x400e,%ecx / |x| < 32768 = 2^15?
50 49 jb .finite_non_special / if so, proceed with argument reduction
51 50 fldt 8(%rsp) / x
52 51 fld1 / 1, x
53 52 jmp 1f
54 53 .finite_non_special: / Here, ln(2) < |x| < 2^15
55 54 fldt 8(%rsp) / x
56 55 fld %st(0) / x, x
57 56 fldl2e / log2(e), x, x
58 57 fmulp / z := x*log2(e), x
59 58 frndint / [z], x
60 59 fst %st(2) / [z], x, [z]
61 60 PIC_SETUP(1)
62 61 fldt PIC_L(ln2_hi) / ln2_hi, [z], x, [z]
63 62 fmulp / [z]*ln2_hi, x, [z]
64 63 fsubrp %st,%st(1) / x-[z]*ln2_hi, [z]
65 64 fldt PIC_L(ln2_lo) / ln2_lo, x-[z]*ln2_hi, [z]
66 65 PIC_WRAPUP
67 66 fmul %st(2),%st / [z]*ln2_lo, x-[z]*ln2_hi, [z]
68 67 fsubrp %st,%st(1) / r := x-[z]*ln(2), [z]
69 68 fldl2e / log2(e), r, [z]
70 69 fmulp / f := r*log2(e), [z]
71 70 f2xm1 / 2^f-1,[z]
72 71 fld1 / 1, 2^f-1, [z]
73 72 faddp %st,%st(1) / 2^f, [z]
74 73 1:
75 74 fscale / e^x, [z]
76 75 fstp %st(1)
77 76 ret
78 77
79 78 2: / Here, |x| < 0.5
80 79 cmpl $0x3fbe,%ecx / Is |x| >= 2^-65?
81 80 jae .shortcut / If so, take a shortcut
82 81 fldt 8(%rsp) / x
83 82 fld1 / 1, x
84 83 faddp %st,%st(1) / 1+x (for inexact & directed rounding)
85 84 ret
86 85
87 86 .check_tail:
88 87 movl 12(%rsp),%ecx / ecx <-- hi_32(sgnfcnd(x))
89 88 cmpl $0xb17217f7,%ecx / Is |x| < ln(2)?
90 89 ja .finite_non_special
91 90 jb .shortcut
92 91 movl 8(%rsp),%edx / edx <-- lo_32(x)
93 92 cmpl $0xd1cf79ab,%edx / Is |x| slightly < ln(2)?
94 93 ja .finite_non_special / branch if |x| slightly > ln(2)
95 94 .shortcut:
96 95 / Here, |x| < ln(2), so |z| = |x/ln(2)| < 1,
97 96 / whence z is in f2xm1's domain.
98 97 fldt 8(%rsp) / x
99 98 fldl2e / log2(e), x
100 99 fmulp / x*log2(e)
101 100 f2xm1 / 2^(x*log2(e))-1 = e^x-1
102 101 fld1 / 1, e^x-1
103 102 faddp %st,%st(1) / e^x
104 103 ret
105 104
106 105 .not_finite:
107 106 movl 12(%rsp),%ecx / ecx <-- hi_32(sgnfcnd(x))
108 107 cmpl $0x80000000,%ecx / hi_32(|x|) = hi_32(INF)?
109 108 jne .NaN_or_pinf / if not, x is NaN
110 109 movl 8(%rsp),%edx / edx <-- lo_32(x)
111 110 cmpl $0,%edx / lo_32(x) = 0?
112 111 jne .NaN_or_pinf / if not, x is NaN
113 112 movl 16(%rsp),%eax / ax <-- sign&bexp((x))
114 113 andl $0x8000,%eax / here, x is infinite, but +/-?
115 114 jz .NaN_or_pinf / branch if x = +INF
116 115 fldz / Here, x = -inf, so return 0
117 116 ret
118 117
119 118 .NaN_or_pinf:
120 119 / Here, x = NaN or +inf, so load x and return immediately.
121 120 fldt 8(%rsp)
122 121 fadd %st(0),%st / quiet SNaN
123 122 ret
124 123 .align 16
125 124 SET_SIZE(expl)
↓ open down ↓ |
82 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX