]> sourceware.org Git - glibc.git/commitdiff
Fix loop construction to functions calls
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Fri, 21 Jun 2013 00:40:55 +0000 (19:40 -0500)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Fri, 21 Jun 2013 00:42:05 +0000 (19:42 -0500)
Check wheter the compiler has the option -fno-tree-loop-distribute-patterns
to inhibit loop transformation to library calls and uses it on memset
and memmove default implementation to avoid recursive calls.

ChangeLog
benchtests/bench-memmove.c
benchtests/bench-memset.c
config.h.in
configure
configure.in
include/libc-symbols.h
string/memmove.c
string/memset.c
string/test-memmove.c
string/test-memset.c

index 314a563e6afddfe0e3d5bb7340b39c465fe4650c..6c65453eb464da47ec06a92fd40dbbc31e5bab95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+       * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
+       * configure.in (libc_cv_cc_loop_to_function): Check if compiler
+       accepts -fno-tree-loop-distribute-patterns.
+       * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
+       * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
+       recursive call.
+       * string/memset.c (memset): Likewise.
+       * string/test-memmove.c (simple_memmove): Disable loop transformation
+       to library calls.
+       * string/test-memset.c (simple_memset): Likewise.
+       * benchtests/bench-memmove.c (simple_memmove): Likewise.
+       * benchtests/bench-memset.c (simple_memset): Likewise.
+       * configure: Regenerated.
+
 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
 
        * math/test-misc.c (main): Ignore fesetround failure when failures
index dccde5d14ecbbf1ab511e3f09d9cb546ae9ab42e..8925606af84c52f72ec1195096e8acb28662d8b1 100644 (file)
@@ -46,6 +46,7 @@ IMPL (memmove, 1)
 #endif
 
 char *
+inhibit_loop_to_libcall
 simple_memmove (char *dst, const char *src, size_t n)
 {
   char *ret = dst;
index 92e34f0d61130a03e49ae859ba4c50a5b1284b94..ea29cf37fc43d56e7f268f7e07ebbc440c7743f9 100644 (file)
@@ -63,6 +63,7 @@ builtin_memset (char *s, int c, size_t n)
 #endif
 
 char *
+inhibit_loop_to_libcall
 simple_memset (char *s, int c, size_t n)
 {
   char *r = s, *end = s + n;
index 8c2479ef483c24ae0f7df14478f2c414ad0bbd5d..b5c6f163a7efdc7d62978b05d9b72a6017c1ca8c 100644 (file)
@@ -69,6 +69,9 @@
 /* Define if the compiler supports __builtin_memset.  */
 #undef HAVE_BUILTIN_MEMSET
 
+/* Define if compiler accepts -ftree-loop-distribute-patterns.  */
+#undef  HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
+
 /* Define if the regparm attribute shall be used for local functions
    (gcc on ix86 only).  */
 #undef USE_REGPARMS
index 09d8336f1063a01f0b0f4d0d271126b48e0cd287..14bff72a3dd2c05b208a1b51b52d35c289edf803 100755 (executable)
--- a/configure
+++ b/configure
@@ -598,6 +598,7 @@ have_selinux
 have_libcap
 have_libaudit
 LIBGD
+libc_cv_cc_loop_to_function
 libc_cv_cc_submachine
 libc_cv_cc_nofma
 exceptions
@@ -6933,6 +6934,38 @@ $as_echo "$libc_cv_cc_submachine" >&6; }
 fi
 
 
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -fno-tree-loop-distribute-patterns with \
+__attribute__ ((__optimize__))" >&5
+$as_echo_n "checking if $CC accepts -fno-tree-loop-distribute-patterns with \
+__attribute__ ((__optimize__))... " >&6; }
+if ${libc_cv_cc_loop_to_function+:} false; then :
+  $as_echo_n "(cached) " >&6
+else
+  cat > conftest.c <<EOF
+void
+__attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
+foo (void) {}
+EOF
+libc_cv_cc_loop_to_function=no
+if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c'
+  { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+  test $ac_status = 0; }; }
+then
+  libc_cv_cc_loop_to_function=yes
+fi
+rm -f conftest*
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_cc_loop_to_function" >&5
+$as_echo "$libc_cv_cc_loop_to_function" >&6; }
+if test $libc_cv_cc_loop_to_function = yes; then
+  $as_echo "#define HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1" >>confdefs.h
+
+fi
+
+
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libgd" >&5
 $as_echo_n "checking for libgd... " >&6; }
 if test "$with_gd" != "no"; then
