ce426f
From 925c1856c2c73401df1bed739f2f3e89b62bee89 Mon Sep 17 00:00:00 2001
ce426f
From: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
ce426f
Date: Wed, 30 Jul 2014 10:45:21 -0500
ce426f
Subject: [PATCH] PowerPC: multiarch llround/lround for PowerPC64
ce426f
ce426f
commit c3627f6e965834c7998184a55653ca016b1ff663
ce426f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
ce426f
Date:   Fri Dec 13 15:01:54 2013 -0500
ce426f
---
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile   |  3 +-
ce426f
 .../powerpc64/fpu/multiarch/s_llround-power5+.S    | 32 ++++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_llround-power6x.S    | 32 ++++++++++++
ce426f
 .../powerpc64/fpu/multiarch/s_llround-ppc64.S      | 28 ++++++++++
ce426f
 .../powerpc/powerpc64/fpu/multiarch/s_llround.c    | 60 ++++++++++++++++++++++
ce426f
 sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c |  1 +
ce426f
 6 files changed, 155 insertions(+), 1 deletion(-)
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
ce426f
 create mode 100644 sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c
ce426f
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
index b57ddc9..a4636b0 100644
ce426f
--- glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
ce426f
@@ -3,5 +3,6 @@ sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
                   s_isnan-power5 s_isnan-ppc64
ce426f
 
ce426f
 libm-sysdep_routines += s_isnan-power7 s_isnan-power6x s_isnan-power6 \
ce426f
-                       s_isnan-power5 s_isnan-ppc64
ce426f
+                       s_isnan-power5 s_isnan-ppc64 s_llround-power6x \
ce426f
+                       s_llround-power5+ s_llround-ppc64
ce426f
 endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S
ce426f
new file mode 100644
ce426f
index 0000000..ba0b65c
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S
ce426f
@@ -0,0 +1,32 @@
ce426f
+/* llround().  PowerPC64 default version.
ce426f
+   Copyright (C) 2013-2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/>.  */
ce426f
+
ce426f
+#include <sysdep.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(name, alias)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(name, alias)
ce426f
+#undef compat_symbol
ce426f
+#define compat_symbol(a,b,c,d)
ce426f
+
ce426f
+#define __llround __llround_power5plus
ce426f
+#define __lround __lround_power5plus
ce426f
+
ce426f
+#include <sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S
ce426f
new file mode 100644
ce426f
index 0000000..bd1c22a
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S
ce426f
@@ -0,0 +1,32 @@
ce426f
+/* llround().  PowerPC64 default version.
ce426f
+   Copyright (C) 2013-2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/>.  */
ce426f
+
ce426f
+#include <sysdep.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+
ce426f
+#undef weak_alias
ce426f
+#define weak_alias(name, alias)
ce426f
+#undef strong_alias
ce426f
+#define strong_alias(name, alias)
ce426f
+#undef compat_symbol
ce426f
+#define compat_symbol(lib, name, alias, ver)
ce426f
+
ce426f
+#define __llround __llround_power6x
ce426f
+#define __lround __lround_power6x
ce426f
+
ce426f
+#include <sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S
ce426f
new file mode 100644
ce426f
index 0000000..2316da2
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S
ce426f
@@ -0,0 +1,28 @@
ce426f
+/* llround().  PowerPC64 default version.
ce426f
+   Copyright (C) 2013-2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/>.  */
ce426f
+
ce426f
+#include <sysdep.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+
ce426f
+#undef compat_symbol
ce426f
+#define compat_symbol(a,b,c,d)
ce426f
+
ce426f
+#define __llround __llround_ppc64
ce426f
+#define __lround __lround_ppc64
ce426f
+
ce426f
+#include <sysdeps/powerpc/powerpc64/fpu/s_llround.S>
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
ce426f
new file mode 100644
ce426f
index 0000000..a4d1bf3
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
ce426f
@@ -0,0 +1,60 @@
ce426f
+/* Multiple versions of llround.
ce426f
+   Copyright (C) 2013-2014 Free Software Foundation, Inc.
ce426f
+   This file is part of the GNU C Library.
ce426f
+
ce426f
+   The GNU C Library is free software; you can redistribute it and/or
ce426f
+   modify it under the terms of the GNU Lesser General Public
ce426f
+   License as published by the Free Software Foundation; either
ce426f
+   version 2.1 of the License, or (at your option) any later version.
ce426f
+
ce426f
+   The GNU C Library is distributed in the hope that it will be useful,
ce426f
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
ce426f
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
ce426f
+   Lesser General Public License for more details.
ce426f
+
ce426f
+   You should have received a copy of the GNU Lesser General Public
ce426f
+   License along with the GNU C Library; if not, see
ce426f
+   <http://www.gnu.org/licenses/>.  */
ce426f
+
ce426f
+#define lround __hidden_lround
ce426f
+#define __lround __hidden___lround
ce426f
+
ce426f
+#include <math.h>
ce426f
+#include <math_ldbl_opt.h>
ce426f
+#include <shlib-compat.h>
ce426f
+#include "init-arch.h"
ce426f
+
ce426f
+extern __typeof (__llround) __llround_ppc64 attribute_hidden;
ce426f
+extern __typeof (__llround) __llround_power5plus attribute_hidden;
ce426f
+extern __typeof (__llround) __llround_power6x attribute_hidden;
ce426f
+
ce426f
+libc_ifunc (__llround,
ce426f
+	    (hwcap & PPC_FEATURE_POWER6_EXT)
ce426f
+	    ? __llround_power6x :
ce426f
+	      (hwcap & PPC_FEATURE_POWER5_PLUS)
ce426f
+	      ? __llround_power5plus
ce426f
+            : __llround_ppc64);
ce426f
+
ce426f
+weak_alias (__llround, llround)
ce426f
+
ce426f
+#ifdef NO_LONG_DOUBLE
ce426f
+weak_alias (__llround, llroundl)
ce426f
+strong_alias (__llround, __llroundl)
ce426f
+#endif
ce426f
+#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
ce426f
+compat_symbol (libm, __llround, llroundl, GLIBC_2_1);
ce426f
+compat_symbol (libm, llround, lroundl, GLIBC_2_1);
ce426f
+#endif
ce426f
+
ce426f
+/* long has the same width as long long on PPC64.  */
ce426f
+#undef lround
ce426f
+#undef __lround
ce426f
+strong_alias (__llround, __lround)
ce426f
+weak_alias (__llround, lround)
ce426f
+#ifdef NO_LONG_DOUBLE
ce426f
+strong_alias (__llround, __llroundl)
ce426f
+weak_alias (__llround, llroundl)
ce426f
+#endif
ce426f
+#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
ce426f
+compat_symbol (libm, __lround, lroundl, GLIBC_2_1);
ce426f
+#endif
ce426f
diff --git glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c
ce426f
new file mode 100644
ce426f
index 0000000..0dab544
ce426f
--- /dev/null
ce426f
+++ glibc-2.17-c758a686/sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c
ce426f
@@ -0,0 +1 @@
ce426f
+/* __lround is in s_llround.c  */
ce426f
-- 
ce426f
1.8.3.1
ce426f