* expmed.c (expand_divmod): Add comment.
[official-gcc.git] / libdecnumber / decRound.c
blob45c642f1c76d9bcd21e9f6bcb6f9713fa8161b6a
1 /* Internal testing support for rounding for decimal float.
3 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 #include "config.h"
23 #include "decContext.h"
24 #include "decRound.h"
26 /* Internal, non-documented functions for testing libgcc functions.
27 This support is not sufficient for application use. */
29 #define FE_DEC_DOWNWARD 0
30 #define FE_DEC_TONEAREST 1
31 #define FE_DEC_TONEARESTFROMZERO 2
32 #define FE_DEC_TOWARDZERO 3
33 #define FE_DEC_UPWARD 4
34 #define FE_DEC_MAX 5
36 static enum rounding __dfp_rounding_mode = DEC_ROUND_HALF_EVEN;
38 /* Set the decNumber rounding mode from the FE_DEC_* value in MODE. */
40 void
41 __dfp_set_round (int mode)
43 switch (mode)
45 case FE_DEC_DOWNWARD:
46 __dfp_rounding_mode = DEC_ROUND_FLOOR; break;
47 case FE_DEC_TONEAREST:
48 __dfp_rounding_mode = DEC_ROUND_HALF_EVEN; break;
49 case FE_DEC_TONEARESTFROMZERO:
50 __dfp_rounding_mode = DEC_ROUND_HALF_UP; break;
51 case FE_DEC_TOWARDZERO:
52 __dfp_rounding_mode = DEC_ROUND_DOWN; break;
53 case FE_DEC_UPWARD:
54 __dfp_rounding_mode = DEC_ROUND_CEILING; break;
55 default:
56 /* We can't use assert in libgcc, so just return the default mode. */
57 __dfp_rounding_mode = DEC_ROUND_HALF_EVEN; break;
61 /* Return the decNumber rounding mode as an FE_DEC_* value. */
63 int
64 __dfp_get_round (void)
66 int mode;
68 switch (__dfp_rounding_mode)
70 case DEC_ROUND_FLOOR:
71 mode = FE_DEC_DOWNWARD; break;
72 case DEC_ROUND_HALF_EVEN:
73 mode = FE_DEC_TONEAREST; break;
74 case DEC_ROUND_HALF_UP:
75 mode = FE_DEC_TONEARESTFROMZERO; break;
76 case DEC_ROUND_DOWN:
77 mode = FE_DEC_TOWARDZERO; break;
78 case DEC_ROUND_CEILING:
79 mode = FE_DEC_UPWARD; break;
80 default:
81 /* We shouldn't get here, but can't use assert in libgcc. */
82 mode = -1;
84 return mode;
87 /* Return the decNumber version of the current rounding mode. */
89 enum rounding
90 __decGetRound (void)
92 return __dfp_rounding_mode;