This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Lno branch merge part 3 -- ssa form updating improvements


Hello,

this patch adds a possibility to handle ssa form updating without need
to rewrite variables out of ssa form.  The idea is to allow to violate
the invariants of the ssa form temporarily and let a single ssa name
have several definitions.  A call to rewrite_ssa_into_ssa (running
standard ssa creation algorithm just over those ssa names) then
"repairs" the ssa form.

To show one of the applications, loop header copying is also modified in
this patch so that it no longer needs to rewrite any variables out of
ssa form.

Bootstrapped & regtested on i686.

Zdenek

	* tree-ssa-loop-ch.c: New file.
	* Makefile.in (tree-ssa-loop-ch.o): Add.
	(tree-into-ssa.o): Add GGC_H dependency.
	* tree-cfg.c (tree_duplicate_bb): Copy virtual arguments.
	* tree-flow.h (rewrite_into_ssa): Declaration changed.
	(rewrite_ssa_into_ssa, compute_global_livein, duplicate_ssa_name):
	Declare.
	* tree-into-ssa.c: Include ggc.h.
	(struct def_blocks_d): Add phi_blocks field.
	(struct mark_def_sites_global_data): Add names_to_rename field.
	(struct ssa_name_info): New.
	(compute_global_livein): Export.
	(set_def_block, insert_phi_nodes, mark_def_sites, set_livein_block,
	insert_phi_nodes_1, rewrite_finalize_block, insert_phi_nodes_for,
	register_new_def, get_reaching_def, def_blocks_free,
	get_def_blocks_for, rewrite_into_ssa): Modified to work with
	rewrite_ssa_into_ssa.
	(get_ssa_name_ann, get_phi_state, set_phi_state, get_current_def,
	set_current_def, ssa_mark_def_sites_initialize_block,
	ssa_mark_phi_uses, ssa_mark_def_sites, duplicate_ssa_name,
	ssa_register_new_def, ssa_rewrite_initialize_block,
	ssa_rewrite_phi_arguments, ssa_rewrite_finalize_block,
	ssa_rewrite_stmt, rewrite_ssa_into_ssa, rewrite_all_into_ssa): New
	functions.
	(pass_build_ssa): Call rewrite_all_into_ssa.
	* tree-optimize.c (execute_todo, execute_one_pass,
	tree_rest_of_compilation): Allocate vars_to_rename only once.
	* tree-ssa-dom.c (tree_ssa_dominator_optimize): Provide parameter
	to rewrite_into_ssa.
	* tree-ssa-loop.c (should_duplicate_loop_header_p,
	mark_defs_for_rewrite, duplicate_blocks, do_while_loop_p,
	copy_loop_headers, gate_ch, pass_ch): Moved to tree-ssa-loop-ch.c.
	Use rewrite_ssa_into_ssa.
	* tree-ssa-operands.c (copy_virtual_operands): New function.
	* tree-ssa-operands.h (copy_virtual_operands): Declare.
	* tree.h (struct tree_ssa_name): Add aux field.
	(SSA_NAME_AUX): New macro to access it.

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1298
diff -c -3 -p -r1.1298 Makefile.in
*** Makefile.in	14 Jun 2004 14:17:45 -0000	1.1298
--- Makefile.in	14 Jun 2004 22:23:45 -0000
*************** OBJS-common = \
*** 897,903 ****
   cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o		   \
   cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o	   \
   cfgrtl.o combine.o conflict.o convert.o coverage.o cse.o cselib.o 	   \
!  dbxout.o ddg.o								   \
   debug.o df.o diagnostic.o dojump.o dominance.o loop-doloop.o		   \
   dwarf2asm.o dwarf2out.o emit-rtl.o except.o explow.o loop-iv.o		   \
   expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o		   \
--- 897,903 ----
   cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o		   \
   cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o	   \
   cfgrtl.o combine.o conflict.o convert.o coverage.o cse.o cselib.o 	   \
!  dbxout.o ddg.o tree-ssa-loop-ch.o					   \
   debug.o df.o diagnostic.o dojump.o dominance.o loop-doloop.o		   \
   dwarf2asm.o dwarf2out.o emit-rtl.o except.o explow.o loop-iv.o		   \
   expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o		   \
*************** tree-ssa.o : tree-ssa.c $(TREE_FLOW_H) $
*** 1588,1594 ****
  tree-into-ssa.o : tree-into-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
     $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h diagnostic.h \
     errors.h toplev.h function.h $(TIMEVAR_H) tree-alias-common.h \
!    $(TM_H) coretypes.h $(TREE_DUMP_H) langhooks.h domwalk.h tree-pass.h
  tree-outof-ssa.o : tree-outof-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
     $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h diagnostic.h \
     errors.h toplev.h function.h $(TIMEVAR_H) tree-alias-common.h \
--- 1588,1595 ----
  tree-into-ssa.o : tree-into-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
     $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h diagnostic.h \
     errors.h toplev.h function.h $(TIMEVAR_H) tree-alias-common.h \
!    $(TM_H) coretypes.h $(TREE_DUMP_H) langhooks.h domwalk.h tree-pass.h \
!    $(GGC_H)
  tree-outof-ssa.o : tree-outof-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
     $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h diagnostic.h \
     errors.h toplev.h function.h $(TIMEVAR_H) tree-alias-common.h \
*************** tree-ssa-loop.o : tree-ssa-loop.c $(TREE
*** 1661,1666 ****
--- 1662,1671 ----
     $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) \
     output.h diagnostic.h $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
     tree-pass.h $(FLAGS_H) tree-inline.h
+ tree-ssa-loop-ch.o : tree-ssa-loop-ch.c $(TREE_FLOW_H) $(CONFIG_H) \
+    $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) tree-inline.h \
+    output.h diagnostic.h $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
+    tree-pass.h flags.h
  tree-ssa-alias.o : tree-ssa-alias.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
     $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) tree-inline.h $(FLAGS_H) \
     function.h $(TIMEVAR_H) tree-alias-common.h convert.h $(TM_H) coretypes.h \
Index: tree-cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-cfg.c,v
retrieving revision 2.10
diff -c -3 -p -r2.10 tree-cfg.c
*** tree-cfg.c	9 Jun 2004 17:00:29 -0000	2.10
--- tree-cfg.c	14 Jun 2004 22:23:45 -0000
*************** tree_duplicate_bb (basic_block bb)
*** 4212,4222 ****
    for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
      {
        tree stmt = bsi_stmt (bsi);
  
        if (TREE_CODE (stmt) == LABEL_EXPR)
  	continue;
  
!       bsi_insert_after (&bsi_tgt, unshare_expr (stmt), BSI_NEW_STMT);
      }
  
    return new_bb;
--- 4212,4229 ----
    for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
      {
        tree stmt = bsi_stmt (bsi);
+       tree copy;
  
        if (TREE_CODE (stmt) == LABEL_EXPR)
  	continue;
  
!       copy = unshare_expr (stmt);
! 
!       /* Copy also the virtual operands.  */
!       get_stmt_ann (copy);
!       copy_virtual_operands (copy, stmt);
!       
!       bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
      }
  
    return new_bb;
Index: tree-flow.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-flow.h,v
retrieving revision 2.8
diff -c -3 -p -r2.8 tree-flow.h
*** tree-flow.h	12 Jun 2004 00:18:31 -0000	2.8
--- tree-flow.h	14 Jun 2004 22:23:45 -0000
*************** extern void register_new_def (tree, varr
*** 564,570 ****
  extern void walk_use_def_chains (tree, walk_use_def_chains_fn, void *);
  
  /* In tree-into-ssa.c  */
! extern void rewrite_into_ssa (void);
  
  /* In tree-ssa-pre.c  */
  extern void tree_perform_ssapre (tree, enum tree_dump_index);
--- 564,574 ----
  extern void walk_use_def_chains (tree, walk_use_def_chains_fn, void *);
  
  /* In tree-into-ssa.c  */
! extern void rewrite_into_ssa (bool);
! extern void rewrite_ssa_into_ssa (bitmap);
! 
! void compute_global_livein (bitmap, bitmap);
! tree duplicate_ssa_name (tree, tree);
  
  /* In tree-ssa-pre.c  */
  extern void tree_perform_ssapre (tree, enum tree_dump_index);
Index: tree-into-ssa.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-into-ssa.c,v
retrieving revision 2.9
diff -c -3 -p -r2.9 tree-into-ssa.c
*** tree-into-ssa.c	10 Jun 2004 21:41:06 -0000	2.9
--- tree-into-ssa.c	14 Jun 2004 22:23:45 -0000
*************** Boston, MA 02111-1307, USA.  */
*** 47,52 ****
--- 47,53 ----
  #include "tree-pass.h"
  #include "cfgloop.h"
  #include "domwalk.h"
+ #include "ggc.h"
  
  /* This file builds the SSA form for a function as described in:
     R. Cytron, J. Ferrante, B. Rosen, M. Wegman, and K. Zadeck. Efficiently
*************** struct def_blocks_d
*** 66,71 ****
--- 67,75 ----
       Ith block contains a definition of VAR.  */
    bitmap def_blocks;
  
+   /* Blocks that contain a phi node for VAR. */
+   bitmap phi_blocks;
+ 
    /* Blocks where VAR is live-on-entry.  Similar semantics as
       DEF_BLOCKS.  */
    bitmap livein_blocks;
*************** struct mark_def_sites_global_data
*** 88,93 ****
--- 92,100 ----
       solely to avoid the overhead of allocating and deallocating
       the bitmap.  */
    sbitmap kills;
+ 
+   /* Bitmap of names to rename.  */
+   sbitmap names_to_rename;
  };
  
  struct rewrite_block_data
*************** struct rewrite_block_data
*** 95,100 ****
--- 102,119 ----
    varray_type block_defs;
  };
  
+ /* Information stored for ssa names.  */
+ 
+ struct ssa_name_info
+ {
+   /* This field indicates whether or not the variable may need PHI nodes.
+      See the enum's definition for more detailed information about the
+      states.  */
+   ENUM_BITFIELD (need_phi_state) need_phi_state : 2;
+ 
+   /* The actual definition of the ssa name.  */
+   tree current_def;
+ };
  
  /* Local functions.  */
  static void rewrite_finalize_block (struct dom_walk_data *, basic_block);
*************** static void mark_def_sites (struct dom_w
*** 106,116 ****
  			    basic_block bb, block_stmt_iterator);
  static void mark_def_sites_initialize_block (struct dom_walk_data *walk_data,
  					     basic_block bb);
! static void compute_global_livein (bitmap, bitmap);
! static void set_def_block (tree, basic_block);
  static void set_livein_block (tree, basic_block);
  static bool prepare_operand_for_rename (tree *op_p, size_t *uid_p, bool);
! static void insert_phi_nodes (bitmap *);
  static void rewrite_stmt (struct dom_walk_data *, basic_block,
  			  block_stmt_iterator);
  static inline void rewrite_operand (tree *);
--- 125,134 ----
  			    basic_block bb, block_stmt_iterator);
  static void mark_def_sites_initialize_block (struct dom_walk_data *walk_data,
  					     basic_block bb);
! static void set_def_block (tree, basic_block, bool, bool);
  static void set_livein_block (tree, basic_block);
  static bool prepare_operand_for_rename (tree *op_p, size_t *uid_p, bool);
! static void insert_phi_nodes (bitmap *, bitmap);
  static void rewrite_stmt (struct dom_walk_data *, basic_block,
  			  block_stmt_iterator);
  static inline void rewrite_operand (tree *);
*************** static inline struct def_blocks_d *get_d
*** 124,129 ****
--- 142,202 ----
  static inline struct def_blocks_d *find_def_blocks_for (tree);
  static void htab_statistics (FILE *, htab_t);
  
