mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	2007-03-27 Jakub Jelinek <jakub@redhat.com> [BZ #3306] * math/math_private.h (math_opt_barrier, math_force_eval): Define. * sysdeps/i386/fpu/math_private.h: New file. * sysdeps/x86_64/fpu/math_private.h: New file. * math/s_nexttowardf.c (__nexttowardf): Use math_opt_barrier and math_force_eval macros. Use "+m" constraint on asm rather than "=m" and "m". * math/s_nextafter.c (__nextafter): Likewise. * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise. * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise. * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward): Likewise. * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise. * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Use math_opt_barrier and math_force_eval macros. * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl): Likewise. * sysdeps/ieee754/ldbl-96/s_nextafterl.c (__nextafterl): Likewise. * sysdeps/i386/fpu/s_nexttoward.c: Include float.h. (__nexttoward): Use math_opt_barrier and math_force_eval macros. Use "+m" constraint on asm rather than "=m" and "m". Only use asm to force double result if FLT_EVAL_METHOD is 2. * sysdeps/i386/fpu/s_nexttowardf.c: Include float.h. (__nexttowardf): Use math_opt_barrier and math_force_eval macros. Use "+m" constraint on asm rather than "=m" and "m". Only use asm to force double result if FLT_EVAL_METHOD is not 0. * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Include float.h. (__nexttowardf): Use math_opt_barrier and math_force_eval macros. If FLT_EVAL_METHOD is not 0, force x to float using asm. * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Include float.h. (__nldbl_nexttowardf): Use math_opt_barrier and math_force_eval macros. If FLT_EVAL_METHOD is not 0, force x to float using asm. * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Include float.h. (__nexttowardf): Use math_opt_barrier and math_force_eval macros. If FLT_EVAL_METHOD is not 0, force x to float using asm. * math/bug-nextafter.c (zero, inf): New variables. (main): Add new tests. * math/bug-nexttoward.c (zero, inf): New variables. (main): Add new tests.
		
			
				
	
	
		
			321 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			321 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <fenv.h>
 | 
						|
#include <math.h>
 | 
						|
#include <float.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
float zero = 0.0;
 | 
						|
float inf = INFINITY;
 | 
						|
 | 
						|
int
 | 
						|
main (void)
 | 
						|
{
 | 
						|
  int result = 0;
 | 
						|
 | 
						|
  long double tl = (long double) FLT_MAX + 0x1.0p128L;
 | 
						|
  float fi = INFINITY;
 | 
						|
  float m = FLT_MAX;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardf (m, tl) != fi)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardf (-m, -tl) != -fi)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
 | 
						|
  fi = 0;
 | 
						|
  m = FLT_MIN;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  fi = nexttowardf (m, fi);
 | 
						|
  if (fi < 0 || fi >= FLT_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  fi = 0;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  fi = nexttowardf (-m, -fi);
 | 
						|
  if (fi > 0 || fi <= -FLT_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  fi = -INFINITY;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  m = nexttowardf (zero, inf);
 | 
						|
  if (m < 0.0 || m >= FLT_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardf (m, fi) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  m = nexttowardf (copysignf (zero, -1.0), -inf);
 | 
						|
  if (m > 0.0 || m <= -FLT_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardf (m, -fi) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardf- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
 | 
						|
  tl = (long double) DBL_MAX + 1.0e305L;
 | 
						|
  double di = INFINITY;
 | 
						|
  double dm = DBL_MAX;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttoward (dm, tl) != di)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttoward (-dm, -tl) != -di)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
 | 
						|
  di = 0;
 | 
						|
  dm = DBL_MIN;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  di = nexttoward (dm, di);
 | 
						|
  if (di < 0 || di >= DBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  di = 0;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  di = nexttoward (-dm, -di);
 | 
						|
  if (di > 0 || di <= -DBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  di = -INFINITY;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  dm = nexttoward (zero, inf);
 | 
						|
  if (dm < 0.0 || dm >= DBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttoward (dm, di) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  dm = nexttoward (copysign (zero, -1.0), -inf);
 | 
						|
  if (dm > 0.0 || dm <= -DBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttoward (dm, -di) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttoward- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
 | 
						|
#ifndef NO_LONG_DOUBLE
 | 
						|
  long double li = INFINITY;
 | 
						|
  long double lm = LDBL_MAX;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardl (lm, li) != li)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardl (-lm, -li) != -li)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_OVERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- did not overflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
 | 
						|
  li = 0;
 | 
						|
  lm = LDBL_MIN;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  li = nexttowardl (lm, li);
 | 
						|
  if (li < 0 || li >= LDBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  li = 0;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  li = nexttowardl (-lm, -li);
 | 
						|
  if (li > 0 || li <= -LDBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  li = -INFINITY;
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  lm = nexttowardl (zero, inf);
 | 
						|
  if (lm < 0.0 || lm >= LDBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardl (lm, li) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl+ did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  lm = nexttowardl (copysign (zero, -1.0), -inf);
 | 
						|
  if (lm > 0.0 || lm <= -LDBL_MIN)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  feclearexcept (FE_ALL_EXCEPT);
 | 
						|
  if (nexttowardl (lm, -li) != 0.0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- failed");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
  if (fetestexcept (FE_UNDERFLOW) == 0)
 | 
						|
    {
 | 
						|
      puts ("nexttowardl- did not underflow");
 | 
						|
      ++result;
 | 
						|
    }
 | 
						|
#endif
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 |