forked from KolibriOS/kolibrios
Newlib source code
git-svn-id: svn://kolibrios.org@1693 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
67
programs/develop/libraries/newlib/stdlib/abort.c
Normal file
67
programs/develop/libraries/newlib/stdlib/abort.c
Normal file
@@ -0,0 +1,67 @@
|
||||
/* NetWare can not use this implementation of abort. It provides its
|
||||
own version of abort in clib.nlm. If we can not use clib.nlm, then
|
||||
we must write abort in sys/netware. */
|
||||
|
||||
#ifdef ABORT_PROVIDED
|
||||
|
||||
int _dummy_abort = 1;
|
||||
|
||||
#else
|
||||
|
||||
/*
|
||||
FUNCTION
|
||||
<<abort>>---abnormal termination of a program
|
||||
|
||||
INDEX
|
||||
abort
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
void abort(void);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
void abort();
|
||||
|
||||
DESCRIPTION
|
||||
Use <<abort>> to signal that your program has detected a condition it
|
||||
cannot deal with. Normally, <<abort>> ends your program's execution.
|
||||
|
||||
Before terminating your program, <<abort>> raises the exception <<SIGABRT>>
|
||||
(using `<<raise(SIGABRT)>>'). If you have used <<signal>> to register
|
||||
an exception handler for this condition, that handler has the
|
||||
opportunity to retain control, thereby avoiding program termination.
|
||||
|
||||
In this implementation, <<abort>> does not perform any stream- or
|
||||
file-related cleanup (the host environment may do so; if not, you can
|
||||
arrange for your program to do its own cleanup with a <<SIGABRT>>
|
||||
exception handler).
|
||||
|
||||
RETURNS
|
||||
<<abort>> does not return to its caller.
|
||||
|
||||
PORTABILITY
|
||||
ANSI C requires <<abort>>.
|
||||
|
||||
Supporting OS subroutines required: <<_exit>> and optionally, <<write>>.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
|
||||
_VOID
|
||||
_DEFUN_VOID (abort)
|
||||
{
|
||||
#ifdef ABORT_MESSAGE
|
||||
write (2, "Abort called\n", sizeof ("Abort called\n")-1);
|
||||
#endif
|
||||
|
||||
while (1)
|
||||
{
|
||||
// raise (SIGABRT);
|
||||
_exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
43
programs/develop/libraries/newlib/stdlib/abs.c
Normal file
43
programs/develop/libraries/newlib/stdlib/abs.c
Normal file
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<abs>>---integer absolute value (magnitude)
|
||||
|
||||
INDEX
|
||||
abs
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int abs(int <[i]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int abs(<[i]>)
|
||||
int <[i]>;
|
||||
|
||||
DESCRIPTION
|
||||
<<abs>> returns
|
||||
@tex
|
||||
$|x|$,
|
||||
@end tex
|
||||
the absolute value of <[i]> (also called the magnitude
|
||||
of <[i]>). That is, if <[i]> is negative, the result is the opposite
|
||||
of <[i]>, but if <[i]> is nonnegative the result is <[i]>.
|
||||
|
||||
The similar function <<labs>> uses and returns <<long>> rather than <<int>> values.
|
||||
|
||||
RETURNS
|
||||
The result is a nonnegative integer.
|
||||
|
||||
PORTABILITY
|
||||
<<abs>> is ANSI.
|
||||
|
||||
No supporting OS subroutines are required.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
int
|
||||
_DEFUN (abs, (i), int i)
|
||||
{
|
||||
return (i < 0) ? -i : i;
|
||||
}
|
||||
14
programs/develop/libraries/newlib/stdlib/atexit.h
Normal file
14
programs/develop/libraries/newlib/stdlib/atexit.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Common definitions for atexit-like routines
|
||||
*/
|
||||
|
||||
enum __atexit_types
|
||||
{
|
||||
__et_atexit,
|
||||
__et_onexit,
|
||||
__et_cxa
|
||||
};
|
||||
|
||||
void __call_exitprocs _PARAMS ((int, _PTR));
|
||||
int __register_exitproc _PARAMS ((int, void (*fn) (void), _PTR, _PTR));
|
||||
|
||||
81
programs/develop/libraries/newlib/stdlib/atoi.c
Normal file
81
programs/develop/libraries/newlib/stdlib/atoi.c
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<atoi>>, <<atol>>---string to integer
|
||||
|
||||
INDEX
|
||||
atoi
|
||||
INDEX
|
||||
atol
|
||||
INDEX
|
||||
_atoi_r
|
||||
INDEX
|
||||
_atol_r
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int atoi(const char *<[s]>);
|
||||
long atol(const char *<[s]>);
|
||||
int _atoi_r(struct _reent *<[ptr]>, const char *<[s]>);
|
||||
long _atol_r(struct _reent *<[ptr]>, const char *<[s]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int atoi(<[s]>)
|
||||
char *<[s]>;
|
||||
|
||||
long atol(<[s]>)
|
||||
char *<[s]>;
|
||||
|
||||
int _atoi_r(<[ptr]>, <[s]>)
|
||||
struct _reent *<[ptr]>;
|
||||
char *<[s]>;
|
||||
|
||||
long _atol_r(<[ptr]>, <[s]>)
|
||||
struct _reent *<[ptr]>;
|
||||
char *<[s]>;
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
<<atoi>> converts the initial portion of a string to an <<int>>.
|
||||
<<atol>> converts the initial portion of a string to a <<long>>.
|
||||
|
||||
<<atoi(s)>> is implemented as <<(int)strtol(s, NULL, 10).>>
|
||||
<<atol(s)>> is implemented as <<strtol(s, NULL, 10).>>
|
||||
|
||||
<<_atoi_r>> and <<_atol_r>> are reentrant versions of <<atoi>> and
|
||||
<<atol>> respectively, passing the reentrancy struct pointer.
|
||||
|
||||
RETURNS
|
||||
The functions return the converted value, if any. If no conversion was
|
||||
made, <<0>> is returned.
|
||||
|
||||
PORTABILITY
|
||||
<<atoi>>, <<atol>> are ANSI.
|
||||
|
||||
No supporting OS subroutines are required.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Andy Wilson, 2-Oct-89.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <_ansi.h>
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
int
|
||||
_DEFUN (atoi, (s),
|
||||
_CONST char *s)
|
||||
{
|
||||
return (int) strtol (s, NULL, 10);
|
||||
}
|
||||
#endif /* !_REENT_ONLY */
|
||||
|
||||
int
|
||||
_DEFUN (_atoi_r, (s),
|
||||
struct _reent *ptr _AND
|
||||
_CONST char *s)
|
||||
{
|
||||
return (int) _strtol_r (ptr, s, NULL, 10);
|
||||
}
|
||||
|
||||
69
programs/develop/libraries/newlib/stdlib/calloc.c
Normal file
69
programs/develop/libraries/newlib/stdlib/calloc.c
Normal file
@@ -0,0 +1,69 @@
|
||||
#ifdef MALLOC_PROVIDED
|
||||
int _dummy_calloc = 1;
|
||||
#else
|
||||
/*
|
||||
FUNCTION
|
||||
<<calloc>>---allocate space for arrays
|
||||
|
||||
INDEX
|
||||
calloc
|
||||
|
||||
INDEX
|
||||
_calloc_r
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
void *calloc(size_t <[n]>, size_t <[s]>);
|
||||
void *_calloc_r(void *<[reent]>, size_t <[n]>, size_t <[s]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
char *calloc(<[n]>, <[s]>)
|
||||
size_t <[n]>, <[s]>;
|
||||
|
||||
char *_calloc_r(<[reent]>, <[n]>, <[s]>)
|
||||
char *<[reent]>;
|
||||
size_t <[n]>;
|
||||
size_t <[s]>;
|
||||
|
||||
|
||||
|
||||
DESCRIPTION
|
||||
Use <<calloc>> to request a block of memory sufficient to hold an
|
||||
array of <[n]> elements, each of which has size <[s]>.
|
||||
|
||||
The memory allocated by <<calloc>> comes out of the same memory pool
|
||||
used by <<malloc>>, but the memory block is initialized to all zero
|
||||
bytes. (To avoid the overhead of initializing the space, use
|
||||
<<malloc>> instead.)
|
||||
|
||||
The alternate function <<_calloc_r>> is reentrant.
|
||||
The extra argument <[reent]> is a pointer to a reentrancy structure.
|
||||
|
||||
RETURNS
|
||||
If successful, a pointer to the newly allocated space.
|
||||
|
||||
If unsuccessful, <<NULL>>.
|
||||
|
||||
PORTABILITY
|
||||
<<calloc>> is ANSI.
|
||||
|
||||
Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
|
||||
<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
_PTR
|
||||
_DEFUN (calloc, (n, size),
|
||||
size_t n _AND
|
||||
size_t size)
|
||||
{
|
||||
return _calloc_r (_REENT, n, size);
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif /* MALLOC_PROVIDED */
|
||||
862
programs/develop/libraries/newlib/stdlib/dtoa.c
Normal file
862
programs/develop/libraries/newlib/stdlib/dtoa.c
Normal file
@@ -0,0 +1,862 @@
|
||||
/****************************************************************
|
||||
*
|
||||
* The author of this software is David M. Gay.
|
||||
*
|
||||
* Copyright (c) 1991 by AT&T.
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose without fee is hereby granted, provided that this entire notice
|
||||
* is included in all copies of any software which is or includes a copy
|
||||
* or modification of this software and in all copies of the supporting
|
||||
* documentation for such software.
|
||||
*
|
||||
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
|
||||
* WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY
|
||||
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
|
||||
* OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
|
||||
*
|
||||
***************************************************************/
|
||||
|
||||
/* Please send bug reports to
|
||||
David M. Gay
|
||||
AT&T Bell Laboratories, Room 2C-463
|
||||
600 Mountain Avenue
|
||||
Murray Hill, NJ 07974-2070
|
||||
U.S.A.
|
||||
dmg@research.att.com or research!dmg
|
||||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <stdlib.h>
|
||||
#include <reent.h>
|
||||
#include <string.h>
|
||||
#include "mprec.h"
|
||||
|
||||
static int
|
||||
_DEFUN (quorem,
|
||||
(b, S),
|
||||
_Bigint * b _AND _Bigint * S)
|
||||
{
|
||||
int n;
|
||||
__Long borrow, y;
|
||||
__ULong carry, q, ys;
|
||||
__ULong *bx, *bxe, *sx, *sxe;
|
||||
#ifdef Pack_32
|
||||
__Long z;
|
||||
__ULong si, zs;
|
||||
#endif
|
||||
|
||||
n = S->_wds;
|
||||
#ifdef DEBUG
|
||||
/*debug*/ if (b->_wds > n)
|
||||
/*debug*/ Bug ("oversize b in quorem");
|
||||
#endif
|
||||
if (b->_wds < n)
|
||||
return 0;
|
||||
sx = S->_x;
|
||||
sxe = sx + --n;
|
||||
bx = b->_x;
|
||||
bxe = bx + n;
|
||||
q = *bxe / (*sxe + 1); /* ensure q <= true quotient */
|
||||
#ifdef DEBUG
|
||||
/*debug*/ if (q > 9)
|
||||
/*debug*/ Bug ("oversized quotient in quorem");
|
||||
#endif
|
||||
if (q)
|
||||
{
|
||||
borrow = 0;
|
||||
carry = 0;
|
||||
do
|
||||
{
|
||||
#ifdef Pack_32
|
||||
si = *sx++;
|
||||
ys = (si & 0xffff) * q + carry;
|
||||
zs = (si >> 16) * q + (ys >> 16);
|
||||
carry = zs >> 16;
|
||||
y = (*bx & 0xffff) - (ys & 0xffff) + borrow;
|
||||
borrow = y >> 16;
|
||||
Sign_Extend (borrow, y);
|
||||
z = (*bx >> 16) - (zs & 0xffff) + borrow;
|
||||
borrow = z >> 16;
|
||||
Sign_Extend (borrow, z);
|
||||
Storeinc (bx, z, y);
|
||||
#else
|
||||
ys = *sx++ * q + carry;
|
||||
carry = ys >> 16;
|
||||
y = *bx - (ys & 0xffff) + borrow;
|
||||
borrow = y >> 16;
|
||||
Sign_Extend (borrow, y);
|
||||
*bx++ = y & 0xffff;
|
||||
#endif
|
||||
}
|
||||
while (sx <= sxe);
|
||||
if (!*bxe)
|
||||
{
|
||||
bx = b->_x;
|
||||
while (--bxe > bx && !*bxe)
|
||||
--n;
|
||||
b->_wds = n;
|
||||
}
|
||||
}
|
||||
if (cmp (b, S) >= 0)
|
||||
{
|
||||
q++;
|
||||
borrow = 0;
|
||||
carry = 0;
|
||||
bx = b->_x;
|
||||
sx = S->_x;
|
||||
do
|
||||
{
|
||||
#ifdef Pack_32
|
||||
si = *sx++;
|
||||
ys = (si & 0xffff) + carry;
|
||||
zs = (si >> 16) + (ys >> 16);
|
||||
carry = zs >> 16;
|
||||
y = (*bx & 0xffff) - (ys & 0xffff) + borrow;
|
||||
borrow = y >> 16;
|
||||
Sign_Extend (borrow, y);
|
||||
z = (*bx >> 16) - (zs & 0xffff) + borrow;
|
||||
borrow = z >> 16;
|
||||
Sign_Extend (borrow, z);
|
||||
Storeinc (bx, z, y);
|
||||
#else
|
||||
ys = *sx++ + carry;
|
||||
carry = ys >> 16;
|
||||
y = *bx - (ys & 0xffff) + borrow;
|
||||
borrow = y >> 16;
|
||||
Sign_Extend (borrow, y);
|
||||
*bx++ = y & 0xffff;
|
||||
#endif
|
||||
}
|
||||
while (sx <= sxe);
|
||||
bx = b->_x;
|
||||
bxe = bx + n;
|
||||
if (!*bxe)
|
||||
{
|
||||
while (--bxe > bx && !*bxe)
|
||||
--n;
|
||||
b->_wds = n;
|
||||
}
|
||||
}
|
||||
return q;
|
||||
}
|
||||
|
||||
/* dtoa for IEEE arithmetic (dmg): convert double to ASCII string.
|
||||
*
|
||||
* Inspired by "How to Print Floating-Point Numbers Accurately" by
|
||||
* Guy L. Steele, Jr. and Jon L. White [Proc. ACM SIGPLAN '90, pp. 92-101].
|
||||
*
|
||||
* Modifications:
|
||||
* 1. Rather than iterating, we use a simple numeric overestimate
|
||||
* to determine k = floor(log10(d)). We scale relevant
|
||||
* quantities using O(log2(k)) rather than O(k) multiplications.
|
||||
* 2. For some modes > 2 (corresponding to ecvt and fcvt), we don't
|
||||
* try to generate digits strictly left to right. Instead, we
|
||||
* compute with fewer bits and propagate the carry if necessary
|
||||
* when rounding the final digit up. This is often faster.
|
||||
* 3. Under the assumption that input will be rounded nearest,
|
||||
* mode 0 renders 1e23 as 1e23 rather than 9.999999999999999e22.
|
||||
* That is, we allow equality in stopping tests when the
|
||||
* round-nearest rule will give the same floating-point value
|
||||
* as would satisfaction of the stopping test with strict
|
||||
* inequality.
|
||||
* 4. We remove common factors of powers of 2 from relevant
|
||||
* quantities.
|
||||
* 5. When converting floating-point integers less than 1e16,
|
||||
* we use floating-point arithmetic rather than resorting
|
||||
* to multiple-precision integers.
|
||||
* 6. When asked to produce fewer than 15 digits, we first try
|
||||
* to get by with floating-point arithmetic; we resort to
|
||||
* multiple-precision integer arithmetic only if we cannot
|
||||
* guarantee that the floating-point calculation has given
|
||||
* the correctly rounded result. For k requested digits and
|
||||
* "uniformly" distributed input, the probability is
|
||||
* something like 10^(k-15) that we must resort to the long
|
||||
* calculation.
|
||||
*/
|
||||
|
||||
|
||||
char *
|
||||
_DEFUN (_dtoa_r,
|
||||
(ptr, _d, mode, ndigits, decpt, sign, rve),
|
||||
struct _reent *ptr _AND
|
||||
double _d _AND
|
||||
int mode _AND
|
||||
int ndigits _AND
|
||||
int *decpt _AND
|
||||
int *sign _AND
|
||||
char **rve)
|
||||
{
|
||||
/* Arguments ndigits, decpt, sign are similar to those
|
||||
of ecvt and fcvt; trailing zeros are suppressed from
|
||||
the returned string. If not null, *rve is set to point
|
||||
to the end of the return value. If d is +-Infinity or NaN,
|
||||
then *decpt is set to 9999.
|
||||
|
||||
mode:
|
||||
0 ==> shortest string that yields d when read in
|
||||
and rounded to nearest.
|
||||
1 ==> like 0, but with Steele & White stopping rule;
|
||||
e.g. with IEEE P754 arithmetic , mode 0 gives
|
||||
1e23 whereas mode 1 gives 9.999999999999999e22.
|
||||
2 ==> max(1,ndigits) significant digits. This gives a
|
||||
return value similar to that of ecvt, except
|
||||
that trailing zeros are suppressed.
|
||||
3 ==> through ndigits past the decimal point. This
|
||||
gives a return value similar to that from fcvt,
|
||||
except that trailing zeros are suppressed, and
|
||||
ndigits can be negative.
|
||||
4-9 should give the same return values as 2-3, i.e.,
|
||||
4 <= mode <= 9 ==> same return as mode
|
||||
2 + (mode & 1). These modes are mainly for
|
||||
debugging; often they run slower but sometimes
|
||||
faster than modes 2-3.
|
||||
4,5,8,9 ==> left-to-right digit generation.
|
||||
6-9 ==> don't try fast floating-point estimate
|
||||
(if applicable).
|
||||
|
||||
Values of mode other than 0-9 are treated as mode 0.
|
||||
|
||||
Sufficient space is allocated to the return value
|
||||
to hold the suppressed trailing zeros.
|
||||
*/
|
||||
|
||||
int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, j, j1, k, k0,
|
||||
k_check, leftright, m2, m5, s2, s5, spec_case, try_quick;
|
||||
union double_union d, d2, eps;
|
||||
__Long L;
|
||||
#ifndef Sudden_Underflow
|
||||
int denorm;
|
||||
__ULong x;
|
||||
#endif
|
||||
_Bigint *b, *b1, *delta, *mlo = NULL, *mhi, *S;
|
||||
double ds;
|
||||
char *s, *s0;
|
||||
|
||||
d.d = _d;
|
||||
|
||||
_REENT_CHECK_MP(ptr);
|
||||
if (_REENT_MP_RESULT(ptr))
|
||||
{
|
||||
_REENT_MP_RESULT(ptr)->_k = _REENT_MP_RESULT_K(ptr);
|
||||
_REENT_MP_RESULT(ptr)->_maxwds = 1 << _REENT_MP_RESULT_K(ptr);
|
||||
Bfree (ptr, _REENT_MP_RESULT(ptr));
|
||||
_REENT_MP_RESULT(ptr) = 0;
|
||||
}
|
||||
|
||||
if (word0 (d) & Sign_bit)
|
||||
{
|
||||
/* set sign for everything, including 0's and NaNs */
|
||||
*sign = 1;
|
||||
word0 (d) &= ~Sign_bit; /* clear sign bit */
|
||||
}
|
||||
else
|
||||
*sign = 0;
|
||||
|
||||
#if defined(IEEE_Arith) + defined(VAX)
|
||||
#ifdef IEEE_Arith
|
||||
if ((word0 (d) & Exp_mask) == Exp_mask)
|
||||
#else
|
||||
if (word0 (d) == 0x8000)
|
||||
#endif
|
||||
{
|
||||
/* Infinity or NaN */
|
||||
*decpt = 9999;
|
||||
s =
|
||||
#ifdef IEEE_Arith
|
||||
!word1 (d) && !(word0 (d) & 0xfffff) ? "Infinity" :
|
||||
#endif
|
||||
"NaN";
|
||||
if (rve)
|
||||
*rve =
|
||||
#ifdef IEEE_Arith
|
||||
s[3] ? s + 8 :
|
||||
#endif
|
||||
s + 3;
|
||||
return s;
|
||||
}
|
||||
#endif
|
||||
#ifdef IBM
|
||||
d.d += 0; /* normalize */
|
||||
#endif
|
||||
if (!d.d)
|
||||
{
|
||||
*decpt = 1;
|
||||
s = "0";
|
||||
if (rve)
|
||||
*rve = s + 1;
|
||||
return s;
|
||||
}
|
||||
|
||||
b = d2b (ptr, d.d, &be, &bbits);
|
||||
#ifdef Sudden_Underflow
|
||||
i = (int) (word0 (d) >> Exp_shift1 & (Exp_mask >> Exp_shift1));
|
||||
#else
|
||||
if ((i = (int) (word0 (d) >> Exp_shift1 & (Exp_mask >> Exp_shift1))) != 0)
|
||||
{
|
||||
#endif
|
||||
d2.d = d.d;
|
||||
word0 (d2) &= Frac_mask1;
|
||||
word0 (d2) |= Exp_11;
|
||||
#ifdef IBM
|
||||
if (j = 11 - hi0bits (word0 (d2) & Frac_mask))
|
||||
d2.d /= 1 << j;
|
||||
#endif
|
||||
|
||||
/* log(x) ~=~ log(1.5) + (x-1.5)/1.5
|
||||
* log10(x) = log(x) / log(10)
|
||||
* ~=~ log(1.5)/log(10) + (x-1.5)/(1.5*log(10))
|
||||
* log10(d) = (i-Bias)*log(2)/log(10) + log10(d2)
|
||||
*
|
||||
* This suggests computing an approximation k to log10(d) by
|
||||
*
|
||||
* k = (i - Bias)*0.301029995663981
|
||||
* + ( (d2-1.5)*0.289529654602168 + 0.176091259055681 );
|
||||
*
|
||||
* We want k to be too large rather than too small.
|
||||
* The error in the first-order Taylor series approximation
|
||||
* is in our favor, so we just round up the constant enough
|
||||
* to compensate for any error in the multiplication of
|
||||
* (i - Bias) by 0.301029995663981; since |i - Bias| <= 1077,
|
||||
* and 1077 * 0.30103 * 2^-52 ~=~ 7.2e-14,
|
||||
* adding 1e-13 to the constant term more than suffices.
|
||||
* Hence we adjust the constant term to 0.1760912590558.
|
||||
* (We could get a more accurate k by invoking log10,
|
||||
* but this is probably not worthwhile.)
|
||||
*/
|
||||
|
||||
i -= Bias;
|
||||
#ifdef IBM
|
||||
i <<= 2;
|
||||
i += j;
|
||||
#endif
|
||||
#ifndef Sudden_Underflow
|
||||
denorm = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* d is denormalized */
|
||||
|
||||
i = bbits + be + (Bias + (P - 1) - 1);
|
||||
#if defined (_DOUBLE_IS_32BITS)
|
||||
x = word0 (d) << (32 - i);
|
||||
#else
|
||||
x = (i > 32) ? (word0 (d) << (64 - i)) | (word1 (d) >> (i - 32))
|
||||
: (word1 (d) << (32 - i));
|
||||
#endif
|
||||
d2.d = x;
|
||||
word0 (d2) -= 31 * Exp_msk1; /* adjust exponent */
|
||||
i -= (Bias + (P - 1) - 1) + 1;
|
||||
denorm = 1;
|
||||
}
|
||||
#endif
|
||||
#if defined (_DOUBLE_IS_32BITS)
|
||||
ds = (d2.d - 1.5) * 0.289529651 + 0.176091269 + i * 0.30103001;
|
||||
#else
|
||||
ds = (d2.d - 1.5) * 0.289529654602168 + 0.1760912590558 + i * 0.301029995663981;
|
||||
#endif
|
||||
k = (int) ds;
|
||||
if (ds < 0. && ds != k)
|
||||
k--; /* want k = floor(ds) */
|
||||
k_check = 1;
|
||||
if (k >= 0 && k <= Ten_pmax)
|
||||
{
|
||||
if (d.d < tens[k])
|
||||
k--;
|
||||
k_check = 0;
|
||||
}
|
||||
j = bbits - i - 1;
|
||||
if (j >= 0)
|
||||
{
|
||||
b2 = 0;
|
||||
s2 = j;
|
||||
}
|
||||
else
|
||||
{
|
||||
b2 = -j;
|
||||
s2 = 0;
|
||||
}
|
||||
if (k >= 0)
|
||||
{
|
||||
b5 = 0;
|
||||
s5 = k;
|
||||
s2 += k;
|
||||
}
|
||||
else
|
||||
{
|
||||
b2 -= k;
|
||||
b5 = -k;
|
||||
s5 = 0;
|
||||
}
|
||||
if (mode < 0 || mode > 9)
|
||||
mode = 0;
|
||||
try_quick = 1;
|
||||
if (mode > 5)
|
||||
{
|
||||
mode -= 4;
|
||||
try_quick = 0;
|
||||
}
|
||||
leftright = 1;
|
||||
ilim = ilim1 = -1;
|
||||
switch (mode)
|
||||
{
|
||||
case 0:
|
||||
case 1:
|
||||
i = 18;
|
||||
ndigits = 0;
|
||||
break;
|
||||
case 2:
|
||||
leftright = 0;
|
||||
/* no break */
|
||||
case 4:
|
||||
if (ndigits <= 0)
|
||||
ndigits = 1;
|
||||
ilim = ilim1 = i = ndigits;
|
||||
break;
|
||||
case 3:
|
||||
leftright = 0;
|
||||
/* no break */
|
||||
case 5:
|
||||
i = ndigits + k + 1;
|
||||
ilim = i;
|
||||
ilim1 = i - 1;
|
||||
if (i <= 0)
|
||||
i = 1;
|
||||
}
|
||||
j = sizeof (__ULong);
|
||||
for (_REENT_MP_RESULT_K(ptr) = 0; sizeof (_Bigint) - sizeof (__ULong) + j <= i;
|
||||
j <<= 1)
|
||||
_REENT_MP_RESULT_K(ptr)++;
|
||||
_REENT_MP_RESULT(ptr) = Balloc (ptr, _REENT_MP_RESULT_K(ptr));
|
||||
s = s0 = (char *) _REENT_MP_RESULT(ptr);
|
||||
|
||||
if (ilim >= 0 && ilim <= Quick_max && try_quick)
|
||||
{
|
||||
/* Try to get by with floating-point arithmetic. */
|
||||
|
||||
i = 0;
|
||||
d2.d = d.d;
|
||||
k0 = k;
|
||||
ilim0 = ilim;
|
||||
ieps = 2; /* conservative */
|
||||
if (k > 0)
|
||||
{
|
||||
ds = tens[k & 0xf];
|
||||
j = k >> 4;
|
||||
if (j & Bletch)
|
||||
{
|
||||
/* prevent overflows */
|
||||
j &= Bletch - 1;
|
||||
d.d /= bigtens[n_bigtens - 1];
|
||||
ieps++;
|
||||
}
|
||||
for (; j; j >>= 1, i++)
|
||||
if (j & 1)
|
||||
{
|
||||
ieps++;
|
||||
ds *= bigtens[i];
|
||||
}
|
||||
d.d /= ds;
|
||||
}
|
||||
else if ((j1 = -k) != 0)
|
||||
{
|
||||
d.d *= tens[j1 & 0xf];
|
||||
for (j = j1 >> 4; j; j >>= 1, i++)
|
||||
if (j & 1)
|
||||
{
|
||||
ieps++;
|
||||
d.d *= bigtens[i];
|
||||
}
|
||||
}
|
||||
if (k_check && d.d < 1. && ilim > 0)
|
||||
{
|
||||
if (ilim1 <= 0)
|
||||
goto fast_failed;
|
||||
ilim = ilim1;
|
||||
k--;
|
||||
d.d *= 10.;
|
||||
ieps++;
|
||||
}
|
||||
eps.d = ieps * d.d + 7.;
|
||||
word0 (eps) -= (P - 1) * Exp_msk1;
|
||||
if (ilim == 0)
|
||||
{
|
||||
S = mhi = 0;
|
||||
d.d -= 5.;
|
||||
if (d.d > eps.d)
|
||||
goto one_digit;
|
||||
if (d.d < -eps.d)
|
||||
goto no_digits;
|
||||
goto fast_failed;
|
||||
}
|
||||
#ifndef No_leftright
|
||||
if (leftright)
|
||||
{
|
||||
/* Use Steele & White method of only
|
||||
* generating digits needed.
|
||||
*/
|
||||
eps.d = 0.5 / tens[ilim - 1] - eps.d;
|
||||
for (i = 0;;)
|
||||
{
|
||||
L = d.d;
|
||||
d.d -= L;
|
||||
*s++ = '0' + (int) L;
|
||||
if (d.d < eps.d)
|
||||
goto ret1;
|
||||
if (1. - d.d < eps.d)
|
||||
goto bump_up;
|
||||
if (++i >= ilim)
|
||||
break;
|
||||
eps.d *= 10.;
|
||||
d.d *= 10.;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
#endif
|
||||
/* Generate ilim digits, then fix them up. */
|
||||
eps.d *= tens[ilim - 1];
|
||||
for (i = 1;; i++, d.d *= 10.)
|
||||
{
|
||||
L = d.d;
|
||||
d.d -= L;
|
||||
*s++ = '0' + (int) L;
|
||||
if (i == ilim)
|
||||
{
|
||||
if (d.d > 0.5 + eps.d)
|
||||
goto bump_up;
|
||||
else if (d.d < 0.5 - eps.d)
|
||||
{
|
||||
while (*--s == '0');
|
||||
s++;
|
||||
goto ret1;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
#ifndef No_leftright
|
||||
}
|
||||
#endif
|
||||
fast_failed:
|
||||
s = s0;
|
||||
d.d = d2.d;
|
||||
k = k0;
|
||||
ilim = ilim0;
|
||||
}
|
||||
|
||||
/* Do we have a "small" integer? */
|
||||
|
||||
if (be >= 0 && k <= Int_max)
|
||||
{
|
||||
/* Yes. */
|
||||
ds = tens[k];
|
||||
if (ndigits < 0 && ilim <= 0)
|
||||
{
|
||||
S = mhi = 0;
|
||||
if (ilim < 0 || d.d <= 5 * ds)
|
||||
goto no_digits;
|
||||
goto one_digit;
|
||||
}
|
||||
for (i = 1;; i++)
|
||||
{
|
||||
L = d.d / ds;
|
||||
d.d -= L * ds;
|
||||
#ifdef Check_FLT_ROUNDS
|
||||
/* If FLT_ROUNDS == 2, L will usually be high by 1 */
|
||||
if (d.d < 0)
|
||||
{
|
||||
L--;
|
||||
d.d += ds;
|
||||
}
|
||||
#endif
|
||||
*s++ = '0' + (int) L;
|
||||
if (i == ilim)
|
||||
{
|
||||
d.d += d.d;
|
||||
if ((d.d > ds) || ((d.d == ds) && (L & 1)))
|
||||
{
|
||||
bump_up:
|
||||
while (*--s == '9')
|
||||
if (s == s0)
|
||||
{
|
||||
k++;
|
||||
*s = '0';
|
||||
break;
|
||||
}
|
||||
++*s++;
|
||||
}
|
||||
break;
|
||||
}
|
||||
if (!(d.d *= 10.))
|
||||
break;
|
||||
}
|
||||
goto ret1;
|
||||
}
|
||||
|
||||
m2 = b2;
|
||||
m5 = b5;
|
||||
mhi = mlo = 0;
|
||||
if (leftright)
|
||||
{
|
||||
if (mode < 2)
|
||||
{
|
||||
i =
|
||||
#ifndef Sudden_Underflow
|
||||
denorm ? be + (Bias + (P - 1) - 1 + 1) :
|
||||
#endif
|
||||
#ifdef IBM
|
||||
1 + 4 * P - 3 - bbits + ((bbits + be - 1) & 3);
|
||||
#else
|
||||
1 + P - bbits;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
j = ilim - 1;
|
||||
if (m5 >= j)
|
||||
m5 -= j;
|
||||
else
|
||||
{
|
||||
s5 += j -= m5;
|
||||
b5 += j;
|
||||
m5 = 0;
|
||||
}
|
||||
if ((i = ilim) < 0)
|
||||
{
|
||||
m2 -= i;
|
||||
i = 0;
|
||||
}
|
||||
}
|
||||
b2 += i;
|
||||
s2 += i;
|
||||
mhi = i2b (ptr, 1);
|
||||
}
|
||||
if (m2 > 0 && s2 > 0)
|
||||
{
|
||||
i = m2 < s2 ? m2 : s2;
|
||||
b2 -= i;
|
||||
m2 -= i;
|
||||
s2 -= i;
|
||||
}
|
||||
if (b5 > 0)
|
||||
{
|
||||
if (leftright)
|
||||
{
|
||||
if (m5 > 0)
|
||||
{
|
||||
mhi = pow5mult (ptr, mhi, m5);
|
||||
b1 = mult (ptr, mhi, b);
|
||||
Bfree (ptr, b);
|
||||
b = b1;
|
||||
}
|
||||
if ((j = b5 - m5) != 0)
|
||||
b = pow5mult (ptr, b, j);
|
||||
}
|
||||
else
|
||||
b = pow5mult (ptr, b, b5);
|
||||
}
|
||||
S = i2b (ptr, 1);
|
||||
if (s5 > 0)
|
||||
S = pow5mult (ptr, S, s5);
|
||||
|
||||
/* Check for special case that d is a normalized power of 2. */
|
||||
|
||||
spec_case = 0;
|
||||
if (mode < 2)
|
||||
{
|
||||
if (!word1 (d) && !(word0 (d) & Bndry_mask)
|
||||
#ifndef Sudden_Underflow
|
||||
&& word0 (d) & Exp_mask
|
||||
#endif
|
||||
)
|
||||
{
|
||||
/* The special case */
|
||||
b2 += Log2P;
|
||||
s2 += Log2P;
|
||||
spec_case = 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Arrange for convenient computation of quotients:
|
||||
* shift left if necessary so divisor has 4 leading 0 bits.
|
||||
*
|
||||
* Perhaps we should just compute leading 28 bits of S once
|
||||
* and for all and pass them and a shift to quorem, so it
|
||||
* can do shifts and ors to compute the numerator for q.
|
||||
*/
|
||||
|
||||
#ifdef Pack_32
|
||||
if ((i = ((s5 ? 32 - hi0bits (S->_x[S->_wds - 1]) : 1) + s2) & 0x1f) != 0)
|
||||
i = 32 - i;
|
||||
#else
|
||||
if ((i = ((s5 ? 32 - hi0bits (S->_x[S->_wds - 1]) : 1) + s2) & 0xf) != 0)
|
||||
i = 16 - i;
|
||||
#endif
|
||||
if (i > 4)
|
||||
{
|
||||
i -= 4;
|
||||
b2 += i;
|
||||
m2 += i;
|
||||
s2 += i;
|
||||
}
|
||||
else if (i < 4)
|
||||
{
|
||||
i += 28;
|
||||
b2 += i;
|
||||
m2 += i;
|
||||
s2 += i;
|
||||
}
|
||||
if (b2 > 0)
|
||||
b = lshift (ptr, b, b2);
|
||||
if (s2 > 0)
|
||||
S = lshift (ptr, S, s2);
|
||||
if (k_check)
|
||||
{
|
||||
if (cmp (b, S) < 0)
|
||||
{
|
||||
k--;
|
||||
b = multadd (ptr, b, 10, 0); /* we botched the k estimate */
|
||||
if (leftright)
|
||||
mhi = multadd (ptr, mhi, 10, 0);
|
||||
ilim = ilim1;
|
||||
}
|
||||
}
|
||||
if (ilim <= 0 && mode > 2)
|
||||
{
|
||||
if (ilim < 0 || cmp (b, S = multadd (ptr, S, 5, 0)) <= 0)
|
||||
{
|
||||
/* no digits, fcvt style */
|
||||
no_digits:
|
||||
k = -1 - ndigits;
|
||||
goto ret;
|
||||
}
|
||||
one_digit:
|
||||
*s++ = '1';
|
||||
k++;
|
||||
goto ret;
|
||||
}
|
||||
if (leftright)
|
||||
{
|
||||
if (m2 > 0)
|
||||
mhi = lshift (ptr, mhi, m2);
|
||||
|
||||
/* Compute mlo -- check for special case
|
||||
* that d is a normalized power of 2.
|
||||
*/
|
||||
|
||||
mlo = mhi;
|
||||
if (spec_case)
|
||||
{
|
||||
mhi = Balloc (ptr, mhi->_k);
|
||||
Bcopy (mhi, mlo);
|
||||
mhi = lshift (ptr, mhi, Log2P);
|
||||
}
|
||||
|
||||
for (i = 1;; i++)
|
||||
{
|
||||
dig = quorem (b, S) + '0';
|
||||
/* Do we yet have the shortest decimal string
|
||||
* that will round to d?
|
||||
*/
|
||||
j = cmp (b, mlo);
|
||||
delta = diff (ptr, S, mhi);
|
||||
j1 = delta->_sign ? 1 : cmp (b, delta);
|
||||
Bfree (ptr, delta);
|
||||
#ifndef ROUND_BIASED
|
||||
if (j1 == 0 && !mode && !(word1 (d) & 1))
|
||||
{
|
||||
if (dig == '9')
|
||||
goto round_9_up;
|
||||
if (j > 0)
|
||||
dig++;
|
||||
*s++ = dig;
|
||||
goto ret;
|
||||
}
|
||||
#endif
|
||||
if ((j < 0) || ((j == 0) && !mode
|
||||
#ifndef ROUND_BIASED
|
||||
&& !(word1 (d) & 1)
|
||||
#endif
|
||||
))
|
||||
{
|
||||
if (j1 > 0)
|
||||
{
|
||||
b = lshift (ptr, b, 1);
|
||||
j1 = cmp (b, S);
|
||||
if (((j1 > 0) || ((j1 == 0) && (dig & 1)))
|
||||
&& dig++ == '9')
|
||||
goto round_9_up;
|
||||
}
|
||||
*s++ = dig;
|
||||
goto ret;
|
||||
}
|
||||
if (j1 > 0)
|
||||
{
|
||||
if (dig == '9')
|
||||
{ /* possible if i == 1 */
|
||||
round_9_up:
|
||||
*s++ = '9';
|
||||
goto roundoff;
|
||||
}
|
||||
*s++ = dig + 1;
|
||||
goto ret;
|
||||
}
|
||||
*s++ = dig;
|
||||
if (i == ilim)
|
||||
break;
|
||||
b = multadd (ptr, b, 10, 0);
|
||||
if (mlo == mhi)
|
||||
mlo = mhi = multadd (ptr, mhi, 10, 0);
|
||||
else
|
||||
{
|
||||
mlo = multadd (ptr, mlo, 10, 0);
|
||||
mhi = multadd (ptr, mhi, 10, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
for (i = 1;; i++)
|
||||
{
|
||||
*s++ = dig = quorem (b, S) + '0';
|
||||
if (i >= ilim)
|
||||
break;
|
||||
b = multadd (ptr, b, 10, 0);
|
||||
}
|
||||
|
||||
/* Round off last digit */
|
||||
|
||||
b = lshift (ptr, b, 1);
|
||||
j = cmp (b, S);
|
||||
if ((j > 0) || ((j == 0) && (dig & 1)))
|
||||
{
|
||||
roundoff:
|
||||
while (*--s == '9')
|
||||
if (s == s0)
|
||||
{
|
||||
k++;
|
||||
*s++ = '1';
|
||||
goto ret;
|
||||
}
|
||||
++*s++;
|
||||
}
|
||||
else
|
||||
{
|
||||
while (*--s == '0');
|
||||
s++;
|
||||
}
|
||||
ret:
|
||||
Bfree (ptr, S);
|
||||
if (mhi)
|
||||
{
|
||||
if (mlo && mlo != mhi)
|
||||
Bfree (ptr, mlo);
|
||||
Bfree (ptr, mhi);
|
||||
}
|
||||
ret1:
|
||||
Bfree (ptr, b);
|
||||
*s = 0;
|
||||
*decpt = k + 1;
|
||||
if (rve)
|
||||
*rve = s;
|
||||
return s0;
|
||||
}
|
||||
23
programs/develop/libraries/newlib/stdlib/dtoastub.c
Normal file
23
programs/develop/libraries/newlib/stdlib/dtoastub.c
Normal file
@@ -0,0 +1,23 @@
|
||||
#include <_ansi.h>
|
||||
#include <stdlib.h>
|
||||
#include <reent.h>
|
||||
#include <string.h>
|
||||
|
||||
/* Nothing in newlib actually *calls* dtoa, they all call _dtoa_r, so this
|
||||
is a safe way of providing it to the user. */
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
char *
|
||||
_DEFUN (__dtoa,
|
||||
(d, mode, ndigits, decpt, sign, rve),
|
||||
double d _AND
|
||||
int mode _AND
|
||||
int ndigits _AND
|
||||
int *decpt _AND
|
||||
int *sign _AND
|
||||
char **rve)
|
||||
{
|
||||
return _dtoa_r (_REENT, d, mode, ndigits, decpt, sign, rve);
|
||||
}
|
||||
|
||||
#endif
|
||||
33
programs/develop/libraries/newlib/stdlib/gd_qnan.h
Normal file
33
programs/develop/libraries/newlib/stdlib/gd_qnan.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifdef __IEEE_BIG_ENDIAN
|
||||
|
||||
#define f_QNAN 0x7fc00000
|
||||
#define d_QNAN0 0x7ff80000
|
||||
#define d_QNAN1 0x0
|
||||
#define ld_QNAN0 0x7ff80000
|
||||
#define ld_QNAN1 0x0
|
||||
#define ld_QNAN2 0x0
|
||||
#define ld_QNAN3 0x0
|
||||
#define ldus_QNAN0 0x7ff8
|
||||
#define ldus_QNAN1 0x0
|
||||
#define ldus_QNAN2 0x0
|
||||
#define ldus_QNAN3 0x0
|
||||
#define ldus_QNAN4 0x0
|
||||
|
||||
#elif defined(__IEEE_LITTLE_ENDIAN)
|
||||
|
||||
#define f_QNAN 0xffc00000
|
||||
#define d_QNAN0 0x0
|
||||
#define d_QNAN1 0xfff80000
|
||||
#define ld_QNAN0 0x0
|
||||
#define ld_QNAN1 0xc0000000
|
||||
#define ld_QNAN2 0xffff
|
||||
#define ld_QNAN3 0x0
|
||||
#define ldus_QNAN0 0x0
|
||||
#define ldus_QNAN1 0x0
|
||||
#define ldus_QNAN2 0x0
|
||||
#define ldus_QNAN3 0xc000
|
||||
#define ldus_QNAN4 0xffff
|
||||
|
||||
#else
|
||||
#error IEEE endian not defined
|
||||
#endif
|
||||
354
programs/develop/libraries/newlib/stdlib/gdtoa-gethex.c
Normal file
354
programs/develop/libraries/newlib/stdlib/gdtoa-gethex.c
Normal file
@@ -0,0 +1,354 @@
|
||||
/****************************************************************
|
||||
|
||||
The author of this software is David M. Gay.
|
||||
|
||||
Copyright (C) 1998 by Lucent Technologies
|
||||
All Rights Reserved
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and
|
||||
its documentation for any purpose and without fee is hereby
|
||||
granted, provided that the above copyright notice appear in all
|
||||
copies and that both that the copyright notice and this
|
||||
permission notice and warranty disclaimer appear in supporting
|
||||
documentation, and that the name of Lucent or any of its entities
|
||||
not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior
|
||||
permission.
|
||||
|
||||
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
||||
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
||||
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
||||
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
|
||||
****************************************************************/
|
||||
|
||||
/* Please send bug reports to David M. Gay (dmg at acm dot org,
|
||||
* with " at " changed at "@" and " dot " changed to "."). */
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <reent.h>
|
||||
#include <string.h>
|
||||
#include "mprec.h"
|
||||
#include "gdtoa.h"
|
||||
#include "gd_qnan.h"
|
||||
#include "locale.h"
|
||||
|
||||
unsigned char hexdig[256];
|
||||
|
||||
static void
|
||||
_DEFUN (htinit, (h, s, inc),
|
||||
unsigned char *h _AND
|
||||
unsigned char *s _AND
|
||||
int inc)
|
||||
{
|
||||
int i, j;
|
||||
for(i = 0; (j = s[i]) !=0; i++)
|
||||
h[j] = i + inc;
|
||||
}
|
||||
|
||||
void
|
||||
_DEFUN_VOID (hexdig_init)
|
||||
{
|
||||
#define USC (unsigned char *)
|
||||
htinit(hexdig, USC "0123456789", 0x10);
|
||||
htinit(hexdig, USC "abcdef", 0x10 + 10);
|
||||
htinit(hexdig, USC "ABCDEF", 0x10 + 10);
|
||||
}
|
||||
|
||||
static void
|
||||
_DEFUN(rshift, (b, k),
|
||||
_Bigint *b _AND
|
||||
int k)
|
||||
{
|
||||
__ULong *x, *x1, *xe, y;
|
||||
int n;
|
||||
|
||||
x = x1 = b->_x;
|
||||
n = k >> kshift;
|
||||
if (n < b->_wds) {
|
||||
xe = x + b->_wds;
|
||||
x += n;
|
||||
if (k &= kmask) {
|
||||
n = ULbits - k;
|
||||
y = *x++ >> k;
|
||||
while(x < xe) {
|
||||
*x1++ = (y | (*x << n)) & ALL_ON;
|
||||
y = *x++ >> k;
|
||||
}
|
||||
if ((*x1 = y) !=0)
|
||||
x1++;
|
||||
}
|
||||
else
|
||||
while(x < xe)
|
||||
*x1++ = *x++;
|
||||
}
|
||||
if ((b->_wds = x1 - b->_x) == 0)
|
||||
b->_x[0] = 0;
|
||||
}
|
||||
|
||||
static _Bigint *
|
||||
_DEFUN (increment, (ptr, b),
|
||||
struct _reent *ptr _AND
|
||||
_Bigint *b)
|
||||
{
|
||||
__ULong *x, *xe;
|
||||
_Bigint *b1;
|
||||
#ifdef Pack_16
|
||||
__ULong carry = 1, y;
|
||||
#endif
|
||||
|
||||
x = b->_x;
|
||||
xe = x + b->_wds;
|
||||
#ifdef Pack_32
|
||||
do {
|
||||
if (*x < (__ULong)0xffffffffL) {
|
||||
++*x;
|
||||
return b;
|
||||
}
|
||||
*x++ = 0;
|
||||
} while(x < xe);
|
||||
#else
|
||||
do {
|
||||
y = *x + carry;
|
||||
carry = y >> 16;
|
||||
*x++ = y & 0xffff;
|
||||
if (!carry)
|
||||
return b;
|
||||
} while(x < xe);
|
||||
if (carry)
|
||||
#endif
|
||||
{
|
||||
if (b->_wds >= b->_maxwds) {
|
||||
b1 = Balloc(ptr, b->_k+1);
|
||||
Bcopy(b1, b);
|
||||
Bfree(ptr, b);
|
||||
b = b1;
|
||||
}
|
||||
b->_x[b->_wds++] = 1;
|
||||
}
|
||||
return b;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
_DEFUN(gethex, (ptr, sp, fpi, exp, bp, sign),
|
||||
struct _reent *ptr _AND
|
||||
_CONST char **sp _AND
|
||||
FPI *fpi _AND
|
||||
Long *exp _AND
|
||||
_Bigint **bp _AND
|
||||
int sign)
|
||||
{
|
||||
_Bigint *b;
|
||||
_CONST unsigned char *decpt, *s0, *s, *s1;
|
||||
int esign, havedig, irv, k, n, nbits, up, zret;
|
||||
__ULong L, lostbits, *x;
|
||||
Long e, e1;
|
||||
unsigned char *decimalpoint = (unsigned char *)
|
||||
_localeconv_r (ptr)->decimal_point;
|
||||
size_t decp_len = strlen ((const char *) decimalpoint);
|
||||
unsigned char decp_end = decimalpoint[decp_len - 1];
|
||||
|
||||
if (!hexdig['0'])
|
||||
hexdig_init();
|
||||
havedig = 0;
|
||||
s0 = *(_CONST unsigned char **)sp + 2;
|
||||
while(s0[havedig] == '0')
|
||||
havedig++;
|
||||
s0 += havedig;
|
||||
s = s0;
|
||||
decpt = 0;
|
||||
zret = 0;
|
||||
e = 0;
|
||||
if (!hexdig[*s]) {
|
||||
zret = 1;
|
||||
if (strncmp ((const char *) s, (const char *) decimalpoint,
|
||||
decp_len) != 0)
|
||||
goto pcheck;
|
||||
decpt = (s += decp_len);
|
||||
if (!hexdig[*s])
|
||||
goto pcheck;
|
||||
while(*s == '0')
|
||||
s++;
|
||||
if (hexdig[*s])
|
||||
zret = 0;
|
||||
havedig = 1;
|
||||
s0 = s;
|
||||
}
|
||||
while(hexdig[*s])
|
||||
s++;
|
||||
if (strncmp ((const char *) s, (const char *) decimalpoint,
|
||||
decp_len) == 0
|
||||
&& !decpt) {
|
||||
decpt = (s += decp_len);
|
||||
while(hexdig[*s])
|
||||
s++;
|
||||
}
|
||||
if (decpt)
|
||||
e = -(((Long)(s-decpt)) << 2);
|
||||
pcheck:
|
||||
s1 = s;
|
||||
switch(*s) {
|
||||
case 'p':
|
||||
case 'P':
|
||||
esign = 0;
|
||||
switch(*++s) {
|
||||
case '-':
|
||||
esign = 1;
|
||||
/* no break */
|
||||
case '+':
|
||||
s++;
|
||||
}
|
||||
if ((n = hexdig[*s]) == 0 || n > 0x19) {
|
||||
s = s1;
|
||||
break;
|
||||
}
|
||||
e1 = n - 0x10;
|
||||
while((n = hexdig[*++s]) !=0 && n <= 0x19)
|
||||
e1 = 10*e1 + n - 0x10;
|
||||
if (esign)
|
||||
e1 = -e1;
|
||||
e += e1;
|
||||
}
|
||||
*sp = (char*)s;
|
||||
if (zret)
|
||||
return havedig ? STRTOG_Zero : STRTOG_NoNumber;
|
||||
n = s1 - s0 - 1;
|
||||
for(k = 0; n > 7; n >>= 1)
|
||||
k++;
|
||||
b = Balloc(ptr, k);
|
||||
x = b->_x;
|
||||
n = 0;
|
||||
L = 0;
|
||||
while(s1 > s0) {
|
||||
if (*--s1 == decp_end && s1 - decp_len + 1 >= s0
|
||||
&& strncmp ((const char *) s1 - decp_len + 1,
|
||||
(const char *) decimalpoint, decp_len) == 0) {
|
||||
s1 -= decp_len - 1; /* Note the --s1 above! */
|
||||
continue;
|
||||
}
|
||||
if (n == 32) {
|
||||
*x++ = L;
|
||||
L = 0;
|
||||
n = 0;
|
||||
}
|
||||
L |= (hexdig[*s1] & 0x0f) << n;
|
||||
n += 4;
|
||||
}
|
||||
*x++ = L;
|
||||
b->_wds = n = x - b->_x;
|
||||
n = 32*n - hi0bits(L);
|
||||
nbits = fpi->nbits;
|
||||
lostbits = 0;
|
||||
x = b->_x;
|
||||
if (n > nbits) {
|
||||
n -= nbits;
|
||||
if (any_on(b,n)) {
|
||||
lostbits = 1;
|
||||
k = n - 1;
|
||||
if (x[k>>kshift] & 1 << (k & kmask)) {
|
||||
lostbits = 2;
|
||||
if (k > 1 && any_on(b,k-1))
|
||||
lostbits = 3;
|
||||
}
|
||||
}
|
||||
rshift(b, n);
|
||||
e += n;
|
||||
}
|
||||
else if (n < nbits) {
|
||||
n = nbits - n;
|
||||
b = lshift(ptr, b, n);
|
||||
e -= n;
|
||||
x = b->_x;
|
||||
}
|
||||
if (e > fpi->emax) {
|
||||
ovfl:
|
||||
Bfree(ptr, b);
|
||||
*bp = 0;
|
||||
return STRTOG_Infinite | STRTOG_Overflow | STRTOG_Inexhi;
|
||||
}
|
||||
irv = STRTOG_Normal;
|
||||
if (e < fpi->emin) {
|
||||
irv = STRTOG_Denormal;
|
||||
n = fpi->emin - e;
|
||||
if (n >= nbits) {
|
||||
switch (fpi->rounding) {
|
||||
case FPI_Round_near:
|
||||
if (n == nbits && (n < 2 || any_on(b,n-1)))
|
||||
goto one_bit;
|
||||
break;
|
||||
case FPI_Round_up:
|
||||
if (!sign)
|
||||
goto one_bit;
|
||||
break;
|
||||
case FPI_Round_down:
|
||||
if (sign) {
|
||||
one_bit:
|
||||
*exp = fpi->emin;
|
||||
x[0] = b->_wds = 1;
|
||||
*bp = b;
|
||||
return STRTOG_Denormal | STRTOG_Inexhi
|
||||
| STRTOG_Underflow;
|
||||
}
|
||||
}
|
||||
Bfree(ptr, b);
|
||||
*bp = 0;
|
||||
return STRTOG_Zero | STRTOG_Inexlo | STRTOG_Underflow;
|
||||
}
|
||||
k = n - 1;
|
||||
if (lostbits)
|
||||
lostbits = 1;
|
||||
else if (k > 0)
|
||||
lostbits = any_on(b,k);
|
||||
if (x[k>>kshift] & 1 << (k & kmask))
|
||||
lostbits |= 2;
|
||||
nbits -= n;
|
||||
rshift(b,n);
|
||||
e = fpi->emin;
|
||||
}
|
||||
if (lostbits) {
|
||||
up = 0;
|
||||
switch(fpi->rounding) {
|
||||
case FPI_Round_zero:
|
||||
break;
|
||||
case FPI_Round_near:
|
||||
if ((lostbits & 2)
|
||||
&& ((lostbits & 1) | (x[0] & 1)))
|
||||
up = 1;
|
||||
break;
|
||||
case FPI_Round_up:
|
||||
up = 1 - sign;
|
||||
break;
|
||||
case FPI_Round_down:
|
||||
up = sign;
|
||||
}
|
||||
if (up) {
|
||||
k = b->_wds;
|
||||
b = increment(ptr, b);
|
||||
x = b->_x;
|
||||
if (irv == STRTOG_Denormal) {
|
||||
if (nbits == fpi->nbits - 1
|
||||
&& x[nbits >> kshift] & 1 << (nbits & kmask))
|
||||
irv = STRTOG_Normal;
|
||||
}
|
||||
else if ((b->_wds > k)
|
||||
|| ((n = nbits & kmask) !=0
|
||||
&& (hi0bits(x[k-1]) < 32-n))) {
|
||||
rshift(b,1);
|
||||
if (++e > fpi->emax)
|
||||
goto ovfl;
|
||||
}
|
||||
irv |= STRTOG_Inexhi;
|
||||
}
|
||||
else
|
||||
irv |= STRTOG_Inexlo;
|
||||
}
|
||||
*bp = b;
|
||||
*exp = e;
|
||||
return irv;
|
||||
}
|
||||
|
||||
142
programs/develop/libraries/newlib/stdlib/gdtoa-hexnan.c
Normal file
142
programs/develop/libraries/newlib/stdlib/gdtoa-hexnan.c
Normal file
@@ -0,0 +1,142 @@
|
||||
/****************************************************************
|
||||
|
||||
The author of this software is David M. Gay.
|
||||
|
||||
Copyright (C) 2000 by Lucent Technologies
|
||||
All Rights Reserved
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and
|
||||
its documentation for any purpose and without fee is hereby
|
||||
granted, provided that the above copyright notice appear in all
|
||||
copies and that both that the copyright notice and this
|
||||
permission notice and warranty disclaimer appear in supporting
|
||||
documentation, and that the name of Lucent or any of its entities
|
||||
not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior
|
||||
permission.
|
||||
|
||||
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
||||
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
||||
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
||||
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
|
||||
****************************************************************/
|
||||
|
||||
/* Please send bug reports to
|
||||
David M. Gay
|
||||
Bell Laboratories, Room 2C-463
|
||||
600 Mountain Avenue
|
||||
Murray Hill, NJ 07974-0636
|
||||
U.S.A.
|
||||
dmg@bell-labs.com
|
||||
*/
|
||||
|
||||
/* Modified 06-21-2006 by Jeff Johnston to work with newlib. */
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <reent.h>
|
||||
#include <string.h>
|
||||
#include "mprec.h"
|
||||
#include "gdtoa.h"
|
||||
|
||||
#ifdef INFNAN_CHECK
|
||||
static void
|
||||
_DEFUN (L_shift, (x, x1, i),
|
||||
__ULong *x _AND
|
||||
__ULong *x1 _AND
|
||||
int i)
|
||||
{
|
||||
int j;
|
||||
|
||||
i = 8 - i;
|
||||
i <<= 2;
|
||||
j = ULbits - i;
|
||||
do {
|
||||
*x |= x[1] << j;
|
||||
x[1] >>= i;
|
||||
} while(++x < x1);
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (hexnan, (sp, fpi, x0),
|
||||
_CONST char **sp _AND
|
||||
FPI *fpi _AND
|
||||
__ULong *x0)
|
||||
{
|
||||
__ULong c, h, *x, *x1, *xe;
|
||||
_CONST char *s;
|
||||
int havedig, hd0, i, nbits;
|
||||
|
||||
if (!hexdig['0'])
|
||||
hexdig_init();
|
||||
nbits = fpi->nbits;
|
||||
x = x0 + (nbits >> kshift);
|
||||
if (nbits & kmask)
|
||||
x++;
|
||||
*--x = 0;
|
||||
x1 = xe = x;
|
||||
havedig = hd0 = i = 0;
|
||||
s = *sp;
|
||||
while((c = *(_CONST unsigned char*)++s)) {
|
||||
if (!(h = hexdig[c])) {
|
||||
if (c <= ' ') {
|
||||
if (hd0 < havedig) {
|
||||
if (x < x1 && i < 8)
|
||||
L_shift(x, x1, i);
|
||||
if (x <= x0) {
|
||||
i = 8;
|
||||
continue;
|
||||
}
|
||||
hd0 = havedig;
|
||||
*--x = 0;
|
||||
x1 = x;
|
||||
i = 0;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if (/*(*/ c == ')') {
|
||||
*sp = s + 1;
|
||||
break;
|
||||
}
|
||||
return STRTOG_NaN;
|
||||
}
|
||||
havedig++;
|
||||
if (++i > 8) {
|
||||
if (x <= x0)
|
||||
continue;
|
||||
i = 1;
|
||||
*--x = 0;
|
||||
}
|
||||
*x = ((*x << 4) | (h & 0xf));
|
||||
}
|
||||
if (!havedig)
|
||||
return STRTOG_NaN;
|
||||
if (x < x1 && i < 8)
|
||||
L_shift(x, x1, i);
|
||||
if (x > x0) {
|
||||
x1 = x0;
|
||||
do *x1++ = *x++;
|
||||
while(x <= xe);
|
||||
do *x1++ = 0;
|
||||
while(x1 <= xe);
|
||||
}
|
||||
else {
|
||||
/* truncate high-order word if necessary */
|
||||
if ( (i = nbits & (ULbits-1)) !=0)
|
||||
*xe &= ((__ULong)0xffffffff) >> (ULbits - i);
|
||||
}
|
||||
for(x1 = xe;; --x1) {
|
||||
if (*x1 != 0)
|
||||
break;
|
||||
if (x1 == x0) {
|
||||
*x1 = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return STRTOG_NaNbits;
|
||||
}
|
||||
#endif /* INFNAN_CHECK */
|
||||
72
programs/develop/libraries/newlib/stdlib/gdtoa.h
Normal file
72
programs/develop/libraries/newlib/stdlib/gdtoa.h
Normal file
@@ -0,0 +1,72 @@
|
||||
/****************************************************************
|
||||
|
||||
The author of this software is David M. Gay.
|
||||
|
||||
Copyright (C) 1998 by Lucent Technologies
|
||||
All Rights Reserved
|
||||
|
||||
Permission to use, copy, modify, and distribute this software and
|
||||
its documentation for any purpose and without fee is hereby
|
||||
granted, provided that the above copyright notice appear in all
|
||||
copies and that both that the copyright notice and this
|
||||
permission notice and warranty disclaimer appear in supporting
|
||||
documentation, and that the name of Lucent or any of its entities
|
||||
not be used in advertising or publicity pertaining to
|
||||
distribution of the software without specific, written prior
|
||||
permission.
|
||||
|
||||
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||||
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
||||
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
||||
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
||||
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
|
||||
****************************************************************/
|
||||
|
||||
/* Please send bug reports to David M. Gay (dmg at acm dot org,
|
||||
* with " at " changed at "@" and " dot " changed to "."). */
|
||||
|
||||
#ifndef GDTOA_H_INCLUDED
|
||||
#define GDTOA_H_INCLUDED
|
||||
|
||||
|
||||
enum { /* return values from strtodg */
|
||||
STRTOG_Zero = 0,
|
||||
STRTOG_Normal = 1,
|
||||
STRTOG_Denormal = 2,
|
||||
STRTOG_Infinite = 3,
|
||||
STRTOG_NaN = 4,
|
||||
STRTOG_NaNbits = 5,
|
||||
STRTOG_NoNumber = 6,
|
||||
STRTOG_Retmask = 7,
|
||||
|
||||
/* The following may be or-ed into one of the above values. */
|
||||
|
||||
STRTOG_Neg = 0x08,
|
||||
STRTOG_Inexlo = 0x10,
|
||||
STRTOG_Inexhi = 0x20,
|
||||
STRTOG_Inexact = 0x30,
|
||||
STRTOG_Underflow= 0x40,
|
||||
STRTOG_Overflow = 0x80
|
||||
};
|
||||
|
||||
typedef struct
|
||||
FPI {
|
||||
int nbits;
|
||||
int emin;
|
||||
int emax;
|
||||
int rounding;
|
||||
int sudden_underflow;
|
||||
} FPI;
|
||||
|
||||
enum { /* FPI.rounding values: same as FLT_ROUNDS */
|
||||
FPI_Round_zero = 0,
|
||||
FPI_Round_near = 1,
|
||||
FPI_Round_up = 2,
|
||||
FPI_Round_down = 3
|
||||
};
|
||||
|
||||
#endif /* GDTOA_H_INCLUDED */
|
||||
66
programs/develop/libraries/newlib/stdlib/local.h
Normal file
66
programs/develop/libraries/newlib/stdlib/local.h
Normal file
@@ -0,0 +1,66 @@
|
||||
/* Misc. local definitions for libc/stdlib */
|
||||
|
||||
#ifndef _LOCAL_H_
|
||||
#define _LOCAL_H_
|
||||
|
||||
char * _EXFUN(_gcvt,(struct _reent *, double , int , char *, char, int));
|
||||
|
||||
char *__locale_charset(_NOARGS);
|
||||
|
||||
#ifndef __mbstate_t_defined
|
||||
#include <wchar.h>
|
||||
#endif
|
||||
|
||||
extern int (*__wctomb) (struct _reent *, char *, wchar_t, const char *,
|
||||
mbstate_t *);
|
||||
int __ascii_wctomb (struct _reent *, char *, wchar_t, const char *,
|
||||
mbstate_t *);
|
||||
#ifdef _MB_CAPABLE
|
||||
int __utf8_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __sjis_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __eucjp_wctomb (struct _reent *, char *, wchar_t, const char *,
|
||||
mbstate_t *);
|
||||
int __jis_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __iso_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __cp_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
#ifdef __CYGWIN__
|
||||
int __gbk_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __kr_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
int __big5_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
extern int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __ascii_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
#ifdef _MB_CAPABLE
|
||||
int __utf8_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __sjis_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __eucjp_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __jis_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __iso_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __cp_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
#ifdef __CYGWIN__
|
||||
int __gbk_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __kr_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
int __big5_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
extern wchar_t __iso_8859_conv[14][0x60];
|
||||
int __iso_8859_index (const char *);
|
||||
|
||||
extern wchar_t __cp_conv[][0x80];
|
||||
int __cp_index (const char *);
|
||||
|
||||
#endif
|
||||
227
programs/develop/libraries/newlib/stdlib/malloc.c
Normal file
227
programs/develop/libraries/newlib/stdlib/malloc.c
Normal file
@@ -0,0 +1,227 @@
|
||||
/* VxWorks provides its own version of malloc, and we can't use this
|
||||
one because VxWorks does not provide sbrk. So we have a hook to
|
||||
not compile this code. */
|
||||
|
||||
/* The routines here are simple cover fns to the routines that do the real
|
||||
work (the reentrant versions). */
|
||||
/* FIXME: Does the warning below (see WARNINGS) about non-reentrancy still
|
||||
apply? A first guess would be "no", but how about reentrancy in the *same*
|
||||
thread? */
|
||||
|
||||
#ifdef MALLOC_PROVIDED
|
||||
|
||||
int _dummy_malloc = 1;
|
||||
|
||||
#else
|
||||
|
||||
/*
|
||||
FUNCTION
|
||||
<<malloc>>, <<realloc>>, <<free>>---manage memory
|
||||
|
||||
INDEX
|
||||
malloc
|
||||
INDEX
|
||||
realloc
|
||||
INDEX
|
||||
reallocf
|
||||
INDEX
|
||||
free
|
||||
INDEX
|
||||
memalign
|
||||
INDEX
|
||||
malloc_usable_size
|
||||
INDEX
|
||||
_malloc_r
|
||||
INDEX
|
||||
_realloc_r
|
||||
INDEX
|
||||
_reallocf_r
|
||||
INDEX
|
||||
_free_r
|
||||
INDEX
|
||||
_memalign_r
|
||||
INDEX
|
||||
_malloc_usable_size_r
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
void *malloc(size_t <[nbytes]>);
|
||||
void *realloc(void *<[aptr]>, size_t <[nbytes]>);
|
||||
void *reallocf(void *<[aptr]>, size_t <[nbytes]>);
|
||||
void free(void *<[aptr]>);
|
||||
|
||||
void *memalign(size_t <[align]>, size_t <[nbytes]>);
|
||||
|
||||
size_t malloc_usable_size(void *<[aptr]>);
|
||||
|
||||
void *_malloc_r(void *<[reent]>, size_t <[nbytes]>);
|
||||
void *_realloc_r(void *<[reent]>,
|
||||
void *<[aptr]>, size_t <[nbytes]>);
|
||||
void *_reallocf_r(void *<[reent]>,
|
||||
void *<[aptr]>, size_t <[nbytes]>);
|
||||
void _free_r(void *<[reent]>, void *<[aptr]>);
|
||||
|
||||
void *_memalign_r(void *<[reent]>,
|
||||
size_t <[align]>, size_t <[nbytes]>);
|
||||
|
||||
size_t _malloc_usable_size_r(void *<[reent]>, void *<[aptr]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
char *malloc(<[nbytes]>)
|
||||
size_t <[nbytes]>;
|
||||
|
||||
char *realloc(<[aptr]>, <[nbytes]>)
|
||||
char *<[aptr]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
char *reallocf(<[aptr]>, <[nbytes]>)
|
||||
char *<[aptr]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
void free(<[aptr]>)
|
||||
char *<[aptr]>;
|
||||
|
||||
char *memalign(<[align]>, <[nbytes]>)
|
||||
size_t <[align]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
size_t malloc_usable_size(<[aptr]>)
|
||||
char *<[aptr]>;
|
||||
|
||||
char *_malloc_r(<[reent]>,<[nbytes]>)
|
||||
char *<[reent]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
char *_realloc_r(<[reent]>, <[aptr]>, <[nbytes]>)
|
||||
char *<[reent]>;
|
||||
char *<[aptr]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
char *_reallocf_r(<[reent]>, <[aptr]>, <[nbytes]>)
|
||||
char *<[reent]>;
|
||||
char *<[aptr]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
void _free_r(<[reent]>, <[aptr]>)
|
||||
char *<[reent]>;
|
||||
char *<[aptr]>;
|
||||
|
||||
char *_memalign_r(<[reent]>, <[align]>, <[nbytes]>)
|
||||
char *<[reent]>;
|
||||
size_t <[align]>;
|
||||
size_t <[nbytes]>;
|
||||
|
||||
size_t malloc_usable_size(<[reent]>, <[aptr]>)
|
||||
char *<[reent]>;
|
||||
char *<[aptr]>;
|
||||
|
||||
DESCRIPTION
|
||||
These functions manage a pool of system memory.
|
||||
|
||||
Use <<malloc>> to request allocation of an object with at least
|
||||
<[nbytes]> bytes of storage available. If the space is available,
|
||||
<<malloc>> returns a pointer to a newly allocated block as its result.
|
||||
|
||||
If you already have a block of storage allocated by <<malloc>>, but
|
||||
you no longer need all the space allocated to it, you can make it
|
||||
smaller by calling <<realloc>> with both the object pointer and the
|
||||
new desired size as arguments. <<realloc>> guarantees that the
|
||||
contents of the smaller object match the beginning of the original object.
|
||||
|
||||
Similarly, if you need more space for an object, use <<realloc>> to
|
||||
request the larger size; again, <<realloc>> guarantees that the
|
||||
beginning of the new, larger object matches the contents of the
|
||||
original object.
|
||||
|
||||
When you no longer need an object originally allocated by <<malloc>>
|
||||
or <<realloc>> (or the related function <<calloc>>), return it to the
|
||||
memory storage pool by calling <<free>> with the address of the object
|
||||
as the argument. You can also use <<realloc>> for this purpose by
|
||||
calling it with <<0>> as the <[nbytes]> argument.
|
||||
|
||||
The <<reallocf>> function behaves just like <<realloc>> except if the
|
||||
function is required to allocate new storage and this fails. In this
|
||||
case <<reallocf>> will free the original object passed in whereas
|
||||
<<realloc>> will not.
|
||||
|
||||
The <<memalign>> function returns a block of size <[nbytes]> aligned
|
||||
to a <[align]> boundary. The <[align]> argument must be a power of
|
||||
two.
|
||||
|
||||
The <<malloc_usable_size>> function takes a pointer to a block
|
||||
allocated by <<malloc>>. It returns the amount of space that is
|
||||
available in the block. This may or may not be more than the size
|
||||
requested from <<malloc>>, due to alignment or minimum size
|
||||
constraints.
|
||||
|
||||
The alternate functions <<_malloc_r>>, <<_realloc_r>>, <<_reallocf_r>>,
|
||||
<<_free_r>>, <<_memalign_r>>, and <<_malloc_usable_size_r>> are reentrant
|
||||
versions. The extra argument <[reent]> is a pointer to a reentrancy structure.
|
||||
|
||||
If you have multiple threads of execution which may call any of these
|
||||
routines, or if any of these routines may be called reentrantly, then
|
||||
you must provide implementations of the <<__malloc_lock>> and
|
||||
<<__malloc_unlock>> functions for your system. See the documentation
|
||||
for those functions.
|
||||
|
||||
These functions operate by calling the function <<_sbrk_r>> or
|
||||
<<sbrk>>, which allocates space. You may need to provide one of these
|
||||
functions for your system. <<_sbrk_r>> is called with a positive
|
||||
value to allocate more space, and with a negative value to release
|
||||
previously allocated space if it is no longer required.
|
||||
@xref{Stubs}.
|
||||
|
||||
RETURNS
|
||||
<<malloc>> returns a pointer to the newly allocated space, if
|
||||
successful; otherwise it returns <<NULL>>. If your application needs
|
||||
to generate empty objects, you may use <<malloc(0)>> for this purpose.
|
||||
|
||||
<<realloc>> returns a pointer to the new block of memory, or <<NULL>>
|
||||
if a new block could not be allocated. <<NULL>> is also the result
|
||||
when you use `<<realloc(<[aptr]>,0)>>' (which has the same effect as
|
||||
`<<free(<[aptr]>)>>'). You should always check the result of
|
||||
<<realloc>>; successful reallocation is not guaranteed even when
|
||||
you request a smaller object.
|
||||
|
||||
<<free>> does not return a result.
|
||||
|
||||
<<memalign>> returns a pointer to the newly allocated space.
|
||||
|
||||
<<malloc_usable_size>> returns the usable size.
|
||||
|
||||
PORTABILITY
|
||||
<<malloc>>, <<realloc>>, and <<free>> are specified by the ANSI C
|
||||
standard, but other conforming implementations of <<malloc>> may
|
||||
behave differently when <[nbytes]> is zero.
|
||||
|
||||
<<memalign>> is part of SVR4.
|
||||
|
||||
<<malloc_usable_size>> is not portable.
|
||||
|
||||
Supporting OS subroutines required: <<sbrk>>. */
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <reent.h>
|
||||
#include <stdlib.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
_PTR
|
||||
_DEFUN (malloc, (nbytes),
|
||||
size_t nbytes) /* get a block */
|
||||
{
|
||||
return _malloc_r (_REENT, nbytes);
|
||||
}
|
||||
|
||||
void
|
||||
_DEFUN (free, (aptr),
|
||||
_PTR aptr)
|
||||
{
|
||||
_free_r (_REENT, aptr);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* ! defined (MALLOC_PROVIDED) */
|
||||
2171
programs/develop/libraries/newlib/stdlib/mallocr.c
Normal file
2171
programs/develop/libraries/newlib/stdlib/mallocr.c
Normal file
File diff suppressed because it is too large
Load Diff
1853
programs/develop/libraries/newlib/stdlib/mallocr1.c
Normal file
1853
programs/develop/libraries/newlib/stdlib/mallocr1.c
Normal file
File diff suppressed because it is too large
Load Diff
21
programs/develop/libraries/newlib/stdlib/mbctype.h
Normal file
21
programs/develop/libraries/newlib/stdlib/mbctype.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef _MBCTYPE_H_
|
||||
|
||||
#define _MBCTYPE_H_
|
||||
|
||||
/* escape character used for JIS encoding */
|
||||
#define ESC_CHAR 0x1b
|
||||
|
||||
/* functions used to support SHIFT_JIS, EUC-JP, and JIS multibyte encodings */
|
||||
|
||||
int _EXFUN(_issjis1, (int c));
|
||||
int _EXFUN(_issjis2, (int c));
|
||||
int _EXFUN(_iseucjp, (int c));
|
||||
int _EXFUN(_isjis, (int c));
|
||||
|
||||
#define _issjis1(c) (((c) >= 0x81 && (c) <= 0x9f) || ((c) >= 0xe0 && (c) <= 0xef))
|
||||
#define _issjis2(c) (((c) >= 0x40 && (c) <= 0x7e) || ((c) >= 0x80 && (c) <= 0xfc))
|
||||
#define _iseucjp1(c) ((c) == 0x8e || (c) == 0x8f || ((c) >= 0xa1 && (c) <= 0xfe))
|
||||
#define _iseucjp2(c) ((c) >= 0xa1 && (c) <= 0xfe)
|
||||
#define _isjis(c) ((c) >= 0x21 && (c) <= 0x7e)
|
||||
|
||||
#endif /* _MBCTYPE_H_ */
|
||||
79
programs/develop/libraries/newlib/stdlib/mbrtowc.c
Normal file
79
programs/develop/libraries/newlib/stdlib/mbrtowc.c
Normal file
@@ -0,0 +1,79 @@
|
||||
#include <reent.h>
|
||||
#include <newlib.h>
|
||||
#include <wchar.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include "local.h"
|
||||
|
||||
size_t
|
||||
_DEFUN (_mbrtowc_r, (ptr, pwc, s, n, ps),
|
||||
struct _reent *ptr _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
mbstate_t *ps)
|
||||
{
|
||||
int retval = 0;
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
if (ps == NULL)
|
||||
{
|
||||
_REENT_CHECK_MISC(ptr);
|
||||
ps = &(_REENT_MBRTOWC_STATE(ptr));
|
||||
}
|
||||
#endif
|
||||
|
||||
if (s == NULL)
|
||||
retval = __mbtowc (ptr, NULL, "", 1, __locale_charset (), ps);
|
||||
else
|
||||
retval = __mbtowc (ptr, pwc, s, n, __locale_charset (), ps);
|
||||
|
||||
if (retval == -1)
|
||||
{
|
||||
ps->__count = 0;
|
||||
ptr->_errno = EILSEQ;
|
||||
return (size_t)(-1);
|
||||
}
|
||||
else
|
||||
return (size_t)retval;
|
||||
}
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
size_t
|
||||
_DEFUN (mbrtowc, (pwc, s, n, ps),
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
mbstate_t *ps)
|
||||
{
|
||||
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
|
||||
return _mbrtowc_r (_REENT, pwc, s, n, ps);
|
||||
#else
|
||||
int retval = 0;
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
if (ps == NULL)
|
||||
{
|
||||
_REENT_CHECK_MISC(_REENT);
|
||||
ps = &(_REENT_MBRTOWC_STATE(_REENT));
|
||||
}
|
||||
#endif
|
||||
|
||||
if (s == NULL)
|
||||
retval = __mbtowc (_REENT, NULL, "", 1, __locale_charset (), ps);
|
||||
else
|
||||
retval = __mbtowc (_REENT, pwc, s, n, __locale_charset (), ps);
|
||||
|
||||
if (retval == -1)
|
||||
{
|
||||
ps->__count = 0;
|
||||
_REENT->_errno = EILSEQ;
|
||||
return (size_t)(-1);
|
||||
}
|
||||
else
|
||||
return (size_t)retval;
|
||||
#endif /* not PREFER_SIZE_OVER_SPEED */
|
||||
}
|
||||
#endif /* !_REENT_ONLY */
|
||||
95
programs/develop/libraries/newlib/stdlib/mbtowc.c
Normal file
95
programs/develop/libraries/newlib/stdlib/mbtowc.c
Normal file
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<mbtowc>>---minimal multibyte to wide char converter
|
||||
|
||||
INDEX
|
||||
mbtowc
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int mbtowc(wchar_t *<[pwc]>, const char *<[s]>, size_t <[n]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
int mbtowc(<[pwc]>, <[s]>, <[n]>)
|
||||
wchar_t *<[pwc]>;
|
||||
const char *<[s]>;
|
||||
size_t <[n]>;
|
||||
|
||||
DESCRIPTION
|
||||
When _MB_CAPABLE is not defined, this is a minimal ANSI-conforming
|
||||
implementation of <<mbtowc>>. In this case,
|
||||
only ``multi-byte character sequences'' recognized are single bytes,
|
||||
and they are ``converted'' to themselves.
|
||||
Each call to <<mbtowc>> copies one character from <<*<[s]>>> to
|
||||
<<*<[pwc]>>>, unless <[s]> is a null pointer. The argument n
|
||||
is ignored.
|
||||
|
||||
When _MB_CAPABLE is defined, this routine calls <<_mbtowc_r>> to perform
|
||||
the conversion, passing a state variable to allow state dependent
|
||||
decoding. The result is based on the locale setting which may
|
||||
be restricted to a defined set of locales.
|
||||
|
||||
RETURNS
|
||||
This implementation of <<mbtowc>> returns <<0>> if
|
||||
<[s]> is <<NULL>> or is the empty string;
|
||||
it returns <<1>> if not _MB_CAPABLE or
|
||||
the character is a single-byte character; it returns <<-1>>
|
||||
if n is <<0>> or the multi-byte character is invalid;
|
||||
otherwise it returns the number of bytes in the multibyte character.
|
||||
If the return value is -1, no changes are made to the <<pwc>>
|
||||
output string. If the input is the empty string, a wchar_t nul
|
||||
is placed in the output string and 0 is returned. If the input
|
||||
has a length of 0, no changes are made to the <<pwc>> output string.
|
||||
|
||||
PORTABILITY
|
||||
<<mbtowc>> is required in the ANSI C standard. However, the precise
|
||||
effects vary with the locale.
|
||||
|
||||
<<mbtowc>> requires no supporting OS subroutines.
|
||||
*/
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
#include <newlib.h>
|
||||
#include <stdlib.h>
|
||||
#include <wchar.h>
|
||||
#include "local.h"
|
||||
|
||||
int
|
||||
_DEFUN (mbtowc, (pwc, s, n),
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n)
|
||||
{
|
||||
#ifdef _MB_CAPABLE
|
||||
int retval = 0;
|
||||
mbstate_t *ps;
|
||||
|
||||
_REENT_CHECK_MISC(_REENT);
|
||||
ps = &(_REENT_MBTOWC_STATE(_REENT));
|
||||
|
||||
retval = __mbtowc (_REENT, pwc, s, n, __locale_charset (), ps);
|
||||
|
||||
if (retval < 0)
|
||||
{
|
||||
ps->__count = 0;
|
||||
return -1;
|
||||
}
|
||||
return retval;
|
||||
#else /* not _MB_CAPABLE */
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
if (n == 0)
|
||||
return -1;
|
||||
if (pwc)
|
||||
*pwc = (wchar_t) *s;
|
||||
return (*s != '\0');
|
||||
#endif /* not _MB_CAPABLE */
|
||||
}
|
||||
|
||||
#endif /* !_REENT_ONLY */
|
||||
|
||||
|
||||
|
||||
|
||||
646
programs/develop/libraries/newlib/stdlib/mbtowc_r.c
Normal file
646
programs/develop/libraries/newlib/stdlib/mbtowc_r.c
Normal file
@@ -0,0 +1,646 @@
|
||||
#include <newlib.h>
|
||||
#include <stdlib.h>
|
||||
#include <locale.h>
|
||||
#include "mbctype.h"
|
||||
#include <wchar.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include "local.h"
|
||||
|
||||
int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t,
|
||||
const char *, mbstate_t *)
|
||||
#ifdef __CYGWIN__
|
||||
/* Cygwin starts up in UTF-8 mode. */
|
||||
= __utf8_mbtowc;
|
||||
#else
|
||||
= __ascii_mbtowc;
|
||||
#endif
|
||||
|
||||
int
|
||||
_DEFUN (_mbtowc_r, (r, pwc, s, n, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
return __mbtowc (r, pwc, s, n, __locale_charset (), state);
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__ascii_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
#ifdef __CYGWIN__
|
||||
if ((wchar_t)*t >= 0x80)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
*pwc = (wchar_t)*t;
|
||||
|
||||
if (*t == '\0')
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
typedef enum { ESCAPE, DOLLAR, BRACKET, AT, B, J,
|
||||
NUL, JIS_CHAR, OTHER, JIS_C_NUM } JIS_CHAR_TYPE;
|
||||
typedef enum { ASCII, JIS, A_ESC, A_ESC_DL, JIS_1, J_ESC, J_ESC_BR,
|
||||
INV, JIS_S_NUM } JIS_STATE;
|
||||
typedef enum { COPY_A, COPY_J1, COPY_J2, MAKE_A, NOOP, EMPTY, ERROR } JIS_ACTION;
|
||||
|
||||
/**************************************************************************************
|
||||
* state/action tables for processing JIS encoding
|
||||
* Where possible, switches to JIS are grouped with proceding JIS characters and switches
|
||||
* to ASCII are grouped with preceding JIS characters. Thus, maximum returned length
|
||||
* is 2 (switch to JIS) + 2 (JIS characters) + 2 (switch back to ASCII) = 6.
|
||||
*************************************************************************************/
|
||||
|
||||
static JIS_STATE JIS_state_table[JIS_S_NUM][JIS_C_NUM] = {
|
||||
/* ESCAPE DOLLAR BRACKET AT B J NUL JIS_CHAR OTHER */
|
||||
/* ASCII */ { A_ESC, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII },
|
||||
/* JIS */ { J_ESC, JIS_1, JIS_1, JIS_1, JIS_1, JIS_1, INV, JIS_1, INV },
|
||||
/* A_ESC */ { ASCII, A_ESC_DL, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII, ASCII },
|
||||
/* A_ESC_DL */{ ASCII, ASCII, ASCII, JIS, JIS, ASCII, ASCII, ASCII, ASCII },
|
||||
/* JIS_1 */ { INV, JIS, JIS, JIS, JIS, JIS, INV, JIS, INV },
|
||||
/* J_ESC */ { INV, INV, J_ESC_BR, INV, INV, INV, INV, INV, INV },
|
||||
/* J_ESC_BR */{ INV, INV, INV, INV, ASCII, ASCII, INV, INV, INV },
|
||||
};
|
||||
|
||||
static JIS_ACTION JIS_action_table[JIS_S_NUM][JIS_C_NUM] = {
|
||||
/* ESCAPE DOLLAR BRACKET AT B J NUL JIS_CHAR OTHER */
|
||||
/* ASCII */ { NOOP, COPY_A, COPY_A, COPY_A, COPY_A, COPY_A, EMPTY, COPY_A, COPY_A},
|
||||
/* JIS */ { NOOP, COPY_J1, COPY_J1, COPY_J1, COPY_J1, COPY_J1, ERROR, COPY_J1, ERROR },
|
||||
/* A_ESC */ { COPY_A, NOOP, COPY_A, COPY_A, COPY_A, COPY_A, COPY_A, COPY_A, COPY_A},
|
||||
/* A_ESC_DL */{ COPY_A, COPY_A, COPY_A, NOOP, NOOP, COPY_A, COPY_A, COPY_A, COPY_A},
|
||||
/* JIS_1 */ { ERROR, COPY_J2, COPY_J2, COPY_J2, COPY_J2, COPY_J2, ERROR, COPY_J2, ERROR },
|
||||
/* J_ESC */ { ERROR, ERROR, NOOP, ERROR, ERROR, ERROR, ERROR, ERROR, ERROR },
|
||||
/* J_ESC_BR */{ ERROR, ERROR, ERROR, ERROR, MAKE_A, MAKE_A, ERROR, ERROR, ERROR },
|
||||
};
|
||||
|
||||
/* we override the mbstate_t __count field for more complex encodings and use it store a state value */
|
||||
#define __state __count
|
||||
|
||||
#ifdef _MB_EXTENDED_CHARSETS_ISO
|
||||
int
|
||||
_DEFUN (__iso_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
if (*t >= 0xa0)
|
||||
{
|
||||
int iso_idx = __iso_8859_index (charset + 9);
|
||||
if (iso_idx >= 0)
|
||||
{
|
||||
*pwc = __iso_8859_conv[iso_idx][*t - 0xa0];
|
||||
if (*pwc == 0) /* Invalid character */
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
*pwc = (wchar_t) *t;
|
||||
|
||||
if (*t == '\0')
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
#endif /* _MB_EXTENDED_CHARSETS_ISO */
|
||||
|
||||
#ifdef _MB_EXTENDED_CHARSETS_WINDOWS
|
||||
int
|
||||
_DEFUN (__cp_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
if (*t >= 0x80)
|
||||
{
|
||||
int cp_idx = __cp_index (charset + 2);
|
||||
if (cp_idx >= 0)
|
||||
{
|
||||
*pwc = __cp_conv[cp_idx][*t - 0x80];
|
||||
if (*pwc == 0) /* Invalid character */
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
*pwc = (wchar_t)*t;
|
||||
|
||||
if (*t == '\0')
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
#endif /* _MB_EXTENDED_CHARSETS_WINDOWS */
|
||||
|
||||
int
|
||||
_DEFUN (__utf8_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
int ch;
|
||||
int i = 0;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
if (state->__count == 0)
|
||||
ch = t[i++];
|
||||
else
|
||||
ch = state->__value.__wchb[0];
|
||||
|
||||
if (ch == '\0')
|
||||
{
|
||||
*pwc = 0;
|
||||
state->__count = 0;
|
||||
return 0; /* s points to the null character */
|
||||
}
|
||||
|
||||
if (ch <= 0x7f)
|
||||
{
|
||||
/* single-byte sequence */
|
||||
state->__count = 0;
|
||||
*pwc = ch;
|
||||
return 1;
|
||||
}
|
||||
if (ch >= 0xc0 && ch <= 0xdf)
|
||||
{
|
||||
/* two-byte sequence */
|
||||
state->__value.__wchb[0] = ch;
|
||||
if (state->__count == 0)
|
||||
state->__count = 1;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (n < 2)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
if (state->__value.__wchb[0] < 0xc2)
|
||||
{
|
||||
/* overlong UTF-8 sequence */
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
state->__count = 0;
|
||||
*pwc = (wchar_t)((state->__value.__wchb[0] & 0x1f) << 6)
|
||||
| (wchar_t)(ch & 0x3f);
|
||||
return i;
|
||||
}
|
||||
if (ch >= 0xe0 && ch <= 0xef)
|
||||
{
|
||||
/* three-byte sequence */
|
||||
wchar_t tmp;
|
||||
state->__value.__wchb[0] = ch;
|
||||
if (state->__count == 0)
|
||||
state->__count = 1;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (n < 2)
|
||||
return -2;
|
||||
ch = (state->__count == 1) ? t[i++] : state->__value.__wchb[1];
|
||||
if (state->__value.__wchb[0] == 0xe0 && ch < 0xa0)
|
||||
{
|
||||
/* overlong UTF-8 sequence */
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
state->__value.__wchb[1] = ch;
|
||||
if (state->__count == 1)
|
||||
state->__count = 2;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (n < 3)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
state->__count = 0;
|
||||
tmp = (wchar_t)((state->__value.__wchb[0] & 0x0f) << 12)
|
||||
| (wchar_t)((state->__value.__wchb[1] & 0x3f) << 6)
|
||||
| (wchar_t)(ch & 0x3f);
|
||||
*pwc = tmp;
|
||||
return i;
|
||||
}
|
||||
if (ch >= 0xf0 && ch <= 0xf4)
|
||||
{
|
||||
/* four-byte sequence */
|
||||
wint_t tmp;
|
||||
state->__value.__wchb[0] = ch;
|
||||
if (state->__count == 0)
|
||||
state->__count = 1;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (n < 2)
|
||||
return -2;
|
||||
ch = (state->__count == 1) ? t[i++] : state->__value.__wchb[1];
|
||||
if ((state->__value.__wchb[0] == 0xf0 && ch < 0x90)
|
||||
|| (state->__value.__wchb[0] == 0xf4 && ch >= 0x90))
|
||||
{
|
||||
/* overlong UTF-8 sequence or result is > 0x10ffff */
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
state->__value.__wchb[1] = ch;
|
||||
if (state->__count == 1)
|
||||
state->__count = 2;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (n < 3)
|
||||
return -2;
|
||||
ch = (state->__count == 2) ? t[i++] : state->__value.__wchb[2];
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
state->__value.__wchb[2] = ch;
|
||||
if (state->__count == 2)
|
||||
state->__count = 3;
|
||||
else if (n < (size_t)-1)
|
||||
++n;
|
||||
if (state->__count == 3 && sizeof(wchar_t) == 2)
|
||||
{
|
||||
/* On systems which have wchar_t being UTF-16 values, the value
|
||||
doesn't fit into a single wchar_t in this case. So what we
|
||||
do here is to store the state with a special value of __count
|
||||
and return the first half of a surrogate pair. The first
|
||||
three bytes of a UTF-8 sequence are enough to generate the
|
||||
first half of a UTF-16 surrogate pair. As return value we
|
||||
choose to return the number of bytes actually read up to
|
||||
here.
|
||||
The second half of the surrogate pair is returned in case we
|
||||
recognize the special __count value of four, and the next
|
||||
byte is actually a valid value. See below. */
|
||||
tmp = (wint_t)((state->__value.__wchb[0] & 0x07) << 18)
|
||||
| (wint_t)((state->__value.__wchb[1] & 0x3f) << 12)
|
||||
| (wint_t)((state->__value.__wchb[2] & 0x3f) << 6);
|
||||
state->__count = 4;
|
||||
*pwc = 0xd800 | ((tmp - 0x10000) >> 10);
|
||||
return i;
|
||||
}
|
||||
if (n < 4)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
if (ch < 0x80 || ch > 0xbf)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
tmp = (wint_t)((state->__value.__wchb[0] & 0x07) << 18)
|
||||
| (wint_t)((state->__value.__wchb[1] & 0x3f) << 12)
|
||||
| (wint_t)((state->__value.__wchb[2] & 0x3f) << 6)
|
||||
| (wint_t)(ch & 0x3f);
|
||||
if (state->__count == 4 && sizeof(wchar_t) == 2)
|
||||
/* Create the second half of the surrogate pair for systems with
|
||||
wchar_t == UTF-16 . */
|
||||
*pwc = 0xdc00 | (tmp & 0x3ff);
|
||||
else
|
||||
*pwc = tmp;
|
||||
state->__count = 0;
|
||||
return i;
|
||||
}
|
||||
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Cygwin defines its own doublebyte charset conversion functions
|
||||
because the underlying OS requires wchar_t == UTF-16. */
|
||||
#ifndef __CYGWIN__
|
||||
int
|
||||
_DEFUN (__sjis_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
int ch;
|
||||
int i = 0;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0; /* not state-dependent */
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
ch = t[i++];
|
||||
if (state->__count == 0)
|
||||
{
|
||||
if (_issjis1 (ch))
|
||||
{
|
||||
state->__value.__wchb[0] = ch;
|
||||
state->__count = 1;
|
||||
if (n <= 1)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
}
|
||||
}
|
||||
if (state->__count == 1)
|
||||
{
|
||||
if (_issjis2 (ch))
|
||||
{
|
||||
*pwc = (((wchar_t)state->__value.__wchb[0]) << 8) + (wchar_t)ch;
|
||||
state->__count = 0;
|
||||
return i;
|
||||
}
|
||||
else
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
*pwc = (wchar_t)*t;
|
||||
|
||||
if (*t == '\0')
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__eucjp_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
int ch;
|
||||
int i = 0;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
ch = t[i++];
|
||||
if (state->__count == 0)
|
||||
{
|
||||
if (_iseucjp1 (ch))
|
||||
{
|
||||
state->__value.__wchb[0] = ch;
|
||||
state->__count = 1;
|
||||
if (n <= 1)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
}
|
||||
}
|
||||
if (state->__count == 1)
|
||||
{
|
||||
if (_iseucjp2 (ch))
|
||||
{
|
||||
if (state->__value.__wchb[0] == 0x8f)
|
||||
{
|
||||
state->__value.__wchb[1] = ch;
|
||||
state->__count = 2;
|
||||
if (n <= i)
|
||||
return -2;
|
||||
ch = t[i++];
|
||||
}
|
||||
else
|
||||
{
|
||||
*pwc = (((wchar_t)state->__value.__wchb[0]) << 8) + (wchar_t)ch;
|
||||
state->__count = 0;
|
||||
return i;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (state->__count == 2)
|
||||
{
|
||||
if (_iseucjp2 (ch))
|
||||
{
|
||||
*pwc = (((wchar_t)state->__value.__wchb[1]) << 8)
|
||||
+ (wchar_t)(ch & 0x7f);
|
||||
state->__count = 0;
|
||||
return i;
|
||||
}
|
||||
else
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
*pwc = (wchar_t)*t;
|
||||
|
||||
if (*t == '\0')
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__jis_mbtowc, (r, pwc, s, n, charset, state),
|
||||
struct _reent *r _AND
|
||||
wchar_t *pwc _AND
|
||||
const char *s _AND
|
||||
size_t n _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wchar_t dummy;
|
||||
unsigned char *t = (unsigned char *)s;
|
||||
JIS_STATE curr_state;
|
||||
JIS_ACTION action;
|
||||
JIS_CHAR_TYPE ch;
|
||||
unsigned char *ptr;
|
||||
unsigned int i;
|
||||
int curr_ch;
|
||||
|
||||
if (pwc == NULL)
|
||||
pwc = &dummy;
|
||||
|
||||
if (s == NULL)
|
||||
{
|
||||
state->__state = ASCII;
|
||||
return 1; /* state-dependent */
|
||||
}
|
||||
|
||||
if (n == 0)
|
||||
return -2;
|
||||
|
||||
curr_state = state->__state;
|
||||
ptr = t;
|
||||
|
||||
for (i = 0; i < n; ++i)
|
||||
{
|
||||
curr_ch = t[i];
|
||||
switch (curr_ch)
|
||||
{
|
||||
case ESC_CHAR:
|
||||
ch = ESCAPE;
|
||||
break;
|
||||
case '$':
|
||||
ch = DOLLAR;
|
||||
break;
|
||||
case '@':
|
||||
ch = AT;
|
||||
break;
|
||||
case '(':
|
||||
ch = BRACKET;
|
||||
break;
|
||||
case 'B':
|
||||
ch = B;
|
||||
break;
|
||||
case 'J':
|
||||
ch = J;
|
||||
break;
|
||||
case '\0':
|
||||
ch = NUL;
|
||||
break;
|
||||
default:
|
||||
if (_isjis (curr_ch))
|
||||
ch = JIS_CHAR;
|
||||
else
|
||||
ch = OTHER;
|
||||
}
|
||||
|
||||
action = JIS_action_table[curr_state][ch];
|
||||
curr_state = JIS_state_table[curr_state][ch];
|
||||
|
||||
switch (action)
|
||||
{
|
||||
case NOOP:
|
||||
break;
|
||||
case EMPTY:
|
||||
state->__state = ASCII;
|
||||
*pwc = (wchar_t)0;
|
||||
return 0;
|
||||
case COPY_A:
|
||||
state->__state = ASCII;
|
||||
*pwc = (wchar_t)*ptr;
|
||||
return (i + 1);
|
||||
case COPY_J1:
|
||||
state->__value.__wchb[0] = t[i];
|
||||
break;
|
||||
case COPY_J2:
|
||||
state->__state = JIS;
|
||||
*pwc = (((wchar_t)state->__value.__wchb[0]) << 8) + (wchar_t)(t[i]);
|
||||
return (i + 1);
|
||||
case MAKE_A:
|
||||
ptr = (unsigned char *)(t + i + 1);
|
||||
break;
|
||||
case ERROR:
|
||||
default:
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
state->__state = curr_state;
|
||||
return -2; /* n < bytes needed */
|
||||
}
|
||||
#endif /* !__CYGWIN__*/
|
||||
#endif /* _MB_CAPABLE */
|
||||
56
programs/develop/libraries/newlib/stdlib/mlock.c
Normal file
56
programs/develop/libraries/newlib/stdlib/mlock.c
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<__malloc_lock>>, <<__malloc_unlock>>---lock malloc pool
|
||||
|
||||
INDEX
|
||||
__malloc_lock
|
||||
INDEX
|
||||
__malloc_unlock
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <malloc.h>
|
||||
void __malloc_lock (struct _reent *<[reent]>);
|
||||
void __malloc_unlock (struct _reent *<[reent]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
void __malloc_lock(<[reent]>)
|
||||
struct _reent *<[reent]>;
|
||||
|
||||
void __malloc_unlock(<[reent]>)
|
||||
struct _reent *<[reent]>;
|
||||
|
||||
DESCRIPTION
|
||||
The <<malloc>> family of routines call these functions when they need to lock
|
||||
the memory pool. The version of these routines supplied in the library use
|
||||
the lock API defined in sys/lock.h. If multiple threads of execution can
|
||||
call <<malloc>>, or if <<malloc>> can be called reentrantly, then you need to
|
||||
define your own versions of these functions in order to safely lock the
|
||||
memory pool during a call. If you do not, the memory pool may become
|
||||
corrupted.
|
||||
|
||||
A call to <<malloc>> may call <<__malloc_lock>> recursively; that is,
|
||||
the sequence of calls may go <<__malloc_lock>>, <<__malloc_lock>>,
|
||||
<<__malloc_unlock>>, <<__malloc_unlock>>. Any implementation of these
|
||||
routines must be careful to avoid causing a thread to wait for a lock
|
||||
that it already holds.
|
||||
*/
|
||||
|
||||
#include <malloc.h>
|
||||
#include <sys/lock.h>
|
||||
|
||||
__LOCK_INIT_RECURSIVE(static, __malloc_lock_object);
|
||||
|
||||
void
|
||||
__malloc_lock (ptr)
|
||||
struct _reent *ptr;
|
||||
{
|
||||
__lock_acquire_recursive (__malloc_lock_object);
|
||||
}
|
||||
|
||||
void
|
||||
__malloc_unlock (ptr)
|
||||
struct _reent *ptr;
|
||||
{
|
||||
__lock_release_recursive (__malloc_lock_object);
|
||||
}
|
||||
|
||||
1049
programs/develop/libraries/newlib/stdlib/mprec.c
Normal file
1049
programs/develop/libraries/newlib/stdlib/mprec.c
Normal file
File diff suppressed because it is too large
Load Diff
415
programs/develop/libraries/newlib/stdlib/mprec.h
Normal file
415
programs/develop/libraries/newlib/stdlib/mprec.h
Normal file
@@ -0,0 +1,415 @@
|
||||
/****************************************************************
|
||||
*
|
||||
* The author of this software is David M. Gay.
|
||||
*
|
||||
* Copyright (c) 1991 by AT&T.
|
||||
*
|
||||
* Permission to use, copy, modify, and distribute this software for any
|
||||
* purpose without fee is hereby granted, provided that this entire notice
|
||||
* is included in all copies of any software which is or includes a copy
|
||||
* or modification of this software and in all copies of the supporting
|
||||
* documentation for such software.
|
||||
*
|
||||
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
|
||||
* WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY
|
||||
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
|
||||
* OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
|
||||
*
|
||||
***************************************************************/
|
||||
|
||||
/* Please send bug reports to
|
||||
David M. Gay
|
||||
AT&T Bell Laboratories, Room 2C-463
|
||||
600 Mountain Avenue
|
||||
Murray Hill, NJ 07974-2070
|
||||
U.S.A.
|
||||
dmg@research.att.com or research!dmg
|
||||
*/
|
||||
|
||||
#include <ieeefp.h>
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
#include <errno.h>
|
||||
#include <sys/config.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#ifdef __IEEE_LITTLE_ENDIAN
|
||||
#define IEEE_8087
|
||||
#endif
|
||||
|
||||
#ifdef __IEEE_BIG_ENDIAN
|
||||
#define IEEE_MC68k
|
||||
#endif
|
||||
|
||||
#ifdef __Z8000__
|
||||
#define Just_16
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
#include "stdio.h"
|
||||
#define Bug(x) {fprintf(stderr, "%s\n", x); exit(1);}
|
||||
#endif
|
||||
|
||||
#ifdef Unsigned_Shifts
|
||||
#define Sign_Extend(a,b) if (b < 0) a |= (__uint32_t)0xffff0000;
|
||||
#else
|
||||
#define Sign_Extend(a,b) /*no-op*/
|
||||
#endif
|
||||
|
||||
#if defined(IEEE_8087) + defined(IEEE_MC68k) + defined(VAX) + defined(IBM) != 1
|
||||
Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined.
|
||||
#endif
|
||||
|
||||
/* If we are going to examine or modify specific bits in a double using
|
||||
the word0 and/or word1 macros, then we must wrap the double inside
|
||||
a union. This is necessary to avoid undefined behavior according to
|
||||
the ANSI C spec. */
|
||||
union double_union
|
||||
{
|
||||
double d;
|
||||
__uint32_t i[2];
|
||||
};
|
||||
|
||||
#ifdef IEEE_8087
|
||||
#define word0(x) (x.i[1])
|
||||
#define word1(x) (x.i[0])
|
||||
#else
|
||||
#define word0(x) (x.i[0])
|
||||
#define word1(x) (x.i[1])
|
||||
#endif
|
||||
|
||||
/* The following is taken from gdtoaimp.h for use with new strtod, but
|
||||
adjusted to avoid invalid type-punning. */
|
||||
typedef __int32_t Long;
|
||||
|
||||
/* Unfortunately, because __ULong might be a different type than
|
||||
__uint32_t, we can't re-use union double_union as-is without
|
||||
further edits in strtod.c. */
|
||||
typedef union { double d; __ULong i[2]; } U;
|
||||
|
||||
#define dword0(x) word0(x)
|
||||
#define dword1(x) word1(x)
|
||||
#define dval(x) (x.d)
|
||||
|
||||
#undef SI
|
||||
#ifdef Sudden_Underflow
|
||||
#define SI 1
|
||||
#else
|
||||
#define SI 0
|
||||
#endif
|
||||
|
||||
#define Storeinc(a,b,c) (*(a)++ = (b) << 16 | (c) & 0xffff)
|
||||
|
||||
/* #define P DBL_MANT_DIG */
|
||||
/* Ten_pmax = floor(P*log(2)/log(5)) */
|
||||
/* Bletch = (highest power of 2 < DBL_MAX_10_EXP) / 16 */
|
||||
/* Quick_max = floor((P-1)*log(FLT_RADIX)/log(10) - 1) */
|
||||
/* Int_max = floor(P*log(FLT_RADIX)/log(10) - 1) */
|
||||
|
||||
#if defined(IEEE_8087) + defined(IEEE_MC68k)
|
||||
#if defined (_DOUBLE_IS_32BITS)
|
||||
#define Exp_shift 23
|
||||
#define Exp_shift1 23
|
||||
#define Exp_msk1 ((__uint32_t)0x00800000L)
|
||||
#define Exp_msk11 ((__uint32_t)0x00800000L)
|
||||
#define Exp_mask ((__uint32_t)0x7f800000L)
|
||||
#define P 24
|
||||
#define Bias 127
|
||||
#define NO_HEX_FP /* not supported in this case */
|
||||
#define IEEE_Arith
|
||||
#define Emin (-126)
|
||||
#define Exp_1 ((__uint32_t)0x3f800000L)
|
||||
#define Exp_11 ((__uint32_t)0x3f800000L)
|
||||
#define Ebits 8
|
||||
#define Frac_mask ((__uint32_t)0x007fffffL)
|
||||
#define Frac_mask1 ((__uint32_t)0x007fffffL)
|
||||
#define Ten_pmax 10
|
||||
#define Sign_bit ((__uint32_t)0x80000000L)
|
||||
#define Ten_pmax 10
|
||||
#define Bletch 2
|
||||
#define Bndry_mask ((__uint32_t)0x007fffffL)
|
||||
#define Bndry_mask1 ((__uint32_t)0x007fffffL)
|
||||
#define LSB 1
|
||||
#define Sign_bit ((__uint32_t)0x80000000L)
|
||||
#define Log2P 1
|
||||
#define Tiny0 0
|
||||
#define Tiny1 1
|
||||
#define Quick_max 5
|
||||
#define Int_max 6
|
||||
#define Infinite(x) (word0(x) == ((__uint32_t)0x7f800000L))
|
||||
#undef word0
|
||||
#undef word1
|
||||
#undef dword0
|
||||
#undef dword1
|
||||
|
||||
#define word0(x) (x.i[0])
|
||||
#define word1(x) 0
|
||||
#define dword0(x) word0(x)
|
||||
#define dword1(x) 0
|
||||
#else
|
||||
|
||||
#define Exp_shift 20
|
||||
#define Exp_shift1 20
|
||||
#define Exp_msk1 ((__uint32_t)0x100000L)
|
||||
#define Exp_msk11 ((__uint32_t)0x100000L)
|
||||
#define Exp_mask ((__uint32_t)0x7ff00000L)
|
||||
#define P 53
|
||||
#define Bias 1023
|
||||
#define IEEE_Arith
|
||||
#define Emin (-1022)
|
||||
#define Exp_1 ((__uint32_t)0x3ff00000L)
|
||||
#define Exp_11 ((__uint32_t)0x3ff00000L)
|
||||
#define Ebits 11
|
||||
#define Frac_mask ((__uint32_t)0xfffffL)
|
||||
#define Frac_mask1 ((__uint32_t)0xfffffL)
|
||||
#define Ten_pmax 22
|
||||
#define Bletch 0x10
|
||||
#define Bndry_mask ((__uint32_t)0xfffffL)
|
||||
#define Bndry_mask1 ((__uint32_t)0xfffffL)
|
||||
#define LSB 1
|
||||
#define Sign_bit ((__uint32_t)0x80000000L)
|
||||
#define Log2P 1
|
||||
#define Tiny0 0
|
||||
#define Tiny1 1
|
||||
#define Quick_max 14
|
||||
#define Int_max 14
|
||||
#define Infinite(x) (word0(x) == ((__uint32_t)0x7ff00000L)) /* sufficient test for here */
|
||||
|
||||
#endif /* !_DOUBLE_IS_32BITS */
|
||||
|
||||
#ifndef Flt_Rounds
|
||||
#ifdef FLT_ROUNDS
|
||||
#define Flt_Rounds FLT_ROUNDS
|
||||
#else
|
||||
#define Flt_Rounds 1
|
||||
#endif
|
||||
#endif /*Flt_Rounds*/
|
||||
|
||||
#else /* !IEEE_8087 && !IEEE_MC68k */
|
||||
#undef Sudden_Underflow
|
||||
#define Sudden_Underflow
|
||||
#ifdef IBM
|
||||
#define Flt_Rounds 0
|
||||
#define Exp_shift 24
|
||||
#define Exp_shift1 24
|
||||
#define Exp_msk1 ((__uint32_t)0x1000000L)
|
||||
#define Exp_msk11 ((__uint32_t)0x1000000L)
|
||||
#define Exp_mask ((__uint32_t)0x7f000000L)
|
||||
#define P 14
|
||||
#define Bias 65
|
||||
#define Exp_1 ((__uint32_t)0x41000000L)
|
||||
#define Exp_11 ((__uint32_t)0x41000000L)
|
||||
#define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */
|
||||
#define Frac_mask ((__uint32_t)0xffffffL)
|
||||
#define Frac_mask1 ((__uint32_t)0xffffffL)
|
||||
#define Bletch 4
|
||||
#define Ten_pmax 22
|
||||
#define Bndry_mask ((__uint32_t)0xefffffL)
|
||||
#define Bndry_mask1 ((__uint32_t)0xffffffL)
|
||||
#define LSB 1
|
||||
#define Sign_bit ((__uint32_t)0x80000000L)
|
||||
#define Log2P 4
|
||||
#define Tiny0 ((__uint32_t)0x100000L)
|
||||
#define Tiny1 0
|
||||
#define Quick_max 14
|
||||
#define Int_max 15
|
||||
#else /* VAX */
|
||||
#define Flt_Rounds 1
|
||||
#define Exp_shift 23
|
||||
#define Exp_shift1 7
|
||||
#define Exp_msk1 0x80
|
||||
#define Exp_msk11 ((__uint32_t)0x800000L)
|
||||
#define Exp_mask ((__uint32_t)0x7f80L)
|
||||
#define P 56
|
||||
#define Bias 129
|
||||
#define Exp_1 ((__uint32_t)0x40800000L)
|
||||
#define Exp_11 ((__uint32_t)0x4080L)
|
||||
#define Ebits 8
|
||||
#define Frac_mask ((__uint32_t)0x7fffffL)
|
||||
#define Frac_mask1 ((__uint32_t)0xffff007fL)
|
||||
#define Ten_pmax 24
|
||||
#define Bletch 2
|
||||
#define Bndry_mask ((__uint32_t)0xffff007fL)
|
||||
#define Bndry_mask1 ((__uint32_t)0xffff007fL)
|
||||
#define LSB ((__uint32_t)0x10000L)
|
||||
#define Sign_bit ((__uint32_t)0x8000L)
|
||||
#define Log2P 1
|
||||
#define Tiny0 0x80
|
||||
#define Tiny1 0
|
||||
#define Quick_max 15
|
||||
#define Int_max 15
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef IEEE_Arith
|
||||
#define ROUND_BIASED
|
||||
#else
|
||||
#define Scale_Bit 0x10
|
||||
#if defined(_DOUBLE_IS_32BITS) && defined(__v800)
|
||||
#define n_bigtens 2
|
||||
#else
|
||||
#define n_bigtens 5
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef IBM
|
||||
#define n_bigtens 3
|
||||
#endif
|
||||
|
||||
#ifdef VAX
|
||||
#define n_bigtens 2
|
||||
#endif
|
||||
|
||||
#ifndef __NO_INFNAN_CHECK
|
||||
#define INFNAN_CHECK
|
||||
#endif
|
||||
|
||||
/*
|
||||
* NAN_WORD0 and NAN_WORD1 are only referenced in strtod.c. Prior to
|
||||
* 20050115, they used to be hard-wired here (to 0x7ff80000 and 0,
|
||||
* respectively), but now are determined by compiling and running
|
||||
* qnan.c to generate gd_qnan.h, which specifies d_QNAN0 and d_QNAN1.
|
||||
* Formerly gdtoaimp.h recommended supplying suitable -DNAN_WORD0=...
|
||||
* and -DNAN_WORD1=... values if necessary. This should still work.
|
||||
* (On HP Series 700/800 machines, -DNAN_WORD0=0x7ff40000 works.)
|
||||
*/
|
||||
#ifdef IEEE_Arith
|
||||
#ifdef IEEE_MC68k
|
||||
#define _0 0
|
||||
#define _1 1
|
||||
#ifndef NAN_WORD0
|
||||
#define NAN_WORD0 d_QNAN0
|
||||
#endif
|
||||
#ifndef NAN_WORD1
|
||||
#define NAN_WORD1 d_QNAN1
|
||||
#endif
|
||||
#else
|
||||
#define _0 1
|
||||
#define _1 0
|
||||
#ifndef NAN_WORD0
|
||||
#define NAN_WORD0 d_QNAN1
|
||||
#endif
|
||||
#ifndef NAN_WORD1
|
||||
#define NAN_WORD1 d_QNAN0
|
||||
#endif
|
||||
#endif
|
||||
#else
|
||||
#undef INFNAN_CHECK
|
||||
#endif
|
||||
|
||||
#ifdef RND_PRODQUOT
|
||||
#define rounded_product(a,b) a = rnd_prod(a, b)
|
||||
#define rounded_quotient(a,b) a = rnd_quot(a, b)
|
||||
#ifdef KR_headers
|
||||
extern double rnd_prod(), rnd_quot();
|
||||
#else
|
||||
extern double rnd_prod(double, double), rnd_quot(double, double);
|
||||
#endif
|
||||
#else
|
||||
#define rounded_product(a,b) a *= b
|
||||
#define rounded_quotient(a,b) a /= b
|
||||
#endif
|
||||
|
||||
#define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
|
||||
#define Big1 ((__uint32_t)0xffffffffL)
|
||||
|
||||
#ifndef Just_16
|
||||
/* When Pack_32 is not defined, we store 16 bits per 32-bit long.
|
||||
* This makes some inner loops simpler and sometimes saves work
|
||||
* during multiplications, but it often seems to make things slightly
|
||||
* slower. Hence the default is now to store 32 bits per long.
|
||||
*/
|
||||
|
||||
#ifndef Pack_32
|
||||
#define Pack_32
|
||||
#endif
|
||||
#else /* Just_16 */
|
||||
#ifndef Pack_16
|
||||
#define Pack_16
|
||||
#endif
|
||||
#endif /* Just_16 */
|
||||
|
||||
#ifdef Pack_32
|
||||
#define ULbits 32
|
||||
#define kshift 5
|
||||
#define kmask 31
|
||||
#define ALL_ON 0xffffffff
|
||||
#else
|
||||
#define ULbits 16
|
||||
#define kshift 4
|
||||
#define kmask 15
|
||||
#define ALL_ON 0xffff
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" double strtod(const char *s00, char **se);
|
||||
extern "C" char *dtoa(double d, int mode, int ndigits,
|
||||
int *decpt, int *sign, char **rve);
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct _Bigint _Bigint;
|
||||
|
||||
#define Balloc _Balloc
|
||||
#define Bfree _Bfree
|
||||
#define multadd __multadd
|
||||
#define s2b __s2b
|
||||
#define lo0bits __lo0bits
|
||||
#define hi0bits __hi0bits
|
||||
#define i2b __i2b
|
||||
#define mult __multiply
|
||||
#define pow5mult __pow5mult
|
||||
#define lshift __lshift
|
||||
#define cmp __mcmp
|
||||
#define diff __mdiff
|
||||
#define ulp __ulp
|
||||
#define b2d __b2d
|
||||
#define d2b __d2b
|
||||
#define ratio __ratio
|
||||
#define any_on __any_on
|
||||
#define gethex __gethex
|
||||
#define copybits __copybits
|
||||
#define hexnan __hexnan
|
||||
#define hexdig_init __hexdig_init
|
||||
|
||||
#define hexdig __hexdig
|
||||
|
||||
#define tens __mprec_tens
|
||||
#define bigtens __mprec_bigtens
|
||||
#define tinytens __mprec_tinytens
|
||||
|
||||
struct _reent ;
|
||||
struct FPI;
|
||||
double _EXFUN(ulp,(double x));
|
||||
double _EXFUN(b2d,(_Bigint *a , int *e));
|
||||
_Bigint * _EXFUN(Balloc,(struct _reent *p, int k));
|
||||
void _EXFUN(Bfree,(struct _reent *p, _Bigint *v));
|
||||
_Bigint * _EXFUN(multadd,(struct _reent *p, _Bigint *, int, int));
|
||||
_Bigint * _EXFUN(s2b,(struct _reent *, const char*, int, int, __ULong));
|
||||
_Bigint * _EXFUN(i2b,(struct _reent *,int));
|
||||
_Bigint * _EXFUN(mult, (struct _reent *, _Bigint *, _Bigint *));
|
||||
_Bigint * _EXFUN(pow5mult, (struct _reent *, _Bigint *, int k));
|
||||
int _EXFUN(hi0bits,(__ULong));
|
||||
int _EXFUN(lo0bits,(__ULong *));
|
||||
_Bigint * _EXFUN(d2b,(struct _reent *p, double d, int *e, int *bits));
|
||||
_Bigint * _EXFUN(lshift,(struct _reent *p, _Bigint *b, int k));
|
||||
_Bigint * _EXFUN(diff,(struct _reent *p, _Bigint *a, _Bigint *b));
|
||||
int _EXFUN(cmp,(_Bigint *a, _Bigint *b));
|
||||
int _EXFUN(gethex,(struct _reent *p, _CONST char **sp, struct FPI *fpi, Long *exp, _Bigint **bp, int sign));
|
||||
double _EXFUN(ratio,(_Bigint *a, _Bigint *b));
|
||||
__ULong _EXFUN(any_on,(_Bigint *b, int k));
|
||||
void _EXFUN(copybits,(__ULong *c, int n, _Bigint *b));
|
||||
void _EXFUN(hexdig_init,(void));
|
||||
#ifdef INFNAN_CHECK
|
||||
int _EXFUN(hexnan,(_CONST char **sp, struct FPI *fpi, __ULong *x0));
|
||||
#endif
|
||||
|
||||
#define Bcopy(x,y) memcpy((char *)&x->_sign, (char *)&y->_sign, y->_wds*sizeof(__Long) + 2*sizeof(int))
|
||||
|
||||
extern _CONST double tinytens[];
|
||||
extern _CONST double bigtens[];
|
||||
extern _CONST double tens[];
|
||||
extern unsigned char hexdig[];
|
||||
|
||||
|
||||
double _EXFUN(_mprec_log10,(int));
|
||||
36
programs/develop/libraries/newlib/stdlib/rand48.h
Normal file
36
programs/develop/libraries/newlib/stdlib/rand48.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright (c) 1993 Martin Birgmeier
|
||||
* All rights reserved.
|
||||
*
|
||||
* You may redistribute unmodified or modified versions of this source
|
||||
* code provided that the above copyright notice and this and the
|
||||
* following conditions are retained.
|
||||
*
|
||||
* This software is provided ``as is'', and comes with no warranties
|
||||
* of any kind. I shall in no event be liable for anything that happens
|
||||
* to anyone/anything when using this software.
|
||||
*/
|
||||
|
||||
#ifndef _RAND48_H_
|
||||
#define _RAND48_H_
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
extern void _EXFUN(__dorand48,(struct _reent *r, unsigned short[3]));
|
||||
#define __rand48_seed _REENT_RAND48_SEED(r)
|
||||
#define __rand48_mult _REENT_RAND48_MULT(r)
|
||||
#define __rand48_add _REENT_RAND48_ADD(r)
|
||||
|
||||
#if 0
|
||||
/* following values are defined in <sys/reent.h> */
|
||||
#define RAND48_SEED_0 (0x330e)
|
||||
#define RAND48_SEED_1 (0xabcd)
|
||||
#define RAND48_SEED_2 (0x1234)
|
||||
#define RAND48_MULT_0 (0xe66d)
|
||||
#define RAND48_MULT_1 (0xdeec)
|
||||
#define RAND48_MULT_2 (0x0005)
|
||||
#define RAND48_ADD (0x000b)
|
||||
#endif
|
||||
|
||||
#endif /* _RAND48_H_ */
|
||||
22
programs/develop/libraries/newlib/stdlib/realloc.c
Normal file
22
programs/develop/libraries/newlib/stdlib/realloc.c
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifdef MALLOC_PROVIDED
|
||||
int _dummy_calloc = 1;
|
||||
#else
|
||||
/* realloc.c -- a wrapper for realloc_r. */
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <reent.h>
|
||||
#include <stdlib.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
_PTR
|
||||
_DEFUN (realloc, (ap, nbytes),
|
||||
_PTR ap _AND
|
||||
size_t nbytes)
|
||||
{
|
||||
return _realloc_r (_REENT, ap, nbytes);
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif /* MALLOC_PROVIDED */
|
||||
33
programs/develop/libraries/newlib/stdlib/std.h
Normal file
33
programs/develop/libraries/newlib/stdlib/std.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <math.h>
|
||||
#ifndef CYGNUS_NEC
|
||||
#include <ctype.h>
|
||||
#endif
|
||||
|
||||
#define Ise(c) ((c == 'e') || (c == 'E') || (c == 'd') || (c == 'D'))
|
||||
#define Isdigit(c) ((c <= '9') && (c >= '0'))
|
||||
#define Isspace(c) ((c == ' ') || (c == '\t') || (c=='\n') || (c=='\v') \
|
||||
|| (c == '\r') || (c == '\f'))
|
||||
#define Issign(c) ((c == '-') || (c == '+'))
|
||||
#define Val(c) ((c - '0'))
|
||||
|
||||
#define MAXE 308
|
||||
#define MINE (-308)
|
||||
|
||||
/* flags */
|
||||
#define SIGN 0x01
|
||||
#define ESIGN 0x02
|
||||
#define DECP 0x04
|
||||
|
||||
#ifdef _HAVE_STDC
|
||||
int __ten_mul(double *acc, int digit);
|
||||
double __adjust(struct _reent *ptr, double *acc, int dexp, int sign);
|
||||
double __exp10(unsigned x);
|
||||
#else
|
||||
int __ten_mul();
|
||||
double __adjust();
|
||||
double __exp10();
|
||||
#endif
|
||||
1187
programs/develop/libraries/newlib/stdlib/strtod.c
Normal file
1187
programs/develop/libraries/newlib/stdlib/strtod.c
Normal file
File diff suppressed because it is too large
Load Diff
226
programs/develop/libraries/newlib/stdlib/strtol.c
Normal file
226
programs/develop/libraries/newlib/stdlib/strtol.c
Normal file
@@ -0,0 +1,226 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<strtol>>---string to long
|
||||
|
||||
INDEX
|
||||
strtol
|
||||
INDEX
|
||||
_strtol_r
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
long strtol(const char *<[s]>, char **<[ptr]>,int <[base]>);
|
||||
|
||||
long _strtol_r(void *<[reent]>,
|
||||
const char *<[s]>, char **<[ptr]>,int <[base]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
long strtol (<[s]>, <[ptr]>, <[base]>)
|
||||
char *<[s]>;
|
||||
char **<[ptr]>;
|
||||
int <[base]>;
|
||||
|
||||
long _strtol_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
|
||||
char *<[reent]>;
|
||||
char *<[s]>;
|
||||
char **<[ptr]>;
|
||||
int <[base]>;
|
||||
|
||||
DESCRIPTION
|
||||
The function <<strtol>> converts the string <<*<[s]>>> to
|
||||
a <<long>>. First, it breaks down the string into three parts:
|
||||
leading whitespace, which is ignored; a subject string consisting
|
||||
of characters resembling an integer in the radix specified by <[base]>;
|
||||
and a trailing portion consisting of zero or more unparseable characters,
|
||||
and always including the terminating null character. Then, it attempts
|
||||
to convert the subject string into a <<long>> and returns the
|
||||
result.
|
||||
|
||||
If the value of <[base]> is 0, the subject string is expected to look
|
||||
like a normal C integer constant: an optional sign, a possible `<<0x>>'
|
||||
indicating a hexadecimal base, and a number. If <[base]> is between
|
||||
2 and 36, the expected form of the subject is a sequence of letters
|
||||
and digits representing an integer in the radix specified by <[base]>,
|
||||
with an optional plus or minus sign. The letters <<a>>--<<z>> (or,
|
||||
equivalently, <<A>>--<<Z>>) are used to signify values from 10 to 35;
|
||||
only letters whose ascribed values are less than <[base]> are
|
||||
permitted. If <[base]> is 16, a leading <<0x>> is permitted.
|
||||
|
||||
The subject sequence is the longest initial sequence of the input
|
||||
string that has the expected form, starting with the first
|
||||
non-whitespace character. If the string is empty or consists entirely
|
||||
of whitespace, or if the first non-whitespace character is not a
|
||||
permissible letter or digit, the subject string is empty.
|
||||
|
||||
If the subject string is acceptable, and the value of <[base]> is zero,
|
||||
<<strtol>> attempts to determine the radix from the input string. A
|
||||
string with a leading <<0x>> is treated as a hexadecimal value; a string with
|
||||
a leading 0 and no <<x>> is treated as octal; all other strings are
|
||||
treated as decimal. If <[base]> is between 2 and 36, it is used as the
|
||||
conversion radix, as described above. If the subject string begins with
|
||||
a minus sign, the value is negated. Finally, a pointer to the first
|
||||
character past the converted subject string is stored in <[ptr]>, if
|
||||
<[ptr]> is not <<NULL>>.
|
||||
|
||||
If the subject string is empty (or not in acceptable form), no conversion
|
||||
is performed and the value of <[s]> is stored in <[ptr]> (if <[ptr]> is
|
||||
not <<NULL>>).
|
||||
|
||||
The alternate function <<_strtol_r>> is a reentrant version. The
|
||||
extra argument <[reent]> is a pointer to a reentrancy structure.
|
||||
|
||||
RETURNS
|
||||
<<strtol>> returns the converted value, if any. If no conversion was
|
||||
made, 0 is returned.
|
||||
|
||||
<<strtol>> returns <<LONG_MAX>> or <<LONG_MIN>> if the magnitude of
|
||||
the converted value is too large, and sets <<errno>> to <<ERANGE>>.
|
||||
|
||||
PORTABILITY
|
||||
<<strtol>> is ANSI.
|
||||
|
||||
No supporting OS subroutines are required.
|
||||
*/
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <limits.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <reent.h>
|
||||
|
||||
/*
|
||||
* Convert a string to a long integer.
|
||||
*
|
||||
* Ignores `locale' stuff. Assumes that the upper and lower case
|
||||
* alphabets and digits are each contiguous.
|
||||
*/
|
||||
long
|
||||
_DEFUN (_strtol_r, (rptr, nptr, endptr, base),
|
||||
struct _reent *rptr _AND
|
||||
_CONST char *nptr _AND
|
||||
char **endptr _AND
|
||||
int base)
|
||||
{
|
||||
register const unsigned char *s = (const unsigned char *)nptr;
|
||||
register unsigned long acc;
|
||||
register int c;
|
||||
register unsigned long cutoff;
|
||||
register int neg = 0, any, cutlim;
|
||||
|
||||
/*
|
||||
* Skip white space and pick up leading +/- sign if any.
|
||||
* If base is 0, allow 0x for hex and 0 for octal, else
|
||||
* assume decimal; if base is already 16, allow 0x.
|
||||
*/
|
||||
do {
|
||||
c = *s++;
|
||||
} while (isspace(c));
|
||||
if (c == '-') {
|
||||
neg = 1;
|
||||
c = *s++;
|
||||
} else if (c == '+')
|
||||
c = *s++;
|
||||
if ((base == 0 || base == 16) &&
|
||||
c == '0' && (*s == 'x' || *s == 'X')) {
|
||||
c = s[1];
|
||||
s += 2;
|
||||
base = 16;
|
||||
}
|
||||
if (base == 0)
|
||||
base = c == '0' ? 8 : 10;
|
||||
|
||||
/*
|
||||
* Compute the cutoff value between legal numbers and illegal
|
||||
* numbers. That is the largest legal value, divided by the
|
||||
* base. An input number that is greater than this value, if
|
||||
* followed by a legal input character, is too big. One that
|
||||
* is equal to this value may be valid or not; the limit
|
||||
* between valid and invalid numbers is then based on the last
|
||||
* digit. For instance, if the range for longs is
|
||||
* [-2147483648..2147483647] and the input base is 10,
|
||||
* cutoff will be set to 214748364 and cutlim to either
|
||||
* 7 (neg==0) or 8 (neg==1), meaning that if we have accumulated
|
||||
* a value > 214748364, or equal but the next digit is > 7 (or 8),
|
||||
* the number is too big, and we will return a range error.
|
||||
*
|
||||
* Set any if any `digits' consumed; make it negative to indicate
|
||||
* overflow.
|
||||
*/
|
||||
cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
|
||||
cutlim = cutoff % (unsigned long)base;
|
||||
cutoff /= (unsigned long)base;
|
||||
for (acc = 0, any = 0;; c = *s++) {
|
||||
if (isdigit(c))
|
||||
c -= '0';
|
||||
else if (isalpha(c))
|
||||
c -= isupper(c) ? 'A' - 10 : 'a' - 10;
|
||||
else
|
||||
break;
|
||||
if (c >= base)
|
||||
break;
|
||||
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
|
||||
any = -1;
|
||||
else {
|
||||
any = 1;
|
||||
acc *= base;
|
||||
acc += c;
|
||||
}
|
||||
}
|
||||
if (any < 0) {
|
||||
acc = neg ? LONG_MIN : LONG_MAX;
|
||||
rptr->_errno = ERANGE;
|
||||
} else if (neg)
|
||||
acc = -acc;
|
||||
if (endptr != 0)
|
||||
*endptr = (char *) (any ? (char *)s - 1 : nptr);
|
||||
return (acc);
|
||||
}
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
long
|
||||
_DEFUN (strtol, (s, ptr, base),
|
||||
_CONST char *s _AND
|
||||
char **ptr _AND
|
||||
int base)
|
||||
{
|
||||
return _strtol_r (_REENT, s, ptr, base);
|
||||
}
|
||||
|
||||
#endif
|
||||
206
programs/develop/libraries/newlib/stdlib/strtoul.c
Normal file
206
programs/develop/libraries/newlib/stdlib/strtoul.c
Normal file
@@ -0,0 +1,206 @@
|
||||
/*
|
||||
FUNCTION
|
||||
<<strtoul>>---string to unsigned long
|
||||
|
||||
INDEX
|
||||
strtoul
|
||||
INDEX
|
||||
_strtoul_r
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
unsigned long strtoul(const char *<[s]>, char **<[ptr]>,
|
||||
int <[base]>);
|
||||
|
||||
unsigned long _strtoul_r(void *<[reent]>, const char *<[s]>,
|
||||
char **<[ptr]>, int <[base]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
unsigned long strtoul(<[s]>, <[ptr]>, <[base]>)
|
||||
char *<[s]>;
|
||||
char **<[ptr]>;
|
||||
int <[base]>;
|
||||
|
||||
unsigned long _strtoul_r(<[reent]>, <[s]>, <[ptr]>, <[base]>)
|
||||
char *<[reent]>;
|
||||
char *<[s]>;
|
||||
char **<[ptr]>;
|
||||
int <[base]>;
|
||||
|
||||
DESCRIPTION
|
||||
The function <<strtoul>> converts the string <<*<[s]>>> to
|
||||
an <<unsigned long>>. First, it breaks down the string into three parts:
|
||||
leading whitespace, which is ignored; a subject string consisting
|
||||
of the digits meaningful in the radix specified by <[base]>
|
||||
(for example, <<0>> through <<7>> if the value of <[base]> is 8);
|
||||
and a trailing portion consisting of one or more unparseable characters,
|
||||
which always includes the terminating null character. Then, it attempts
|
||||
to convert the subject string into an unsigned long integer, and returns the
|
||||
result.
|
||||
|
||||
If the value of <[base]> is zero, the subject string is expected to look
|
||||
like a normal C integer constant (save that no optional sign is permitted):
|
||||
a possible <<0x>> indicating hexadecimal radix, and a number.
|
||||
If <[base]> is between 2 and 36, the expected form of the subject is a
|
||||
sequence of digits (which may include letters, depending on the
|
||||
base) representing an integer in the radix specified by <[base]>.
|
||||
The letters <<a>>--<<z>> (or <<A>>--<<Z>>) are used as digits valued from
|
||||
10 to 35. If <[base]> is 16, a leading <<0x>> is permitted.
|
||||
|
||||
The subject sequence is the longest initial sequence of the input
|
||||
string that has the expected form, starting with the first
|
||||
non-whitespace character. If the string is empty or consists entirely
|
||||
of whitespace, or if the first non-whitespace character is not a
|
||||
permissible digit, the subject string is empty.
|
||||
|
||||
If the subject string is acceptable, and the value of <[base]> is zero,
|
||||
<<strtoul>> attempts to determine the radix from the input string. A
|
||||
string with a leading <<0x>> is treated as a hexadecimal value; a string with
|
||||
a leading <<0>> and no <<x>> is treated as octal; all other strings are
|
||||
treated as decimal. If <[base]> is between 2 and 36, it is used as the
|
||||
conversion radix, as described above. Finally, a pointer to the first
|
||||
character past the converted subject string is stored in <[ptr]>, if
|
||||
<[ptr]> is not <<NULL>>.
|
||||
|
||||
If the subject string is empty (that is, if <<*>><[s]> does not start
|
||||
with a substring in acceptable form), no conversion
|
||||
is performed and the value of <[s]> is stored in <[ptr]> (if <[ptr]> is
|
||||
not <<NULL>>).
|
||||
|
||||
The alternate function <<_strtoul_r>> is a reentrant version. The
|
||||
extra argument <[reent]> is a pointer to a reentrancy structure.
|
||||
|
||||
|
||||
RETURNS
|
||||
<<strtoul>> returns the converted value, if any. If no conversion was
|
||||
made, <<0>> is returned.
|
||||
|
||||
<<strtoul>> returns <<ULONG_MAX>> if the magnitude of the converted
|
||||
value is too large, and sets <<errno>> to <<ERANGE>>.
|
||||
|
||||
PORTABILITY
|
||||
<<strtoul>> is ANSI.
|
||||
|
||||
<<strtoul>> requires no supporting OS subroutines.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 1990 Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <_ansi.h>
|
||||
#include <limits.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <reent.h>
|
||||
|
||||
/*
|
||||
* Convert a string to an unsigned long integer.
|
||||
*
|
||||
* Ignores `locale' stuff. Assumes that the upper and lower case
|
||||
* alphabets and digits are each contiguous.
|
||||
*/
|
||||
unsigned long
|
||||
_DEFUN (_strtoul_r, (rptr, nptr, endptr, base),
|
||||
struct _reent *rptr _AND
|
||||
_CONST char *nptr _AND
|
||||
char **endptr _AND
|
||||
int base)
|
||||
{
|
||||
register const unsigned char *s = (const unsigned char *)nptr;
|
||||
register unsigned long acc;
|
||||
register int c;
|
||||
register unsigned long cutoff;
|
||||
register int neg = 0, any, cutlim;
|
||||
|
||||
/*
|
||||
* See strtol for comments as to the logic used.
|
||||
*/
|
||||
do {
|
||||
c = *s++;
|
||||
} while (isspace(c));
|
||||
if (c == '-') {
|
||||
neg = 1;
|
||||
c = *s++;
|
||||
} else if (c == '+')
|
||||
c = *s++;
|
||||
if ((base == 0 || base == 16) &&
|
||||
c == '0' && (*s == 'x' || *s == 'X')) {
|
||||
c = s[1];
|
||||
s += 2;
|
||||
base = 16;
|
||||
}
|
||||
if (base == 0)
|
||||
base = c == '0' ? 8 : 10;
|
||||
cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
|
||||
cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
|
||||
for (acc = 0, any = 0;; c = *s++) {
|
||||
if (isdigit(c))
|
||||
c -= '0';
|
||||
else if (isalpha(c))
|
||||
c -= isupper(c) ? 'A' - 10 : 'a' - 10;
|
||||
else
|
||||
break;
|
||||
if (c >= base)
|
||||
break;
|
||||
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
|
||||
any = -1;
|
||||
else {
|
||||
any = 1;
|
||||
acc *= base;
|
||||
acc += c;
|
||||
}
|
||||
}
|
||||
if (any < 0) {
|
||||
acc = ULONG_MAX;
|
||||
rptr->_errno = ERANGE;
|
||||
} else if (neg)
|
||||
acc = -acc;
|
||||
if (endptr != 0)
|
||||
*endptr = (char *) (any ? (char *)s - 1 : nptr);
|
||||
return (acc);
|
||||
}
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
|
||||
unsigned long
|
||||
_DEFUN (strtoul, (s, ptr, base),
|
||||
_CONST char *s _AND
|
||||
char **ptr _AND
|
||||
int base)
|
||||
{
|
||||
return _strtoul_r (_REENT, s, ptr, base);
|
||||
}
|
||||
|
||||
#endif
|
||||
78
programs/develop/libraries/newlib/stdlib/wcrtomb.c
Normal file
78
programs/develop/libraries/newlib/stdlib/wcrtomb.c
Normal file
@@ -0,0 +1,78 @@
|
||||
#include <reent.h>
|
||||
#include <newlib.h>
|
||||
#include <wchar.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include "local.h"
|
||||
|
||||
size_t
|
||||
_DEFUN (_wcrtomb_r, (ptr, s, wc, ps),
|
||||
struct _reent *ptr _AND
|
||||
char *s _AND
|
||||
wchar_t wc _AND
|
||||
mbstate_t *ps)
|
||||
{
|
||||
int retval = 0;
|
||||
char buf[10];
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
if (ps == NULL)
|
||||
{
|
||||
_REENT_CHECK_MISC(ptr);
|
||||
ps = &(_REENT_WCRTOMB_STATE(ptr));
|
||||
}
|
||||
#endif
|
||||
|
||||
if (s == NULL)
|
||||
retval = __wctomb (ptr, buf, L'\0', __locale_charset (), ps);
|
||||
else
|
||||
retval = __wctomb (ptr, s, wc, __locale_charset (), ps);
|
||||
|
||||
if (retval == -1)
|
||||
{
|
||||
ps->__count = 0;
|
||||
ptr->_errno = EILSEQ;
|
||||
return (size_t)(-1);
|
||||
}
|
||||
else
|
||||
return (size_t)retval;
|
||||
}
|
||||
|
||||
#ifndef _REENT_ONLY
|
||||
size_t
|
||||
_DEFUN (wcrtomb, (s, wc, ps),
|
||||
char *s _AND
|
||||
wchar_t wc _AND
|
||||
mbstate_t *ps)
|
||||
{
|
||||
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)
|
||||
return _wcrtomb_r (_REENT, s, wc, ps);
|
||||
#else
|
||||
int retval = 0;
|
||||
char buf[10];
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
if (ps == NULL)
|
||||
{
|
||||
_REENT_CHECK_MISC(_REENT);
|
||||
ps = &(_REENT_WCRTOMB_STATE(_REENT));
|
||||
}
|
||||
#endif
|
||||
|
||||
if (s == NULL)
|
||||
retval = __wctomb (_REENT, buf, L'\0', __locale_charset (), ps);
|
||||
else
|
||||
retval = __wctomb (_REENT, s, wc, __locale_charset (), ps);
|
||||
|
||||
if (retval == -1)
|
||||
{
|
||||
ps->__count = 0;
|
||||
_REENT->_errno = EILSEQ;
|
||||
return (size_t)(-1);
|
||||
}
|
||||
else
|
||||
return (size_t)retval;
|
||||
#endif /* not PREFER_SIZE_OVER_SPEED */
|
||||
}
|
||||
#endif /* !_REENT_ONLY */
|
||||
376
programs/develop/libraries/newlib/stdlib/wctomb_r.c
Normal file
376
programs/develop/libraries/newlib/stdlib/wctomb_r.c
Normal file
@@ -0,0 +1,376 @@
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wchar.h>
|
||||
#include <locale.h>
|
||||
#include "mbctype.h"
|
||||
#include "local.h"
|
||||
|
||||
int (*__wctomb) (struct _reent *, char *, wchar_t, const char *charset,
|
||||
mbstate_t *)
|
||||
#ifdef __CYGWIN__
|
||||
/* Cygwin starts up in UTF-8 mode. */
|
||||
= __utf8_wctomb;
|
||||
#else
|
||||
= __ascii_wctomb;
|
||||
#endif
|
||||
|
||||
int
|
||||
_DEFUN (_wctomb_r, (r, s, wchar, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
return __wctomb (r, s, _wchar, __locale_charset (), state);
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__ascii_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
/* Avoids compiler warnings about comparisons that are always false
|
||||
due to limited range when sizeof(wchar_t) is 2 but sizeof(wint_t)
|
||||
is 4, as is the case on cygwin. */
|
||||
wint_t wchar = _wchar;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
#ifdef __CYGWIN__
|
||||
if ((size_t)wchar >= 0x80)
|
||||
#else
|
||||
if ((size_t)wchar >= 0x100)
|
||||
#endif
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
*s = (char) wchar;
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifdef _MB_CAPABLE
|
||||
/* for some conversions, we use the __count field as a place to store a state value */
|
||||
#define __state __count
|
||||
|
||||
int
|
||||
_DEFUN (__utf8_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
int ret = 0;
|
||||
|
||||
if (s == NULL)
|
||||
return 0; /* UTF-8 encoding is not state-dependent */
|
||||
|
||||
if (sizeof (wchar_t) == 2 && state->__count == -4
|
||||
&& (wchar < 0xdc00 || wchar >= 0xdfff))
|
||||
{
|
||||
/* There's a leftover lone high surrogate. Write out the CESU-8 value
|
||||
of the surrogate and proceed to convert the given character. Note
|
||||
to return extra 3 bytes. */
|
||||
wchar_t tmp;
|
||||
tmp = (state->__value.__wchb[0] << 16 | state->__value.__wchb[1] << 8)
|
||||
- 0x10000 >> 10 | 0xd80d;
|
||||
*s++ = 0xe0 | ((tmp & 0xf000) >> 12);
|
||||
*s++ = 0x80 | ((tmp & 0xfc0) >> 6);
|
||||
*s++ = 0x80 | (tmp & 0x3f);
|
||||
state->__count = 0;
|
||||
ret = 3;
|
||||
}
|
||||
if (wchar <= 0x7f)
|
||||
{
|
||||
*s = wchar;
|
||||
return ret + 1;
|
||||
}
|
||||
if (wchar >= 0x80 && wchar <= 0x7ff)
|
||||
{
|
||||
*s++ = 0xc0 | ((wchar & 0x7c0) >> 6);
|
||||
*s = 0x80 | (wchar & 0x3f);
|
||||
return ret + 2;
|
||||
}
|
||||
if (wchar >= 0x800 && wchar <= 0xffff)
|
||||
{
|
||||
/* No UTF-16 surrogate handling in UCS-4 */
|
||||
if (sizeof (wchar_t) == 2 && wchar >= 0xd800 && wchar <= 0xdfff)
|
||||
{
|
||||
wint_t tmp;
|
||||
if (wchar <= 0xdbff)
|
||||
{
|
||||
/* First half of a surrogate pair. Store the state and
|
||||
return ret + 0. */
|
||||
tmp = ((wchar & 0x3ff) << 10) + 0x10000;
|
||||
state->__value.__wchb[0] = (tmp >> 16) & 0xff;
|
||||
state->__value.__wchb[1] = (tmp >> 8) & 0xff;
|
||||
state->__count = -4;
|
||||
*s = (0xf0 | ((tmp & 0x1c0000) >> 18));
|
||||
return ret;
|
||||
}
|
||||
if (state->__count == -4)
|
||||
{
|
||||
/* Second half of a surrogate pair. Reconstruct the full
|
||||
Unicode value and return the trailing three bytes of the
|
||||
UTF-8 character. */
|
||||
tmp = (state->__value.__wchb[0] << 16)
|
||||
| (state->__value.__wchb[1] << 8)
|
||||
| (wchar & 0x3ff);
|
||||
state->__count = 0;
|
||||
*s++ = 0xf0 | ((tmp & 0x1c0000) >> 18);
|
||||
*s++ = 0x80 | ((tmp & 0x3f000) >> 12);
|
||||
*s++ = 0x80 | ((tmp & 0xfc0) >> 6);
|
||||
*s = 0x80 | (tmp & 0x3f);
|
||||
return 4;
|
||||
}
|
||||
/* Otherwise translate into CESU-8 value. */
|
||||
}
|
||||
*s++ = 0xe0 | ((wchar & 0xf000) >> 12);
|
||||
*s++ = 0x80 | ((wchar & 0xfc0) >> 6);
|
||||
*s = 0x80 | (wchar & 0x3f);
|
||||
return ret + 3;
|
||||
}
|
||||
if (wchar >= 0x10000 && wchar <= 0x10ffff)
|
||||
{
|
||||
*s++ = 0xf0 | ((wchar & 0x1c0000) >> 18);
|
||||
*s++ = 0x80 | ((wchar & 0x3f000) >> 12);
|
||||
*s++ = 0x80 | ((wchar & 0xfc0) >> 6);
|
||||
*s = 0x80 | (wchar & 0x3f);
|
||||
return 4;
|
||||
}
|
||||
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* Cygwin defines its own doublebyte charset conversion functions
|
||||
because the underlying OS requires wchar_t == UTF-16. */
|
||||
#ifndef __CYGWIN__
|
||||
int
|
||||
_DEFUN (__sjis_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
|
||||
unsigned char char2 = (unsigned char)wchar;
|
||||
unsigned char char1 = (unsigned char)(wchar >> 8);
|
||||
|
||||
if (s == NULL)
|
||||
return 0; /* not state-dependent */
|
||||
|
||||
if (char1 != 0x00)
|
||||
{
|
||||
/* first byte is non-zero..validate multi-byte char */
|
||||
if (_issjis1(char1) && _issjis2(char2))
|
||||
{
|
||||
*s++ = (char)char1;
|
||||
*s = (char)char2;
|
||||
return 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
*s = (char) wchar;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__eucjp_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
unsigned char char2 = (unsigned char)wchar;
|
||||
unsigned char char1 = (unsigned char)(wchar >> 8);
|
||||
|
||||
if (s == NULL)
|
||||
return 0; /* not state-dependent */
|
||||
|
||||
if (char1 != 0x00)
|
||||
{
|
||||
/* first byte is non-zero..validate multi-byte char */
|
||||
if (_iseucjp1 (char1) && _iseucjp2 (char2))
|
||||
{
|
||||
*s++ = (char)char1;
|
||||
*s = (char)char2;
|
||||
return 2;
|
||||
}
|
||||
else if (_iseucjp2 (char1) && _iseucjp2 (char2 | 0x80))
|
||||
{
|
||||
*s++ = (char)0x8f;
|
||||
*s++ = (char)char1;
|
||||
*s = (char)(char2 | 0x80);
|
||||
return 3;
|
||||
}
|
||||
else
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
*s = (char) wchar;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int
|
||||
_DEFUN (__jis_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
int cnt = 0;
|
||||
unsigned char char2 = (unsigned char)wchar;
|
||||
unsigned char char1 = (unsigned char)(wchar >> 8);
|
||||
|
||||
if (s == NULL)
|
||||
return 1; /* state-dependent */
|
||||
|
||||
if (char1 != 0x00)
|
||||
{
|
||||
/* first byte is non-zero..validate multi-byte char */
|
||||
if (_isjis (char1) && _isjis (char2))
|
||||
{
|
||||
if (state->__state == 0)
|
||||
{
|
||||
/* must switch from ASCII to JIS state */
|
||||
state->__state = 1;
|
||||
*s++ = ESC_CHAR;
|
||||
*s++ = '$';
|
||||
*s++ = 'B';
|
||||
cnt = 3;
|
||||
}
|
||||
*s++ = (char)char1;
|
||||
*s = (char)char2;
|
||||
return cnt + 2;
|
||||
}
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
if (state->__state != 0)
|
||||
{
|
||||
/* must switch from JIS to ASCII state */
|
||||
state->__state = 0;
|
||||
*s++ = ESC_CHAR;
|
||||
*s++ = '(';
|
||||
*s++ = 'B';
|
||||
cnt = 3;
|
||||
}
|
||||
*s = (char)char2;
|
||||
return cnt + 1;
|
||||
}
|
||||
#endif /* !__CYGWIN__ */
|
||||
|
||||
#ifdef _MB_EXTENDED_CHARSETS_ISO
|
||||
int
|
||||
_DEFUN (__iso_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
/* wchars <= 0x9f translate to all ISO charsets directly. */
|
||||
if (wchar >= 0xa0)
|
||||
{
|
||||
int iso_idx = __iso_8859_index (charset + 9);
|
||||
if (iso_idx >= 0)
|
||||
{
|
||||
unsigned char mb;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
for (mb = 0; mb < 0x60; ++mb)
|
||||
if (__iso_8859_conv[iso_idx][mb] == wchar)
|
||||
{
|
||||
*s = (char) (mb + 0xa0);
|
||||
return 1;
|
||||
}
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if ((size_t)wchar >= 0x100)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
*s = (char) wchar;
|
||||
return 1;
|
||||
}
|
||||
#endif /* _MB_EXTENDED_CHARSETS_ISO */
|
||||
|
||||
#ifdef _MB_EXTENDED_CHARSETS_WINDOWS
|
||||
int
|
||||
_DEFUN (__cp_wctomb, (r, s, wchar, charset, state),
|
||||
struct _reent *r _AND
|
||||
char *s _AND
|
||||
wchar_t _wchar _AND
|
||||
const char *charset _AND
|
||||
mbstate_t *state)
|
||||
{
|
||||
wint_t wchar = _wchar;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
if (wchar >= 0x80)
|
||||
{
|
||||
int cp_idx = __cp_index (charset + 2);
|
||||
if (cp_idx >= 0)
|
||||
{
|
||||
unsigned char mb;
|
||||
|
||||
if (s == NULL)
|
||||
return 0;
|
||||
|
||||
for (mb = 0; mb < 0x80; ++mb)
|
||||
if (__cp_conv[cp_idx][mb] == wchar)
|
||||
{
|
||||
*s = (char) (mb + 0x80);
|
||||
return 1;
|
||||
}
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if ((size_t)wchar >= 0x100)
|
||||
{
|
||||
r->_errno = EILSEQ;
|
||||
return -1;
|
||||
}
|
||||
|
||||
*s = (char) wchar;
|
||||
return 1;
|
||||
}
|
||||
#endif /* _MB_EXTENDED_CHARSETS_WINDOWS */
|
||||
#endif /* _MB_CAPABLE */
|
||||
Reference in New Issue
Block a user