Remove matherr, and SVID and X/Open math library configurations

Default math library configuration is now IEEE
This commit is contained in:
Jozef Lawrynowicz 2018-12-06 16:14:01 +00:00 committed by Corinna Vinschen
parent 1f10a00ba7
commit b14a879d85
90 changed files with 433 additions and 2350 deletions

View File

@ -568,41 +568,6 @@ extern int *__signgam (void);
#define __signgam_r(ptr) _REENT_SIGNGAM(ptr) #define __signgam_r(ptr) _REENT_SIGNGAM(ptr)
#endif /* __MISC_VISIBLE || __XSI_VISIBLE */ #endif /* __MISC_VISIBLE || __XSI_VISIBLE */
#if __SVID_VISIBLE
/* The exception structure passed to the matherr routine. */
/* We have a problem when using C++ since `exception' is a reserved
name in C++. */
#ifdef __cplusplus
struct __exception
#else
struct exception
#endif
{
int type;
char *name;
double arg1;
double arg2;
double retval;
int err;
};
#ifdef __cplusplus
extern int matherr (struct __exception *e);
#else
extern int matherr (struct exception *e);
#endif
/* Values for the type field of struct exception. */
#define DOMAIN 1
#define SING 2
#define OVERFLOW 3
#define UNDERFLOW 4
#define TLOSS 5
#define PLOSS 6
#endif /* __SVID_VISIBLE */
/* Useful constants. */ /* Useful constants. */
#if __BSD_VISIBLE || __XSI_VISIBLE #if __BSD_VISIBLE || __XSI_VISIBLE
@ -642,8 +607,6 @@ extern int matherr (struct exception *e);
enum __fdlibm_version enum __fdlibm_version
{ {
__fdlibm_ieee = -1, __fdlibm_ieee = -1,
__fdlibm_svid,
__fdlibm_xopen,
__fdlibm_posix __fdlibm_posix
}; };
@ -653,8 +616,6 @@ enum __fdlibm_version
extern __IMPORT _LIB_VERSION_TYPE _LIB_VERSION; extern __IMPORT _LIB_VERSION_TYPE _LIB_VERSION;
#define _IEEE_ __fdlibm_ieee #define _IEEE_ __fdlibm_ieee
#define _SVID_ __fdlibm_svid
#define _XOPEN_ __fdlibm_xopen
#define _POSIX_ __fdlibm_posix #define _POSIX_ __fdlibm_posix
#endif /* __BSD_VISIBLE */ #endif /* __BSD_VISIBLE */

View File

@ -35,7 +35,7 @@ double x;
The library has an entry @code{fast_sin} which uses the machine The library has an entry @code{fast_sin} which uses the machine
instruction @code{fsin.l} to perform the operation. Note that the instruction @code{fsin.l} to perform the operation. Note that the
built-in instructions cannot call @code{matherr} or set @code{errno} built-in instructions cannot set @code{errno}
in the same way that the C coded functions do. Refer to a V70 in the same way that the C coded functions do. Refer to a V70
instruction manual to see how errors are generated and handled. instruction manual to see how errors are generated and handled.

View File

@ -173,7 +173,6 @@ load math/log10.c
load math/log1p.c load math/log1p.c
load math/log2.c load math/log2.c
load math/log__L.c load math/log__L.c
load math/matherr.c
load math/modf.c load math/modf.c
load math/pow.c load math/pow.c
load math/scalb.c load math/scalb.c

View File

@ -8,7 +8,7 @@ src = s_finite.c s_copysign.c s_modf.c s_scalbn.c \
s_cbrt.c s_exp10.c s_expm1.c s_ilogb.c \ s_cbrt.c s_exp10.c s_expm1.c s_ilogb.c \
s_infinity.c s_isinf.c s_isinfd.c s_isnan.c s_isnand.c \ s_infinity.c s_isinf.c s_isinfd.c s_isnan.c s_isnand.c \
s_log1p.c s_nan.c s_nextafter.c s_pow10.c \ s_log1p.c s_nan.c s_nextafter.c s_pow10.c \
s_rint.c s_logb.c s_log2.c s_matherr.c s_lib_ver.c \ s_rint.c s_logb.c s_log2.c s_lib_ver.c \
s_fdim.c s_fma.c s_fmax.c s_fmin.c s_fpclassify.c \ s_fdim.c s_fma.c s_fmax.c s_fmin.c s_fpclassify.c \
s_lrint.c s_llrint.c \ s_lrint.c s_llrint.c \
s_lround.c s_llround.c s_nearbyint.c s_remquo.c s_round.c s_scalbln.c \ s_lround.c s_llround.c s_nearbyint.c s_remquo.c s_round.c s_scalbln.c \
@ -62,7 +62,7 @@ endif # USE_LIBTOOL
include $(srcdir)/../../Makefile.shared include $(srcdir)/../../Makefile.shared
CHEWOUT_FILES = s_cbrt.def s_copysign.def s_exp10.def s_expm1.def s_ilogb.def \ CHEWOUT_FILES = s_cbrt.def s_copysign.def s_exp10.def s_expm1.def s_ilogb.def \
s_infinity.def s_isnan.def s_log1p.def s_matherr.def s_modf.def \ s_infinity.def s_isnan.def s_log1p.def s_modf.def \
s_nan.def s_nextafter.def s_pow10.def s_scalbn.def \ s_nan.def s_nextafter.def s_pow10.def s_scalbn.def \
s_fdim.def s_fma.def s_fmax.def s_fmin.def \ s_fdim.def s_fma.def s_fmax.def s_fmin.def \
s_logb.def s_log2.def s_lrint.def s_lround.def s_nearbyint.def \ s_logb.def s_log2.def s_lrint.def s_lround.def s_nearbyint.def \

View File

@ -85,20 +85,19 @@ am__objects_1 = lib_a-s_finite.$(OBJEXT) lib_a-s_copysign.$(OBJEXT) \
lib_a-s_nan.$(OBJEXT) lib_a-s_nextafter.$(OBJEXT) \ lib_a-s_nan.$(OBJEXT) lib_a-s_nextafter.$(OBJEXT) \
lib_a-s_pow10.$(OBJEXT) lib_a-s_rint.$(OBJEXT) \ lib_a-s_pow10.$(OBJEXT) lib_a-s_rint.$(OBJEXT) \
lib_a-s_logb.$(OBJEXT) lib_a-s_log2.$(OBJEXT) \ lib_a-s_logb.$(OBJEXT) lib_a-s_log2.$(OBJEXT) \
lib_a-s_matherr.$(OBJEXT) lib_a-s_lib_ver.$(OBJEXT) \ lib_a-s_lib_ver.$(OBJEXT) lib_a-s_fdim.$(OBJEXT) \
lib_a-s_fdim.$(OBJEXT) lib_a-s_fma.$(OBJEXT) \ lib_a-s_fma.$(OBJEXT) lib_a-s_fmax.$(OBJEXT) \
lib_a-s_fmax.$(OBJEXT) lib_a-s_fmin.$(OBJEXT) \ lib_a-s_fmin.$(OBJEXT) lib_a-s_fpclassify.$(OBJEXT) \
lib_a-s_fpclassify.$(OBJEXT) lib_a-s_lrint.$(OBJEXT) \ lib_a-s_lrint.$(OBJEXT) lib_a-s_llrint.$(OBJEXT) \
lib_a-s_llrint.$(OBJEXT) lib_a-s_lround.$(OBJEXT) \ lib_a-s_lround.$(OBJEXT) lib_a-s_llround.$(OBJEXT) \
lib_a-s_llround.$(OBJEXT) lib_a-s_nearbyint.$(OBJEXT) \ lib_a-s_nearbyint.$(OBJEXT) lib_a-s_remquo.$(OBJEXT) \
lib_a-s_remquo.$(OBJEXT) lib_a-s_round.$(OBJEXT) \ lib_a-s_round.$(OBJEXT) lib_a-s_scalbln.$(OBJEXT) \
lib_a-s_scalbln.$(OBJEXT) lib_a-s_signbit.$(OBJEXT) \ lib_a-s_signbit.$(OBJEXT) lib_a-s_trunc.$(OBJEXT) \
lib_a-s_trunc.$(OBJEXT) lib_a-exp.$(OBJEXT) \ lib_a-exp.$(OBJEXT) lib_a-exp2.$(OBJEXT) \
lib_a-exp2.$(OBJEXT) lib_a-exp_data.$(OBJEXT) \ lib_a-exp_data.$(OBJEXT) lib_a-math_err.$(OBJEXT) \
lib_a-math_err.$(OBJEXT) lib_a-log.$(OBJEXT) \ lib_a-log.$(OBJEXT) lib_a-log_data.$(OBJEXT) \
lib_a-log_data.$(OBJEXT) lib_a-log2.$(OBJEXT) \ lib_a-log2.$(OBJEXT) lib_a-log2_data.$(OBJEXT) \
lib_a-log2_data.$(OBJEXT) lib_a-pow.$(OBJEXT) \ lib_a-pow.$(OBJEXT) lib_a-pow_log_data.$(OBJEXT)
lib_a-pow_log_data.$(OBJEXT)
am__objects_2 = lib_a-sf_finite.$(OBJEXT) lib_a-sf_copysign.$(OBJEXT) \ am__objects_2 = lib_a-sf_finite.$(OBJEXT) lib_a-sf_copysign.$(OBJEXT) \
lib_a-sf_modf.$(OBJEXT) lib_a-sf_scalbn.$(OBJEXT) \ lib_a-sf_modf.$(OBJEXT) lib_a-sf_scalbn.$(OBJEXT) \
lib_a-sf_cbrt.$(OBJEXT) lib_a-sf_exp10.$(OBJEXT) \ lib_a-sf_cbrt.$(OBJEXT) lib_a-sf_exp10.$(OBJEXT) \
@ -164,9 +163,9 @@ am__objects_5 = s_finite.lo s_copysign.lo s_modf.lo s_scalbn.lo \
s_cbrt.lo s_exp10.lo s_expm1.lo s_ilogb.lo s_infinity.lo \ s_cbrt.lo s_exp10.lo s_expm1.lo s_ilogb.lo s_infinity.lo \
s_isinf.lo s_isinfd.lo s_isnan.lo s_isnand.lo s_log1p.lo \ s_isinf.lo s_isinfd.lo s_isnan.lo s_isnand.lo s_log1p.lo \
s_nan.lo s_nextafter.lo s_pow10.lo s_rint.lo s_logb.lo \ s_nan.lo s_nextafter.lo s_pow10.lo s_rint.lo s_logb.lo \
s_log2.lo s_matherr.lo s_lib_ver.lo s_fdim.lo s_fma.lo \ s_log2.lo s_lib_ver.lo s_fdim.lo s_fma.lo s_fmax.lo s_fmin.lo \
s_fmax.lo s_fmin.lo s_fpclassify.lo s_lrint.lo s_llrint.lo \ s_fpclassify.lo s_lrint.lo s_llrint.lo s_lround.lo \
s_lround.lo s_llround.lo s_nearbyint.lo s_remquo.lo s_round.lo \ s_llround.lo s_nearbyint.lo s_remquo.lo s_round.lo \
s_scalbln.lo s_signbit.lo s_trunc.lo exp.lo exp2.lo \ s_scalbln.lo s_signbit.lo s_trunc.lo exp.lo exp2.lo \
exp_data.lo math_err.lo log.lo log_data.lo log2.lo \ exp_data.lo math_err.lo log.lo log_data.lo log2.lo \
log2_data.lo pow.lo pow_log_data.lo log2_data.lo pow.lo pow_log_data.lo
@ -355,7 +354,7 @@ src = s_finite.c s_copysign.c s_modf.c s_scalbn.c \
s_cbrt.c s_exp10.c s_expm1.c s_ilogb.c \ s_cbrt.c s_exp10.c s_expm1.c s_ilogb.c \
s_infinity.c s_isinf.c s_isinfd.c s_isnan.c s_isnand.c \ s_infinity.c s_isinf.c s_isinfd.c s_isnan.c s_isnand.c \
s_log1p.c s_nan.c s_nextafter.c s_pow10.c \ s_log1p.c s_nan.c s_nextafter.c s_pow10.c \
s_rint.c s_logb.c s_log2.c s_matherr.c s_lib_ver.c \ s_rint.c s_logb.c s_log2.c s_lib_ver.c \
s_fdim.c s_fma.c s_fmax.c s_fmin.c s_fpclassify.c \ s_fdim.c s_fma.c s_fmax.c s_fmin.c s_fpclassify.c \
s_lrint.c s_llrint.c \ s_lrint.c s_llrint.c \
s_lround.c s_llround.c s_nearbyint.c s_remquo.c s_round.c s_scalbln.c \ s_lround.c s_llround.c s_nearbyint.c s_remquo.c s_round.c s_scalbln.c \
@ -406,7 +405,7 @@ DOCBOOK_OUT_FILES = $(CHEWOUT_FILES:.def=.xml)
DOCBOOK_CHAPTERS = $(CHAPTERS:.tex=.xml) DOCBOOK_CHAPTERS = $(CHAPTERS:.tex=.xml)
CLEANFILES = $(CHEWOUT_FILES) $(DOCBOOK_OUT_FILES) CLEANFILES = $(CHEWOUT_FILES) $(DOCBOOK_OUT_FILES)
CHEWOUT_FILES = s_cbrt.def s_copysign.def s_exp10.def s_expm1.def s_ilogb.def \ CHEWOUT_FILES = s_cbrt.def s_copysign.def s_exp10.def s_expm1.def s_ilogb.def \
s_infinity.def s_isnan.def s_log1p.def s_matherr.def s_modf.def \ s_infinity.def s_isnan.def s_log1p.def s_modf.def \
s_nan.def s_nextafter.def s_pow10.def s_scalbn.def \ s_nan.def s_nextafter.def s_pow10.def s_scalbn.def \
s_fdim.def s_fma.def s_fmax.def s_fmin.def \ s_fdim.def s_fma.def s_fmax.def s_fmin.def \
s_logb.def s_log2.def s_lrint.def s_lround.def s_nearbyint.def \ s_logb.def s_log2.def s_lrint.def s_lround.def s_nearbyint.def \
@ -603,12 +602,6 @@ lib_a-s_log2.o: s_log2.c
lib_a-s_log2.obj: s_log2.c lib_a-s_log2.obj: s_log2.c
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_log2.obj `if test -f 's_log2.c'; then $(CYGPATH_W) 's_log2.c'; else $(CYGPATH_W) '$(srcdir)/s_log2.c'; fi` $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_log2.obj `if test -f 's_log2.c'; then $(CYGPATH_W) 's_log2.c'; else $(CYGPATH_W) '$(srcdir)/s_log2.c'; fi`
lib_a-s_matherr.o: s_matherr.c
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_matherr.o `test -f 's_matherr.c' || echo '$(srcdir)/'`s_matherr.c
lib_a-s_matherr.obj: s_matherr.c
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_matherr.obj `if test -f 's_matherr.c'; then $(CYGPATH_W) 's_matherr.c'; else $(CYGPATH_W) '$(srcdir)/s_matherr.c'; fi`
lib_a-s_lib_ver.o: s_lib_ver.c lib_a-s_lib_ver.o: s_lib_ver.c
$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_lib_ver.o `test -f 's_lib_ver.c' || echo '$(srcdir)/'`s_lib_ver.c $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(lib_a_CFLAGS) $(CFLAGS) -c -o lib_a-s_lib_ver.o `test -f 's_lib_ver.c' || echo '$(srcdir)/'`s_lib_ver.c