index 8b110817bc6e734694728ee5f0fa513127442d91..56cd61c171cc22ab01ba1dab8bfd667aeba75bc9 100644 (file)
@@ -1964,6 +1964,24 @@ if test -n "$submachine"; then
 fi
 AC_SUBST(libc_cv_cc_submachine)
 
+AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \
+__attribute__ ((__optimize__)), libc_cv_cc_loop_to_function, [dnl
+cat > conftest.c <<EOF
+void
+__attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
+foo (void) {}
+EOF
+libc_cv_cc_loop_to_function=no
+if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c])
+then
+  libc_cv_cc_loop_to_function=yes
+fi
+rm -f conftest*])
+if test $libc_cv_cc_loop_to_function = yes; then
+  AC_DEFINE(HAVE_CC_INHIBIT_LOOP_TO_LIBCALL)
+fi
+AC_SUBST(libc_cv_cc_loop_to_function)
+
 dnl Check whether we have the gd library available.
 AC_MSG_CHECKING(for libgd)
 if test "$with_gd" != "no"; then
index f043ce085004d2432877f5a0932d8951ed267dfc..a3b6274bad565adce90d9df6fb58fdb15355e56c 100644 (file)
@@ -782,4 +782,14 @@ for linking")
 #define libc_ifunc_hidden_def(name) \
   libc_ifunc_hidden_def1 (__GI_##name, name)
 
+/* Add the compiler optimization to inhibit loop transformation to library
+   calls.  This is used to avoid recursive calls in memset and memmove
+   default implementations.  */
+#ifdef HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
+# define inhibit_loop_to_libcall \
+    __attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
+#else
+# define inhibit_loop_to_libcall
+#endif
+
 #endif /* libc-symbols.h */
index 9dcd2f1f680b8b166af65b1a954f19a480758257..ec61e28c60d7b136664165d787c010afa961187a 100644 (file)
@@ -41,6 +41,7 @@
 #endif
 
 rettype
+inhibit_loop_to_libcall
 MEMMOVE (a1, a2, len)
      a1const void *a1;
      a2const void *a2;
index 868be53bf938728d344f9a3ad5db24e6e5ebb33f..74b5409218edcbc04f4fd8bd8dbe015fdbd3a4ea 100644 (file)
@@ -21,6 +21,7 @@
 #undef memset
 
 void *
+inhibit_loop_to_libcall
 memset (dstpp, c, len)
      void *dstpp;
      int c;
index 4ec55b2fcc51a56013ddc266a7595b9ab1c4dbc3..94576a299bc2bb548231b43e891dfcc1d42d2122 100644 (file)
@@ -47,6 +47,7 @@ IMPL (memmove, 1)
 #endif
 
 char *
+inhibit_loop_to_libcall
 simple_memmove (char *dst, const char *src, size_t n)
 {
   char *ret = dst;
index 9981fcef4692a176ff295e440403f77d651570d5..72a390e7d9c59d460c6cf16d4bd5724edbf3c4c4 100644 (file)
@@ -64,6 +64,7 @@ builtin_memset (char *s, int c, size_t n)
 #endif
 
 char *
+inhibit_loop_to_libcall
 simple_memset (char *s, int c, size_t n)
 {
   char *r = s, *end = s + n;
This page took 0.128337 seconds and 5 git commands to generate.