1999-12-29 18:11:48 +00:00
|
|
|
/* Software floating-point emulation.
|
|
|
|
Basic four-word fraction declaration and manipulation.
|
2022-01-01 18:54:23 +00:00
|
|
|
Copyright (C) 1997-2022 Free Software Foundation, Inc.
|
1999-12-29 18:11:48 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2006-04-04 08:25:52 +00:00
|
|
|
In addition to the permissions in the GNU Lesser General Public
|
|
|
|
License, the Free Software Foundation gives you unlimited
|
|
|
|
permission to link the compiled version of this file into
|
|
|
|
combinations with other programs, and to distribute those
|
|
|
|
combinations without any restriction coming from the use of this
|
|
|
|
file. (The Lesser General Public License restrictions do apply in
|
|
|
|
other respects; for example, they cover modification of the file,
|
|
|
|
and distribution when not linked into a combine executable.)
|
|
|
|
|
1999-12-29 18:11:48 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2015-03-10 00:32:29 +00:00
|
|
|
#ifndef SOFT_FP_OP_4_H
|
|
|
|
#define SOFT_FP_OP_4_H 1
|
|
|
|
|
1999-12-29 18:11:48 +00:00
|
|
|
#define _FP_FRAC_DECL_4(X) _FP_W_TYPE X##_f[4]
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_COPY_4(D, S) \
|
1999-12-29 18:11:48 +00:00
|
|
|
(D##_f[0] = S##_f[0], D##_f[1] = S##_f[1], \
|
|
|
|
D##_f[2] = S##_f[2], D##_f[3] = S##_f[3])
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_SET_4(X, I) __FP_FRAC_SET_4 (X, I)
|
1999-12-29 18:11:48 +00:00
|
|
|
#define _FP_FRAC_HIGH_4(X) (X##_f[3])
|
|
|
|
#define _FP_FRAC_LOW_4(X) (X##_f[0])
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_WORD_4(X, w) (X##_f[w])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_FRAC_SLL_4(X, N) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SLL_4_up, _FP_FRAC_SLL_4_down; \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SLL_4_skip, _FP_FRAC_SLL_4_i; \
|
|
|
|
_FP_FRAC_SLL_4_skip = (N) / _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SLL_4_up = (N) % _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SLL_4_down = _FP_W_TYPE_SIZE - _FP_FRAC_SLL_4_up; \
|
|
|
|
if (!_FP_FRAC_SLL_4_up) \
|
|
|
|
for (_FP_FRAC_SLL_4_i = 3; \
|
|
|
|
_FP_FRAC_SLL_4_i >= _FP_FRAC_SLL_4_skip; \
|
|
|
|
--_FP_FRAC_SLL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SLL_4_i] \
|
|
|
|
= X##_f[_FP_FRAC_SLL_4_i-_FP_FRAC_SLL_4_skip]; \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
for (_FP_FRAC_SLL_4_i = 3; \
|
|
|
|
_FP_FRAC_SLL_4_i > _FP_FRAC_SLL_4_skip; \
|
|
|
|
--_FP_FRAC_SLL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SLL_4_i] \
|
|
|
|
= ((X##_f[_FP_FRAC_SLL_4_i-_FP_FRAC_SLL_4_skip] \
|
|
|
|
<< _FP_FRAC_SLL_4_up) \
|
|
|
|
| (X##_f[_FP_FRAC_SLL_4_i-_FP_FRAC_SLL_4_skip-1] \
|
|
|
|
>> _FP_FRAC_SLL_4_down)); \
|
|
|
|
X##_f[_FP_FRAC_SLL_4_i--] = X##_f[0] << _FP_FRAC_SLL_4_up; \
|
|
|
|
} \
|
|
|
|
for (; _FP_FRAC_SLL_4_i >= 0; --_FP_FRAC_SLL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SLL_4_i] = 0; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* This one was broken too. */
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_FRAC_SRL_4(X, N) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SRL_4_up, _FP_FRAC_SRL_4_down; \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SRL_4_skip, _FP_FRAC_SRL_4_i; \
|
|
|
|
_FP_FRAC_SRL_4_skip = (N) / _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SRL_4_down = (N) % _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SRL_4_up = _FP_W_TYPE_SIZE - _FP_FRAC_SRL_4_down; \
|
|
|
|
if (!_FP_FRAC_SRL_4_down) \
|
|
|
|
for (_FP_FRAC_SRL_4_i = 0; \
|
|
|
|
_FP_FRAC_SRL_4_i <= 3-_FP_FRAC_SRL_4_skip; \
|
|
|
|
++_FP_FRAC_SRL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRL_4_i] \
|
|
|
|
= X##_f[_FP_FRAC_SRL_4_i+_FP_FRAC_SRL_4_skip]; \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
for (_FP_FRAC_SRL_4_i = 0; \
|
|
|
|
_FP_FRAC_SRL_4_i < 3-_FP_FRAC_SRL_4_skip; \
|
|
|
|
++_FP_FRAC_SRL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRL_4_i] \
|
|
|
|
= ((X##_f[_FP_FRAC_SRL_4_i+_FP_FRAC_SRL_4_skip] \
|
|
|
|
>> _FP_FRAC_SRL_4_down) \
|
|
|
|
| (X##_f[_FP_FRAC_SRL_4_i+_FP_FRAC_SRL_4_skip+1] \
|
|
|
|
<< _FP_FRAC_SRL_4_up)); \
|
|
|
|
X##_f[_FP_FRAC_SRL_4_i++] = X##_f[3] >> _FP_FRAC_SRL_4_down; \
|
|
|
|
} \
|
|
|
|
for (; _FP_FRAC_SRL_4_i < 4; ++_FP_FRAC_SRL_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRL_4_i] = 0; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
|
2013-06-05 20:44:03 +00:00
|
|
|
/* Right shift with sticky-lsb.
|
2014-09-17 22:20:45 +00:00
|
|
|
What this actually means is that we do a standard right-shift,
|
|
|
|
but that if any of the bits that fall off the right hand side
|
|
|
|
were one then we always set the LSbit. */
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_FRAC_SRST_4(X, S, N, size) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SRST_4_up, _FP_FRAC_SRST_4_down; \
|
|
|
|
_FP_I_TYPE _FP_FRAC_SRST_4_skip, _FP_FRAC_SRST_4_i; \
|
|
|
|
_FP_W_TYPE _FP_FRAC_SRST_4_s; \
|
|
|
|
_FP_FRAC_SRST_4_skip = (N) / _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SRST_4_down = (N) % _FP_W_TYPE_SIZE; \
|
|
|
|
_FP_FRAC_SRST_4_up = _FP_W_TYPE_SIZE - _FP_FRAC_SRST_4_down; \
|
|
|
|
for (_FP_FRAC_SRST_4_s = _FP_FRAC_SRST_4_i = 0; \
|
|
|
|
_FP_FRAC_SRST_4_i < _FP_FRAC_SRST_4_skip; \
|
|
|
|
++_FP_FRAC_SRST_4_i) \
|
|
|
|
_FP_FRAC_SRST_4_s |= X##_f[_FP_FRAC_SRST_4_i]; \
|
|
|
|
if (!_FP_FRAC_SRST_4_down) \
|
|
|
|
for (_FP_FRAC_SRST_4_i = 0; \
|
|
|
|
_FP_FRAC_SRST_4_i <= 3-_FP_FRAC_SRST_4_skip; \
|
|
|
|
++_FP_FRAC_SRST_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRST_4_i] \
|
|
|
|
= X##_f[_FP_FRAC_SRST_4_i+_FP_FRAC_SRST_4_skip]; \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
_FP_FRAC_SRST_4_s \
|
|
|
|
|= X##_f[_FP_FRAC_SRST_4_i] << _FP_FRAC_SRST_4_up; \
|
|
|
|
for (_FP_FRAC_SRST_4_i = 0; \
|
|
|
|
_FP_FRAC_SRST_4_i < 3-_FP_FRAC_SRST_4_skip; \
|
|
|
|
++_FP_FRAC_SRST_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRST_4_i] \
|
|
|
|
= ((X##_f[_FP_FRAC_SRST_4_i+_FP_FRAC_SRST_4_skip] \
|
|
|
|
>> _FP_FRAC_SRST_4_down) \
|
|
|
|
| (X##_f[_FP_FRAC_SRST_4_i+_FP_FRAC_SRST_4_skip+1] \
|
|
|
|
<< _FP_FRAC_SRST_4_up)); \
|
|
|
|
X##_f[_FP_FRAC_SRST_4_i++] \
|
|
|
|
= X##_f[3] >> _FP_FRAC_SRST_4_down; \
|
|
|
|
} \
|
|
|
|
for (; _FP_FRAC_SRST_4_i < 4; ++_FP_FRAC_SRST_4_i) \
|
|
|
|
X##_f[_FP_FRAC_SRST_4_i] = 0; \
|
|
|
|
S = (_FP_FRAC_SRST_4_s != 0); \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
2006-02-18 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/single.h (SFtype): Define.
(union _FP_UNION_S): Use it.
* soft-fp/double.h (DFtype): Define.
(union _FP_UNION_D): Use it.
* soft-fp/extended.h (XFtype): Define.
(union _FP_UNION_E): Use it.
* soft-fp/quad.h (TFtype): Define.
(union _FP_UNION_Q): Use it.
* soft-fp/soft-fp.h: Add _LIBC conditionals.
(SI_BITS, DI_BITS): Define.
* soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
X##_c.
(_FP_CMP_EQ): Use parentheses for && inside ||.
(_FP_TO_INT): Use statement expressions in conditional controlling
constant shift.
(_FP_FROM_INT): Likewise. Take unsigned type as argument.
* soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
_FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
conditional controlling possibly constant shift.
(_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
__FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
* soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
* soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/fixdfdi.c: Pass macro for type size.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
* soft-fp/adddf3.c: Use typedefs for argument and return types.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/divdf3.c: Likewise.
* soft-fp/divsf3.c: Likewise.
* soft-fp/divtf3.c: Likewise.
* soft-fp/eqdf2.c: Likewise.
* soft-fp/eqsf2.c: Likewise.
* soft-fp/eqtf2.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/gedf2.c: Likewise.
* soft-fp/gesf2.c: Likewise.
* soft-fp/getf2.c: Likewise.
* soft-fp/ledf2.c: Likewise.
* soft-fp/lesf2.c: Likewise.
* soft-fp/letf2.c: Likewise.
* soft-fp/muldf3.c: Likewise.
* soft-fp/mulsf3.c: Likewise.
* soft-fp/multf3.c: Likewise.
* soft-fp/negdf2.c: Likewise.
* soft-fp/negsf2.c: Likewise.
* soft-fp/negtf2.c: Likewise.
* soft-fp/sqrtdf2.c: Likewise.
* soft-fp/sqrtsf2.c: Likewise.
* soft-fp/sqrttf2.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* soft-fp/unorddf2.c: Likewise.
* soft-fp/unordsf2.c: Likewise.
* soft-fp/unordtf2.c: Likewise.
2006-02-09 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
(_FP_OVERFLOW_SEMIRAW): Likewise.
(_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
(_FP_CHOOSENAN_SEMIRAW): Likewise.
(_FP_EXP_NORMAL): Likewise.
(_FP_PACK_SEMIRAW): Likewise.
(_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
(_FP_SUB): Likewise.
(_FP_TO_INT): Rewrite to operate on raw values. Don't set INVALID
exception for conversions where most negative representable
integer is correct truncated value, but do set INEXACT for such
conversions where appropriate. Don't always left-shift for
converting to a wider integer.
(_FP_FROM_INT): Rewrite to yield raw value. Correct shift for
integers with one more bits than (mantissa + guard) bits for the
floating point format. Don't use __FP_FRAC_SRS_1 for shifting
integers that may be wider than _FP_W_TYPE_SIZE.
(FP_CONV): Don't define.
(FP_EXTEND): Define.
(FP_TRUNC): Likewise.
* soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
(_FP_FRAC_CONV_1_1): Don't define.
(_FP_FRAC_COPY_1_1): Define.
* soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
(_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
(_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
(_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
(_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
(_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
(_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
(_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
* soft-fp/single.h (_FP_FRACTBITS_S): Define.
(_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
(_FP_WFRACXBITS_S): Likewise.
(_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
(FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
(FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
* soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
(FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
(FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
* soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
(FP_UNPACK_EP): Correct typo.
(FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
(FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
* soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
(FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
(FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
* soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* soft-fp/adddf3.c: Update for changed soft-fp interfaces.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* sysdeps/alpha/soft-fp/ots_add.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_add.c: Likewise.
* sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
* sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
2006-02-25 01:29:59 +00:00
|
|
|
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_FRAC_SRS_4(X, N, size) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
int _FP_FRAC_SRS_4_sticky; \
|
2014-10-09 17:05:26 +00:00
|
|
|
_FP_FRAC_SRST_4 (X, _FP_FRAC_SRS_4_sticky, (N), (size)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
X##_f[0] |= _FP_FRAC_SRS_4_sticky; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_ADD_4(R, X, Y) \
|
|
|
|
__FP_FRAC_ADD_4 (R##_f[3], R##_f[2], R##_f[1], R##_f[0], \
|
|
|
|
X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
|
|
|
|
Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_SUB_4(R, X, Y) \
|
|
|
|
__FP_FRAC_SUB_4 (R##_f[3], R##_f[2], R##_f[1], R##_f[0], \
|
|
|
|
X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
|
|
|
|
Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_DEC_4(X, Y) \
|
|
|
|
__FP_FRAC_DEC_4 (X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
|
|
|
|
Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_ADDI_4(X, I) \
|
|
|
|
__FP_FRAC_ADDI_4 (X##_f[3], X##_f[2], X##_f[1], X##_f[0], I)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_ZEROFRAC_4 0, 0, 0, 0
|
|
|
|
#define _FP_MINFRAC_4 0, 0, 0, 1
|
|
|
|
#define _FP_MAXFRAC_4 (~(_FP_WS_TYPE) 0), (~(_FP_WS_TYPE) 0), (~(_FP_WS_TYPE) 0), (~(_FP_WS_TYPE) 0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
#define _FP_FRAC_ZEROP_4(X) ((X##_f[0] | X##_f[1] | X##_f[2] | X##_f[3]) == 0)
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_NEGP_4(X) ((_FP_WS_TYPE) X##_f[3] < 0)
|
|
|
|
#define _FP_FRAC_OVERP_4(fs, X) (_FP_FRAC_HIGH_##fs (X) & _FP_OVERFLOW_##fs)
|
|
|
|
#define _FP_FRAC_HIGHBIT_DW_4(fs, X) \
|
|
|
|
(_FP_FRAC_HIGH_DW_##fs (X) & _FP_HIGHBIT_DW_##fs)
|
|
|
|
#define _FP_FRAC_CLEAR_OVERP_4(fs, X) (_FP_FRAC_HIGH_##fs (X) &= ~_FP_OVERFLOW_##fs)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_EQ_4(X, Y) \
|
2013-10-15 00:17:35 +00:00
|
|
|
(X##_f[0] == Y##_f[0] && X##_f[1] == Y##_f[1] \
|
|
|
|
&& X##_f[2] == Y##_f[2] && X##_f[3] == Y##_f[3])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_GT_4(X, Y) \
|
2013-10-15 00:17:35 +00:00
|
|
|
(X##_f[3] > Y##_f[3] \
|
|
|
|
|| (X##_f[3] == Y##_f[3] \
|
|
|
|
&& (X##_f[2] > Y##_f[2] \
|
|
|
|
|| (X##_f[2] == Y##_f[2] \
|
|
|
|
&& (X##_f[1] > Y##_f[1] \
|
|
|
|
|| (X##_f[1] == Y##_f[1] \
|
|
|
|
&& X##_f[0] > Y##_f[0]))))))
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_GE_4(X, Y) \
|
2013-10-15 00:17:35 +00:00
|
|
|
(X##_f[3] > Y##_f[3] \
|
|
|
|
|| (X##_f[3] == Y##_f[3] \
|
|
|
|
&& (X##_f[2] > Y##_f[2] \
|
|
|
|
|| (X##_f[2] == Y##_f[2] \
|
|
|
|
&& (X##_f[1] > Y##_f[1] \
|
|
|
|
|| (X##_f[1] == Y##_f[1] \
|
|
|
|
&& X##_f[0] >= Y##_f[0]))))))
|
|
|
|
|
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_CLZ_4(R, X) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (X##_f[3]) \
|
2014-10-09 17:05:26 +00:00
|
|
|
__FP_CLZ ((R), X##_f[3]); \
|
2013-10-15 00:17:35 +00:00
|
|
|
else if (X##_f[2]) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
__FP_CLZ ((R), X##_f[2]); \
|
|
|
|
(R) += _FP_W_TYPE_SIZE; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
else if (X##_f[1]) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
__FP_CLZ ((R), X##_f[1]); \
|
|
|
|
(R) += _FP_W_TYPE_SIZE*2; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
__FP_CLZ ((R), X##_f[0]); \
|
|
|
|
(R) += _FP_W_TYPE_SIZE*3; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
while (0)
|
2013-10-15 00:17:35 +00:00
|
|
|
|
|
|
|
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_UNPACK_RAW_4(fs, X, val) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
union _FP_UNION_##fs _FP_UNPACK_RAW_4_flo; \
|
|
|
|
_FP_UNPACK_RAW_4_flo.flt = (val); \
|
|
|
|
X##_f[0] = _FP_UNPACK_RAW_4_flo.bits.frac0; \
|
|
|
|
X##_f[1] = _FP_UNPACK_RAW_4_flo.bits.frac1; \
|
|
|
|
X##_f[2] = _FP_UNPACK_RAW_4_flo.bits.frac2; \
|
|
|
|
X##_f[3] = _FP_UNPACK_RAW_4_flo.bits.frac3; \
|
|
|
|
X##_e = _FP_UNPACK_RAW_4_flo.bits.exp; \
|
|
|
|
X##_s = _FP_UNPACK_RAW_4_flo.bits.sign; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
|
|
|
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_UNPACK_RAW_4_P(fs, X, val) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
union _FP_UNION_##fs *_FP_UNPACK_RAW_4_P_flo \
|
|
|
|
= (union _FP_UNION_##fs *) (val); \
|
|
|
|
\
|
|
|
|
X##_f[0] = _FP_UNPACK_RAW_4_P_flo->bits.frac0; \
|
|
|
|
X##_f[1] = _FP_UNPACK_RAW_4_P_flo->bits.frac1; \
|
|
|
|
X##_f[2] = _FP_UNPACK_RAW_4_P_flo->bits.frac2; \
|
|
|
|
X##_f[3] = _FP_UNPACK_RAW_4_P_flo->bits.frac3; \
|
|
|
|
X##_e = _FP_UNPACK_RAW_4_P_flo->bits.exp; \
|
|
|
|
X##_s = _FP_UNPACK_RAW_4_P_flo->bits.sign; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define _FP_PACK_RAW_4(fs, val, X) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
union _FP_UNION_##fs _FP_PACK_RAW_4_flo; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.frac0 = X##_f[0]; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.frac1 = X##_f[1]; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.frac2 = X##_f[2]; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.frac3 = X##_f[3]; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.exp = X##_e; \
|
|
|
|
_FP_PACK_RAW_4_flo.bits.sign = X##_s; \
|
|
|
|
(val) = _FP_PACK_RAW_4_flo.flt; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
2014-06-30 17:37:10 +00:00
|
|
|
#define _FP_PACK_RAW_4_P(fs, val, X) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
union _FP_UNION_##fs *_FP_PACK_RAW_4_P_flo \
|
|
|
|
= (union _FP_UNION_##fs *) (val); \
|
|
|
|
\
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.frac0 = X##_f[0]; \
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.frac1 = X##_f[1]; \
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.frac2 = X##_f[2]; \
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.frac3 = X##_f[3]; \
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.exp = X##_e; \
|
|
|
|
_FP_PACK_RAW_4_P_flo->bits.sign = X##_s; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Multiplication algorithms: */
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
/* Given a 1W * 1W => 2W primitive, do the extended multiplication. */
|
|
|
|
|
2013-10-15 00:17:35 +00:00
|
|
|
#define _FP_MUL_MEAT_DW_4_wide(wfracbits, R, X, Y, doit) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_DECL_2 (_FP_MUL_MEAT_DW_4_wide_b); \
|
|
|
|
_FP_FRAC_DECL_2 (_FP_MUL_MEAT_DW_4_wide_c); \
|
|
|
|
_FP_FRAC_DECL_2 (_FP_MUL_MEAT_DW_4_wide_d); \
|
|
|
|
_FP_FRAC_DECL_2 (_FP_MUL_MEAT_DW_4_wide_e); \
|
|
|
|
_FP_FRAC_DECL_2 (_FP_MUL_MEAT_DW_4_wide_f); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
2014-06-30 17:37:10 +00:00
|
|
|
doit (_FP_FRAC_WORD_8 (R, 1), _FP_FRAC_WORD_8 (R, 0), \
|
|
|
|
X##_f[0], Y##_f[0]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_b_f1, _FP_MUL_MEAT_DW_4_wide_b_f0, \
|
|
|
|
X##_f[0], Y##_f[1]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_c_f1, _FP_MUL_MEAT_DW_4_wide_c_f0, \
|
|
|
|
X##_f[1], Y##_f[0]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_d_f1, _FP_MUL_MEAT_DW_4_wide_d_f0, \
|
|
|
|
X##_f[1], Y##_f[1]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_e_f1, _FP_MUL_MEAT_DW_4_wide_e_f0, \
|
|
|
|
X##_f[0], Y##_f[2]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_f_f1, _FP_MUL_MEAT_DW_4_wide_f_f0, \
|
|
|
|
X##_f[2], Y##_f[0]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 3), _FP_FRAC_WORD_8 (R, 2), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 1), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
0, 0, _FP_FRAC_WORD_8 (R, 1)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 3), _FP_FRAC_WORD_8 (R, 2), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 1), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 3), _FP_FRAC_WORD_8 (R, 2), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 1)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 2), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
0, _FP_FRAC_WORD_8 (R, 3), _FP_FRAC_WORD_8 (R, 2)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 2), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 2)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 2), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_f_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_f_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 2)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_b_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f0, X##_f[0], Y##_f[3]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_c_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f0, X##_f[3], Y##_f[0]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_d_f1, _FP_MUL_MEAT_DW_4_wide_d_f0, \
|
|
|
|
X##_f[1], Y##_f[2]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_e_f1, _FP_MUL_MEAT_DW_4_wide_e_f0, \
|
|
|
|
X##_f[2], Y##_f[1]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 3), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
0, _FP_FRAC_WORD_8 (R, 4), _FP_FRAC_WORD_8 (R, 3)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 3), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 3)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 3), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 3)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 3), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 3)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_b_f1, _FP_MUL_MEAT_DW_4_wide_b_f0, \
|
|
|
|
X##_f[2], Y##_f[2]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_c_f1, _FP_MUL_MEAT_DW_4_wide_c_f0, \
|
|
|
|
X##_f[1], Y##_f[3]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_d_f1, _FP_MUL_MEAT_DW_4_wide_d_f0, \
|
|
|
|
X##_f[3], Y##_f[1]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_e_f1, _FP_MUL_MEAT_DW_4_wide_e_f0, \
|
|
|
|
X##_f[2], Y##_f[3]); \
|
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_f_f1, _FP_MUL_MEAT_DW_4_wide_f_f0, \
|
|
|
|
X##_f[3], Y##_f[2]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 4), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
0, _FP_FRAC_WORD_8 (R, 5), _FP_FRAC_WORD_8 (R, 4)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 4), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_c_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 4)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 4), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_d_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 4)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 7), _FP_FRAC_WORD_8 (R, 6), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 5), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_e_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
0, _FP_FRAC_WORD_8 (R, 6), _FP_FRAC_WORD_8 (R, 5)); \
|
|
|
|
__FP_FRAC_ADD_3 (_FP_FRAC_WORD_8 (R, 7), _FP_FRAC_WORD_8 (R, 6), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 5), 0, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_f_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_f_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 7), _FP_FRAC_WORD_8 (R, 6), \
|
|
|
|
_FP_FRAC_WORD_8 (R, 5)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
doit (_FP_MUL_MEAT_DW_4_wide_b_f1, _FP_MUL_MEAT_DW_4_wide_b_f0, \
|
|
|
|
X##_f[3], Y##_f[3]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_ADD_2 (_FP_FRAC_WORD_8 (R, 7), _FP_FRAC_WORD_8 (R, 6), \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f1, \
|
|
|
|
_FP_MUL_MEAT_DW_4_wide_b_f0, \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_WORD_8 (R, 7), _FP_FRAC_WORD_8 (R, 6)); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define _FP_MUL_MEAT_4_wide(wfracbits, R, X, Y, doit) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_DECL_8 (_FP_MUL_MEAT_4_wide_z); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
2014-10-09 17:05:26 +00:00
|
|
|
_FP_MUL_MEAT_DW_4_wide ((wfracbits), _FP_MUL_MEAT_4_wide_z, \
|
2014-06-30 17:37:10 +00:00
|
|
|
X, Y, doit); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
|
|
|
/* Normalize since we know where the msb of the multiplicands \
|
|
|
|
were (bit B), we know that the msb of the of the product is \
|
|
|
|
at either 2B or 2B-1. */ \
|
2014-10-09 17:05:26 +00:00
|
|
|
_FP_FRAC_SRS_8 (_FP_MUL_MEAT_4_wide_z, (wfracbits)-1, \
|
|
|
|
2*(wfracbits)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
__FP_FRAC_SET_4 (R, _FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_wide_z, 3), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_wide_z, 2), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_wide_z, 1), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_wide_z, 0)); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define _FP_MUL_MEAT_DW_4_gmp(wfracbits, R, X, Y) \
|
|
|
|
do \
|
|
|
|
{ \
|
2013-10-16 01:22:21 +00:00
|
|
|
mpn_mul_n (R##_f, _x_f, _y_f, 4); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
|
|
|
#define _FP_MUL_MEAT_4_gmp(wfracbits, R, X, Y) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_DECL_8 (_FP_MUL_MEAT_4_gmp_z); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
2014-10-09 17:05:26 +00:00
|
|
|
_FP_MUL_MEAT_DW_4_gmp ((wfracbits), _FP_MUL_MEAT_4_gmp_z, X, Y); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
|
|
|
/* Normalize since we know where the msb of the multiplicands \
|
|
|
|
were (bit B), we know that the msb of the of the product is \
|
|
|
|
at either 2B or 2B-1. */ \
|
2014-10-09 17:05:26 +00:00
|
|
|
_FP_FRAC_SRS_8 (_FP_MUL_MEAT_4_gmp_z, (wfracbits)-1, \
|
|
|
|
2*(wfracbits)); \
|
2014-06-30 17:37:10 +00:00
|
|
|
__FP_FRAC_SET_4 (R, _FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_gmp_z, 3), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_gmp_z, 2), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_gmp_z, 1), \
|
|
|
|
_FP_FRAC_WORD_8 (_FP_MUL_MEAT_4_gmp_z, 0)); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Helper utility for _FP_DIV_MEAT_4_udiv:
|
|
|
|
* pppp = m * nnn. */
|
2013-10-16 01:22:21 +00:00
|
|
|
#define umul_ppppmnnn(p3, p2, p1, p0, m, n2, n1, n0) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
UWtype umul_ppppmnnn_t; \
|
2013-10-16 01:22:21 +00:00
|
|
|
umul_ppmm (p1, p0, m, n0); \
|
2014-06-30 17:37:10 +00:00
|
|
|
umul_ppmm (p2, umul_ppppmnnn_t, m, n1); \
|
|
|
|
__FP_FRAC_ADDI_2 (p2, p1, umul_ppppmnnn_t); \
|
|
|
|
umul_ppmm (p3, umul_ppppmnnn_t, m, n2); \
|
|
|
|
__FP_FRAC_ADDI_2 (p3, p2, umul_ppppmnnn_t); \
|
2013-10-16 01:22:21 +00:00
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Division algorithms: */
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-15 00:17:35 +00:00
|
|
|
#define _FP_DIV_MEAT_4_udiv(fs, R, X, Y) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
int _FP_DIV_MEAT_4_udiv_i; \
|
|
|
|
_FP_FRAC_DECL_4 (_FP_DIV_MEAT_4_udiv_n); \
|
|
|
|
_FP_FRAC_DECL_4 (_FP_DIV_MEAT_4_udiv_m); \
|
|
|
|
_FP_FRAC_SET_4 (_FP_DIV_MEAT_4_udiv_n, _FP_ZEROFRAC_4); \
|
2013-10-16 01:22:21 +00:00
|
|
|
if (_FP_FRAC_GE_4 (X, Y)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_DIV_MEAT_4_udiv_n_f[3] \
|
|
|
|
= X##_f[0] << (_FP_W_TYPE_SIZE - 1); \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SRL_4 (X, 1); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
R##_e--; \
|
|
|
|
\
|
|
|
|
/* Normalize, i.e. make the most significant bit of the \
|
2014-09-17 22:20:45 +00:00
|
|
|
denominator set. */ \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SLL_4 (Y, _FP_WFRACXBITS_##fs); \
|
2013-10-15 00:17:35 +00:00
|
|
|
\
|
2014-06-30 17:37:10 +00:00
|
|
|
for (_FP_DIV_MEAT_4_udiv_i = 3; ; _FP_DIV_MEAT_4_udiv_i--) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
|
|
|
if (X##_f[3] == Y##_f[3]) \
|
|
|
|
{ \
|
|
|
|
/* This is a special case, not an optimization \
|
|
|
|
(X##_f[3]/Y##_f[3] would not fit into UWtype). \
|
2014-06-30 17:37:10 +00:00
|
|
|
As X## is guaranteed to be < Y, \
|
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i] can be either \
|
2013-10-15 00:17:35 +00:00
|
|
|
(UWtype)-1 or (UWtype)-2. */ \
|
2014-06-30 17:37:10 +00:00
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i] = -1; \
|
|
|
|
if (!_FP_DIV_MEAT_4_udiv_i) \
|
2013-10-15 00:17:35 +00:00
|
|
|
break; \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_SUB_4 (X##_f[3], X##_f[2], X##_f[1], X##_f[0], \
|
|
|
|
Y##_f[2], Y##_f[1], Y##_f[0], 0, \
|
2014-06-30 17:37:10 +00:00
|
|
|
X##_f[2], X##_f[1], X##_f[0], \
|
|
|
|
_FP_DIV_MEAT_4_udiv_n_f[_FP_DIV_MEAT_4_udiv_i]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SUB_4 (X, Y, X); \
|
2013-10-15 00:17:35 +00:00
|
|
|
if (X##_f[3] > Y##_f[3]) \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i] = -2; \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_ADD_4 (X, Y, X); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
udiv_qrnnd (R##_f[_FP_DIV_MEAT_4_udiv_i], \
|
|
|
|
X##_f[3], X##_f[3], X##_f[2], Y##_f[3]); \
|
|
|
|
umul_ppppmnnn (_FP_DIV_MEAT_4_udiv_m_f[3], \
|
|
|
|
_FP_DIV_MEAT_4_udiv_m_f[2], \
|
|
|
|
_FP_DIV_MEAT_4_udiv_m_f[1], \
|
|
|
|
_FP_DIV_MEAT_4_udiv_m_f[0], \
|
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i], \
|
|
|
|
Y##_f[2], Y##_f[1], Y##_f[0]); \
|
2013-10-15 00:17:35 +00:00
|
|
|
X##_f[2] = X##_f[1]; \
|
|
|
|
X##_f[1] = X##_f[0]; \
|
2014-06-30 17:37:10 +00:00
|
|
|
X##_f[0] \
|
|
|
|
= _FP_DIV_MEAT_4_udiv_n_f[_FP_DIV_MEAT_4_udiv_i]; \
|
|
|
|
if (_FP_FRAC_GT_4 (_FP_DIV_MEAT_4_udiv_m, X)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i]--; \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_ADD_4 (X, Y, X); \
|
2014-06-30 17:37:10 +00:00
|
|
|
if (_FP_FRAC_GE_4 (X, Y) \
|
|
|
|
&& _FP_FRAC_GT_4 (_FP_DIV_MEAT_4_udiv_m, X)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
R##_f[_FP_DIV_MEAT_4_udiv_i]--; \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_ADD_4 (X, Y, X); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
} \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_FRAC_DEC_4 (X, _FP_DIV_MEAT_4_udiv_m); \
|
|
|
|
if (!_FP_DIV_MEAT_4_udiv_i) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
if (!_FP_FRAC_EQ_4 (X, _FP_DIV_MEAT_4_udiv_m)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
R##_f[0] |= _FP_WORK_STICKY; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Square root algorithms:
|
|
|
|
We have just one right now, maybe Newton approximation
|
|
|
|
should be added for those machines where division is fast. */
|
2013-06-05 20:44:03 +00:00
|
|
|
|
2013-10-15 00:17:35 +00:00
|
|
|
#define _FP_SQRT_MEAT_4(R, S, T, X, q) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
while (q) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
T##_f[3] = S##_f[3] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
if (T##_f[3] <= X##_f[3]) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
S##_f[3] = T##_f[3] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
X##_f[3] -= T##_f[3]; \
|
2014-10-09 17:05:26 +00:00
|
|
|
R##_f[3] += (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SLL_4 (X, 1); \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) >>= 1; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) = (_FP_W_TYPE) 1 << (_FP_W_TYPE_SIZE - 1); \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (q) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
T##_f[2] = S##_f[2] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
T##_f[3] = S##_f[3]; \
|
|
|
|
if (T##_f[3] < X##_f[3] \
|
|
|
|
|| (T##_f[3] == X##_f[3] && T##_f[2] <= X##_f[2])) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
S##_f[2] = T##_f[2] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
S##_f[3] += (T##_f[2] > S##_f[2]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_DEC_2 (X##_f[3], X##_f[2], \
|
|
|
|
T##_f[3], T##_f[2]); \
|
2014-10-09 17:05:26 +00:00
|
|
|
R##_f[2] += (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SLL_4 (X, 1); \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) >>= 1; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) = (_FP_W_TYPE) 1 << (_FP_W_TYPE_SIZE - 1); \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (q) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
T##_f[1] = S##_f[1] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
T##_f[2] = S##_f[2]; \
|
|
|
|
T##_f[3] = S##_f[3]; \
|
|
|
|
if (T##_f[3] < X##_f[3] \
|
|
|
|
|| (T##_f[3] == X##_f[3] \
|
|
|
|
&& (T##_f[2] < X##_f[2] \
|
|
|
|
|| (T##_f[2] == X##_f[2] \
|
|
|
|
&& T##_f[1] <= X##_f[1])))) \
|
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
S##_f[1] = T##_f[1] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
S##_f[2] += (T##_f[1] > S##_f[1]); \
|
|
|
|
S##_f[3] += (T##_f[2] > S##_f[2]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
__FP_FRAC_DEC_3 (X##_f[3], X##_f[2], X##_f[1], \
|
|
|
|
T##_f[3], T##_f[2], T##_f[1]); \
|
2014-10-09 17:05:26 +00:00
|
|
|
R##_f[1] += (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SLL_4 (X, 1); \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) >>= 1; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) = (_FP_W_TYPE) 1 << (_FP_W_TYPE_SIZE - 1); \
|
|
|
|
while ((q) != _FP_WORK_ROUND) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
T##_f[0] = S##_f[0] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
T##_f[1] = S##_f[1]; \
|
|
|
|
T##_f[2] = S##_f[2]; \
|
|
|
|
T##_f[3] = S##_f[3]; \
|
2013-10-16 01:22:21 +00:00
|
|
|
if (_FP_FRAC_GE_4 (X, T)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
S##_f[0] = T##_f[0] + (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
S##_f[1] += (T##_f[0] > S##_f[0]); \
|
|
|
|
S##_f[2] += (T##_f[1] > S##_f[1]); \
|
|
|
|
S##_f[3] += (T##_f[2] > S##_f[2]); \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_DEC_4 (X, T); \
|
2014-10-09 17:05:26 +00:00
|
|
|
R##_f[0] += (q); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
_FP_FRAC_SLL_4 (X, 1); \
|
2014-10-09 17:05:26 +00:00
|
|
|
(q) >>= 1; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
if (!_FP_FRAC_ZEROP_4 (X)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2013-10-16 01:22:21 +00:00
|
|
|
if (_FP_FRAC_GT_4 (X, S)) \
|
2013-10-15 00:17:35 +00:00
|
|
|
R##_f[0] |= _FP_WORK_ROUND; \
|
|
|
|
R##_f[0] |= _FP_WORK_STICKY; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Internals. */
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define __FP_FRAC_SET_4(X, I3, I2, I1, I0) \
|
1999-12-29 18:11:48 +00:00
|
|
|
(X##_f[3] = I3, X##_f[2] = I2, X##_f[1] = I1, X##_f[0] = I0)
|
|
|
|
|
|
|
|
#ifndef __FP_FRAC_ADD_3
|
2013-10-16 01:22:21 +00:00
|
|
|
# define __FP_FRAC_ADD_3(r2, r1, r0, x2, x1, x0, y2, y1, y0) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_W_TYPE __FP_FRAC_ADD_3_c1, __FP_FRAC_ADD_3_c2; \
|
|
|
|
r0 = x0 + y0; \
|
|
|
|
__FP_FRAC_ADD_3_c1 = r0 < x0; \
|
|
|
|
r1 = x1 + y1; \
|
|
|
|
__FP_FRAC_ADD_3_c2 = r1 < x1; \
|
|
|
|
r1 += __FP_FRAC_ADD_3_c1; \
|
|
|
|
__FP_FRAC_ADD_3_c2 |= r1 < __FP_FRAC_ADD_3_c1; \
|
|
|
|
r2 = x2 + y2 + __FP_FRAC_ADD_3_c2; \
|
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FP_FRAC_ADD_4
|
2013-10-16 01:22:21 +00:00
|
|
|
# define __FP_FRAC_ADD_4(r3, r2, r1, r0, x3, x2, x1, x0, y3, y2, y1, y0) \
|
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
_FP_W_TYPE __FP_FRAC_ADD_4_c1, __FP_FRAC_ADD_4_c2; \
|
|
|
|
_FP_W_TYPE __FP_FRAC_ADD_4_c3; \
|
2013-10-16 01:22:21 +00:00
|
|
|
r0 = x0 + y0; \
|
2014-06-30 17:37:10 +00:00
|
|
|
__FP_FRAC_ADD_4_c1 = r0 < x0; \
|
2013-10-16 01:22:21 +00:00
|
|
|
r1 = x1 + y1; \
|
2014-06-30 17:37:10 +00:00
|
|
|
__FP_FRAC_ADD_4_c2 = r1 < x1; \
|
|
|
|
r1 += __FP_FRAC_ADD_4_c1; \
|
|
|
|
__FP_FRAC_ADD_4_c2 |= r1 < __FP_FRAC_ADD_4_c1; \
|
2013-10-16 01:22:21 +00:00
|
|
|
r2 = x2 + y2; \
|
2014-06-30 17:37:10 +00:00
|
|
|
__FP_FRAC_ADD_4_c3 = r2 < x2; \
|
|
|
|
r2 += __FP_FRAC_ADD_4_c2; \
|
|
|
|
__FP_FRAC_ADD_4_c3 |= r2 < __FP_FRAC_ADD_4_c2; \
|
|
|
|
r3 = x3 + y3 + __FP_FRAC_ADD_4_c3; \
|
2013-10-16 01:22:21 +00:00
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FP_FRAC_SUB_3
|
soft-fp: Use temporary variable in FP_FRAC_SUB_3/FP_FRAC_SUB_4
In FRAC_SUB_3(R, X, Y) and FRAC_SUB_4(R,, X, Y), it reference both
the X[N] and X[N] after R[N] have been set. If one of the X and Y is
the same address with R, the result of the calculation is wrong,
because the value of the original X and Y are overwritten.
In glibc, there are two places use FRAC_SUB and occurs the overlap.
The first is _FP_DIV_MEAT_N_loop in op-common.h, it uses the source
_FP_DIV_MEAT_N_loop_u as the destination. This macro only be used
when N is one(_FP_DIV_MEAT_1_loop) and then the _FP_FRAC_SUB_##wc
extend to _FP_FRAC_SUB_1 in this macro. so it also work because
_FP_FRAC_SUB_1 has no overlap problem in its implementation.
The second places is _FP_DIV_MEAT_4_udiv, the original value of X##_f[0]
is overwritten before the calculatation.
In FRAC_SUB_1 and FRAC_SUB_2, there don't refer the source after
destination have been set, so they have no problem.
After this modification, we can pass the soft floating testing of glibc
testsuites on RV32.
* soft-fp/op-4.h (_FP_FRAC_SUB_3, _FP_FRAC_SUB_4): Use temporary
variable to avoid overlap arguments.
2018-11-01 17:34:39 +00:00
|
|
|
# define __FP_FRAC_SUB_3(r2, r1, r0, x2, x1, x0, y2, y1, y0) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_W_TYPE __FP_FRAC_SUB_3_tmp[2]; \
|
|
|
|
_FP_W_TYPE __FP_FRAC_SUB_3_c1, __FP_FRAC_SUB_3_c2; \
|
|
|
|
__FP_FRAC_SUB_3_tmp[0] = x0 - y0; \
|
|
|
|
__FP_FRAC_SUB_3_c1 = __FP_FRAC_SUB_3_tmp[0] > x0; \
|
|
|
|
__FP_FRAC_SUB_3_tmp[1] = x1 - y1; \
|
|
|
|
__FP_FRAC_SUB_3_c2 = __FP_FRAC_SUB_3_tmp[1] > x1; \
|
|
|
|
__FP_FRAC_SUB_3_tmp[1] -= __FP_FRAC_SUB_3_c1; \
|
|
|
|
__FP_FRAC_SUB_3_c2 |= __FP_FRAC_SUB_3_c1 && (y1 == x1); \
|
|
|
|
r2 = x2 - y2 - __FP_FRAC_SUB_3_c2; \
|
|
|
|
r1 = __FP_FRAC_SUB_3_tmp[1]; \
|
|
|
|
r0 = __FP_FRAC_SUB_3_tmp[0]; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#ifndef __FP_FRAC_SUB_4
|
|
|
|
# define __FP_FRAC_SUB_4(r3, r2, r1, r0, x3, x2, x1, x0, y3, y2, y1, y0) \
|
soft-fp: Use temporary variable in FP_FRAC_SUB_3/FP_FRAC_SUB_4
In FRAC_SUB_3(R, X, Y) and FRAC_SUB_4(R,, X, Y), it reference both
the X[N] and X[N] after R[N] have been set. If one of the X and Y is
the same address with R, the result of the calculation is wrong,
because the value of the original X and Y are overwritten.
In glibc, there are two places use FRAC_SUB and occurs the overlap.
The first is _FP_DIV_MEAT_N_loop in op-common.h, it uses the source
_FP_DIV_MEAT_N_loop_u as the destination. This macro only be used
when N is one(_FP_DIV_MEAT_1_loop) and then the _FP_FRAC_SUB_##wc
extend to _FP_FRAC_SUB_1 in this macro. so it also work because
_FP_FRAC_SUB_1 has no overlap problem in its implementation.
The second places is _FP_DIV_MEAT_4_udiv, the original value of X##_f[0]
is overwritten before the calculatation.
In FRAC_SUB_1 and FRAC_SUB_2, there don't refer the source after
destination have been set, so they have no problem.
After this modification, we can pass the soft floating testing of glibc
testsuites on RV32.
* soft-fp/op-4.h (_FP_FRAC_SUB_3, _FP_FRAC_SUB_4): Use temporary
variable to avoid overlap arguments.
2018-11-01 17:34:39 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
_FP_W_TYPE __FP_FRAC_SUB_4_tmp[3]; \
|
|
|
|
_FP_W_TYPE __FP_FRAC_SUB_4_c1, __FP_FRAC_SUB_4_c2; \
|
|
|
|
_FP_W_TYPE __FP_FRAC_SUB_4_c3; \
|
|
|
|
__FP_FRAC_SUB_4_tmp[0] = x0 - y0; \
|
|
|
|
__FP_FRAC_SUB_4_c1 = __FP_FRAC_SUB_4_tmp[0] > x0; \
|
|
|
|
__FP_FRAC_SUB_4_tmp[1] = x1 - y1; \
|
|
|
|
__FP_FRAC_SUB_4_c2 = __FP_FRAC_SUB_4_tmp[1] > x1; \
|
|
|
|
__FP_FRAC_SUB_4_tmp[1] -= __FP_FRAC_SUB_4_c1; \
|
|
|
|
__FP_FRAC_SUB_4_c2 |= __FP_FRAC_SUB_4_c1 && (y1 == x1); \
|
|
|
|
__FP_FRAC_SUB_4_tmp[2] = x2 - y2; \
|
|
|
|
__FP_FRAC_SUB_4_c3 = __FP_FRAC_SUB_4_tmp[2] > x2; \
|
|
|
|
__FP_FRAC_SUB_4_tmp[2] -= __FP_FRAC_SUB_4_c2; \
|
|
|
|
__FP_FRAC_SUB_4_c3 |= __FP_FRAC_SUB_4_c2 && (y2 == x2); \
|
|
|
|
r3 = x3 - y3 - __FP_FRAC_SUB_4_c3; \
|
|
|
|
r2 = __FP_FRAC_SUB_4_tmp[2]; \
|
|
|
|
r1 = __FP_FRAC_SUB_4_tmp[1]; \
|
|
|
|
r0 = __FP_FRAC_SUB_4_tmp[0]; \
|
|
|
|
} \
|
2013-10-16 01:22:21 +00:00
|
|
|
while (0)
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 18:11:48 +00:00
|
|
|
#ifndef __FP_FRAC_DEC_3
|
2013-10-16 01:22:21 +00:00
|
|
|
# define __FP_FRAC_DEC_3(x2, x1, x0, y2, y1, y0) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
2014-06-30 17:37:10 +00:00
|
|
|
UWtype __FP_FRAC_DEC_3_t0, __FP_FRAC_DEC_3_t1; \
|
|
|
|
UWtype __FP_FRAC_DEC_3_t2; \
|
|
|
|
__FP_FRAC_DEC_3_t0 = x0; \
|
|
|
|
__FP_FRAC_DEC_3_t1 = x1; \
|
|
|
|
__FP_FRAC_DEC_3_t2 = x2; \
|
|
|
|
__FP_FRAC_SUB_3 (x2, x1, x0, __FP_FRAC_DEC_3_t2, \
|
|
|
|
__FP_FRAC_DEC_3_t1, __FP_FRAC_DEC_3_t0, \
|
|
|
|
y2, y1, y0); \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FP_FRAC_DEC_4
|
2014-06-30 17:37:10 +00:00
|
|
|
# define __FP_FRAC_DEC_4(x3, x2, x1, x0, y3, y2, y1, y0) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
UWtype __FP_FRAC_DEC_4_t0, __FP_FRAC_DEC_4_t1; \
|
|
|
|
UWtype __FP_FRAC_DEC_4_t2, __FP_FRAC_DEC_4_t3; \
|
|
|
|
__FP_FRAC_DEC_4_t0 = x0; \
|
|
|
|
__FP_FRAC_DEC_4_t1 = x1; \
|
|
|
|
__FP_FRAC_DEC_4_t2 = x2; \
|
|
|
|
__FP_FRAC_DEC_4_t3 = x3; \
|
|
|
|
__FP_FRAC_SUB_4 (x3, x2, x1, x0, __FP_FRAC_DEC_4_t3, \
|
|
|
|
__FP_FRAC_DEC_4_t2, __FP_FRAC_DEC_4_t1, \
|
|
|
|
__FP_FRAC_DEC_4_t0, y3, y2, y1, y0); \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __FP_FRAC_ADDI_4
|
2014-06-30 17:37:10 +00:00
|
|
|
# define __FP_FRAC_ADDI_4(x3, x2, x1, x0, i) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
UWtype __FP_FRAC_ADDI_4_t; \
|
|
|
|
__FP_FRAC_ADDI_4_t = ((x0 += i) < i); \
|
|
|
|
x1 += __FP_FRAC_ADDI_4_t; \
|
|
|
|
__FP_FRAC_ADDI_4_t = (x1 < __FP_FRAC_ADDI_4_t); \
|
|
|
|
x2 += __FP_FRAC_ADDI_4_t; \
|
|
|
|
__FP_FRAC_ADDI_4_t = (x2 < __FP_FRAC_ADDI_4_t); \
|
|
|
|
x3 += __FP_FRAC_ADDI_4_t; \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Convert FP values between word sizes. This appears to be more
|
2014-09-17 22:20:45 +00:00
|
|
|
complicated than I'd have expected it to be, so these might be
|
|
|
|
wrong... These macros are in any case somewhat bogus because they
|
|
|
|
use information about what various FRAC_n variables look like
|
|
|
|
internally [eg, that 2 word vars are X_f0 and x_f1]. But so do
|
|
|
|
the ones in op-2.h and op-1.h. */
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
2006-02-18 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/single.h (SFtype): Define.
(union _FP_UNION_S): Use it.
* soft-fp/double.h (DFtype): Define.
(union _FP_UNION_D): Use it.
* soft-fp/extended.h (XFtype): Define.
(union _FP_UNION_E): Use it.
* soft-fp/quad.h (TFtype): Define.
(union _FP_UNION_Q): Use it.
* soft-fp/soft-fp.h: Add _LIBC conditionals.
(SI_BITS, DI_BITS): Define.
* soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
X##_c.
(_FP_CMP_EQ): Use parentheses for && inside ||.
(_FP_TO_INT): Use statement expressions in conditional controlling
constant shift.
(_FP_FROM_INT): Likewise. Take unsigned type as argument.
* soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
_FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
conditional controlling possibly constant shift.
(_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
__FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
* soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
* soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/fixdfdi.c: Pass macro for type size.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
* soft-fp/adddf3.c: Use typedefs for argument and return types.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/divdf3.c: Likewise.
* soft-fp/divsf3.c: Likewise.
* soft-fp/divtf3.c: Likewise.
* soft-fp/eqdf2.c: Likewise.
* soft-fp/eqsf2.c: Likewise.
* soft-fp/eqtf2.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/gedf2.c: Likewise.
* soft-fp/gesf2.c: Likewise.
* soft-fp/getf2.c: Likewise.
* soft-fp/ledf2.c: Likewise.
* soft-fp/lesf2.c: Likewise.
* soft-fp/letf2.c: Likewise.
* soft-fp/muldf3.c: Likewise.
* soft-fp/mulsf3.c: Likewise.
* soft-fp/multf3.c: Likewise.
* soft-fp/negdf2.c: Likewise.
* soft-fp/negsf2.c: Likewise.
* soft-fp/negtf2.c: Likewise.
* soft-fp/sqrtdf2.c: Likewise.
* soft-fp/sqrtsf2.c: Likewise.
* soft-fp/sqrttf2.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* soft-fp/unorddf2.c: Likewise.
* soft-fp/unordsf2.c: Likewise.
* soft-fp/unordtf2.c: Likewise.
2006-02-09 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
(_FP_OVERFLOW_SEMIRAW): Likewise.
(_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
(_FP_CHOOSENAN_SEMIRAW): Likewise.
(_FP_EXP_NORMAL): Likewise.
(_FP_PACK_SEMIRAW): Likewise.
(_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
(_FP_SUB): Likewise.
(_FP_TO_INT): Rewrite to operate on raw values. Don't set INVALID
exception for conversions where most negative representable
integer is correct truncated value, but do set INEXACT for such
conversions where appropriate. Don't always left-shift for
converting to a wider integer.
(_FP_FROM_INT): Rewrite to yield raw value. Correct shift for
integers with one more bits than (mantissa + guard) bits for the
floating point format. Don't use __FP_FRAC_SRS_1 for shifting
integers that may be wider than _FP_W_TYPE_SIZE.
(FP_CONV): Don't define.
(FP_EXTEND): Define.
(FP_TRUNC): Likewise.
* soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
(_FP_FRAC_CONV_1_1): Don't define.
(_FP_FRAC_COPY_1_1): Define.
* soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
(_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
(_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
(_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
(_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
(_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
(_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
(_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
* soft-fp/single.h (_FP_FRACTBITS_S): Define.
(_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
(_FP_WFRACXBITS_S): Likewise.
(_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
(FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
(FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
* soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
(FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
(FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
* soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
(FP_UNPACK_EP): Correct typo.
(FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
(FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
* soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
(FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
(FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
* soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* soft-fp/adddf3.c: Update for changed soft-fp interfaces.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* sysdeps/alpha/soft-fp/ots_add.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_add.c: Likewise.
* sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
* sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
2006-02-25 01:29:59 +00:00
|
|
|
#define _FP_FRAC_COPY_1_4(D, S) (D##_f = S##_f[0])
|
1999-12-29 18:11:48 +00:00
|
|
|
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
2006-02-18 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/single.h (SFtype): Define.
(union _FP_UNION_S): Use it.
* soft-fp/double.h (DFtype): Define.
(union _FP_UNION_D): Use it.
* soft-fp/extended.h (XFtype): Define.
(union _FP_UNION_E): Use it.
* soft-fp/quad.h (TFtype): Define.
(union _FP_UNION_Q): Use it.
* soft-fp/soft-fp.h: Add _LIBC conditionals.
(SI_BITS, DI_BITS): Define.
* soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
X##_c.
(_FP_CMP_EQ): Use parentheses for && inside ||.
(_FP_TO_INT): Use statement expressions in conditional controlling
constant shift.
(_FP_FROM_INT): Likewise. Take unsigned type as argument.
* soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
_FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
conditional controlling possibly constant shift.
(_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
__FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
* soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
* soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/fixdfdi.c: Pass macro for type size.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
* soft-fp/adddf3.c: Use typedefs for argument and return types.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/divdf3.c: Likewise.
* soft-fp/divsf3.c: Likewise.
* soft-fp/divtf3.c: Likewise.
* soft-fp/eqdf2.c: Likewise.
* soft-fp/eqsf2.c: Likewise.
* soft-fp/eqtf2.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/gedf2.c: Likewise.
* soft-fp/gesf2.c: Likewise.
* soft-fp/getf2.c: Likewise.
* soft-fp/ledf2.c: Likewise.
* soft-fp/lesf2.c: Likewise.
* soft-fp/letf2.c: Likewise.
* soft-fp/muldf3.c: Likewise.
* soft-fp/mulsf3.c: Likewise.
* soft-fp/multf3.c: Likewise.
* soft-fp/negdf2.c: Likewise.
* soft-fp/negsf2.c: Likewise.
* soft-fp/negtf2.c: Likewise.
* soft-fp/sqrtdf2.c: Likewise.
* soft-fp/sqrtsf2.c: Likewise.
* soft-fp/sqrttf2.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* soft-fp/unorddf2.c: Likewise.
* soft-fp/unordsf2.c: Likewise.
* soft-fp/unordtf2.c: Likewise.
2006-02-09 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
(_FP_OVERFLOW_SEMIRAW): Likewise.
(_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
(_FP_CHOOSENAN_SEMIRAW): Likewise.
(_FP_EXP_NORMAL): Likewise.
(_FP_PACK_SEMIRAW): Likewise.
(_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
(_FP_SUB): Likewise.
(_FP_TO_INT): Rewrite to operate on raw values. Don't set INVALID
exception for conversions where most negative representable
integer is correct truncated value, but do set INEXACT for such
conversions where appropriate. Don't always left-shift for
converting to a wider integer.
(_FP_FROM_INT): Rewrite to yield raw value. Correct shift for
integers with one more bits than (mantissa + guard) bits for the
floating point format. Don't use __FP_FRAC_SRS_1 for shifting
integers that may be wider than _FP_W_TYPE_SIZE.
(FP_CONV): Don't define.
(FP_EXTEND): Define.
(FP_TRUNC): Likewise.
* soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
(_FP_FRAC_CONV_1_1): Don't define.
(_FP_FRAC_COPY_1_1): Define.
* soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
(_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
(_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
(_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
(_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
(_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
(_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
(_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
* soft-fp/single.h (_FP_FRACTBITS_S): Define.
(_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
(_FP_WFRACXBITS_S): Likewise.
(_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
(FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
(FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
* soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
(FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
(FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
* soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
(FP_UNPACK_EP): Correct typo.
(FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
(FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
* soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
(FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
(FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
* soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* soft-fp/adddf3.c: Update for changed soft-fp interfaces.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* sysdeps/alpha/soft-fp/ots_add.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_add.c: Likewise.
* sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
* sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
2006-02-25 01:29:59 +00:00
|
|
|
#define _FP_FRAC_COPY_2_4(D, S) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
D##_f0 = S##_f[0]; \
|
|
|
|
D##_f1 = S##_f[1]; \
|
|
|
|
} \
|
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
2013-06-05 20:44:03 +00:00
|
|
|
/* Assembly/disassembly for converting to/from integral types.
|
2014-09-17 22:20:45 +00:00
|
|
|
No shifting or overflow handled here. */
|
|
|
|
/* Put the FP value X into r, which is an integer of size rsize. */
|
1999-12-29 18:11:48 +00:00
|
|
|
#define _FP_FRAC_ASSEMBLE_4(r, X, rsize) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
1999-12-29 18:11:48 +00:00
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
if ((rsize) <= _FP_W_TYPE_SIZE) \
|
|
|
|
(r) = X##_f[0]; \
|
|
|
|
else if ((rsize) <= 2*_FP_W_TYPE_SIZE) \
|
2013-10-15 00:17:35 +00:00
|
|
|
{ \
|
2014-10-09 17:05:26 +00:00
|
|
|
(r) = X##_f[1]; \
|
|
|
|
(r) = ((rsize) <= _FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) << _FP_W_TYPE_SIZE); \
|
|
|
|
(r) += X##_f[0]; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2014-09-17 22:20:45 +00:00
|
|
|
/* I'm feeling lazy so we deal with int == 3words \
|
|
|
|
(implausible) and int == 4words as a single case. */ \
|
2014-10-09 17:05:26 +00:00
|
|
|
(r) = X##_f[3]; \
|
|
|
|
(r) = ((rsize) <= _FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) << _FP_W_TYPE_SIZE); \
|
|
|
|
(r) += X##_f[2]; \
|
|
|
|
(r) = ((rsize) <= _FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) << _FP_W_TYPE_SIZE); \
|
|
|
|
(r) += X##_f[1]; \
|
|
|
|
(r) = ((rsize) <= _FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) << _FP_W_TYPE_SIZE); \
|
|
|
|
(r) += X##_f[0]; \
|
2013-10-15 00:17:35 +00:00
|
|
|
} \
|
1999-12-29 18:11:48 +00:00
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
|
|
|
/* "No disassemble Number Five!" */
|
2014-09-17 22:20:45 +00:00
|
|
|
/* Move an integer of size rsize into X's fractional part. We rely on
|
|
|
|
the _f[] array consisting of words of size _FP_W_TYPE_SIZE to avoid
|
|
|
|
having to mask the values we store into it. */
|
2014-10-09 17:05:26 +00:00
|
|
|
#define _FP_FRAC_DISASSEMBLE_4(X, r, rsize) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
X##_f[0] = (r); \
|
|
|
|
X##_f[1] = ((rsize) <= _FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) >> _FP_W_TYPE_SIZE); \
|
|
|
|
X##_f[2] = ((rsize) <= 2*_FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) >> 2*_FP_W_TYPE_SIZE); \
|
|
|
|
X##_f[3] = ((rsize) <= 3*_FP_W_TYPE_SIZE \
|
|
|
|
? 0 \
|
|
|
|
: (r) >> 3*_FP_W_TYPE_SIZE); \
|
|
|
|
} \
|
2013-10-15 00:17:35 +00:00
|
|
|
while (0)
|
1999-12-29 18:11:48 +00:00
|
|
|
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
2006-02-18 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/single.h (SFtype): Define.
(union _FP_UNION_S): Use it.
* soft-fp/double.h (DFtype): Define.
(union _FP_UNION_D): Use it.
* soft-fp/extended.h (XFtype): Define.
(union _FP_UNION_E): Use it.
* soft-fp/quad.h (TFtype): Define.
(union _FP_UNION_Q): Use it.
* soft-fp/soft-fp.h: Add _LIBC conditionals.
(SI_BITS, DI_BITS): Define.
* soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
X##_c.
(_FP_CMP_EQ): Use parentheses for && inside ||.
(_FP_TO_INT): Use statement expressions in conditional controlling
constant shift.
(_FP_FROM_INT): Likewise. Take unsigned type as argument.
* soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
_FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
conditional controlling possibly constant shift.
(_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
__FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
* soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
* soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/fixdfdi.c: Pass macro for type size.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
* soft-fp/adddf3.c: Use typedefs for argument and return types.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/divdf3.c: Likewise.
* soft-fp/divsf3.c: Likewise.
* soft-fp/divtf3.c: Likewise.
* soft-fp/eqdf2.c: Likewise.
* soft-fp/eqsf2.c: Likewise.
* soft-fp/eqtf2.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/gedf2.c: Likewise.
* soft-fp/gesf2.c: Likewise.
* soft-fp/getf2.c: Likewise.
* soft-fp/ledf2.c: Likewise.
* soft-fp/lesf2.c: Likewise.
* soft-fp/letf2.c: Likewise.
* soft-fp/muldf3.c: Likewise.
* soft-fp/mulsf3.c: Likewise.
* soft-fp/multf3.c: Likewise.
* soft-fp/negdf2.c: Likewise.
* soft-fp/negsf2.c: Likewise.
* soft-fp/negtf2.c: Likewise.
* soft-fp/sqrtdf2.c: Likewise.
* soft-fp/sqrtsf2.c: Likewise.
* soft-fp/sqrttf2.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* soft-fp/unorddf2.c: Likewise.
* soft-fp/unordsf2.c: Likewise.
* soft-fp/unordtf2.c: Likewise.
2006-02-09 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
(_FP_OVERFLOW_SEMIRAW): Likewise.
(_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
(_FP_CHOOSENAN_SEMIRAW): Likewise.
(_FP_EXP_NORMAL): Likewise.
(_FP_PACK_SEMIRAW): Likewise.
(_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
(_FP_SUB): Likewise.
(_FP_TO_INT): Rewrite to operate on raw values. Don't set INVALID
exception for conversions where most negative representable
integer is correct truncated value, but do set INEXACT for such
conversions where appropriate. Don't always left-shift for
converting to a wider integer.
(_FP_FROM_INT): Rewrite to yield raw value. Correct shift for
integers with one more bits than (mantissa + guard) bits for the
floating point format. Don't use __FP_FRAC_SRS_1 for shifting
integers that may be wider than _FP_W_TYPE_SIZE.
(FP_CONV): Don't define.
(FP_EXTEND): Define.
(FP_TRUNC): Likewise.
* soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
(_FP_FRAC_CONV_1_1): Don't define.
(_FP_FRAC_COPY_1_1): Define.
* soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
(_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
(_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
(_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
(_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
(_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
(_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
(_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
* soft-fp/single.h (_FP_FRACTBITS_S): Define.
(_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
(_FP_WFRACXBITS_S): Likewise.
(_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
(FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
(FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
* soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
(FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
(FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
* soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
(FP_UNPACK_EP): Correct typo.
(FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
(FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
* soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
(FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
(FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
* soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* soft-fp/adddf3.c: Update for changed soft-fp interfaces.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* sysdeps/alpha/soft-fp/ots_add.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_add.c: Likewise.
* sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
* sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
2006-02-25 01:29:59 +00:00
|
|
|
#define _FP_FRAC_COPY_4_1(D, S) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
D##_f[0] = S##_f; \
|
|
|
|
D##_f[1] = D##_f[2] = D##_f[3] = 0; \
|
|
|
|
} \
|
|
|
|
while (0)
|
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.c: Moved to ...
* sysdeps/sparc/dl-procinfo.c: ... here, new file.
* sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h: Moved to ...
* sysdeps/sparc/dl-procinfo.h: ... here, new file.
(HWCAP_IMPORTANT): Include HWCAP_SPARC_V9 when [__WORDSIZE__ != 64].
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.c: File removed.
* sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h: File removed.
2006-02-18 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/single.h (SFtype): Define.
(union _FP_UNION_S): Use it.
* soft-fp/double.h (DFtype): Define.
(union _FP_UNION_D): Use it.
* soft-fp/extended.h (XFtype): Define.
(union _FP_UNION_E): Use it.
* soft-fp/quad.h (TFtype): Define.
(union _FP_UNION_Q): Use it.
* soft-fp/soft-fp.h: Add _LIBC conditionals.
(SI_BITS, DI_BITS): Define.
* soft-fp/op-common.h (_FP_DECL): Add __attribute__((unused)) for
X##_c.
(_FP_CMP_EQ): Use parentheses for && inside ||.
(_FP_TO_INT): Use statement expressions in conditional controlling
constant shift.
(_FP_FROM_INT): Likewise. Take unsigned type as argument.
* soft-fp/op-2.h (_FP_FRAC_SLL_2, _FP_FRAC_SRL_2, _FP_FRAC_SRST_2,
_FP_FRAC_SRS_2, _FP_FRAC_ASSEMBLE_2): Use statement expressions in
conditional controlling possibly constant shift.
(_FP_FRAC_SRST_2, _FP_FRAC_SRS_2): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(_FP_FRAC_GT_2, _FP_FRAC_GE_2): Use parentheses for && inside ||.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
(__FP_FRAC_ADD_3, __FP_FRAC_ADD_4, __FP_FRAC_SUB_3,
__FP_FRAC_SUB_4): Use _FP_W_TYPE for carry flags.
* soft-fp/op-8.h (_FP_FRAC_SRS_8): Avoid left shift by exactly
_FP_W_TYPE_SIZE.
* soft-fp/floatdidf.c: Pass unsigned type and macro for type size.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/fixdfdi.c: Pass macro for type size.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Pass unsigned type.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
* soft-fp/adddf3.c: Use typedefs for argument and return types.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/divdf3.c: Likewise.
* soft-fp/divsf3.c: Likewise.
* soft-fp/divtf3.c: Likewise.
* soft-fp/eqdf2.c: Likewise.
* soft-fp/eqsf2.c: Likewise.
* soft-fp/eqtf2.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/gedf2.c: Likewise.
* soft-fp/gesf2.c: Likewise.
* soft-fp/getf2.c: Likewise.
* soft-fp/ledf2.c: Likewise.
* soft-fp/lesf2.c: Likewise.
* soft-fp/letf2.c: Likewise.
* soft-fp/muldf3.c: Likewise.
* soft-fp/mulsf3.c: Likewise.
* soft-fp/multf3.c: Likewise.
* soft-fp/negdf2.c: Likewise.
* soft-fp/negsf2.c: Likewise.
* soft-fp/negtf2.c: Likewise.
* soft-fp/sqrtdf2.c: Likewise.
* soft-fp/sqrtsf2.c: Likewise.
* soft-fp/sqrttf2.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* soft-fp/unorddf2.c: Likewise.
* soft-fp/unordsf2.c: Likewise.
* soft-fp/unordtf2.c: Likewise.
2006-02-09 Joseph S. Myers <joseph@codesourcery.com>
* soft-fp/op-common.h (_FP_UNPACK_SEMIRAW): Define.
(_FP_OVERFLOW_SEMIRAW): Likewise.
(_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
(_FP_CHOOSENAN_SEMIRAW): Likewise.
(_FP_EXP_NORMAL): Likewise.
(_FP_PACK_SEMIRAW): Likewise.
(_FP_ADD_INTERNAL): Rewrite to operate on semi-raw value.
(_FP_SUB): Likewise.
(_FP_TO_INT): Rewrite to operate on raw values. Don't set INVALID
exception for conversions where most negative representable
integer is correct truncated value, but do set INEXACT for such
conversions where appropriate. Don't always left-shift for
converting to a wider integer.
(_FP_FROM_INT): Rewrite to yield raw value. Correct shift for
integers with one more bits than (mantissa + guard) bits for the
floating point format. Don't use __FP_FRAC_SRS_1 for shifting
integers that may be wider than _FP_W_TYPE_SIZE.
(FP_CONV): Don't define.
(FP_EXTEND): Define.
(FP_TRUNC): Likewise.
* soft-fp/op-1.h (_FP_FRAC_SRST_1, __FP_FRAC_SRST_1): Define.
(_FP_FRAC_CONV_1_1): Don't define.
(_FP_FRAC_COPY_1_1): Define.
* soft-fp/op-2.h (_FP_FRAC_SRST_2): Define.
(_FP_FRAC_CONV_1_2, _FP_FRAC_CONV_2_1): Don't define.
(_FP_FRAC_COPY_1_2, _FP_FRAC_COPY_2_1): Define.
* soft-fp/op-4.h (_FP_FRAC_SRST_4): Define.
(_FP_FRAC_SRS_4): Define based on _FP_FRAC_SRST_4.
(_FP_FRAC_CONV_1_4, _FP_FRAC_CONV_2_4): Don't define.
(_FP_FRAC_COPY_1_4, _FP_FRAC_COPY_2_4): Define.
(_FP_FRAC_CONV_4_1, _FP_FRAC_CONV_4_2): Don't define.
(_FP_FRAC_COPY_4_1, _FP_FRAC_COPY_4_2): Define.
* soft-fp/single.h (_FP_FRACTBITS_S): Define.
(_FP_FRACXBITS_S): Define in terms of _FP_FRACXBITS_S.
(_FP_WFRACXBITS_S): Likewise.
(_FP_QNANBIT_SH_S, _FP_IMPLBIT_SH_S): Define.
(FP_UNPACK_SEMIRAW_S, FP_UNPACK_SEMIRAW_SP): Define.
(FP_PACK_SEMIRAW_S, FP_PACK_SEMIRAW_SP): Define.
* soft-fp/double.h (_FP_QNANBIT_SH_D, _FP_IMPLBIT_SH_D): Define.
(FP_UNPACK_SEMIRAW_D, FP_UNPACK_SEMIRAW_D): Define
(FP_PACK_SEMIRAW_D, FP_PACK_SEMIRAW_DP): Define.
* soft-fp/extended.h (_FP_QNANBIT_SH_E, _FP_IMPLBIT_SH_E): Define.
(FP_UNPACK_EP): Correct typo.
(FP_UNPACK_SEMIRAW_E, FP_UNPACK_SEMIRAW_EP): Define.
(FP_PACK_SEMIRAW_E, FP_PACK_SEMIRAW_EP): Define.
* soft-fp/quad.h (_FP_QNANBIT_SH_Q, _FP_IMPLBIT_SH_Q): Define.
(FP_UNPACK_SEMIRAW_Q, FP_UNPACK_SEMIRAW_QP): Define.
(FP_PACK_SEMIRAW_Q, FP_PACK_SEMIRAW_QP): Define.
* soft-fp/fixdfdi.c: Use unsigned type for result of conversion.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* soft-fp/adddf3.c: Update for changed soft-fp interfaces.
* soft-fp/addsf3.c: Likewise.
* soft-fp/addtf3.c: Likewise.
* soft-fp/extenddftf2.c: Likewise.
* soft-fp/extendsfdf2.c: Likewise.
* soft-fp/extendsftf2.c: Likewise.
* soft-fp/fixdfdi.c: Likewise.
* soft-fp/fixdfsi.c: Likewise.
* soft-fp/fixsfdi.c: Likewise.
* soft-fp/fixsfsi.c: Likewise.
* soft-fp/fixtfdi.c: Likewise.
* soft-fp/fixtfsi.c: Likewise.
* soft-fp/fixunsdfdi.c: Likewise.
* soft-fp/fixunsdfsi.c: Likewise.
* soft-fp/fixunssfdi.c: Likewise.
* soft-fp/fixunssfsi.c: Likewise.
* soft-fp/fixunstfdi.c: Likewise.
* soft-fp/fixunstfsi.c: Likewise.
* soft-fp/floatdidf.c: Likewise.
* soft-fp/floatdisf.c: Likewise.
* soft-fp/floatditf.c: Likewise.
* soft-fp/floatsidf.c: Likewise.
* soft-fp/floatsisf.c: Likewise.
* soft-fp/floatsitf.c: Likewise.
* soft-fp/floatundidf.c: Likewise.
* soft-fp/floatundisf.c: Likewise.
* soft-fp/floatunditf.c: Likewise.
* soft-fp/floatunsidf.c: Likewise.
* soft-fp/floatunsisf.c: Likewise.
* soft-fp/floatunsitf.c: Likewise.
* soft-fp/subdf3.c: Likewise.
* soft-fp/subsf3.c: Likewise.
* soft-fp/subtf3.c: Likewise.
* soft-fp/truncdfsf2.c: Likewise.
* soft-fp/trunctfdf2.c: Likewise.
* soft-fp/trunctfsf2.c: Likewise.
* sysdeps/alpha/soft-fp/ots_add.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqux.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtqx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvttx.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_cvtxt.c: Likewise.
* sysdeps/alpha/soft-fp/ots_nintxq.c: Likewise.
* sysdeps/alpha/soft-fp/ots_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_add.c: Likewise.
* sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
* sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
* sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
* sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_add.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_sub.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Likewise.
* sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_add.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Likewise.
* sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Likewise.
2006-02-25 01:29:59 +00:00
|
|
|
|
|
|
|
#define _FP_FRAC_COPY_4_2(D, S) \
|
2013-10-15 00:17:35 +00:00
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
D##_f[0] = S##_f0; \
|
|
|
|
D##_f[1] = S##_f1; \
|
|
|
|
D##_f[2] = D##_f[3] = 0; \
|
|
|
|
} \
|
|
|
|
while (0)
|
2007-05-03 16:36:49 +00:00
|
|
|
|
2013-10-16 01:22:21 +00:00
|
|
|
#define _FP_FRAC_COPY_4_4(D, S) _FP_FRAC_COPY_4 (D, S)
|
2015-03-10 00:32:29 +00:00
|
|
|
|
|
|
|
#endif /* !SOFT_FP_OP_4_H */
|