1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
7 // Ldexp is the inverse of Frexp.
8 // It returns frac × 2**exp.
11 // Ldexp(±0, exp) = ±0
12 // Ldexp(±Inf, exp) = ±Inf
13 // Ldexp(NaN, exp) = NaN
16 func libc_ldexp(float64, int) float64
18 func Ldexp(frac
float64, exp
int) float64 {
19 r
:= libc_ldexp(frac
, exp
)
21 // Work around a bug in the implementation of ldexp on Solaris
22 // 9. If multiplying a negative number by 2 raised to a
23 // negative exponent underflows, we want to return negative
24 // zero, but the Solaris 9 implementation returns positive
25 // zero. This workaround can be removed when and if we no
26 // longer care about Solaris 9.
27 if r
== 0 && frac
< 0 && exp
< 0 {
33 func ldexp(frac
float64, exp
int) float64 {
37 return frac
// correctly return -0
38 case IsInf(frac
, 0) ||
IsNaN(frac
):
41 frac
, e
:= normalize(frac
)
43 x
:= Float64bits(frac
)
44 exp
+= int(x
>>shift
)&mask
- bias
46 return Copysign(0, frac
) // underflow
48 if exp
> 1023 { // overflow
55 if exp
< -1022 { // denormal
57 m
= 1.0 / (1 << 52) // 2**-52
60 x |
= uint64(exp
+bias
) << shift
61 return m
* Float64frombits(x
)