1996-08-31 08:13:23 +08:00
|
|
|
/* s_cbrtl.c -- long double version of s_cbrt.c.
|
|
|
|
* Conversion to long double by Ulrich Drepper,
|
|
|
|
* Cygnus Support, drepper@cygnus.com.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ====================================================
|
|
|
|
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
|
|
* Permission to use, copy, modify, and distribute this
|
|
|
|
* software is freely granted, provided that this notice
|
|
|
|
* is preserved.
|
|
|
|
* ====================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBM_SCCS) && !defined(lint)
|
|
|
|
static char rcsid[] = "$NetBSD: $";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "math.h"
|
|
|
|
#include "math_private.h"
|
|
|
|
|
|
|
|
/* cbrtl(x)
|
|
|
|
* Return cube root of x
|
|
|
|
*/
|
|
|
|
#ifdef __STDC__
|
|
|
|
static const u_int32_t
|
|
|
|
#else
|
|
|
|
static u_int32_t
|
|
|
|
#endif
|
|
|
|
B1_EXP = 10921, /* = Int(B1) */
|
|
|
|
B1_MANT = 0x7bc4b064, /* = Int(1.0-0.03306235651)*2**31 */
|
|
|
|
|
|
|
|
B2_EXP = 10900,
|
|
|
|
B2_MANT = 0x7bc4b064; /* = Int(1.0-0.03306235651)*2**31 */
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
static const long double
|
|
|
|
#else
|
|
|
|
static long double
|
|
|
|
#endif
|
|
|
|
C = 5.42857142857142815906e-01L, /* 19/35 */
|
|
|
|
D = -7.05306122448979611050e-01L, /* -864/1225 */
|
|
|
|
E = 1.41428571428571436819e+00L, /* 99/70 */
|
|
|
|
F = 1.60714285714285720630e+00L, /* 45/28 */
|
|
|
|
G = 3.57142857142857150787e-01L; /* 5/14 */
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
long double __cbrtl(long double x)
|
|
|
|
#else
|
|
|
|
long double __cbrtl(x)
|
|
|
|
long double x;
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
long double r,s,t=0.0,w;
|
|
|
|
u_int32_t sign, se, x0, x1;
|
|
|
|
|
|
|
|
GET_LDOUBLE_WORDS(se,x0,x1,x);
|
|
|
|
sign=se&0x8000; /* sign= sign(x) */
|
|
|
|
se ^= sign;
|
|
|
|
if(se==0x7fff) return(x+x); /* cbrt(NaN,INF) is itself */
|
|
|
|
if((se|x0|x1)==0)
|
|
|
|
return(x); /* cbrt(0) is itself */
|
|
|
|
|
|
|
|
SET_LDOUBLE_EXP(x,se); /* x <- |x| */
|
|
|
|
|
|
|
|
/* XXX I don't know whether the numbers for correct are correct. The
|
|
|
|
precalculation is extended from 20 bits to 32 bits. This hopefully
|
|
|
|
gives us the needed bits to get us still along with one iteration
|
|
|
|
step. */
|
|
|
|
|
|
|
|
/* rough cbrt to 5 bits */
|
|
|
|
if(se==0) /* subnormal number */
|
|
|
|
{
|
|
|
|
u_int64_t xxl;
|
|
|
|
u_int32_t set,t0,t1;
|
|
|
|
SET_LDOUBLE_EXP(t,0x4035); /* set t= 2**54 */
|
|
|
|
SET_LDOUBLE_MSW(t,0x80000000);
|
|
|
|
t*=x;
|
|
|
|
GET_LDOUBLE_WORDS(set,t0,t1,t);
|
|
|
|
xxl = ((u_int64_t) set) << 32 | t0;
|
|
|
|
xxl /= 3;
|
|
|
|
xxl += B2_EXP << 16 | B2_MANT;
|
|
|
|
t0 = xxl & 0xffffffffu;
|
|
|
|
set = xxl >> 32;
|
|
|
|
SET_LDOUBLE_WORDS(t,set,t0,t1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u_int64_t xxl = ((u_int64_t) se) << 32 | x0;
|
|
|
|
xxl /= 3;
|
update from main archive 970225
1997-02-24 23:05 Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>
* malloc/malloc.c (malloc_get_state): New function.
Saves global malloc state to an opaque data structure which
is dynamically allocated in the heap.
* malloc/malloc.c (malloc_set_state): New function.
Restore previously obtained state.
* malloc/malloc.h: Add declaration of malloc_get_state()
and malloc_set_state().
1997-02-24 23:27 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/libm-ieee754/s_cbrtl.c: Shift B1_EXP value to right
position.
1997-02-24 17:38 Ulrich Drepper <drepper@cygnus.com>
* misc/error.c: Make error and error_at_line weak aliases of
__error and __error_at_line respectively.
Suggested by David Mosberger-Tang <davidm@AZStarNet.COM>.
* sysdeps/unix/sysv/linux/i386/socket.S: Update copyright.
1997-02-22 11:30 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* elf/ldd.bash.in: Run the program directly, not as argument
to the dynamic linker, if it contains an interpreter segment.
* elf/ldd.sh.in: Likewise.
* elf/rtld.c (dl_main): In verify mode check whether the dynamic
object contains an interpreter segment and exit with 2 if not.
1997-02-23 01:23 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makefile (distribute): Remove nsswitch.h, netgroup.h, mcheck.h
and xlocale.h. Make-dist adds them automagically.
1997-02-22 12:25 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* locale/C-time.c (_nl_C_LC_TIME): Add missing entry for
time-era-num-entries.
1997-02-06 13:49 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* rellns-sh: No need to check for existance of first parameter.
1997-02-24 15:20 Jonathan T. Agnew <jtagnew@amherst.edu>
* glibcbug.in: Don't mention destination on MAIL_AGENT command line
to avoid duplicate mail.
1997-02-24 03:51 Ulrich Drepper <drepper@cygnus.com>
* Makefile (distribute): Add isomac.c.
(tests): Run isomac test.
* features.h (__USE_ISOC9X): New macro.
* catgets/catgets.c: Don't use global variable `optind'. Instead
use result computed by argp_parse.
* db/makedb: Likewise.
* locale/programs/locale.c: Likewise.
* locale/programs/localedef.c: Likewise.
* libio/stdio.h: Rewrite. Make it more readable and add comments.
* libio/clearerr.c: Remove clearerr_locked alias.
* libio/feof.c: Remove feof_locked alias.
* libio/ferror.c: Remove feof_locked alias.
* libio/fileno.c: Remove fileno_locked alias.
* libio/fputc.c: Remove fputc_locked alias.
* libio/getc.c: Remove getc_locked alias.
* libio/getchar.c: Remove getchar_locked alias.
* libio/iofflush.c: Remove fflush_locked alias.
* libio/putc.c: Remove putc_locked alias.
* libio/putc.c: Remove putchar_locked alias.
* stdio-common/printf_fp.c: When number is inifinity print INF
or inf depending on case of specifier. Same for NaN where NAN
or nan is printed. Specified in ISO C 9X.
* misc/sys/cdefs.h (__restrict): Define to empty string for now.
* stdio/stdio.h: Add __restrict to prototypes where necessary.
* libio/stdio.h: Likewise.
* stdlib/stdlib.h: Likewise.
* string/string.h: Likewise.
* time/time.h: Likewise.
* wcsmbs/wchar.h: Likewise.
* stdlib/strtod.c: Change to recognize INF, INFINITY, NAN, and
NAN(...).
* sysdeps/ieee754/huge_val.h: Define HUGE_VALF and HUGE_VALL instead
of HUGE_VALf and HUGE_VALL.
* stdlib/strtof.c (FLOAT_HUGE_VAL): Use standard name HUGE_VALF
instead of HUGE_VALf.
* wcsmbs/wcstof.c: Likewise.
* stdlib/strtold.c (FLOAT_HUGE_VAL): Use standard name HUGE_VALL
instead of HUGE_VALl.
* wcsmbs/wcstold.c: Likewise.
* sysdeps/posix/gai_strerror.c: Use size_t for counter variable to
avoid warning.
* wcsmbs/Makefile (routines): Add wcscasecmp and wcsncase.
* wcsmbs/wchar.h: Add prototypes for wcscasecmp and wcsncase.
* wcsmbs/wcscasecmp.c: New file.
* wcsmbs/wcsncase.c: New file.
* stdlib/strtol.c: Define wide character quad word functions as
wcstoll and wcstoull and normal versions as strtoll and strtoull.
* wcsmbs/wchar.h: Add prototypes for wcstoll and wcstoull.
* wcsmbs/wcstoq: Renamed to wcstoll.c.
* wcsmbs/wcstouq: Renamed to wcstoull.c.
* wcsmbs/wcstoll.c: Renamed from wcstoq.c. Make wcstoq a weak
alias of wcstoll.
* wcsmbs/wcstoull.c: Renamed from wcstouq.c. Make wcstouq a weak
alias of wcstoull.
* wcsmbs/Makefile (routines): Replace wcstoq and wcstouq by
wcstoll and wcstoull respectively.
* stdlib/strtoq.c: Rename to strtoll.c.
* stdlib/strtouq.c: Rename to strtoull.c.
* stdlib/strtoll.c: Renamed from strtoq.c. Make strtoq a weak
alias of strtoll.
* stdlib/strtoll.c: Renamed from strtouq.c. Make strtouq a weak
alias of strtoull.
* stdlib/Makefile (routines): Replace strtoq and strtouq by
strtoll and strtoull respectively.
* stdio-common/vfscanf.c: Don't use __strtoq_internal and
__strtouq_internal but instead __strtoll_internal and
__strtoull_internal respectively.
* stdlib/stdlib.h (strtoq): Use __internal_strtoll in inline version.
(strtouq): Similar with __internal_strtoull.
* wcsmbs/wchar.h (wcstoq): Use __internal_wcstoll in inline version.
(wcstouq): Similar with __internal_wcstoull.
1997-02-23 04:38 Ulrich Drepper <drepper@cygnus.com>
* stdlib/strtol.c (STRTOL): It is not illegal to parse a minus
sign in the strtouXX functions. The results gets simply negated.
* stdio-common/tstscanf.c: Add testcase for above case.
* stdlib/tst-strtol.c: Correct tests.
* manual/stdio-fp.c: New file. Generate output for example program
in stdio.texi.
* stdio-common/Makefile (routines): Add printf_fphex.
* stdio-common/vfprintf.c: Add handling of %a and %A specifier.
* stdio-common/printf_fphex.c: New file. Implement %a and %A
specifier.
1997-02-22 03:01 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/timebits.h (CLK_TCK): Don't defined if
__STRICT_ANSI__.
* math/math.h: Prevent definition of struct exception when using
C++.
1997-02-22 01:45 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/syscalls.list: Dup takes only one argument.
Reported by Greg McGary.
1997-02-21 00:22 Miles Bader <miles@gnu.ai.mit.edu>
1997-02-20 01:28 Miles Bader <miles@gnu.ai.mit.edu>
1997-02-19 13:56 Miles Bader <miles@gnu.ai.mit.edu>
1997-02-18 15:39 Miles Bader <miles@gnu.ai.mit.edu>
1997-02-17 10:58 Miles Bader <miles@gnu.ai.mit.edu>
1997-02-15 10:23 Miles Bader <miles@gnu.ai.mit.edu>
(mutex_lock, mutex_unlock, mutex_trylock): Defined in terms of
__mutex_*.
(mutex_t): Type removed & replaced by new macro.
(tsd_key_t): Typedef to int instead of pthread_key_t.
(tsd_key_create, tsd_setspecific, tsd_getspecific): New macros.
(__pthread_initialize): New macro, work around assumption of pthreads.
* sysdeps/mach/hurd/i386/init-first.c (__libc_argv, __libc_argc):
__hurd_sigthread_stack_end, __hurd_sigthread_stack_variables,
__hurd_threadvar_max, __hurd_threadvar_stack_offset,
__hurd_threadvar_stack_mask): Variables removed.
1997-02-14 14:07 Miles Bader <miles@gnu.ai.mit.edu>
* hurd/hurd.h (_hurd_pids_changed_stamp, _hurd_pids_changed_sync):
1997-02-24 17:06 Geoffrey Keating <geoffk@discus.anu.edu.au>
* sysdeps/unix/sysv/linux/accept.S (NARGS): Describe number of
arguments taken, for sysdeps/unix/sysv/linux/powerpc/socket.S.
* sysdeps/unix/sysv/linux/bind.S: Likewise.
* sysdeps/unix/sysv/linux/connect.S: Likewise.
* sysdeps/unix/sysv/linux/getpeername.S: Likewise.
* sysdeps/unix/sysv/linux/getsockname.S: Likewise.
* sysdeps/unix/sysv/linux/getsockopt.S: Likewise.
* sysdeps/unix/sysv/linux/listen.S: Likewise.
* sysdeps/unix/sysv/linux/recv.S: Likewise.
* sysdeps/unix/sysv/linux/recvfrom.S: Likewise.
* sysdeps/unix/sysv/linux/recvmsg.S: Likewise.
* sysdeps/unix/sysv/linux/send.S: Likewise.
* sysdeps/unix/sysv/linux/sendmsg.S: Likewise.
* sysdeps/unix/sysv/linux/sendto.S: Likewise.
* sysdeps/unix/sysv/linux/setsockopt.S: Likewise.
* sysdeps/unix/sysv/linux/shutdown.S: Likewise.
* sysdeps/unix/sysv/linux/socketpair.S: Likewise.
1997-02-15 04:51 Ulrich Drepper <drepper@cygnus.com>
1997-02-25 13:18:05 +08:00
|
|
|
xxl += ((u_int64_t) B1_EXP) << 32 | B1_MANT;
|
1996-08-31 08:13:23 +08:00
|
|
|
SET_LDOUBLE_MSW(t,xxl&0xffffffffu);
|
|
|
|
xxl >>= 32;
|
|
|
|
SET_LDOUBLE_EXP(t,xxl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* new cbrt to 23 bits, may be implemented in single precision */
|
|
|
|
r=t*t/x;
|
|
|
|
s=C+r*t;
|
|
|
|
t*=G+F/(s+E+D/s);
|
|
|
|
|
|
|
|
/* chopped to 32 bits and make it larger than cbrt(x) */
|
|
|
|
GET_LDOUBLE_WORDS(se,x0,x1,t);
|
|
|
|
SET_LDOUBLE_WORDS(t,se,x0+1,0);
|
|
|
|
|
|
|
|
|
|
|
|
/* one step newton iteration to 53 bits with error less than 0.667 ulps */
|
|
|
|
s=t*t; /* t*t is exact */
|
|
|
|
r=x/s;
|
|
|
|
w=t+t;
|
|
|
|
r=(r-t)/(w+r); /* r-s is exact */
|
|
|
|
t=t+t*r;
|
|
|
|
|
|
|
|
/* retore the sign bit */
|
|
|
|
GET_LDOUBLE_EXP(se,t);
|
|
|
|
SET_LDOUBLE_EXP(t,se|sign);
|
|
|
|
return(t);
|
|
|
|
}
|
|
|
|
weak_alias (__cbrtl, cbrtl)
|