dfa500
From 90e84ac5ac8e774ce0cfd3abc5f7d8834efd2c9b Mon Sep 17 00:00:00 2001
dfa500
From: Stefan Liebler <stli@linux.ibm.com>
dfa500
Date: Wed, 11 Dec 2019 15:09:29 +0100
dfa500
Subject: [PATCH 20/28] S390: Use convert-to-fixed instruction for lrint
dfa500
 functions.
dfa500
dfa500
If compiled with z196 zarch support, the convert-to-fixed instruction
dfa500
is used to implement lrint, lrintf, lrintl.
dfa500
Otherwise the common-code implementation is used.
dfa500
dfa500
(cherry picked from commit e3f07622209c1b4436ef364b134dfd2cd4ca9976)
dfa500
---
dfa500
 sysdeps/s390/fpu/s_lrint.c  | 55 ++++++++++++++++++++++++++++++++++++
dfa500
 sysdeps/s390/fpu/s_lrintf.c | 55 ++++++++++++++++++++++++++++++++++++
dfa500
 sysdeps/s390/fpu/s_lrintl.c | 56 +++++++++++++++++++++++++++++++++++++
dfa500
 3 files changed, 166 insertions(+)
dfa500
 create mode 100644 sysdeps/s390/fpu/s_lrint.c
dfa500
 create mode 100644 sysdeps/s390/fpu/s_lrintf.c
dfa500
 create mode 100644 sysdeps/s390/fpu/s_lrintl.c
