decLibrary.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Temporary library support for decimal floating point.
  2. Copyright (C) 2005-2022 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3, or (at your option)
  7. any later version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  11. License for more details.
  12. Under Section 7 of GPL version 3, you are granted additional
  13. permissions described in the GCC Runtime Library Exception, version
  14. 3.1, as published by the Free Software Foundation.
  15. You should have received a copy of the GNU General Public License and
  16. a copy of the GCC Runtime Library Exception along with this program;
  17. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  18. <http://www.gnu.org/licenses/>. */
  19. #include "dconfig.h"
  20. #include "decContext.h"
  21. #include "decimal128.h"
  22. #include "decimal64.h"
  23. #include "decimal32.h"
  24. void __host_to_ieee_32 (_Decimal32, decimal32 *);
  25. void __host_to_ieee_64 (_Decimal64, decimal64 *);
  26. void __host_to_ieee_128 (_Decimal128, decimal128 *);
  27. extern int isinfd32 (_Decimal32);
  28. extern int isinfd64 (_Decimal64);
  29. extern int isinfd128 (_Decimal128);
  30. uint32_t __dec_byte_swap (uint32_t);
  31. int
  32. isinfd32 (_Decimal32 arg)
  33. {
  34. decNumber dn;
  35. decimal32 d32;
  36. __host_to_ieee_32 (arg, &d32);
  37. decimal32ToNumber (&d32, &dn);
  38. return (decNumberIsInfinite (&dn));
  39. }
  40. int
  41. isinfd64 (_Decimal64 arg)
  42. {
  43. decNumber dn;
  44. decimal64 d64;
  45. __host_to_ieee_64 (arg, &d64);
  46. decimal64ToNumber (&d64, &dn);
  47. return (decNumberIsInfinite (&dn));
  48. }
  49. int
  50. isinfd128 (_Decimal128 arg)
  51. {
  52. decNumber dn;
  53. decimal128 d128;
  54. __host_to_ieee_128 (arg, &d128);
  55. decimal128ToNumber (&d128, &dn);
  56. return (decNumberIsInfinite (&dn));
  57. }