Go to file
Joseph Myers 73e28d9c88 soft-fp: Refactor exception handling for comparisons.
This patch refactors how soft-fp comparisons handle setting exceptions
for NaN operands, so that exceptions are set through the FP_CMP macros
rather than directly in the C files calling them.

The _FP_CMP* and FP_CMP* macros gain an extra argument to specify when
exceptions should be set, 0 for no exception setting (I'm not sure
this is actually needed - at least it's not needed for IEEE operations
in glibc / libgcc, but might be relevant in some cases for kernel
use), 1 for exceptions only for signaling NaNs and 2 for exceptions
for all NaNs.  This argument is handled through _FP_CMP_CHECK_NAN,
newly called by the _FP_CMP* macros when a NaN is encountered.  Calls
to these macros are updated, which eliminates all the existing
checking and exception setting in soft-fp *.c files in glibc.

Tested for powerpc-nofpu.  (The __unord* functions have no code
changes; the __eq* / __ge* / __le* functions get slightly larger, but
I don't think that's significant.)

	* soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
	(_FP_CMP): Add extra argument EX.  Call _FP_CMP_CHECK_NAN.
	(_FP_CMP_EQ): Likewise.
	(_FP_CMP_UNORD): Likewise.
	* soft-fp/double.h (FP_CMP_D): Add extra argument EX.
	(FP_CMP_EQ_D): Likewise.
	(FP_CMP_UNORD_D): Likewise.
	* soft-fp/extended.h (FP_CMP_E): Likewise.
	(FP_CMP_EQ_E): Likewise.
	(FP_CMP_UNORD_E): Likewise.
	* soft-fp/quad.h (FP_CMP_Q): Likewise.
	(FP_CMP_EQ_Q): Likewise.
	(FP_CMP_UNORD_Q): Likewise.
	* soft-fp/single.h (FP_CMP_S): Likewise.
	(FP_CMP_EQ_S): Likewise.
	(FP_CMP_UNORD_S): Likewise.
	* soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
	* soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
	* soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
	* soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
	* soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
	* soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
	* soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
	* soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
	* soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
	* soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
	* soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
	* soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
	* sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
	to FP_CMP_Q.
	* sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
	FP_CMP_Q.
	* sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
	* sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
	FP_CMP_EQ_Q.
	* sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
	FP_CMP_Q.
	* sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
	* sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
	* sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
	* sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
	FP_CMP_EQ_Q.
	* sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
	FP_CMP_Q.
	* sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
	* sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
	FP_CMP_EQ_Q.
	* sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
	FP_CMP_Q.
	* sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
	* sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
	* sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
	* sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
	FP_CMP_EQ_Q.
