Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
g_xfmt.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 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 #undef _0
35 #undef _1
36 
37 /* one or the other of IEEE_MC68k or IEEE_8087 should be #defined */
38 
39 #ifdef IEEE_MC68k
40 #define _0 0
41 #define _1 1
42 #define _2 2
43 #define _3 3
44 #define _4 4
45 #endif
46 #ifdef IEEE_8087
47 #define _0 4
48 #define _1 3
49 #define _2 2
50 #define _3 1
51 #define _4 0
52 #endif
53 
54 char*
55 #ifdef KR_headers
56  g_xfmt(buf, V, ndig, bufsize) char* buf;
57 char* V;
58 int ndig;
59 unsigned bufsize;
60 #else
61 g_xfmt(char *buf, void *V, int ndig, unsigned bufsize)
62 #endif
63 {
64  static FPI fpi = {64, 1 - 16383 - 64 + 1, 32766 - 16383 - 64 + 1, 1, 0};
65  char *b, *s, *se;
66  ULong bits[2], sign;
67  UShort* L;
68  int decpt, ex, i, mode;
69 
70  if(ndig < 0)
71  {
72  {
73  ndig = 0;
74  }
75  }
76  if(bufsize < (unsigned)ndig + 10)
77  {
78  {
79  return 0;
80  }
81  }
82 
83  L = (UShort*)V;
84  sign = L[_0] & 0x8000;
85  bits[1] = (ULong)(L[_1] << 16) | L[_2];
86  bits[0] = (ULong)(L[_3] << 16) | L[_4];
87  if((ex = L[_0] & 0x7fff) != 0)
88  {
89  if(ex == 0x7fff)
90  {
91  /* Infinity or NaN */
92  if(bits[0] | bits[1])
93  {
94  {
95  b = strcp(buf, "NaN");
96  }
97  }
98  else
99  {
100  b = buf;
101  if(sign)
102  {
103  {
104  *b++ = '-';
105  }
106  }
107  b = strcp(b, "Infinity");
108  }
109  return b;
110  }
111  i = STRTOG_Normal;
112  }
113  else if(bits[0] | bits[1])
114  {
115  i = STRTOG_Denormal;
116  ex = 1;
117  }
118  else
119  {
120  b = buf;
121 #ifndef IGNORE_ZERO_SIGN
122  if(sign)
123  {
124  {
125  *b++ = '-';
126  }
127  }
128 #endif
129  *b++ = '0';
130  *b = 0;
131  return b;
132  }
133  ex -= 0x3fff + 63;
134  mode = 2;
135  if(ndig <= 0)
136  {
137  if(bufsize < 32)
138  {
139  {
140  return 0;
141  }
142  }
143  mode = 0;
144  }
145  s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
146  return g__fmt(buf, s, se, decpt, sign);
147 }
char * g__fmt(char *b, char *s, const char *se, int decpt, ULong sign)
Definition: g__fmt.c:46
char * gdtoa(FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve)
Definition: gdtoa.c:130
char * g_xfmt(char *buf, void *V, int ndig, unsigned bufsize)
Definition: g_xfmt.c:61
unsigned short UShort
Definition: gdtoa.h:44
unsigned Long ULong
Definition: gdtoa.h:41
Definition: gdtoa.h:86
#define strcp
Definition: gdtoaimp.h:541