Blame sysdeps/ieee754/ldbl-96/s_setpayloadl_main.c

Packit 6c4009
/* Set NaN payload.  ldbl-96 version.
Packit 6c4009
   Copyright (C) 2016-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
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 <math.h>
Packit 6c4009
#include <math_private.h>
Packit 6c4009
#include <libm-alias-ldouble.h>
Packit 6c4009
#include <nan-high-order-bit.h>
Packit 6c4009
#include <stdint.h>
Packit 6c4009
Packit 6c4009
#define SET_HIGH_BIT (HIGH_ORDER_BIT_IS_SET_FOR_SNAN ? SIG : !SIG)
Packit 6c4009
#define BIAS 0x3fff
Packit 6c4009
#define PAYLOAD_DIG 62
Packit 6c4009
#define EXPLICIT_MANT_DIG 63
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
FUNC (long double *x, long double payload)
Packit 6c4009
{
Packit 6c4009
  uint32_t hx, lx;
Packit 6c4009
  uint16_t exponent;
Packit 6c4009
  GET_LDOUBLE_WORDS (exponent, hx, lx, payload);
Packit 6c4009
  /* Test if argument is (a) negative or too large; (b) too small,
Packit 6c4009
     except for 0 when allowed; (c) not an integer.  */
Packit 6c4009
  if (exponent >= BIAS + PAYLOAD_DIG
Packit 6c4009
      || (exponent < BIAS && !(SET_HIGH_BIT
Packit 6c4009
			       && exponent == 0 && hx == 0 && lx == 0)))
Packit 6c4009
    {
Packit 6c4009
      SET_LDOUBLE_WORDS (*x, 0, 0, 0);
Packit 6c4009
      return 1;
Packit 6c4009
    }
Packit 6c4009
  int shift = BIAS + EXPLICIT_MANT_DIG - exponent;
Packit 6c4009
  if (shift < 32
Packit 6c4009
      ? (lx & ((1U << shift) - 1)) != 0
Packit 6c4009
      : (lx != 0 || (hx & ((1U << (shift - 32)) - 1)) != 0))
Packit 6c4009
    {
Packit 6c4009
      SET_LDOUBLE_WORDS (*x, 0, 0, 0);
Packit 6c4009
      return 1;
Packit 6c4009
    }
Packit 6c4009
  if (exponent != 0)
Packit 6c4009
    {
Packit 6c4009
      if (shift >= 32)
Packit 6c4009
	{
Packit 6c4009
	  lx = hx >> (shift - 32);
Packit 6c4009
	  hx = 0;
Packit 6c4009
	}
Packit 6c4009
      else if (shift != 0)
Packit 6c4009
	{
Packit 6c4009
	  lx = (lx >> shift) | (hx << (32 - shift));
Packit 6c4009
	  hx >>= shift;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  hx |= 0x80000000 | (SET_HIGH_BIT ? 0x40000000 : 0);
Packit 6c4009
  SET_LDOUBLE_WORDS (*x, 0x7fff, hx, lx);
Packit 6c4009
  return 0;
Packit 6c4009
}