OSDN Git Service

6ad68f9b9d6b4503f234a693a47b43f04cac7e9c
[pf3gnuchains/gcc-fork.git] / libgcc-math / dbl-64 / s_scalbn.c
1 /* @(#)s_scalbn.c 5.1 93/09/24 */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunPro, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid[] = "$NetBSD: s_scalbn.c,v 1.8 1995/05/10 20:48:08 jtc Exp $";
15 #endif
16
17 /*
18  * scalbn (double x, int n)
19  * scalbn(x,n) returns x* 2**n  computed by  exponent
20  * manipulation rather than by actually performing an
21  * exponentiation or a multiplication.
22  */
23
24 #include "math_private.h"
25
26 #ifdef __STDC__
27 static const double
28 #else
29 static double
30 #endif
31 two54   =  1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
32 twom54  =  5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
33 huge   = 1.0e+300,
34 tiny   = 1.0e-300;
35
36 #ifdef __STDC__
37         double __scalbn (double x, int n)
38 #else
39         double __scalbn (x,n)
40         double x; int n;
41 #endif
42 {
43         int32_t k,hx,lx;
44         EXTRACT_WORDS(hx,lx,x);
45         k = (hx&0x7ff00000)>>20;                /* extract exponent */
46         if (k==0) {                             /* 0 or subnormal x */
47             if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
48             x *= two54;
49             GET_HIGH_WORD(hx,x);
50             k = ((hx&0x7ff00000)>>20) - 54;
51             }
52         if (k==0x7ff) return x+x;               /* NaN or Inf */
53         k = k+n;
54         if (n> 50000 || k >  0x7fe)
55           return huge*__builtin_copysign(huge,x); /* overflow  */
56         if (n< -50000) return tiny*__builtin_copysign(tiny,x); /*underflow*/
57         if (k > 0)                              /* normal result */
58             {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
59         if (k <= -54)
60           return tiny*__builtin_copysign(tiny,x);       /*underflow*/
61         k += 54;                                /* subnormal result */
62         SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
63         return x*twom54;
64 }
65 weak_alias (__scalbn, scalbn)
66 #ifdef NO_LONG_DOUBLE
67 strong_alias (__scalbn, __scalbnl)
68 weak_alias (__scalbn, scalbnl)
69 #endif