Blame sysdeps/hppa/fpu/fraiseexcpt.c

Packit 6c4009
/* Raise given exceptions.
Packit 6c4009
   Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by David Huggins-Daines <dhd@debian.org>
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library.  If not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <fenv.h>
Packit 6c4009
#include <float.h>
Packit 6c4009
#include <math.h>
Packit 6c4009
Packit 6c4009
/* Please see section 10,
Packit 6c4009
   page 10-5 "Delayed Trapping" in the PA-RISC 2.0 Architecture manual */
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
__feraiseexcept (int excepts)
Packit 6c4009
{
Packit 6c4009
  /* Raise exceptions represented by EXCEPTS.  But we must raise only one
Packit 6c4009
     signal at a time.  It is important that if the overflow/underflow
Packit 6c4009
     exception and the divide by zero exception are given at the same
Packit 6c4009
     time, the overflow/underflow exception follows the divide by zero
Packit 6c4009
     exception.  */
Packit 6c4009
Packit 6c4009
  /* We do these bits in assembly to be certain GCC doesn't optimize
Packit 6c4009
     away something important, and so we can force delayed traps to
Packit 6c4009
     occur. */
Packit 6c4009
Packit 6c4009
  /* We use "fldd 0(%%sr0,%%sp),%0" to flush the delayed exception */
Packit 6c4009
Packit 6c4009
  /* First: Invalid exception.  */
Packit 6c4009
  if (excepts & FE_INVALID)
Packit 6c4009
    {
Packit 6c4009
      /* One example of an invalid operation is 0 * Infinity.  */
Packit 6c4009
      double d = HUGE_VAL;
Packit 6c4009
      __asm__ __volatile__ (
Packit 6c4009
		"	fcpy,dbl %%fr0,%%fr22\n"
Packit 6c4009
		"	fmpy,dbl %0,%%fr22,%0\n"
Packit 6c4009
		"	fldd 0(%%sr0,%%sp),%0"
Packit 6c4009
		: "+f" (d) : : "%fr22" );
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Second: Division by zero.  */
Packit 6c4009
  if (excepts & FE_DIVBYZERO)
Packit 6c4009
    {
Packit 6c4009
      double d = 1.0;
Packit 6c4009
      __asm__ __volatile__ (
Packit 6c4009
		"	fcpy,dbl %%fr0,%%fr22\n"
Packit 6c4009
		"	fdiv,dbl %0,%%fr22,%0\n"
Packit 6c4009
		"	fldd 0(%%sr0,%%sp),%0"
Packit 6c4009
		: "+f" (d) : : "%fr22" );
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Third: Overflow.  */
Packit 6c4009
  if (excepts & FE_OVERFLOW)
Packit 6c4009
    {
Packit 6c4009
      double d = DBL_MAX;
Packit 6c4009
      __asm__ __volatile__ (
Packit 6c4009
		"	fadd,dbl %0,%0,%0\n"
Packit 6c4009
		"	fldd 0(%%sr0,%%sp),%0"
Packit 6c4009
		: "+f" (d) );
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Fourth: Underflow.  */
Packit 6c4009
  if (excepts & FE_UNDERFLOW)
Packit 6c4009
    {
Packit 6c4009
      double d = DBL_MIN;
Packit 6c4009
      double e = 3.0;
Packit 6c4009
      __asm__ __volatile__ (
Packit 6c4009
		"	fdiv,dbl %0,%1,%0\n"
Packit 6c4009
		"	fldd 0(%%sr0,%%sp),%0"
Packit 6c4009
		: "+f" (d) : "f" (e) );
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Fifth: Inexact */
Packit 6c4009
  if (excepts & FE_INEXACT)
Packit 6c4009
    {
Packit 6c4009
      double d = M_PI;
Packit 6c4009
      double e = 69.69;
Packit 6c4009
      __asm__ __volatile__ (
Packit 6c4009
		"	fdiv,dbl %0,%1,%%fr22\n"
Packit 6c4009
		"	fcnvfxt,dbl,sgl %%fr22,%%fr22L\n"
Packit 6c4009
		"	fldd 0(%%sr0,%%sp),%%fr22"
Packit 6c4009
		: : "f" (d), "f" (e) : "%fr22" );
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  /* Success.  */
Packit 6c4009
  return 0;
Packit 6c4009
}
Packit 6c4009
libm_hidden_def (__feraiseexcept)
Packit 6c4009
weak_alias (__feraiseexcept, feraiseexcept)
Packit 6c4009
libm_hidden_weak (feraiseexcept)