+ /* Get the information associated with NAME.  */
+ 
+ static inline struct ssa_name_info *
+ get_ssa_name_ann (tree name)
+ {
+   if (!SSA_NAME_AUX (name))
+     SSA_NAME_AUX (name) = xcalloc (1, sizeof (struct ssa_name_info));
+ 
+   return SSA_NAME_AUX (name);
+ }
+ 
+ /* Gets phi_state field for VAR.  */
+ 
+ static inline enum need_phi_state
+ get_phi_state (tree var)
+ {
+   if (TREE_CODE (var) == SSA_NAME)
+     return get_ssa_name_ann (var)->need_phi_state;
+   else
+     return var_ann (var)->need_phi_state;
+ }
+ 
+ /* Sets phi_state field for VAR to STATE.  */
+ 
+ static inline void
+ set_phi_state (tree var, enum need_phi_state state)
+ {
+   if (TREE_CODE (var) == SSA_NAME)
+     get_ssa_name_ann (var)->need_phi_state = state;
+   else
+     var_ann (var)->need_phi_state = state;
+ }
+ 
+ /* Return the current definition for VAR.  */
+ 
+ static inline tree
+ get_current_def (tree var)
+ {
+   if (TREE_CODE (var) == SSA_NAME)
+     return get_ssa_name_ann (var)->current_def;
+   else
+     return var_ann (var)->current_def;
+ }
+ 
+ /* Sets current definition of VAR to DEF.  */
+ 
+ static inline void
+ set_current_def (tree var, tree def)
+ {
+   if (TREE_CODE (var) == SSA_NAME)
+     get_ssa_name_ann (var)->current_def = def;
+   else
+     var_ann (var)->current_def = def;
+ }
+ 
  /* Compute global livein information given the set of blockx where
     an object is locally live at the start of the block (LIVEIN)
     and the set of blocks where the object is defined (DEF_BLOCKS).
*************** static void htab_statistics (FILE *, hta
*** 132,145 ****
     to include global livein (i.e., it modifies the underlying bitmap
     for LIVEIN).  */
  
