re PR tree-optimization/23133 (recip does not factor division by function parameter)
authorRichard Guenther <rguenther@suse.de>
Mon, 1 Aug 2005 08:58:25 +0000 (08:58 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 1 Aug 2005 08:58:25 +0000 (08:58 +0000)
2005-08-01  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/23133
* tree-ssa-math-opts.c (execute_cse_reciprocals): Walk
current functions parameter decls to find defs to cse
reciprocals of.

From-SVN: r102628

gcc/ChangeLog
gcc/tree-ssa-math-opts.c

index 07b3141f71eff9c26437d19a23f8f9f90e086415..a4818a44f709d4b65ca49c545b52f40461d484db 100644 (file)
@@ -1,3 +1,10 @@
+2005-08-01  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/23133
+       * tree-ssa-math-opts.c (execute_cse_reciprocals): Walk
+       current functions parameter decls to find defs to cse
+       reciprocals of.
+
 2005-08-01  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/23109
index bff3c1db21ab3014a603cf724824615a88a1db40..be2d75840fd75cc94686a7e3dab26ff8eb900a3c 100644 (file)
@@ -122,10 +122,20 @@ static void
 execute_cse_reciprocals (void)
 {
   basic_block bb;
+  tree arg;
 
   if (flag_trapping_math)
     calculate_dominance_info (CDI_POST_DOMINATORS);
 
+  if (single_succ_p (ENTRY_BLOCK_PTR))
+    for (arg = DECL_ARGUMENTS (cfun->decl); arg; arg = TREE_CHAIN (arg))
+      if (default_def (arg))
+       {
+         block_stmt_iterator bsi;
+         bsi = bsi_start (single_succ (ENTRY_BLOCK_PTR));
+          execute_cse_reciprocals_1 (&bsi, default_def (arg), false);
+       }
+
   FOR_EACH_BB (bb)
     {
       block_stmt_iterator bsi;
@@ -149,7 +159,7 @@ execute_cse_reciprocals (void)
          if (TREE_CODE (stmt) == MODIFY_EXPR
              && (def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF)) != NULL
              && FLOAT_TYPE_P (TREE_TYPE (def))
-             && is_gimple_reg (def))
+             && TREE_CODE (def) == SSA_NAME)
            execute_cse_reciprocals_1 (&bsi, def, false);
        }
     }