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>
5262 libm needs to be carefully unifdef'd
5268 libm doesn't need to hide symbols which are already local
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com>
Reviewed by: Gordon Ross <gwr@nexenta.com>
Approved by: Gordon Ross <gwr@nexenta.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libm/sparc/src/nextafter.S
+++ new/usr/src/lib/libm/sparc/src/nextafter.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.
23 23 */
24 24 /*
25 25 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
↓ open down ↓ |
25 lines elided |
↑ open up ↑ |
26 26 * Use is subject to license terms.
27 27 */
28 28
29 29 .file "nextafter.S"
30 30
31 31 #include "libm.h"
32 32 LIBM_ANSI_PRAGMA_WEAK(nextafter,function)
33 33 .weak _nextafter
34 34 .type _nextafter,#function
35 35 _nextafter = __nextafter
36 -#include "libm_synonyms.h"
37 36 #include "libm_protos.h"
38 37
39 -#if defined(LIBM_BUILD) && !defined(ELFOBJ)
40 -#define mENTRY(x) ENTRY(__libm/**/x)
41 -#define mNAME(x) NAME(__libm/**/x)
42 -#else
43 -#define mENTRY(x) ENTRY(x)
44 -#define mNAME(x) NAME(x)
45 -#endif
46 -
47 38 RO_DATA
48 39 .align 8
49 40 .Lconstant:
50 41 two54 = 0x00
51 42 .word 0x43500000,0x0 ! 2**54
52 43 twom54 = 0x08
53 44 .word 0x3c900000,0x0 ! 2**-54
54 45 tiny = 0x10
55 46 .word 0x00100000,0x0 ! tiny
56 47
57 48 ! variable using fp
58 49 x = -0x8
59 50 y = -0x10
60 51
61 52 ENTRY(nextafter)
62 53 save %sp,-128,%sp
63 54 PIC_SETUP(l7)
64 55 std %i0,[%fp+x]
65 56 or %g0,%i0,%o0 ! save original arguments
66 57 or %g0,%i1,%o1
67 58 std %i2,[%fp+y]
68 59 or %g0,%i2,%o2
69 60 or %g0,%i3,%o3
70 61 ldd [%fp+x],%f2 ! x
71 62 ldd [%fp+y],%f0 ! y
72 63 fcmpd %f2,%f0 ! x:y
73 64 PIC_SET(l7,.Lconstant,l0)
74 65 sethi %hi(0x80000000),%l1
75 66 andn %i0,%l1,%l4
76 67 fbe 9f ! next_return
77 68 nop
78 69 fbu,a 9f ! next_return
79 70 fmuld %f2,%f0,%f0 ! + -> * for Cheetah
80 71 orcc %i1,%l4,%g0 ! see if x is zero
81 72 bne 1f
82 73 tst %i0
83 74 ! x is zero, return sign(y)*min
84 75 and %i2,%l1,%i0
85 76 ba 4f ! next_final
86 77 mov 1,%i1
87 78 1: bge 2f
88 79 nop
89 80 ! x is negative
90 81 fbl 1f ! next_subulp
91 82 nop
92 83 fbg 3f ! next_addulp
93 84 nop
94 85 2:
95 86 fbl 3f ! next_addulp
96 87 nop
97 88 1: ! next_subulp
98 89 subcc %i1,1,%i1
99 90 ba 4f ! next_final
100 91 subx %i0,0,%i0
101 92 3: ! next_addulp
102 93 addcc %i1,1,%i1
↓ open down ↓ |
46 lines elided |
↑ open up ↑ |
103 94 addx %i0,0,%i0
104 95 4: ! next_final
105 96 sethi %hi(0x7ff00000),%l3
106 97 std %i0,[%fp+x]
107 98 andcc %i0,%l3,%i2
108 99 be,a 1f ! xflow
109 100 ldd [%l0+tiny],%f2
110 101 cmp %i2,%l3
111 102 bne,a 9f ! next_return
112 103 ldd [%fp+x],%f0
113 - call mNAME(_SVID_libm_err) ! overflow
104 + call NAME(_SVID_libm_err) ! overflow
114 105 or %g0,46,%o4
115 106 ba 9f
116 107 nop
117 108 1: ! xflow
118 109 fmuld %f2,%f2,%f2
119 110 ldd [%fp+x],%f0
120 111 9: ! next_return
121 112 ret
122 113 restore
123 114
124 115 SET_SIZE(nextafter)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX