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

Packit 6c4009
/* Set NaN payload.  ldbl-128 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 111
Packit 6c4009
#define EXPLICIT_MANT_DIG 112
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
FUNC (_Float128 *x, _Float128 payload)
Packit 6c4009
{
Packit 6c4009
  uint64_t hx, lx;
Packit 6c4009
  GET_LDOUBLE_WORDS64 (hx, lx, payload);
Packit 6c4009
  int exponent = hx >> (EXPLICIT_MANT_DIG - 64);
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 && hx == 0 && lx == 0)))
Packit 6c4009
    {
Packit 6c4009
      SET_LDOUBLE_WORDS64 (*x, 0, 0);
Packit 6c4009
      return 1;
Packit 6c4009
    }
Packit 6c4009
  int shift = BIAS + EXPLICIT_MANT_DIG - exponent;
Packit 6c4009
  if (shift < 64
Packit 6c4009
      ? (lx & ((1ULL << shift) - 1)) != 0
Packit 6c4009
      : (lx != 0 || (hx & ((1ULL << (shift - 64)) - 1)) != 0))
Packit 6c4009
    {
Packit 6c4009
      SET_LDOUBLE_WORDS64 (*x, 0, 0);
Packit 6c4009
      return 1;
Packit 6c4009
    }
Packit 6c4009
  if (exponent != 0)
Packit 6c4009
    {
Packit 6c4009
      hx &= (1ULL << (EXPLICIT_MANT_DIG - 64)) - 1;
Packit 6c4009
      hx |= 1ULL << (EXPLICIT_MANT_DIG - 64);
Packit 6c4009
      if (shift >= 64)
Packit 6c4009
	{
Packit 6c4009
	  lx = hx >> (shift - 64);
Packit 6c4009
	  hx = 0;
Packit 6c4009
	}
Packit 6c4009
      else if (shift != 0)
Packit 6c4009
	{
Packit 6c4009
	  lx = (lx >> shift) | (hx << (64 - shift));
Packit 6c4009
	  hx >>= shift;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  hx |= 0x7fff000000000000ULL | (SET_HIGH_BIT ? 0x800000000000ULL : 0);
Packit 6c4009
  SET_LDOUBLE_WORDS64 (*x, hx, lx);
Packit 6c4009
  return 0;
Packit 6c4009
}