2014-10-09 01:03:56 +00:00
argp
assert Remove redundant C locale settings. 2014-06-07 19:58:36 +00:00
benchtests PowerPC: memset optimization for POWER8/PPC64 2014-09-10 07:39:46 -04:00
bits
catgets Remove redundant CPPFLAGS for some programs 2014-08-21 10:27:13 +05:30
conf
conform conformtest: clean up POSIX expectations for sys/mman.h, sys/stat.h, sys/types.h. 2014-06-11 23:16:23 +00:00
crypt crypt: don't include ufc-crypt.h multiple times 2014-06-06 18:25:31 -04:00
csu Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
ctype
debug Fix -Wundef warning on PAGE_COPY_THRESHOLD 2014-07-03 01:49:43 +05:30
dirent
dlfcn Include .interp section only for libc.so 2014-09-16 22:19:22 +05:30
elf Remove unnecessarily nested function in do_lookup_unique. 2014-10-08 15:18:02 -07:00
gmon
gnulib
grp
gshadow
hesiod
hurd
iconv Complete the removal of __gconv_translit_find 2014-09-12 09:17:32 +02:00
iconvdata CVE-2014-6040: Crashes on invalid input in IBM gconv modules [BZ #17325] 2014-09-03 19:46:42 +02:00
include Update version.h and include/features.h for 2.20 release 2014-09-07 18:09:09 +10:00
inet Return failure in getnetgrent only when all netgroups have been searched (#17363) 2014-09-10 21:51:50 +05:30
intl tst-gettext2: make setup more robust 2014-08-08 22:55:48 -04:00
io Fix -Wundef warning for HAVE_SYS_PARAM_H 2014-07-10 14:19:21 +05:30
libidn Remove configuration name patterns from shlib-versions. 2014-09-12 12:28:47 +00:00
libio Fix memory leak in error path of do_ftell_wide (BZ #17370) 2014-09-16 14:20:45 +05:30
locale Minor cleanup in locale.c 2014-09-12 16:07:23 -07:00
localedata Allow cross-building of tests 2014-09-30 15:02:41 +01:00
login
mach
malloc malloc: additional unlink hardening for non-small bins [BZ #17344] 2014-09-11 10:59:05 +02:00
manual Update contrib.texi 2014-09-07 16:07:10 +10:00
math stdlib/tst-strtod-round.c: Fix build on ARM 2014-09-30 15:03:50 +01:00
misc Make __extern_always_inline usable on clang++ again 2014-09-16 22:16:01 +05:30
nis
nptl Write errors to stdout and not stderr in nptl/tst-setuid3.c 2014-10-06 10:23:17 +05:30
nptl_db Remove configuration name patterns from shlib-versions. 2014-09-12 12:28:47 +00:00
nscd BZ#17460: Fix buffer overrun in nscd --help. 2014-10-08 15:36:12 -07:00
nss Remove stray includes of kernel-features.h. 2014-06-25 18:09:01 +00:00
po Update Russian translation 2014-09-13 15:41:54 +10:00
posix Assume that all _[PS]C_* and _CS_* macros are always defined 2014-09-16 22:18:20 +05:30
pwd
resolv Check value at resplen2 if it is not NULL 2014-07-08 22:52:49 +05:30
resource
rt Fix -Wundef warning for HAVE_IFUNC 2014-07-31 17:05:19 +02:00
scripts Clean up gnu/lib-names.h generation (bug 14171). 2014-09-26 17:33:04 +00:00
setjmp Use existing makefile variables for dependencies on glibc libraries. 2014-05-16 21:38:08 +00:00
shadow
signal
socket Sync recvmmsg prototype with kernel usage. 2014-09-20 13:53:44 +02:00
soft-fp soft-fp: Refactor exception handling for comparisons. 2014-10-09 01:03:56 +00:00
stdio-common remove nested function hack_digit 2014-09-29 10:46:05 -07:00
stdlib stdlib/tst-strtod-round.c: Fix build on ARM 2014-09-30 15:03:50 +01:00
streams
string Move findidx nested functions to top-level. 2014-09-11 16:02:17 -07:00
sunrpc Add comment about SIZE initialization in xdr.c 2014-07-10 10:33:48 +05:30
sysdeps soft-fp: Refactor exception handling for comparisons. 2014-10-09 01:03:56 +00:00
sysvipc
termios
time New test for ftime 2014-09-18 13:26:53 +05:30
timezone Allow cross-building of tests 2014-09-30 15:02:41 +01:00
wcsmbs Complete the removal of __gconv_translit_find 2014-09-12 09:17:32 +02:00
wctype
.gitattributes
.gitignore
abi-tags
aclocal.m4 Require autoconf 2.69 2014-09-29 07:53:36 -07:00
BUGS
CANCEL-FCT-WAIVE
CANCEL-FILE-WAIVE
ChangeLog soft-fp: Refactor exception handling for comparisons. 2014-10-09 01:03:56 +00:00
ChangeLog.1
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
ChangeLog.10
ChangeLog.11
ChangeLog.12
ChangeLog.13
ChangeLog.14
ChangeLog.15
ChangeLog.16
ChangeLog.17
ChangeLog.old-ports
ChangeLog.old-ports-aarch64
ChangeLog.old-ports-aix
ChangeLog.old-ports-alpha
ChangeLog.old-ports-am33
ChangeLog.old-ports-arm
ChangeLog.old-ports-cris
ChangeLog.old-ports-hppa
ChangeLog.old-ports-ia64
ChangeLog.old-ports-linux-generic
ChangeLog.old-ports-m68k
ChangeLog.old-ports-microblaze
ChangeLog.old-ports-mips
ChangeLog.old-ports-powerpc
ChangeLog.old-ports-tile
config.h.in Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
config.make.in Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
configure Require autoconf 2.69 2014-09-29 07:53:36 -07:00
configure.ac Remove bitrotten --enable-oldest-abi (bug 6652). 2014-09-16 17:45:03 +00:00
CONFORMANCE
COPYING
COPYING.LIB
cppflags-iterator.mk
extra-lib.mk
extra-modules.mk
INSTALL Remove redundant C locale settings. 2014-06-07 19:58:36 +00:00
libc-abis
LICENSES
Makeconfig Clean up gnu/lib-names.h generation (bug 14171). 2014-09-26 17:33:04 +00:00
Makefile Fix pthread.h in installed-headers list. 2014-06-13 16:39:23 -07:00
Makefile.in Remove redundant C locale settings. 2014-06-07 19:58:36 +00:00
Makerules Clean up gnu/lib-names.h generation (bug 14171). 2014-09-26 17:33:04 +00:00
NAMESPACE
NEWS BZ#17460: Fix buffer overrun in nscd --help. 2014-10-08 15:36:12 -07:00
o-iterator.mk
PROJECTS
README Update README and NEWS for ports directory removal. 2014-06-25 12:55:21 +00:00
Rules Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
shlib-versions Remove configuration name patterns from shlib-versions. 2014-09-12 12:28:47 +00:00
test-skeleton.c test-skeleton: Kill any child process's offspring 2014-06-30 20:11:56 +01:00
version.h Open development for 2.21 2014-09-08 09:22:55 +10:00
WUR-REPORT

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu.  The current
GNU/Hurd support requires out-of-tree patches that will eventually be
incorporated into an official GNU C Library release.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 2.6.32 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	arm-*-linux-gnueabi
	hppa-*-linux-gnu	Not currently functional without patches.
	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	ia64-*-linux-gnu
	m68k-*-linux-gnu
	microblaze*-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu
	tilegx-*-linux-gnu
	tilepro-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see http://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at http://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see http://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 2000-2013, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.