2010-02-19 00:33:15 -07:00
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package math
|
|
|
|
|
|
|
|
|
|
// Ldexp is the inverse of Frexp.
|
2010-04-09 15:37:33 -06:00
|
|
|
|
// It returns frac × 2**exp.
|
2011-01-19 12:23:59 -07:00
|
|
|
|
//
|
|
|
|
|
// Special cases are:
|
|
|
|
|
// Ldexp(±0, exp) = ±0
|
|
|
|
|
// Ldexp(±Inf, exp) = ±Inf
|
|
|
|
|
// Ldexp(NaN, exp) = NaN
|
2010-02-19 00:33:15 -07:00
|
|
|
|
func Ldexp(frac float64, exp int) float64 {
|
|
|
|
|
// TODO(rsc): Remove manual inlining of IsNaN, IsInf
|
|
|
|
|
// when compiler does it for us
|
|
|
|
|
// special cases
|
2010-04-26 23:44:39 -06:00
|
|
|
|
switch {
|
|
|
|
|
case frac == 0:
|
|
|
|
|
return frac // correctly return -0
|
2011-01-19 12:23:59 -07:00
|
|
|
|
case frac < -MaxFloat64 || frac > MaxFloat64 || frac != frac: // IsInf(frac, 0) || IsNaN(frac):
|
|
|
|
|
return frac
|
2010-02-19 00:33:15 -07:00
|
|
|
|
}
|
2011-01-19 12:23:59 -07:00
|
|
|
|
frac, e := normalize(frac)
|
|
|
|
|
exp += e
|
2010-02-19 00:33:15 -07:00
|
|
|
|
x := Float64bits(frac)
|
2011-01-19 12:23:59 -07:00
|
|
|
|
exp += int(x>>shift)&mask - bias
|
|
|
|
|
if exp < -1074 {
|
|
|
|
|
return Copysign(0, frac) // underflow
|
2010-02-19 00:33:15 -07:00
|
|
|
|
}
|
2011-01-19 12:23:59 -07:00
|
|
|
|
if exp > 1023 { // overflow
|
2010-02-19 00:33:15 -07:00
|
|
|
|
if frac < 0 {
|
|
|
|
|
return Inf(-1)
|
|
|
|
|
}
|
|
|
|
|
return Inf(1)
|
|
|
|
|
}
|
2011-01-19 12:23:59 -07:00
|
|
|
|
var m float64 = 1
|
|
|
|
|
if exp < -1022 { // denormal
|
|
|
|
|
exp += 52
|
|
|
|
|
m = 1.0 / (1 << 52) // 2**-52
|
|
|
|
|
}
|
2010-02-19 00:33:15 -07:00
|
|
|
|
x &^= mask << shift
|
2011-01-19 12:23:59 -07:00
|
|
|
|
x |= uint64(exp+bias) << shift
|
|
|
|
|
return m * Float64frombits(x)
|
2010-02-19 00:33:15 -07:00
|
|
|
|
}
|