2006-11-30 02:34:56 +08:00
|
|
|
/* Internal testing support for rounding for decimal float.
|
|
|
|
|
|
|
|
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
2005-11-29 06:30:30 +08:00
|
|
|
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 07:50:48 +08:00
|
|
|
This file is part of GCC.
|
|
|
|
|
|
|
|
GCC is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
decContext.c, [...]: Add libgcc-style license exception clause.
* decContext.c, decContext.h, decDPD.h, decimal128.c,
decimal128.h, decimal32.c, decimal32.h, decimal64.c, decimal64.h,
decLibrary.c, decNumber.c, decNumber.h, decNumberLocal.h,
decRound.c, decRound.h, decUtility.c, decUtility.h: Add
libgcc-style license exception clause.
From-SVN: r122722
2007-03-09 06:23:15 +08:00
|
|
|
In addition to the permissions in the GNU 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 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.)
|
|
|
|
|
Makefile.in (clean): Remove stray reference to libcpp.a.
* Makefile.in (clean): Remove stray reference to libcpp.a.
* decimal128.h, decContext.c, decRound.c, decimal32.c,
decNumber.c, decContext.h, decimal64.c, decimal32.h, decNumber.h,
decimal64.h, decUtility.c, decLibrary.c, configure.ac,
decNumberLocal.h, decUtility.h, decDPD.h, decimal128.c: Update FSF
office address.
From-SVN: r108024
2005-12-05 07:50:48 +08:00
|
|
|
GCC 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 General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GCC; see the file COPYING. If not, write to the Free
|
|
|
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
2005-11-29 06:30:30 +08:00
|
|
|
|
dfp.c (WORDS_BIGENDIAN): Define to 0 if not defined.
gcc:
* dfp.c (WORDS_BIGENDIAN): Define to 0 if not defined.
(encode_decimal64, decode_decimal64, encode_decimal128,
decode_decimal128): Reverse order of 32-bit parts of value if host
and target endianness differ.
libdecnumber:
* dconfig.h: New.
* decContext.c, decExcept.c, decExcept.h, decLibrary.c,
decNumber.c, decNumberLocal.h, decRound.c, dpd/decimal128.c,
dpd/decimal32.c, dpd/decimal64.c: Include dconfig.h not config.h.
* dpd/decimal128Local.h (decimal128SetSign, decimal128ClearSign,
decimal128FlipSign): Use WORDS_BIGENDIAN not
FLOAT_WORDS_BIG_ENDIAN.
* bid/host-ieee128.c: Include dconfig.h.
(__host_to_ieee_128, __ieee_to_host_128): Swap 64-bit halves of
value if WORDS_BIGENDIAN.
libgcc:
* Makefile.in (DECNUMINC): Remove
-I$(MULTIBUILDTOP)../../libdecnumber.
* gstdint.h: New.
From-SVN: r136641
2008-06-11 07:43:09 +08:00
|
|
|
#include "dconfig.h"
|
2005-11-29 06:30:30 +08:00
|
|
|
#include "decContext.h"
|
2006-11-30 02:34:56 +08:00
|
|
|
#include "decRound.h"
|
|
|
|
|
|
|
|
/* Internal, non-documented functions for testing libgcc functions.
|
|
|
|
This support is not sufficient for application use. */
|
2005-11-29 06:30:30 +08:00
|
|
|
|
|
|
|
#define FE_DEC_DOWNWARD 0
|
|
|
|
#define FE_DEC_TONEAREST 1
|
|
|
|
#define FE_DEC_TONEARESTFROMZERO 2
|
|
|
|
#define FE_DEC_TOWARDZERO 3
|
|
|
|
#define FE_DEC_UPWARD 4
|
|
|
|
#define FE_DEC_MAX 5
|
|
|
|
|
|
|
|
static enum rounding __dfp_rounding_mode = DEC_ROUND_HALF_EVEN;
|
|
|
|
|
|
|
|
/* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
|
|
|
|
|
|
|
|
void
|
|
|
|
__dfp_set_round (int mode)
|
|
|
|
{
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case FE_DEC_DOWNWARD:
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_FLOOR; break;
|
|
|
|
case FE_DEC_TONEAREST:
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_HALF_EVEN; break;
|
|
|
|
case FE_DEC_TONEARESTFROMZERO:
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_HALF_UP; break;
|
|
|
|
case FE_DEC_TOWARDZERO:
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_DOWN; break;
|
|
|
|
case FE_DEC_UPWARD:
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_CEILING; break;
|
|
|
|
default:
|
|
|
|
/* We can't use assert in libgcc, so just return the default mode. */
|
|
|
|
__dfp_rounding_mode = DEC_ROUND_HALF_EVEN; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the decNumber rounding mode as an FE_DEC_* value. */
|
|
|
|
|
|
|
|
int
|
|
|
|
__dfp_get_round (void)
|
|
|
|
{
|
|
|
|
int mode;
|
|
|
|
|
|
|
|
switch (__dfp_rounding_mode)
|
|
|
|
{
|
|
|
|
case DEC_ROUND_FLOOR:
|
|
|
|
mode = FE_DEC_DOWNWARD; break;
|
|
|
|
case DEC_ROUND_HALF_EVEN:
|
|
|
|
mode = FE_DEC_TONEAREST; break;
|
|
|
|
case DEC_ROUND_HALF_UP:
|
|
|
|
mode = FE_DEC_TONEARESTFROMZERO; break;
|
|
|
|
case DEC_ROUND_DOWN:
|
|
|
|
mode = FE_DEC_TOWARDZERO; break;
|
|
|
|
case DEC_ROUND_CEILING:
|
|
|
|
mode = FE_DEC_UPWARD; break;
|
|
|
|
default:
|
|
|
|
/* We shouldn't get here, but can't use assert in libgcc. */
|
|
|
|
mode = -1;
|
|
|
|
}
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the decNumber version of the current rounding mode. */
|
|
|
|
|
|
|
|
enum rounding
|
|
|
|
__decGetRound (void)
|
|
|
|
{
|
|
|
|
return __dfp_rounding_mode;
|
|
|
|
}
|