Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
ulp.c
Go to the documentation of this file.
1 /****************************************************************
2 
3 The author of this software is David M. Gay.
4 
5 Copyright (C) 1998, 1999 by Lucent Technologies
6 All Rights Reserved
7 
8 Permission to use, copy, modify, and distribute this software and
9 its documentation for any purpose and without fee is hereby
10 granted, provided that the above copyright notice appear in all
11 copies and that both that the copyright notice and this
12 permission notice and warranty disclaimer appear in supporting
13 documentation, and that the name of Lucent or any of its entities
14 not be used in advertising or publicity pertaining to
15 distribution of the software without specific, written prior
16 permission.
17 
18 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
20 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
21 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
22 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
23 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
25 THIS SOFTWARE.
26 
27 ****************************************************************/
28 
29 /* Please send bug reports to David M. Gay (dmg at acm dot org,
30  * with " at " changed at "@" and " dot " changed to "."). */
31 
32 #include "gdtoaimp.h"
33 
34 double ulp
35 #ifdef KR_headers
36  (x) double x;
37 #else
38  (double x)
39 #endif
40 {
41  Long L;
42  double a;
43 
44  L = (word0(x) & Exp_mask) - (P - 1) * Exp_msk1;
45 #ifndef Sudden_Underflow
46  if(L > 0)
47  {
48 #endif
49 #ifdef IBM
50  L |= Exp_msk1 >> 4;
51 #endif
52  word0(a) = (ULong)L;
53  word1(a) = 0;
54 #ifndef Sudden_Underflow
55  }
56  else
57  {
58  L = -L >> Exp_shift;
59  if(L < Exp_shift)
60  {
61  word0(a) = 0x80000 >> L;
62  word1(a) = 0;
63  }
64  else
65  {
66  word0(a) = 0;
67  L -= Exp_shift;
68  word1(a) = L >= 31 ? 1 : 1 << (31 - L);
69  }
70  }
71 #endif
72  return a;
73 }
#define P
Definition: gdtoaimp.h:399
#define Exp_msk1
Definition: gdtoaimp.h:396
#define word1(x)
Definition: gdtoaimp.h:305
#define word0(x)
Definition: gdtoaimp.h:304
unsigned Long ULong
Definition: gdtoa.h:41
#define Exp_mask
Definition: gdtoaimp.h:398
#define Exp_shift
Definition: gdtoaimp.h:394
double ulp(double x)
Definition: ulp.c:38
#define Long
Definition: gdtoa.h:38