1 /* Convert a program in SSA form into Normal form.
2 Copyright (C) 2004-2013 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 3, 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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
27 #include "basic-block.h"
28 #include "gimple-pretty-print.h"
32 #include "gimple-iterator.h"
33 #include "gimple-ssa.h"
35 #include "tree-phinodes.h"
36 #include "ssa-iterators.h"
37 #include "tree-ssanames.h"
39 #include "diagnostic-core.h"
40 #include "tree-ssa-live.h"
41 #include "tree-ssa-ter.h"
42 #include "tree-ssa-coalesce.h"
43 #include "tree-outof-ssa.h"
45 /* FIXME: A lot of code here deals with expanding to RTL. All that code
46 should be in cfgexpand.c. */
49 /* Return TRUE if expression STMT is suitable for replacement. */
52 ssa_is_replaceable_p (gimple stmt
)
58 /* Only consider modify stmts. */
59 if (!is_gimple_assign (stmt
))
62 /* If the statement may throw an exception, it cannot be replaced. */
63 if (stmt_could_throw_p (stmt
))
66 /* Punt if there is more than 1 def. */
67 def
= SINGLE_SSA_TREE_OPERAND (stmt
, SSA_OP_DEF
);
71 /* Only consider definitions which have a single use. */
72 if (!single_imm_use (def
, &use_p
, &use_stmt
))
75 /* Used in this block, but at the TOP of the block, not the end. */
76 if (gimple_code (use_stmt
) == GIMPLE_PHI
)
79 /* There must be no VDEFs. */
80 if (gimple_vdef (stmt
))
83 /* Float expressions must go through memory if float-store is on. */
85 && FLOAT_TYPE_P (gimple_expr_type (stmt
)))
88 /* An assignment with a register variable on the RHS is not
90 if (gimple_assign_rhs_code (stmt
) == VAR_DECL
91 && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt
)))
94 /* No function calls can be replaced. */
95 if (is_gimple_call (stmt
))
98 /* Leave any stmt with volatile operands alone as well. */
99 if (gimple_has_volatile_ops (stmt
))
106 /* Used to hold all the components required to do SSA PHI elimination.
107 The node and pred/succ list is a simple linear list of nodes and
108 edges represented as pairs of nodes.
110 The predecessor and successor list: Nodes are entered in pairs, where
111 [0] ->PRED, [1]->SUCC. All the even indexes in the array represent
112 predecessors, all the odd elements are successors.
115 When implemented as bitmaps, very large programs SSA->Normal times were
116 being dominated by clearing the interference graph.
118 Typically this list of edges is extremely small since it only includes
119 PHI results and uses from a single edge which have not coalesced with
120 each other. This means that no virtual PHI nodes are included, and
121 empirical evidence suggests that the number of edges rarely exceed
122 3, and in a bootstrap of GCC, the maximum size encountered was 7.
123 This also limits the number of possible nodes that are involved to
124 rarely more than 6, and in the bootstrap of gcc, the maximum number
125 of nodes encountered was 12. */
127 typedef struct _elim_graph
{
128 /* Size of the elimination vectors. */
131 /* List of nodes in the elimination graph. */
134 /* The predecessor and successor edge list. */
137 /* Source locus on each edge */
138 vec
<source_location
> edge_locus
;
140 /* Visited vector. */
143 /* Stack for visited nodes. */
146 /* The variable partition map. */
149 /* Edge being eliminated by this graph. */
152 /* List of constant copies to emit. These are pushed on in pairs. */
153 vec
<int> const_dests
;
154 vec
<tree
> const_copies
;
156 /* Source locations for any constant copies. */
157 vec
<source_location
> copy_locus
;
161 /* For an edge E find out a good source location to associate with
162 instructions inserted on edge E. If E has an implicit goto set,
163 use its location. Otherwise search instructions in predecessors
164 of E for a location, and use that one. That makes sense because
165 we insert on edges for PHI nodes, and effects of PHIs happen on
166 the end of the predecessor conceptually. */
169 set_location_for_edge (edge e
)
173 set_curr_insn_location (e
->goto_locus
);
177 basic_block bb
= e
->src
;
178 gimple_stmt_iterator gsi
;
182 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
184 gimple stmt
= gsi_stmt (gsi
);
185 if (is_gimple_debug (stmt
))
187 if (gimple_has_location (stmt
) || gimple_block (stmt
))
189 set_curr_insn_location (gimple_location (stmt
));
193 /* Nothing found in this basic block. Make a half-assed attempt
194 to continue with another block. */
195 if (single_pred_p (bb
))
196 bb
= single_pred (bb
);
200 while (bb
!= e
->src
);
204 /* Emit insns to copy SRC into DEST converting SRC if necessary. As
205 SRC/DEST might be BLKmode memory locations SIZEEXP is a tree from
206 which we deduce the size to copy in that case. */
209 emit_partition_copy (rtx dest
, rtx src
, int unsignedsrcp
, tree sizeexp
)
215 if (GET_MODE (src
) != VOIDmode
&& GET_MODE (src
) != GET_MODE (dest
))
216 src
= convert_to_mode (GET_MODE (dest
), src
, unsignedsrcp
);
217 if (GET_MODE (src
) == BLKmode
)
219 gcc_assert (GET_MODE (dest
) == BLKmode
);
220 emit_block_move (dest
, src
, expr_size (sizeexp
), BLOCK_OP_NORMAL
);
223 emit_move_insn (dest
, src
);
231 /* Insert a copy instruction from partition SRC to DEST onto edge E. */
234 insert_partition_copy_on_edge (edge e
, int dest
, int src
, source_location locus
)
238 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
241 "Inserting a partition copy on edge BB%d->BB%d :"
244 e
->dest
->index
, dest
, src
);
245 fprintf (dump_file
, "\n");
248 gcc_assert (SA
.partition_to_pseudo
[dest
]);
249 gcc_assert (SA
.partition_to_pseudo
[src
]);
251 set_location_for_edge (e
);
252 /* If a locus is provided, override the default. */
254 set_curr_insn_location (locus
);
256 var
= partition_to_var (SA
.map
, src
);
257 seq
= emit_partition_copy (SA
.partition_to_pseudo
[dest
],
258 SA
.partition_to_pseudo
[src
],
259 TYPE_UNSIGNED (TREE_TYPE (var
)),
262 insert_insn_on_edge (seq
, e
);
265 /* Insert a copy instruction from expression SRC to partition DEST
269 insert_value_copy_on_edge (edge e
, int dest
, tree src
, source_location locus
)
272 enum machine_mode dest_mode
, src_mode
;
276 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
279 "Inserting a value copy on edge BB%d->BB%d : PART.%d = ",
281 e
->dest
->index
, dest
);
282 print_generic_expr (dump_file
, src
, TDF_SLIM
);
283 fprintf (dump_file
, "\n");
286 gcc_assert (SA
.partition_to_pseudo
[dest
]);
288 set_location_for_edge (e
);
289 /* If a locus is provided, override the default. */
291 set_curr_insn_location (locus
);
295 var
= SSA_NAME_VAR (partition_to_var (SA
.map
, dest
));
296 src_mode
= TYPE_MODE (TREE_TYPE (src
));
297 dest_mode
= GET_MODE (SA
.partition_to_pseudo
[dest
]);
298 gcc_assert (src_mode
== TYPE_MODE (TREE_TYPE (var
)));
299 gcc_assert (!REG_P (SA
.partition_to_pseudo
[dest
])
300 || dest_mode
== promote_decl_mode (var
, &unsignedp
));
302 if (src_mode
!= dest_mode
)
304 x
= expand_expr (src
, NULL
, src_mode
, EXPAND_NORMAL
);
305 x
= convert_modes (dest_mode
, src_mode
, x
, unsignedp
);
307 else if (src_mode
== BLKmode
)
309 x
= SA
.partition_to_pseudo
[dest
];
310 store_expr (src
, x
, 0, false);
313 x
= expand_expr (src
, SA
.partition_to_pseudo
[dest
],
314 dest_mode
, EXPAND_NORMAL
);
316 if (x
!= SA
.partition_to_pseudo
[dest
])
317 emit_move_insn (SA
.partition_to_pseudo
[dest
], x
);
321 insert_insn_on_edge (seq
, e
);
324 /* Insert a copy instruction from RTL expression SRC to partition DEST
328 insert_rtx_to_part_on_edge (edge e
, int dest
, rtx src
, int unsignedsrcp
,
329 source_location locus
)
332 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
335 "Inserting a temp copy on edge BB%d->BB%d : PART.%d = ",
337 e
->dest
->index
, dest
);
338 print_simple_rtl (dump_file
, src
);
339 fprintf (dump_file
, "\n");
342 gcc_assert (SA
.partition_to_pseudo
[dest
]);
344 set_location_for_edge (e
);
345 /* If a locus is provided, override the default. */
347 set_curr_insn_location (locus
);
349 /* We give the destination as sizeexp in case src/dest are BLKmode
350 mems. Usually we give the source. As we result from SSA names
351 the left and right size should be the same (and no WITH_SIZE_EXPR
352 involved), so it doesn't matter. */
353 seq
= emit_partition_copy (SA
.partition_to_pseudo
[dest
],
355 partition_to_var (SA
.map
, dest
));
357 insert_insn_on_edge (seq
, e
);
360 /* Insert a copy instruction from partition SRC to RTL lvalue DEST
364 insert_part_to_rtx_on_edge (edge e
, rtx dest
, int src
, source_location locus
)
368 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
371 "Inserting a temp copy on edge BB%d->BB%d : ",
374 print_simple_rtl (dump_file
, dest
);
375 fprintf (dump_file
, "= PART.%d\n", src
);
378 gcc_assert (SA
.partition_to_pseudo
[src
]);
380 set_location_for_edge (e
);
381 /* If a locus is provided, override the default. */
383 set_curr_insn_location (locus
);
385 var
= partition_to_var (SA
.map
, src
);
386 seq
= emit_partition_copy (dest
,
387 SA
.partition_to_pseudo
[src
],
388 TYPE_UNSIGNED (TREE_TYPE (var
)),
391 insert_insn_on_edge (seq
, e
);
395 /* Create an elimination graph with SIZE nodes and associated data
399 new_elim_graph (int size
)
401 elim_graph g
= (elim_graph
) xmalloc (sizeof (struct _elim_graph
));
403 g
->nodes
.create (30);
404 g
->const_dests
.create (20);
405 g
->const_copies
.create (20);
406 g
->copy_locus
.create (10);
407 g
->edge_list
.create (20);
408 g
->edge_locus
.create (10);
409 g
->stack
.create (30);
411 g
->visited
= sbitmap_alloc (size
);
417 /* Empty elimination graph G. */
420 clear_elim_graph (elim_graph g
)
422 g
->nodes
.truncate (0);
423 g
->edge_list
.truncate (0);
424 g
->edge_locus
.truncate (0);
428 /* Delete elimination graph G. */
431 delete_elim_graph (elim_graph g
)
433 sbitmap_free (g
->visited
);
435 g
->edge_list
.release ();
436 g
->const_copies
.release ();
437 g
->const_dests
.release ();
439 g
->copy_locus
.release ();
440 g
->edge_locus
.release ();
446 /* Return the number of nodes in graph G. */
449 elim_graph_size (elim_graph g
)
451 return g
->nodes
.length ();
455 /* Add NODE to graph G, if it doesn't exist already. */
458 elim_graph_add_node (elim_graph g
, int node
)
463 FOR_EACH_VEC_ELT (g
->nodes
, x
, t
)
466 g
->nodes
.safe_push (node
);
470 /* Add the edge PRED->SUCC to graph G. */
473 elim_graph_add_edge (elim_graph g
, int pred
, int succ
, source_location locus
)
475 g
->edge_list
.safe_push (pred
);
476 g
->edge_list
.safe_push (succ
);
477 g
->edge_locus
.safe_push (locus
);
481 /* Remove an edge from graph G for which NODE is the predecessor, and
482 return the successor node. -1 is returned if there is no such edge. */
485 elim_graph_remove_succ_edge (elim_graph g
, int node
, source_location
*locus
)
489 for (x
= 0; x
< g
->edge_list
.length (); x
+= 2)
490 if (g
->edge_list
[x
] == node
)
492 g
->edge_list
[x
] = -1;
493 y
= g
->edge_list
[x
+ 1];
494 g
->edge_list
[x
+ 1] = -1;
495 *locus
= g
->edge_locus
[x
/ 2];
496 g
->edge_locus
[x
/ 2] = UNKNOWN_LOCATION
;
499 *locus
= UNKNOWN_LOCATION
;
504 /* Find all the nodes in GRAPH which are successors to NODE in the
505 edge list. VAR will hold the partition number found. CODE is the
506 code fragment executed for every node found. */
508 #define FOR_EACH_ELIM_GRAPH_SUCC(GRAPH, NODE, VAR, LOCUS, CODE) \
512 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
514 y_ = (GRAPH)->edge_list[x_]; \
517 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
518 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
524 /* Find all the nodes which are predecessors of NODE in the edge list for
525 GRAPH. VAR will hold the partition number found. CODE is the
526 code fragment executed for every node found. */
528 #define FOR_EACH_ELIM_GRAPH_PRED(GRAPH, NODE, VAR, LOCUS, CODE) \
532 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
534 y_ = (GRAPH)->edge_list[x_ + 1]; \
537 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
538 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
544 /* Add T to elimination graph G. */
547 eliminate_name (elim_graph g
, int T
)
549 elim_graph_add_node (g
, T
);
552 /* Return true if this phi argument T should have a copy queued when using
553 var_map MAP. PHI nodes should contain only ssa_names and invariants. A
554 test for ssa_name is definitely simpler, but don't let invalid contents
555 slip through in the meantime. */
558 queue_phi_copy_p (var_map map
, tree t
)
560 if (TREE_CODE (t
) == SSA_NAME
)
562 if (var_to_partition (map
, t
) == NO_PARTITION
)
566 gcc_checking_assert (is_gimple_min_invariant (t
));
570 /* Build elimination graph G for basic block BB on incoming PHI edge
574 eliminate_build (elim_graph g
)
578 gimple_stmt_iterator gsi
;
580 clear_elim_graph (g
);
582 for (gsi
= gsi_start_phis (g
->e
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
584 gimple phi
= gsi_stmt (gsi
);
585 source_location locus
;
587 p0
= var_to_partition (g
->map
, gimple_phi_result (phi
));
588 /* Ignore results which are not in partitions. */
589 if (p0
== NO_PARTITION
)
592 Ti
= PHI_ARG_DEF (phi
, g
->e
->dest_idx
);
593 locus
= gimple_phi_arg_location_from_edge (phi
, g
->e
);
595 /* If this argument is a constant, or a SSA_NAME which is being
596 left in SSA form, just queue a copy to be emitted on this
598 if (queue_phi_copy_p (g
->map
, Ti
))
600 /* Save constant copies until all other copies have been emitted
602 g
->const_dests
.safe_push (p0
);
603 g
->const_copies
.safe_push (Ti
);
604 g
->copy_locus
.safe_push (locus
);
608 pi
= var_to_partition (g
->map
, Ti
);
611 eliminate_name (g
, p0
);
612 eliminate_name (g
, pi
);
613 elim_graph_add_edge (g
, p0
, pi
, locus
);
620 /* Push successors of T onto the elimination stack for G. */
623 elim_forward (elim_graph g
, int T
)
626 source_location locus
;
628 bitmap_set_bit (g
->visited
, T
);
629 FOR_EACH_ELIM_GRAPH_SUCC (g
, T
, S
, locus
,
631 if (!bitmap_bit_p (g
->visited
, S
))
634 g
->stack
.safe_push (T
);
638 /* Return 1 if there unvisited predecessors of T in graph G. */
641 elim_unvisited_predecessor (elim_graph g
, int T
)
644 source_location locus
;
646 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
648 if (!bitmap_bit_p (g
->visited
, P
))
654 /* Process predecessors first, and insert a copy. */
657 elim_backward (elim_graph g
, int T
)
660 source_location locus
;
662 bitmap_set_bit (g
->visited
, T
);
663 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
665 if (!bitmap_bit_p (g
->visited
, P
))
667 elim_backward (g
, P
);
668 insert_partition_copy_on_edge (g
->e
, P
, T
, locus
);
673 /* Allocate a new pseudo register usable for storing values sitting
674 in NAME (a decl or SSA name), i.e. with matching mode and attributes. */
677 get_temp_reg (tree name
)
679 tree var
= TREE_CODE (name
) == SSA_NAME
? SSA_NAME_VAR (name
) : name
;
680 tree type
= TREE_TYPE (var
);
682 enum machine_mode reg_mode
= promote_decl_mode (var
, &unsignedp
);
683 rtx x
= gen_reg_rtx (reg_mode
);
684 if (POINTER_TYPE_P (type
))
685 mark_reg_pointer (x
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (var
))));
689 /* Insert required copies for T in graph G. Check for a strongly connected
690 region, and create a temporary to break the cycle if one is found. */
693 elim_create (elim_graph g
, int T
)
696 source_location locus
;
698 if (elim_unvisited_predecessor (g
, T
))
700 tree var
= partition_to_var (g
->map
, T
);
701 rtx U
= get_temp_reg (var
);
702 int unsignedsrcp
= TYPE_UNSIGNED (TREE_TYPE (var
));
704 insert_part_to_rtx_on_edge (g
->e
, U
, T
, UNKNOWN_LOCATION
);
705 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
707 if (!bitmap_bit_p (g
->visited
, P
))
709 elim_backward (g
, P
);
710 insert_rtx_to_part_on_edge (g
->e
, P
, U
, unsignedsrcp
, locus
);
716 S
= elim_graph_remove_succ_edge (g
, T
, &locus
);
719 bitmap_set_bit (g
->visited
, T
);
720 insert_partition_copy_on_edge (g
->e
, T
, S
, locus
);
726 /* Eliminate all the phi nodes on edge E in graph G. */
729 eliminate_phi (edge e
, elim_graph g
)
733 gcc_assert (g
->const_copies
.length () == 0);
734 gcc_assert (g
->copy_locus
.length () == 0);
736 /* Abnormal edges already have everything coalesced. */
737 if (e
->flags
& EDGE_ABNORMAL
)
744 if (elim_graph_size (g
) != 0)
748 bitmap_clear (g
->visited
);
749 g
->stack
.truncate (0);
751 FOR_EACH_VEC_ELT (g
->nodes
, x
, part
)
753 if (!bitmap_bit_p (g
->visited
, part
))
754 elim_forward (g
, part
);
757 bitmap_clear (g
->visited
);
758 while (g
->stack
.length () > 0)
761 if (!bitmap_bit_p (g
->visited
, x
))
766 /* If there are any pending constant copies, issue them now. */
767 while (g
->const_copies
.length () > 0)
771 source_location locus
;
773 src
= g
->const_copies
.pop ();
774 dest
= g
->const_dests
.pop ();
775 locus
= g
->copy_locus
.pop ();
776 insert_value_copy_on_edge (e
, dest
, src
, locus
);
781 /* Remove each argument from PHI. If an arg was the last use of an SSA_NAME,
782 check to see if this allows another PHI node to be removed. */
785 remove_gimple_phi_args (gimple phi
)
790 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
792 fprintf (dump_file
, "Removing Dead PHI definition: ");
793 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
796 FOR_EACH_PHI_ARG (arg_p
, phi
, iter
, SSA_OP_USE
)
798 tree arg
= USE_FROM_PTR (arg_p
);
799 if (TREE_CODE (arg
) == SSA_NAME
)
801 /* Remove the reference to the existing argument. */
802 SET_USE (arg_p
, NULL_TREE
);
803 if (has_zero_uses (arg
))
806 gimple_stmt_iterator gsi
;
808 stmt
= SSA_NAME_DEF_STMT (arg
);
810 /* Also remove the def if it is a PHI node. */
811 if (gimple_code (stmt
) == GIMPLE_PHI
)
813 remove_gimple_phi_args (stmt
);
814 gsi
= gsi_for_stmt (stmt
);
815 remove_phi_node (&gsi
, true);
823 /* Remove any PHI node which is a virtual PHI, or a PHI with no uses. */
826 eliminate_useless_phis (void)
829 gimple_stmt_iterator gsi
;
834 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); )
836 gimple phi
= gsi_stmt (gsi
);
837 result
= gimple_phi_result (phi
);
838 if (virtual_operand_p (result
))
840 #ifdef ENABLE_CHECKING
842 /* There should be no arguments which are not virtual, or the
843 results will be incorrect. */
844 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
846 tree arg
= PHI_ARG_DEF (phi
, i
);
847 if (TREE_CODE (arg
) == SSA_NAME
848 && !virtual_operand_p (arg
))
850 fprintf (stderr
, "Argument of PHI is not virtual (");
851 print_generic_expr (stderr
, arg
, TDF_SLIM
);
852 fprintf (stderr
, "), but the result is :");
853 print_gimple_stmt (stderr
, phi
, 0, TDF_SLIM
);
854 internal_error ("SSA corruption");
858 remove_phi_node (&gsi
, true);
862 /* Also remove real PHIs with no uses. */
863 if (has_zero_uses (result
))
865 remove_gimple_phi_args (phi
);
866 remove_phi_node (&gsi
, true);
876 /* This function will rewrite the current program using the variable mapping
877 found in MAP. If the replacement vector VALUES is provided, any
878 occurrences of partitions with non-null entries in the vector will be
879 replaced with the expression in the vector instead of its mapped
883 rewrite_trees (var_map map ATTRIBUTE_UNUSED
)
885 #ifdef ENABLE_CHECKING
887 /* Search for PHIs where the destination has no partition, but one
888 or more arguments has a partition. This should not happen and can
889 create incorrect code. */
892 gimple_stmt_iterator gsi
;
893 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
895 gimple phi
= gsi_stmt (gsi
);
896 tree T0
= var_to_partition_to_var (map
, gimple_phi_result (phi
));
900 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
902 tree arg
= PHI_ARG_DEF (phi
, i
);
904 if (TREE_CODE (arg
) == SSA_NAME
905 && var_to_partition (map
, arg
) != NO_PARTITION
)
907 fprintf (stderr
, "Argument of PHI is in a partition :(");
908 print_generic_expr (stderr
, arg
, TDF_SLIM
);
909 fprintf (stderr
, "), but the result is not :");
910 print_gimple_stmt (stderr
, phi
, 0, TDF_SLIM
);
911 internal_error ("SSA corruption");
920 /* Given the out-of-ssa info object SA (with prepared partitions)
921 eliminate all phi nodes in all basic blocks. Afterwards no
922 basic block will have phi nodes anymore and there are possibly
923 some RTL instructions inserted on edges. */
926 expand_phi_nodes (struct ssaexpand
*sa
)
929 elim_graph g
= new_elim_graph (sa
->map
->num_partitions
);
932 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
->next_bb
, EXIT_BLOCK_PTR
, next_bb
)
933 if (!gimple_seq_empty_p (phi_nodes (bb
)))
937 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
938 eliminate_phi (e
, g
);
939 set_phi_nodes (bb
, NULL
);
940 /* We can't redirect EH edges in RTL land, so we need to do this
941 here. Redirection happens only when splitting is necessary,
942 which it is only for critical edges, normally. For EH edges
943 it might also be necessary when the successor has more than
944 one predecessor. In that case the edge is either required to
945 be fallthru (which EH edges aren't), or the predecessor needs
946 to end with a jump (which again, isn't the case with EH edges).
947 Hence, split all EH edges on which we inserted instructions
948 and whose successor has multiple predecessors. */
949 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
951 if (e
->insns
.r
&& (e
->flags
& EDGE_EH
)
952 && !single_pred_p (e
->dest
))
954 rtx insns
= e
->insns
.r
;
956 e
->insns
.r
= NULL_RTX
;
958 single_pred_edge (bb
)->insns
.r
= insns
;
965 delete_elim_graph (g
);
969 /* Remove the ssa-names in the current function and translate them into normal
970 compiler variables. PERFORM_TER is true if Temporary Expression Replacement
971 should also be used. */
974 remove_ssa_form (bool perform_ter
, struct ssaexpand
*sa
)
976 bitmap values
= NULL
;
980 map
= coalesce_ssa_name ();
982 /* Return to viewing the variable list as just all reference variables after
983 coalescing has been performed. */
984 partition_view_normal (map
, false);
986 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
988 fprintf (dump_file
, "After Coalescing:\n");
989 dump_var_map (dump_file
, map
);
994 values
= find_replaceable_exprs (map
);
995 if (values
&& dump_file
&& (dump_flags
& TDF_DETAILS
))
996 dump_replaceable_exprs (dump_file
, values
);
1002 sa
->values
= values
;
1003 sa
->partition_has_default_def
= BITMAP_ALLOC (NULL
);
1004 for (i
= 1; i
< num_ssa_names
; i
++)
1006 tree t
= ssa_name (i
);
1007 if (t
&& SSA_NAME_IS_DEFAULT_DEF (t
))
1009 int p
= var_to_partition (map
, t
);
1010 if (p
!= NO_PARTITION
)
1011 bitmap_set_bit (sa
->partition_has_default_def
, p
);
1017 /* If not already done so for basic block BB, assign increasing uids
1018 to each of its instructions. */
1021 maybe_renumber_stmts_bb (basic_block bb
)
1024 gimple_stmt_iterator gsi
;
1029 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1031 gimple stmt
= gsi_stmt (gsi
);
1032 gimple_set_uid (stmt
, i
);
1038 /* Return true if we can determine that the SSA_NAMEs RESULT (a result
1039 of a PHI node) and ARG (one of its arguments) conflict. Return false
1040 otherwise, also when we simply aren't sure. */
1043 trivially_conflicts_p (basic_block bb
, tree result
, tree arg
)
1046 imm_use_iterator imm_iter
;
1047 gimple defa
= SSA_NAME_DEF_STMT (arg
);
1049 /* If ARG isn't defined in the same block it's too complicated for
1051 if (gimple_bb (defa
) != bb
)
1054 FOR_EACH_IMM_USE_FAST (use
, imm_iter
, result
)
1056 gimple use_stmt
= USE_STMT (use
);
1057 if (is_gimple_debug (use_stmt
))
1059 /* Now, if there's a use of RESULT that lies outside this basic block,
1060 then there surely is a conflict with ARG. */
1061 if (gimple_bb (use_stmt
) != bb
)
1063 if (gimple_code (use_stmt
) == GIMPLE_PHI
)
1065 /* The use now is in a real stmt of BB, so if ARG was defined
1066 in a PHI node (like RESULT) both conflict. */
1067 if (gimple_code (defa
) == GIMPLE_PHI
)
1069 maybe_renumber_stmts_bb (bb
);
1070 /* If the use of RESULT occurs after the definition of ARG,
1071 the two conflict too. */
1072 if (gimple_uid (defa
) < gimple_uid (use_stmt
))
1080 /* Search every PHI node for arguments associated with backedges which
1081 we can trivially determine will need a copy (the argument is either
1082 not an SSA_NAME or the argument has a different underlying variable
1083 than the PHI result).
1085 Insert a copy from the PHI argument to a new destination at the
1086 end of the block with the backedge to the top of the loop. Update
1087 the PHI argument to reference this new destination. */
1090 insert_backedge_copies (void)
1093 gimple_stmt_iterator gsi
;
1095 mark_dfs_back_edges ();
1099 /* Mark block as possibly needing calculation of UIDs. */
1102 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1104 gimple phi
= gsi_stmt (gsi
);
1105 tree result
= gimple_phi_result (phi
);
1108 if (virtual_operand_p (result
))
1111 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1113 tree arg
= gimple_phi_arg_def (phi
, i
);
1114 edge e
= gimple_phi_arg_edge (phi
, i
);
1116 /* If the argument is not an SSA_NAME, then we will need a
1117 constant initialization. If the argument is an SSA_NAME with
1118 a different underlying variable then a copy statement will be
1120 if ((e
->flags
& EDGE_DFS_BACK
)
1121 && (TREE_CODE (arg
) != SSA_NAME
1122 || SSA_NAME_VAR (arg
) != SSA_NAME_VAR (result
)
1123 || trivially_conflicts_p (bb
, result
, arg
)))
1126 gimple stmt
, last
= NULL
;
1127 gimple_stmt_iterator gsi2
;
1129 gsi2
= gsi_last_bb (gimple_phi_arg_edge (phi
, i
)->src
);
1130 if (!gsi_end_p (gsi2
))
1131 last
= gsi_stmt (gsi2
);
1133 /* In theory the only way we ought to get back to the
1134 start of a loop should be with a COND_EXPR or GOTO_EXPR.
1135 However, better safe than sorry.
1136 If the block ends with a control statement or
1137 something that might throw, then we have to
1138 insert this assignment before the last
1139 statement. Else insert it after the last statement. */
1140 if (last
&& stmt_ends_bb_p (last
))
1142 /* If the last statement in the block is the definition
1143 site of the PHI argument, then we can't insert
1144 anything after it. */
1145 if (TREE_CODE (arg
) == SSA_NAME
1146 && SSA_NAME_DEF_STMT (arg
) == last
)
1150 /* Create a new instance of the underlying variable of the
1152 name
= copy_ssa_name (result
, NULL
);
1153 stmt
= gimple_build_assign (name
,
1154 gimple_phi_arg_def (phi
, i
));
1156 /* copy location if present. */
1157 if (gimple_phi_arg_has_location (phi
, i
))
1158 gimple_set_location (stmt
,
1159 gimple_phi_arg_location (phi
, i
));
1161 /* Insert the new statement into the block and update
1163 if (last
&& stmt_ends_bb_p (last
))
1164 gsi_insert_before (&gsi2
, stmt
, GSI_NEW_STMT
);
1166 gsi_insert_after (&gsi2
, stmt
, GSI_NEW_STMT
);
1167 SET_PHI_ARG_DEF (phi
, i
, name
);
1172 /* Unmark this block again. */
1177 /* Free all memory associated with going out of SSA form. SA is
1178 the outof-SSA info object. */
1181 finish_out_of_ssa (struct ssaexpand
*sa
)
1183 free (sa
->partition_to_pseudo
);
1185 BITMAP_FREE (sa
->values
);
1186 delete_var_map (sa
->map
);
1187 BITMAP_FREE (sa
->partition_has_default_def
);
1188 memset (sa
, 0, sizeof *sa
);
1191 /* Take the current function out of SSA form, translating PHIs as described in
1192 R. Morgan, ``Building an Optimizing Compiler'',
1193 Butterworth-Heinemann, Boston, MA, 1998. pp 176-186. */
1196 rewrite_out_of_ssa (struct ssaexpand
*sa
)
1198 /* If elimination of a PHI requires inserting a copy on a backedge,
1199 then we will have to split the backedge which has numerous
1200 undesirable performance effects.
1202 A significant number of such cases can be handled here by inserting
1203 copies into the loop itself. */
1204 insert_backedge_copies ();
1207 /* Eliminate PHIs which are of no use, such as virtual or dead phis. */
1208 eliminate_useless_phis ();
1210 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1211 gimple_dump_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);
1213 remove_ssa_form (flag_tree_ter
, sa
);
1215 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1216 gimple_dump_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);