1 /* Convert a program in SSA form into Normal form.
2 Copyright (C) 2004 Free Software Foundation, Inc.
3 Contributed by Andrew Macleod <amacleod@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "coretypes.h"
31 #include "langhooks.h"
32 #include "hard-reg-set.h"
33 #include "basic-block.h"
38 #include "diagnostic.h"
40 #include "tree-flow.h"
41 #include "tree-gimple.h"
42 #include "tree-inline.h"
45 #include "tree-alias-common.h"
47 #include "tree-dump.h"
48 #include "tree-ssa-live.h"
49 #include "tree-pass.h"
51 /* Used to hold all the components required to do SSA PHI elimination.
52 The node and pred/succ list is a simple linear list of nodes and
53 edges represented as pairs of nodes.
55 The predecessor and successor list: Nodes are entered in pairs, where
56 [0] ->PRED, [1]->SUCC. All the even indexes in the array represent
57 predecessors, all the odd elements are successors.
60 When implemented as bitmaps, very large programs SSA->Normal times were
61 being dominated by clearing the interference graph.
63 Typically this list of edges is extremely small since it only includes
64 PHI results and uses from a single edge which have not coalesced with
65 each other. This means that no virtual PHI nodes are included, and
66 empirical evidence suggests that the number of edges rarely exceed
67 3, and in a bootstrap of GCC, the maximum size encountered was 7.
68 This also limits the number of possible nodes that are involved to
69 rarely more than 6, and in the bootstrap of gcc, the maximum number
70 of nodes encountered was 12. */
72 typedef struct _elim_graph
{
73 /* Size of the elimination vectors. */
76 /* List of nodes in the elimination graph. */
79 /* The predecessor and successor edge list. */
80 varray_type edge_list
;
85 /* Stack for visited nodes. */
88 /* The variable partition map. */
91 /* Edge being eliminated by this graph. */
94 /* List of constant copies to emit. These are pushed on in pairs. */
95 varray_type const_copies
;
99 /* Local functions. */
100 static tree
create_temp (tree
);
101 static void insert_copy_on_edge (edge
, tree
, tree
);
102 static elim_graph
new_elim_graph (int);
103 static inline void delete_elim_graph (elim_graph
);
104 static inline void clear_elim_graph (elim_graph
);
105 static inline int elim_graph_size (elim_graph
);
106 static inline void elim_graph_add_node (elim_graph
, tree
);
107 static inline void elim_graph_add_edge (elim_graph
, int, int);
108 static inline int elim_graph_remove_succ_edge (elim_graph
, int);
110 static inline void eliminate_name (elim_graph
, tree
);
111 static void eliminate_build (elim_graph
, basic_block
, int);
112 static void elim_forward (elim_graph
, int);
113 static int elim_unvisited_predecessor (elim_graph
, int);
114 static void elim_backward (elim_graph
, int);
115 static void elim_create (elim_graph
, int);
116 static void eliminate_phi (edge
, int, elim_graph
);
117 static tree_live_info_p
coalesce_ssa_name (var_map
, int);
118 static void assign_vars (var_map
);
119 static bool replace_use_variable (var_map
, use_operand_p
, tree
*);
120 static bool replace_def_variable (var_map
, def_operand_p
, tree
*);
121 static void eliminate_virtual_phis (void);
122 static void coalesce_abnormal_edges (var_map
, conflict_graph
, root_var_p
);
123 static void print_exprs (FILE *, const char *, tree
, const char *, tree
,
125 static void print_exprs_edge (FILE *, edge
, const char *, tree
, const char *,
129 /* Create a temporary variable based on the type of variable T. Use T's name
136 const char *name
= NULL
;
139 if (TREE_CODE (t
) == SSA_NAME
)
140 t
= SSA_NAME_VAR (t
);
142 if (TREE_CODE (t
) != VAR_DECL
143 && TREE_CODE (t
) != PARM_DECL
)
146 type
= TREE_TYPE (t
);
149 name
= IDENTIFIER_POINTER (tmp
);
153 tmp
= create_tmp_var (type
, name
);
154 DECL_ARTIFICIAL (tmp
) = DECL_ARTIFICIAL (t
);
155 add_referenced_tmp_var (tmp
);
157 /* add_referenced_tmp_var will create the annotation and set up some
158 of the flags in the annotation. However, some flags we need to
159 inherit from our original variable. */
160 var_ann (tmp
)->type_mem_tag
= var_ann (t
)->type_mem_tag
;
161 if (is_call_clobbered (t
))
162 mark_call_clobbered (tmp
);
168 /* This helper function fill insert a copy from a constant or variable SRC to
169 variable DEST on edge E. */
172 insert_copy_on_edge (edge e
, tree dest
, tree src
)
176 copy
= build (MODIFY_EXPR
, TREE_TYPE (dest
), dest
, src
);
179 if (TREE_CODE (src
) == ADDR_EXPR
)
180 src
= TREE_OPERAND (src
, 0);
181 if (TREE_CODE (src
) == VAR_DECL
|| TREE_CODE (src
) == PARM_DECL
)
184 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
187 "Inserting a copy on edge BB%d->BB%d :",
190 print_generic_expr (dump_file
, copy
, dump_flags
);
191 fprintf (dump_file
, "\n");
194 bsi_insert_on_edge (e
, copy
);
198 /* Create an elimination graph with SIZE nodes and associated data
202 new_elim_graph (int size
)
204 elim_graph g
= (elim_graph
) xmalloc (sizeof (struct _elim_graph
));
206 VARRAY_TREE_INIT (g
->nodes
, 30, "Elimination Node List");
207 VARRAY_TREE_INIT (g
->const_copies
, 20, "Elimination Constant Copies");
208 VARRAY_INT_INIT (g
->edge_list
, 20, "Elimination Edge List");
209 VARRAY_INT_INIT (g
->stack
, 30, " Elimination Stack");
211 g
->visited
= sbitmap_alloc (size
);
217 /* Empty elimination graph G. */
220 clear_elim_graph (elim_graph g
)
222 VARRAY_POP_ALL (g
->nodes
);
223 VARRAY_POP_ALL (g
->edge_list
);
227 /* Delete elimination graph G. */
230 delete_elim_graph (elim_graph g
)
232 sbitmap_free (g
->visited
);
237 /* Return the number of nodes in graph G. */
240 elim_graph_size (elim_graph g
)
242 return VARRAY_ACTIVE_SIZE (g
->nodes
);
246 /* Add NODE to graph G, if it doesn't exist already. */
249 elim_graph_add_node (elim_graph g
, tree node
)
252 for (x
= 0; x
< elim_graph_size (g
); x
++)
253 if (VARRAY_TREE (g
->nodes
, x
) == node
)
255 VARRAY_PUSH_TREE (g
->nodes
, node
);
259 /* Add the edge PRED->SUCC to graph G. */
262 elim_graph_add_edge (elim_graph g
, int pred
, int succ
)
264 VARRAY_PUSH_INT (g
->edge_list
, pred
);
265 VARRAY_PUSH_INT (g
->edge_list
, succ
);
269 /* Remove an edge from graph G for which NODE is the predecessor, and
270 return the successor node. -1 is returned if there is no such edge. */
273 elim_graph_remove_succ_edge (elim_graph g
, int node
)
277 for (x
= 0; x
< VARRAY_ACTIVE_SIZE (g
->edge_list
); x
+= 2)
278 if (VARRAY_INT (g
->edge_list
, x
) == node
)
280 VARRAY_INT (g
->edge_list
, x
) = -1;
281 y
= VARRAY_INT (g
->edge_list
, x
+ 1);
282 VARRAY_INT (g
->edge_list
, x
+ 1) = -1;
289 /* Find all the nodes in GRAPH which are successors to NODE in the
290 edge list. VAR will hold the partition number found. CODE is the
291 code fragment executed for every node found. */
293 #define FOR_EACH_ELIM_GRAPH_SUCC(GRAPH, NODE, VAR, CODE) \
297 for (x_ = 0; x_ < VARRAY_ACTIVE_SIZE ((GRAPH)->edge_list); x_ += 2) \
299 y_ = VARRAY_INT ((GRAPH)->edge_list, x_); \
302 (VAR) = VARRAY_INT ((GRAPH)->edge_list, x_ + 1); \
308 /* Find all the nodes which are predecessors of NODE in the edge list for
309 GRAPH. VAR will hold the partition number found. CODE is the
310 code fragment executed for every node found. */
312 #define FOR_EACH_ELIM_GRAPH_PRED(GRAPH, NODE, VAR, CODE) \
316 for (x_ = 0; x_ < VARRAY_ACTIVE_SIZE ((GRAPH)->edge_list); x_ += 2) \
318 y_ = VARRAY_INT ((GRAPH)->edge_list, x_ + 1); \
321 (VAR) = VARRAY_INT ((GRAPH)->edge_list, x_); \
327 /* Add T to elimination graph G. */
330 eliminate_name (elim_graph g
, tree T
)
332 elim_graph_add_node (g
, T
);
336 /* Build elimination graph G for basic block BB on incoming PHI edge I. */
339 eliminate_build (elim_graph g
, basic_block B
, int i
)
345 clear_elim_graph (g
);
347 for (phi
= phi_nodes (B
); phi
; phi
= PHI_CHAIN (phi
))
349 T0
= var_to_partition_to_var (g
->map
, PHI_RESULT (phi
));
351 /* Ignore results which are not in partitions. */
355 if (PHI_ARG_EDGE (phi
, i
) == g
->e
)
356 Ti
= PHI_ARG_DEF (phi
, i
);
359 /* On rare occasions, a PHI node may not have the arguments
360 in the same order as all of the other PHI nodes. If they don't
361 match, find the appropriate index here. */
362 pi
= phi_arg_from_edge (phi
, g
->e
);
365 Ti
= PHI_ARG_DEF (phi
, pi
);
368 /* If this argument is a constant, or a SSA_NAME which is being
369 left in SSA form, just queue a copy to be emitted on this
371 if (!phi_ssa_name_p (Ti
)
372 || (TREE_CODE (Ti
) == SSA_NAME
373 && var_to_partition (g
->map
, Ti
) == NO_PARTITION
))
375 /* Save constant copies until all other copies have been emitted
377 VARRAY_PUSH_TREE (g
->const_copies
, T0
);
378 VARRAY_PUSH_TREE (g
->const_copies
, Ti
);
382 Ti
= var_to_partition_to_var (g
->map
, Ti
);
385 eliminate_name (g
, T0
);
386 eliminate_name (g
, Ti
);
387 p0
= var_to_partition (g
->map
, T0
);
388 pi
= var_to_partition (g
->map
, Ti
);
389 elim_graph_add_edge (g
, p0
, pi
);
396 /* Push successors of T onto the elimination stack for G. */
399 elim_forward (elim_graph g
, int T
)
402 SET_BIT (g
->visited
, T
);
403 FOR_EACH_ELIM_GRAPH_SUCC (g
, T
, S
,
405 if (!TEST_BIT (g
->visited
, S
))
408 VARRAY_PUSH_INT (g
->stack
, T
);
412 /* Return 1 if there unvisited predecessors of T in graph G. */
415 elim_unvisited_predecessor (elim_graph g
, int T
)
418 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
,
420 if (!TEST_BIT (g
->visited
, P
))
426 /* Process predecessors first, and insert a copy. */
429 elim_backward (elim_graph g
, int T
)
432 SET_BIT (g
->visited
, T
);
433 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
,
435 if (!TEST_BIT (g
->visited
, P
))
437 elim_backward (g
, P
);
438 insert_copy_on_edge (g
->e
,
439 partition_to_var (g
->map
, P
),
440 partition_to_var (g
->map
, T
));
445 /* Insert required copies for T in graph G. Check for a strongly connected
446 region, and create a temporary to break the cycle if one is found. */
449 elim_create (elim_graph g
, int T
)
454 if (elim_unvisited_predecessor (g
, T
))
456 U
= create_temp (partition_to_var (g
->map
, T
));
457 insert_copy_on_edge (g
->e
, U
, partition_to_var (g
->map
, T
));
458 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
,
460 if (!TEST_BIT (g
->visited
, P
))
462 elim_backward (g
, P
);
463 insert_copy_on_edge (g
->e
, partition_to_var (g
->map
, P
), U
);
469 S
= elim_graph_remove_succ_edge (g
, T
);
472 SET_BIT (g
->visited
, T
);
473 insert_copy_on_edge (g
->e
,
474 partition_to_var (g
->map
, T
),
475 partition_to_var (g
->map
, S
));
481 /* Eliminate all the phi nodes on edge E in graph G. I is the usual PHI
482 index that edge E's values are found on. */
485 eliminate_phi (edge e
, int i
, elim_graph g
)
489 basic_block B
= e
->dest
;
491 #if defined ENABLE_CHECKING
494 if (VARRAY_ACTIVE_SIZE (g
->const_copies
) != 0)
498 /* Abnormal edges already have everything coalesced, or the coalescer
499 would have aborted. */
500 if (e
->flags
& EDGE_ABNORMAL
)
503 num_nodes
= num_var_partitions (g
->map
);
506 eliminate_build (g
, B
, i
);
508 if (elim_graph_size (g
) != 0)
510 sbitmap_zero (g
->visited
);
511 VARRAY_POP_ALL (g
->stack
);
513 for (x
= 0; x
< elim_graph_size (g
); x
++)
515 tree var
= VARRAY_TREE (g
->nodes
, x
);
516 int p
= var_to_partition (g
->map
, var
);
517 if (!TEST_BIT (g
->visited
, p
))
521 sbitmap_zero (g
->visited
);
522 while (VARRAY_ACTIVE_SIZE (g
->stack
) > 0)
524 x
= VARRAY_TOP_INT (g
->stack
);
525 VARRAY_POP (g
->stack
);
526 if (!TEST_BIT (g
->visited
, x
))
531 /* If there are any pending constant copies, issue them now. */
532 while (VARRAY_ACTIVE_SIZE (g
->const_copies
) > 0)
535 src
= VARRAY_TOP_TREE (g
->const_copies
);
536 VARRAY_POP (g
->const_copies
);
537 dest
= VARRAY_TOP_TREE (g
->const_copies
);
538 VARRAY_POP (g
->const_copies
);
539 insert_copy_on_edge (e
, dest
, src
);
544 /* Shortcut routine to print messages to file F of the form:
545 "STR1 EXPR1 STR2 EXPR2 STR3." */
548 print_exprs (FILE *f
, const char *str1
, tree expr1
, const char *str2
,
549 tree expr2
, const char *str3
)
551 fprintf (f
, "%s", str1
);
552 print_generic_expr (f
, expr1
, TDF_SLIM
);
553 fprintf (f
, "%s", str2
);
554 print_generic_expr (f
, expr2
, TDF_SLIM
);
555 fprintf (f
, "%s", str3
);
559 /* Shortcut routine to print abnormal edge messages to file F of the form:
560 "STR1 EXPR1 STR2 EXPR2 across edge E. */
563 print_exprs_edge (FILE *f
, edge e
, const char *str1
, tree expr1
,
564 const char *str2
, tree expr2
)
566 print_exprs (f
, str1
, expr1
, str2
, expr2
, " across an abnormal edge");
567 fprintf (f
, " from BB%d->BB%d\n", e
->src
->index
,
572 /* Coalesce partitions in MAP which are live across abnormal edges in GRAPH.
573 RV is the root variable groupings of the partitions in MAP. Since code
574 cannot be inserted on these edges, failure to coalesce something across
575 an abnormal edge is an error. */
578 coalesce_abnormal_edges (var_map map
, conflict_graph graph
, root_var_p rv
)
585 /* Code cannot be inserted on abnormal edges. Look for all abnormal
586 edges, and coalesce any PHI results with their arguments across
590 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
591 if (e
->dest
!= EXIT_BLOCK_PTR
&& e
->flags
& EDGE_ABNORMAL
)
592 for (phi
= phi_nodes (e
->dest
); phi
; phi
= PHI_CHAIN (phi
))
594 /* Visit each PHI on the destination side of this abnormal
595 edge, and attempt to coalesce the argument with the result. */
596 var
= PHI_RESULT (phi
);
597 x
= var_to_partition (map
, var
);
599 /* Ignore results which are not relevant. */
600 if (x
== NO_PARTITION
)
603 y
= phi_arg_from_edge (phi
, e
);
607 tmp
= PHI_ARG_DEF (phi
, y
);
608 if (!phi_ssa_name_p (tmp
))
610 print_exprs_edge (stderr
, e
,
611 "\nConstant argument in PHI. Can't insert :",
615 y
= var_to_partition (map
, tmp
);
616 if (x
== NO_PARTITION
|| y
== NO_PARTITION
)
618 if (root_var_find (rv
, x
) != root_var_find (rv
, y
))
620 print_exprs_edge (stderr
, e
, "\nDifferent root vars: ",
621 root_var (rv
, root_var_find (rv
, x
)),
623 root_var (rv
, root_var_find (rv
, y
)));
629 if (!conflict_graph_conflict_p (graph
, x
, y
))
631 /* Now map the partitions back to their real variables. */
632 var
= partition_to_var (map
, x
);
633 tmp
= partition_to_var (map
, y
);
635 && (dump_flags
& TDF_DETAILS
))
637 print_exprs_edge (dump_file
, e
,
638 "ABNORMAL: Coalescing ",
641 if (var_union (map
, var
, tmp
) == NO_PARTITION
)
643 print_exprs_edge (stderr
, e
, "\nUnable to coalesce",
644 partition_to_var (map
, x
), " and ",
645 partition_to_var (map
, y
));
648 conflict_graph_merge_regs (graph
, x
, y
);
652 print_exprs_edge (stderr
, e
, "\n Conflict ",
653 partition_to_var (map
, x
),
654 " and ", partition_to_var (map
, y
));
662 /* Reduce the number of live ranges in MAP. Live range information is
663 returned if FLAGS indicates that we are combining temporaries, otherwise
664 NULL is returned. The only partitions which are associated with actual
665 variables at this point are those which are forced to be coalesced for
666 various reason. (live on entry, live across abnormal edges, etc.). */
668 static tree_live_info_p
669 coalesce_ssa_name (var_map map
, int flags
)
675 tree_live_info_p liveinfo
;
677 conflict_graph graph
;
679 coalesce_list_p cl
= NULL
;
681 if (num_var_partitions (map
) <= 1)
684 /* If no preference given, use cheap coalescing of all partitions. */
685 if ((flags
& (SSANORM_COALESCE_PARTITIONS
| SSANORM_USE_COALESCE_LIST
)) == 0)
686 flags
|= SSANORM_COALESCE_PARTITIONS
;
688 liveinfo
= calculate_live_on_entry (map
);
689 calculate_live_on_exit (liveinfo
);
690 rv
= root_var_init (map
);
692 /* Remove single element variable from the list. */
693 root_var_compact (rv
);
695 if (flags
& SSANORM_USE_COALESCE_LIST
)
697 cl
= create_coalesce_list (map
);
699 /* Add all potential copies via PHI arguments to the list. */
702 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
704 tree res
= PHI_RESULT (phi
);
705 int p
= var_to_partition (map
, res
);
706 if (p
== NO_PARTITION
)
708 for (x
= 0; x
< PHI_NUM_ARGS (phi
); x
++)
710 tree arg
= PHI_ARG_DEF (phi
, x
);
713 if (TREE_CODE (arg
) != SSA_NAME
)
715 if (SSA_NAME_VAR (res
) != SSA_NAME_VAR (arg
))
717 p2
= var_to_partition (map
, PHI_ARG_DEF (phi
, x
));
718 if (p2
!= NO_PARTITION
)
719 add_coalesce (cl
, p
, p2
, 1);
724 /* Coalesce all the result decls together. */
727 for (x
= 0; x
< num_var_partitions (map
); x
++)
729 tree p
= partition_to_var (map
, x
);
730 if (TREE_CODE (SSA_NAME_VAR(p
)) == RESULT_DECL
)
732 if (var
== NULL_TREE
)
738 add_coalesce (cl
, i
, x
, 1);
743 /* Build a conflict graph. */
744 graph
= build_tree_conflict_graph (liveinfo
, rv
, cl
);
748 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
750 fprintf (dump_file
, "Before sorting:\n");
751 dump_coalesce_list (dump_file
, cl
);
754 sort_coalesce_list (cl
);
756 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
758 fprintf (dump_file
, "\nAfter sorting:\n");
759 dump_coalesce_list (dump_file
, cl
);
763 /* Put the single element variables back in. */
764 root_var_decompact (rv
);
766 /* First, coalesce all live on entry variables to their root variable.
767 This will ensure the first use is coming from the correct location. */
769 live
= sbitmap_alloc (num_var_partitions (map
));
772 /* Set 'live' vector to indicate live on entry partitions. */
773 num
= num_var_partitions (map
);
774 for (x
= 0 ; x
< num
; x
++)
776 var
= partition_to_var (map
, x
);
777 if (default_def (SSA_NAME_VAR (var
)) == var
)
781 if ((flags
& SSANORM_COMBINE_TEMPS
) == 0)
783 delete_tree_live_info (liveinfo
);
787 /* Assign root variable as partition representative for each live on entry
789 EXECUTE_IF_SET_IN_SBITMAP (live
, 0, x
,
791 var
= root_var (rv
, root_var_find (rv
, x
));
793 /* If these aren't already coalesced... */
794 if (partition_to_var (map
, x
) != var
)
796 if (ann
->out_of_ssa_tag
)
798 /* This root variable has already been assigned to another
799 partition which is not coalesced with this one. */
803 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
805 print_exprs (dump_file
, "Must coalesce ",
806 partition_to_var (map
, x
),
807 " with the root variable ", var
, ".\n");
810 change_partition_var (map
, var
, x
);
816 /* Coalesce partitions live across abnormal edges. */
817 coalesce_abnormal_edges (map
, graph
, rv
);
819 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
820 dump_var_map (dump_file
, map
);
822 /* Coalesce partitions. */
823 if (flags
& SSANORM_USE_COALESCE_LIST
)
824 coalesce_tpa_members (rv
, graph
, map
, cl
,
825 ((dump_flags
& TDF_DETAILS
) ? dump_file
829 if (flags
& SSANORM_COALESCE_PARTITIONS
)
830 coalesce_tpa_members (rv
, graph
, map
, NULL
,
831 ((dump_flags
& TDF_DETAILS
) ? dump_file
834 delete_coalesce_list (cl
);
835 root_var_delete (rv
);
836 conflict_graph_delete (graph
);
842 /* Take the ssa-name var_map MAP, and assign real variables to each
846 assign_vars (var_map map
)
853 rv
= root_var_init (map
);
857 /* Coalescing may already have forced some partitions to their root
858 variable. Find these and tag them. */
860 num
= num_var_partitions (map
);
861 for (x
= 0; x
< num
; x
++)
863 var
= partition_to_var (map
, x
);
864 if (TREE_CODE (var
) != SSA_NAME
)
866 /* Coalescing will already have verified that more than one
867 partition doesn't have the same root variable. Simply marked
868 the variable as assigned. */
870 ann
->out_of_ssa_tag
= 1;
871 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
873 fprintf (dump_file
, "partition %d has variable ", x
);
874 print_generic_expr (dump_file
, var
, TDF_SLIM
);
875 fprintf (dump_file
, " assigned to it.\n");
881 num
= root_var_num (rv
);
882 for (x
= 0; x
< num
; x
++)
884 var
= root_var (rv
, x
);
886 for (i
= root_var_first_partition (rv
, x
);
888 i
= root_var_next_partition (rv
, i
))
890 t
= partition_to_var (map
, i
);
892 if (t
== var
|| TREE_CODE (t
) != SSA_NAME
)
895 rep
= var_to_partition (map
, t
);
897 if (!ann
->out_of_ssa_tag
)
899 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
900 print_exprs (dump_file
, "", t
, " --> ", var
, "\n");
901 change_partition_var (map
, var
, rep
);
905 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
906 print_exprs (dump_file
, "", t
, " not coalesced with ", var
,
909 var
= create_temp (t
);
910 change_partition_var (map
, var
, rep
);
913 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
915 fprintf (dump_file
, " --> New temp: '");
916 print_generic_expr (dump_file
, var
, TDF_SLIM
);
917 fprintf (dump_file
, "'\n");
922 root_var_delete (rv
);
926 /* Replace use operand P with whatever variable it has been rewritten to based
927 on the partitions in MAP. EXPR is an optional expression vector over SSA
928 versions which is used to replace P with an expression instead of a variable.
929 If the stmt is changed, return true. */
932 replace_use_variable (var_map map
, use_operand_p p
, tree
*expr
)
935 tree var
= USE_FROM_PTR (p
);
937 /* Check if we are replacing this variable with an expression. */
940 int version
= SSA_NAME_VERSION (var
);
943 tree new_expr
= TREE_OPERAND (expr
[version
], 1);
944 SET_USE (p
, new_expr
);
945 /* Clear the stmt's RHS, or GC might bite us. */
946 TREE_OPERAND (expr
[version
], 1) = NULL_TREE
;
951 new_var
= var_to_partition_to_var (map
, var
);
954 SET_USE (p
, new_var
);
955 set_is_used (new_var
);
962 /* Replace def operand DEF_P with whatever variable it has been rewritten to
963 based on the partitions in MAP. EXPR is an optional expression vector over
964 SSA versions which is used to replace DEF_P with an expression instead of a
965 variable. If the stmt is changed, return true. */
968 replace_def_variable (var_map map
, def_operand_p def_p
, tree
*expr
)
971 tree var
= DEF_FROM_PTR (def_p
);
973 /* Check if we are replacing this variable with an expression. */
976 int version
= SSA_NAME_VERSION (var
);
979 tree new_expr
= TREE_OPERAND (expr
[version
], 1);
980 SET_DEF (def_p
, new_expr
);
981 /* Clear the stmt's RHS, or GC might bite us. */
982 TREE_OPERAND (expr
[version
], 1) = NULL_TREE
;
987 new_var
= var_to_partition_to_var (map
, var
);
990 SET_DEF (def_p
, new_var
);
991 set_is_used (new_var
);
998 /* Remove any PHI node which is a virtual PHI. */
1001 eliminate_virtual_phis (void)
1008 for (phi
= phi_nodes (bb
); phi
; phi
= next
)
1010 next
= PHI_CHAIN (phi
);
1011 if (!is_gimple_reg (SSA_NAME_VAR (PHI_RESULT (phi
))))
1013 #ifdef ENABLE_CHECKING
1015 /* There should be no arguments of this PHI which are in
1016 the partition list, or we get incorrect results. */
1017 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
1019 tree arg
= PHI_ARG_DEF (phi
, i
);
1020 if (TREE_CODE (arg
) == SSA_NAME
1021 && is_gimple_reg (SSA_NAME_VAR (arg
)))
1023 fprintf (stderr
, "Argument of PHI is not virtual (");
1024 print_generic_expr (stderr
, arg
, TDF_SLIM
);
1025 fprintf (stderr
, "), but the result is :");
1026 print_generic_stmt (stderr
, phi
, TDF_SLIM
);
1031 remove_phi_node (phi
, NULL_TREE
, bb
);
1038 /* This routine will coalesce variables in MAP of the same type which do not
1039 interfere with each other. LIVEINFO is the live range info for variables
1040 of interest. This will both reduce the memory footprint of the stack, and
1041 allow us to coalesce together local copies of globals and scalarized
1045 coalesce_vars (var_map map
, tree_live_info_p liveinfo
)
1052 conflict_graph graph
;
1054 cl
= create_coalesce_list (map
);
1056 /* Merge all the live on entry vectors for coalesced partitions. */
1057 for (x
= 0; x
< num_var_partitions (map
); x
++)
1059 var
= partition_to_var (map
, x
);
1060 p
= var_to_partition (map
, var
);
1062 live_merge_and_clear (liveinfo
, p
, x
);
1065 /* When PHI nodes are turned into copies, the result of each PHI node
1066 becomes live on entry to the block. Mark these now. */
1071 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
1073 p
= var_to_partition (map
, PHI_RESULT (phi
));
1075 /* Skip virtual PHI nodes. */
1076 if (p
== NO_PARTITION
)
1079 make_live_on_entry (liveinfo
, bb
, p
);
1081 /* Each argument is a potential copy operation. Add any arguments
1082 which are not coalesced to the result to the coalesce list. */
1083 for (x
= 0; x
< PHI_NUM_ARGS (phi
); x
++)
1085 arg
= PHI_ARG_DEF (phi
, x
);
1086 if (!phi_ssa_name_p (arg
))
1088 p2
= var_to_partition (map
, arg
);
1089 if (p2
== NO_PARTITION
)
1092 add_coalesce (cl
, p
, p2
, 1);
1098 /* Re-calculate live on exit info. */
1099 calculate_live_on_exit (liveinfo
);
1101 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1103 fprintf (dump_file
, "Live range info for variable memory coalescing.\n");
1104 dump_live_info (dump_file
, liveinfo
, LIVEDUMP_ALL
);
1106 fprintf (dump_file
, "Coalesce list from phi nodes:\n");
1107 dump_coalesce_list (dump_file
, cl
);
1111 tv
= type_var_init (map
);
1113 type_var_dump (dump_file
, tv
);
1114 type_var_compact (tv
);
1116 type_var_dump (dump_file
, tv
);
1118 graph
= build_tree_conflict_graph (liveinfo
, tv
, cl
);
1120 type_var_decompact (tv
);
1121 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1123 fprintf (dump_file
, "type var list now looks like:n");
1124 type_var_dump (dump_file
, tv
);
1126 fprintf (dump_file
, "Coalesce list after conflict graph build:\n");
1127 dump_coalesce_list (dump_file
, cl
);
1130 sort_coalesce_list (cl
);
1131 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1133 fprintf (dump_file
, "Coalesce list after sorting:\n");
1134 dump_coalesce_list (dump_file
, cl
);
1137 coalesce_tpa_members (tv
, graph
, map
, cl
,
1138 ((dump_flags
& TDF_DETAILS
) ? dump_file
: NULL
));
1140 type_var_delete (tv
);
1141 delete_coalesce_list (cl
);
1145 /* Temporary Expression Replacement (TER)
1147 Replace SSA version variables during out-of-ssa with their defining
1148 expression if there is only one use of the variable.
1150 A pass is made through the function, one block at a time. No cross block
1151 information is tracked.
1153 Variables which only have one use, and whose defining stmt is considered
1154 a replaceable expression (see check_replaceable) are entered into
1155 consideration by adding a list of dependent partitions to the version_info
1156 vector for that ssa_name_version. This information comes from the partition
1157 mapping for each USE. At the same time, the partition_dep_list vector for
1158 these partitions have this version number entered into their lists.
1160 When the use of a replaceable ssa_variable is encountered, the dependence
1161 list in version_info[] is moved to the "pending_dependence" list in case
1162 the current expression is also replaceable. (To be determined later in
1163 processing this stmt.) version_info[] for the version is then updated to
1164 point to the defining stmt and the 'replaceable' bit is set.
1166 Any partition which is defined by a statement 'kills' any expression which
1167 is dependent on this partition. Every ssa version in the partitions'
1168 dependence list is removed from future consideration.
1170 All virtual references are lumped together. Any expression which is
1171 dependent on any virtual variable (via a VUSE) has a dependence added
1172 to the special partition defined by VIRTUAL_PARTITION.
1174 Whenever a V_MAY_DEF is seen, all expressions dependent this
1175 VIRTUAL_PARTITION are removed from consideration.
1177 At the end of a basic block, all expression are removed from consideration
1178 in preparation for the next block.
1180 The end result is a vector over SSA_NAME_VERSION which is passed back to
1181 rewrite_out_of_ssa. As the SSA variables are being rewritten, instead of
1182 replacing the SSA_NAME tree element with the partition it was assigned,
1183 it is replaced with the RHS of the defining expression. */
1186 /* Dependancy list element. This can contain either a partition index or a
1187 version number, depending on which list it is in. */
1189 typedef struct value_expr_d
1192 struct value_expr_d
*next
;
1196 /* Temporary Expression Replacement (TER) table information. */
1198 typedef struct temp_expr_table_d
1201 void **version_info
;
1202 value_expr_p
*partition_dep_list
;
1204 bool saw_replaceable
;
1205 int virtual_partition
;
1206 bitmap partition_in_use
;
1207 value_expr_p free_list
;
1208 value_expr_p pending_dependence
;
1209 } *temp_expr_table_p
;
1211 /* Used to indicate a dependancy on V_MAY_DEFs. */
1212 #define VIRTUAL_PARTITION(table) (table->virtual_partition)
1214 static temp_expr_table_p
new_temp_expr_table (var_map
);
1215 static tree
*free_temp_expr_table (temp_expr_table_p
);
1216 static inline value_expr_p
new_value_expr (temp_expr_table_p
);
1217 static inline void free_value_expr (temp_expr_table_p
, value_expr_p
);
1218 static inline value_expr_p
find_value_in_list (value_expr_p
, int,
1220 static inline void add_value_to_list (temp_expr_table_p
, value_expr_p
*, int);
1221 static inline void add_info_to_list (temp_expr_table_p
, value_expr_p
*,
1223 static value_expr_p
remove_value_from_list (value_expr_p
*, int);
1224 static void add_dependance (temp_expr_table_p
, int, tree
);
1225 static bool check_replaceable (temp_expr_table_p
, tree
);
1226 static void finish_expr (temp_expr_table_p
, int, bool);
1227 static void mark_replaceable (temp_expr_table_p
, tree
);
1228 static inline void kill_expr (temp_expr_table_p
, int, bool);
1229 static inline void kill_virtual_exprs (temp_expr_table_p
, bool);
1230 static void find_replaceable_in_bb (temp_expr_table_p
, basic_block
);
1231 static tree
*find_replaceable_exprs (var_map
);
1232 static void dump_replaceable_exprs (FILE *, tree
*);
1235 /* Create a new TER table for MAP. */
1237 static temp_expr_table_p
1238 new_temp_expr_table (var_map map
)
1240 temp_expr_table_p t
;
1242 t
= (temp_expr_table_p
) xmalloc (sizeof (struct temp_expr_table_d
));
1245 t
->version_info
= xcalloc (num_ssa_names
+ 1, sizeof (void *));
1246 t
->partition_dep_list
= xcalloc (num_var_partitions (map
) + 1,
1247 sizeof (value_expr_p
));
1249 t
->replaceable
= BITMAP_XMALLOC ();
1250 t
->partition_in_use
= BITMAP_XMALLOC ();
1252 t
->saw_replaceable
= false;
1253 t
->virtual_partition
= num_var_partitions (map
);
1254 t
->free_list
= NULL
;
1255 t
->pending_dependence
= NULL
;
1261 /* Free TER table T. If there are valid replacements, return the expression
1265 free_temp_expr_table (temp_expr_table_p t
)
1270 #ifdef ENABLE_CHECKING
1272 for (x
= 0; x
<= num_var_partitions (t
->map
); x
++)
1273 if (t
->partition_dep_list
[x
] != NULL
)
1277 while ((p
= t
->free_list
))
1279 t
->free_list
= p
->next
;
1283 BITMAP_XFREE (t
->partition_in_use
);
1284 BITMAP_XFREE (t
->replaceable
);
1286 free (t
->partition_dep_list
);
1287 if (t
->saw_replaceable
)
1288 ret
= (tree
*)t
->version_info
;
1290 free (t
->version_info
);
1297 /* Allocate a new value list node. Take it from the free list in TABLE if
1300 static inline value_expr_p
1301 new_value_expr (temp_expr_table_p table
)
1304 if (table
->free_list
)
1306 p
= table
->free_list
;
1307 table
->free_list
= p
->next
;
1310 p
= (value_expr_p
) xmalloc (sizeof (struct value_expr_d
));
1316 /* Add value list node P to the free list in TABLE. */
1319 free_value_expr (temp_expr_table_p table
, value_expr_p p
)
1321 p
->next
= table
->free_list
;
1322 table
->free_list
= p
;
1326 /* Find VALUE if its in LIST. Return a pointer to the list object if found,
1327 else return NULL. If LAST_PTR is provided, it will point to the previous
1328 item upon return, or NULL if this is the first item in the list. */
1330 static inline value_expr_p
1331 find_value_in_list (value_expr_p list
, int value
, value_expr_p
*last_ptr
)
1334 value_expr_p last
= NULL
;
1336 for (curr
= list
; curr
; last
= curr
, curr
= curr
->next
)
1338 if (curr
->value
== value
)
1347 /* Add VALUE to LIST, if it isn't already present. TAB is the expression
1351 add_value_to_list (temp_expr_table_p tab
, value_expr_p
*list
, int value
)
1355 if (!find_value_in_list (*list
, value
, NULL
))
1357 info
= new_value_expr (tab
);
1358 info
->value
= value
;
1365 /* Add value node INFO if it's value isn't already in LIST. Free INFO if
1366 it is already in the list. TAB is the expression table. */
1369 add_info_to_list (temp_expr_table_p tab
, value_expr_p
*list
, value_expr_p info
)
1371 if (find_value_in_list (*list
, info
->value
, NULL
))
1372 free_value_expr (tab
, info
);
1381 /* Look for VALUE in LIST. If found, remove it from the list and return it's
1385 remove_value_from_list (value_expr_p
*list
, int value
)
1387 value_expr_p info
, last
;
1389 info
= find_value_in_list (*list
, value
, &last
);
1395 last
->next
= info
->next
;
1401 /* Add a dependancy between the def of ssa VERSION and VAR. if VAR is
1402 replaceable by an expression, add a dependance each of the elements of the
1403 expression. These are contained in the pending list. TAB is the
1404 expression table. */
1407 add_dependance (temp_expr_table_p tab
, int version
, tree var
)
1412 i
= SSA_NAME_VERSION (var
);
1413 if (bitmap_bit_p (tab
->replaceable
, i
))
1415 /* This variable is being substituted, so use whatever dependences
1416 were queued up when we marked this as replaceable earlier. */
1417 while ((info
= tab
->pending_dependence
))
1419 tab
->pending_dependence
= info
->next
;
1420 /* Get the partition this variable was dependent on. Reuse this
1421 object to represent the current expression instead. */
1423 info
->value
= version
;
1424 add_info_to_list (tab
, &(tab
->partition_dep_list
[x
]), info
);
1425 add_value_to_list (tab
,
1426 (value_expr_p
*)&(tab
->version_info
[version
]), x
);
1427 bitmap_set_bit (tab
->partition_in_use
, x
);
1432 i
= var_to_partition (tab
->map
, var
);
1433 #ifdef ENABLE_CHECKING
1434 if (i
== NO_PARTITION
)
1437 add_value_to_list (tab
, &(tab
->partition_dep_list
[i
]), version
);
1438 add_value_to_list (tab
,
1439 (value_expr_p
*)&(tab
->version_info
[version
]), i
);
1440 bitmap_set_bit (tab
->partition_in_use
, i
);
1445 /* Check if expression STMT is suitable for replacement in table TAB. If so,
1446 create an expression entry. Return true if this stmt is replaceable. */
1449 check_replaceable (temp_expr_table_p tab
, tree stmt
)
1452 vuse_optype vuseops
;
1456 int num_use_ops
, version
, i
;
1457 var_map map
= tab
->map
;
1459 if (TREE_CODE (stmt
) != MODIFY_EXPR
)
1462 ann
= stmt_ann (stmt
);
1463 defs
= DEF_OPS (ann
);
1465 /* Punt if there is more than 1 def, or more than 1 use. */
1466 if (NUM_DEFS (defs
) != 1)
1468 def
= DEF_OP (defs
, 0);
1469 if (version_ref_count (map
, def
) != 1)
1472 /* Assignments to variables assigned to hard registers are not
1474 if (DECL_HARD_REGISTER (SSA_NAME_VAR (def
)))
1477 /* There must be no V_MAY_DEFS. */
1478 if (NUM_V_MAY_DEFS (V_MAY_DEF_OPS (ann
)) != 0)
1481 /* There must be no V_MUST_DEFS. */
1482 if (NUM_V_MUST_DEFS (V_MUST_DEF_OPS (ann
)) != 0)
1485 /* Float expressions must go through memory if float-store is on. */
1486 if (flag_float_store
&& FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (stmt
, 1))))
1489 uses
= USE_OPS (ann
);
1490 num_use_ops
= NUM_USES (uses
);
1491 vuseops
= VUSE_OPS (ann
);
1493 /* Any expression which has no virtual operands and no real operands
1494 should have been propagated if it's possible to do anything with them.
1495 If this happens here, it probably exists that way for a reason, so we
1496 won't touch it. An example is:
1498 There are no virtual uses nor any real uses, so we just leave this
1499 alone to be safe. */
1501 if (num_use_ops
== 0 && NUM_VUSES (vuseops
) == 0)
1504 version
= SSA_NAME_VERSION (def
);
1506 /* Add this expression to the dependancy list for each use partition. */
1507 for (i
= 0; i
< num_use_ops
; i
++)
1509 var
= USE_OP (uses
, i
);
1510 add_dependance (tab
, version
, var
);
1513 /* If there are VUSES, add a dependence on virtual defs. */
1514 if (NUM_VUSES (vuseops
) != 0)
1516 add_value_to_list (tab
, (value_expr_p
*)&(tab
->version_info
[version
]),
1517 VIRTUAL_PARTITION (tab
));
1518 add_value_to_list (tab
,
1519 &(tab
->partition_dep_list
[VIRTUAL_PARTITION (tab
)]),
1521 bitmap_set_bit (tab
->partition_in_use
, VIRTUAL_PARTITION (tab
));
1528 /* This function will remove the expression for VERSION from replacement
1529 consideration.n table TAB If 'replace' is true, it is marked as
1530 replaceable, otherwise not. */
1533 finish_expr (temp_expr_table_p tab
, int version
, bool replace
)
1535 value_expr_p info
, tmp
;
1538 /* Remove this expression from its dependent lists. The partition dependance
1539 list is retained and transfered later to whomever uses this version. */
1540 for (info
= (value_expr_p
) tab
->version_info
[version
]; info
; info
= tmp
)
1542 partition
= info
->value
;
1543 #ifdef ENABLE_CHECKING
1544 if (tab
->partition_dep_list
[partition
] == NULL
)
1547 tmp
= remove_value_from_list (&(tab
->partition_dep_list
[partition
]),
1549 #ifdef ENABLE_CHECKING
1553 free_value_expr (tab
, tmp
);
1554 /* Only clear the bit when the dependancy list is emptied via
1555 a replacement. Otherwise kill_expr will take care of it. */
1556 if (!(tab
->partition_dep_list
[partition
]) && replace
)
1557 bitmap_clear_bit (tab
->partition_in_use
, partition
);
1560 free_value_expr (tab
, info
);
1565 tab
->saw_replaceable
= true;
1566 bitmap_set_bit (tab
->replaceable
, version
);
1570 #ifdef ENABLE_CHECKING
1571 if (bitmap_bit_p (tab
->replaceable
, version
))
1574 tab
->version_info
[version
] = NULL
;
1579 /* Mark the expression associated with VAR as replaceable, and enter
1580 the defining stmt into the version_info table TAB. */
1583 mark_replaceable (temp_expr_table_p tab
, tree var
)
1586 int version
= SSA_NAME_VERSION (var
);
1587 finish_expr (tab
, version
, true);
1589 /* Move the dependence list to the pending list. */
1590 if (tab
->version_info
[version
])
1592 info
= (value_expr_p
) tab
->version_info
[version
];
1593 for ( ; info
->next
; info
= info
->next
)
1595 info
->next
= tab
->pending_dependence
;
1596 tab
->pending_dependence
= (value_expr_p
)tab
->version_info
[version
];
1599 tab
->version_info
[version
] = SSA_NAME_DEF_STMT (var
);
1603 /* This function marks any expression in TAB which is dependent on PARTITION
1604 as NOT replaceable. CLEAR_BIT is used to determine whether partition_in_use
1605 should have its bit cleared. Since this routine can be called within an
1606 EXECUTE_IF_SET_IN_BITMAP, the bit can't always be cleared. */
1609 kill_expr (temp_expr_table_p tab
, int partition
, bool clear_bit
)
1613 /* Mark every active expr dependant on this var as not replaceable. */
1614 while ((ptr
= tab
->partition_dep_list
[partition
]) != NULL
)
1615 finish_expr (tab
, ptr
->value
, false);
1618 bitmap_clear_bit (tab
->partition_in_use
, partition
);
1622 /* This function kills all expressions in TAB which are dependant on virtual
1623 DEFs. CLEAR_BIT determines whether partition_in_use gets cleared. */
1626 kill_virtual_exprs (temp_expr_table_p tab
, bool clear_bit
)
1628 kill_expr (tab
, VIRTUAL_PARTITION (tab
), clear_bit
);
1632 /* This function processes basic block BB, and looks for variables which can
1633 be replaced by their expressions. Results are stored in TAB. */
1636 find_replaceable_in_bb (temp_expr_table_p tab
, basic_block bb
)
1638 block_stmt_iterator bsi
;
1641 int partition
, num
, i
;
1644 var_map map
= tab
->map
;
1647 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
1649 stmt
= bsi_stmt (bsi
);
1650 ann
= stmt_ann (stmt
);
1652 /* Determine if this stmt finishes an existing expression. */
1653 uses
= USE_OPS (ann
);
1654 num
= NUM_USES (uses
);
1655 for (i
= 0; i
< num
; i
++)
1657 def
= USE_OP (uses
, i
);
1658 if (tab
->version_info
[SSA_NAME_VERSION (def
)])
1660 /* Mark expression as replaceable unless stmt is volatile. */
1661 if (!ann
->has_volatile_ops
)
1662 mark_replaceable (tab
, def
);
1664 finish_expr (tab
, SSA_NAME_VERSION (def
), false);
1668 /* Next, see if this stmt kills off an active expression. */
1669 defs
= DEF_OPS (ann
);
1670 num
= NUM_DEFS (defs
);
1671 for (i
= 0; i
< num
; i
++)
1673 def
= DEF_OP (defs
, i
);
1674 partition
= var_to_partition (map
, def
);
1675 if (partition
!= NO_PARTITION
&& tab
->partition_dep_list
[partition
])
1676 kill_expr (tab
, partition
, true);
1679 /* Now see if we are creating a new expression or not. */
1680 if (!ann
->has_volatile_ops
)
1681 check_replaceable (tab
, stmt
);
1683 /* Free any unused dependancy lists. */
1684 while ((p
= tab
->pending_dependence
))
1686 tab
->pending_dependence
= p
->next
;
1687 free_value_expr (tab
, p
);
1690 /* A V_MAY_DEF kills any expression using a virtual operand. */
1691 if (NUM_V_MAY_DEFS (V_MAY_DEF_OPS (ann
)) > 0)
1692 kill_virtual_exprs (tab
, true);
1694 /* A V_MUST_DEF kills any expression using a virtual operand. */
1695 if (NUM_V_MUST_DEFS (V_MUST_DEF_OPS (ann
)) > 0)
1696 kill_virtual_exprs (tab
, true);
1701 /* This function is the driver routine for replacement of temporary expressions
1702 in the SSA->normal phase, operating on MAP. If there are replaceable
1703 expressions, a table is returned which maps SSA versions to the
1704 expressions they should be replaced with. A NULL_TREE indicates no
1705 replacement should take place. If there are no replacements at all,
1706 NULL is returned by the function, otherwise an expression vector indexed
1707 by SSA_NAME version numbers. */
1710 find_replaceable_exprs (var_map map
)
1714 temp_expr_table_p table
;
1717 table
= new_temp_expr_table (map
);
1720 find_replaceable_in_bb (table
, bb
);
1721 EXECUTE_IF_SET_IN_BITMAP ((table
->partition_in_use
), 0, i
,
1723 kill_expr (table
, i
, false);
1727 ret
= free_temp_expr_table (table
);
1732 /* Dump TER expression table EXPR to file F. */
1735 dump_replaceable_exprs (FILE *f
, tree
*expr
)
1739 fprintf (f
, "\nReplacing Expressions\n");
1740 for (x
= 0; x
< (int)num_ssa_names
+ 1; x
++)
1744 var
= DEF_OP (STMT_DEF_OPS (stmt
), 0);
1745 print_generic_expr (f
, var
, TDF_SLIM
);
1746 fprintf (f
, " replace with --> ");
1747 print_generic_expr (f
, TREE_OPERAND (stmt
, 1), TDF_SLIM
);
1754 /* Helper function for discover_nonconstant_array_refs.
1755 Look for ARRAY_REF nodes with non-constant indexes and mark them
1759 discover_nonconstant_array_refs_r (tree
* tp
, int *walk_subtrees
,
1760 void *data ATTRIBUTE_UNUSED
)
1764 if (TYPE_P (t
) || DECL_P (t
))
1766 else if (TREE_CODE (t
) == ARRAY_REF
)
1768 while ((TREE_CODE (t
) == ARRAY_REF
1769 && is_gimple_min_invariant (TREE_OPERAND (t
, 1)))
1770 || (TREE_CODE (t
) == COMPONENT_REF
1771 || TREE_CODE (t
) == BIT_FIELD_REF
1772 || TREE_CODE (t
) == REALPART_EXPR
1773 || TREE_CODE (t
) == IMAGPART_EXPR
))
1774 t
= TREE_OPERAND (t
, 0);
1776 if (TREE_CODE (t
) == ARRAY_REF
)
1778 t
= get_base_address (t
);
1779 if (t
&& DECL_P (t
))
1780 TREE_ADDRESSABLE (t
) = 1;
1790 /* RTL expansion is not able to compile array references with variable
1791 offsets for arrays stored in single register. Discover such
1792 expressions and mark variables as addressable to avoid this
1796 discover_nonconstant_array_refs (void)
1799 block_stmt_iterator bsi
;
1803 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
1804 walk_tree (bsi_stmt_ptr (bsi
), discover_nonconstant_array_refs_r
,
1810 /* This function will rewrite the current program using the variable mapping
1811 found in MAP. If the replacement vector VALUES is provided, any
1812 occurrences of partitions with non-null entries in the vector will be
1813 replaced with the expression in the vector instead of its mapped
1817 rewrite_trees (var_map map
, tree
*values
)
1821 block_stmt_iterator si
;
1826 #ifdef ENABLE_CHECKING
1827 /* Search for PHIs where the destination has no partition, but one
1828 or more arguments has a partition. This should not happen and can
1829 create incorrect code. */
1834 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
1836 tree T0
= var_to_partition_to_var (map
, PHI_RESULT (phi
));
1838 if (T0
== NULL_TREE
)
1842 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
1844 tree arg
= PHI_ARG_DEF (phi
, i
);
1846 if (TREE_CODE (arg
) == SSA_NAME
1847 && var_to_partition (map
, arg
) != NO_PARTITION
)
1849 fprintf (stderr
, "Argument of PHI is in a partition :(");
1850 print_generic_expr (stderr
, arg
, TDF_SLIM
);
1851 fprintf (stderr
, "), but the result is not :");
1852 print_generic_stmt (stderr
, phi
, TDF_SLIM
);
1861 /* Replace PHI nodes with any required copies. */
1862 g
= new_elim_graph (map
->num_partitions
);
1866 for (si
= bsi_start (bb
); !bsi_end_p (si
); )
1868 size_t i
, num_uses
, num_defs
;
1871 tree stmt
= bsi_stmt (si
);
1872 use_operand_p use_p
;
1873 int remove
= 0, is_copy
= 0;
1876 get_stmt_operands (stmt
);
1877 ann
= stmt_ann (stmt
);
1880 if (TREE_CODE (stmt
) == MODIFY_EXPR
1881 && (TREE_CODE (TREE_OPERAND (stmt
, 1)) == SSA_NAME
))
1884 uses
= USE_OPS (ann
);
1885 num_uses
= NUM_USES (uses
);
1887 for (i
= 0; i
< num_uses
; i
++)
1889 use_p
= USE_OP_PTR (uses
, i
);
1890 if (replace_use_variable (map
, use_p
, values
))
1894 defs
= DEF_OPS (ann
);
1895 num_defs
= NUM_DEFS (defs
);
1897 /* Mark this stmt for removal if it is the list of replaceable
1899 if (values
&& num_defs
== 1)
1901 tree def
= DEF_OP (defs
, 0);
1903 val
= values
[SSA_NAME_VERSION (def
)];
1909 for (i
= 0; i
< num_defs
; i
++)
1911 def_operand_p def_p
= DEF_OP_PTR (defs
, i
);
1913 if (replace_def_variable (map
, def_p
, NULL
))
1916 /* If both SSA_NAMEs coalesce to the same variable,
1917 mark the now redundant copy for removal. */
1920 && (DEF_FROM_PTR (def_p
) == USE_OP (uses
, 0)))
1927 /* Remove any stmts marked for removal. */
1934 phi
= phi_nodes (bb
);
1937 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
1938 eliminate_phi (e
, phi_arg_from_edge (phi
, e
), g
);
1942 delete_elim_graph (g
);
1944 /* If any copies were inserted on edges, actually insert them now. */
1945 bsi_commit_edge_inserts (NULL
);
1949 /* Remove the variables specified in MAP from SSA form. Any debug information
1950 is sent to DUMP. FLAGS indicate what options should be used. */
1953 remove_ssa_form (FILE *dump
, var_map map
, int flags
)
1955 tree_live_info_p liveinfo
;
1959 tree
*values
= NULL
;
1964 /* If we are not combining temps, don't calculate live ranges for variables
1965 with only one SSA version. */
1966 if ((flags
& SSANORM_COMBINE_TEMPS
) == 0)
1967 compact_var_map (map
, VARMAP_NO_SINGLE_DEFS
);
1969 compact_var_map (map
, VARMAP_NORMAL
);
1971 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1972 dump_var_map (dump_file
, map
);
1974 liveinfo
= coalesce_ssa_name (map
, flags
);
1976 /* Make sure even single occurrence variables are in the list now. */
1977 if ((flags
& SSANORM_COMBINE_TEMPS
) == 0)
1978 compact_var_map (map
, VARMAP_NORMAL
);
1980 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1982 fprintf (dump_file
, "After Coalescing:\n");
1983 dump_var_map (dump_file
, map
);
1986 if (flags
& SSANORM_PERFORM_TER
)
1988 values
= find_replaceable_exprs (map
);
1989 if (values
&& dump_file
&& (dump_flags
& TDF_DETAILS
))
1990 dump_replaceable_exprs (dump_file
, values
);
1993 /* Assign real variables to the partitions now. */
1996 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1998 fprintf (dump_file
, "After Root variable replacement:\n");
1999 dump_var_map (dump_file
, map
);
2002 if ((flags
& SSANORM_COMBINE_TEMPS
) && liveinfo
)
2004 coalesce_vars (map
, liveinfo
);
2005 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2007 fprintf (dump_file
, "After variable memory coalescing:\n");
2008 dump_var_map (dump_file
, map
);
2013 delete_tree_live_info (liveinfo
);
2015 rewrite_trees (map
, values
);
2020 /* Remove phi nodes which have been translated back to real variables. */
2023 for (phi
= phi_nodes (bb
); phi
; phi
= next
)
2025 next
= PHI_CHAIN (phi
);
2026 if ((flags
& SSANORM_REMOVE_ALL_PHIS
)
2027 || var_to_partition (map
, PHI_RESULT (phi
)) != NO_PARTITION
)
2028 remove_phi_node (phi
, NULL_TREE
, bb
);
2036 /* Take a subset of the variables VARS in the current function out of SSA
2040 rewrite_vars_out_of_ssa (bitmap vars
)
2042 if (bitmap_first_set_bit (vars
) >= 0)
2050 /* Search for PHIs in which one of the PHI arguments is marked for
2051 translation out of SSA form, but for which the PHI result is not
2052 marked for translation out of SSA form.
2054 Our per-variable out of SSA translation can not handle that case;
2055 however we can easily handle it here by creating a new instance
2056 of the PHI result's underlying variable and initializing it to
2057 the offending PHI argument on the edge associated with the
2058 PHI argument. We then change the PHI argument to use our new
2059 instead of the PHI's underlying variable.
2061 You might think we could register partitions for the out-of-ssa
2062 translation here and avoid a second walk of the PHI nodes. No
2063 such luck since the size of the var map will change if we have
2064 to manually take variables out of SSA form here. */
2067 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
2069 tree result
= SSA_NAME_VAR (PHI_RESULT (phi
));
2071 /* If the definition is marked for renaming, then we need
2072 to do nothing more for this PHI node. */
2073 if (bitmap_bit_p (vars
, var_ann (result
)->uid
))
2076 /* Look at all the arguments and see if any of them are
2077 marked for renaming. If so, we need to handle them
2079 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
2081 tree arg
= PHI_ARG_DEF (phi
, i
);
2083 /* If the argument is not an SSA_NAME, then we can ignore
2085 if (TREE_CODE (arg
) != SSA_NAME
)
2088 /* If this argument is marked for renaming, then we need
2089 to undo the copy propagation so that we can take
2090 the argument out of SSA form without taking the
2091 result out of SSA form. */
2092 arg
= SSA_NAME_VAR (arg
);
2093 if (bitmap_bit_p (vars
, var_ann (arg
)->uid
))
2095 tree new_name
, copy
;
2097 /* Get a new SSA_NAME for the copy, it is based on
2098 the result, not the argument! We use the PHI
2099 as the definition since we haven't created the
2100 definition statement yet. */
2101 new_name
= make_ssa_name (result
, phi
);
2103 /* Now create the copy statement. */
2104 copy
= build (MODIFY_EXPR
, TREE_TYPE (arg
),
2105 new_name
, PHI_ARG_DEF (phi
, i
));
2107 /* Now update SSA_NAME_DEF_STMT to point to the
2108 newly created statement. */
2109 SSA_NAME_DEF_STMT (new_name
) = copy
;
2111 /* Now make the argument reference our new SSA_NAME. */
2112 SET_PHI_ARG_DEF (phi
, i
, new_name
);
2114 /* Queue the statement for insertion. */
2115 bsi_insert_on_edge (PHI_ARG_EDGE (phi
, i
), copy
);
2122 /* If any copies were inserted on edges, actually insert them now. */
2123 bsi_commit_edge_inserts (NULL
);
2125 /* Now register partitions for all instances of the variables we
2126 are taking out of SSA form. */
2127 map
= init_var_map (num_ssa_names
+ 1);
2128 register_ssa_partitions_for_vars (vars
, map
);
2130 /* Now that we have all the partitions registered, translate the
2131 appropriate variables out of SSA form. */
2132 ssa_flags
= SSANORM_COALESCE_PARTITIONS
;
2133 if (flag_tree_combine_temps
)
2134 ssa_flags
|= SSANORM_COMBINE_TEMPS
;
2135 remove_ssa_form (dump_file
, map
, ssa_flags
);
2137 /* And finally, reset the out_of_ssa flag for each of the vars
2138 we just took out of SSA form. */
2139 EXECUTE_IF_SET_IN_BITMAP (vars
, 0, i
,
2141 var_ann (referenced_var (i
))->out_of_ssa_tag
= 0;
2144 /* Free the map as we are done with it. */
2145 delete_var_map (map
);
2151 /* Take the current function out of SSA form, as described in
2152 R. Morgan, ``Building an Optimizing Compiler'',
2153 Butterworth-Heinemann, Boston, MA, 1998. pp 176-186. */
2156 rewrite_out_of_ssa (void)
2160 int ssa_flags
= (SSANORM_REMOVE_ALL_PHIS
| SSANORM_USE_COALESCE_LIST
);
2162 if (!flag_tree_live_range_split
)
2163 ssa_flags
|= SSANORM_COALESCE_PARTITIONS
;
2165 eliminate_virtual_phis ();
2167 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2168 dump_tree_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);
2170 /* We cannot allow unssa to un-gimplify trees before we instrument them. */
2171 if (flag_tree_ter
&& !flag_mudflap
)
2172 var_flags
= SSA_VAR_MAP_REF_COUNT
;
2174 map
= create_ssa_var_map (var_flags
);
2176 if (flag_tree_combine_temps
)
2177 ssa_flags
|= SSANORM_COMBINE_TEMPS
;
2178 if (flag_tree_ter
&& !flag_mudflap
)
2179 ssa_flags
|= SSANORM_PERFORM_TER
;
2181 remove_ssa_form (dump_file
, map
, ssa_flags
);
2183 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2184 dump_tree_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);
2186 /* Do some cleanups which reduce the amount of data the
2187 tree->rtl expanders deal with. */
2188 cfg_remove_useless_stmts ();
2190 /* Flush out flow graph and SSA data. */
2191 delete_var_map (map
);
2193 /* Mark arrays indexed with non-constant indices with TREE_ADDRESSABLE. */
2194 discover_nonconstant_array_refs ();
2198 /* Define the parameters of the out of SSA pass. */
2200 struct tree_opt_pass pass_del_ssa
=
2202 "optimized", /* name */
2204 rewrite_out_of_ssa
, /* execute */
2207 0, /* static_pass_number */
2208 TV_TREE_SSA_TO_NORMAL
, /* tv_id */
2209 PROP_cfg
| PROP_ssa
, /* properties_required */
2210 0, /* properties_provided */
2211 /* ??? If TER is enabled, we also kill gimple. */
2212 PROP_ssa
, /* properties_destroyed */
2213 TODO_verify_ssa
| TODO_verify_flow
2214 | TODO_verify_stmts
, /* todo_flags_start */
2215 TODO_dump_func
| TODO_ggc_collect
/* todo_flags_finish */