glibc/soft-fp/trunctfxf2.c

54 lines
1.8 KiB
C
Raw Normal View History

2013-10-10 23:57:22 +00:00
/* Software floating-point emulation.
Truncate IEEE quad into IEEE extended
Copyright (C) 2007-2019 Free Software Foundation, Inc.
2013-10-10 23:57:22 +00:00
This file is part of the GNU C Library.
Contributed by Uros Bizjak (ubizjak@gmail.com).
The GNU C Library is free software; you can redistribute it and/or
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.
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.)
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
2013-10-10 23:57:22 +00:00
#include "soft-fp.h"
#include "extended.h"
#include "quad.h"
XFtype
2013-10-16 01:22:21 +00:00
__trunctfxf2 (TFtype a)
2013-10-10 23:57:22 +00:00
{
FP_DECL_EX;
2013-10-16 01:22:21 +00:00
FP_DECL_Q (A);
FP_DECL_E (R);
2013-10-10 23:57:22 +00:00
XFtype r;
FP_INIT_ROUNDMODE;
2013-10-16 01:22:21 +00:00
FP_UNPACK_SEMIRAW_Q (A, a);
soft-fp: Properly check _FP_W_TYPE_SIZE [BZ #24066] quad.h have #if _FP_W_TYPE_SIZE < 64 union _FP_UNION_Q { Use 4 _FP_W_TYPEs } #else union _FP_UNION_Q { Use 2 _FP_W_TYPEs } #endif Replace #if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q with #if _FP_W_TYPE_SIZE < 64 to check whether 4 or 2 _FP_W_TYPEs are used for IEEE quad precision. Tested with build-many-glibcs.py. [BZ #24066] * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if 4_FP_W_TYPEs are used for IEEE quad precision. * soft-fp/extendhftf2.c: Likewise. * soft-fp/extendsftf2.c: Likewise. * soft-fp/extendxftf2.c: Likewise. * soft-fp/trunctfdf2.c: Likewise. * soft-fp/trunctfhf2.c: Likewise. * soft-fp/trunctfsf2.c: Likewise. * soft-fp/trunctfxf2.c: Likewise. * sysdeps/alpha/ots_cvttx.c: Likewise. * sysdeps/alpha/ots_cvtxt.c: Likewise. * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise. * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise. * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise. * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise. * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise. * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise. * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise. * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise. * sysdeps/sparc/sparc32/q_dtoq.c: Likewise. * sysdeps/sparc/sparc32/q_qtod.c: Likewise. * sysdeps/sparc/sparc32/q_qtos.c: Likewise. * sysdeps/sparc/sparc32/q_stoq.c: Likewise. * sysdeps/sparc/sparc64/qp_dtoq.c: Likewise. * sysdeps/sparc/sparc64/qp_qtod.c: Likewise. * sysdeps/sparc/sparc64/qp_qtos.c: Likewise. * sysdeps/sparc/sparc64/qp_stoq.c: Likewise.
2019-01-07 17:04:29 +00:00
#if _FP_W_TYPE_SIZE < 64
2013-10-16 01:22:21 +00:00
FP_TRUNC (E, Q, 4, 4, R, A);
2013-10-10 23:57:22 +00:00
#else
2013-10-16 01:22:21 +00:00
FP_TRUNC (E, Q, 2, 2, R, A);
2013-10-10 23:57:22 +00:00
#endif
2013-10-16 01:22:21 +00:00
FP_PACK_SEMIRAW_E (r, R);
2013-10-10 23:57:22 +00:00
FP_HANDLE_EXCEPTIONS;
return r;
}