077c9d
commit b8686c0d7098168481a246f8199ab2d865f52d3d
077c9d
Author: Stefan Liebler <stli@linux.ibm.com>
077c9d
Date:   Tue Dec 18 13:57:03 2018 +0100
077c9d
077c9d
    S390: Add configure check to detect z10 as mininum architecture level set.
077c9d
    
077c9d
    Add a configure check for z10 in the same way as done for z196.
077c9d
    
077c9d
    ChangeLog:
077c9d
    
077c9d
            * config.h.in (HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT): New undefine.
077c9d
            * sysdeps/s390/configure.ac: Add check for z10 support.
077c9d
            * sysdeps/s390/configure: Regenerated.
077c9d
077c9d
diff --git a/config.h.in b/config.h.in
077c9d
index 141db213a9046eb4..beecc39d5b8c3f4a 100644
077c9d
--- a/config.h.in
077c9d
+++ b/config.h.in
077c9d
@@ -62,6 +62,9 @@
077c9d
 /* Define if assembler supports AVX512DQ.  */
077c9d
 #undef  HAVE_AVX512DQ_ASM_SUPPORT
077c9d
 
077c9d
+/* Define if assembler supports z10 zarch instructions as default on S390.  */
077c9d
+#undef  HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT
077c9d
+
077c9d
 /* Define if assembler supports z196 zarch instructions as default on S390.  */
077c9d
 #undef  HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
077c9d
 
077c9d
diff --git a/sysdeps/s390/configure b/sysdeps/s390/configure
077c9d
index 74b415f2ab0fa982..f30f8644361f474a 100644
077c9d
--- a/sysdeps/s390/configure
077c9d
+++ b/sysdeps/s390/configure
077c9d
@@ -112,6 +112,45 @@ then
077c9d
 
077c9d
 fi
077c9d
 
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for S390 z10 zarch instruction support as default" >&5
077c9d
+$as_echo_n "checking for S390 z10 zarch instruction support as default... " >&6; }
077c9d
+if ${libc_cv_asm_s390_min_z10_zarch+:} false; then :
077c9d
+  $as_echo_n "(cached) " >&6
077c9d
+else
077c9d
+  cat > conftest.c <<\EOF
077c9d
+void testinsn (void *a, void *b, int n)
077c9d
+{
077c9d
+    __asm__ ("exrl %2,1f \n\t"
077c9d
+	     "j 2f \n\t"
077c9d
+	     "1: mvc 0(1,%0),0(%1) \n\t"
077c9d
+	     "2:"
077c9d
+	     : : "a" (a), "a" (b), "d" (n)
077c9d
+	     : "memory", "cc");
077c9d
+}
077c9d
+EOF
077c9d
+if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS --shared conftest.c
077c9d
+			-o conftest.o &> /dev/null'
077c9d
+  { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
077c9d
+  (eval $ac_try) 2>&5
077c9d
+  ac_status=$?
077c9d
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
077c9d
+  test $ac_status = 0; }; } ;
077c9d
+then
077c9d
+  libc_cv_asm_s390_min_z10_zarch=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_min_z10_zarch=no
077c9d
+fi
077c9d
+rm -f conftest*
077c9d
+fi
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_s390_min_z10_zarch" >&5
077c9d
+$as_echo "$libc_cv_asm_s390_min_z10_zarch" >&6; }
077c9d
+
077c9d
+if test "$libc_cv_asm_s390_min_z10_zarch" = yes ;
077c9d
+then
077c9d
+  $as_echo "#define HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT 1" >>confdefs.h
077c9d
+
077c9d
+fi
077c9d
+
077c9d
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for S390 z196 zarch instruction support as default" >&5
077c9d
 $as_echo_n "checking for S390 z196 zarch instruction support as default... " >&6; }
077c9d
 if ${libc_cv_asm_s390_min_z196_zarch+:} false; then :
077c9d
diff --git a/sysdeps/s390/configure.ac b/sysdeps/s390/configure.ac
077c9d
index 1cdb0212825a3f18..981f7a79dd7066fc 100644
077c9d
--- a/sysdeps/s390/configure.ac
077c9d
+++ b/sysdeps/s390/configure.ac
077c9d
@@ -80,6 +80,35 @@ then
077c9d
   AC_DEFINE(HAVE_S390_VX_GCC_SUPPORT)
077c9d
 fi
077c9d
 
077c9d
+AC_CACHE_CHECK(for S390 z10 zarch instruction support as default,
077c9d
+	       libc_cv_asm_s390_min_z10_zarch, [dnl
077c9d
+cat > conftest.c <<\EOF
077c9d
+void testinsn (void *a, void *b, int n)
077c9d
+{
077c9d
+    __asm__ ("exrl %2,1f \n\t"
077c9d
+	     "j 2f \n\t"
077c9d
+	     "1: mvc 0(1,%0),0(%1) \n\t"
077c9d
+	     "2:"
077c9d
+	     : : "a" (a), "a" (b), "d" (n)
077c9d
+	     : "memory", "cc");
077c9d
+}
077c9d
+EOF
077c9d
+dnl
077c9d
+dnl test, if assembler supports S390 z10 zarch instructions as default
077c9d
+if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS --shared conftest.c
077c9d
+			-o conftest.o &> /dev/null]) ;
077c9d
+then
077c9d
+  libc_cv_asm_s390_min_z10_zarch=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_min_z10_zarch=no
077c9d
+fi
077c9d
+rm -f conftest* ])
077c9d
+
077c9d
+if test "$libc_cv_asm_s390_min_z10_zarch" = yes ;
077c9d
+then
077c9d
+  AC_DEFINE(HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT)
077c9d
+fi
077c9d
+
077c9d
 AC_CACHE_CHECK(for S390 z196 zarch instruction support as default,
077c9d
 	       libc_cv_asm_s390_min_z196_zarch, [dnl
077c9d
 cat > conftest.c <<\EOF