View File

@ -16,9 +16,6 @@
#include <sys/types.h> #include <sys/types.h>
#include <machine/ieeefp.h> #include <machine/ieeefp.h>
/* REDHAT LOCAL: Default to XOPEN_MODE. */
#define _XOPEN_MODE
/* Most routines need to check whether a float is finite, infinite, or not a /* Most routines need to check whether a float is finite, infinite, or not a
number, and many need to know whether the result of an operation will number, and many need to know whether the result of an operation will
overflow. These conditions depend on whether the largest exponent is overflow. These conditions depend on whether the largest exponent is

View File

@ -52,36 +52,14 @@ hypotl (long double x, long double y)
if ((! finitel (z)) && finitel (x) && finitel (y)) if ((! finitel (z)) && finitel (x) && finitel (y))
{ {
/* hypot (finite, finite) overflow. */ /* hypot (finite, finite) overflow. */
struct exception exc;
exc.type = OVERFLOW;
exc.name = "hypotl";
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
{
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
double inf = 0.0; double inf = 0.0;
SET_HIGH_WORD (inf, 0x7ff00000); /* Set inf to infinite. */ SET_HIGH_WORD (inf, 0x7ff00000); /* Set inf to infinite. */
#endif #endif
exc.retval = HUGE_VAL; errno = ERANGE;
} return (long double) HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (! matherr (& exc))
errno = ERANGE;
if (exc.err != 0)
errno = exc.err;
return (long double) exc.retval;
} }
return z; return z;

View File

@ -34,9 +34,6 @@ DESCRIPTION
$10^x$ $10^x$
@end tex @end tex
You can use the (non-ANSI) function <<matherr>> to specify
error handling for these functions.
RETURNS RETURNS
On success, <<exp10>> and <<exp10f>> return the calculated value. On success, <<exp10>> and <<exp10f>> return the calculated value.
If the result underflows, the returned value is <<0>>. If the If the result underflows, the returned value is <<0>>. If the

View File

@ -24,10 +24,10 @@
_LIB_VERSION_TYPE _LIB_VERSION = _POSIX_; _LIB_VERSION_TYPE _LIB_VERSION = _POSIX_;
#else #else
#ifdef _XOPEN_MODE #ifdef _XOPEN_MODE
_LIB_VERSION_TYPE _LIB_VERSION = _XOPEN_; #error _XOPEN_MODE is unsupported
#else #else
#ifdef _SVID3_MODE #ifdef _SVID3_MODE
_LIB_VERSION_TYPE _LIB_VERSION = _SVID_; #error _SVID3_MODE is unsupported
#else /* default _IEEE_MODE */ #else /* default _IEEE_MODE */
_LIB_VERSION_TYPE _LIB_VERSION = _IEEE_; _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
#endif #endif

View File

@ -38,10 +38,6 @@ macros defined in math.h:
. #define log2f(x) (logf (x) / (float) _M_LN2) . #define log2f(x) (logf (x) / (float) _M_LN2)
To use the functions instead, just undefine the macros first. To use the functions instead, just undefine the macros first.
You can use the (non-ANSI) function <<matherr>> to specify error
handling for these functions, indirectly through the respective <<log>>
function.
RETURNS RETURNS
The <<log2>> functions return The <<log2>> functions return
@ifnottex @ifnottex
@ -54,8 +50,7 @@ on success.
When <[x]> is zero, the When <[x]> is zero, the
returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>. returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>.
When <[x]> is negative, the returned value is NaN (not a number) and When <[x]> is negative, the returned value is NaN (not a number) and
<<errno>> is set to <<EDOM>>. You can control the error behavior via <<errno>> is set to <<EDOM>>.
<<matherr>>.
PORTABILITY PORTABILITY
C99, POSIX, System V Interface Definition (Issue 6). C99, POSIX, System V Interface Definition (Issue 6).

View File

@ -1,118 +0,0 @@
/* @(#)s_matherr.c 5.1 93/09/24 */
/*
* ====================================================
* 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.
* ====================================================
*/
/*
FUNCTION
<<matherr>>---modifiable math error handler
INDEX
matherr
SYNOPSIS
#include <math.h>
int matherr(struct exception *<[e]>);
DESCRIPTION
<<matherr>> is called whenever a math library function generates an error.
You can replace <<matherr>> by your own subroutine to customize
error treatment. The customized <<matherr>> must return 0 if
it fails to resolve the error, and non-zero if the error is resolved.
When <<matherr>> returns a nonzero value, no error message is printed
and the value of <<errno>> is not modified. You can accomplish either
or both of these things in your own <<matherr>> using the information
passed in the structure <<*<[e]>>>.
This is the <<exception>> structure (defined in `<<math.h>>'):
. struct exception {
. int type;
. char *name;
. double arg1, arg2, retval;
. int err;
. };
The members of the exception structure have the following meanings:
o+
o type
The type of mathematical error that occured; macros encoding error
types are also defined in `<<math.h>>'.
o name
a pointer to a null-terminated string holding the
name of the math library function where the error occurred.
o arg1, arg2
The arguments which caused the error.
o retval
The error return value (what the calling function will return).
o err
If set to be non-zero, this is the new value assigned to <<errno>>.
o-
The error types defined in `<<math.h>>' represent possible mathematical
errors as follows:
o+
o DOMAIN
An argument was not in the domain of the function; e.g. <<log(-1.0)>>.
o SING
The requested calculation would result in a singularity; e.g. <<pow(0.0,-2.0)>>
o OVERFLOW
A calculation would produce a result too large to represent; e.g.
<<exp(1000.0)>>.
o UNDERFLOW
A calculation would produce a result too small to represent; e.g.
<<exp(-1000.0)>>.
o TLOSS
Total loss of precision. The result would have no significant digits;
e.g. <<sin(10e70)>>.
o PLOSS
Partial loss of precision.
o-
RETURNS
The library definition for <<matherr>> returns <<0>> in all cases.
You can change the calling function's result from a customized <<matherr>>
by modifying <<e->retval>>, which propagates backs to the caller.
If <<matherr>> returns <<0>> (indicating that it was not able to resolve
the error) the caller sets <<errno>> to an appropriate value, and prints
an error message.
PORTABILITY
<<matherr>> is not ANSI C.
*/
#include "fdlibm.h"
#ifdef __STDC__
int matherr(struct exception *x)
#else
int matherr(x)
struct exception *x;
#endif
{
int n=0;
if(x->arg1!=x->arg1) return 0;
return n;
}

View File

@ -34,9 +34,6 @@ DESCRIPTION
$10^x$ $10^x$
@end tex @end tex
You can use the (non-ANSI) function <<matherr>> to specify
error handling for these functions.
RETURNS RETURNS
On success, <<pow10>> and <<pow10f>> return the calculated value. On success, <<pow10>> and <<pow10f>> return the calculated value.
If the result underflows, the returned value is <<0>>. If the If the result underflows, the returned value is <<0>>. If the

View File

@ -271,7 +271,6 @@ pdfdir = @pdfdir@
prefix = @prefix@ prefix = @prefix@
program_transform_name = @program_transform_name@ program_transform_name = @program_transform_name@
psdir = @psdir@ psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@ sbindir = @sbindir@
sharedstatedir = @sharedstatedir@ sharedstatedir = @sharedstatedir@
srcdir = @srcdir@ srcdir = @srcdir@

View File

@ -107,23 +107,13 @@ into another language, under the above conditions for modified versions.
@cindex reentrancy @cindex reentrancy
@cindex @code{matherr} and reentrancy @cindex @code{matherr} and reentrancy
When a libm function detects an exceptional case, @code{errno} may be When a libm function detects an exceptional case, @code{errno} may be
set, the @code{matherr} function may be called, and a error message set.
may be written to the standard error stream. This behavior may not
be reentrant.
@c The exact behavior depends on the currently selected error handling @c The exact behavior depends on the currently selected error handling
@c mode (IEEE, POSIX, X/Open, or SVID). @c mode (IEEE or POSIX).
With reentrant C libraries like the Red Hat newlib C library, @code{errno} is @code{errno} is a macro which expands to the per-thread error value.
a macro which expands to the per-thread error value. This makes it thread This makes it thread safe, and therefore reentrant.
safe.
When the user provides his own @code{matherr} function it must be
reentrant for the math library as a whole to be reentrant.
In normal debugged programs, there are usually no math subroutine
errors---and therefore no assignments to @code{errno} and no @code{matherr}
calls; in that situation, the math functions behave reentrantly.
@node Long Double Functions @node Long Double Functions
@chapter The long double function support of @code{libm} @chapter The long double function support of @code{libm}

View File

