pastebin - collaborative debugging tool
rovema.kpaste.net RSS


math_signaling_nan/signaling_nan_test2.cpp - SNAN/signaling nan playground
Posted by Anonymous on Mon 12th Jun 2023 16:21
raw | new post

  1. /*
  2.  * math_signaling_nan/signaling_nan_test2.cpp - SNAN/signaling nan playground
  3.  *
  4.  *
  5.  * Compile with:
  6.  * $ g++ -fsignaling-nans -g -Wall signaling_nan_test2.cpp -lm #
  7.  *
  8.  */
  9.  
  10. #include <cfenv>
  11. #include <iostream>
  12. #include <limits>
  13. #include <stdlib.h>
  14.  
  15.  
  16. static
  17. int show_fe_exceptions(void)
  18. {
  19.         int numexcept = 0;
  20.  
  21.         int n = std::fetestexcept(FE_ALL_EXCEPT);
  22.  
  23.         if (n & FE_INVALID) {
  24.                 std::cout << "FE_INVALID is raised";
  25.                 numexcept++;
  26.         }
  27.         else if (n == 0)
  28.                 std::cout << "no exceptions are raised";
  29.         else {
  30.                 numexcept++;
  31.                 std::cout << "unexpected exceptions " << n << " are raised";
  32.         }
  33.  
  34.         (void)std::feclearexcept(FE_ALL_EXCEPT);
  35.  
  36.         return numexcept;
  37. }
  38.  
  39. static
  40. void show_fe_exceptions_and_expectations(bool exceptions_expected)
  41. {
  42.         int e;
  43.        
  44.         e = show_fe_exceptions();
  45.        
  46.         if (((e>0)?true:false) == exceptions_expected)
  47.                 std::cout << " (as expected)." << std::endl;
  48.         else
  49.                 std::cout << " (not as expected; ERROR)." << std::endl;
  50. }
  51.  
  52.  
  53. int main(int ac, char *av[])
  54. {
  55.         double snan = std::numeric_limits<double>::signaling_NaN();
  56.         std::cout << "After sNaN was obtained, ";
  57.         show_fe_exceptions_and_expectations(false);
  58.  
  59.         double qnan = snan * 2.0;
  60.         std::cout << "After sNaN was multiplied by 2, ";
  61.         show_fe_exceptions_and_expectations(true);
  62.  
  63.         double qnan2 = qnan * 2.0;
  64.         std::cout << "After the quieted NaN was multiplied by 2, ";
  65.         show_fe_exceptions_and_expectations(false);
  66.  
  67.         std::cout << "The result is |" << qnan2 << "|" << std::endl;
  68.        
  69.         return EXIT_SUCCESS;
  70. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at