! static void
  compute_global_livein (bitmap livein, bitmap def_blocks)
  {
    basic_block bb, *worklist, *tos;
    int i;
  
    tos = worklist
!     = (basic_block *) xmalloc (sizeof (basic_block) * (last_basic_block + 1));
  
    EXECUTE_IF_SET_IN_BITMAP (livein, 0, i,
      {
--- 205,218 ----
     to include global livein (i.e., it modifies the underlying bitmap
     for LIVEIN).  */
  
! void
  compute_global_livein (bitmap livein, bitmap def_blocks)
  {
    basic_block bb, *worklist, *tos;
    int i;
  
    tos = worklist
!     = (basic_block *) xmalloc (sizeof (basic_block) * (n_basic_blocks + 1));
  
    EXECUTE_IF_SET_IN_BITMAP (livein, 0, i,
      {
*************** mark_def_sites_initialize_block (struct 
*** 188,193 ****
--- 261,323 ----
    sbitmap_zero (kills);
  }
  
+ /* Block initialization routine for mark_def_sites.  Clear the 
+    KILLS bitmap at the start of each block.  */
+ 
+ static void
+ ssa_mark_def_sites_initialize_block (struct dom_walk_data *walk_data,
+ 				     basic_block bb)
+ {
+   struct mark_def_sites_global_data *gd = walk_data->global_data;
+   sbitmap kills = gd->kills;
+   tree phi, def;
+   unsigned def_uid;
+ 
+   sbitmap_zero (kills);
+ 
+   for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
+     {
+       def = PHI_RESULT (phi);
+       def_uid = SSA_NAME_VERSION (def);
+ 
+       if (!TEST_BIT (gd->names_to_rename, def_uid))
+ 	continue;
+ 
+       set_def_block (def, bb, true, true);
+       SET_BIT (kills, def_uid);
+     }
+ }
+ 
+ /* Marks ssa names used as arguments of phis at the end of BB.  */
+ 
+ static void
+ ssa_mark_phi_uses (struct dom_walk_data *walk_data, basic_block bb)
+ {
+   struct mark_def_sites_global_data *gd = walk_data->global_data;
+   sbitmap kills = gd->kills;
+   edge e;
+   tree phi, use;
+   unsigned uid;
+ 
+   for (e = bb->succ; e; e = e->succ_next)
+     {
+       if (e->dest == EXIT_BLOCK_PTR)
+ 	continue;
+ 
+       for (phi = phi_nodes (e->dest); phi; phi = TREE_CHAIN (phi))
+ 	{
+ 	  use = phi_element_for_edge (phi, e)->def;
+ 	  if (TREE_CODE (use) != SSA_NAME)
+ 	    continue;
+ 
+ 	  uid = SSA_NAME_VERSION (use);
+ 
+ 	  if (TEST_BIT (gd->names_to_rename, uid)
+ 	      && !TEST_BIT (kills, uid))
+ 	    set_livein_block (use, bb);
+ 	}
+     }
+ }
  
  /* Call back for walk_dominator_tree used to collect definition sites
     for every variable in the function.  For every statement S in block
*************** mark_def_sites (struct dom_walk_data *wa
*** 244,250 ****
      {
        tree *use_p = VUSE_OP_PTR (vuses, i);
  
!       if (prepare_operand_for_rename (use_p, &uid, true))
  	set_livein_block (*use_p, bb);
      }
  
--- 374,381 ----
      {
        tree *use_p = VUSE_OP_PTR (vuses, i);
  
!       if (prepare_operand_for_rename (use_p, &uid, true)
! 	  && !TEST_BIT (kills, uid))
  	set_livein_block (*use_p, bb);
      }
  
*************** mark_def_sites (struct dom_walk_data *wa
*** 265,271 ****
  	    V_MAY_DEF_RESULT (v_may_defs, i) = V_MAY_DEF_OP (v_may_defs, i);
  	    
            set_livein_block (V_MAY_DEF_OP (v_may_defs, i), bb);
! 	  set_def_block (V_MAY_DEF_RESULT (v_may_defs, i), bb);
  	}
      }
  
--- 396,402 ----
  	    V_MAY_DEF_RESULT (v_may_defs, i) = V_MAY_DEF_OP (v_may_defs, i);
  	    
            set_livein_block (V_MAY_DEF_OP (v_may_defs, i), bb);
! 	  set_def_block (V_MAY_DEF_RESULT (v_may_defs, i), bb, false, false);
  	}
      }
  
*************** mark_def_sites (struct dom_walk_data *wa
*** 277,283 ****
  
        if (prepare_operand_for_rename (def_p, &uid, false))
  	{
! 	  set_def_block (*def_p, bb);
  	  SET_BIT (kills, uid);
  	}
      }
--- 408,414 ----
  
        if (prepare_operand_for_rename (def_p, &uid, false))
  	{
! 	  set_def_block (*def_p, bb, false, false);
  	  SET_BIT (kills, uid);
  	}
      }
*************** mark_def_sites (struct dom_walk_data *wa
*** 291,319 ****
  
        if (prepare_operand_for_rename (def_p, &uid, false))
  	{
! 	  set_def_block (*def_p, bb);
  	  SET_BIT (kills, uid);
  	}
      }
  }
  
  
! /* Mark block BB as the definition site for variable VAR.  */
  
  static void
! set_def_block (tree var, basic_block bb)
  {
    struct def_blocks_d *db_p;
    enum need_phi_state state;
  
!   if (TREE_CODE (var) == SSA_NAME)
      var = SSA_NAME_VAR (var);
  
!   state = var_ann (var)->need_phi_state;
    db_p = get_def_blocks_for (var);
  
    /* Set the bit corresponding to the block where VAR is defined.  */
    bitmap_set_bit (db_p->def_blocks, bb->index);
  
    /* Keep track of whether or not we may need to insert phi nodes.
  
--- 422,556 ----
  
        if (prepare_operand_for_rename (def_p, &uid, false))
  	{
! 	  set_def_block (*def_p, bb, false, false);
  	  SET_BIT (kills, uid);
  	}
      }
  }
  
+ /* Ditto, but works over ssa names.  */
+ 
+ static void
+ ssa_mark_def_sites (struct dom_walk_data *walk_data,
+ 		    basic_block bb,
+ 		    block_stmt_iterator bsi)
+ {
+   struct mark_def_sites_global_data *gd = walk_data->global_data;
+   sbitmap kills = gd->kills;
+   v_may_def_optype v_may_defs;
+   v_must_def_optype v_must_defs;
+   vuse_optype vuses;
+   def_optype defs;
+   use_optype uses;
+   size_t i, uid, def_uid;
+   tree stmt, use, def;
+   stmt_ann_t ann;
+ 
+   /* Mark all the blocks that have definitions for each variable in the
+      names_to_rename bitmap.  */
+   stmt = bsi_stmt (bsi);
+   get_stmt_operands (stmt);
+   ann = stmt_ann (stmt);
+ 
+   /* If a variable is used before being set, then the variable is live
+      across a block boundary, so mark it live-on-entry to BB.  */
+   uses = USE_OPS (ann);
+   for (i = 0; i < NUM_USES (uses); i++)
+     {
+       use = USE_OP (uses, i);
+       uid = SSA_NAME_VERSION (use);
+ 
+       if (TEST_BIT (gd->names_to_rename, uid)
+ 	  && !TEST_BIT (kills, uid))
+ 	set_livein_block (use, bb);
+     }
+ 	  
+   /* Similarly for virtual uses.  */
+   vuses = VUSE_OPS (ann);
+   for (i = 0; i < NUM_VUSES (vuses); i++)
+     {
+       use = VUSE_OP (vuses, i);
+       uid = SSA_NAME_VERSION (use);
+ 
+       if (TEST_BIT (gd->names_to_rename, uid)
+ 	  && !TEST_BIT (kills, uid))
+ 	set_livein_block (use, bb);
+     }
+ 
+   v_may_defs = V_MAY_DEF_OPS (ann);
+   for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
+     {
+       use = V_MAY_DEF_OP (v_may_defs, i);
+       uid = SSA_NAME_VERSION (use);
  
!       if (TEST_BIT (gd->names_to_rename, uid)
! 	  && !TEST_BIT (kills, uid))
! 	set_livein_block (use, bb);
!     }
! 
!   /* Now process the definition made by this statement.  Mark the
!      variables in KILLS.  */
!   defs = DEF_OPS (ann);
!   for (i = 0; i < NUM_DEFS (defs); i++)
!     {
!       def = DEF_OP (defs, i);
!       def_uid = SSA_NAME_VERSION (def);
! 
!       if (TEST_BIT (gd->names_to_rename, def_uid))
! 	{
! 	  set_def_block (def, bb, false, true);
! 	  SET_BIT (kills, def_uid);
! 	}
!     }
! 
!   v_may_defs = V_MAY_DEF_OPS (ann);
!   for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
!     {
!       def = V_MAY_DEF_RESULT (v_may_defs, i);
!       def_uid = SSA_NAME_VERSION (def);
! 
!       if (TEST_BIT (gd->names_to_rename, def_uid))
! 	{
! 	  set_def_block (def, bb, false, true);
! 	  SET_BIT (kills, def_uid);
! 	}
!     }
! 
!   v_must_defs = V_MUST_DEF_OPS (ann);
!   for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
!     {
!       def = V_MUST_DEF_OP (v_must_defs, i);
!       def_uid = SSA_NAME_VERSION (def);
! 
!       if (TEST_BIT (gd->names_to_rename, def_uid))
! 	{
! 	  set_def_block (def, bb, false, true);
! 	  SET_BIT (kills, def_uid);
! 	}
!     }
! }
! 
! /* Mark block BB as the definition site for variable VAR.  PHI_P is true if
!    VAR is defined by a phi node.  SSA_P is true if we are called from
!    rewrite_ssa_into_ssa.  */
  
  static void
! set_def_block (tree var, basic_block bb, bool phi_p, bool ssa_p)
  {
    struct def_blocks_d *db_p;
    enum need_phi_state state;
  
!   if (!ssa_p
!       && TREE_CODE (var) == SSA_NAME)
      var = SSA_NAME_VAR (var);
  
!   state = get_phi_state (var);
    db_p = get_def_blocks_for (var);
  
    /* Set the bit corresponding to the block where VAR is defined.  */
    bitmap_set_bit (db_p->def_blocks, bb->index);
+   if (phi_p)
+     bitmap_set_bit (db_p->phi_blocks, bb->index);
  
    /* Keep track of whether or not we may need to insert phi nodes.
  
*************** set_def_block (tree var, basic_block bb)
*** 328,336 ****
       definition(s).  In this case we may need a PHI node, so enter
       state NEED_PHI_STATE_MAYBE.  */
    if (state == NEED_PHI_STATE_UNKNOWN)
!     var_ann (var)->need_phi_state = NEED_PHI_STATE_NO;
    else
!     var_ann (var)->need_phi_state = NEED_PHI_STATE_MAYBE;
  }
  
  
--- 565,573 ----
       definition(s).  In this case we may need a PHI node, so enter
       state NEED_PHI_STATE_MAYBE.  */
    if (state == NEED_PHI_STATE_UNKNOWN)
!     set_phi_state (var, NEED_PHI_STATE_NO);
    else
!     set_phi_state (var, NEED_PHI_STATE_MAYBE);
  }
  
  
*************** static void
*** 340,346 ****
  set_livein_block (tree var, basic_block bb)
  {
    struct def_blocks_d *db_p;
!   enum need_phi_state state = var_ann (var)->need_phi_state;
  
    db_p = get_def_blocks_for (var);
  
--- 577,583 ----
  set_livein_block (tree var, basic_block bb)
  {
    struct def_blocks_d *db_p;
!   enum need_phi_state state = get_phi_state (var);
  
    db_p = get_def_blocks_for (var);
  
*************** set_livein_block (tree var, basic_block 
*** 360,369 ****
        if (def_block_index == -1
  	  || ! dominated_by_p (CDI_DOMINATORS, bb,
  	                       BASIC_BLOCK (def_block_index)))
! 	var_ann (var)->need_phi_state = NEED_PHI_STATE_MAYBE;
      }
    else
!     var_ann (var)->need_phi_state = NEED_PHI_STATE_MAYBE;
  }
  
  
--- 597,606 ----
        if (def_block_index == -1
  	  || ! dominated_by_p (CDI_DOMINATORS, bb,
  	                       BASIC_BLOCK (def_block_index)))
! 	set_phi_state (var, NEED_PHI_STATE_MAYBE);
      }
    else
!     set_phi_state (var, NEED_PHI_STATE_MAYBE);
  }
  
  
*************** prepare_operand_for_rename (tree *op_p, 
*** 402,427 ****
  
  
  /* Helper for insert_phi_nodes.  If VAR needs PHI nodes, insert them
!    at the dominance frontier (DFS) of blocks defining VAR.  */
  
  static inline
  void insert_phi_nodes_1 (tree var, bitmap *dfs, varray_type *work_stack)
  {
!   var_ann_t ann = var_ann (var);
!   if (ann->need_phi_state != NEED_PHI_STATE_NO)
      insert_phi_nodes_for (var, dfs, work_stack);
  }
  
- 
  /* Insert PHI nodes at the dominance frontier of blocks with variable
     definitions.  DFS contains the dominance frontier information for
     the flowgraph.  PHI nodes will only be inserted at the dominance
     frontier of definition blocks for variables whose NEED_PHI_STATE
     annotation is marked as ``maybe'' or ``unknown'' (computed by
!    mark_def_sites).  */
  
  static void
! insert_phi_nodes (bitmap *dfs)
  {
    size_t i;
    varray_type work_stack;
--- 639,665 ----
  
  
  /* Helper for insert_phi_nodes.  If VAR needs PHI nodes, insert them
!    at the dominance frontier (DFS) of blocks defining VAR.
!    WORK_STACK is the varray used to implement the worklist of basic
!    blocks.  */
  
  static inline
  void insert_phi_nodes_1 (tree var, bitmap *dfs, varray_type *work_stack)
  {
!   if (get_phi_state (var) != NEED_PHI_STATE_NO)
      insert_phi_nodes_for (var, dfs, work_stack);
  }
  
  /* Insert PHI nodes at the dominance frontier of blocks with variable
     definitions.  DFS contains the dominance frontier information for
     the flowgraph.  PHI nodes will only be inserted at the dominance
     frontier of definition blocks for variables whose NEED_PHI_STATE
     annotation is marked as ``maybe'' or ``unknown'' (computed by
!    mark_def_sites).  If NAMES_TO_RENAME is not NULL, do the same but
!    for ssa name rewriting.  */
  
  static void
! insert_phi_nodes (bitmap *dfs, bitmap names_to_rename)
  {
    size_t i;
    varray_type work_stack;
*************** insert_phi_nodes (bitmap *dfs)
*** 430,448 ****
  
    /* Array WORK_STACK is a stack of CFG blocks.  Each block that contains
       an assignment or PHI node will be pushed to this stack.  */
!   VARRAY_BB_INIT (work_stack, last_basic_block, "work_stack");
  
    /* Iterate over all variables in VARS_TO_RENAME.  For each variable, add
       to the work list all the blocks that have a definition for the
       variable.  PHI nodes will be added to the dominance frontier blocks of
       each definition block.  */
!   if (vars_to_rename)
      EXECUTE_IF_SET_IN_BITMAP (vars_to_rename, 0, i,
  	insert_phi_nodes_1 (referenced_var (i), dfs, &work_stack));
    else
      for (i = 0; i < num_referenced_vars; i++)
        insert_phi_nodes_1 (referenced_var (i), dfs, &work_stack);
  
    timevar_pop (TV_TREE_INSERT_PHI_NODES);
  }
  
--- 668,696 ----
  
    /* Array WORK_STACK is a stack of CFG blocks.  Each block that contains
       an assignment or PHI node will be pushed to this stack.  */
!   VARRAY_GENERIC_PTR_NOGC_INIT (work_stack, last_basic_block, "work_stack");
  
    /* Iterate over all variables in VARS_TO_RENAME.  For each variable, add
       to the work list all the blocks that have a definition for the
       variable.  PHI nodes will be added to the dominance frontier blocks of
       each definition block.  */
!   if (names_to_rename)
!     {
!       EXECUTE_IF_SET_IN_BITMAP (names_to_rename, 0, i,
! 	{
! 	  if (ssa_name (i))
! 	    insert_phi_nodes_1 (ssa_name (i), dfs, &work_stack);
! 	});
!     }
!   else if (vars_to_rename)
      EXECUTE_IF_SET_IN_BITMAP (vars_to_rename, 0, i,
  	insert_phi_nodes_1 (referenced_var (i), dfs, &work_stack));
    else
      for (i = 0; i < num_referenced_vars; i++)
        insert_phi_nodes_1 (referenced_var (i), dfs, &work_stack);
  
+   VARRAY_FREE (work_stack);
+ 
    timevar_pop (TV_TREE_INSERT_PHI_NODES);
  }
  
*************** rewrite_initialize_block (struct dom_wal
*** 522,527 ****
--- 770,875 ----
      }
  }
  
+ /* Creates a duplicate of a ssa name NAME defined in statement STMT.  */
+ 
+ tree
+ duplicate_ssa_name (tree name, tree stmt)
+ {
+   tree new_name = make_ssa_name (SSA_NAME_VAR (name), stmt);
+   struct ptr_info_def *old_ptr_info = SSA_NAME_PTR_INFO (name);
+   struct ptr_info_def *new_ptr_info;
+ 
+   if (!old_ptr_info)
+     return new_name;
+ 
+   new_ptr_info = ggc_alloc (sizeof (struct ptr_info_def));
+   *new_ptr_info = *old_ptr_info;
+ 
+   if (old_ptr_info->pt_vars)
+     {
+       new_ptr_info->pt_vars = BITMAP_GGC_ALLOC ();
+       bitmap_copy (new_ptr_info->pt_vars, old_ptr_info->pt_vars);
+     }
+ 
+   SSA_NAME_PTR_INFO (new_name) = new_ptr_info;
+   return new_name;
+ }
+ 
+ /* Register DEF (an SSA_NAME) to be a new definition for the original
+    ssa name VAR and push VAR's current reaching definition
+    into the stack pointed by BLOCK_DEFS_P.  */
+ 
+ static void
+ ssa_register_new_def (tree var, tree def, varray_type *block_defs_p)
+ {
+   tree currdef;
+    
+   /* If this variable is set in a single basic block and all uses are
+      dominated by the set(s) in that single basic block, then there is
+      nothing to do.  TODO we should not be called at all, and just
+      keep the original name.  */
+   if (get_phi_state (var) == NEED_PHI_STATE_NO)
+     {
+       set_current_def (var, def);
+       return;
+     }
+ 
+   currdef = get_current_def (var);
+   if (! *block_defs_p)
+     VARRAY_TREE_INIT (*block_defs_p, 20, "block_defs");
+ 
+   /* Push the current reaching definition into *BLOCK_DEFS_P.  This stack is
+      later used by the dominator tree callbacks to restore the reaching
+      definitions for all the variables defined in the block after a recursive
+      visit to all its immediately dominated blocks.  */
+   VARRAY_PUSH_TREE (*block_defs_p, var);
+   VARRAY_PUSH_TREE (*block_defs_p, currdef);
+ 
+   /* Set the current reaching definition for VAR to be DEF.  */
+   set_current_def (var, def);
+ }
+ 
+ /* Ditto, for rewriting ssa names.  */
+ 
+ static void
+ ssa_rewrite_initialize_block (struct dom_walk_data *walk_data, basic_block bb)
+ {
+   tree phi, new_name;
+   struct rewrite_block_data *bd
+     = (struct rewrite_block_data *)VARRAY_TOP_GENERIC_PTR (walk_data->block_data_stack);
+   sbitmap names_to_rename = walk_data->global_data;
+   edge e;
+   bool abnormal_phi;
+ 
+   if (dump_file && (dump_flags & TDF_DETAILS))
+     fprintf (dump_file, "\n\nRenaming block #%d\n\n", bb->index);
+ 
+   for (e = bb->pred; e; e = e->pred_next)
+     if (e->flags & EDGE_ABNORMAL)
+       break;
+   abnormal_phi = (e != NULL);
+ 
+   /* Step 1.  Register new definitions for every PHI node in the block.
+      Conceptually, all the PHI nodes are executed in parallel and each PHI
+      node introduces a new version for the associated variable.  */
+   for (phi = phi_nodes (bb); phi; phi = TREE_CHAIN (phi))
+     {
+       tree result = PHI_RESULT (phi);
+ 
+       if (TEST_BIT (names_to_rename, SSA_NAME_VERSION (result)))
+ 	{
+ 	  new_name = duplicate_ssa_name (result, phi);
+ 	  PHI_RESULT (phi) = new_name;
+ 
+ 	  if (abnormal_phi)
+ 	    SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_name) = 1;
+ 	}
+       else
+ 	new_name = result;
+ 
+       ssa_register_new_def (result, new_name, &bd->block_defs);
+     }
+ }
  
  /* SSA Rewriting Step 3.  Visit all the successor blocks of BB looking for
     PHI nodes.  For every PHI node found, add a new argument containing the
*************** rewrite_add_phi_arguments (struct dom_wa
*** 554,559 ****
--- 902,939 ----
      }
  }
  
+ /* Ditto, for ssa name rewriting.  */
+ 
+ static void
+ ssa_rewrite_phi_arguments (struct dom_walk_data *walk_data, basic_block bb)
+ {
+   edge e;
+   sbitmap names_to_rename = walk_data->global_data;
+   tree *op;
+ 
+   for (e = bb->succ; e; e = e->succ_next)
+     {
+       tree phi;
+ 
+       if (e->dest == EXIT_BLOCK_PTR)
+ 	continue;
+ 
+       for (phi = phi_nodes (e->dest); phi; phi = TREE_CHAIN (phi))
+ 	{
+ 	  op = &phi_element_for_edge (phi, e)->def;
+ 	  if (TREE_CODE (*op) != SSA_NAME)
+ 	    continue;
+ 
+ 	  if (!TEST_BIT (names_to_rename, SSA_NAME_VERSION (*op)))
+ 	    continue;
+ 
+ 	  *op = get_reaching_def (*op);
+ 	  if (e->flags & EDGE_ABNORMAL)
+ 	    SSA_NAME_OCCURS_IN_ABNORMAL_PHI (*op) = 1;
+ 	}
+     }
+ }
+ 
  /* SSA Rewriting Step 5.  Restore the current reaching definition for each
     variable referenced in the block (in reverse order).  */
  
*************** rewrite_finalize_block (struct dom_walk_
*** 583,592 ****
  	  var = tmp;
  	}
  
!       var_ann (var)->current_def = saved_def;
      }
  }
  
  
  /* Dump SSA information to FILE.  */
  
--- 963,995 ----
  	  var = tmp;
  	}
  
!       set_current_def (var, saved_def);
      }
  }
  
