os/ossrv/stdcpp/src/num_get_float.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 * Copyright (c) 1999
sl@0
     4
 * Silicon Graphics Computer Systems, Inc.
sl@0
     5
 *
sl@0
     6
 * Copyright (c) 1999 
sl@0
     7
 * Boris Fomitchev
sl@0
     8
 *
sl@0
     9
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    10
 * or implied. Any use is at your own risk.
sl@0
    11
 *
sl@0
    12
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    13
 * without fee, provided the above notices are retained on all copies.
sl@0
    14
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    15
 * provided the above notices are retained, and a notice that the code was
sl@0
    16
 * modified is included with the above copyright notice.
sl@0
    17
 *
sl@0
    18
 */ 
sl@0
    19
sl@0
    20
# include "stlport_prefix.h"
sl@0
    21
#include <stl/_limits.h>
sl@0
    22
#include <stl/_num_get.h>
sl@0
    23
#include <stl/_istream.h>
sl@0
    24
#ifdef __SYMBIAN32__
sl@0
    25
#include <stdlib.h>
sl@0
    26
#include <errno.h>
sl@0
    27
#endif
sl@0
    28
sl@0
    29
_STLP_BEGIN_NAMESPACE
sl@0
    30
sl@0
    31
//----------------------------------------------------------------------
sl@0
    32
// num_get
sl@0
    33
sl@0
    34
sl@0
    35
/*
sl@0
    36
 * __string_to_double is just lifted from atof, the difference being
sl@0
    37
 * that we just use '.' for the decimal point, rather than let it
sl@0
    38
 * be taken from the current C locale, which of course is not accessible
sl@0
    39
 * to us.
sl@0
    40
 */
sl@0
    41
sl@0
    42
typedef unsigned int uint32;
sl@0
    43
# if defined (_STLP_MSVC) || defined (__BORLANDC__) || defined (__ICL)
sl@0
    44
# define ULL(x) x##Ui64
sl@0
    45
typedef unsigned _STLP_LONG_LONG uint64;
sl@0
    46
# elif defined (_STLP_LONG_LONG)
sl@0
    47
typedef unsigned _STLP_LONG_LONG uint64;
sl@0
    48
# define ULL(x) x##ULL
sl@0
    49
# elif defined(__MRC__) || defined(__SC__)		//*TY 02/25/2000 - added support for MPW compilers
sl@0
    50
# include "uint64.h"		//*TY 03/25/2000 - added 64bit math type definition
sl@0
    51
# else
sl@0
    52
#  error "there should be some long long type on the system!"
sl@0
    53
#  define NUMERIC_NO_64 1
sl@0
    54
# endif
sl@0
    55
sl@0
    56
// Multiplication of two 64-bit integers, giving a 128-bit result.
sl@0
    57
// Taken from Algorithm M in Knuth section 4.3.1, with the loop 
sl@0
    58
// hand-unrolled.
sl@0
    59
void _Stl_mult64(const uint64 u, const uint64 v,
sl@0
    60
		 uint64& high, uint64& low)
sl@0
    61
{
sl@0
    62
  const uint64 low_mask = ULL(0xffffffff);
sl@0
    63
  const uint64 u0 = u & low_mask;
sl@0
    64
  const uint64 u1 = u >> 32;
sl@0
    65
  const uint64 v0 = v & low_mask;
sl@0
    66
  const uint64 v1 = v >> 32;
sl@0
    67
sl@0
    68
  uint64 t = u0 * v0;
sl@0
    69
  low = t & low_mask;
sl@0
    70
sl@0
    71
  t = u1 * v0 + (t >> 32);
sl@0
    72
  uint64 w1 = t & low_mask;
sl@0
    73
  uint64 w2 = t >> 32;
sl@0
    74
sl@0
    75
  uint64 x = u0 * v1 + w1;
sl@0
    76
  low += (x & low_mask) << 32;
sl@0
    77
  high = u1 * v1 + w2 + (x >> 32);
sl@0
    78
}
sl@0
    79
sl@0
    80
# define bit11 ULL(0x7ff)
sl@0
    81
# define exponent_mask (bit11 << 52)
sl@0
    82
sl@0
    83
inline void _Stl_set_exponent(uint64& val, uint64 exp)
sl@0
    84
{
sl@0
    85
  val = (val & ~exponent_mask) | ((exp & bit11) << 52);
sl@0
    86
}
sl@0
    87
sl@0
    88
/* Power of ten fractions for tenscale*/
sl@0
    89
/* The constants are factored so that at most two constants
sl@0
    90
 * and two multiplies are needed. Furthermore, one of the constants
sl@0
    91
 * is represented exactly - 10**n where 1<= n <= 27.
sl@0
    92
 */
sl@0
    93
sl@0
    94
#if !defined(__SC__)		//*TY 03/25/2000 - no native 64bit integer under SCpp
sl@0
    95
