Blame sysdeps/s390/fpu/s_llrintf.c

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