077c9d
commit a899a5512f618d5c4093a2d65e8dee07c791b0ab
077c9d
Author: Stefan Liebler <stli@linux.ibm.com>
077c9d
Date:   Fri Mar 22 11:14:08 2019 +0100
077c9d
077c9d
    S390: Add configure check to detect support for arch13.
077c9d
    
077c9d
    Add two configure checks which detect if arch13 is supported
077c9d
    by the assembler at all - by explicitely setting the machine -
077c9d
    and if it is supported with default settings.
077c9d
    
077c9d
    ChangeLog:
077c9d
    
077c9d
            * config.h.in (HAVE_S390_MIN_ARCH13_ZARCH_ASM_SUPPORT,
077c9d
            HAVE_S390_ARCH13_ASM_SUPPORT): New undefine.
077c9d
            * sysdeps/s390/configure.ac: Add checks for arch13 support.
077c9d
            * sysdeps/s390/configure: Regenerated.
077c9d
077c9d
diff --git a/config.h.in b/config.h.in
077c9d
index 422a6036ab16e3b6..f63f6c8442914aa1 100644
077c9d
--- a/config.h.in
077c9d
+++ b/config.h.in
077c9d
@@ -71,6 +71,9 @@
077c9d
 /* Define if assembler supports z13 zarch instructions as default on S390.  */
077c9d
 #undef  HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT
077c9d
 
077c9d
+/* Define if assembler supports arch13 zarch instruction as default on S390.  */
077c9d
+#undef  HAVE_S390_MIN_ARCH13_ZARCH_ASM_SUPPORT
077c9d
+
077c9d
 /* Define if assembler supports vector instructions on S390.  */
077c9d
 #undef  HAVE_S390_VX_ASM_SUPPORT
077c9d
 
077c9d
@@ -78,6 +81,9 @@
077c9d
    on S390.  */
077c9d
 #undef  HAVE_S390_VX_GCC_SUPPORT
077c9d
 
077c9d
+/* Define if assembler supports arch13 instructions on S390.  */
077c9d
+#undef  HAVE_S390_ARCH13_ASM_SUPPORT
077c9d
+
077c9d
 /* Define if assembler supports Intel MPX.  */
077c9d
 #undef  HAVE_MPX_SUPPORT
077c9d
 
077c9d
diff --git a/sysdeps/s390/configure b/sysdeps/s390/configure
077c9d
index 4a44775e3083d8c3..fa46e9e351e37e55 100644
077c9d
--- a/sysdeps/s390/configure
077c9d
+++ b/sysdeps/s390/configure
077c9d
@@ -112,6 +112,43 @@ then
077c9d
 
077c9d
 fi
077c9d
 
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for S390 arch13 zarch instruction support" >&5
077c9d
+$as_echo_n "checking for S390 arch13 zarch instruction support... " >&6; }
077c9d
+if ${libc_cv_asm_s390_arch13+:} false; then :
077c9d
+  $as_echo_n "(cached) " >&6
077c9d
+else
077c9d
+  cat > conftest.c <<\EOF
077c9d
+void testinsn (char *buf)
077c9d
+{
077c9d
+    __asm__ (".machine \"arch13\" \n\t"
077c9d
+	     ".machinemode \"zarch_nohighgprs\" \n\t"
077c9d
+	     "lghi %%r0,16 \n\t"
077c9d
+	     "mvcrl 0(%0),32(%0)" : : "a" (buf) : "memory", "r0");
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_arch13=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_arch13=no
077c9d
+fi
077c9d
+rm -f conftest*
077c9d
+fi
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_s390_arch13" >&5
077c9d
+$as_echo "$libc_cv_asm_s390_arch13" >&6; }
077c9d
+if test "$libc_cv_asm_s390_arch13" = yes ;
077c9d
+then
077c9d
+  $as_echo "#define HAVE_S390_ARCH13_ASM_SUPPORT 1" >>confdefs.h
077c9d
+
077c9d
+fi
077c9d
+
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
@@ -225,5 +262,39 @@ then
077c9d
 
077c9d
 fi
