X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Freal.h;h=5c4e9c605d81eeb78576e2731171da1cfebe37d2;hb=e551bd1a627721943b25c270a38b7f3e7df8f647;hp=0543b8f8f9d61239860e48d5743ff0259b2b92ac;hpb=8918c507b52af94287c0e2806f1a5035ac3b5e43;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/real.h b/gcc/real.h index 0543b8f8f9d..5c4e9c605d8 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -1,6 +1,6 @@ /* Definitions of floating-point access for GNU compiler. Copyright (C) 1989, 1991, 1994, 1996, 1997, 1998, 1999, - 2000, 2002, 2003 Free Software Foundation, Inc. + 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GCC. @@ -42,14 +42,23 @@ enum real_value_class { struct real_value GTY(()) { - ENUM_BITFIELD (real_value_class) class : 2; + /* Use the same underlying type for all bit-fields, so as to make + sure they're packed together, otherwise REAL_VALUE_TYPE_SIZE will + be miscomputed. */ + unsigned int /* ENUM_BITFIELD (real_value_class) */ cl : 2; unsigned int sign : 1; unsigned int signalling : 1; unsigned int canonical : 1; - signed int exp : EXP_BITS; + unsigned int uexp : EXP_BITS; unsigned long sig[SIGSZ]; }; +#define REAL_EXP(REAL) \ + ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \ + - (1 << (EXP_BITS - 1))) +#define SET_REAL_EXP(REAL, EXP) \ + ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1))) + /* Various headers condition prototypes on #ifdef REAL_VALUE_TYPE, so it needs to be a macro. We do need to continue to have a structure tag so that other headers can forward declare it. */ @@ -143,13 +152,21 @@ struct real_format /* The target format used for each floating floating point mode. Indexed by MODE - QFmode. */ -extern const struct real_format *real_format_for_mode[TFmode - QFmode + 1]; +extern const struct real_format * + real_format_for_mode[MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1]; + +#define REAL_MODE_FORMAT(MODE) (real_format_for_mode[(MODE) - MIN_MODE_FLOAT]) +/* The following macro determines whether the floating point format is + composite, i.e. may contain non-consecutive mantissa bits, in which + case compile-time FP overflow may not model run-time overflow. */ +#define REAL_MODE_FORMAT_COMPOSITE_P(MODE) \ + ((REAL_MODE_FORMAT(MODE))->pnan < (REAL_MODE_FORMAT (MODE))->p) /* Declare functions in real.c. */ /* Binary or unary arithmetic on tree_code. */ -extern void real_arithmetic (REAL_VALUE_TYPE *, int, const REAL_VALUE_TYPE *, +extern bool real_arithmetic (REAL_VALUE_TYPE *, int, const REAL_VALUE_TYPE *, const REAL_VALUE_TYPE *); /* Compare reals by tree_code. */ @@ -333,6 +350,8 @@ extern REAL_VALUE_TYPE dconstm1; extern REAL_VALUE_TYPE dconstm2; extern REAL_VALUE_TYPE dconsthalf; extern REAL_VALUE_TYPE dconstthird; +extern REAL_VALUE_TYPE dconstpi; +extern REAL_VALUE_TYPE dconste; /* Function to return a real value (not a tree node) from a given integer constant. */ @@ -368,5 +387,10 @@ extern void real_floor (REAL_VALUE_TYPE *, enum machine_mode, const REAL_VALUE_TYPE *); extern void real_ceil (REAL_VALUE_TYPE *, enum machine_mode, const REAL_VALUE_TYPE *); +extern void real_round (REAL_VALUE_TYPE *, enum machine_mode, + const REAL_VALUE_TYPE *); + +/* Set the sign of R to the sign of X. */ +extern void real_copysign (REAL_VALUE_TYPE *, const REAL_VALUE_TYPE *); #endif /* ! GCC_REAL_H */