@ -31,7 +31,7 @@ static double zero = 0.0; /* used as const */
#endif #endif
/* /*
* Standard conformance (non-IEEE) on exception cases. * POSIX Standard conformance on exception cases.
* Mapping: * Mapping:
* 1 -- acos(|x|>1) * 1 -- acos(|x|>1)
* 2 -- asin(|x|>1) * 2 -- asin(|x|>1)
@ -85,7 +85,7 @@ static double zero = 0.0; /* used as const */
double x,y; int type; double x,y; int type;
#endif #endif
{ {
struct exception exc; double retval = 0.0;
#ifndef HUGE_VAL /* this is the only routine that uses HUGE_VAL */ #ifndef HUGE_VAL /* this is the only routine that uses HUGE_VAL */
#define HUGE_VAL inf #define HUGE_VAL inf
double inf = 0.0; double inf = 0.0;
@ -96,689 +96,264 @@ static double zero = 0.0; /* used as const */
#ifdef _USE_WRITE #ifdef _USE_WRITE
/* (void) fflush(_stdout_r(p)); */ /* (void) fflush(_stdout_r(p)); */
#endif #endif
exc.arg1 = x;
exc.arg2 = y;
exc.err = 0;
switch(type) { switch(type) {
case 1: case 1:
case 101: case 101:
/* acos(|x|>1) */ /* acos(|x|>1) */
exc.type = DOMAIN; retval = zero;
exc.name = type < 100 ? "acos" : "acosf"; errno = EDOM;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if(_LIB_VERSION == _SVID_) {
(void) WRITE2("acos: DOMAIN error\n", 19);
} */
errno = EDOM;
}
break; break;
case 2: case 2:
case 102: case 102:
/* asin(|x|>1) */ /* asin(|x|>1) */
exc.type = DOMAIN; retval = zero;
exc.name = type < 100 ? "asin" : "asinf"; errno = EDOM;
exc.retval = zero;
if(_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if(_LIB_VERSION == _SVID_) {
(void) WRITE2("asin: DOMAIN error\n", 19);
} */
errno = EDOM;
}
break; break;
case 3: case 3:
case 103: case 103:
/* atan2(+-0,+-0) */ /* atan2(+-0,+-0) */
exc.arg1 = y; retval = zero;
exc.arg2 = x; errno = EDOM;
exc.type = DOMAIN;
exc.name = type < 100 ? "atan2" : "atan2f";
exc.retval = zero;
if(_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if(_LIB_VERSION == _SVID_) {
(void) WRITE2("atan2: DOMAIN error\n", 20);
} */
errno = EDOM;
}
break; break;
case 4: case 4:
case 104: case 104:
/* hypot(finite,finite) overflow */ /* hypot(finite,finite) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "hypot" : "hypotf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 5: case 5:
case 105: case 105:
/* cosh(finite) overflow */ /* cosh(finite) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "cosh" : "coshf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 6: case 6:
case 106: case 106:
/* exp(finite) overflow */ /* exp(finite) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "exp" : "expf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 7: case 7:
case 107: case 107:
/* exp(finite) underflow */ /* exp(finite) underflow */
exc.type = UNDERFLOW; retval = zero;
exc.name = type < 100 ? "exp" : "expf"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 8: case 8:
case 108: case 108:
/* y0(0) = -inf */ /* y0(0) = -inf */
exc.type = DOMAIN; /* should be SING for IEEE */ retval = -HUGE_VAL;
exc.name = type < 100 ? "y0" : "y0f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("y0: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 9: case 9:
case 109: case 109:
/* y0(x<0) = NaN */ /* y0(x<0) = NaN */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "y0" : "y0f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/*if (_LIB_VERSION == _SVID_) {
(void) WRITE2("y0: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 10: case 10:
case 110: case 110:
/* y1(0) = -inf */ /* y1(0) = -inf */
exc.type = DOMAIN; /* should be SING for IEEE */ retval = -HUGE_VAL;
exc.name = type < 100 ? "y1" : "y1f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("y1: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 11: case 11:
case 111: case 111:
/* y1(x<0) = NaN */ /* y1(x<0) = NaN */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "y1" : "y1f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("y1: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 12: case 12:
case 112: case 112:
/* yn(n,0) = -inf */ /* yn(n,0) = -inf */
exc.type = DOMAIN; /* should be SING for IEEE */ retval = -HUGE_VAL;
exc.name = type < 100 ? "yn" : "ynf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("yn: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 13: case 13:
case 113: case 113:
/* yn(x<0) = NaN */ /* yn(x<0) = NaN */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "yn" : "ynf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("yn: DOMAIN error\n", 17);
} */
errno = EDOM;
}
break; break;
case 14: case 14:
case 114: case 114:
/* lgamma(finite) overflow */ /* lgamma(finite) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "lgamma" : "lgammaf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 15: case 15:
case 115: case 115:
/* lgamma(-integer) or lgamma(0) */ /* lgamma(-integer) or lgamma(0) */
exc.type = SING; retval = HUGE_VAL;
exc.name = type < 100 ? "lgamma" : "lgammaf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("lgamma: SING error\n", 19);
} */
errno = EDOM;
}
break; break;
case 16: case 16:
case 116: case 116:
/* log(0) */ /* log(0) */
exc.type = SING; retval = -HUGE_VAL;
exc.name = type < 100 ? "log" : "logf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("log: SING error\n", 16);
} */
errno = EDOM;
}
break; break;
case 17: case 17:
case 117: case 117:
/* log(x<0) */ /* log(x<0) */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "log" : "logf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("log: DOMAIN error\n", 18);
} */
errno = EDOM;
}
break; break;
case 18: case 18:
case 118: case 118:
/* log10(0) */ /* log10(0) */
exc.type = SING; retval = -HUGE_VAL;
exc.name = type < 100 ? "log10" : "log10f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("log10: SING error\n", 18);
} */
errno = EDOM;
}
break; break;
case 19: case 19:
case 119: case 119:
/* log10(x<0) */ /* log10(x<0) */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "log10" : "log10f"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("log10: DOMAIN error\n", 20);
} */
errno = EDOM;
}
break; break;
case 20: case 20:
case 120: case 120:
/* pow(0.0,0.0) */ /* pow(0.0,0.0) */
/* error only if _LIB_VERSION == _SVID_ */ /* Not an error. */
exc.type = DOMAIN; retval = 1.0;
exc.name = type < 100 ? "pow" : "powf";
exc.retval = zero;
if (_LIB_VERSION != _SVID_) exc.retval = 1.0;
else if (!matherr(&exc)) {
/* (void) WRITE2("pow(0,0): DOMAIN error\n", 23); */
errno = EDOM;
}
break; break;
case 21: case 21:
case 121: case 121:
/* pow(x,y) overflow */ /* pow(x,y) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "pow" : "powf"; y *= 0.5;
if (_LIB_VERSION == _SVID_) { if(x<zero&&rint(y)!=y)
exc.retval = HUGE; retval = -HUGE_VAL;
y *= 0.5; errno = ERANGE;
if(x<zero&&rint(y)!=y) exc.retval = -HUGE;
} else {
exc.retval = HUGE_VAL;
y *= 0.5;
if(x<zero&&rint(y)!=y) exc.retval = -HUGE_VAL;
}
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 22: case 22:
case 122: case 122:
/* pow(x,y) underflow */ /* pow(x,y) underflow */
exc.type = UNDERFLOW; retval = zero;
exc.name = type < 100 ? "pow" : "powf"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 23: case 23:
case 123: case 123:
/* 0**neg */ /* 0**neg */
exc.type = DOMAIN; retval = -HUGE_VAL;
exc.name = type < 100 ? "pow" : "powf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = zero;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("pow(0,neg): DOMAIN error\n", 25);
} */
errno = EDOM;
}
break; break;
case 24: case 24:
case 124: case 124:
/* neg**non-integral */ /* neg**non-integral */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "pow" : "powf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = zero;
else
exc.retval = zero/zero; /* X/Open allow NaN */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("neg**non-integral: DOMAIN error\n", 32);
} */
errno = EDOM;
}
break; break;
case 25: case 25:
case 125: case 125:
/* sinh(finite) overflow */ /* sinh(finite) overflow */
exc.type = OVERFLOW; retval = ( (x>zero) ? HUGE_VAL : -HUGE_VAL);
exc.name = type < 100 ? "sinh" : "sinhf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = ( (x>zero) ? HUGE : -HUGE);
else
exc.retval = ( (x>zero) ? HUGE_VAL : -HUGE_VAL);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 26: case 26:
case 126: case 126:
/* sqrt(x<0) */ /* sqrt(x<0) */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "sqrt" : "sqrtf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = zero;
else
exc.retval = zero/zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("sqrt: DOMAIN error\n", 19);
} */
errno = EDOM;
}
break; break;
case 27: case 27:
case 127: case 127:
/* fmod(x,0) */ /* fmod(x,0) */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "fmod" : "fmodf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = x;
else
exc.retval = zero/zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("fmod: DOMAIN error\n", 20);
} */
errno = EDOM;
}
break; break;
case 28: case 28:
case 128: case 128:
/* remainder(x,0) */ /* remainder(x,0) */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "remainder" : "remainderf"; errno = EDOM;
exc.retval = zero/zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("remainder: DOMAIN error\n", 24);
} */
errno = EDOM;
}
break; break;
case 29: case 29:
case 129: case 129:
/* acosh(x<1) */ /* acosh(x<1) */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "acosh" : "acoshf"; errno = EDOM;
exc.retval = zero/zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("acosh: DOMAIN error\n", 20);
} */
errno = EDOM;
}
break; break;
case 30: case 30:
case 130: case 130:
/* atanh(|x|>1) */ /* atanh(|x|>1) */
exc.type = DOMAIN; retval = zero/zero;
exc.name = type < 100 ? "atanh" : "atanhf"; errno = EDOM;
exc.retval = zero/zero;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("atanh: DOMAIN error\n", 20);
} */
errno = EDOM;
}
break; break;
case 31: case 31:
case 131: case 131:
/* atanh(|x|=1) */ /* atanh(|x|=1) */
exc.type = SING; retval = x/zero; /* sign(x)*inf */
exc.name = type < 100 ? "atanh" : "atanhf"; errno = EDOM;
exc.retval = x/zero; /* sign(x)*inf */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("atanh: SING error\n", 18);
} */
errno = EDOM;
}
break; break;
case 32: case 32:
case 132: case 132:
/* scalb overflow; SVID also returns +-HUGE_VAL */ /* scalb overflow */
exc.type = OVERFLOW; retval = x > zero ? HUGE_VAL : -HUGE_VAL;
exc.name = type < 100 ? "scalb" : "scalbf"; errno = ERANGE;
exc.retval = x > zero ? HUGE_VAL : -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 33: case 33:
case 133: case 133:
/* scalb underflow */ /* scalb underflow */
exc.type = UNDERFLOW; retval = copysign(zero,x);
exc.name = type < 100 ? "scalb" : "scalbf"; errno = ERANGE;
exc.retval = copysign(zero,x);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 34: case 34:
case 134: case 134:
/* j0(|x|>X_TLOSS) */ /* j0(|x|>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "j0" : "j0f"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 35: case 35:
case 135: case 135:
/* y0(x>X_TLOSS) */ /* y0(x>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "y0" : "y0f"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 36: case 36:
case 136: case 136:
/* j1(|x|>X_TLOSS) */ /* j1(|x|>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "j1" : "j1f"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 37: case 37:
case 137: case 137:
/* y1(x>X_TLOSS) */ /* y1(x>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "y1" : "y1f"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 38: case 38:
case 138: case 138:
/* jn(|x|>X_TLOSS) */ /* jn(|x|>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "jn" : "jnf"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 39: case 39:
case 139: case 139:
/* yn(x>X_TLOSS) */ /* yn(x>X_TLOSS) */
exc.type = TLOSS; retval = zero;
exc.name = type < 100 ? "yn" : "ynf"; errno = ERANGE;
exc.retval = zero;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2(exc.name, 2);
(void) WRITE2(": TLOSS error\n", 14);
} */
errno = ERANGE;
}
break; break;
case 40: case 40:
case 140: case 140:
/* gamma(finite) overflow */ /* gamma(finite) overflow */
exc.type = OVERFLOW; retval = HUGE_VAL;
exc.name = type < 100 ? "gamma" : "gammaf"; errno = ERANGE;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
break; break;
case 41: case 41:
case 141: case 141:
/* gamma(-integer) or gamma(0) */ /* gamma(-integer) or gamma(0) */
exc.type = SING; retval = HUGE_VAL;
exc.name = type < 100 ? "gamma" : "gammaf"; errno = EDOM;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
/* if (_LIB_VERSION == _SVID_) {
(void) WRITE2("gamma: SING error\n", 18);
} */
errno = EDOM;
}
break; break;
case 42: case 42:
case 142: case 142:
/* pow(NaN,0.0) */ /* pow(NaN,0.0) */
/* error only if _LIB_VERSION == _SVID_ & _XOPEN_ */ /* Not an error. */
exc.type = DOMAIN; retval = 1.0;
exc.name = type < 100 ? "pow" : "powf";
exc.retval = x;
if (_LIB_VERSION == _IEEE_ ||
_LIB_VERSION == _POSIX_) exc.retval = 1.0;
else if (!matherr(&exc)) {
errno = EDOM;
}
break; break;
} }
if (exc.err != 0) return retval;
errno = exc.err;
return exc.retval;
} }

View File

@ -3,33 +3,15 @@
This chapter groups a wide variety of mathematical functions. The This chapter groups a wide variety of mathematical functions. The
corresponding definitions and declarations are in @file{math.h}. corresponding definitions and declarations are in @file{math.h}.
Two definitions from @file{math.h} are of particular interest. The definition of HUGE_VAL from @file{math.h} is of particular interest.
@enumerate @enumerate
@item @item
The representation of infinity as a @code{double} is defined as The representation of infinity as a @code{double} is defined as
@code{HUGE_VAL}; this number is returned on overflow by many functions. @code{HUGE_VAL}; this number is returned on overflow by many functions.
The macro @code{HUGE_VALF} is a corresponding value for @code{float}. The macro @code{HUGE_VALF} is a corresponding value for @code{float}.
@item
The structure @code{exception} is used when you write customized error
handlers for the mathematical functions. You can customize error
handling for most of these functions by defining your own version of
@code{matherr}; see the section on @code{matherr} for details.
@end enumerate @end enumerate
@cindex system calls
@cindex support subroutines
@cindex stubs
@cindex OS stubs
Since the error handling code calls @code{fputs}, the mathematical
subroutines require stubs or minimal implementations for the same list
of OS subroutines as @code{fputs}: @code{close}, @code{fstat},
@code{isatty}, @code{lseek}, @code{read}, @code{sbrk}, @code{write}.
@xref{syscalls,,System Calls, libc.info, The Red Hat newlib C Library},
for a discussion and for sample minimal implementations of these support
subroutines.
Alternative declarations of the mathematical functions, which exploit Alternative declarations of the mathematical functions, which exploit
specific machine capabilities to operate faster---but generally have specific machine capabilities to operate faster---but generally have
less error checking and may reflect additional limitations on some less error checking and may reflect additional limitations on some
@ -76,7 +58,6 @@ machines---are available when you include @file{fastmath.h} instead of
* logb:: Get exponent * logb:: Get exponent
* lrint:: Round to integer * lrint:: Round to integer
* lround:: Round to integer, away from zero (lround, llround) * lround:: Round to integer, away from zero (lround, llround)
* matherr:: Modifiable math error handler
* modf:: Split fractional and integer parts * modf:: Split fractional and integer parts
* nan:: Floating Not a Number * nan:: Floating Not a Number
* nearbyint:: Round to integer * nearbyint:: Round to integer
@ -101,40 +82,23 @@ machines---are available when you include @file{fastmath.h} instead of
@node version @node version
@section Error Handling @section Error Handling
There are four different versions of the math library routines: IEEE, There are two different versions of the math library routines: IEEE
POSIX, X/Open, or SVID. The version may be selected at runtime by and POSIX. The version may be selected at runtime by
setting the global variable @code{_LIB_VERSION}, defined in setting the global variable @code{_LIB_VERSION}, defined in
@file{math.h}. It may be set to one of the following constants defined @file{math.h}. It may be set to one of the following constants defined
in @file{math.h}: @code{_IEEE_}, @code{_POSIX_}, @code{_XOPEN_}, or in @file{math.h}: @code{_IEEE_} or @code{_POSIX_}.
@code{_SVID_}. The @code{_LIB_VERSION} variable is not specific to any The @code{_LIB_VERSION} variable is not specific to any
thread, and changing it will affect all threads. thread, and changing it will affect all threads.
The versions of the library differ only in how errors are handled. The versions of the library differ only in the setting of @code{errno}.
In IEEE mode, the @code{matherr} function is never called, no warning In IEEE mode, @code{errno} is never set.
messages are printed, and @code{errno} is never set.
In POSIX mode, @code{errno} is set correctly, but the @code{matherr} In POSIX mode, @code{errno} is set correctly.
function is never called and no warning messages are printed.
In X/Open mode, @code{errno} is set correctly, and @code{matherr} is The library is set to IEEE mode by default.
called, but warning message are not printed.
In SVID mode, functions which overflow return 3.40282346638528860e+38, The majority of the floating-point math functions are written
the maximum single-precision floating-point value, rather than infinity.
Also, @code{errno} is set correctly, @code{matherr} is called, and, if
@code{matherr} returns 0, warning messages are printed for some errors.
For example, by default @samp{log(-1.0)} writes this message on standard
error output:
@example
log: DOMAIN error
@end example
The library is set to X/Open mode by default.
The aforementioned error reporting is the supported Newlib libm error
handling method. However, the majority of the functions are written
so as to produce the floating-point exceptions (e.g. "invalid", so as to produce the floating-point exceptions (e.g. "invalid",
"divide-by-zero") as required by the C and POSIX standards, for "divide-by-zero") as required by the C and POSIX standards, for
floating-point implementations that support them. Newlib does not provide floating-point implementations that support them. Newlib does not provide
@ -241,8 +205,6 @@ registered trademark of The IEEE.
@page @page
@include common/s_lround.def @include common/s_lround.def
@page @page
@include common/s_matherr.def
@page
@include common/s_modf.def @include common/s_modf.def
@page @page
@include common/s_nan.def @include common/s_nan.def