077c9d
 
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for S390 arch13 zarch instruction support as default" >&5
077c9d
+$as_echo_n "checking for S390 arch13 zarch instruction support as default... " >&6; }
077c9d
+if ${libc_cv_asm_s390_min_arch13_zarch+:} false; then :
077c9d
+  $as_echo_n "(cached) " >&6
077c9d
+else
077c9d
+  cat > conftest.c <<\EOF
077c9d
+void testinsn (char *buf)
077c9d
+{
077c9d
+    __asm__ ("lghi %%r0,16 \n\t"
077c9d
+	     "mvcrl 0(%0),32(%0)" : : "a" (buf) : "memory", "r0");
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_arch13_zarch=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_min_arch13_zarch=no
077c9d
+fi
077c9d
+rm -f conftest*
077c9d
+fi
077c9d
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_s390_min_arch13_zarch" >&5
077c9d
+$as_echo "$libc_cv_asm_s390_min_arch13_zarch" >&6; }
077c9d
+if test "$libc_cv_asm_s390_min_arch13_zarch" = yes ;
077c9d
+then
077c9d
+  $as_echo "#define HAVE_S390_MIN_ARCH13_ZARCH_ASM_SUPPORT 1" >>confdefs.h
077c9d
+
077c9d
+fi
077c9d
+
077c9d
 test -n "$critic_missing" && as_fn_error $? "
077c9d
 *** $critic_missing" "$LINENO" 5
077c9d
diff --git a/sysdeps/s390/configure.ac b/sysdeps/s390/configure.ac
077c9d
index 4dfb5574b49d5949..3ed5a8ef87f9694b 100644
077c9d
--- a/sysdeps/s390/configure.ac
077c9d
+++ b/sysdeps/s390/configure.ac
077c9d
@@ -80,6 +80,32 @@ then
077c9d
   AC_DEFINE(HAVE_S390_VX_GCC_SUPPORT)
077c9d
 fi
077c9d
 
077c9d
+AC_CACHE_CHECK(for S390 arch13 zarch instruction support,
077c9d
+	       libc_cv_asm_s390_arch13, [dnl
077c9d
+cat > conftest.c <<\EOF
077c9d
+void testinsn (char *buf)
077c9d
+{
077c9d
+    __asm__ (".machine \"arch13\" \n\t"
077c9d
+	     ".machinemode \"zarch_nohighgprs\" \n\t"
077c9d
+	     "lghi %%r0,16 \n\t"
077c9d
+	     "mvcrl 0(%0),32(%0)" : : "a" (buf) : "memory", "r0");
077c9d
+}
077c9d
+EOF
077c9d
+dnl test, if assembler supports S390 arch13 instructions
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_arch13=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_arch13=no
077c9d
+fi
077c9d
+rm -f conftest* ])
077c9d
+if test "$libc_cv_asm_s390_arch13" = yes ;
077c9d
+then
077c9d
+  AC_DEFINE(HAVE_S390_ARCH13_ASM_SUPPORT)
077c9d
+fi
077c9d
+
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
@@ -163,5 +189,28 @@ then
077c9d
   AC_DEFINE(HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT)
077c9d
 fi
077c9d
 
077c9d
+AC_CACHE_CHECK(for S390 arch13 zarch instruction support as default,
077c9d
+	       libc_cv_asm_s390_min_arch13_zarch, [dnl
077c9d
+cat > conftest.c <<\EOF
077c9d
+void testinsn (char *buf)
077c9d
+{
077c9d
+    __asm__ ("lghi %%r0,16 \n\t"
077c9d
+	     "mvcrl 0(%0),32(%0)" : : "a" (buf) : "memory", "r0");
077c9d
+}
077c9d
+EOF
077c9d
+dnl test, if assembler supports S390 arch13 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_arch13_zarch=yes
077c9d
+else
077c9d
+  libc_cv_asm_s390_min_arch13_zarch=no
077c9d
+fi
077c9d
+rm -f conftest* ])
077c9d
+if test "$libc_cv_asm_s390_min_arch13_zarch" = yes ;
077c9d
+then
077c9d
+  AC_DEFINE(HAVE_S390_MIN_ARCH13_ZARCH_ASM_SUPPORT)
077c9d
+fi
077c9d
+
077c9d
 test -n "$critic_missing" && AC_MSG_ERROR([
077c9d
 *** $critic_missing])