Blame sysdeps/s390/fpu/s_llrint.c

Packit Service b080c6
/* llrint() - S390 version.
Packit Service b080c6
   Copyright (C) 2019 Free Software Foundation, Inc.
Packit Service b080c6
Packit Service b080c6
   This file is part of the GNU C Library.
Packit Service b080c6
Packit Service b080c6
   The GNU C Library is free software; you can redistribute it and/or
Packit Service b080c6
   modify it under the terms of the GNU Lesser General Public License as
Packit Service b080c6
   published by the Free Software Foundation; either version 2.1 of the
Packit Service b080c6
   License, or (at your option) any later version.
Packit Service b080c6
Packit Service b080c6
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service b080c6
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service b080c6
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service b080c6
   Lesser General Public License for more details.
Packit Service b080c6
Packit Service b080c6
   You should have received a copy of the GNU Lesser General Public
Packit Service b080c6
   License along with the GNU C Library; if not, see
Packit Service b080c6
   <https://www.gnu.org/licenses/>.  */
Packit Service b080c6
Packit Service b080c6
#if defined __s390x__ && defined HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
Packit Service b080c6
/* We only support s390x as on s390 a long long int refers to a register pair
Packit Service b080c6
   of two 4byte registers instead of a 8byte register which is produced by the
Packit Service b080c6
   instruction.
Packit Service b080c6
   Note: On s390 this instruction would only be used if build with -mzarch.  */
Packit Service b080c6
# include <math.h>
Packit Service b080c6
# include <libm-alias-double.h>
Packit Service b080c6
Packit Service b080c6
long long int
Packit Service b080c6
__llrint (double x)
Packit Service b080c6
{
Packit Service b080c6
  long long int y;
Packit Service b080c6
  /* The z196 zarch "convert to fixed" (cgdbra) instruction is rounding
Packit Service b080c6
     according to current rounding mode (M3-field: 0).
Packit Service b080c6
     First convert x with suppressed inexact exception and check if the
Packit Service b080c6
     resulting value is beyond the target limits (indicated by cc=3;
Packit Service b080c6
     Note: a nan is also indicated by cc=3).
Packit Service b080c6
     If the resulting value is within the target limits, redo
Packit Service b080c6
     without suppressing the inexact exception.  */
Packit Service b080c6
  __asm__ ("cgdbra %0,0,%1,4 \n\t"
Packit Service b080c6
	   "jo 1f \n\t"
Packit Service b080c6
	   "cgdbra %0,0,%1,0 \n\t"
Packit Service b080c6
	   "1:"
Packit Service b080c6
	   : "=&d" (y) : "f" (x) : "cc");
Packit Service b080c6
  return y;
Packit Service b080c6
}
Packit Service b080c6
libm_alias_double (__llrint, llrint)
Packit Service b080c6
Packit Service b080c6
#else
Packit Service b080c6
# include <sysdeps/ieee754/dbl-64/s_llrint.c>
Packit Service b080c6
#endif