View File

@ -42,16 +42,12 @@ RETURNS
@end tex @end tex
If <[x]> is not between @minus{}1 and 1, the returned value is NaN If <[x]> is not between @minus{}1 and 1, the returned value is NaN
(not a number) the global variable <<errno>> is set to <<EDOM>>, and a (not a number), and the global variable <<errno>> is set to <<EDOM>>.
<<DOMAIN error>> message is sent as standard error output.
You can modify error handling for these functions using <<matherr>>.
QUICKREF QUICKREF
ansi svid posix rentrant ansi posix rentrant
acos y,y,y,m acos y,y,m
acosf n,n,n,m acosf n,n,m
MATHREF MATHREF
acos, [-1,1], acos(arg),,, acos, [-1,1], acos(arg),,,
@ -83,24 +79,12 @@ MATHREF
return __ieee754_acos(x); return __ieee754_acos(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_acos(x); z = __ieee754_acos(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabs(x)>1.0) { if(fabs(x)>1.0) {
/* acos(|x|>1) */ /* acos(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "acos"; return nan("");
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = nan("");
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -44,18 +44,15 @@ RETURNS
<<acosh>> and <<acoshf>> return the calculated value. If <[x]> <<acosh>> and <<acoshf>> return the calculated value. If <[x]>
less than 1, the return value is NaN and <<errno>> is set to <<EDOM>>. less than 1, the return value is NaN and <<errno>> is set to <<EDOM>>.
You can change the error-handling behavior with the non-ANSI
<<matherr>> function.
PORTABILITY PORTABILITY
Neither <<acosh>> nor <<acoshf>> are ANSI C. They are not recommended Neither <<acosh>> nor <<acoshf>> are ANSI C. They are not recommended
for portable programs. for portable programs.
QUICKREF QUICKREF
ansi svid posix rentrant ansi posix rentrant
acos n,n,n,m acos n,n,m
acosf n,n,n,m acosf n,n,m
MATHREF MATHREF
acosh, NAN, arg,DOMAIN,EDOM acosh, NAN, arg,DOMAIN,EDOM
@ -89,24 +86,12 @@ MATHREF
return __ieee754_acosh(x); return __ieee754_acosh(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_acosh(x); z = __ieee754_acosh(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<1.0) { if(x<1.0) {
/* acosh(x<1) */ /* acosh(x<1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "acosh"; return 0.0/0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -34,8 +34,6 @@ Arguments to <<asin>> must be in the range @minus{}1 to 1.
<<asinf>> is identical to <<asin>>, other than taking and <<asinf>> is identical to <<asin>>, other than taking and
returning floats. returning floats.
You can modify error handling for these routines using <<matherr>>.
RETURNS RETURNS
@ifnottex @ifnottex
<<asin>> returns values in radians, in the range of -pi/2 to pi/2. <<asin>> returns values in radians, in the range of -pi/2 to pi/2.
@ -45,15 +43,13 @@ RETURNS
@end tex @end tex
If <[x]> is not in the range @minus{}1 to 1, <<asin>> and <<asinf>> If <[x]> is not in the range @minus{}1 to 1, <<asin>> and <<asinf>>
return NaN (not a number), set the global variable <<errno>> to return NaN (not a number), and the global variable <<errno>> is set to
<<EDOM>>, and issue a <<DOMAIN error>> message. <<EDOM>>.
You can change this error treatment using <<matherr>>.
QUICKREF QUICKREF
ansi svid posix rentrant ansi posix rentrant
asin y,y,y,m asin y,y,m
asinf n,n,n,m asinf n,n,m
MATHREF MATHREF
asin, -1<=arg<=1, asin(arg),,, asin, -1<=arg<=1, asin(arg),,,
@ -87,24 +83,12 @@ MATHREF
return __ieee754_asin(x); return __ieee754_asin(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_asin(x); z = __ieee754_asin(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabs(x)>1.0) { if(fabs(x)>1.0) {
/* asin(|x|>1) */ /* asin(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "asin"; return nan("");
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = nan("");
if(_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -50,8 +50,6 @@ RETURNS
$-\pi$ to $\pi$. $-\pi$ to $\pi$.
@end tex @end tex
You can modify error handling for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<atan2>> is ANSI C. <<atan2f>> is an extension. <<atan2>> is ANSI C. <<atan2f>> is an extension.

View File

@ -54,9 +54,6 @@ RETURNS
is 1, the global <<errno>> is set to <<EDOM>>; and the result is is 1, the global <<errno>> is set to <<EDOM>>; and the result is
infinity with the same sign as <<x>>. A <<SING error>> is reported. infinity with the same sign as <<x>>. A <<SING error>> is reported.
You can modify the error handling for these routines using
<<matherr>>.
PORTABILITY PORTABILITY
Neither <<atanh>> nor <<atanhf>> are ANSI C. Neither <<atanh>> nor <<atanhf>> are ANSI C.
@ -87,39 +84,19 @@ QUICKREF
return __ieee754_atanh(x); return __ieee754_atanh(x);
#else #else
double z,y; double z,y;
struct exception exc;
z = __ieee754_atanh(x); z = __ieee754_atanh(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
y = fabs(x); y = fabs(x);
if(y>=1.0) { if(y>=1.0) {
if(y>1.0) { if(y>1.0) {
/* atanh(|x|>1) */ /* atanh(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "atanh"; return 0.0/0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else { } else {
/* atanh(|x|=1) */ /* atanh(|x|=1) */
exc.type = SING; errno = EDOM;
exc.name = "atanh"; return x/0.0; /* sign(x)*inf */
exc.err = 0; }
exc.arg1 = exc.arg2 = x;
exc.retval = x/0.0; /* sign(x)*inf */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -41,9 +41,6 @@ RETURNS
an overflow, <<cosh>> returns the value <<HUGE_VAL>> with the an overflow, <<cosh>> returns the value <<HUGE_VAL>> with the
appropriate sign, and the global value <<errno>> is set to <<ERANGE>>. appropriate sign, and the global value <<errno>> is set to <<ERANGE>>.
You can modify error handling for these functions using the
function <<matherr>>.
PORTABILITY PORTABILITY
<<cosh>> is ANSI. <<cosh>> is ANSI.
<<coshf>> is an extension. <<coshf>> is an extension.
@ -73,7 +70,6 @@ QUICKREF
return __ieee754_cosh(x); return __ieee754_cosh(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_cosh(x); z = __ieee754_cosh(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabs(x)>7.10475860073943863426e+02) { if(fabs(x)>7.10475860073943863426e+02) {
@ -84,22 +80,8 @@ QUICKREF
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "cosh"; return HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -34,9 +34,6 @@ DESCRIPTION
@end tex @end tex
is the base of the natural system of logarithms, approximately 2.71828). is the base of the natural system of logarithms, approximately 2.71828).
You can use the (non-ANSI) function <<matherr>> to specify
error handling for these functions.
RETURNS RETURNS
On success, <<exp>> and <<expf>> return the calculated value. On success, <<exp>> and <<expf>> return the calculated value.
If the result underflows, the returned value is <<0>>. If the If the result underflows, the returned value is <<0>>. If the
@ -77,7 +74,6 @@ u_threshold= -7.45133219101941108420e+02; /* 0xc0874910, 0xD52D3051 */
return __ieee754_exp(x); return __ieee754_exp(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_exp(x); z = __ieee754_exp(x);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(finite(x)) { if(finite(x)) {
@ -89,37 +85,12 @@ u_threshold= -7.45133219101941108420e+02; /* 0xc0874910, 0xD52D3051 */
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "exp"; return HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else if(x<u_threshold) { } else if(x<u_threshold) {
/* exp(finite) underflow */ /* exp(finite) underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "exp"; return 0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
} }
return z; return z;

View File

@ -33,9 +33,6 @@ DESCRIPTION
$2^x$ $2^x$
@end tex @end tex
You can use the (non-ANSI) function <<matherr>> to specify
error handling for these functions.
RETURNS RETURNS
On success, <<exp2>> and <<exp2f>> return the calculated value. On success, <<exp2>> and <<exp2f>> return the calculated value.
If the result underflows, the returned value is <<0>>. If the If the result underflows, the returned value is <<0>>. If the

View File

@ -43,8 +43,6 @@ magnitude of <[y]>.
<<fmod(<[x]>,0)>> returns NaN, and sets <<errno>> to <<EDOM>>. <<fmod(<[x]>,0)>> returns NaN, and sets <<errno>> to <<EDOM>>.
You can modify error treatment for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<fmod>> is ANSI C. <<fmodf>> is an extension. <<fmod>> is ANSI C. <<fmodf>> is an extension.
*/ */
@ -69,28 +67,12 @@ PORTABILITY
return __ieee754_fmod(x,y); return __ieee754_fmod(x,y);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_fmod(x,y); z = __ieee754_fmod(x,y);
if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z; if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
if(y==0.0) { if(y==0.0) {
/* fmod(x,0) */ /* fmod(x,0) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "fmod"; return 0.0/0.0;
exc.arg1 = x;
exc.arg2 = y;
exc.err = 0;
if (_LIB_VERSION == _SVID_)
exc.retval = x;
else
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -121,14 +121,12 @@ When <[x]> is a nonpositive integer, <<gamma>> returns <<HUGE_VAL>>
and <<errno>> is set to <<EDOM>>. If the result overflows, <<gamma>> and <<errno>> is set to <<EDOM>>. If the result overflows, <<gamma>>
returns <<HUGE_VAL>> and <<errno>> is set to <<ERANGE>>. returns <<HUGE_VAL>> and <<errno>> is set to <<ERANGE>>.
You can modify this error treatment using <<matherr>>.
PORTABILITY PORTABILITY
Neither <<gamma>> nor <<gammaf>> is ANSI C. It is better not to use either Neither <<gamma>> nor <<gammaf>> is ANSI C. It is better not to use either
of these; use <<lgamma>> or <<tgamma>> instead.@* of these; use <<lgamma>> or <<tgamma>> instead.@*
<<lgamma>>, <<lgammaf>>, <<tgamma>>, and <<tgammaf>> are nominally C standard <<lgamma>>, <<lgammaf>>, <<tgamma>>, and <<tgammaf>> are nominally C standard
in terms of the base return values, although the <<matherr>> error-handling in terms of the base return values, although the <[signgam]> global for
is not standard, nor is the <[signgam]> global for <<lgamma>>. <<lgamma>> is not standard.
*/ */
/* double gamma(double x) /* double gamma(double x)
@ -154,7 +152,6 @@ is not standard, nor is the <[signgam]> global for <<lgamma>>.
return __ieee754_gamma_r(x,&(_REENT_SIGNGAM(_REENT))); return __ieee754_gamma_r(x,&(_REENT_SIGNGAM(_REENT)));
#else #else
double y; double y;
struct exception exc;
y = __ieee754_gamma_r(x,&(_REENT_SIGNGAM(_REENT))); y = __ieee754_gamma_r(x,&(_REENT_SIGNGAM(_REENT)));
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finite(y)&&finite(x)) { if(!finite(y)&&finite(x)) {
@ -164,33 +161,14 @@ is not standard, nor is the <[signgam]> global for <<lgamma>>.
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "gamma";
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if(floor(x)==x&&x<=0.0) { if(floor(x)==x&&x<=0.0) {
/* gamma(-integer) or gamma(0) */ /* gamma(-integer) or gamma(0) */
exc.type = SING; errno = EDOM;
if (_LIB_VERSION == _POSIX_) } else {
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* gamma(finite) overflow */ /* gamma(finite) overflow */
exc.type = OVERFLOW; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) }
errno = ERANGE; return HUGE_VAL;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -41,8 +41,6 @@ RETURNS
<<hypot>> returns <<HUGE_VAL>> and sets <<errno>> to <<hypot>> returns <<HUGE_VAL>> and sets <<errno>> to
<<ERANGE>>. <<ERANGE>>.
You can change the error treatment with <<matherr>>.
PORTABILITY PORTABILITY
<<hypot>> and <<hypotf>> are not ANSI C. */ <<hypot>> and <<hypotf>> are not ANSI C. */
@ -66,7 +64,6 @@ PORTABILITY
return __ieee754_hypot(x,y); return __ieee754_hypot(x,y);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_hypot(x,y); z = __ieee754_hypot(x,y);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if((!finite(z))&&finite(x)&&finite(y)) { if((!finite(z))&&finite(x)&&finite(y)) {
@ -77,23 +74,8 @@ PORTABILITY
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "hypot"; return HUGE_VAL;
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -104,24 +104,12 @@ None of the Bessel functions are in ANSI C.
#ifdef _IEEE_LIBM #ifdef _IEEE_LIBM
return __ieee754_j0(x); return __ieee754_j0(x);
#else #else
struct exception exc;
double z = __ieee754_j0(x); double z = __ieee754_j0(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabs(x)>X_TLOSS) { if(fabs(x)>X_TLOSS) {
/* j0(|x|>X_TLOSS) */ /* j0(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "j0"; return 0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -138,7 +126,6 @@ None of the Bessel functions are in ANSI C.
return __ieee754_y0(x); return __ieee754_y0(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_y0(x); z = __ieee754_y0(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= 0.0){ if(x <= 0.0){
@ -149,38 +136,13 @@ None of the Bessel functions are in ANSI C.
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
/* y0(0) = -inf or y0(x<0) = NaN */ /* y0(0) = -inf or y0(x<0) = NaN */
exc.type = DOMAIN; /* should be SING for IEEE y0(0) */ errno = EDOM;
exc.name = "y0"; return -HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(x>X_TLOSS) { if(x>X_TLOSS) {
/* y0(x>X_TLOSS) */ /* y0(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "y0"; return 0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -31,24 +31,12 @@
return __ieee754_j1(x); return __ieee754_j1(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_j1(x); z = __ieee754_j1(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(fabs(x)>X_TLOSS) { if(fabs(x)>X_TLOSS) {
/* j1(|x|>X_TLOSS) */ /* j1(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "j1"; return 0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -65,7 +53,6 @@
return __ieee754_y1(x); return __ieee754_y1(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_y1(x); z = __ieee754_y1(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= 0.0){ if(x <= 0.0){
@ -76,38 +63,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
/* y1(0) = -inf or y1(x<0) = NaN */ /* y1(0) = -inf or y1(x<0) = NaN */
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "y1"; return -HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(x>X_TLOSS) { if(x>X_TLOSS) {
/* y1(x>X_TLOSS) */ /* y1(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "y1"; return 0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -53,25 +53,12 @@
return __ieee754_jn(n,x); return __ieee754_jn(n,x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_jn(n,x); z = __ieee754_jn(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(fabs(x)>X_TLOSS) { if(fabs(x)>X_TLOSS) {
/* jn(|x|>X_TLOSS) */ /* jn(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "jn"; return 0.0;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -88,7 +75,6 @@
return __ieee754_yn(n,x); return __ieee754_yn(n,x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_yn(n,x); z = __ieee754_yn(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= 0.0){ if(x <= 0.0){
@ -99,40 +85,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "yn"; return -HUGE_VAL;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(x>X_TLOSS) { if(x>X_TLOSS) {
/* yn(x>X_TLOSS) */ /* yn(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "yn"; return 0.0;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -35,7 +35,6 @@
return __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT))); return __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT)));
#else #else
double y; double y;
struct exception exc;
y = __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT))); y = __ieee754_lgamma_r(x,&(_REENT_SIGNGAM(_REENT)));
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finite(y)&&finite(x)) { if(!finite(y)&&finite(x)) {
@ -45,36 +44,14 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "lgamma"; if(floor(x)==x&&x<=0.0)
exc.err = 0; /* lgamma(-integer) */
exc.arg1 = x; errno = EDOM;
exc.arg2 = x; else
if (_LIB_VERSION == _SVID_) /* lgamma(finite) overflow */
exc.retval = HUGE; errno = ERANGE;
else return HUGE_VAL;
exc.retval = HUGE_VAL; } else
if(floor(x)==x&&x<=0.0) {
/* lgamma(-integer) */
exc.type = SING;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* lgamma(finite) overflow */
exc.type = OVERFLOW;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else
return y; return y;
#endif #endif
} }

View File

@ -30,15 +30,11 @@ Return the natural logarithm of <[x]>, that is, its logarithm base e
(where e is the base of the natural system of logarithms, 2.71828@dots{}). (where e is the base of the natural system of logarithms, 2.71828@dots{}).
<<log>> and <<logf>> are identical save for the return and argument types. <<log>> and <<logf>> are identical save for the return and argument types.
You can use the (non-ANSI) function <<matherr>> to specify error
handling for these functions.
RETURNS RETURNS
Normally, returns the calculated value. When <[x]> is zero, the Normally, returns the calculated value. When <[x]> is zero, the
returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>. returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>.
When <[x]> is negative, the returned value is NaN (not a number) and When <[x]> is negative, the returned value is NaN (not a number) and
<<errno>> is set to <<EDOM>>. You can control the error behavior via <<errno>> is set to <<EDOM>>.
<<matherr>>.
PORTABILITY PORTABILITY
<<log>> is ANSI. <<logf>> is an extension. <<log>> is ANSI. <<logf>> is an extension.
@ -65,7 +61,6 @@ PORTABILITY
return __ieee754_log(x); return __ieee754_log(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_log(x); z = __ieee754_log(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z;
#ifndef HUGE_VAL #ifndef HUGE_VAL
@ -74,35 +69,15 @@ PORTABILITY
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "log";
exc.err = 0;
exc.arg1 = x;
exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if(x==0.0) { if(x==0.0) {
/* log(0) */ /* log(0) */
exc.type = SING; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) return -HUGE_VAL;
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
} else { } else {
/* log(x<0) */ /* log(x<0) */
exc.type = DOMAIN; errno = EDOM;
if (_LIB_VERSION == _POSIX_) return nan("");
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
exc.retval = nan("");
} }
if (exc.err != 0)
errno = exc.err;
return exc.retval;
#endif #endif
} }

View File

@ -61,7 +61,6 @@ PORTABILITY
return __ieee754_log10(x); return __ieee754_log10(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_log10(x); z = __ieee754_log10(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<=0.0) { if(x<=0.0) {
@ -71,35 +70,15 @@ PORTABILITY
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "log10";
exc.err = 0;
exc.arg1 = x;
exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if(x==0.0) { if(x==0.0) {
/* log10(0) */ /* log10(0) */
exc.type = SING; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) return -HUGE_VAL;
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
} else { } else {
/* log10(x<0) */ /* log10(x<0) */
exc.type = DOMAIN; errno = EDOM;
if (_LIB_VERSION == _POSIX_) return nan("");
errno = EDOM; }
else if (!matherr(&exc)) {
errno = EDOM;
}
exc.retval = nan("");
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -42,8 +42,6 @@ RETURNS
is set to <<EDOM>>. If <[x]> and <[y]> are both 0, then is set to <<EDOM>>. If <[x]> and <[y]> are both 0, then
<<pow>> and <<powf>> return <<1>>. <<pow>> and <<powf>> return <<1>>.
You can modify error handling for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<pow>> is ANSI C. <<powf>> is an extension. */ <<pow>> is ANSI C. <<powf>> is an extension. */
@ -74,134 +72,48 @@ PORTABILITY
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
struct exception exc;
z=__ieee754_pow(x,y); z=__ieee754_pow(x,y);
if(_LIB_VERSION == _IEEE_|| isnan(y)) return z; if(_LIB_VERSION == _IEEE_|| isnan(y)) return z;
if(isnan(x)) { if(isnan(x)) {
if(y==0.0) { if(y==0.0) {
/* pow(NaN,0.0) */ /* pow(NaN,0.0) */
/* error only if _LIB_VERSION == _SVID_ & _XOPEN_ */ /* Not an error. */
exc.type = DOMAIN; return 1.0;
exc.name = "pow";
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
exc.retval = 1.0;
if (_LIB_VERSION == _IEEE_ ||
_LIB_VERSION == _POSIX_) exc.retval = 1.0;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
} }
if(x==0.0){ if(x==0.0){
if(y==0.0) { if(y==0.0) {
/* pow(0.0,0.0) */ /* pow(0.0,0.0) */
/* error only if _LIB_VERSION == _SVID_ */ /* Not an error. */
exc.type = DOMAIN; return 1.0;
exc.name = "pow";
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
exc.retval = 0.0;
if (_LIB_VERSION != _SVID_) exc.retval = 1.0;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(finite(y)&&y<0.0) { if(finite(y)&&y<0.0) {
/* 0**neg */ /* 0**neg */
exc.type = DOMAIN; errno = EDOM;
exc.name = "pow"; return -HUGE_VAL;
exc.err = 0; }
exc.arg1 = x;
exc.arg2 = y;
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
}
return z; return z;
} }
if(!finite(z)) { if(!finite(z)) {
if(finite(x)&&finite(y)) { if(finite(x)&&finite(y)) {
if(isnan(z)) { if(isnan(z)) {
/* neg**non-integral */ /* neg**non-integral */
exc.type = DOMAIN; errno = EDOM;
exc.name = "pow"; return 0.0/0.0;
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
exc.retval = 0.0/0.0; /* X/Open allow NaN */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else { } else {
/* pow(x,y) overflow */ /* pow(x,y) overflow */
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "pow"; if(x<0.0&&rint(y)!=y)
exc.err = 0; return -HUGE_VAL;
exc.arg1 = x; return HUGE_VAL;
exc.arg2 = y;
if (_LIB_VERSION == _SVID_) {
exc.retval = HUGE;
y *= 0.5;
if(x<0.0&&rint(y)!=y) exc.retval = -HUGE;
} else {
exc.retval = HUGE_VAL;
y *= 0.5;
if(x<0.0&&rint(y)!=y) exc.retval = -HUGE_VAL;
}
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
} }
} }
if(z==0.0&&finite(x)&&finite(y)) { if(z==0.0&&finite(x)&&finite(y)) {
/* pow(x,y) underflow */ /* pow(x,y) underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "pow"; return 0.0;
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
return z; return z;
#endif #endif

View File

@ -57,25 +57,12 @@ PORTABILITY
return __ieee754_remainder(x,y); return __ieee754_remainder(x,y);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_remainder(x,y); z = __ieee754_remainder(x,y);
if(_LIB_VERSION == _IEEE_ || isnan(y)) return z; if(_LIB_VERSION == _IEEE_ || isnan(y)) return z;
if(y==0.0) { if(y==0.0) {
/* remainder(x,0) */ /* remainder(x,0) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "remainder"; return 0.0/0.0;
exc.err = 0;
exc.arg1 = x;
exc.arg2 = y;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -47,42 +47,17 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
struct exception exc;
z = __ieee754_scalb(x,fn); z = __ieee754_scalb(x,fn);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(!(finite(z)||isnan(z))&&finite(x)) { if(!(finite(z)||isnan(z))&&finite(x)) {
/* scalb overflow; SVID also returns +-HUGE_VAL */ /* scalb overflow */
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "scalb"; return (x > 0.0 ? HUGE_VAL : -HUGE_VAL);
exc.err = 0;
exc.arg1 = x;
exc.arg2 = fn;
exc.retval = x > 0.0 ? HUGE_VAL : -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(z==0.0&&z!=x) { if(z==0.0&&z!=x) {
/* scalb underflow */ /* scalb underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "scalb"; return copysign(0.0,x);
exc.err = 0;
exc.arg1 = x;
exc.arg2 = fn;
exc.retval = copysign(0.0,x);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
#ifndef _SCALB_INT #ifndef _SCALB_INT
if(!finite(fn)) errno = ERANGE; if(!finite(fn)) errno = ERANGE;

View File

@ -46,8 +46,6 @@ RETURNS
appropriate sign, and sets the global value <<errno>> to appropriate sign, and sets the global value <<errno>> to
<<ERANGE>>. <<ERANGE>>.
You can modify error handling for these functions with <<matherr>>.
PORTABILITY PORTABILITY
<<sinh>> is ANSI C. <<sinh>> is ANSI C.
<<sinhf>> is an extension. <<sinhf>> is an extension.
@ -77,7 +75,6 @@ QUICKREF
return __ieee754_sinh(x); return __ieee754_sinh(x);
#else #else
double z; double z;
struct exception exc;
z = __ieee754_sinh(x); z = __ieee754_sinh(x);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(!finite(z)&&finite(x)) { if(!finite(z)&&finite(x)) {
@ -88,22 +85,8 @@ QUICKREF
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "sinh"; return ((x>0.0) ? HUGE_VAL : -HUGE_VAL);
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = ( (x>0.0) ? HUGE : -HUGE);
else
exc.retval = ( (x>0.0) ? HUGE_VAL : -HUGE_VAL);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -27,8 +27,6 @@ SYNOPSIS
DESCRIPTION DESCRIPTION
<<sqrt>> computes the positive square root of the argument. <<sqrt>> computes the positive square root of the argument.
You can modify error handling for this function with
<<matherr>>.
RETURNS RETURNS
On success, the square root is returned. If <[x]> is real and On success, the square root is returned. If <[x]> is real and
@ -59,27 +57,12 @@ PORTABILITY
#ifdef _IEEE_LIBM #ifdef _IEEE_LIBM
return __ieee754_sqrt(x); return __ieee754_sqrt(x);
#else #else
struct exception exc;
double z; double z;
z = __ieee754_sqrt(x); z = __ieee754_sqrt(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<0.0) { if(x<0.0) {
exc.type = DOMAIN; errno = EDOM;
exc.name = "sqrt"; return 0.0/0.0;
exc.err = 0;
exc.arg1 = exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -26,24 +26,12 @@
return __ieee754_acosf(x); return __ieee754_acosf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_acosf(x); z = __ieee754_acosf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabsf(x)>(float)1.0) { if(fabsf(x)>1.0f) {
/* acosf(|x|>1) */ /* acosf(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "acosf"; return (float) nan("");
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = nan("");
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -32,24 +32,12 @@
return __ieee754_acoshf(x); return __ieee754_acoshf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_acoshf(x); z = __ieee754_acoshf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<(float)1.0) { if(x<1.0f) {
/* acoshf(x<1) */ /* acoshf(x<1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "acoshf"; return 0.0f/0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -33,24 +33,12 @@
return __ieee754_asinf(x); return __ieee754_asinf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_asinf(x); z = __ieee754_asinf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabsf(x)>(float)1.0) { if(fabsf(x)>1.0f) {
/* asinf(|x|>1) */ /* asinf(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "asinf"; return (float)nan("");
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = nan("");
if(_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -30,39 +30,19 @@
return __ieee754_atanhf(x); return __ieee754_atanhf(x);
#else #else
float z,y; float z,y;
struct exception exc;
z = __ieee754_atanhf(x); z = __ieee754_atanhf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
y = fabsf(x); y = fabsf(x);
if(y>=(float)1.0) { if(y>=1.0f) {
if(y>(float)1.0) { if(y>1.0f) {
/* atanhf(|x|>1) */ /* atanhf(|x|>1) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "atanhf"; return 0.0f/0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else { } else {
/* atanhf(|x|=1) */ /* atanhf(|x|=1) */
exc.type = SING; errno = EDOM;
exc.name = "atanhf"; return x/0.0f; /* sign(x)*inf */
exc.err = 0; }
exc.arg1 = exc.arg2 = (double)x;
exc.retval = x/0.0; /* sign(x)*inf */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -31,10 +31,9 @@
return __ieee754_coshf(x); return __ieee754_coshf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_coshf(x); z = __ieee754_coshf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabsf(x)>(float)8.9415985107e+01) { if(fabsf(x)>8.9415985107e+01f) {
/* coshf(finite) overflow */ /* coshf(finite) overflow */
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
@ -42,22 +41,8 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "coshf"; return (float)HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -40,7 +40,6 @@ u_threshold= -1.0397208405e+02; /* 0xc2cff1b5 */
return __ieee754_expf(x); return __ieee754_expf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_expf(x); z = __ieee754_expf(x);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(finitef(x)) { if(finitef(x)) {
@ -52,37 +51,12 @@ u_threshold= -1.0397208405e+02; /* 0xc2cff1b5 */
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "expf"; return HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else if(x<u_threshold) { } else if(x<u_threshold) {
/* expf(finite) underflow */ /* expf(finite) underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "expf"; return 0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
} }
return z; return z;

View File

@ -31,28 +31,12 @@
return __ieee754_fmodf(x,y); return __ieee754_fmodf(x,y);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_fmodf(x,y); z = __ieee754_fmodf(x,y);
if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z; if(_LIB_VERSION == _IEEE_ ||isnan(y)||isnan(x)) return z;
if(y==(float)0.0) { if(y==0.0f) {
/* fmodf(x,0) */ /* fmodf(x,0) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "fmodf"; return 0.0f/0.0f;
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
if (_LIB_VERSION == _SVID_)
exc.retval = x;
else
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -29,7 +29,6 @@
return __ieee754_gammaf_r(x,&(_REENT_SIGNGAM(_REENT))); return __ieee754_gammaf_r(x,&(_REENT_SIGNGAM(_REENT)));
#else #else
float y; float y;
struct exception exc;
y = __ieee754_gammaf_r(x,&(_REENT_SIGNGAM(_REENT))); y = __ieee754_gammaf_r(x,&(_REENT_SIGNGAM(_REENT)));
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finitef(y)&&finitef(x)) { if(!finitef(y)&&finitef(x)) {
@ -39,40 +38,14 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
if(floorf(x)==x&&x<=(float)0.0) { if(floorf(x)==x&&x<=0.0f) {
/* gammaf(-integer) or gammaf(0) */ /* gammaf(-integer) or gammaf(0) */
exc.type = SING; errno = EDOM;
exc.name = "gammaf";
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else { } else {
/* gammaf(finite) overflow */ /* gammaf(finite) overflow */
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "gammaf";
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
} }
if (exc.err != 0) return (float)HUGE_VAL;
errno = exc.err;
return (float)exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -31,7 +31,6 @@
return __ieee754_hypotf(x,y); return __ieee754_hypotf(x,y);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_hypotf(x,y); z = __ieee754_hypotf(x,y);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if((!finitef(z))&&finitef(x)&&finitef(y)) { if((!finitef(z))&&finitef(x)&&finitef(y)) {
@ -42,23 +41,8 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "hypotf"; return (float)HUGE_VAL;
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -30,24 +30,12 @@
#ifdef _IEEE_LIBM #ifdef _IEEE_LIBM
return __ieee754_j0f(x); return __ieee754_j0f(x);
#else #else
struct exception exc;
float z = __ieee754_j0f(x); float z = __ieee754_j0f(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(fabsf(x)>(float)X_TLOSS) { if(fabsf(x)>(float)X_TLOSS) {
/* j0f(|x|>X_TLOSS) */ /* j0f(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "j0f"; return 0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif
@ -64,7 +52,6 @@
return __ieee754_y0f(x); return __ieee754_y0f(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_y0f(x); z = __ieee754_y0f(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= (float)0.0){ if(x <= (float)0.0){
@ -75,38 +62,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
/* y0f(0) = -inf or y0f(x<0) = NaN */ /* y0f(0) = -inf or y0f(x<0) = NaN */
exc.type = DOMAIN; /* should be SING for IEEE y0f(0) */ errno = EDOM;
exc.name = "y0f"; return (float)-HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
if(x>(float)X_TLOSS) { if(x>(float)X_TLOSS) {
/* y0f(x>X_TLOSS) */ /* y0f(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "y0f"; return 0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -32,24 +32,12 @@
return __ieee754_j1f(x); return __ieee754_j1f(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_j1f(x); z = __ieee754_j1f(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(fabsf(x)>(float)X_TLOSS) { if(fabsf(x)>(float)X_TLOSS) {
/* j1f(|x|>X_TLOSS) */ /* j1f(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "j1f"; return 0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -66,10 +54,9 @@
return __ieee754_y1f(x); return __ieee754_y1f(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_y1f(x); z = __ieee754_y1f(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= (float)0.0){ if(x <= 0.0f){
/* y1f(0) = -inf or y1f(x<0) = NaN */ /* y1f(0) = -inf or y1f(x<0) = NaN */
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
@ -77,38 +64,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "y1f"; return (float)-HUGE_VAL;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
if(x>(float)X_TLOSS) { if(x>(float)X_TLOSS) {
/* y1f(x>X_TLOSS) */ /* y1f(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "y1f"; return 0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -28,25 +28,12 @@
return __ieee754_jnf(n,x); return __ieee754_jnf(n,x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_jnf(n,x); z = __ieee754_jnf(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(fabsf(x)>(float)X_TLOSS) { if(fabsf(x)>(float)X_TLOSS) {
/* jnf(|x|>X_TLOSS) */ /* jnf(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "jnf"; return 0.0f;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -63,10 +50,9 @@
return __ieee754_ynf(n,x); return __ieee754_ynf(n,x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_ynf(n,x); z = __ieee754_ynf(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= (float)0.0){ if(x <= 0.0f){
/* ynf(n,0) = -inf or ynf(x<0) = NaN */ /* ynf(n,0) = -inf or ynf(x<0) = NaN */
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
@ -74,40 +60,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "ynf"; return (float)-HUGE_VAL;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
if(x>(float)X_TLOSS) { if(x>(float)X_TLOSS) {
/* ynf(x>X_TLOSS) */ /* ynf(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "ynf"; return 0.0f;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -29,7 +29,6 @@
return __ieee754_lgammaf_r(x,&(_REENT_SIGNGAM(_REENT))); return __ieee754_lgammaf_r(x,&(_REENT_SIGNGAM(_REENT)));
#else #else
float y; float y;
struct exception exc;
y = __ieee754_lgammaf_r(x,&(_REENT_SIGNGAM(_REENT))); y = __ieee754_lgammaf_r(x,&(_REENT_SIGNGAM(_REENT)));
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finitef(y)&&finitef(x)) { if(!finitef(y)&&finitef(x)) {
@ -39,34 +38,14 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "lgammaf"; if(floorf(x)==x&&x<=0.0f) {
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if(floorf(x)==x&&x<=(float)0.0) {
/* lgammaf(-integer) */ /* lgammaf(-integer) */
exc.type = SING; errno = EDOM;
if (_LIB_VERSION == _POSIX_) } else {
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* lgammaf(finite) overflow */ /* lgammaf(finite) overflow */
exc.type = OVERFLOW; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) }
errno = ERANGE; return (float)HUGE_VAL;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -32,43 +32,23 @@
return __ieee754_logf(x); return __ieee754_logf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_logf(x); z = __ieee754_logf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x) || x > (float)0.0) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0f) return z;
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
double inf = 0.0; double inf = 0.0;
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "logf"; if(x==0.0f) {
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if(x==(float)0.0) {
/* logf(0) */ /* logf(0) */
exc.type = SING; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) return (float)-HUGE_VAL;
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
} else { } else {
/* logf(x<0) */ /* logf(x<0) */
exc.type = DOMAIN; errno = EDOM;
if (_LIB_VERSION == _POSIX_) return nan("");
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
exc.retval = nan("");
} }
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
#endif #endif
} }

View File

@ -31,44 +31,24 @@
return __ieee754_log10f(x); return __ieee754_log10f(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_log10f(x); z = __ieee754_log10f(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<=(float)0.0) { if(x<=0.0f) {
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
double inf = 0.0; double inf = 0.0;
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "log10f"; if(x==0.0f) {
exc.err = 0; /* log10f(0) */
exc.arg1 = exc.arg2 = (double)x; errno = ERANGE;
if (_LIB_VERSION == _SVID_) return (float)-HUGE_VAL;
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if(x==(float)0.0) {
/* log10f(0) */
exc.type = SING;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
} else { } else {
/* log10f(x<0) */ /* log10f(x<0) */
exc.type = DOMAIN; errno = EDOM;
if (_LIB_VERSION == _POSIX_) return nan("");
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
exc.retval = nan("");
} }
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -32,136 +32,50 @@
return __ieee754_powf(x,y); return __ieee754_powf(x,y);
#else #else
float z; float z;
struct exception exc;
z=__ieee754_powf(x,y); z=__ieee754_powf(x,y);
if(_LIB_VERSION == _IEEE_|| isnan(y)) return z; if(_LIB_VERSION == _IEEE_|| isnan(y)) return z;
if(isnan(x)) { if(isnan(x)) {
if(y==(float)0.0) { if(y==0.0f) {
/* powf(NaN,0.0) */ /* powf(NaN,0.0) */
/* error only if _LIB_VERSION == _SVID_ & _XOPEN_ */ /* Not an error. */
exc.type = DOMAIN; return 1.0f;
exc.name = "powf";
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
exc.retval = 1.0;
if (_LIB_VERSION == _IEEE_ ||
_LIB_VERSION == _POSIX_) exc.retval = 1.0;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
} }
if(x==(float)0.0){ if(x==0.0f){
if(y==(float)0.0) { if(y==0.0f) {
/* powf(0.0,0.0) */ /* powf(0.0,0.0) */
/* error only if _LIB_VERSION == _SVID_ */ /* Not an error. */
exc.type = DOMAIN; return 1.0f;
exc.name = "powf";
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
exc.retval = 0.0;
if (_LIB_VERSION != _SVID_) exc.retval = 1.0;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
if(finitef(y)&&y<(float)0.0) { if(finitef(y)&&y<0.0f) {
/* 0**neg */ /* 0**neg */
exc.type = DOMAIN; errno = EDOM;
exc.name = "powf"; return (float)-HUGE_VAL;
exc.err = 0; }
exc.arg1 = (double)x;
exc.arg2 = (double)y;
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
}
return z; return z;
} }
if(!finitef(z)) { if(!finitef(z)) {
if(finitef(x)&&finitef(y)) { if(finitef(x)&&finitef(y)) {
if(isnan(z)) { if(isnan(z)) {
/* neg**non-integral */ /* neg**non-integral */
exc.type = DOMAIN; errno = EDOM;
exc.name = "powf"; /* Use a float divide, to avoid a soft-float double
exc.err = 0; divide call on single-float only targets. */
exc.arg1 = (double)x; return 0.0f/0.0f;
exc.arg2 = (double)y; } else {
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
/* Use a float divide, to avoid a soft-float double
divide call on single-float only targets. */
exc.retval = (0.0f/0.0f); /* X/Open allow NaN */
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else {
/* powf(x,y) overflow */ /* powf(x,y) overflow */
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "powf"; if(x<0.0f&&rintf(y)!=y)
exc.err = 0; return (float)-HUGE_VAL;
exc.arg1 = (double)x; return (float)HUGE_VAL;
exc.arg2 = (double)y; }
if (_LIB_VERSION == _SVID_) {
exc.retval = HUGE;
y *= 0.5;
if(x<0.0f&&rintf(y)!=y) exc.retval = -HUGE;
} else {
exc.retval = HUGE_VAL;
y *= 0.5;
if(x<0.0f&&rintf(y)!=y) exc.retval = -HUGE_VAL;
}
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
}
} }
} }
if(z==(float)0.0&&finitef(x)&&finitef(y)) { if(z==0.0f&&finitef(x)&&finitef(y)) {
/* powf(x,y) underflow */ /* powf(x,y) underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "powf"; return 0.0f;
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
return z; return z;
#endif #endif

View File

@ -31,25 +31,12 @@
return __ieee754_remainderf(x,y); return __ieee754_remainderf(x,y);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_remainderf(x,y); z = __ieee754_remainderf(x,y);
if(_LIB_VERSION == _IEEE_ || isnan(y)) return z; if(_LIB_VERSION == _IEEE_ || isnan(y)) return z;
if(y==(float)0.0) { if(y==0.0f) {
/* remainderf(x,0) */ /* remainderf(x,0) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "remainderf"; return 0.0f/0.0f;
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)y;
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -47,42 +47,17 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
struct exception exc;
z = __ieee754_scalbf(x,fn); z = __ieee754_scalbf(x,fn);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(!(finitef(z)||isnan(z))&&finitef(x)) { if(!(finitef(z)||isnan(z))&&finitef(x)) {
/* scalbf overflow; SVID also returns +-HUGE_VAL */ /* scalbf overflow; */
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "scalbf"; return (x > 0.0 ? HUGE_VAL : -HUGE_VAL);
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)fn;
exc.retval = x > 0.0 ? HUGE_VAL : -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(z==(float)0.0&&z!=x) { if(z==0.0f&&z!=x) {
/* scalbf underflow */ /* scalbf underflow */
exc.type = UNDERFLOW; errno = ERANGE;
exc.name = "scalbf"; return copysign(0.0,x);
exc.err = 0;
exc.arg1 = (double)x;
exc.arg2 = (double)fn;
exc.retval = copysign(0.0,x);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
#ifndef _SCALB_INT #ifndef _SCALB_INT
if(!finitef(fn)) errno = ERANGE; if(!finitef(fn)) errno = ERANGE;

View File

@ -31,7 +31,6 @@
return __ieee754_sinhf(x); return __ieee754_sinhf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_sinhf(x); z = __ieee754_sinhf(x);
if(_LIB_VERSION == _IEEE_) return z; if(_LIB_VERSION == _IEEE_) return z;
if(!finitef(z)&&finitef(x)) { if(!finitef(z)&&finitef(x)) {
@ -42,22 +41,8 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = OVERFLOW; errno = ERANGE;
exc.name = "sinhf"; return ( (x>0.0f) ? HUGE_VAL : -HUGE_VAL);
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = ( (x>0.0) ? HUGE : -HUGE);
else
exc.retval = ( (x>0.0) ? HUGE_VAL : -HUGE_VAL);
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -31,27 +31,12 @@
return __ieee754_sqrtf(x); return __ieee754_sqrtf(x);
#else #else
float z; float z;
struct exception exc;
z = __ieee754_sqrtf(x); z = __ieee754_sqrtf(x);
if(_LIB_VERSION == _IEEE_ || isnan(x)) return z; if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
if(x<(float)0.0) { if(x<0.0f) {
/* sqrtf(negative) */ /* sqrtf(negative) */
exc.type = DOMAIN; errno = EDOM;
exc.name = "sqrtf"; return 0.0f/0.0f;
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = 0.0;
else
exc.retval = 0.0/0.0;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -31,7 +31,6 @@
return __ieee754_gamma_r(x,signgamp); return __ieee754_gamma_r(x,signgamp);
#else #else
double y; double y;
struct exception exc;
y = __ieee754_gamma_r(x,signgamp); y = __ieee754_gamma_r(x,signgamp);
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finite(y)&&finite(x)) { if(!finite(y)&&finite(x)) {
@ -41,33 +40,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "gamma"; if(floor(x)==x&&x<=0.0)
exc.err = 0; /* gamma(-integer) or gamma(0) */
exc.arg1 = exc.arg2 = (double)x; errno = EDOM;
if (_LIB_VERSION == _SVID_) else
exc.retval = HUGE; /* gamma(finite) overflow */
else errno = ERANGE;
exc.retval = HUGE_VAL; return HUGE_VAL;
if(floor(x)==x&&x<=0.0) {
/* gamma(-integer) or gamma(0) */
exc.type = SING;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* gamma(finite) overflow */
exc.type = OVERFLOW;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -31,7 +31,6 @@
return __ieee754_lgamma_r(x,signgamp); return __ieee754_lgamma_r(x,signgamp);
#else #else
double y; double y;
struct exception exc;
y = __ieee754_lgamma_r(x,signgamp); y = __ieee754_lgamma_r(x,signgamp);
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finite(y)&&finite(x)) { if(!finite(y)&&finite(x)) {
@ -41,34 +40,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "lgamma"; if(floor(x)==x&&x<=0.0)
exc.err = 0; /* lgamma(-integer) */
exc.arg1 = exc.arg2 = (double)x; errno = EDOM;
if (_LIB_VERSION == _SVID_) else
exc.retval = HUGE; /* lgamma(finite) overflow */
else errno = ERANGE;
exc.retval = HUGE_VAL; return HUGE_VAL;
if(floor(x)==x&&x<=0.0) {
/* lgamma(-integer) */
exc.type = SING;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* lgamma(finite) overflow */
exc.type = OVERFLOW;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -31,7 +31,6 @@
return __ieee754_gammaf_r(x,signgamp); return __ieee754_gammaf_r(x,signgamp);
#else #else
float y; float y;
struct exception exc;
y = __ieee754_gammaf_r(x,signgamp); y = __ieee754_gammaf_r(x,signgamp);
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finitef(y)&&finitef(x)) { if(!finitef(y)&&finitef(x)) {
@ -41,33 +40,14 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "gammaf"; if(floorf(x)==x&&x<=0.0f) {
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if(floorf(x)==x&&x<=(float)0.0) {
/* gammaf(-integer) or gamma(0) */ /* gammaf(-integer) or gamma(0) */
exc.type = SING; errno = EDOM;
if (_LIB_VERSION == _POSIX_) } else {
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* gammaf(finite) overflow */ /* gammaf(finite) overflow */
exc.type = OVERFLOW; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) }
errno = ERANGE; return (float)HUGE_VAL;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -31,7 +31,6 @@
return __ieee754_lgammaf_r(x,signgamp); return __ieee754_lgammaf_r(x,signgamp);
#else #else
float y; float y;
struct exception exc;
y = __ieee754_lgammaf_r(x,signgamp); y = __ieee754_lgammaf_r(x,signgamp);
if(_LIB_VERSION == _IEEE_) return y; if(_LIB_VERSION == _IEEE_) return y;
if(!finitef(y)&&finitef(x)) { if(!finitef(y)&&finitef(x)) {
@ -41,34 +40,14 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.name = "lgammaf"; if(floorf(x)==x&&x<=0.0f) {
exc.err = 0;
exc.arg1 = exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = HUGE;
else
exc.retval = HUGE_VAL;
if(floorf(x)==x&&x<=(float)0.0) {
/* lgammaf(-integer) or lgamma(0) */ /* lgammaf(-integer) or lgamma(0) */
exc.type = SING; errno = EDOM;
if (_LIB_VERSION == _POSIX_) } else {
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
} else {
/* lgammaf(finite) overflow */ /* lgammaf(finite) overflow */
exc.type = OVERFLOW; errno = ERANGE;
if (_LIB_VERSION == _POSIX_) }
errno = ERANGE; return (float)HUGE_VAL;
else if (!matherr(&exc)) {
errno = ERANGE;
}
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return y; return y;
#endif #endif

View File

@ -33,18 +33,15 @@ RETURNS
<<acosh>> and <<acoshf>> return the calculated value. If <[x]> <<acosh>> and <<acoshf>> return the calculated value. If <[x]>
less than 1, the return value is NaN and <<errno>> is set to <<EDOM>>. less than 1, the return value is NaN and <<errno>> is set to <<EDOM>>.
You can change the error-handling behavior with the non-ANSI
<<matherr>> function.
PORTABILITY PORTABILITY
Neither <<acosh>> nor <<acoshf>> are ANSI C. They are not recommended Neither <<acosh>> nor <<acoshf>> are ANSI C. They are not recommended
for portable programs. for portable programs.
QUICKREF QUICKREF
ansi svid posix rentrant ansi posix rentrant
acos n,n,n,m acos n,n,m
acosf n,n,n,m acosf n,n,m
MATHREF MATHREF
acosh, NAN, arg,DOMAIN,EDOM acosh, NAN, arg,DOMAIN,EDOM

View File

@ -55,9 +55,6 @@ RETURNS
is 1, the global <<errno>> is set to <<EDOM>>; and the result is is 1, the global <<errno>> is set to <<EDOM>>; and the result is
infinity with the same sign as <<x>>. A <<SING error>> is reported. infinity with the same sign as <<x>>. A <<SING error>> is reported.
You can modify the error handling for these routines using
<<matherr>>.
PORTABILITY PORTABILITY
Neither <<atanh>> nor <<atanhf>> are ANSI C. Neither <<atanh>> nor <<atanhf>> are ANSI C.

View File

@ -41,8 +41,6 @@ RETURNS
<<hypot>> returns <<HUGE_VAL>> and sets <<errno>> to <<hypot>> returns <<HUGE_VAL>> and sets <<errno>> to
<<ERANGE>>. <<ERANGE>>.
You can change the error treatment with <<matherr>>.
PORTABILITY PORTABILITY
<<hypot>> and <<hypotf>> are not ANSI C. */ <<hypot>> and <<hypotf>> are not ANSI C. */

View File

@ -97,8 +97,6 @@ When <[x]> is a nonpositive integer, <<gamma>> returns <<HUGE_VAL>>
and <<errno>> is set to <<EDOM>>. If the result overflows, <<gamma>> and <<errno>> is set to <<EDOM>>. If the result overflows, <<gamma>>
returns <<HUGE_VAL>> and <<errno>> is set to <<ERANGE>>. returns <<HUGE_VAL>> and <<errno>> is set to <<ERANGE>>.
You can modify this error treatment using <<matherr>>.
PORTABILITY PORTABILITY
Neither <<gamma>> nor <<gammaf>> is ANSI C. */ Neither <<gamma>> nor <<gammaf>> is ANSI C. */

View File

@ -37,13 +37,10 @@ o $\pi$.
(not a number) the global variable <<errno>> is set to <<EDOM>>, and a (not a number) the global variable <<errno>> is set to <<EDOM>>, and a
<<DOMAIN error>> message is sent as standard error output. <<DOMAIN error>> message is sent as standard error output.
You can modify error handling for these functions using <<matherr>>.
QUICKREF QUICKREF
ansi svid posix rentrant ansi posix rentrant
acos y,y,y,m acos y,y,m
acosf n,n,n,m acosf n,n,m
MATHREF MATHREF
acos, [-1,1], acos(arg),,, acos, [-1,1], acos(arg),,,

View File

@ -41,8 +41,6 @@ $-\pi$ to $\pi$.
If both <[x]> and <[y]> are 0.0, <<atan2>> causes a <<DOMAIN>> error. If both <[x]> and <[y]> are 0.0, <<atan2>> causes a <<DOMAIN>> error.
You can modify error handling for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<atan2>> is ANSI C. <<atan2f>> is an extension. <<atan2>> is ANSI C. <<atan2f>> is an extension.

View File

@ -31,9 +31,6 @@ RETURNS
an overflow, <<cosh>> returns the value <<HUGE_VAL>> with the an overflow, <<cosh>> returns the value <<HUGE_VAL>> with the
appropriate sign, and the global value <<errno>> is set to <<ERANGE>>. appropriate sign, and the global value <<errno>> is set to <<ERANGE>>.
You can modify error handling for these functions using the
function <<matherr>>.
PORTABILITY PORTABILITY
<<cosh>> is ANSI. <<cosh>> is ANSI.
<<coshf>> is an extension. <<coshf>> is an extension.

View File

@ -43,8 +43,6 @@ magnitude of <[y]>.
<<fmod(<[x]>,0)>> returns NaN, and sets <<errno>> to <<EDOM>>. <<fmod(<[x]>,0)>> returns NaN, and sets <<errno>> to <<EDOM>>.
You can modify error treatment for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<fmod>> is ANSI C. <<fmodf>> is an extension. <<fmod>> is ANSI C. <<fmodf>> is an extension.
*/ */

View File

@ -38,8 +38,7 @@ RETURNS
Normally, returns the calculated value. When <[x]> is zero, the Normally, returns the calculated value. When <[x]> is zero, the
returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>. returned value is <<-HUGE_VAL>> and <<errno>> is set to <<ERANGE>>.
When <[x]> is negative, the returned value is <<-HUGE_VAL>> and When <[x]> is negative, the returned value is <<-HUGE_VAL>> and
<<errno>> is set to <<EDOM>>. You can control the error behavior via <<errno>> is set to <<EDOM>>.
<<matherr>>.
PORTABILITY PORTABILITY
<<log>> is ANSI. <<logf>> is an extension. <<log>> is ANSI. <<logf>> is an extension.

View File

@ -31,8 +31,6 @@ RETURNS
is set to <<EDOM>>. If <[x]> and <[y]> are both 0, then is set to <<EDOM>>. If <[x]> and <[y]> are both 0, then
<<pow>> and <<powf>> return <<1>>. <<pow>> and <<powf>> return <<1>>.
You can modify error handling for these functions using <<matherr>>.
PORTABILITY PORTABILITY
<<pow>> is ANSI C. <<powf>> is an extension. */ <<pow>> is ANSI C. <<powf>> is an extension. */

View File

@ -127,25 +127,12 @@ None of the Bessel functions are in ANSI C.
return jn(n,x); return jn(n,x);
#else #else
double z; double z;
struct exception exc;
z = jn(n,x); z = jn(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(fabs(x)>X_TLOSS) { if(fabs(x)>X_TLOSS) {
/* jn(|x|>X_TLOSS) */ /* jn(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "jn"; return 0.0;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -162,7 +149,6 @@ None of the Bessel functions are in ANSI C.
return yn(n,x); return yn(n,x);
#else #else
double z; double z;
struct exception exc;
z = yn(n,x); z = yn(n,x);
if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnan(x) ) return z;
if(x <= 0.0){ if(x <= 0.0){
@ -173,40 +159,13 @@ None of the Bessel functions are in ANSI C.
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "yn"; return -HUGE_VAL;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} }
if(x>X_TLOSS) { if(x>X_TLOSS) {
/* yn(x>X_TLOSS) */ /* yn(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "yn"; return 0.0;
exc.err = 0;
exc.arg1 = n;
exc.arg2 = x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -28,25 +28,12 @@
return jnf(n,x); return jnf(n,x);
#else #else
float z; float z;
struct exception exc;
z = jnf(n,x); z = jnf(n,x);
if(_LIB_VERSION == _IEEE_ || isnanf(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnanf(x) ) return z;
if(fabsf(x)>(float)X_TLOSS) { if(fabsf(x)>(float)X_TLOSS) {
/* jnf(|x|>X_TLOSS) */ /* jnf(|x|>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "jnf"; return 0.0f;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return exc.retval;
} else } else
return z; return z;
#endif #endif
@ -63,10 +50,9 @@
return ynf(n,x); return ynf(n,x);
#else #else
float z; float z;
struct exception exc;
z = ynf(n,x); z = ynf(n,x);
if(_LIB_VERSION == _IEEE_ || isnanf(x) ) return z; if(_LIB_VERSION == _IEEE_ || isnanf(x) ) return z;
if(x <= (float)0.0){ if(x <= 0.0f){
/* ynf(n,0) = -inf or ynf(x<0) = NaN */ /* ynf(n,0) = -inf or ynf(x<0) = NaN */
#ifndef HUGE_VAL #ifndef HUGE_VAL
#define HUGE_VAL inf #define HUGE_VAL inf
@ -74,40 +60,13 @@
SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */ SET_HIGH_WORD(inf,0x7ff00000); /* set inf to infinite */
#endif #endif
exc.type = DOMAIN; /* should be SING for IEEE */ errno = EDOM;
exc.name = "ynf"; return (float)-HUGE_VAL;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
if (_LIB_VERSION == _SVID_)
exc.retval = -HUGE;
else
exc.retval = -HUGE_VAL;
if (_LIB_VERSION == _POSIX_)
errno = EDOM;
else if (!matherr(&exc)) {
errno = EDOM;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} }
if(x>(float)X_TLOSS) { if(x>(float)X_TLOSS) {
/* ynf(x>X_TLOSS) */ /* ynf(x>X_TLOSS) */
exc.type = TLOSS; errno = ERANGE;
exc.name = "ynf"; return 0.0f;
exc.err = 0;
exc.arg1 = (double)n;
exc.arg2 = (double)x;
exc.retval = 0.0;
if (_LIB_VERSION == _POSIX_)
errno = ERANGE;
else if (!matherr(&exc)) {
errno = ERANGE;
}
if (exc.err != 0)
errno = exc.err;
return (float)exc.retval;
} else } else
return z; return z;
#endif #endif

View File

@ -33,22 +33,6 @@ char *mname;
int verbose; int verbose;
/* To test exceptions - we trap them all and return a known value */
int
matherr (struct exception *e)
{
if (traperror)
{
merror = e->type + 12;
mname = e->name;
e->retval = mretval;
errno = merror + 24;
return 1;
}
return 0;
}
void translate_to (FILE *file, void translate_to (FILE *file,
double r) double r)
{ {
@ -90,6 +74,7 @@ ffcheck (double is,
#if 0 #if 0
if (p->qs[0].merror != merror) if (p->qs[0].merror != merror)
{ {
/* Beware, matherr doesn't exist anymore. */
printf("testing %s_vec.c:%d, matherr wrong: %d %d\n", printf("testing %s_vec.c:%d, matherr wrong: %d %d\n",
name, p->line, merror, p->qs[0].merror); name, p->line, merror, p->qs[0].merror);
} }

View File

@ -907,7 +907,6 @@ malloc_stats SIGFE
malloc_trim SIGFE malloc_trim SIGFE
malloc_usable_size SIGFE malloc_usable_size SIGFE
mallopt SIGFE mallopt SIGFE
matherr NOSIGFE
mblen NOSIGFE mblen NOSIGFE
mbrlen NOSIGFE mbrlen NOSIGFE
mbrtowc NOSIGFE mbrtowc NOSIGFE

View File

@ -366,7 +366,6 @@ _lseek64 = lseek64 SIGFE
_lstat = lstat SIGFE _lstat = lstat SIGFE
_lstat64 = lstat64 SIGFE _lstat64 = lstat64 SIGFE
_malloc = malloc SIGFE _malloc = malloc SIGFE
_matherr = matherr NOSIGFE
_mblen = mblen NOSIGFE _mblen = mblen NOSIGFE
_mbstowcs = mbstowcs NOSIGFE _mbstowcs = mbstowcs NOSIGFE
_mbtowc = mbtowc NOSIGFE _mbtowc = mbtowc NOSIGFE

View File

@ -504,12 +504,13 @@ details. */
331: Add timer_getoverrun, DELAYTIMER_MAX. 331: Add timer_getoverrun, DELAYTIMER_MAX.
332: Add signalfd. 332: Add signalfd.
333: Add timerfd_create, timerfd_gettime, timerfd_settime. 333: Add timerfd_create, timerfd_gettime, timerfd_settime.
334: Remove matherr.
Note that we forgot to bump the api for ualarm, strtoll, strtoull, Note that we forgot to bump the api for ualarm, strtoll, strtoull,
sigaltstack, sethostname. */ sigaltstack, sethostname. */
#define CYGWIN_VERSION_API_MAJOR 0 #define CYGWIN_VERSION_API_MAJOR 0
#define CYGWIN_VERSION_API_MINOR 333 #define CYGWIN_VERSION_API_MINOR 334
/* There is also a compatibity version number associated with the shared memory /* There is also a compatibity version number associated with the shared memory
regions. It is incremented when incompatible changes are made to the shared regions. It is incremented when incompatible changes are made to the shared

View File

@ -52,12 +52,12 @@ __FLT_ABI(acosh) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_NAN || x < __FLT_CST(1.0)) if (x_class == FP_NAN || x < __FLT_CST(1.0))
{ {
__FLT_RPT_DOMAIN ("acosh", x, 0.0, __FLT_NAN); errno = EDOM;
return __FLT_NAN; return __FLT_NAN;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)
{ {
__FLT_RPT_DOMAIN ("acosh", x, 0.0, __FLT_NAN); errno = EDOM;
return __FLT_NAN; return __FLT_NAN;
} }

View File

@ -120,34 +120,3 @@
#else #else
# error "Unknown complex number type" # error "Unknown complex number type"
#endif #endif
#define __FLT_RPT_DOMAIN(NAME, ARG1, ARG2, RSLT) \
errno = EDOM, \
__mingw_raise_matherr (_DOMAIN, __FLT_REPORT(NAME), (double) (ARG1), \
(double) (ARG2), (double) (RSLT))
#define __FLT_RPT_ERANGE(NAME, ARG1, ARG2, RSLT, OVL) \
errno = ERANGE, \
__mingw_raise_matherr (((OVL) ? _OVERFLOW : _UNDERFLOW), \
__FLT_REPORT(NAME), (double) (ARG1), \
(double) (ARG2), (double) (RSLT))
#ifdef __CYGWIN__
inline void __attribute__ ((always_inline))
__mingw_raise_matherr (int typ, const char *name, double a1, double a2,
double rslt)
{
if (_LIB_VERSION != _POSIX_)
{
struct exception ex;
ex.type = typ;
ex.name = (char*)name;
ex.arg1 = a1;
ex.arg2 = a2;
ex.retval = rslt;
matherr(&ex);
}
}
#define _DOMAIN DOMAIN
#define _OVERFLOW OVERFLOW
#define _UNDERFLOW UNDERFLOW
#endif

View File

@ -53,12 +53,12 @@ __FLT_ABI(cos) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_NAN) if (x_class == FP_NAN)
{ {
__FLT_RPT_DOMAIN ("cos", x, 0.0, x); errno = EDOM;
return x; return x;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)
{ {
__FLT_RPT_DOMAIN ("cos", x, 0.0, __FLT_NAN); errno = EDOM;
return __FLT_NAN; return __FLT_NAN;
} }
return (__FLT_TYPE) __cosl_internal ((long double) x); return (__FLT_TYPE) __cosl_internal ((long double) x);

View File

@ -109,13 +109,13 @@ __FLT_ABI(exp) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_NAN) if (x_class == FP_NAN)
{ {
__FLT_RPT_DOMAIN ("exp", x, 0.0, x); errno = EDOM;
return x; return x;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)
{ {
__FLT_TYPE r = (signbit (x) ? __FLT_CST (0.0) : __FLT_HUGE_VAL); __FLT_TYPE r = (signbit (x) ? __FLT_CST (0.0) : __FLT_HUGE_VAL);
__FLT_RPT_ERANGE ("exp", x, 0.0, r, signbit (x)); errno = ERANGE;
return r; return r;
} }
else if (x_class == FP_ZERO) else if (x_class == FP_ZERO)
@ -124,7 +124,7 @@ __FLT_ABI(exp) (__FLT_TYPE x)
} }
else if (x > __FLT_MAXLOG) else if (x > __FLT_MAXLOG)
{ {
__FLT_RPT_ERANGE ("exp", x, 0.0, __FLT_HUGE_VAL, 1); errno = ERANGE;
return __FLT_HUGE_VAL; return __FLT_HUGE_VAL;
} }
else if (x < __FLT_MINLOG) else if (x < __FLT_MINLOG)

View File

@ -51,7 +51,7 @@ __FLT_ABI(expm1) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_NAN) if (x_class == FP_NAN)
{ {
__FLT_RPT_DOMAIN ("expm1", x, 0.0, x); errno = EDOM;
return x; return x;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)

View File

@ -53,12 +53,12 @@ __FLT_ABI(log) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_ZERO) if (x_class == FP_ZERO)
{ {
__FLT_RPT_ERANGE ("log", x, 0.0, -__FLT_HUGE_VAL, 1); errno = ERANGE;
return -__FLT_HUGE_VAL; return -__FLT_HUGE_VAL;
} }
else if (signbit (x)) else if (signbit (x))
{ {
__FLT_RPT_DOMAIN ("log", x, 0.0, __FLT_NAN); errno = EDOM;
return __FLT_NAN; return __FLT_NAN;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)

View File

@ -122,7 +122,7 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y)
else if (x_class == FP_NAN || y_class == FP_NAN) else if (x_class == FP_NAN || y_class == FP_NAN)
{ {
rslt = (signbit(x) ? -__FLT_NAN : __FLT_NAN); rslt = (signbit(x) ? -__FLT_NAN : __FLT_NAN);
__FLT_RPT_DOMAIN ("pow", x, y, rslt); errno = EDOM;
return rslt; return rslt;
} }
else if (x_class == FP_ZERO) else if (x_class == FP_ZERO)
@ -133,7 +133,7 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y)
if (signbit(x) && internal_modf (y, &d) != 0.0) if (signbit(x) && internal_modf (y, &d) != 0.0)
{ {
return signbit (y) ? (1.0 / -x) : __FLT_CST (0.0); return signbit (y) ? (1.0 / -x) : __FLT_CST (0.0);
/*__FLT_RPT_DOMAIN ("pow", x, y, -__FLT_NAN); /*errno = EDOM;
return -__FLT_NAN; */ return -__FLT_NAN; */
} }
odd_y = (internal_modf (__FLT_ABI (ldexp) (y, -1), &d) != 0.0) ? 1 : 0; odd_y = (internal_modf (__FLT_ABI (ldexp) (y, -1), &d) != 0.0) ? 1 : 0;
@ -167,7 +167,7 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y)
if (signbit(x) && internal_modf (y, &d) != 0.0) if (signbit(x) && internal_modf (y, &d) != 0.0)
{ {
return signbit(y) ? 1.0 / -x : -x; return signbit(y) ? 1.0 / -x : -x;
/*__FLT_RPT_DOMAIN ("pow", x, y, -__FLT_NAN); /*errno = EDOM;
return -__FLT_NAN;*/ return -__FLT_NAN;*/
} }
odd_y = (internal_modf (__FLT_ABI (ldexp) (y, -1), &d) != 0.0) ? 1 : 0; odd_y = (internal_modf (__FLT_ABI (ldexp) (y, -1), &d) != 0.0) ? 1 : 0;
@ -195,7 +195,7 @@ __FLT_ABI(pow) (__FLT_TYPE x, __FLT_TYPE y)
{ {
if (signbit (x)) if (signbit (x))
{ {
__FLT_RPT_DOMAIN ("pow", x, y, -__FLT_NAN); errno = EDOM;
return -__FLT_NAN; return -__FLT_NAN;
} }
if (y == __FLT_CST(0.5)) if (y == __FLT_CST(0.5))

View File

@ -83,7 +83,7 @@ __FLT_ABI(__powi) (__FLT_TYPE x, int y)
else if (x_class == FP_NAN) else if (x_class == FP_NAN)
{ {
rslt = (signbit(x) ? -__FLT_NAN : __FLT_NAN); rslt = (signbit(x) ? -__FLT_NAN : __FLT_NAN);
__FLT_RPT_DOMAIN ("__powi", x, (__FLT_TYPE) y, rslt); errno = EDOM;
return rslt; return rslt;
} }
else if (x_class == FP_ZERO) else if (x_class == FP_ZERO)

View File

@ -53,12 +53,12 @@ __FLT_ABI(sin) (__FLT_TYPE x)
int x_class = fpclassify (x); int x_class = fpclassify (x);
if (x_class == FP_NAN) if (x_class == FP_NAN)
{ {
__FLT_RPT_DOMAIN ("sin", x, 0.0, x); errno = EDOM;
return x; return x;
} }
else if (x_class == FP_INFINITE) else if (x_class == FP_INFINITE)
{ {
__FLT_RPT_DOMAIN ("sin", x, 0.0, __FLT_NAN); errno = EDOM;
return __FLT_NAN; return __FLT_NAN;
} }
return (__FLT_TYPE) __sinl_internal ((long double) x); return (__FLT_TYPE) __sinl_internal ((long double) x);

View File

@ -73,7 +73,7 @@ __FLT_ABI (sqrt) (__FLT_TYPE x)
if (x_class == FP_ZERO) if (x_class == FP_ZERO)
return __FLT_CST (-0.0); return __FLT_CST (-0.0);
__FLT_RPT_DOMAIN ("sqrt", x, 0.0, x); errno = EDOM;
return x; return x;
} }
else if (x_class == FP_ZERO) else if (x_class == FP_ZERO)

View File

@ -53,6 +53,9 @@ What changed:
- Wctype functions updated to Unicode 11.0. - Wctype functions updated to Unicode 11.0.
- Remove matherr, and SVID and X/Open math library configurations.
Default math library configuration is now IEEE.
Bug Fixes Bug Fixes
--------- ---------

View File

@ -86,6 +86,11 @@ to free the parent directory.
Wctype functions updated to Unicode 11.0. Wctype functions updated to Unicode 11.0.
</para></listitem> </para></listitem>
</para></listitem>
Remove matherr, and SVID and X/Open math library configurations.
Default math library configuration is now IEEE.
<listitem><para>
</itemizedlist> </itemizedlist>
</sect2> </sect2>