Blame sysdeps/s390/fpu/s_llrint.c

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