public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Improve ipa-pure-const handling of builtins
@ 2010-06-11 15:40 Jan Hubicka
  2010-06-11 22:02 ` H.J. Lu
  2010-06-14 10:35 ` Jakub Jelinek
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Hubicka @ 2010-06-11 15:40 UTC (permalink / raw)
  To: gcc-patches

Hi,
while looking on statistics, I noticed that quite large portion of functions are not
pure/const because they call alloca or __builtin_unreachable.   This patch adds code
to ipa-pure-const.c to recognize builtins that are special in a way that they can
not be const/pure, but function calling them can.

Bootstrapped/regtested x86_64-linux, commited.
Honza

	* ipa-pure-const.c (special_builtlin_state): New function.
	(check_call): Use it instead of special casign BUILT_IN_RETURN.
	(propagate_pure_const): Use it.

	* gcc.dg/ipa/pure-const-2.c: New testcase.
Index: ipa-pure-const.c
===================================================================
--- ipa-pure-const.c	(revision 160547)
+++ ipa-pure-const.c	(working copy)
@@ -410,6 +410,40 @@ worse_state (enum pure_const_state_e *st
   *looping = MAX (*looping, looping2);
 }
 
+/* Recognize special cases of builtins that are by themself not pure or const
+   but function using them is.  */
+static bool
+special_builtlin_state (enum pure_const_state_e *state, bool *looping,
+			tree callee)
+{
+  if (DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
+    switch (DECL_FUNCTION_CODE (callee))
+      {
+	case BUILT_IN_RETURN:
+	case BUILT_IN_UNREACHABLE:
+	case BUILT_IN_ALLOCA:
+	case BUILT_IN_STACK_SAVE:
+	case BUILT_IN_STACK_RESTORE:
+	case BUILT_IN_EH_POINTER:
+	case BUILT_IN_EH_FILTER:
+	case BUILT_IN_UNWIND_RESUME:
+	case BUILT_IN_CXA_END_CLEANUP:
+	case BUILT_IN_EH_COPY_VALUES:
+	case BUILT_IN_FRAME_ADDRESS:
+	case BUILT_IN_APPLY:
+	case BUILT_IN_APPLY_ARGS:
+	case BUILT_IN_ARGS_INFO:
+	  *looping = false;
+	  *state = IPA_CONST;
+	  return true;
+	case BUILT_IN_PREFETCH:
+	  *looping = true;
+	  *state = IPA_CONST;
+	  return true;
+      }
+  return false;
+}
+
 /* Check the parameters of a function call to CALL_EXPR to see if
    there are any references in the parameters that are not allowed for
    pure or const functions.  Also check to see if this is either an
@@ -460,9 +494,15 @@ check_call (funct_state local, gimple ca
      graph.  */
   if (callee_t)
     {
-      /* built_in_return is really just an return statemnt.  */
-      if (gimple_call_builtin_p (call, BUILT_IN_RETURN))
-	return;
+      enum pure_const_state_e call_state;
+      bool call_looping;
+
+      if (special_builtlin_state (&call_state, &call_looping, callee_t))
+	{
+	  worse_state (&local->pure_const_state, &local->looping,
+		       call_state, call_looping);
+	  return;
+	}
       /* When bad things happen to bad functions, they cannot be const
 	 or pure.  */
       if (setjmp_call_p (callee_t))
@@ -1143,10 +1183,13 @@ propagate_pure_const (void)
 		      edge_looping = y_l->looping;
 		    }
 		}
+	      else if (special_builtlin_state (&edge_state, &edge_looping,
+					       y->decl))
+		;
 	      else
 		state_from_flags (&edge_state, &edge_looping,
-			          flags_from_decl_or_type (y->decl),
-			          cgraph_edge_cannot_lead_to_return (e));
+				  flags_from_decl_or_type (y->decl),
+				  cgraph_edge_cannot_lead_to_return (e));
 
 	      /* Merge the results with what we already know.  */
 	      better_state (&edge_state, &edge_looping,
Index: testsuite/gcc.dg/ipa/pure-const-2.c
===================================================================
--- testsuite/gcc.dg/ipa/pure-const-2.c	(revision 0)
+++ testsuite/gcc.dg/ipa/pure-const-2.c	(revision 0)
@@ -0,0 +1,28 @@
+/* { dg-do compile } */
+/* { dg-options "-O3 -fdump-tree-local-pure-const1 -fdump-tree-optimized" } */
+static __attribute__ ((noinline, noclone))
+int i_am_pure(char *c, int n)
+{
+  char *d=__builtin_alloca (n);
+  int i;
+  int sum;
+  for (i=0;i<n;i++)
+    d[i] = c[i];
+  for (i=0;i<n;i++)
+    d[i] *= c[n-i];
+  for (i=0;i<n;i++)
+    sum+=d[i];
+  if (sum)
+    __builtin_unreachable ();
+  return sum;
+}
+char array[11];
+int
+main(void)
+{
+  i_am_pure (array,5);
+  i_am_pure (array,11);
+  return 0;
+}
+/* { dg-final { scan-tree-dump "found to be pure: i_am_pure" "local-pure-const1"} } */
+/* { dg-final { scan-tree-dump-not "i_am_pure" "optimized"} } */

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Improve ipa-pure-const handling of builtins
  2010-06-11 15:40 Improve ipa-pure-const handling of builtins Jan Hubicka
@ 2010-06-11 22:02 ` H.J. Lu
  2010-06-14 10:35 ` Jakub Jelinek
  1 sibling, 0 replies; 3+ messages in thread
From: H.J. Lu @ 2010-06-11 22:02 UTC (permalink / raw)
  To: Jan Hubicka; +Cc: gcc-patches

On Fri, Jun 11, 2010 at 8:16 AM, Jan Hubicka <hubicka@ucw.cz> wrote:
> Hi,
> while looking on statistics, I noticed that quite large portion of functions are not
> pure/const because they call alloca or __builtin_unreachable.   This patch adds code
> to ipa-pure-const.c to recognize builtins that are special in a way that they can
> not be const/pure, but function calling them can.
>
> Bootstrapped/regtested x86_64-linux, commited.
> Honza
>
>        * ipa-pure-const.c (special_builtlin_state): New function.
>        (check_call): Use it instead of special casign BUILT_IN_RETURN.
>        (propagate_pure_const): Use it.
>

This caused:

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44505

-- 
H.J.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Improve ipa-pure-const handling of builtins
  2010-06-11 15:40 Improve ipa-pure-const handling of builtins Jan Hubicka
  2010-06-11 22:02 ` H.J. Lu
@ 2010-06-14 10:35 ` Jakub Jelinek
  1 sibling, 0 replies; 3+ messages in thread
From: Jakub Jelinek @ 2010-06-14 10:35 UTC (permalink / raw)
  To: Jan Hubicka; +Cc: gcc-patches

On Fri, Jun 11, 2010 at 05:16:04PM +0200, Jan Hubicka wrote:
> 	* ipa-pure-const.c (special_builtlin_state): New function.

Spelling (also in the code). s/ltlin/ltin/

> 	(check_call): Use it instead of special casign BUILT_IN_RETURN.

s/casign/casing/

	Jakub

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-06-14 10:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-11 15:40 Improve ipa-pure-const handling of builtins Jan Hubicka
2010-06-11 22:02 ` H.J. Lu
2010-06-14 10:35 ` Jakub Jelinek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).