+ /* Ditto, for rewriting ssa names.  */
+ 
+ static void
+ ssa_rewrite_finalize_block (struct dom_walk_data *walk_data,
+ 			    basic_block bb ATTRIBUTE_UNUSED)
+ {
+   struct rewrite_block_data *bd
+     = (struct rewrite_block_data *)VARRAY_TOP_GENERIC_PTR (walk_data->block_data_stack);
+ 
+   /* Step 5.  Restore the current reaching definition for each variable
+      referenced in the block (in reverse order).  */
+   while (bd->block_defs && VARRAY_ACTIVE_SIZE (bd->block_defs) > 0)
+     {
+       tree var;
+       tree saved_def = VARRAY_TOP_TREE (bd->block_defs);
+       VARRAY_POP (bd->block_defs);
+       
+       var = VARRAY_TOP_TREE (bd->block_defs);
+       VARRAY_POP (bd->block_defs);
+ 
+       set_current_def (var, saved_def);
+     }
+ }
  
  /* Dump SSA information to FILE.  */
  
*************** htab_statistics (FILE *file, htab_t htab
*** 654,660 ****
  
  
  /* Insert PHI nodes for variable VAR using the dominance frontier
!    information given in DFS.  */
  
  static void
  insert_phi_nodes_for (tree var, bitmap *dfs, varray_type *work_stack)
--- 1057,1064 ----
  
  
  /* Insert PHI nodes for variable VAR using the dominance frontier
!    information given in DFS.  WORK_STACK is the varray used to
!    implement the worklist of basic blocks.  */
  
  static void
  insert_phi_nodes_for (tree var, bitmap *dfs, varray_type *work_stack)
*************** insert_phi_nodes_for (tree var, bitmap *
*** 662,667 ****
--- 1066,1074 ----
    struct def_blocks_d *def_map;
    bitmap phi_insertion_points;
    int bb_index;
+   edge e;
+   tree phi;
+   basic_block bb;
  
    def_map = find_def_blocks_for (var);
    if (def_map == NULL)
*************** insert_phi_nodes_for (tree var, bitmap *
*** 671,677 ****
  
    EXECUTE_IF_SET_IN_BITMAP (def_map->def_blocks, 0, bb_index,
      {
!       VARRAY_PUSH_BB (*work_stack, BASIC_BLOCK (bb_index));
      });
  
    /* Pop a block off the worklist, add every block that appears in
--- 1078,1084 ----
  
    EXECUTE_IF_SET_IN_BITMAP (def_map->def_blocks, 0, bb_index,
      {
!       VARRAY_PUSH_GENERIC_PTR_NOGC (*work_stack, BASIC_BLOCK (bb_index));
      });
  
    /* Pop a block off the worklist, add every block that appears in
*************** insert_phi_nodes_for (tree var, bitmap *
*** 688,697 ****
       We now always use fully pruned SSA form.  */
    while (VARRAY_ACTIVE_SIZE (*work_stack) > 0)
      {
-       basic_block bb = VARRAY_TOP_BB (*work_stack);
-       int bb_index = bb->index;
        int dfs_index;
  
        VARRAY_POP (*work_stack);
        
        EXECUTE_IF_AND_COMPL_IN_BITMAP (dfs[bb_index],
--- 1095,1105 ----
       We now always use fully pruned SSA form.  */
    while (VARRAY_ACTIVE_SIZE (*work_stack) > 0)
      {
        int dfs_index;
  
+       bb = VARRAY_TOP_GENERIC_PTR_NOGC (*work_stack);
+       bb_index = bb->index;
+ 
        VARRAY_POP (*work_stack);
        
        EXECUTE_IF_AND_COMPL_IN_BITMAP (dfs[bb_index],
*************** insert_phi_nodes_for (tree var, bitmap *
*** 700,710 ****
  	{
  	  basic_block bb = BASIC_BLOCK (dfs_index);
  
! 	  VARRAY_PUSH_BB (*work_stack, bb);
  	  bitmap_set_bit (phi_insertion_points, dfs_index);
  	});
      }
  
    /* Now compute global livein for this variable.  Note this modifies
       def_map->livein_blocks.  */
    compute_global_livein (def_map->livein_blocks, def_map->def_blocks);
--- 1108,1122 ----
  	{
  	  basic_block bb = BASIC_BLOCK (dfs_index);
  
! 	  VARRAY_PUSH_GENERIC_PTR_NOGC (*work_stack, bb);
  	  bitmap_set_bit (phi_insertion_points, dfs_index);
  	});
      }
  
+   /* Remove the blocks where we already have the phis.  */
+   bitmap_operation (phi_insertion_points, phi_insertion_points,
+ 		    def_map->phi_blocks, BITMAP_AND_COMPL);
+ 
    /* Now compute global livein for this variable.  Note this modifies
       def_map->livein_blocks.  */
    compute_global_livein (def_map->livein_blocks, def_map->def_blocks);
*************** insert_phi_nodes_for (tree var, bitmap *
*** 712,720 ****
    /* And insert the PHI nodes.  */
    EXECUTE_IF_AND_IN_BITMAP (phi_insertion_points, def_map->livein_blocks,
  			    0, bb_index,
!     {
!       create_phi_node (var, BASIC_BLOCK (bb_index));
!     });
  
    BITMAP_XFREE (phi_insertion_points);
  }
--- 1124,1143 ----
    /* And insert the PHI nodes.  */
    EXECUTE_IF_AND_IN_BITMAP (phi_insertion_points, def_map->livein_blocks,
  			    0, bb_index,
!     do
!       {
! 	bb = BASIC_BLOCK (bb_index);
! 
! 	phi = create_phi_node (var, bb);
! 
! 	/* If we are rewriting ssa names, add also the phi arguments.  */
! 	if (TREE_CODE (var) == SSA_NAME)
! 	  {
! 	    for (e = bb->pred; e; e = e->pred_next)
! 	      add_phi_arg (&phi, var, e);
! 	  }
!       }
!     while (0));
  
    BITMAP_XFREE (phi_insertion_points);
  }
*************** rewrite_stmt (struct dom_walk_data *walk
*** 813,818 ****
--- 1236,1345 ----
      
  }
  
+ /* Ditto, for rewriting ssa names.  */
+ 
+ static void
+ ssa_rewrite_stmt (struct dom_walk_data *walk_data,
+ 		  basic_block bb ATTRIBUTE_UNUSED,
+ 		  block_stmt_iterator si)
+ {
+   size_t i;
+   stmt_ann_t ann;
+   tree stmt, var, *use_p;
+   vuse_optype vuses;
+   v_may_def_optype v_may_defs;
+   v_must_def_optype v_must_defs;
+   def_optype defs;
+   use_optype uses;
+   struct rewrite_block_data *bd;
+   sbitmap names_to_rename = walk_data->global_data;
+ 
+   bd = VARRAY_TOP_GENERIC_PTR (walk_data->block_data_stack);
+ 
+   stmt = bsi_stmt (si);
+   ann = stmt_ann (stmt);
+ 
+   if (dump_file && (dump_flags & TDF_DETAILS))
+     {
+       fprintf (dump_file, "Renaming statement ");
+       print_generic_stmt (dump_file, stmt, TDF_SLIM);
+       fprintf (dump_file, "\n");
+     }
+ 
+ #if defined ENABLE_CHECKING
+   /* We have just scanned the code for operands.  No statement should
+      be modified.  */
+   if (ann->modified)
+     abort ();
+ #endif
+ 
+   defs = DEF_OPS (ann);
+   uses = USE_OPS (ann);
+   vuses = VUSE_OPS (ann);
+   v_may_defs = V_MAY_DEF_OPS (ann);
+   v_must_defs = V_MUST_DEF_OPS (ann);
+ 
+   /* Step 1.  Rewrite USES and VUSES in the statement.  */
+   for (i = 0; i < NUM_USES (uses); i++)
+     {
+       use_p = USE_OP_PTR (uses, i);
+       if (TEST_BIT (names_to_rename, SSA_NAME_VERSION (*use_p)))
+ 	*use_p = get_reaching_def (*use_p);
+     }
+ 
+   /* Rewrite virtual uses in the statement.  */
+   for (i = 0; i < NUM_VUSES (vuses); i++)
+     {
+       use_p = VUSE_OP_PTR (vuses, i);
+       if (TEST_BIT (names_to_rename, SSA_NAME_VERSION (*use_p)))
+ 	*use_p = get_reaching_def (*use_p);
+     }
+ 
+   for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
+     {
+       use_p = V_MAY_DEF_OP_PTR (v_may_defs, i);
+       if (TEST_BIT (names_to_rename, SSA_NAME_VERSION (*use_p)))
+ 	*use_p = get_reaching_def (*use_p);
+     }
+ 
+   /* Step 2.  Register the statement's DEF and VDEF operands.  */
+   for (i = 0; i < NUM_DEFS (defs); i++)
+     {
+       tree *def_p = DEF_OP_PTR (defs, i);
+       var = *def_p;
+ 
+       if (!TEST_BIT (names_to_rename, SSA_NAME_VERSION (*def_p)))
+ 	continue;
+ 
+       *def_p = duplicate_ssa_name (var, stmt);
+       ssa_register_new_def (var, *def_p, &bd->block_defs);
+     }
+ 
+   /* Register new virtual definitions made by the statement.  */
+   for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
+     {
+       tree *def_p = V_MAY_DEF_RESULT_PTR (v_may_defs, i);
+       var = *def_p;
+ 
+       if (!TEST_BIT (names_to_rename, SSA_NAME_VERSION (*def_p)))
+ 	continue;
+ 
+       *def_p = duplicate_ssa_name (var, stmt);
+       ssa_register_new_def (var, *def_p, &bd->block_defs);
+     }
+ 
+   for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
+     {
+       tree *def_p = V_MUST_DEF_OP_PTR (v_must_defs, i);
+       var = *def_p;
+ 
+       if (!TEST_BIT (names_to_rename, SSA_NAME_VERSION (*def_p)))
+ 	continue;
+ 
+       *def_p = duplicate_ssa_name (var, stmt);
+       ssa_register_new_def (var, *def_p, &bd->block_defs);
+     }
+ }
  
  /* Replace the operand pointed by OP_P with its immediate reaching
     definition.  */
*************** rewrite_operand (tree *op_p)
*** 824,830 ****
      *op_p = get_reaching_def (*op_p);
  }
  
- 
  /* Register DEF (an SSA_NAME) to be a new definition for its underlying
     variable (SSA_NAME_VAR (DEF)) and push VAR's current reaching definition
     into the stack pointed by BLOCK_DEFS_P.  */
--- 1351,1356 ----
*************** register_new_def (tree def, varray_type 
*** 843,855 ****
       This is the same test to prune the set of variables which may
       need PHI nodes.  So we just use that information since it's already
       computed and available for us to use.  */
!   if (var_ann (var)->need_phi_state == NEED_PHI_STATE_NO)
      {
!       var_ann (var)->current_def = def;
        return;
      }
  
!   currdef = var_ann (var)->current_def;
    if (! *block_defs_p)
      VARRAY_TREE_INIT (*block_defs_p, 20, "block_defs");
  
--- 1369,1381 ----
       This is the same test to prune the set of variables which may
       need PHI nodes.  So we just use that information since it's already
       computed and available for us to use.  */
!   if (get_phi_state (var) == NEED_PHI_STATE_NO)
      {
!       set_current_def (var, def);
        return;
      }
  
!   currdef = get_current_def (var);
    if (! *block_defs_p)
      VARRAY_TREE_INIT (*block_defs_p, 20, "block_defs");
  
*************** register_new_def (tree def, varray_type 
*** 861,870 ****
    VARRAY_PUSH_TREE (*block_defs_p, currdef ? currdef : var);
  
    /* Set the current reaching definition for VAR to be DEF.  */
!   var_ann (var)->current_def = def;
  }
  
- 
  /* Return the current definition for variable VAR.  If none is found,
     create a new SSA name to act as the zeroth definition for VAR.  If VAR
     is call clobbered and there exists a more recent definition of
--- 1387,1395 ----
    VARRAY_PUSH_TREE (*block_defs_p, currdef ? currdef : var);
  
    /* Set the current reaching definition for VAR to be DEF.  */
!   set_current_def (var, def);
  }
  
  /* Return the current definition for variable VAR.  If none is found,
     create a new SSA name to act as the zeroth definition for VAR.  If VAR
     is call clobbered and there exists a more recent definition of
*************** register_new_def (tree def, varray_type 
*** 874,896 ****
  static tree
  get_reaching_def (tree var)
  {
!   tree default_d, currdef_var;
    
    /* Lookup the current reaching definition for VAR.  */
    default_d = NULL_TREE;
!   currdef_var = var_ann (var)->current_def;
  
    /* If there is no reaching definition for VAR, create and register a
       default definition for it (if needed).  */
    if (currdef_var == NULL_TREE)
      {
!       default_d = default_def (var);
        if (default_d == NULL_TREE)
  	{
! 	  default_d = make_ssa_name (var, build_empty_stmt ());
! 	  set_default_def (var, default_d);
  	}
!       var_ann (var)->current_def = default_d;
      }
  
    /* Return the current reaching definition for VAR, or the default
--- 1399,1426 ----
  static tree
  get_reaching_def (tree var)
  {
!   tree default_d, currdef_var, avar;
    
    /* Lookup the current reaching definition for VAR.  */
    default_d = NULL_TREE;
!   currdef_var = get_current_def (var);
  
    /* If there is no reaching definition for VAR, create and register a
       default definition for it (if needed).  */
    if (currdef_var == NULL_TREE)
      {
!       if (TREE_CODE (var) == SSA_NAME)
! 	avar = SSA_NAME_VAR (var);
!       else
! 	avar = var;
! 
!       default_d = default_def (avar);
        if (default_d == NULL_TREE)
  	{
! 	  default_d = make_ssa_name (avar, build_empty_stmt ());
! 	  set_default_def (avar, default_d);
  	}
!       set_current_def (var, default_d);
      }
  
    /* Return the current reaching definition for VAR, or the default
*************** def_blocks_free (void *p)
*** 922,927 ****
--- 1452,1458 ----
  {
    struct def_blocks_d *entry = p;
    BITMAP_XFREE (entry->def_blocks);
+   BITMAP_XFREE (entry->phi_blocks);
    BITMAP_XFREE (entry->livein_blocks);
    free (entry);
  }
*************** get_def_blocks_for (tree var)
*** 988,993 ****
--- 1519,1525 ----
        db_p = xmalloc (sizeof (*db_p));
        db_p->var = var;
        db_p->def_blocks = BITMAP_XMALLOC ();
+       db_p->phi_blocks = BITMAP_XMALLOC ();
        db_p->livein_blocks = BITMAP_XMALLOC ();
        *slot = (void *) db_p;
      }
*************** invalidate_name_tags (bitmap vars_to_ren
*** 1067,1088 ****
        (rewrite_stmt).
  
     Steps 3 and 5 are done using the dominator tree walker
!    (walk_dominator_tree).  */
  
  void
! rewrite_into_ssa (void)
  {
    bitmap *dfs;
    basic_block bb;
    struct dom_walk_data walk_data;
    struct mark_def_sites_global_data mark_def_sites_global_data;
!   unsigned int i;
    
    timevar_push (TV_TREE_SSA_OTHER);
  
!   /* Initialize the array of variables to rename.  */
!   if (vars_to_rename != NULL)
      {
        invalidate_name_tags (vars_to_rename);
  
        /* Now remove all the existing PHI nodes (if any) for the variables
--- 1599,1636 ----
        (rewrite_stmt).
  
     Steps 3 and 5 are done using the dominator tree walker
!    (walk_dominator_tree).
! 
!    ALL is true if all variables should be renamed (otherwise just those
!    mentioned in vars_to_rename are taken into account).  */
  
  void
! rewrite_into_ssa (bool all)
  {
    bitmap *dfs;
    basic_block bb;
    struct dom_walk_data walk_data;
    struct mark_def_sites_global_data mark_def_sites_global_data;
!   bitmap old_vars_to_rename = vars_to_rename;
!   unsigned i;
    
    timevar_push (TV_TREE_SSA_OTHER);
  
!   if (all)
!     vars_to_rename = NULL;
!   else
      {
+       /* Initialize the array of variables to rename.  */
+  
+       if (vars_to_rename == NULL)
+ 	abort ();
+ 
+       if (bitmap_first_set_bit (vars_to_rename) < 0)
+ 	{
+ 	  timevar_pop (TV_TREE_SSA_OTHER);
+ 	  return;
+ 	}
+       
        invalidate_name_tags (vars_to_rename);
  
        /* Now remove all the existing PHI nodes (if any) for the variables
*************** rewrite_into_ssa (void)
*** 1111,1117 ****
      }
  
    for (i = 0; i < num_referenced_vars; i++)
!     var_ann (referenced_var (i))->current_def = NULL;
  
    /* Ensure that the dominance information is OK.  */
    calculate_dominance_info (CDI_DOMINATORS);
--- 1659,1665 ----
      }
  
    for (i = 0; i < num_referenced_vars; i++)
!     set_current_def (referenced_var (i), NULL_TREE);
  
    /* Ensure that the dominance information is OK.  */
    calculate_dominance_info (CDI_DOMINATORS);
*************** rewrite_into_ssa (void)
*** 1153,1159 ****
    sbitmap_free (mark_def_sites_global_data.kills);
  
    /* Insert PHI nodes at dominance frontiers of definition blocks.  */
!   insert_phi_nodes (dfs);
  
    /* Rewrite all the basic blocks in the program.  */
    timevar_push (TV_TREE_SSA_REWRITE_BLOCKS);
--- 1701,1707 ----
    sbitmap_free (mark_def_sites_global_data.kills);
  
    /* Insert PHI nodes at dominance frontiers of definition blocks.  */
!   insert_phi_nodes (dfs, NULL);
  
    /* Rewrite all the basic blocks in the program.  */
    timevar_push (TV_TREE_SSA_REWRITE_BLOCKS);
*************** rewrite_into_ssa (void)
*** 1197,1210 ****
  
    htab_delete (def_blocks);
  
    timevar_pop (TV_TREE_SSA_OTHER);
  }
  
  struct tree_opt_pass pass_build_ssa = 
  {
    "ssa",				/* name */
    NULL,					/* gate */
!   rewrite_into_ssa,			/* execute */
    NULL,					/* sub */
    NULL,					/* next */
    0,					/* static_pass_number */
--- 1745,1914 ----
  
    htab_delete (def_blocks);
  
+   vars_to_rename = old_vars_to_rename;
    timevar_pop (TV_TREE_SSA_OTHER);
  }
  
+ /* The ssa names in NAMES_TO_RENAME may have more than one definition;
+    add phi nodes and rewrite them to fix this.  */
+ 
+ void
+ rewrite_ssa_into_ssa (bitmap names_to_rename)
+ {
+   bitmap *dfs;
+   basic_block bb;
+   struct dom_walk_data walk_data;
+   struct mark_def_sites_global_data mark_def_sites_global_data;
+   unsigned i;
+   sbitmap snames_to_rename;
+   tree name;
+   
+   if (bitmap_first_set_bit (names_to_rename) < 0)
+     return;
+ 
+   timevar_push (TV_TREE_SSA_OTHER);
+ 
+   /* Allocate memory for the DEF_BLOCKS hash table.  */
+   def_blocks = htab_create (num_ssa_names,
+ 			    def_blocks_hash, def_blocks_eq, def_blocks_free);
+ 
+   /* Initialize dominance frontier and immediate dominator bitmaps. 
+      Also count the number of predecessors for each block.  Doing so
+      can save significant time during PHI insertion for large graphs.  */
+   dfs = (bitmap *) xmalloc (last_basic_block * sizeof (bitmap *));
+   FOR_EACH_BB (bb)
+     {
+       edge e;
+       int count = 0;
+ 
+       for (e = bb->pred; e; e = e->pred_next)
+ 	count++;
+ 
+       bb_ann (bb)->num_preds = count;
+       dfs[bb->index] = BITMAP_XMALLOC ();
+     }
+ 
+   /* Ensure that the dominance information is OK.  */
+   calculate_dominance_info (CDI_DOMINATORS);
+ 
+   /* Compute dominance frontiers.  */
+   compute_dominance_frontiers (dfs);
+ 
+   /* Setup callbacks for the generic dominator tree walker to find and
+      mark definition sites.  */
+   walk_data.walk_stmts_backward = false;
+   walk_data.dom_direction = CDI_DOMINATORS;
+   walk_data.initialize_block_local_data = NULL;
+   walk_data.before_dom_children_before_stmts
+ 	  = ssa_mark_def_sites_initialize_block;
+   walk_data.before_dom_children_walk_stmts = ssa_mark_def_sites;
+   walk_data.before_dom_children_after_stmts = ssa_mark_phi_uses; 
+   walk_data.after_dom_children_before_stmts =  NULL;
+   walk_data.after_dom_children_walk_stmts =  NULL;
+   walk_data.after_dom_children_after_stmts =  NULL;
+ 
+   snames_to_rename = sbitmap_alloc (num_ssa_names);
+   sbitmap_zero (snames_to_rename);
+   EXECUTE_IF_SET_IN_BITMAP (names_to_rename, 0, i,
+ 			    SET_BIT (snames_to_rename, i));
+ 
+   mark_def_sites_global_data.kills = sbitmap_alloc (num_ssa_names);
+   mark_def_sites_global_data.names_to_rename = snames_to_rename;
+   walk_data.global_data = &mark_def_sites_global_data;
+ 
+   /* We do not have any local data.  */
+   walk_data.block_local_data_size = 0;
+ 
+   /* Initialize the dominator walker.  */
+   init_walk_dominator_tree (&walk_data);
+ 
+   /* Recursively walk the dominator tree.  */
+   walk_dominator_tree (&walk_data, ENTRY_BLOCK_PTR);
+ 
+   /* Finalize the dominator walker.  */
+   fini_walk_dominator_tree (&walk_data);
+ 
+   /* We no longer need this bitmap, clear and free it.  */
+   sbitmap_free (mark_def_sites_global_data.kills);
+ 
+   for (i = 0; i < num_ssa_names; i++)
+     if (ssa_name (i))
+       set_current_def (ssa_name (i), NULL_TREE);
+ 
+   /* Insert PHI nodes at dominance frontiers of definition blocks.  */
+   insert_phi_nodes (dfs, names_to_rename);
+ 
+   /* Rewrite all the basic blocks in the program.  */
+   timevar_push (TV_TREE_SSA_REWRITE_BLOCKS);
+ 
+   /* Setup callbacks for the generic dominator tree walker.  */
+   walk_data.walk_stmts_backward = false;
+   walk_data.dom_direction = CDI_DOMINATORS;
+   walk_data.initialize_block_local_data
+ 	  = rewrite_initialize_block_local_data;
+   walk_data.before_dom_children_before_stmts = ssa_rewrite_initialize_block;
+   walk_data.before_dom_children_walk_stmts = ssa_rewrite_stmt;
+   walk_data.before_dom_children_after_stmts = ssa_rewrite_phi_arguments;
+   walk_data.after_dom_children_before_stmts = NULL;
+   walk_data.after_dom_children_walk_stmts =  NULL;
+   walk_data.after_dom_children_after_stmts =  ssa_rewrite_finalize_block;
+   walk_data.global_data = snames_to_rename;
+   walk_data.block_local_data_size = sizeof (struct rewrite_block_data);
+ 
+   /* Initialize the dominator walker.  */
+   init_walk_dominator_tree (&walk_data);
+ 
+   /* Recursively walk the dominator tree rewriting each statement in
+      each basic block.  */
+   walk_dominator_tree (&walk_data, ENTRY_BLOCK_PTR);
+ 
+   /* Finalize the dominator walker.  */
+   fini_walk_dominator_tree (&walk_data);
+ 
+   sbitmap_free (snames_to_rename);
+ 
+   timevar_pop (TV_TREE_SSA_REWRITE_BLOCKS);
+ 
+   /* Debugging dumps.  */
+   if (dump_file && (dump_flags & TDF_STATS))
+     {
+       dump_dfa_stats (dump_file);
+       dump_tree_ssa_stats (dump_file);
+     }
+ 
+   /* Free allocated memory.  */
+   FOR_EACH_BB (bb)
+     BITMAP_XFREE (dfs[bb->index]);
+   free (dfs);
+ 
+   htab_delete (def_blocks);
+ 
+   for (i = 0; i < num_ssa_names; i++)
+     {
+       name = ssa_name (i);
+       if (!name
+ 	  || !SSA_NAME_AUX (name))
+ 	continue;
+ 
+       free (SSA_NAME_AUX (name));
+       SSA_NAME_AUX (name) = NULL;
+     }
+   timevar_pop (TV_TREE_SSA_OTHER);
+ }
+ 
+ /* Rewrites all variables into ssa.  */
+ 
+ static void
+ rewrite_all_into_ssa (void)
+ {
+   rewrite_into_ssa (true);
+ }
+ 
  struct tree_opt_pass pass_build_ssa = 
  {
    "ssa",				/* name */
    NULL,					/* gate */
!   rewrite_all_into_ssa,			/* execute */
    NULL,					/* sub */
    NULL,					/* next */
    0,					/* static_pass_number */
Index: tree-optimize.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-optimize.c,v
retrieving revision 2.16
diff -c -3 -p -r2.16 tree-optimize.c
*** tree-optimize.c	15 May 2004 23:07:52 -0000	2.16
--- tree-optimize.c	14 Jun 2004 22:23:45 -0000
*************** execute_todo (unsigned int flags)
*** 339,347 ****
  {
    if (flags & TODO_rename_vars)
      {
!       if (bitmap_first_set_bit (vars_to_rename) >= 0)
! 	rewrite_into_ssa ();
!       BITMAP_XFREE (vars_to_rename);
      }
  
    if ((flags & TODO_dump_func) && dump_file)
--- 339,346 ----
  {
    if (flags & TODO_rename_vars)
      {
!       rewrite_into_ssa (false);
!       bitmap_clear (vars_to_rename);
      }
  
    if ((flags & TODO_dump_func) && dump_file)
*************** execute_one_pass (struct tree_opt_pass *
*** 397,406 ****
    if (pass->tv_id)
      timevar_push (pass->tv_id);
  
-   /* If the pass is requesting ssa variable renaming, allocate the bitmap.  */
-   if (pass->todo_flags_finish & TODO_rename_vars)
-     vars_to_rename = BITMAP_XMALLOC ();
- 
    /* Do it!  */
    if (pass->execute)
      pass->execute ();
--- 396,401 ----
*************** tree_rest_of_compilation (tree fndecl, b
*** 526,531 ****
--- 521,529 ----
       This is a hack until the new folder is ready.  */
    in_gimple_form = true;
  
+   if (!vars_to_rename)
+     vars_to_rename = BITMAP_XMALLOC ();
+ 
    /* Perform all tree transforms and optimizations.  */
    execute_pass_list (all_passes);
  
Index: tree-ssa-dom.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-dom.c,v
retrieving revision 2.10
diff -c -3 -p -r2.10 tree-ssa-dom.c
*** tree-ssa-dom.c	10 Jun 2004 22:37:05 -0000	2.10
--- tree-ssa-dom.c	14 Jun 2004 22:23:46 -0000
*************** tree_ssa_dominator_optimize (void)
*** 620,626 ****
        if (cfg_altered
  	  && bitmap_first_set_bit (vars_to_rename) >= 0)
  	{
! 	  rewrite_into_ssa ();
  	  bitmap_clear (vars_to_rename);
  
  	  /* The into SSA translation may have created new SSA_NAMES whic
--- 620,626 ----
        if (cfg_altered
  	  && bitmap_first_set_bit (vars_to_rename) >= 0)
  	{
! 	  rewrite_into_ssa (false);
  	  bitmap_clear (vars_to_rename);
  
  	  /* The into SSA translation may have created new SSA_NAMES whic
Index: tree-ssa-loop-ch.c
===================================================================
RCS file: tree-ssa-loop-ch.c
diff -N tree-ssa-loop-ch.c
*** /dev/null	1 Jan 1970 00:00:00 -0000
--- tree-ssa-loop-ch.c	14 Jun 2004 22:23:46 -0000
***************
*** 0 ****
--- 1,350 ----
+ /* Loop header copying on trees.
+    Copyright (C) 2004 Free Software Foundation, Inc.
+    
+ This file is part of GCC.
+    
+ GCC is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 2, or (at your option) any
+ later version.
+    
+ GCC is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ for more details.
+    
+ You should have received a copy of the GNU General Public License
+ along with GCC; see the file COPYING.  If not, write to the Free
+ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA.  */
+ 
+ #include "config.h"
+ #include "system.h"
+ #include "coretypes.h"
+ #include "tm.h"
+ #include "tree.h"
+ #include "rtl.h"
+ #include "tm_p.h"
+ #include "hard-reg-set.h"
+ #include "basic-block.h"
+ #include "output.h"
+ #include "diagnostic.h"
+ #include "tree-flow.h"
+ #include "tree-dump.h"
+ #include "tree-pass.h"
+ #include "timevar.h"
+ #include "cfgloop.h"
+ #include "tree-inline.h"
+ #include "flags.h"
+ #include "tree-inline.h"
+ 
+ /* Duplicates headers of loops if they are small enough, so that the statements
+    in the loop body are always executed when the loop is entered.  This
+    increases effectivity of code motion optimizations, and reduces the need
+    for loop preconditioning.  */
+ 
+ /* Check whether we should duplicate HEADER of LOOP.  At most *LIMIT
+    instructions should be duplicated, limit is decreased by the actual
+    amount.  */
+ 
+ static bool
+ should_duplicate_loop_header_p (basic_block header, struct loop *loop,
+ 				int *limit)
+ {
+   block_stmt_iterator bsi;
+   tree last;
+ 
+   /* Do not copy one block more than once (we do not really want to do
+      loop peeling here).  */
+   if (header->aux)
+     return false;
+ 
+   if (!header->succ)
+     abort ();
+   if (!header->succ->succ_next)
+     return false;
+   if (header->succ->succ_next->succ_next)
+     return false;
+   if (flow_bb_inside_loop_p (loop, header->succ->dest)
+       && flow_bb_inside_loop_p (loop, header->succ->succ_next->dest))
+     return false;
+ 
+   /* If this is not the original loop header, we want it to have just
+      one predecessor in order to match the && pattern.  */
+   if (header != loop->header
+       && header->pred->pred_next)
+     return false;
+ 
+   last = last_stmt (header);
+   if (TREE_CODE (last) != COND_EXPR)
+     return false;
+ 
+   /* Approximately copy the conditions that used to be used in jump.c --
+      at most 20 insns and no calls.  */
+   for (bsi = bsi_start (header); !bsi_end_p (bsi); bsi_next (&bsi))
+     {
+       last = bsi_stmt (bsi);
+ 
+       if (TREE_CODE (last) == LABEL_EXPR)
+ 	continue;
+ 
+       if (get_call_expr_in (last))
+ 	return false;
+ 
+       *limit -= estimate_num_insns (last);
+       if (*limit < 0)
+ 	return false;
+     }
+ 
+   return true;
+ }
+ 
+ /* Marks variables defined in basic block BB for rewriting.  */
+ 
+ static void
+ mark_defs_for_rewrite (basic_block bb)
+ {
+   tree stmt, var;
+   block_stmt_iterator bsi;
+   stmt_ann_t ann;
+   def_optype defs;
+   v_may_def_optype v_may_defs;
+   v_must_def_optype v_must_defs;
+   unsigned i;
+ 
+   for (stmt = phi_nodes (bb); stmt; stmt = TREE_CHAIN (stmt))
+     {
+       var = PHI_RESULT (stmt);
+       bitmap_set_bit (vars_to_rename, SSA_NAME_VERSION (var));
+     }
+ 
+   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
+     {
+       stmt = bsi_stmt (bsi);
+       get_stmt_operands (stmt);
+       ann = stmt_ann (stmt);
+ 
+       defs = DEF_OPS (ann);
+       for (i = 0; i < NUM_DEFS (defs); i++)
+ 	{
+ 	  var = DEF_OP (defs, i);
+ 	  bitmap_set_bit (vars_to_rename, SSA_NAME_VERSION (var));
+ 	}
+ 
+       v_may_defs = V_MAY_DEF_OPS (ann);
+       for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
+ 	{
+ 	  var = V_MAY_DEF_RESULT (v_may_defs, i);
+ 	  bitmap_set_bit (vars_to_rename, SSA_NAME_VERSION (var));
+ 	}
+ 
+       v_must_defs = V_MUST_DEF_OPS (ann);
+       for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
+ 	{
+ 	  var = V_MUST_DEF_OP (v_must_defs, i);
+ 	  bitmap_set_bit (vars_to_rename, SSA_NAME_VERSION (var));
+ 	}
+     }
+ }
+ 
+ /* Duplicates destinations of edges in BBS_TO_DUPLICATE.  */
+ 
+ static void
+ duplicate_blocks (varray_type bbs_to_duplicate)
+ {
+   unsigned i;
+   edge preheader_edge, e, e1;
+   basic_block header, new_header;
+   tree phi, new_phi, var;
+ 
+   /* TODO: It should be quite easy to keep the dominance information
+      up-to-date.  */
+   free_dominance_info (CDI_DOMINATORS);
+ 
+   for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
+     {
+       preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
+       header = preheader_edge->dest;
+ 
+       /* It is sufficient to rewrite the definitions, since the uses of
+ 	 the operands defined outside of the duplicated basic block are
+ 	 still valid (every basic block that dominates the original block
+ 	 also dominates the duplicate).  */
+       mark_defs_for_rewrite (header);
+     }
+ 
+   for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
+     {
+       preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
+       header = preheader_edge->dest;
+ 
+       if (!header->aux)
+ 	abort ();
+       header->aux = NULL;
+ 
+       new_header = duplicate_block (header, preheader_edge);
+ 
+       /* Create the phi nodes on on entry to new_header.  */
+       for (phi = phi_nodes (header), var = PENDING_STMT (preheader_edge);
+ 	   phi;
+ 	   phi = TREE_CHAIN (phi), var = TREE_CHAIN (var))
+ 	{
+ 	  new_phi = create_phi_node (PHI_RESULT (phi), new_header);
+ 	  add_phi_arg (&new_phi, TREE_VALUE (var), preheader_edge);
+ 	}
+       PENDING_STMT (preheader_edge) = NULL;
+ 
+       /* Add the phi arguments to the outgoing edges.  */
+       for (e = header->succ; e; e = e->succ_next)
+ 	{
+ 	  for (e1 = new_header->succ; e1->dest != e->dest; e1 = e1->succ_next)
+ 	    continue;
+ 
+ 	  for (phi = phi_nodes (e->dest); phi; phi = TREE_CHAIN (phi))
+ 	    {
+ 	      tree def = phi_element_for_edge (phi, e)->def;
+ 	      add_phi_arg (&phi, def, e1);
+ 	    }
+ 	}
+     }
+ 
+   calculate_dominance_info (CDI_DOMINATORS);
+ 
+   rewrite_ssa_into_ssa (vars_to_rename);
+   bitmap_clear (vars_to_rename);
+ }
+ 
+ /* Checks whether LOOP is a do-while style loop.  */
+ 
+ static bool
+ do_while_loop_p (struct loop *loop)
+ {
+   tree stmt = last_stmt (loop->latch);
+ 
+   /* If the latch of the loop is not empty, it is not a do-while loop.  */
+   if (stmt
+       && TREE_CODE (stmt) != LABEL_EXPR)
+     return false;
+ 
+   /* If the header contains just a condition, it is not a do-while loop.  */
+   stmt = last_and_only_stmt (loop->header);
+   if (stmt
+       && TREE_CODE (stmt) == COND_EXPR)
+     return false;
+ 
+   return true;
+ }
+ 
+ /* For all loops, copy the condition at the end of the loop body in front
+    of the loop.  This is beneficial since it increases efficiency of
+    code motion optimizations.  It also saves one jump on entry to the loop.  */
+ 
+ static void
+ copy_loop_headers (void)
+ {
+   struct loops *loops;
+   unsigned i;
+   struct loop *loop;
+   basic_block header;
+   edge preheader_edge;
+   varray_type bbs_to_duplicate = NULL;
+ 
+   loops = loop_optimizer_init (dump_file);
+   if (!loops)
+     return;
+   
+   /* We do not try to keep the information about irreducible regions
+      up-to-date.  */
+   loops->state &= ~LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS;
+ 
+ #ifdef ENABLE_CHECKING
+   verify_loop_structure (loops);
+ #endif
+ 
+   for (i = 1; i < loops->num; i++)
+     {
+       /* Copy at most 20 insns.  */
+       int limit = 20;
+ 
+       loop = loops->parray[i];
+       preheader_edge = loop_preheader_edge (loop);
+       header = preheader_edge->dest;
+ 
+       /* If the loop is already a do-while style one (either because it was
+ 	 written as such, or because jump threading transformed it into one),
+ 	 we might be in fact peeling the first iteration of the loop.  This
+ 	 in general is not a good idea.  */
+       if (do_while_loop_p (loop))
+ 	continue;
+ 
+       /* Iterate the header copying up to limit; this takes care of the cases
+ 	 like while (a && b) {...}, where we want to have both of the conditions
+ 	 copied.  TODO -- handle while (a || b) - like cases, by not requiring
+ 	 the header to have just a single successor and copying up to
+ 	 postdominator. 
+ 	 
+ 	 We do not really copy the blocks immediately, so that we do not have
+ 	 to worry about updating loop structures, and also so that we do not
+ 	 have to rewrite variables out of and into ssa form for each block.
+ 	 Instead we just record the block into worklist and duplicate all of
+ 	 them at once.  */
+       while (should_duplicate_loop_header_p (header, loop, &limit))
+ 	{
+ 	  if (!bbs_to_duplicate)
+ 	    VARRAY_GENERIC_PTR_NOGC_INIT (bbs_to_duplicate, 10,
+ 					  "bbs_to_duplicate");
+ 	  VARRAY_PUSH_GENERIC_PTR_NOGC (bbs_to_duplicate, preheader_edge);
+ 	  header->aux = &header->aux;
+ 
+ 	  if (dump_file && (dump_flags & TDF_DETAILS))
+ 	    fprintf (dump_file,
+ 		     "Scheduled basic block %d for duplication.\n",
+ 		     header->index);
+ 
+ 	  /* Find a successor of header that is inside a loop; i.e. the new
+ 	     header after the condition is copied.  */
+ 	  if (flow_bb_inside_loop_p (loop, header->succ->dest))
+ 	    preheader_edge = header->succ;
+ 	  else
+ 	    preheader_edge = header->succ->succ_next;
+ 	  header = preheader_edge->dest;
+ 	}
+     }
+ 
+   loop_optimizer_finalize (loops, NULL);
+ 
+   if (bbs_to_duplicate)
+     {
+       duplicate_blocks (bbs_to_duplicate);
+       VARRAY_FREE (bbs_to_duplicate);
+     }
+ 
+   /* Run cleanup_tree_cfg here regardless of whether we have done anything, so
+      that we cleanup the blocks created in order to get the loops into a
+      canonical shape.  */
+   cleanup_tree_cfg ();
+ }
+ 
+ static bool
+ gate_ch (void)
+ {
+   return flag_tree_ch != 0;
+ }
+ 
+ struct tree_opt_pass pass_ch = 
+ {
+   "ch",					/* name */
+   gate_ch,				/* gate */
+   copy_loop_headers,			/* execute */
+   NULL,					/* sub */
+   NULL,					/* next */
+   0,					/* static_pass_number */
+   TV_TREE_CH,				/* tv_id */
+   PROP_cfg | PROP_ssa,			/* properties_required */
+   0,					/* properties_provided */
+   0,					/* properties_destroyed */
+   0,					/* todo_flags_start */
+   (TODO_dump_func
+    | TODO_verify_ssa)			/* todo_flags_finish */
+ };
+ 
Index: tree-ssa-loop.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-loop.c,v
retrieving revision 2.3
diff -c -3 -p -r2.3 tree-ssa-loop.c
*** tree-ssa-loop.c	10 Jun 2004 21:41:07 -0000	2.3
--- tree-ssa-loop.c	14 Jun 2004 22:23:46 -0000
*************** Software Foundation, 59 Temple Place - S
*** 39,373 ****
  #include "tree-inline.h"
  
  
- /* Check whether we should duplicate HEADER of LOOP.  At most *LIMIT
-    instructions should be duplicated, limit is decreased by the actual
-    amount.  */
- 
- static bool
- should_duplicate_loop_header_p (basic_block header, struct loop *loop,
- 				int *limit)
- {
-   block_stmt_iterator bsi;
-   tree last;
- 
-   /* Do not copy one block more than once (we do not really want to do
-      loop peeling here).  */
-   if (header->aux)
-     return false;
- 
-   if (!header->succ)
-     abort ();
-   if (!header->succ->succ_next)
-     return false;
-   if (header->succ->succ_next->succ_next)
-     return false;
-   if (flow_bb_inside_loop_p (loop, header->succ->dest)
-       && flow_bb_inside_loop_p (loop, header->succ->succ_next->dest))
-     return false;
- 
-   /* If this is not the original loop header, we want it to have just
-      one predecessor in order to match the && pattern.  */
-   if (header != loop->header
-       && header->pred->pred_next)
-     return false;
- 
-   last = last_stmt (header);
-   if (TREE_CODE (last) != COND_EXPR)
-     return false;
- 
-   /* Approximately copy the conditions that used to be used in jump.c --
-      at most 20 insns and no calls.  */
-   for (bsi = bsi_start (header); !bsi_end_p (bsi); bsi_next (&bsi))
-     {
-       last = bsi_stmt (bsi);
- 
-       if (TREE_CODE (last) == LABEL_EXPR)
- 	continue;
- 
-       if (get_call_expr_in (last))
- 	return false;
- 
-       *limit -= estimate_num_insns (last);
-       if (*limit < 0)
- 	return false;
-     }
- 
-   return true;
- }
- 
- /* Marks variables defined in basic block BB for rewriting.  */
- 
- static void
- mark_defs_for_rewrite (basic_block bb)
- {
-   tree stmt, var;
-   block_stmt_iterator bsi;
-   stmt_ann_t ann;
-   def_optype defs;
-   v_may_def_optype v_may_defs;
-   vuse_optype vuses;
-   v_must_def_optype v_must_defs;
-   unsigned i;
- 
-   for (stmt = phi_nodes (bb); stmt; stmt = TREE_CHAIN (stmt))
-     {
-       var = SSA_NAME_VAR (PHI_RESULT (stmt));
-       bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 
-       /* If we have a type_mem_tag, add it as well.  Due to rewriting the
- 	 variable out of ssa, we lose its name tag, so we use type_mem_tag
- 	 instead.  */
-       var = var_ann (var)->type_mem_tag;
-       if (var)
- 	bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
-     }
- 
-   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
-     {
-       stmt = bsi_stmt (bsi);
-       get_stmt_operands (stmt);
-       ann = stmt_ann (stmt);
- 
-       defs = DEF_OPS (ann);
-       for (i = 0; i < NUM_DEFS (defs); i++)
- 	{
- 	  var = SSA_NAME_VAR (DEF_OP (defs, i));
- 	  bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 
- 	  /* If we have a type_mem_tag, add it as well.  Due to rewriting the
- 	     variable out of ssa, we lose its name tag, so we use type_mem_tag
- 	     instead.  */
- 	  var = var_ann (var)->type_mem_tag;
- 	  if (var)
- 	    bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 	}
- 
-       v_may_defs = V_MAY_DEF_OPS (ann);
-       for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
- 	{
- 	  var = SSA_NAME_VAR (V_MAY_DEF_RESULT (v_may_defs, i));
- 	  bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 	}
- 	
-       v_must_defs = V_MUST_DEF_OPS (ann);
-       for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
- 	{
- 	  var = SSA_NAME_VAR (V_MUST_DEF_OP (v_must_defs, i));
- 	  bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 	}
- 
-       /* We also need to rewrite vuses, since we will copy the statements
- 	 and the ssa versions could not be recovered in the copy.  We do
- 	 not have to do this for operands of V_MAY_DEFS explicitly, since
- 	 they have the same underlying variable as the results.  */
-       vuses = VUSE_OPS (ann);
-       for (i = 0; i < NUM_VUSES (vuses); i++)
- 	{
- 	  var = SSA_NAME_VAR (VUSE_OP (vuses, i));
- 	  bitmap_set_bit (vars_to_rename, var_ann (var)->uid);
- 	}
-     }
- }
- 
- /* Duplicates destinations of edges in BBS_TO_DUPLICATE.  */
- 
- static void
- duplicate_blocks (varray_type bbs_to_duplicate)
- {
-   unsigned i;
-   edge preheader_edge, e, e1;
-   basic_block header, new_header;
-   tree phi;
-   size_t old_num_referenced_vars = num_referenced_vars;
- 
-   for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
-     {
-       preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
-       header = preheader_edge->dest;
- 
-       /* It is sufficient to rewrite the definitions, since the uses of
- 	 the operands defined outside of the duplicated basic block are
- 	 still valid (every basic block that dominates the original block
- 	 also dominates the duplicate).  */
-       mark_defs_for_rewrite (header);
-     }
- 
-   rewrite_vars_out_of_ssa (vars_to_rename);
- 
-   for (i = old_num_referenced_vars; i < num_referenced_vars; i++)
-     {
-       bitmap_set_bit (vars_to_rename, i);
-       var_ann (referenced_var (i))->out_of_ssa_tag = 0;
-     }
- 
-   for (i = 0; i < VARRAY_ACTIVE_SIZE (bbs_to_duplicate); i++)
-     {
-       preheader_edge = VARRAY_GENERIC_PTR_NOGC (bbs_to_duplicate, i);
-       header = preheader_edge->dest;
- 
-       /* We might have split the edge into the loop header when we have
- 	 eliminated the phi nodes, so find the edge to that we want to
- 	 copy the header.  */
-       while (!header->aux)
- 	{
- 	  preheader_edge = header->succ;
- 	  header = preheader_edge->dest;
- 	}
-       header->aux = NULL;
- 
-       new_header = duplicate_block (header, preheader_edge);
- 
-       /* Add the phi arguments to the outgoing edges.  */
-       for (e = header->succ; e; e = e->succ_next)
- 	{
- 	  for (e1 = new_header->succ; e1->dest != e->dest; e1 = e1->succ_next)
- 	    continue;
- 
- 	  for (phi = phi_nodes (e->dest); phi; phi = TREE_CHAIN (phi))
- 	    {
- 	      tree def = phi_element_for_edge (phi, e)->def;
- 	      add_phi_arg (&phi, def, e1);
- 	    }
- 	}
-     }
- }
- 
- /* Checks whether LOOP is a do-while style loop.  */
- 
- static bool
- do_while_loop_p (struct loop *loop)
- {
-   tree stmt = last_stmt (loop->latch);
- 
-   /* If the latch of the loop is not empty, it is not a do-while loop.  */
-   if (stmt
-       && TREE_CODE (stmt) != LABEL_EXPR)
-     return false;
- 
-   /* If the header contains just a condition, it is not a do-while loop.  */
-   stmt = last_and_only_stmt (loop->header);
-   if (stmt
-       && TREE_CODE (stmt) == COND_EXPR)
-     return false;
- 
-   return true;
- }
- 
- /* For all loops, copy the condition at the end of the loop body in front
-    of the loop.  This is beneficial since it increases effectivity of
-    code motion optimizations.  It also saves one jump on entry to the loop.  */
- 
- static void
- copy_loop_headers (void)
- {
-   struct loops *loops;
-   unsigned i;
-   struct loop *loop;
-   basic_block header;
-   edge preheader_edge;
-   varray_type bbs_to_duplicate = NULL;
- 
-   loops = loop_optimizer_init (dump_file);
-   if (!loops)
-     return;
-   
-   /* We are not going to need or update dominators.  */
-   free_dominance_info (CDI_DOMINATORS);
- 
-   create_preheaders (loops, CP_SIMPLE_PREHEADERS);
- 
-   /* We do not try to keep the information about irreducible regions
-      up-to-date.  */
-   loops->state &= ~LOOPS_HAVE_MARKED_IRREDUCIBLE_REGIONS;
- 
- #ifdef ENABLE_CHECKING
-   verify_loop_structure (loops);
- #endif
- 
-   for (i = 1; i < loops->num; i++)
-     {
-       /* Copy at most 20 insns.  */
-       int limit = 20;
- 
-       loop = loops->parray[i];
-       preheader_edge = loop_preheader_edge (loop);
-       header = preheader_edge->dest;
- 
-       /* If the loop is already a do-while style one (either because it was
- 	 written as such, or because jump threading transformed it into one),
- 	 we might be in fact peeling the first iteration of the loop.  This
- 	 in general is not a good idea.  */
-       if (do_while_loop_p (loop))
- 	continue;
- 
-       /* Iterate the header copying up to limit; this takes care of the cases
- 	 like while (a && b) {...}, where we want to have both of the conditions
- 	 copied.  TODO -- handle while (a || b) - like cases, by not requiring
- 	 the header to have just a single successor and copying up to
- 	 postdominator. 
- 	 
- 	 We do not really copy the blocks immediately, so that we do not have
- 	 to worry about updating loop structures, and also so that we do not
- 	 have to rewrite variables out of and into ssa form for each block.
- 	 Instead we just record the block into worklist and duplicate all of
- 	 them at once.  */
-       while (should_duplicate_loop_header_p (header, loop, &limit))
- 	{
- 	  if (!bbs_to_duplicate)
- 	    VARRAY_GENERIC_PTR_NOGC_INIT (bbs_to_duplicate, 10,
- 					  "bbs_to_duplicate");
- 	  VARRAY_PUSH_GENERIC_PTR_NOGC (bbs_to_duplicate, preheader_edge);
- 	  header->aux = &header->aux;
- 
- 	  if (dump_file && (dump_flags & TDF_DETAILS))
- 	    fprintf (dump_file,
- 		     "Scheduled basic block %d for duplication.\n",
- 		     header->index);
- 
- 	  /* Find a successor of header that is inside a loop; i.e. the new
- 	     header after the condition is copied.  */
- 	  if (flow_bb_inside_loop_p (loop, header->succ->dest))
- 	    preheader_edge = header->succ;
- 	  else
- 	    preheader_edge = header->succ->succ_next;
- 	  header = preheader_edge->dest;
- 	}
-     }
- 
-   loop_optimizer_finalize (loops, NULL);
- 
-   if (bbs_to_duplicate)
-     {
-       duplicate_blocks (bbs_to_duplicate);
-       VARRAY_FREE (bbs_to_duplicate);
-     }
- 
-   /* Run cleanup_tree_cfg here regardless of whether we have done anything, so
-      that we cleanup the blocks created in order to get the loops into a
-      canonical shape.  */
-   cleanup_tree_cfg ();
- }
- 
- static bool
- gate_ch (void)
- {
-   return flag_tree_ch != 0;
- }
- 
- struct tree_opt_pass pass_ch = 
- {
-   "ch",					/* name */
-   gate_ch,				/* gate */
-   copy_loop_headers,			/* execute */
-   NULL,					/* sub */
-   NULL,					/* next */
-   0,					/* static_pass_number */
-   TV_TREE_CH,				/* tv_id */
-   PROP_cfg | PROP_ssa,			/* properties_required */
-   0,					/* properties_provided */
-   0,					/* properties_destroyed */
-   0,					/* todo_flags_start */
-   (TODO_rename_vars
-    | TODO_dump_func
-    | TODO_verify_ssa)			/* todo_flags_finish */
- };
--- 39,41 ----
Index: tree-ssa-operands.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-operands.c,v
retrieving revision 2.7
diff -c -3 -p -r2.7 tree-ssa-operands.c
*** tree-ssa-operands.c	11 Jun 2004 21:29:46 -0000	2.7
--- tree-ssa-operands.c	14 Jun 2004 22:23:46 -0000
*************** add_call_read_ops (tree stmt, voperands_
*** 1478,1481 ****
--- 1478,1522 ----
      }
  }
  
+ /* Copies virtual operands from SRC to DST.  */
+ 
+ void
+ copy_virtual_operands (tree dst, tree src)
+ {
+   vuse_optype vuses = STMT_VUSE_OPS (src);
+   v_may_def_optype v_may_defs = STMT_V_MAY_DEF_OPS (src);
+   v_must_def_optype v_must_defs = STMT_V_MUST_DEF_OPS (src);
+   vuse_optype *vuses_new = &stmt_ann (dst)->vuse_ops;
+   v_may_def_optype *v_may_defs_new = &stmt_ann (dst)->v_may_def_ops;
+   v_must_def_optype *v_must_defs_new = &stmt_ann (dst)->v_must_def_ops;
+   unsigned i;
+ 
+   if (vuses)
+     {
+       *vuses_new = allocate_vuse_optype (NUM_VUSES (vuses));
+       for (i = 0; i < NUM_VUSES (vuses); i++)
+ 	*VUSE_OP_PTR (*vuses_new, i) = VUSE_OP (vuses, i);
+     }
+ 
+   if (v_may_defs)
+     {
+       *v_may_defs_new = allocate_v_may_def_optype (NUM_V_MAY_DEFS (v_may_defs));
+       for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
+ 	{
+ 	  *V_MAY_DEF_OP_PTR (*v_may_defs_new, i)
+ 		  = V_MAY_DEF_OP (v_may_defs, i);
+ 	  *V_MAY_DEF_RESULT_PTR (*v_may_defs_new, i)
+ 		  = V_MAY_DEF_RESULT (v_may_defs, i);
+ 	}
+     }
+ 
+   if (v_must_defs)
+     {
+       *v_must_defs_new = allocate_v_must_def_optype (NUM_V_MUST_DEFS (v_must_defs));
+       for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
+ 	*V_MUST_DEF_OP_PTR (*v_must_defs_new, i)
+ 		= V_MUST_DEF_OP (v_must_defs, i);
+     }
+ }
+ 
  #include "gt-tree-ssa-operands.h"
Index: tree-ssa-operands.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-operands.h,v
retrieving revision 2.2
diff -c -3 -p -r2.2 tree-ssa-operands.h
*** tree-ssa-operands.h	10 Jun 2004 21:41:07 -0000	2.2
--- tree-ssa-operands.h	14 Jun 2004 22:23:46 -0000
*************** extern void get_stmt_operands (tree);
*** 108,112 ****
--- 108,113 ----
  extern void remove_vuses (tree);
  extern void remove_v_may_defs (tree);
  extern void remove_v_must_defs (tree);
+ extern void copy_virtual_operands (tree, tree);
  
  #endif  /* GCC_TREE_SSA_OPERANDS_H  */
Index: tree.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree.h,v
retrieving revision 1.513
diff -c -3 -p -r1.513 tree.h
*** tree.h	14 Jun 2004 03:41:31 -0000	1.513
--- tree.h	14 Jun 2004 22:23:46 -0000
*************** struct tree_exp GTY(())
*** 1188,1193 ****
--- 1188,1197 ----
  #define SSA_NAME_VALUE(N) \
     SSA_NAME_CHECK (N)->ssa_name.value_handle
  
+ /* Auxiliary pass-specific data.  */
+ #define SSA_NAME_AUX(N) \
+    SSA_NAME_CHECK (N)->ssa_name.aux
+    
  #ifndef GCC_BITMAP_H
  struct bitmap_head_def;
  #endif
*************** struct tree_ssa_name GTY(())
*** 1230,1235 ****
--- 1234,1242 ----
  
    /* Value for SSA name used by GVN.  */ 
    tree GTY((skip)) value_handle;
+ 
+   /* Auxiliary information stored with the ssa name.  */
+   PTR GTY((skip)) aux;
  };
  
  /* In a PHI_NODE node.  */


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]