1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
dnl -*- Autoconf -*-
dnl Copyright (C) 2002, 2005 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
AC_PREREQ(2.13)
dnl Each of the macros determines a facet of the default floating-point
dnl environment.
dnl CL_FLOAT_DIV0 CL_DOUBLE_DIV0 CL_LONGDOUBLE_DIV0
dnl CL_FLOAT_OVERFLOW CL_DOUBLE_OVERFLOW CL_LONGDOUBLE_OVERFLOW
dnl CL_FLOAT_UNDERFLOW CL_DOUBLE_UNDERFLOW CL_LONGDOUBLE_UNDERFLOW
dnl CL_FLOAT_INEXACT CL_DOUBLE_INEXACT CL_LONGDOUBLE_INEXACT
AC_DEFUN([CL_FLOAT_DIV0],
[
AC_MSG_CHECKING([whether single-float divbyzero raises an exception])
AC_CACHE_VAL(cl_cv_cc_float_divbyzero, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
float x = 1;
float y = 0;
float z;
float nan;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y; nan = y / y;
exit (0);
}
], cl_cv_cc_float_divbyzero=no, cl_cv_cc_float_divbyzero=yes,
cl_cv_cc_float_divbyzero="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_float_divbyzero])
if test "$cl_cv_cc_float_divbyzero" = yes; then
AC_DEFINE(FLOAT_DIV0_EXCEPTION,1,
[Define to 1 if 'float' division by zero raises an exception.])
fi
])
AC_DEFUN([CL_DOUBLE_DIV0],
[
AC_MSG_CHECKING([whether double-float divbyzero raises an exception])
AC_CACHE_VAL(cl_cv_cc_double_divbyzero, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
double x = 1;
double y = 0;
double z;
double nan;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y; nan = y / y;
exit (0);
}
], cl_cv_cc_double_divbyzero=no, cl_cv_cc_double_divbyzero=yes,
cl_cv_cc_double_divbyzero="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_double_divbyzero])
if test "$cl_cv_cc_double_divbyzero" = yes; then
AC_DEFINE(DOUBLE_DIV0_EXCEPTION,1,
[Define to 1 if 'double' division by zero raises an exception.])
fi
])
AC_DEFUN([CL_LONGDOUBLE_DIV0],
[AC_REQUIRE([gt_TYPE_LONGDOUBLE])
if test "$gt_cv_c_long_double" = yes; then
AC_MSG_CHECKING([whether long-float divbyzero raises an exception])
AC_CACHE_VAL(cl_cv_cc_longdouble_divbyzero, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
long double x = 1;
long double y = 0;
long double z;
long double nan;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y; nan = y / y;
exit (0);
}
], cl_cv_cc_longdouble_divbyzero=no, cl_cv_cc_longdouble_divbyzero=yes,
cl_cv_cc_longdouble_divbyzero="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_longdouble_divbyzero])
if test "$cl_cv_cc_longdouble_divbyzero" = yes; then
AC_DEFINE(LONGDOUBLE_DIV0_EXCEPTION,1,
[Define to 1 if 'long double' division by zero raises an exception.])
fi
fi
])
AC_DEFUN([CL_FLOAT_OVERFLOW],
[
AC_MSG_CHECKING([whether single-float overflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_float_overflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
float x = FLT_MAX;
float y = FLT_MAX;
float z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_float_overflow=no, cl_cv_cc_float_overflow=yes,
cl_cv_cc_float_overflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_float_overflow])
if test "$cl_cv_cc_float_overflow" = yes; then
AC_DEFINE(FLOAT_OVERFLOW_EXCEPTION,1,
[Define to 1 if 'float' overflow raises an exception.])
fi
])
AC_DEFUN([CL_DOUBLE_OVERFLOW],
[
AC_MSG_CHECKING([whether double-float overflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_double_overflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
double x = DBL_MAX;
double y = DBL_MAX;
double z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_double_overflow=no, cl_cv_cc_double_overflow=yes,
cl_cv_cc_double_overflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_double_overflow])
if test "$cl_cv_cc_double_overflow" = yes; then
AC_DEFINE(DOUBLE_OVERFLOW_EXCEPTION,1,
[Define to 1 if 'double' overflow raises an exception.])
fi
])
AC_DEFUN([CL_LONGDOUBLE_OVERFLOW],
[AC_REQUIRE([gt_TYPE_LONGDOUBLE])
if test "$gt_cv_c_long_double" = yes; then
AC_MSG_CHECKING([whether long-float overflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_longdouble_overflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
long double x;
long double y;
long double z;
int main ()
{
x = LDBL_MAX;
y = LDBL_MAX;
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_longdouble_overflow=no, cl_cv_cc_longdouble_overflow=yes,
cl_cv_cc_longdouble_overflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_longdouble_overflow])
if test "$cl_cv_cc_longdouble_overflow" = yes; then
AC_DEFINE(LONGDOUBLE_OVERFLOW_EXCEPTION,1,
[Define to 1 if 'long double' overflow raises an exception.])
fi
fi
])
AC_DEFUN([CL_FLOAT_UNDERFLOW],
[
AC_MSG_CHECKING([whether single-float underflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_float_underflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
float x = FLT_MIN;
float y = FLT_MIN;
float z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_float_underflow=no, cl_cv_cc_float_underflow=yes,
cl_cv_cc_float_underflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_float_underflow])
if test "$cl_cv_cc_float_underflow" = yes; then
AC_DEFINE(FLOAT_UNDERFLOW_EXCEPTION,1,
[Define to 1 if 'float' underflow raises an exception.])
fi
])
AC_DEFUN([CL_DOUBLE_UNDERFLOW],
[
AC_MSG_CHECKING([whether double-float underflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_double_underflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
double x = DBL_MIN;
double y = DBL_MIN;
double z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_double_underflow=no, cl_cv_cc_double_underflow=yes,
cl_cv_cc_double_underflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_double_underflow])
if test "$cl_cv_cc_double_underflow" = yes; then
AC_DEFINE(DOUBLE_UNDERFLOW_EXCEPTION,1,
[Define to 1 if 'double' underflow raises an exception.])
fi
])
AC_DEFUN([CL_LONGDOUBLE_UNDERFLOW],
[AC_REQUIRE([gt_TYPE_LONGDOUBLE])
if test "$gt_cv_c_long_double" = yes; then
AC_MSG_CHECKING([whether long-float underflow raises an exception])
AC_CACHE_VAL(cl_cv_cc_longdouble_underflow, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
#include <float.h>
static void sigfpe_handler (int sig) { exit (1); }
long double x;
long double y;
long double z;
int main ()
{
x = LDBL_MIN;
y = LDBL_MIN;
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x * y;
exit (0);
}
], cl_cv_cc_longdouble_underflow=no, cl_cv_cc_longdouble_underflow=yes,
cl_cv_cc_longdouble_underflow="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_longdouble_underflow])
if test "$cl_cv_cc_longdouble_underflow" = yes; then
AC_DEFINE(LONGDOUBLE_UNDERFLOW_EXCEPTION,1,
[Define to 1 if 'long double' underflow raises an exception.])
fi
fi
])
AC_DEFUN([CL_FLOAT_INEXACT],
[
AC_MSG_CHECKING([whether single-float inexact raises an exception])
AC_CACHE_VAL(cl_cv_cc_float_inexact, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
float x = 1;
float y = 3;
float z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y;
exit (0);
}
], cl_cv_cc_float_inexact=no, cl_cv_cc_float_inexact=yes,
cl_cv_cc_float_inexact="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_float_inexact])
if test "$cl_cv_cc_float_inexact" = yes; then
AC_DEFINE(FLOAT_INEXACT_EXCEPTION,1,
[Define to 1 if a 'float' inexact operation raises an exception.])
fi
])
AC_DEFUN([CL_DOUBLE_INEXACT],
[
AC_MSG_CHECKING([whether double-float inexact raises an exception])
AC_CACHE_VAL(cl_cv_cc_double_inexact, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
double x = 1;
double y = 3;
double z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y;
exit (0);
}
], cl_cv_cc_double_inexact=no, cl_cv_cc_double_inexact=yes,
cl_cv_cc_double_inexact="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_double_inexact])
if test "$cl_cv_cc_double_inexact" = yes; then
AC_DEFINE(DOUBLE_INEXACT_EXCEPTION,1,
[Define to 1 if a 'double' inexact operation raises an exception.])
fi
])
AC_DEFUN([CL_LONGDOUBLE_INEXACT],
[AC_REQUIRE([gt_TYPE_LONGDOUBLE])
if test "$gt_cv_c_long_double" = yes; then
AC_MSG_CHECKING([whether long-float inexact raises an exception])
AC_CACHE_VAL(cl_cv_cc_longdouble_inexact, [
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void sigfpe_handler (int sig) { exit (1); }
long double x = 1;
long double y = 3;
long double z;
int main ()
{
signal (SIGFPE, sigfpe_handler);
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
z = x / y;
exit (0);
}
], cl_cv_cc_longdouble_inexact=no, cl_cv_cc_longdouble_inexact=yes,
cl_cv_cc_longdouble_inexact="guessing no")])
AC_MSG_RESULT([$cl_cv_cc_longdouble_inexact])
if test "$cl_cv_cc_longdouble_inexact" = yes; then
AC_DEFINE(LONGDOUBLE_INEXACT_EXCEPTION,1,
[Define to 1 if a 'long double' inexact operation raises an exception.])
fi
fi
])
|