dfa500
dfa500
diff --git a/sysdeps/s390/fpu/s_lrint.c b/sysdeps/s390/fpu/s_lrint.c
dfa500
new file mode 100644
dfa500
index 0000000000..7be60665b5
dfa500
--- /dev/null
dfa500
+++ b/sysdeps/s390/fpu/s_lrint.c
dfa500
@@ -0,0 +1,55 @@
dfa500
+/* lrint() - S390 version.
dfa500
+   Copyright (C) 2019 Free Software Foundation, Inc.
dfa500
+
dfa500
+   This file is part of the GNU C Library.
dfa500
+
dfa500
+   The GNU C Library is free software; you can redistribute it and/or
dfa500
+   modify it under the terms of the GNU Lesser General Public License as
dfa500
+   published by the Free Software Foundation; either version 2.1 of the
dfa500
+   License, or (at your option) any later version.
dfa500
+
dfa500
+   The GNU C Library is distributed in the hope that it will be useful,
dfa500
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
dfa500
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dfa500
+   Lesser General Public License for more details.
dfa500
+
dfa500
+   You should have received a copy of the GNU Lesser General Public
dfa500
+   License along with the GNU C Library; if not, see
dfa500
+   <https://www.gnu.org/licenses/>.  */
dfa500
+
dfa500
+#ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
dfa500
+# include <math.h>
dfa500
+# include <libm-alias-double.h>
dfa500
+
dfa500
+/* The sizeof (long int) differs between s390x (8byte) and s390 (4byte).
dfa500
+   Thus we need different instructions as the target size is encoded there.
dfa500
+   Note: On s390 this instruction is only used if build with -mzarch.  */
dfa500
+# ifdef __s390x__
dfa500
+#  define INSN "cgdbra"
dfa500
+# else
dfa500
+#  define INSN "cfdbra"
dfa500
+# endif
dfa500
+
dfa500
+long int
dfa500
+__lrint (double x)
dfa500
+{
dfa500
+  long int y;
dfa500
+  /* The z196 zarch "convert to fixed" (cgdbra) instruction is rounding
dfa500
+     according to current rounding mode (M3-field: 0).
dfa500
+     First convert x with suppressed inexact exception and check if the
dfa500
+     resulting value is beyond the target limits (indicated by cc=3;
dfa500
+     Note: a nan is also indicated by cc=3).
dfa500
+     If the resulting value is within the target limits, redo
dfa500
+     without suppressing the inexact exception.  */
dfa500
+  __asm__ (INSN " %0,0,%1,4 \n\t"
dfa500
+	   "jo 1f \n\t"
dfa500
+	   INSN " %0,0,%1,0 \n\t"
dfa500
+	   "1:"
dfa500
+	   : "=&d" (y) : "f" (x) : "cc");
dfa500
+  return y;
dfa500
+}
dfa500
+libm_alias_double (__lrint, lrint)
dfa500
+
dfa500
+#else
dfa500
+# include <sysdeps/ieee754/dbl-64/s_lrint.c>
dfa500
+#endif
dfa500
diff --git a/sysdeps/s390/fpu/s_lrintf.c b/sysdeps/s390/fpu/s_lrintf.c
dfa500
new file mode 100644
dfa500
index 0000000000..d6a2a4081a
dfa500
--- /dev/null
dfa500
+++ b/sysdeps/s390/fpu/s_lrintf.c
dfa500
@@ -0,0 +1,55 @@
dfa500
+/* lrintf() - S390 version.
dfa500
+   Copyright (C) 2019 Free Software Foundation, Inc.
dfa500
+
dfa500
+   This file is part of the GNU C Library.
dfa500
+
dfa500
+   The GNU C Library is free software; you can redistribute it and/or
dfa500
+   modify it under the terms of the GNU Lesser General Public License as
dfa500
+   published by the Free Software Foundation; either version 2.1 of the
dfa500
+   License, or (at your option) any later version.
dfa500
+
dfa500
+   The GNU C Library is distributed in the hope that it will be useful,
dfa500
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
dfa500
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dfa500
+   Lesser General Public License for more details.
dfa500
+
dfa500
+   You should have received a copy of the GNU Lesser General Public
dfa500
+   License along with the GNU C Library; if not, see
dfa500
+   <https://www.gnu.org/licenses/>.  */
dfa500
+
dfa500
+#ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
dfa500
+# include <math.h>
dfa500
+# include <libm-alias-float.h>
dfa500
+
dfa500
+/* The sizeof (long int) differs between s390x (8byte) and s390 (4byte).
dfa500
+   Thus we need different instructions as the target size is encoded there.
dfa500
+   Note: On s390 this instruction is only used if build with -mzarch.  */
dfa500
+# ifdef __s390x__
dfa500
+#  define INSN "cgebra"
dfa500
+# else
dfa500
+#  define INSN "cfebra"
dfa500
+# endif
dfa500
+
dfa500
+long int
dfa500
+__lrintf (float x)
dfa500
+{
dfa500
+  long int y;
dfa500
+  /* The z196 zarch "convert to fixed" (cgebra) instruction is rounding
dfa500
+     according to current rounding mode (M3-field: 0).
dfa500
+     First convert x with suppressed inexact exception and check if the
dfa500
+     resulting value is beyond the target limits (indicated by cc=3;
dfa500
+     Note: a nan is also indicated by cc=3).
dfa500
+     If the resulting value is within the target limits, redo
dfa500
+     without suppressing the inexact exception.  */
dfa500
+  __asm__ (INSN " %0,0,%1,4 \n\t"
dfa500
+	   "jo 1f \n\t"
dfa500
+	   INSN " %0,0,%1,0 \n\t"
dfa500
+	   "1:"
dfa500
+	   : "=&d" (y) : "f" (x) : "cc");
dfa500
+  return y;
dfa500
+}
dfa500
+libm_alias_float (__lrint, lrint)
dfa500
+
dfa500
+#else
dfa500
+# include <sysdeps/ieee754/flt-32/s_lrintf.c>
dfa500
+#endif
dfa500
diff --git a/sysdeps/s390/fpu/s_lrintl.c b/sysdeps/s390/fpu/s_lrintl.c
dfa500
new file mode 100644
dfa500
index 0000000000..2d386ecff9
dfa500
--- /dev/null
dfa500
+++ b/sysdeps/s390/fpu/s_lrintl.c
dfa500
@@ -0,0 +1,56 @@
dfa500
+/* lrintl() - S390 version.
dfa500
+   Copyright (C) 2019 Free Software Foundation, Inc.
dfa500
+
dfa500
+   This file is part of the GNU C Library.
dfa500
+
dfa500
+   The GNU C Library is free software; you can redistribute it and/or
dfa500
+   modify it under the terms of the GNU Lesser General Public License as
dfa500
+   published by the Free Software Foundation; either version 2.1 of the
dfa500
+   License, or (at your option) any later version.
dfa500
+
dfa500
+   The GNU C Library is distributed in the hope that it will be useful,
dfa500
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
dfa500
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dfa500
+   Lesser General Public License for more details.
dfa500
+
dfa500
+   You should have received a copy of the GNU Lesser General Public
dfa500
+   License along with the GNU C Library; if not, see
dfa500
+   <https://www.gnu.org/licenses/>.  */
dfa500
+
dfa500
+#ifdef HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
dfa500
+# include <math.h>
dfa500
+# include <math_private.h>
dfa500
+# include <libm-alias-ldouble.h>
dfa500
+
dfa500
+/* The sizeof (long int) differs between s390x (8byte) and s390 (4byte).
dfa500
+   Thus we need different instructions as the target size is encoded there.
dfa500
+   Note: On s390 this instruction is only used if build with -mzarch.  */
dfa500
+# ifdef __s390x__
dfa500
+#  define INSN "cgxbra"
dfa500
+# else
dfa500
+#  define INSN "cfxbra"
dfa500
+# endif
dfa500
+
dfa500
+long int
dfa500
+__lrintl (_Float128 x)
dfa500
+{
dfa500
+  long int y;
dfa500
+  /* The z196 zarch "convert to fixed" (cgxbra) instruction is rounding
dfa500
+     according to current rounding mode (M3-field: 0).
dfa500
+     First convert x with suppressed inexact exception and check if the
dfa500
+     resulting value is beyond the target limits (indicated by cc=3;
dfa500
+     Note: a nan is also indicated by cc=3).
dfa500
+     If the resulting value is within the target limits, redo
dfa500
+     without suppressing the inexact exception.  */
dfa500
+  __asm__ (INSN " %0,0,%1,4 \n\t"
dfa500
+	   "jo 1f \n\t"
dfa500
+	   INSN " %0,0,%1,0 \n\t"
dfa500
+	   "1:"
dfa500
+	   : "=&d" (y) : "f" (x) : "cc");
dfa500
+  return y;
dfa500
+}
dfa500
+libm_alias_ldouble (__lrint, lrint)
dfa500
+
dfa500
+#else
dfa500
+# include <sysdeps/ieee754/ldbl-128/s_lrintl.c>
dfa500
+#endif
dfa500
-- 
dfa500
2.18.2
dfa500