Blame sysdeps/powerpc/fpu/k_cosf.c

Packit 6c4009
/* k_cosf.c -- float version of k_cos.c
Packit 6c4009
   Copyright (C) 2011-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Adhemerval Zanella <azanella@br.ibm.com>, 2011
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 Library General Public License as
Packit 6c4009
   published by the Free Software Foundation; either version 2 of the
Packit 6c4009
   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
   Library General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Library General Public
Packit 6c4009
   License along with the GNU C Library; see the file COPYING.LIB.  If
Packit 6c4009
   not, see <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <math.h>
Packit 6c4009
#include <fenv.h>
Packit 6c4009
#include <math_private.h>
Packit 6c4009
Packit 6c4009
static const float twom27   = 7.4505806e-09;
Packit 6c4009
static const float dot3     = 3.0000001e-01;
Packit 6c4009
static const float dot78125 = 7.8125000e-01;
Packit 6c4009
Packit 6c4009
static const float one =  1.0000000000e+00;
Packit 6c4009
static const float C1  =  4.1666667908e-02;
Packit 6c4009
static const float C2  = -1.3888889225e-03;
Packit 6c4009
static const float C3  =  2.4801587642e-05;
Packit 6c4009
static const float C4  = -2.7557314297e-07;
Packit 6c4009
static const float C5  =  2.0875723372e-09;
Packit 6c4009
static const float C6  = -1.1359647598e-11;
Packit 6c4009
Packit 6c4009
float
Packit 6c4009
__kernel_cosf (float x, float y)
Packit 6c4009
{
Packit 6c4009
  float a, hz, z, r, qx;
Packit 6c4009
  float ix;
Packit 6c4009
  ix = __builtin_fabsf (x);
Packit 6c4009
  if (ix < twom27)
Packit 6c4009
    {				/* |x| < 2**-27 */
Packit 6c4009
      __feraiseexcept (FE_INEXACT);
Packit 6c4009
      return one;
Packit 6c4009
    }
Packit 6c4009
  z = x * x;
Packit 6c4009
  r = z * (C1 + z * (C2 + z * (C3 + z * (C4 + z * (C5 + z * C6)))));
Packit 6c4009
  if (ix < dot3)		/* if |x| < 0.3 */
Packit 6c4009
    return one - ((float) 0.5 * z - (z * r - x * y));
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      if (ix > dot78125)
Packit 6c4009
	{			/* x > 0.78125 */
Packit 6c4009
	  qx = (float) 0.28125;
Packit 6c4009
	}
Packit 6c4009
      else
Packit 6c4009
	{
Packit 6c4009
	  qx = ix / 4.0;
Packit 6c4009
	}
Packit 6c4009
      hz = (float) 0.5 *z - qx;
Packit 6c4009
      a = one - qx;
Packit 6c4009
      return a - (hz - (z * r - x * y));
Packit 6c4009
    }
Packit 6c4009
}