Home | History | Annotate | Line # | Download | only in gdtoa
      1 /* $NetBSD: strtopx.c,v 1.6 2013/04/18 21:54:11 joerg Exp $ */
      2 
      3 /****************************************************************
      4 
      5 The author of this software is David M. Gay.
      6 
      7 Copyright (C) 1998, 2000 by Lucent Technologies
      8 All Rights Reserved
      9 
     10 Permission to use, copy, modify, and distribute this software and
     11 its documentation for any purpose and without fee is hereby
     12 granted, provided that the above copyright notice appear in all
     13 copies and that both that the copyright notice and this
     14 permission notice and warranty disclaimer appear in supporting
     15 documentation, and that the name of Lucent or any of its entities
     16 not be used in advertising or publicity pertaining to
     17 distribution of the software without specific, written prior
     18 permission.
     19 
     20 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
     21 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
     22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
     23 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     24 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
     25 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
     26 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
     27 THIS SOFTWARE.
     28 
     29 ****************************************************************/
     30 
     31 /* Please send bug reports to David M. Gay (dmg at acm dot org,
     32  * with " at " changed at "@" and " dot " changed to ".").	*/
     33 
     34 #include "gdtoaimp.h"
     35 
     36 #undef _0
     37 #undef _1
     38 
     39 /* one or the other of IEEE_BIG_ENDIAN or IEEE_LITTLE_ENDIAN should be #defined */
     40 
     41 #ifdef IEEE_BIG_ENDIAN
     42 #define _0 0
     43 #define _1 1
     44 #define _2 2
     45 #define _3 3
     46 #define _4 4
     47 #endif
     48 #ifdef IEEE_LITTLE_ENDIAN
     49 #define _0 4
     50 #define _1 3
     51 #define _2 2
     52 #define _3 1
     53 #define _4 0
     54 #endif
     55 
     56  int
     57 strtopx(CONST char *s, char **sp, void *V, locale_t loc)
     58 {
     59 	static const FPI fpi0 = { 64, 1-16383-64+1, 32766 - 16383 - 64 + 1, 1, SI };
     60 	ULong bits[2];
     61 	Long expt;
     62 	int k;
     63 	UShort *L = (UShort*)V;
     64 #ifdef Honor_FLT_ROUNDS
     65 #include "gdtoa_fltrnds.h"
     66 #else
     67 #define fpi &fpi0
     68 #endif
     69 
     70 	k = strtodg(s, sp, fpi, &expt, bits, loc);
     71 	if (k == STRTOG_NoMemory)
     72 		return k;
     73 	switch(k & STRTOG_Retmask) {
     74 	  case STRTOG_NoNumber:
     75 	  case STRTOG_Zero:
     76 		L[0] = L[1] = L[2] = L[3] = L[4] = 0;
     77 		break;
     78 
     79 	  case STRTOG_Denormal:
     80 		L[_0] = 0;
     81 		goto normal_bits;
     82 
     83 	  case STRTOG_Normal:
     84 	  case STRTOG_NaNbits:
     85 		L[_0] = expt + 0x3fff + 63;
     86  normal_bits:
     87 		L[_4] = (UShort)bits[0];
     88 		L[_3] = (UShort)(bits[0] >> 16);
     89 		L[_2] = (UShort)bits[1];
     90 		L[_1] = (UShort)(bits[1] >> 16);
     91 		break;
     92 
     93 	  case STRTOG_Infinite:
     94 		L[_0] = 0x7fff;
     95 		L[_1] = 0x8000;
     96 		L[_2] = L[_3] = L[_4] = 0;
     97 		break;
     98 
     99 	  case STRTOG_NaN:
    100 		L[0] = ldus_QNAN0;
    101 		L[1] = ldus_QNAN1;
    102 		L[2] = ldus_QNAN2;
    103 		L[3] = ldus_QNAN3;
    104 		L[4] = ldus_QNAN4;
    105 	  }
    106 	if (k & STRTOG_Neg)
    107 		L[_0] |= 0x8000;
    108 	return k;
    109 	}
    110