invalid.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* __gmp_invalid_operation -- invalid floating point operation.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 2003 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "config.h"
  18. #include <signal.h>
  19. #include <stdlib.h>
  20. #if HAVE_UNISTD_H
  21. #include <unistd.h>  /* for getpid */
  22. #endif
  23. #include "gmp.h"
  24. #include "gmp-impl.h"
  25. /* Incidentally, kill is not available on mingw, but that's ok, it has raise
  26.    and we'll be using that.  */
  27. #if ! HAVE_RAISE
  28. #define raise(sig)   kill (getpid(), sig)
  29. #endif
  30. /* __gmp_invalid_operation is for an invalid floating point operation, like
  31.    mpz_set_d on a NaN or Inf.  It's done as a subroutine to minimize code in
  32.    places raising an exception.
  33.    feraiseexcept(FE_INVALID) is not used here, since unfortunately on most
  34.    systems it would require libm.
  35.    Alternatives:
  36.    It might be possible to check whether a hardware "invalid operation" trap
  37.    is enabled or not before raising a signal.  This would require all
  38.    callers to be prepared to continue with some bogus result.  Bogus returns
  39.    are bad, but presumably an application disabling the trap is prepared for
  40.    that.
  41.    On some systems (eg. BSD) the signal handler can find out the reason for
  42.    a SIGFPE (overflow, invalid, div-by-zero, etc).  Perhaps we could get
  43.    that into our raise too.
  44.    i386 GLIBC implements feraiseexcept(FE_INVALID) with an asm fdiv 0/0.
  45.    That would both respect the exceptions mask and give a reason code in a
  46.    BSD signal.  */
  47. void
  48. __gmp_invalid_operation (void)
  49. {
  50.   raise (SIGFPE);
  51.   abort ();
  52. }