d8307d
commit 2ee1bc57ab50737ee2ab88c4d796b90e08b4bf93
d8307d
Author: Stefan Liebler <stli@linux.ibm.com>
d8307d
Date:   Tue Dec 18 13:57:08 2018 +0100
d8307d
d8307d
    S390: Add configure check to detect z13 as mininum architecture level set.
d8307d
    
d8307d
    Add a configure check for z13 in the same way as done for z196.
d8307d
    
d8307d
    ChangeLog:
d8307d
    
d8307d
            * config.h.in (HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT): New undefine.
d8307d
            * sysdeps/s390/configure.ac: Add check for z13 support.
d8307d
            * sysdeps/s390/configure: Regenerated.
d8307d
d8307d
diff --git a/config.h.in b/config.h.in
d8307d
index beecc39d5b8c3f4a..422a6036ab16e3b6 100644
d8307d
--- a/config.h.in
d8307d
+++ b/config.h.in
d8307d
@@ -68,6 +68,9 @@
d8307d
 /* Define if assembler supports z196 zarch instructions as default on S390.  */
d8307d
 #undef  HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT
d8307d
 
d8307d
+/* Define if assembler supports z13 zarch instructions as default on S390.  */
d8307d
+#undef  HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
d8307d
+
d8307d
 /* Define if assembler supports vector instructions on S390.  */
d8307d
 #undef  HAVE_S390_VX_ASM_SUPPORT
d8307d
 
d8307d
diff --git a/sysdeps/s390/configure b/sysdeps/s390/configure
d8307d
index f30f8644361f474a..4a44775e3083d8c3 100644
d8307d
--- a/sysdeps/s390/configure
d8307d
+++ b/sysdeps/s390/configure
d8307d
@@ -187,5 +187,43 @@ then
d8307d
 
d8307d
 fi
d8307d
 
d8307d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for S390 z13 zarch instruction support as default" >&5
d8307d
+$as_echo_n "checking for S390 z13 zarch instruction support as default... " >&6; }
d8307d
+if ${libc_cv_asm_s390_min_z13_zarch+:} false; then :
d8307d
+  $as_echo_n "(cached) " >&6
d8307d
+else
d8307d
+  cat > conftest.c <<\EOF
d8307d
+int testinsn (void)
d8307d
+{
d8307d
+    int i;
d8307d
+    __asm__ ("vl %%v16,0(%%r15)\n\t"
d8307d
+	     "vlgvf %0,%%v16,0"
d8307d
+	     : "=d" (i) : : "memory", "v16");
d8307d
+    return i;
d8307d
+}
d8307d
+EOF
d8307d
+if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS --shared conftest.c
d8307d
+			-o conftest.o &> /dev/null'
d8307d
+  { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
d8307d
+  (eval $ac_try) 2>&5
d8307d
+  ac_status=$?
d8307d
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
d8307d
+  test $ac_status = 0; }; } ;
d8307d
+then
d8307d
+  libc_cv_asm_s390_min_z13_zarch=yes
d8307d
+else
d8307d
+  libc_cv_asm_s390_min_z13_zarch=no
d8307d
+fi
d8307d
+rm -f conftest*
d8307d
+fi
d8307d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_s390_min_z13_zarch" >&5
d8307d
+$as_echo "$libc_cv_asm_s390_min_z13_zarch" >&6; }
d8307d
+
d8307d
+if test "$libc_cv_asm_s390_min_z13_zarch" = yes ;
d8307d
+then
d8307d
+  $as_echo "#define HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT 1" >>confdefs.h
d8307d
+
d8307d
+fi
d8307d
+
d8307d
 test -n "$critic_missing" && as_fn_error $? "
d8307d
 *** $critic_missing" "$LINENO" 5
d8307d
diff --git a/sysdeps/s390/configure.ac b/sysdeps/s390/configure.ac
d8307d
index 981f7a79dd7066fc..4dfb5574b49d5949 100644
d8307d
--- a/sysdeps/s390/configure.ac
d8307d
+++ b/sysdeps/s390/configure.ac
d8307d
@@ -135,5 +135,33 @@ then
d8307d
   AC_DEFINE(HAVE_S390_MIN_Z196_ZARCH_ASM_SUPPORT)
d8307d
 fi
d8307d
 
d8307d
+AC_CACHE_CHECK(for S390 z13 zarch instruction support as default,
d8307d
+	       libc_cv_asm_s390_min_z13_zarch, [dnl
d8307d
+cat > conftest.c <<\EOF
d8307d
+int testinsn (void)
d8307d
+{
d8307d
+    int i;
d8307d
+    __asm__ ("vl %%v16,0(%%r15)\n\t"
d8307d
+	     "vlgvf %0,%%v16,0"
d8307d
+	     : "=d" (i) : : "memory", "v16");
d8307d
+    return i;
d8307d
+}
d8307d
+EOF
d8307d
+dnl
d8307d
+dnl test, if assembler supports S390 z13 zarch instructions as default
d8307d
+if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS --shared conftest.c
d8307d
+			-o conftest.o &> /dev/null]) ;
d8307d
+then
d8307d
+  libc_cv_asm_s390_min_z13_zarch=yes
d8307d
+else
d8307d
+  libc_cv_asm_s390_min_z13_zarch=no
d8307d
+fi
d8307d
+rm -f conftest* ])
d8307d
+
d8307d
+if test "$libc_cv_asm_s390_min_z13_zarch" = yes ;
d8307d
+then
d8307d
+  AC_DEFINE(HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT)
d8307d
+fi
d8307d
+
d8307d
 test -n "$critic_missing" && AC_MSG_ERROR([
d8307d
 *** $critic_missing])