static const uint64 _Stl_tenpow[80] = {
sl@0
    96
ULL(0xa000000000000000), /* _Stl_tenpow[0]=(10**1)/(2**4) */
sl@0
    97
ULL(0xc800000000000000), /* _Stl_tenpow[1]=(10**2)/(2**7) */
sl@0
    98
ULL(0xfa00000000000000), /* _Stl_tenpow[2]=(10**3)/(2**10) */
sl@0
    99
ULL(0x9c40000000000000), /* _Stl_tenpow[3]=(10**4)/(2**14) */
sl@0
   100
ULL(0xc350000000000000), /* _Stl_tenpow[4]=(10**5)/(2**17) */
sl@0
   101
ULL(0xf424000000000000), /* _Stl_tenpow[5]=(10**6)/(2**20) */
sl@0
   102
ULL(0x9896800000000000), /* _Stl_tenpow[6]=(10**7)/(2**24) */
sl@0
   103
ULL(0xbebc200000000000), /* _Stl_tenpow[7]=(10**8)/(2**27) */
sl@0
   104
ULL(0xee6b280000000000), /* _Stl_tenpow[8]=(10**9)/(2**30) */
sl@0
   105
ULL(0x9502f90000000000), /* _Stl_tenpow[9]=(10**10)/(2**34) */
sl@0
   106
ULL(0xba43b74000000000), /* _Stl_tenpow[10]=(10**11)/(2**37) */
sl@0
   107
ULL(0xe8d4a51000000000), /* _Stl_tenpow[11]=(10**12)/(2**40) */
sl@0
   108
ULL(0x9184e72a00000000), /* _Stl_tenpow[12]=(10**13)/(2**44) */
sl@0
   109
ULL(0xb5e620f480000000), /* _Stl_tenpow[13]=(10**14)/(2**47) */
sl@0
   110
ULL(0xe35fa931a0000000), /* _Stl_tenpow[14]=(10**15)/(2**50) */
sl@0
   111
ULL(0x8e1bc9bf04000000), /* _Stl_tenpow[15]=(10**16)/(2**54) */
sl@0
   112
ULL(0xb1a2bc2ec5000000), /* _Stl_tenpow[16]=(10**17)/(2**57) */
sl@0
   113
ULL(0xde0b6b3a76400000), /* _Stl_tenpow[17]=(10**18)/(2**60) */
sl@0
   114
ULL(0x8ac7230489e80000), /* _Stl_tenpow[18]=(10**19)/(2**64) */
sl@0
   115
ULL(0xad78ebc5ac620000), /* _Stl_tenpow[19]=(10**20)/(2**67) */
sl@0
   116
ULL(0xd8d726b7177a8000), /* _Stl_tenpow[20]=(10**21)/(2**70) */
sl@0
   117
ULL(0x878678326eac9000), /* _Stl_tenpow[21]=(10**22)/(2**74) */
sl@0
   118
ULL(0xa968163f0a57b400), /* _Stl_tenpow[22]=(10**23)/(2**77) */
sl@0
   119
ULL(0xd3c21bcecceda100), /* _Stl_tenpow[23]=(10**24)/(2**80) */
sl@0
   120
ULL(0x84595161401484a0), /* _Stl_tenpow[24]=(10**25)/(2**84) */
sl@0
   121
ULL(0xa56fa5b99019a5c8), /* _Stl_tenpow[25]=(10**26)/(2**87) */
sl@0
   122
ULL(0xcecb8f27f4200f3a), /* _Stl_tenpow[26]=(10**27)/(2**90) */
sl@0
   123
sl@0
   124
ULL(0xd0cf4b50cfe20766), /* _Stl_tenpow[27]=(10**55)/(2**183) */
sl@0
   125
ULL(0xd2d80db02aabd62c), /* _Stl_tenpow[28]=(10**83)/(2**276) */
sl@0
   126
ULL(0xd4e5e2cdc1d1ea96), /* _Stl_tenpow[29]=(10**111)/(2**369) */
sl@0
   127
ULL(0xd6f8d7509292d603), /* _Stl_tenpow[30]=(10**139)/(2**462) */
sl@0
   128
ULL(0xd910f7ff28069da4), /* _Stl_tenpow[31]=(10**167)/(2**555) */
sl@0
   129
ULL(0xdb2e51bfe9d0696a), /* _Stl_tenpow[32]=(10**195)/(2**648) */
sl@0
   130
ULL(0xdd50f1996b947519), /* _Stl_tenpow[33]=(10**223)/(2**741) */
sl@0
   131
ULL(0xdf78e4b2bd342cf7), /* _Stl_tenpow[34]=(10**251)/(2**834) */
sl@0
   132
ULL(0xe1a63853bbd26451), /* _Stl_tenpow[35]=(10**279)/(2**927) */
sl@0
   133
ULL(0xe3d8f9e563a198e5), /* _Stl_tenpow[36]=(10**307)/(2**1020) */
sl@0
   134
sl@0
   135
ULL(0xfd87b5f28300ca0e), /* _Stl_tenpow[37]=(10**-28)/(2**-93) */
sl@0
   136
ULL(0xfb158592be068d2f), /* _Stl_tenpow[38]=(10**-56)/(2**-186) */
sl@0
   137
ULL(0xf8a95fcf88747d94), /* _Stl_tenpow[39]=(10**-84)/(2**-279) */
sl@0
   138
ULL(0xf64335bcf065d37d), /* _Stl_tenpow[40]=(10**-112)/(2**-372) */
sl@0
   139
ULL(0xf3e2f893dec3f126), /* _Stl_tenpow[41]=(10**-140)/(2**-465) */
sl@0
   140
ULL(0xf18899b1bc3f8ca2), /* _Stl_tenpow[42]=(10**-168)/(2**-558) */
sl@0
   141
ULL(0xef340a98172aace5), /* _Stl_tenpow[43]=(10**-196)/(2**-651) */
sl@0
   142
ULL(0xece53cec4a314ebe), /* _Stl_tenpow[44]=(10**-224)/(2**-744) */
sl@0
   143
ULL(0xea9c227723ee8bcb), /* _Stl_tenpow[45]=(10**-252)/(2**-837)     */
sl@0
   144
ULL(0xe858ad248f5c22ca), /* _Stl_tenpow[46]=(10**-280)/(2**-930) */
sl@0
   145
ULL(0xe61acf033d1a45df), /* _Stl_tenpow[47]=(10**-308)/(2**-1023)    */
sl@0
   146
ULL(0xe3e27a444d8d98b8), /* _Stl_tenpow[48]=(10**-336)/(2**-1116) */
sl@0
   147
ULL(0xe1afa13afbd14d6e)  /* _Stl_tenpow[49]=(10**-364)/(2**-1209) */
sl@0
   148
sl@0
   149
#else		//*TY 03/20/2000 - added support for SCpp which lacks native 64bit integer type
sl@0
   150
static const UnsignedWide _Stl_tenpow[80] = {
sl@0
   151
ULL2(0xa0000000,0x00000000), /* _Stl_tenpow[0]=(10**1)/(2**4) */
sl@0
   152
ULL2(0xc8000000,0x00000000), /* _Stl_tenpow[1]=(10**2)/(2**7) */
sl@0
   153
ULL2(0xfa000000,0x00000000), /* _Stl_tenpow[2]=(10**3)/(2**10) */
sl@0
   154
ULL2(0x9c400000,0x00000000), /* _Stl_tenpow[3]=(10**4)/(2**14) */
sl@0
   155
ULL2(0xc3500000,0x00000000), /* _Stl_tenpow[4]=(10**5)/(2**17) */
sl@0
   156
ULL2(0xf4240000,0x00000000), /* _Stl_tenpow[5]=(10**6)/(2**20) */
sl@0
   157
ULL2(0x98968000,0x00000000), /* _Stl_tenpow[6]=(10**7)/(2**24) */
sl@0
   158
ULL2(0xbebc2000,0x00000000), /* _Stl_tenpow[7]=(10**8)/(2**27) */
sl@0
   159
ULL2(0xee6b2800,0x00000000), /* _Stl_tenpow[8]=(10**9)/(2**30) */
sl@0
   160
ULL2(0x9502f900,0x00000000), /* _Stl_tenpow[9]=(10**10)/(2**34) */
sl@0
   161
ULL2(0xba43b740,0x00000000), /* _Stl_tenpow[10]=(10**11)/(2**37) */
sl@0
   162
ULL2(0xe8d4a510,0x00000000), /* _Stl_tenpow[11]=(10**12)/(2**40) */
sl@0
   163
ULL2(0x9184e72a,0x00000000), /* _Stl_tenpow[12]=(10**13)/(2**44) */
sl@0
   164
ULL2(0xb5e620f4,0x80000000), /* _Stl_tenpow[13]=(10**14)/(2**47) */
sl@0
   165
ULL2(0xe35fa931,0xa0000000), /* _Stl_tenpow[14]=(10**15)/(2**50) */
sl@0
   166
ULL2(0x8e1bc9bf,0x04000000), /* _Stl_tenpow[15]=(10**16)/(2**54) */
sl@0
   167
ULL2(0xb1a2bc2e,0xc5000000), /* _Stl_tenpow[16]=(10**17)/(2**57) */
sl@0
   168
ULL2(0xde0b6b3a,0x76400000), /* _Stl_tenpow[17]=(10**18)/(2**60) */
sl@0
   169
ULL2(0x8ac72304,0x89e80000), /* _Stl_tenpow[18]=(10**19)/(2**64) */
sl@0
   170
ULL2(0xad78ebc5,0xac620000), /* _Stl_tenpow[19]=(10**20)/(2**67) */
sl@0
   171
ULL2(0xd8d726b7,0x177a8000), /* _Stl_tenpow[20]=(10**21)/(2**70) */
sl@0
   172
ULL2(0x87867832,0x6eac9000), /* _Stl_tenpow[21]=(10**22)/(2**74) */
sl@0
   173
ULL2(0xa968163f,0x0a57b400), /* _Stl_tenpow[22]=(10**23)/(2**77) */
sl@0
   174
ULL2(0xd3c21bce,0xcceda100), /* _Stl_tenpow[23]=(10**24)/(2**80) */
sl@0
   175
ULL2(0x84595161,0x401484a0), /* _Stl_tenpow[24]=(10**25)/(2**84) */
sl@0
   176
ULL2(0xa56fa5b9,0x9019a5c8), /* _Stl_tenpow[25]=(10**26)/(2**87) */
sl@0
   177
ULL2(0xcecb8f27,0xf4200f3a), /* _Stl_tenpow[26]=(10**27)/(2**90) */
sl@0
   178
sl@0
   179
ULL2(0xd0cf4b50,0xcfe20766), /* _Stl_tenpow[27]=(10**55)/(2**183) */
sl@0
   180
ULL2(0xd2d80db0,0x2aabd62c), /* _Stl_tenpow[28]=(10**83)/(2**276) */
sl@0
   181
ULL2(0xd4e5e2cd,0xc1d1ea96), /* _Stl_tenpow[29]=(10**111)/(2**369) */
sl@0
   182
ULL2(0xd6f8d750,0x9292d603), /* _Stl_tenpow[30]=(10**139)/(2**462) */
sl@0
   183
ULL2(0xd910f7ff,0x28069da4), /* _Stl_tenpow[31]=(10**167)/(2**555) */
sl@0
   184
ULL2(0xdb2e51bf,0xe9d0696a), /* _Stl_tenpow[32]=(10**195)/(2**648) */
sl@0
   185
ULL2(0xdd50f199,0x6b947519), /* _Stl_tenpow[33]=(10**223)/(2**741) */
sl@0
   186
ULL2(0xdf78e4b2,0xbd342cf7), /* _Stl_tenpow[34]=(10**251)/(2**834) */
sl@0
   187
ULL2(0xe1a63853,0xbbd26451), /* _Stl_tenpow[35]=(10**279)/(2**927) */
sl@0
   188
ULL2(0xe3d8f9e5,0x63a198e5), /* _Stl_tenpow[36]=(10**307)/(2**1020) */
sl@0
   189
sl@0
   190
ULL2(0xfd87b5f2,0x8300ca0e), /* _Stl_tenpow[37]=(10**-28)/(2**-93) */
sl@0
   191
ULL2(0xfb158592,0xbe068d2f), /* _Stl_tenpow[38]=(10**-56)/(2**-186) */
sl@0
   192
ULL2(0xf8a95fcf,0x88747d94), /* _Stl_tenpow[39]=(10**-84)/(2**-279) */
sl@0
   193
ULL2(0xf64335bc,0xf065d37d), /* _Stl_tenpow[40]=(10**-112)/(2**-372) */
sl@0
   194
ULL2(0xf3e2f893,0xdec3f126), /* _Stl_tenpow[41]=(10**-140)/(2**-465) */
sl@0
   195
ULL2(0xf18899b1,0xbc3f8ca2), /* _Stl_tenpow[42]=(10**-168)/(2**-558) */
sl@0
   196
ULL2(0xef340a98,0x172aace5), /* _Stl_tenpow[43]=(10**-196)/(2**-651) */
sl@0
   197
ULL2(0xece53cec,0x4a314ebe), /* _Stl_tenpow[44]=(10**-224)/(2**-744) */
sl@0
   198
ULL2(0xea9c2277,0x23ee8bcb), /* _Stl_tenpow[45]=(10**-252)/(2**-837)     */
sl@0
   199
ULL2(0xe858ad24,0x8f5c22ca), /* _Stl_tenpow[46]=(10**-280)/(2**-930) */
sl@0
   200
ULL2(0xe61acf03,0x3d1a45df), /* _Stl_tenpow[47]=(10**-308)/(2**-1023)    */
sl@0
   201
ULL2(0xe3e27a44,0x4d8d98b8), /* _Stl_tenpow[48]=(10**-336)/(2**-1116) */
sl@0
   202
ULL2(0xe1afa13a,0xfbd14d6e)  /* _Stl_tenpow[49]=(10**-364)/(2**-1209) */
sl@0
   203
#endif
sl@0
   204
};
sl@0
   205
sl@0
   206
static const short _Stl_twoexp[80] = {
sl@0
   207
4,7,10,14,17,20,24,27,30,34,37,40,44,47,50,54,57,60,64,67,70,74,77,80,84,87,90,
sl@0
   208
183,276,369,462,555,648,741,834,927,1020,
sl@0
   209
-93,-186,-279,-372,-465,-558,-651,-744,-837,-930,-1023,-1116,-1209
sl@0
   210
};
sl@0
   211
sl@0
   212
# define  TEN_1  0           /* offset to 10 **   1 */
sl@0
   213
# define  TEN_27   26        /* offset to 10 **  27 */
sl@0
   214
# define  TEN_M28  37        /* offset to 10 ** -28 */
sl@0
   215
# define  NUM_HI_P 11
sl@0
   216
# define  NUM_HI_N 13
sl@0
   217
sl@0
   218
# define _Stl_HIBITULL (ULL(1) << 63)
sl@0
   219
sl@0
   220
void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo)
sl@0
   221
{
sl@0
   222
  norm = 0;
sl@0
   223
  if( ! (prodhi & _Stl_HIBITULL) ) { 
sl@0
   224
                                /* leading bit is a zero 
sl@0
   225
                                 * may have to normalize 
sl@0
   226
                                 */
sl@0
   227
    if(( prodhi == ~_Stl_HIBITULL) &&
sl@0
   228
       ((prodlo >> 62) == 0x3) ) {  /* normalization followed by round
sl@0
   229
                                     * would cause carry to create
sl@0
   230
                                     * extra bit, so don't normalize 
sl@0
   231
                                     */
sl@0
   232
      p = _Stl_HIBITULL;
sl@0
   233
      return;
sl@0
   234
    }
sl@0
   235
    p = (prodhi<<1) | (prodlo>>63); /* normalize */
sl@0
   236
    norm=1;
sl@0
   237
    prodlo <<= 1;
sl@0
   238
  }
sl@0
   239
  else {
sl@0
   240
    p = prodhi;
sl@0
   241
  }
sl@0
   242
sl@0
   243
  if( (prodlo & _Stl_HIBITULL) != 0 ) {     /* first guard bit a one */		//*TY 03/25/2000 - added explicit comparison to zero to avoid reliance to the implicit conversion from uint64 to bool
sl@0
   244
#if !defined(__SC__)			//*TY 03/25/2000 - 
sl@0
   245
    if( ((p & 0x1) != 0) ||
sl@0
   246
       prodlo != _Stl_HIBITULL ) {    /* not borderline for round to even */
sl@0
   247
#else							//*TY 03/25/2000 - added workaround for SCpp compiler
sl@0
   248
	bool b1 = ((p & 0x1) != 0);
sl@0
   249
    if( b1 || prodlo != _Stl_HIBITULL ) {		//*TY 03/25/2000 - SCpp confuses on this particular original boolean expression
sl@0
   250
#endif							//*TY 03/25/2000 - 
sl@0
   251
      /* round */
sl@0
   252
      p++;
sl@0
   253
      if(p==0)
sl@0
   254
        p++;
sl@0
   255
    }
sl@0
   256
  }
sl@0
   257
sl@0
   258
  return;
sl@0
   259
}
sl@0
   260
sl@0
   261
// Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp.
sl@0
   262
// p:    64-bit fraction
sl@0
   263
// exp:  base-10 exponent
sl@0
   264
// bexp: base-2 exponent (output parameter)
sl@0
   265
sl@0
   266
void _Stl_tenscale(uint64& p, int exp, int& bexp)
sl@0
   267
{
sl@0
   268
  uint64 prodhi, prodlo;        /* 128b product */
sl@0
   269
  int exp_hi, exp_lo;           /* exp = exp_hi*32 + exp_lo */
sl@0
   270
  int hi, lo, tlo, thi;         /* offsets in power of ten table */
sl@0
   271
  int norm;                     /* number of bits of normalization */
sl@0
   272
  int num_hi;                   /* number of high exponent powers */
sl@0
   273
sl@0
   274
  bexp = 0;
sl@0
   275
  if(exp > 0) {                 /* split exponent */
sl@0
   276
    exp_lo = exp;
sl@0
   277
    exp_hi = 0;
sl@0
   278
    if(exp_lo>27) {
sl@0
   279
      exp_lo++;
sl@0
   280
      while(exp_lo>27) {
sl@0
   281
        exp_hi++;
sl@0
   282
        exp_lo-=28;
sl@0
   283
      }
sl@0
   284
    }
sl@0
   285
    tlo = TEN_1;
sl@0
   286
    thi = TEN_27;
sl@0
   287
    num_hi = NUM_HI_P;
sl@0
   288
  }
sl@0
   289
  else if(exp < 0) {
sl@0
   290
    exp_lo = exp;
sl@0
   291
    exp_hi = 0;
sl@0
   292
    while(exp_lo<0) {
sl@0
   293
      exp_hi++;
sl@0
   294
      exp_lo+=28;
sl@0
   295
    }
sl@0
   296
    tlo = TEN_1;
sl@0
   297
    thi = TEN_M28;
sl@0
   298
    num_hi = NUM_HI_N;
sl@0
   299
  }
sl@0
   300
  else {                        /* no scaling needed */
sl@0
   301
    return;
sl@0
   302
  }
sl@0
   303
  while(exp_hi) {               /* scale */
sl@0
   304
    hi = (min) (exp_hi,num_hi);    /* only a few large powers of 10 */
sl@0
   305
    exp_hi -= hi;               /* could iterate in extreme case */
sl@0
   306
    hi += thi-1;
sl@0
   307
    _Stl_mult64(p, _Stl_tenpow[hi], prodhi, prodlo);
sl@0
   308
    _Stl_norm_and_round(p, norm, prodhi, prodlo);
sl@0
   309
    bexp += _Stl_twoexp[hi] - norm;
sl@0
   310
  }
sl@0
   311
  if(exp_lo) {
sl@0
   312
    lo = tlo + exp_lo -1;
sl@0
   313
    _Stl_mult64(p, _Stl_tenpow[lo], prodhi, prodlo);
sl@0
   314
    _Stl_norm_and_round(p, norm, prodhi, prodlo);
sl@0
   315
    bexp += _Stl_twoexp[lo] - norm;
sl@0
   316
  }
sl@0
   317
sl@0
   318
  return;
sl@0
   319
}
sl@0
   320
sl@0
   321
// First argument is a buffer of values from 0 to 9, NOT ascii.
sl@0
   322
// Second argument is number of digits in buffer, 1 <= digits <= 17.
sl@0
   323
// Third argument is base-10 exponent.
sl@0
   324
sl@0
   325
#if defined(__SC__) || defined(__MRC__)
sl@0
   326
sl@0
   327
//*TY 04/06/2000 - powermac's 68K emulator utilizes apple's SANE floating point, which is not compatible with IEEE format.
sl@0
   328
_STLP_END_NAMESPACE
sl@0
   329
# include <fp.h>
sl@0
   330
_STLP_BEGIN_NAMESPACE
sl@0
   331
inline double _Stl_atod(char *buffer, int ndigit, int dexp)
sl@0
   332
{
sl@0
   333
	decimal d;	// ref. inside macintosh powerpc numerics p.9-13
sl@0
   334
	
sl@0
   335
	d.sgn = 0;
sl@0
   336
	d.exp = dexp;
sl@0
   337
	d.sig.length = ndigit;
sl@0
   338
	for( int i = 0; i < ndigit; ++i )
sl@0
   339
	{
sl@0
   340
		d.sig.text[i] = buffer[i] + '0';
sl@0
   341
	}
sl@0
   342
	return dec2num( &d );
sl@0
   343
}
sl@0
   344
sl@0
   345
#else  /* IEEE representation */
sl@0
   346
sl@0
   347
#if 0 // def __ICL
sl@0
   348
// turn off optimization here
sl@0
   349
#  pragma optimize "off"
sl@0
   350
#endif
sl@0
   351
sl@0
   352
double _Stl_atod(char *buffer, int ndigit, int dexp)
sl@0
   353
{
sl@0
   354
sl@0
   355
  uint64 value;         /* Value develops as follows:
sl@0
   356
                                 * 1) decimal digits as an integer
sl@0
   357
                                 * 2) left adjusted fraction
sl@0
   358
                                 * 3) right adjusted fraction
sl@0
   359
                                 * 4) exponent and fraction
sl@0
   360
                                 */
sl@0
   361
sl@0
   362
  uint32 guard;         /* First guard bit */
sl@0
   363
  uint64 rest;          /* Remaining guard bits */
sl@0
   364
sl@0
   365
  int bexp;             /* binary exponent */
sl@0
   366
  int nzero;            /* number of non-zero bits */
sl@0
   367
  int sexp;             /* scaling exponent */
sl@0
   368
sl@0
   369
  char *bufferend;              /* pointer to char after last digit */
sl@0
   370
  
sl@0
   371
  /* Check for zero and treat it as a special case */
sl@0
   372
sl@0
   373
  if (buffer == 0){
sl@0
   374
    return 0.0; 
sl@0
   375
  }
sl@0
   376
sl@0
   377
  /* Convert the decimal digits to a binary integer. */
sl@0
   378
sl@0
   379
  bufferend = buffer + ndigit;
sl@0
   380
  value = 0;                    
sl@0
   381
sl@0
   382
  while( buffer < bufferend ) {
sl@0
   383
    value *= 10;
sl@0
   384
    value += *buffer++;
sl@0
   385
  }
sl@0
   386
sl@0
   387
  /* Check for zero and treat it as a special case */
sl@0
   388
sl@0
   389
  if (value == 0){
sl@0
   390
    return 0.0; 
sl@0
   391
  }
sl@0
   392
sl@0
   393
  /* Normalize value */
sl@0
   394
sl@0
   395
  bexp = 64;                    /* convert from 64b int to fraction */
sl@0
   396
sl@0
   397
  /* Count number of non-zeroes in value */
sl@0
   398
  nzero = 0;
sl@0
   399
  if ( (value >> 32) !=0 ){ nzero  = 32; }		//*TY 03/25/2000 - added explicit comparison to zero to avoid uint64 to bool conversion operator
sl@0
   400
  if ( (value >> (16 + nzero)) !=0 ){ nzero += 16; }
sl@0
   401
  if ( (value >> ( 8 + nzero)) !=0 ){ nzero +=  8; }
sl@0
   402
  if ( (value >> ( 4 + nzero)) !=0 ){ nzero +=  4; }
sl@0
   403
  if ( (value >> ( 2 + nzero)) !=0 ){ nzero +=  2; }
sl@0
   404
  if ( (value >> ( 1 + nzero)) !=0 ){ nzero +=  1; }
sl@0
   405
  if ( (value >> (     nzero)) !=0 ){ nzero +=  1; }
sl@0
   406
sl@0
   407
  /* Normalize */
sl@0
   408
  value <<= /*(uint64)*/ (64-nzero);		//*TY 03/25/2000 - removed extraneous cast to uint64
sl@0
   409
  bexp -= 64-nzero;
sl@0
   410
sl@0
   411
  /* At this point we have a 64b fraction and a binary exponent 
sl@0
   412
   * but have yet to incorporate the decimal exponent.
sl@0
   413
   */
sl@0
   414
sl@0
   415
  /* multiply by 10^dexp */
sl@0
   416
sl@0
   417
  _Stl_tenscale(value, dexp, sexp);
sl@0
   418
  bexp += sexp;
sl@0
   419
sl@0
   420
  if (bexp <= -1022) {          /* HI denorm or underflow */
sl@0
   421
    bexp += 1022;
sl@0
   422
    if( bexp < -53 ) {          /* guaranteed underflow */
sl@0
   423
      value = 0;
sl@0
   424
    }
sl@0
   425
    else {                      /* denorm or possible underflow */
sl@0
   426
    int lead0;
sl@0
   427
sl@0
   428
      lead0 = 12-bexp;          /* 12 sign and exponent bits */
sl@0
   429
sl@0
   430
      /* we must special case right shifts of more than 63 */
sl@0
   431
sl@0
   432
      if ( lead0 > 64 )
sl@0
   433
      {
sl@0
   434
           rest = value;
sl@0
   435
           guard = 0;
sl@0
   436
           value = 0;
sl@0
   437
      }
sl@0
   438
      else if ( lead0 == 64 )
sl@0
   439
      {
sl@0
   440
           rest = value & ((ULL(1)<< 63)-1);
sl@0
   441
#if !defined(__SC__)
sl@0
   442
           guard = (uint32) ((value>> 63) & 1 );
sl@0
   443
#else
sl@0
   444
           guard = to_ulong((value>> 63) & 1 );		//*TY 03/25/2000 - use member function instead of problematic conversion operator utilization
sl@0
   445
#endif
sl@0
   446
           value = 0;
sl@0
   447
      }
sl@0
   448
      else
sl@0
   449
      {
sl@0
   450
          rest = value & (((ULL(1) << lead0)-1)-1);
sl@0
   451
#if !defined(__SC__)
sl@0
   452
          guard = (uint32) (((value>> lead0)-1) & 1);
sl@0
   453
#else		//*TY 03/25/2000 - 
sl@0
   454
          guard = to_ulong(((value>> lead0)-1) & 1); 
sl@0
   455
#endif		//*TY 03/25/2000 - 
sl@0
   456
          value >>= /*(uint64)*/ lead0; /* exponent is zero */
sl@0
   457
      }
sl@0
   458
sl@0
   459
      /* Round */
sl@0
   460
      if (  guard && ( (value&1) || rest) ) {		
sl@0
   461
        value++;
sl@0
   462
        if( value == (ULL(1) << 52) ) { /* carry created normal number */
sl@0
   463
          value = 0;
sl@0
   464
          _Stl_set_exponent(value, 1);
sl@0
   465
        }
sl@0
   466
      }
sl@0
   467
    }
sl@0
   468
sl@0
   469
  }
sl@0
   470
  else {                        /* not zero or denorm */
sl@0
   471
    /* Round to 53 bits */
sl@0
   472
sl@0
   473
    rest = value & (1<<10)-1;
sl@0
   474
    value >>= 10;
sl@0
   475
#if !defined(__SC__)
sl@0
   476
    guard = (uint32) value & 1;
sl@0
   477
#else		//*TY 03/25/2000 - 
sl@0
   478
    guard = to_ulong(value & 1);
sl@0
   479
#endif
sl@0
   480
    value >>= 1;
sl@0
   481
sl@0
   482
    /*  value&1 guard   rest    Action
sl@0
   483
     *  
sl@0
   484
     *  dc      0       dc      none
sl@0
   485
     *  1       1       dc      round
sl@0
   486
     *  0       1       0       none
sl@0
   487
     *  0       1       !=0     round
sl@0
   488
     */
sl@0
   489
    if(guard) {
sl@0
   490
      if(((value&1)!=0) || (rest!=0)) {
sl@0
   491
        value++;                        /* round */
sl@0
   492
        if((value>>53)!=0) {         /* carry all the way across */		
sl@0
   493
          value >>= 1;          /* renormalize */
sl@0
   494
          bexp ++;
sl@0
   495
        }
sl@0
   496
      }
sl@0
   497
    }
sl@0
   498
    /*
sl@0
   499
     * Check for overflow
sl@0
   500
     * IEEE Double Precision Format
sl@0
   501
     * (From Table 7-8 of Kane and Heinrich)
sl@0
   502
     * 
sl@0
   503
     * Fraction bits               52
sl@0
   504
     * Emax                     +1023
sl@0
   505
     * Emin                     -1022
sl@0
   506
     * Exponent bias            +1023
sl@0
   507
     * Exponent bits               11
sl@0
   508
     * Integer bit             hidden
sl@0
   509
     * Total width in bits         64
sl@0
   510
     */
sl@0
   511
  
sl@0
   512
    if (bexp > 1024) {          /* overflow */
sl@0
   513
      return numeric_limits<double>::infinity();
sl@0
   514
    }
sl@0
   515
    else {                      /* value is normal */
sl@0
   516
      value &= ~(ULL(1) << 52);   /* hide hidden bit */
sl@0
   517
      _Stl_set_exponent(value, bexp + 1022); /* add bias */
sl@0
   518
    }
sl@0
   519
  }
sl@0
   520
sl@0
   521
  return *((double *) &value);
sl@0
   522
}
sl@0
   523
sl@0
   524
#endif
sl@0
   525
sl@0
   526
double _Stl_string_to_double(const char * s) {
sl@0
   527
  const int max_digits = 17;
sl@0
   528
  unsigned c;
sl@0
   529
  unsigned Negate, decimal_point;
sl@0
   530
  char *d;
sl@0
   531
  int exp;
sl@0
   532
  double x;
sl@0
   533
  int dpchar;
sl@0
   534
  char digits[max_digits];
sl@0
   535
sl@0
   536
  // Skip leading whitespace, if any.
sl@0
   537
  const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
sl@0
   538
  while (c = *s++, ct.is(ctype_base::space, char(c)))
sl@0
   539
    ;
sl@0
   540
sl@0
   541
  /* process sign */
sl@0
   542
  Negate = 0;
sl@0
   543
  if (c == '+') {
sl@0
   544
    c = *s++;
sl@0
   545
  }
sl@0
   546
  else if (c == '-') {
sl@0
   547
    Negate = 1;
sl@0
   548
    c = *s++;
sl@0
   549
  }
sl@0
   550
  d = digits;
sl@0
   551
  dpchar = '.' - '0';
sl@0
   552
  decimal_point = 0;
sl@0
   553
  exp = 0;
sl@0
   554
  for (;;) {
sl@0
   555
    c -= '0';
sl@0
   556
    if (c < 10) {
sl@0
   557
      if (d == digits+max_digits) {
sl@0
   558
        /* ignore more than 17 digits, but adjust exponent */
sl@0
   559
        exp += (decimal_point ^ 1);
sl@0
   560
      }
sl@0
   561
      else {
sl@0
   562
        if (c == 0 && d == digits) {
sl@0
   563
          /* ignore leading zeros */
sl@0
   564
        }
sl@0
   565
        else {
sl@0
   566
          *d++ = (char) c;
sl@0
   567
        }
sl@0
   568
        exp -= decimal_point;
sl@0
   569
      }
sl@0
   570
    }
sl@0
   571
    else if (c == (unsigned int) dpchar && !decimal_point) {    /* INTERNATIONAL */
sl@0
   572
      decimal_point = 1;
sl@0
   573
    }
sl@0
   574
    else {
sl@0
   575
      break;
sl@0
   576
    }
sl@0
   577
    c = *s++;
sl@0
   578
  }
sl@0
   579
  /* strtod cant return until it finds the end of the exponent */
sl@0
   580
  if (d == digits) {
sl@0
   581
    return 0.0;
sl@0
   582
  }
sl@0
   583
  if (c == 'e'-'0' || c == 'E'-'0') {
sl@0
   584
    register unsigned negate_exp = 0;
sl@0
   585
    register int e = 0;
sl@0
   586
    c = *s++;
sl@0
   587
    if (c == '+' || c == ' ') {
sl@0
   588
      c = *s++;
sl@0
   589
    }
sl@0
   590
    else if (c == '-') {
sl@0
   591
      negate_exp = 1;
sl@0
   592
      c = *s++;
sl@0
   593
    }
sl@0
   594
    if (c -= '0', c < 10) {
sl@0
   595
      do {
sl@0
   596
        if (e <= 340) 
sl@0
   597
          e = e * 10 + (int)c;
sl@0
   598
        else break;
sl@0
   599
        c = *s++;
sl@0
   600
      }
sl@0
   601
      while (c -= '0', c < 10);
sl@0
   602
      if (negate_exp) {
sl@0
   603
        e = -e;
sl@0
   604
      }
sl@0
   605
      if (e < -340 || e > 340) 
sl@0
   606
        exp = e;
sl@0
   607
      else 
sl@0
   608
        exp += e;
sl@0
   609
    }
sl@0
   610
  }
sl@0
   611
sl@0
   612
  if (exp < -340) {
sl@0
   613
    x = 0;
sl@0
   614
  }
sl@0
   615
  else if (exp > 308) {
sl@0
   616
    x = numeric_limits<double>::infinity();
sl@0
   617
  }
sl@0
   618
  else {
sl@0
   619
    /* let _Stl_atod diagnose under- and over-flows */
sl@0
   620
    /* if the input was == 0.0, we have already returned,
sl@0
   621
       so retval of +-Inf signals OVERFLOW, 0.0 UNDERFLOW
sl@0
   622
    */
sl@0
   623
    x = _Stl_atod (digits, (int)(d - digits), exp);
sl@0
   624
  }
sl@0
   625
  if (Negate) {
sl@0
   626
    x = -x;
sl@0
   627
  }
sl@0
   628
  return x;
sl@0
   629
}
sl@0
   630
sl@0
   631
sl@0
   632
#ifndef _STLP_NO_LONG_DOUBLE
sl@0
   633
/*
sl@0
   634
 * __string_to_long_double is just lifted from atold, the difference being
sl@0
   635
 * that we just use '.' for the decimal point, rather than let it
sl@0
   636
 * be taken from the current C locale, which of course is not accessible
sl@0
   637
 * to us.
sl@0
   638
 */
sl@0
   639
sl@0
   640
long double 
sl@0
   641
_Stl_string_to_long_double(const char * s) {
sl@0
   642
  const int max_digits = 34;
sl@0
   643
  register unsigned c;
sl@0
   644
  register unsigned Negate, decimal_point;
sl@0
   645
  register char *d;
sl@0
   646
  register int exp;
sl@0
   647
  long double x;
sl@0
   648
  register int dpchar;
sl@0
   649
  char digits[max_digits];
sl@0
   650
sl@0
   651
  const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
sl@0
   652
  while (c = *s++, ct.is(ctype_base::space, char(c)))
sl@0
   653
    ;
sl@0
   654
sl@0
   655
  /* process sign */
sl@0
   656
  Negate = 0;
sl@0
   657
  if (c == '+') {
sl@0
   658
    c = *s++;
sl@0
   659
  }
sl@0
   660
  else if (c == '-') {
sl@0
   661
    Negate = 1;
sl@0
   662
    c = *s++;
sl@0
   663
  }
sl@0
   664
sl@0
   665
  d = digits;
sl@0
   666
  dpchar = '.' -'0';
sl@0
   667
  decimal_point = 0;
sl@0
   668
  exp = 0;
sl@0
   669
sl@0
   670
  for (;;) {
sl@0
   671
    c -= '0';
sl@0
   672
    if (c < 10) {
sl@0
   673
      if (d == digits+max_digits) {
sl@0
   674
        /* ignore more than 34 digits, but adjust exponent */
sl@0
   675
        exp += (decimal_point ^ 1);
sl@0
   676
      }
sl@0
   677
      else {
sl@0
   678
        if (c == 0 && d == digits) {
sl@0
   679
          /* ignore leading zeros */
sl@0
   680
          ;
sl@0
   681
        }
sl@0
   682
        else {
sl@0
   683
          *d++ = c;
sl@0
   684
        }
sl@0
   685
        exp -= decimal_point;
sl@0
   686
      }
sl@0
   687
    }
sl@0
   688
    else if (c == dpchar && !decimal_point) {    /* INTERNATIONAL */
sl@0
   689
      decimal_point = 1;
sl@0
   690
    }
sl@0
   691
    else {
sl@0
   692
      break;
sl@0
   693
    }
sl@0
   694
    c = *s++;
sl@0
   695
  } /* for */
sl@0
   696
sl@0
   697
  if (d == digits) {
sl@0
   698
    return 0.0L;
sl@0
   699
  }
sl@0
   700
  if (c == 'e'-'0' || c == 'E'-'0') {
sl@0
   701
    register unsigned negate_exp = 0;
sl@0
   702
    register int e = 0;
sl@0
   703
    c = *s++;
sl@0
   704
    if (c == '+' || c == ' ') {
sl@0
   705
      c = *s++;
sl@0
   706
    }
sl@0
   707
    else if (c == '-') {
sl@0
   708
      negate_exp = 1;
sl@0
   709
      c = *s++;
sl@0
   710
    }
sl@0
   711
    if (c -= '0', c < 10) {
sl@0
   712
      do {
sl@0
   713
        if (e <= 340) 
sl@0
   714
          e = e * 10 + c;
sl@0
   715
        else break;
sl@0
   716
        c = *s++;
sl@0
   717
      }
sl@0
   718
      while (c -= '0', c < 10);
sl@0
   719
      if (negate_exp) {
sl@0
   720
        e = -e;
sl@0
   721
      }
sl@0
   722
      if (e < -(323+max_digits) || e > 308) 
sl@0
   723
        exp = e;
sl@0
   724
      else 
sl@0
   725
        exp += e;
sl@0
   726
    }
sl@0
   727
  }
sl@0
   728
sl@0
   729
sl@0
   730
  if (exp < -(324+max_digits)) {
sl@0
   731
    x = 0;
sl@0
   732
  }
sl@0
   733
  else if (exp > 308) {
sl@0
   734
    x =  numeric_limits<long double>::infinity();
sl@0
   735
  }
sl@0
   736
  else {
sl@0
   737
    /* let _Stl_atod diagnose under- and over-flows */
sl@0
   738
    /* if the input was == 0.0, we have already returned,
sl@0
   739
           so retval of +-Inf signals OVERFLOW, 0.0 UNDERFLOW
sl@0
   740
        */
sl@0
   741
sl@0
   742
    //    x = _Stl_atod (digits, (int)(d - digits), exp); // TEMPORARY!!:1
sl@0
   743
    double tmp = _Stl_atod (digits, (int)(d - digits), exp); // TEMPORARY!!:1
sl@0
   744
    x = tmp == numeric_limits<double>::infinity()
sl@0
   745
      ? numeric_limits<long double>::infinity()
sl@0
   746
      : tmp;
sl@0
   747
  }
sl@0
   748
sl@0
   749
  if (Negate) {
sl@0
   750
    x = -x;
sl@0
   751
  }
sl@0
   752
sl@0
   753
  return x;
sl@0
   754
}
sl@0
   755
#endif
sl@0
   756
sl@0
   757
_STLP_EXP_DECLSPEC int  _STLP_CALL
sl@0
   758
__string_to_float(const string& v, float& val) {
sl@0
   759
#ifdef __SYMBIAN32__
sl@0
   760
    char *endpt = NULL;
sl@0
   761
    unsigned c;
sl@0
   762
    const char *s = v.data();
sl@0
   763
  // Skip leading whitespace, if any.
sl@0
   764
  const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
sl@0
   765
  while (c = *s, ct.is(ctype_base::space, char(c)))
sl@0
   766
    s++;
sl@0
   767
  int prv_error = errno;
sl@0
   768
    errno = 0;    
sl@0
   769
    val = strtof(s, &endpt);
sl@0
   770
	bool __ok = (errno == 0);
sl@0
   771
	int tt = errno;
sl@0
   772
	errno= prv_error;
sl@0
   773
    return (__ok);
sl@0
   774
#else
sl@0
   775
    val = _Stl_string_to_double(v.data());
sl@0
   776
    return 0;
sl@0
   777
#endif
sl@0
   778
}
sl@0
   779
sl@0
   780
_STLP_EXP_DECLSPEC int  _STLP_CALL
sl@0
   781
__string_to_float(const string& v, double& val) {
sl@0
   782
#ifdef __SYMBIAN32__
sl@0
   783
    char *endpt = NULL;
sl@0
   784
    unsigned c;
sl@0
   785
    const char *s = v.data();
sl@0
   786
  // Skip leading whitespace, if any.
sl@0
   787
  const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
sl@0
   788
  while (c = *s, ct.is(ctype_base::space, char(c)))
sl@0
   789
    s++;
sl@0
   790
      int prv_error = errno;
sl@0
   791
    errno = 0;
sl@0
   792
    val = strtod(s, &endpt);
sl@0
   793
	bool __ok = (errno == 0);
sl@0
   794
	errno = prv_error;
sl@0
   795
    return (__ok);
sl@0
   796
#else
sl@0
   797
    val = _Stl_string_to_double(v.data());
sl@0
   798
    return 0;
sl@0
   799
#endif
sl@0
   800
}
sl@0
   801
sl@0
   802
#ifndef _STLP_NO_LONG_DOUBLE
sl@0
   803
_STLP_EXP_DECLSPEC int  _STLP_CALL
sl@0
   804
__string_to_float(const string& v, long double& val) {
sl@0
   805
#ifdef __SYMBIAN32__
sl@0
   806
    char *endpt = NULL;
sl@0
   807
    unsigned c;
sl@0
   808
    const char *s = v.data();
sl@0
   809
  // Skip leading whitespace, if any.
sl@0
   810
  const ctype<char>& ct = use_facet<ctype<char> >(locale::classic());
sl@0
   811
  while (c = *s, ct.is(ctype_base::space, char(c)))
sl@0
   812
    s++;
sl@0
   813
    int prv_error = errno;
sl@0
   814
    errno = 0;
sl@0
   815
    val = strtold(s, &endpt);
sl@0
   816
    bool __ok =  (errno == 0);
sl@0
   817
	errno = prv_error;
sl@0
   818
    return (__ok);
sl@0
   819
#else
sl@0
   820
    val = _Stl_string_to_long_double(v.data());
sl@0
   821
    return 0;
sl@0
   822
#endif
sl@0
   823
}
sl@0
   824
#endif
sl@0
   825
sl@0
   826
_STLP_END_NAMESPACE
sl@0
   827
sl@0
   828
// Local Variables:
sl@0
   829
// mode:C++
sl@0
   830
// End: