Daily bump.
[gcc.git] / gcc / tree-ssa-ifcombine.c
index 1786f9c29d38383f540fb9a8b2d3566773d9a139..25087f2ac97b3502e81061ca297261ff90630580 100644 (file)
@@ -1,5 +1,5 @@
 /* Combining of if-expressions on trees.
-   Copyright (C) 2007-2013 Free Software Foundation, Inc.
+   Copyright (C) 2007-2014 Free Software Foundation, Inc.
    Contributed by Richard Guenther <rguenther@suse.de>
 
 This file is part of GCC.
@@ -27,9 +27,28 @@ along with GCC; see the file COPYING3.  If not see
 #include "rtl.h"
 #include "tm_p.h"
 #include "tree.h"
+#include "stor-layout.h"
+#include "predict.h"
+#include "vec.h"
+#include "hashtab.h"
+#include "hash-set.h"
+#include "machmode.h"
+#include "hard-reg-set.h"
+#include "input.h"
+#include "function.h"
+#include "dominance.h"
+#include "cfg.h"
+#include "cfganal.h"
 #include "basic-block.h"
 #include "tree-pretty-print.h"
-#include "gimplify.h"
+#include "tree-ssa-alias.h"
+#include "internal-fn.h"
+#include "gimple-fold.h"
+#include "gimple-expr.h"
+#include "is-a.h"
+#include "gimple.h"
+#include "gimple-iterator.h"
+#include "gimplify-me.h"
 #include "gimple-ssa.h"
 #include "tree-cfg.h"
 #include "tree-phinodes.h"
@@ -119,7 +138,11 @@ bb_no_side_effects_p (basic_block bb)
     {
       gimple stmt = gsi_stmt (gsi);
 
+      if (is_gimple_debug (stmt))
+       continue;
+
       if (gimple_has_side_effects (stmt)
+         || gimple_could_trap_p (stmt)
          || gimple_vuse (stmt))
        return false;
     }
@@ -127,6 +150,16 @@ bb_no_side_effects_p (basic_block bb)
   return true;
 }
 
+/* Return true if BB is an empty forwarder block to TO_BB.  */
+
+static bool
+forwarder_block_to (basic_block bb, basic_block to_bb)
+{
+  return empty_block_p (bb)
+        && single_succ_p (bb)
+        && single_succ (bb) == to_bb;
+}
+
 /* Verify if all PHI node arguments in DEST for edges from BB1 or
    BB2 to DEST are the same.  This makes the CFG merge point
    free from side-effects.  Return true in this case, else false.  */
@@ -211,7 +244,8 @@ recognize_single_bit_test (gimple cond, tree *name, tree *bit, bool inv)
       while (is_gimple_assign (stmt)
             && ((CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt))
                  && (TYPE_PRECISION (TREE_TYPE (gimple_assign_lhs (stmt)))
-                     <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (stmt)))))
+                     <= TYPE_PRECISION (TREE_TYPE (gimple_assign_rhs1 (stmt))))
+                 && TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME)
                 || gimple_assign_ssa_name_copy_p (stmt)))
        stmt = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt));
 
@@ -553,6 +587,99 @@ ifcombine_ifandif (basic_block inner_cond_bb, bool inner_inv,
   return false;
 }
 
+/* Helper function for tree_ssa_ifcombine_bb.  Recognize a CFG pattern and
+   dispatch to the appropriate if-conversion helper for a particular
+   set of INNER_COND_BB, OUTER_COND_BB, THEN_BB and ELSE_BB.
+   PHI_PRED_BB should be one of INNER_COND_BB, THEN_BB or ELSE_BB.  */
+
+static bool
+tree_ssa_ifcombine_bb_1 (basic_block inner_cond_bb, basic_block outer_cond_bb,
+                        basic_block then_bb, basic_block else_bb,
+                        basic_block phi_pred_bb)
+{
+  /* The && form is characterized by a common else_bb with
+     the two edges leading to it mergable.  The latter is
+     guaranteed by matching PHI arguments in the else_bb and
+     the inner cond_bb having no side-effects.  */
+  if (phi_pred_bb != else_bb
+      && recognize_if_then_else (outer_cond_bb, &inner_cond_bb, &else_bb)
+      && same_phi_args_p (outer_cond_bb, phi_pred_bb, else_bb)
+      && bb_no_side_effects_p (inner_cond_bb))
+    {
+      /* We have
+          <outer_cond_bb>
+            if (q) goto inner_cond_bb; else goto else_bb;
+          <inner_cond_bb>
+            if (p) goto ...; else goto else_bb;
+            ...
+          <else_bb>
+            ...
+       */
+      return ifcombine_ifandif (inner_cond_bb, false, outer_cond_bb, false,
+                               false);
+    }
+
+  /* And a version where the outer condition is negated.  */
+  if (phi_pred_bb != else_bb
+      && recognize_if_then_else (outer_cond_bb, &else_bb, &inner_cond_bb)
+      && same_phi_args_p (outer_cond_bb, phi_pred_bb, else_bb)
+      && bb_no_side_effects_p (inner_cond_bb))
+    {
+      /* We have
+          <outer_cond_bb>
+            if (q) goto else_bb; else goto inner_cond_bb;
+          <inner_cond_bb>
+            if (p) goto ...; else goto else_bb;
+            ...
+          <else_bb>
+            ...
+       */
+      return ifcombine_ifandif (inner_cond_bb, false, outer_cond_bb, true,
+                               false);
+    }
+
+  /* The || form is characterized by a common then_bb with the
+     two edges leading to it mergable.  The latter is guaranteed
+     by matching PHI arguments in the then_bb and the inner cond_bb
+     having no side-effects.  */
+  if (phi_pred_bb != then_bb
+      && recognize_if_then_else (outer_cond_bb, &then_bb, &inner_cond_bb)
+      && same_phi_args_p (outer_cond_bb, phi_pred_bb, then_bb)
+      && bb_no_side_effects_p (inner_cond_bb))
+    {
+      /* We have
+          <outer_cond_bb>
+            if (q) goto then_bb; else goto inner_cond_bb;
+          <inner_cond_bb>
+            if (q) goto then_bb; else goto ...;
+          <then_bb>
+            ...
+       */
+      return ifcombine_ifandif (inner_cond_bb, true, outer_cond_bb, true,
+                               true);
+    }
+
+  /* And a version where the outer condition is negated.  */
+  if (phi_pred_bb != then_bb
+      && recognize_if_then_else (outer_cond_bb, &inner_cond_bb, &then_bb)
+      && same_phi_args_p (outer_cond_bb, phi_pred_bb, then_bb)
+      && bb_no_side_effects_p (inner_cond_bb))
+    {
+      /* We have
+          <outer_cond_bb>
+            if (q) goto inner_cond_bb; else goto then_bb;
+          <inner_cond_bb>
+            if (q) goto then_bb; else goto ...;
+          <then_bb>
+            ...
+       */
+      return ifcombine_ifandif (inner_cond_bb, true, outer_cond_bb, false,
+                               true);
+    }
+
+  return false;
+}
+
 /* Recognize a CFG pattern and dispatch to the appropriate
    if-conversion helper.  We start with BB as the innermost
    worker basic-block.  Returns true if a transformation was done.  */
@@ -577,80 +704,33 @@ tree_ssa_ifcombine_bb (basic_block inner_cond_bb)
     {
       basic_block outer_cond_bb = single_pred (inner_cond_bb);
 
-      /* The && form is characterized by a common else_bb with
-        the two edges leading to it mergable.  The latter is
-        guaranteed by matching PHI arguments in the else_bb and
-        the inner cond_bb having no side-effects.  */
-      if (recognize_if_then_else (outer_cond_bb, &inner_cond_bb, &else_bb)
-         && same_phi_args_p (outer_cond_bb, inner_cond_bb, else_bb)
-         && bb_no_side_effects_p (inner_cond_bb))
-       {
-         /* We have
-              <outer_cond_bb>
-                if (q) goto inner_cond_bb; else goto else_bb;
-              <inner_cond_bb>
-                if (p) goto ...; else goto else_bb;
-                ...
-              <else_bb>
-                ...
-          */
-         return ifcombine_ifandif (inner_cond_bb, false, outer_cond_bb, false,
-                                   false);
-       }
+      if (tree_ssa_ifcombine_bb_1 (inner_cond_bb, outer_cond_bb,
+                                  then_bb, else_bb, inner_cond_bb))
+       return true;
 
-      /* And a version where the outer condition is negated.  */
-      if (recognize_if_then_else (outer_cond_bb, &else_bb, &inner_cond_bb)
-         && same_phi_args_p (outer_cond_bb, inner_cond_bb, else_bb)
-         && bb_no_side_effects_p (inner_cond_bb))
+      if (forwarder_block_to (else_bb, then_bb))
        {
-         /* We have
-              <outer_cond_bb>
-                if (q) goto else_bb; else goto inner_cond_bb;
-              <inner_cond_bb>
-                if (p) goto ...; else goto else_bb;
-                ...
-              <else_bb>
-                ...
-          */
-         return ifcombine_ifandif (inner_cond_bb, false, outer_cond_bb, true,
-                                   false);
+         /* Other possibilities for the && form, if else_bb is
+            empty forwarder block to then_bb.  Compared to the above simpler
+            forms this can be treated as if then_bb and else_bb were swapped,
+            and the corresponding inner_cond_bb not inverted because of that.
+            For same_phi_args_p we look at equality of arguments between
+            edge from outer_cond_bb and the forwarder block.  */
+         if (tree_ssa_ifcombine_bb_1 (inner_cond_bb, outer_cond_bb, else_bb,
+                                      then_bb, else_bb))
+           return true;
        }
-
-      /* The || form is characterized by a common then_bb with the
-        two edges leading to it mergable.  The latter is guaranteed
-         by matching PHI arguments in the then_bb and the inner cond_bb
-        having no side-effects.  */
-      if (recognize_if_then_else (outer_cond_bb, &then_bb, &inner_cond_bb)
-         && same_phi_args_p (outer_cond_bb, inner_cond_bb, then_bb)
-         && bb_no_side_effects_p (inner_cond_bb))
+      else if (forwarder_block_to (then_bb, else_bb))
        {
-         /* We have
-              <outer_cond_bb>
-                if (q) goto then_bb; else goto inner_cond_bb;
-              <inner_cond_bb>
-                if (q) goto then_bb; else goto ...;
-              <then_bb>
-                ...
-          */
-         return ifcombine_ifandif (inner_cond_bb, true, outer_cond_bb, true,
-                                   true);
-       }
-
-      /* And a version where the outer condition is negated.  */
-      if (recognize_if_then_else (outer_cond_bb, &inner_cond_bb, &then_bb)
-         && same_phi_args_p (outer_cond_bb, inner_cond_bb, then_bb)
-         && bb_no_side_effects_p (inner_cond_bb))
-       {
-         /* We have
-              <outer_cond_bb>
-                if (q) goto inner_cond_bb; else goto then_bb;
-              <inner_cond_bb>
-                if (q) goto then_bb; else goto ...;
-              <then_bb>
-                ...
-          */
-         return ifcombine_ifandif (inner_cond_bb, true, outer_cond_bb, false,
-                                   true);
+         /* Other possibilities for the || form, if then_bb is
+            empty forwarder block to else_bb.  Compared to the above simpler
+            forms this can be treated as if then_bb and else_bb were swapped,
+            and the corresponding inner_cond_bb not inverted because of that.
+            For same_phi_args_p we look at equality of arguments between
+            edge from outer_cond_bb and the forwarder block.  */
+         if (tree_ssa_ifcombine_bb_1 (inner_cond_bb, outer_cond_bb, else_bb,
+                                      then_bb, then_bb))
+           return true;
        }
     }
 
@@ -659,8 +739,35 @@ tree_ssa_ifcombine_bb (basic_block inner_cond_bb)
 
 /* Main entry for the tree if-conversion pass.  */
 
-static unsigned int
-tree_ssa_ifcombine (void)
+namespace {
+
+const pass_data pass_data_tree_ifcombine =
+{
+  GIMPLE_PASS, /* type */
+  "ifcombine", /* name */
+  OPTGROUP_NONE, /* optinfo_flags */
+  TV_TREE_IFCOMBINE, /* tv_id */
+  ( PROP_cfg | PROP_ssa ), /* properties_required */
+  0, /* properties_provided */
+  0, /* properties_destroyed */
+  0, /* todo_flags_start */
+  TODO_update_ssa, /* todo_flags_finish */
+};
+
+class pass_tree_ifcombine : public gimple_opt_pass
+{
+public:
+  pass_tree_ifcombine (gcc::context *ctxt)
+    : gimple_opt_pass (pass_data_tree_ifcombine, ctxt)
+  {}
+
+  /* opt_pass methods: */
+  virtual unsigned int execute (function *);
+
+}; // class pass_tree_ifcombine
+
+unsigned int
+pass_tree_ifcombine::execute (function *fun)
 {
   basic_block *bbs;
   bool cfg_changed = false;
@@ -677,7 +784,7 @@ tree_ssa_ifcombine (void)
      inner ones, and also that we do not try to visit a removed
      block.  This is opposite of PHI-OPT, because we cascade the
      combining rather than cascading PHIs. */
-  for (i = n_basic_blocks - NUM_FIXED_BLOCKS - 1; i >= 0; i--)
+  for (i = n_basic_blocks_for_fn (fun) - NUM_FIXED_BLOCKS - 1; i >= 0; i--)
     {
       basic_block bb = bbs[i];
       gimple stmt = last_stmt (bb);
@@ -692,42 +799,6 @@ tree_ssa_ifcombine (void)
   return cfg_changed ? TODO_cleanup_cfg : 0;
 }
 
-static bool
-gate_ifcombine (void)
-{
-  return 1;
-}
-
-namespace {
-
-const pass_data pass_data_tree_ifcombine =
-{
-  GIMPLE_PASS, /* type */
-  "ifcombine", /* name */
-  OPTGROUP_NONE, /* optinfo_flags */
-  true, /* has_gate */
-  true, /* has_execute */
-  TV_TREE_IFCOMBINE, /* tv_id */
-  ( PROP_cfg | PROP_ssa ), /* properties_required */
-  0, /* properties_provided */
-  0, /* properties_destroyed */
-  0, /* todo_flags_start */
-  ( TODO_update_ssa | TODO_verify_ssa ), /* todo_flags_finish */
-};
-
-class pass_tree_ifcombine : public gimple_opt_pass
-{
-public:
-  pass_tree_ifcombine (gcc::context *ctxt)
-    : gimple_opt_pass (pass_data_tree_ifcombine, ctxt)
-  {}
-
-  /* opt_pass methods: */
-  bool gate () { return gate_ifcombine (); }
-  unsigned int execute () { return tree_ssa_ifcombine (); }
-
-}; // class pass_tree_ifcombine
-
 } // anon namespace
 
 gimple_opt_pass *