Blame sysdeps/powerpc/fpu/k_sinf.c

Packit Service 82fcde
/* k_sinf.c -- float version of k_sin.c
Packit Service 82fcde
   Copyright (C) 2011-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Adhemerval Zanella <azanella@br.ibm.com>, 2011
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Library General Public License as
Packit Service 82fcde
   published by the Free Software Foundation; either version 2 of the
Packit Service 82fcde
   License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Library General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Library General Public
Packit Service 82fcde
   License along with the GNU C Library; see the file COPYING.LIB.  If
Packit Service 82fcde
   not, see <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <float.h>
Packit Service 82fcde
#include <math.h>
Packit Service 82fcde
#include <fenv.h>
Packit Service 82fcde
#include <math_private.h>
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
static const float twom27 =  7.4505806000e-09;
Packit Service 82fcde
static const float half   =  5.0000000000e-01;
Packit Service 82fcde
static const float S1     = -1.6666667163e-01;
Packit Service 82fcde
static const float S2     =  8.3333337680e-03;
Packit Service 82fcde
static const float S3     = -1.9841270114e-04;
Packit Service 82fcde
static const float S4     =  2.7557314297e-06;
Packit Service 82fcde
static const float S5     = -2.5050759689e-08;
Packit Service 82fcde
static const float S6     =  1.5896910177e-10;
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
float
Packit Service 82fcde
__kernel_sinf (float x, float y, int iy)
Packit Service 82fcde
{
Packit Service 82fcde
  float z, r, v;
Packit Service 82fcde
  float ix;
Packit Service 82fcde
  ix = __builtin_fabsf (x);
Packit Service 82fcde
  if (ix < twom27)
Packit Service 82fcde
    {				/* |x| < 2**-27 */
Packit Service 82fcde
      if (ix < FLT_MIN && ix != 0.0f)
Packit Service 82fcde
	__feraiseexcept (FE_UNDERFLOW|FE_INEXACT);
Packit Service 82fcde
      else
Packit Service 82fcde
	__feraiseexcept (FE_INEXACT);
Packit Service 82fcde
      return x;
Packit Service 82fcde
    }
Packit Service 82fcde
  z = x * x;
Packit Service 82fcde
  v = z * x;
Packit Service 82fcde
  r = S2 + z * (S3 + z * (S4 + z * (S5 + z * S6)));
Packit Service 82fcde
  if (iy == 0)
Packit Service 82fcde
    return x + v * (S1 + z * r);
Packit Service 82fcde
  else
Packit Service 82fcde
    return x - ((z * (half * y - v * r) - y) - v * S1);
Packit Service 82fcde
}