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 "diagnostic-core.h"
33 #include "tree-outof-ssa.h"
35 /* FIXME: A lot of code here deals with expanding to RTL. All that code
36 should be in cfgexpand.c. */
39 /* Return TRUE if expression STMT is suitable for replacement. */
42 ssa_is_replaceable_p (gimple stmt
)
48 /* Only consider modify stmts. */
49 if (!is_gimple_assign (stmt
))
52 /* If the statement may throw an exception, it cannot be replaced. */
53 if (stmt_could_throw_p (stmt
))
56 /* Punt if there is more than 1 def. */
57 def
= SINGLE_SSA_TREE_OPERAND (stmt
, SSA_OP_DEF
);
61 /* Only consider definitions which have a single use. */
62 if (!single_imm_use (def
, &use_p
, &use_stmt
))
65 /* Used in this block, but at the TOP of the block, not the end. */
66 if (gimple_code (use_stmt
) == GIMPLE_PHI
)
69 /* There must be no VDEFs. */
70 if (gimple_vdef (stmt
))
73 /* Float expressions must go through memory if float-store is on. */
75 && FLOAT_TYPE_P (gimple_expr_type (stmt
)))
78 /* An assignment with a register variable on the RHS is not
80 if (gimple_assign_rhs_code (stmt
) == VAR_DECL
81 && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt
)))
84 /* No function calls can be replaced. */
85 if (is_gimple_call (stmt
))
88 /* Leave any stmt with volatile operands alone as well. */
89 if (gimple_has_volatile_ops (stmt
))
96 /* Used to hold all the components required to do SSA PHI elimination.
97 The node and pred/succ list is a simple linear list of nodes and
98 edges represented as pairs of nodes.
100 The predecessor and successor list: Nodes are entered in pairs, where
101 [0] ->PRED, [1]->SUCC. All the even indexes in the array represent
102 predecessors, all the odd elements are successors.
105 When implemented as bitmaps, very large programs SSA->Normal times were
106 being dominated by clearing the interference graph.
108 Typically this list of edges is extremely small since it only includes
109 PHI results and uses from a single edge which have not coalesced with
110 each other. This means that no virtual PHI nodes are included, and
111 empirical evidence suggests that the number of edges rarely exceed
112 3, and in a bootstrap of GCC, the maximum size encountered was 7.
113 This also limits the number of possible nodes that are involved to
114 rarely more than 6, and in the bootstrap of gcc, the maximum number
115 of nodes encountered was 12. */
117 typedef struct _elim_graph
{
118 /* Size of the elimination vectors. */
121 /* List of nodes in the elimination graph. */
124 /* The predecessor and successor edge list. */
127 /* Source locus on each edge */
128 vec
<source_location
> edge_locus
;
130 /* Visited vector. */
133 /* Stack for visited nodes. */
136 /* The variable partition map. */
139 /* Edge being eliminated by this graph. */
142 /* List of constant copies to emit. These are pushed on in pairs. */
143 vec
<int> const_dests
;
144 vec
<tree
> const_copies
;
146 /* Source locations for any constant copies. */
147 vec
<source_location
> copy_locus
;
151 /* For an edge E find out a good source location to associate with
152 instructions inserted on edge E. If E has an implicit goto set,
153 use its location. Otherwise search instructions in predecessors
154 of E for a location, and use that one. That makes sense because
155 we insert on edges for PHI nodes, and effects of PHIs happen on
156 the end of the predecessor conceptually. */
159 set_location_for_edge (edge e
)
163 set_curr_insn_location (e
->goto_locus
);
167 basic_block bb
= e
->src
;
168 gimple_stmt_iterator gsi
;
172 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
174 gimple stmt
= gsi_stmt (gsi
);
175 if (is_gimple_debug (stmt
))
177 if (gimple_has_location (stmt
) || gimple_block (stmt
))
179 set_curr_insn_location (gimple_location (stmt
));
183 /* Nothing found in this basic block. Make a half-assed attempt
184 to continue with another block. */
185 if (single_pred_p (bb
))
186 bb
= single_pred (bb
);
190 while (bb
!= e
->src
);
194 /* Emit insns to copy SRC into DEST converting SRC if necessary. As
195 SRC/DEST might be BLKmode memory locations SIZEEXP is a tree from
196 which we deduce the size to copy in that case. */
199 emit_partition_copy (rtx dest
, rtx src
, int unsignedsrcp
, tree sizeexp
)
205 if (GET_MODE (src
) != VOIDmode
&& GET_MODE (src
) != GET_MODE (dest
))
206 src
= convert_to_mode (GET_MODE (dest
), src
, unsignedsrcp
);
207 if (GET_MODE (src
) == BLKmode
)
209 gcc_assert (GET_MODE (dest
) == BLKmode
);
210 emit_block_move (dest
, src
, expr_size (sizeexp
), BLOCK_OP_NORMAL
);
213 emit_move_insn (dest
, src
);
221 /* Insert a copy instruction from partition SRC to DEST onto edge E. */
224 insert_partition_copy_on_edge (edge e
, int dest
, int src
, source_location locus
)
228 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
231 "Inserting a partition copy on edge BB%d->BB%d :"
234 e
->dest
->index
, dest
, src
);
235 fprintf (dump_file
, "\n");
238 gcc_assert (SA
.partition_to_pseudo
[dest
]);
239 gcc_assert (SA
.partition_to_pseudo
[src
]);
241 set_location_for_edge (e
);
242 /* If a locus is provided, override the default. */
244 set_curr_insn_location (locus
);
246 var
= partition_to_var (SA
.map
, src
);
247 seq
= emit_partition_copy (SA
.partition_to_pseudo
[dest
],
248 SA
.partition_to_pseudo
[src
],
249 TYPE_UNSIGNED (TREE_TYPE (var
)),
252 insert_insn_on_edge (seq
, e
);
255 /* Insert a copy instruction from expression SRC to partition DEST
259 insert_value_copy_on_edge (edge e
, int dest
, tree src
, source_location locus
)
262 enum machine_mode dest_mode
, src_mode
;
266 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
269 "Inserting a value copy on edge BB%d->BB%d : PART.%d = ",
271 e
->dest
->index
, dest
);
272 print_generic_expr (dump_file
, src
, TDF_SLIM
);
273 fprintf (dump_file
, "\n");
276 gcc_assert (SA
.partition_to_pseudo
[dest
]);
278 set_location_for_edge (e
);
279 /* If a locus is provided, override the default. */
281 set_curr_insn_location (locus
);
285 var
= SSA_NAME_VAR (partition_to_var (SA
.map
, dest
));
286 src_mode
= TYPE_MODE (TREE_TYPE (src
));
287 dest_mode
= GET_MODE (SA
.partition_to_pseudo
[dest
]);
288 gcc_assert (src_mode
== TYPE_MODE (TREE_TYPE (var
)));
289 gcc_assert (!REG_P (SA
.partition_to_pseudo
[dest
])
290 || dest_mode
== promote_decl_mode (var
, &unsignedp
));
292 if (src_mode
!= dest_mode
)
294 x
= expand_expr (src
, NULL
, src_mode
, EXPAND_NORMAL
);
295 x
= convert_modes (dest_mode
, src_mode
, x
, unsignedp
);
297 else if (src_mode
== BLKmode
)
299 x
= SA
.partition_to_pseudo
[dest
];
300 store_expr (src
, x
, 0, false);
303 x
= expand_expr (src
, SA
.partition_to_pseudo
[dest
],
304 dest_mode
, EXPAND_NORMAL
);
306 if (x
!= SA
.partition_to_pseudo
[dest
])
307 emit_move_insn (SA
.partition_to_pseudo
[dest
], x
);
311 insert_insn_on_edge (seq
, e
);
314 /* Insert a copy instruction from RTL expression SRC to partition DEST
318 insert_rtx_to_part_on_edge (edge e
, int dest
, rtx src
, int unsignedsrcp
,
319 source_location locus
)
322 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
325 "Inserting a temp copy on edge BB%d->BB%d : PART.%d = ",
327 e
->dest
->index
, dest
);
328 print_simple_rtl (dump_file
, src
);
329 fprintf (dump_file
, "\n");
332 gcc_assert (SA
.partition_to_pseudo
[dest
]);
334 set_location_for_edge (e
);
335 /* If a locus is provided, override the default. */
337 set_curr_insn_location (locus
);
339 /* We give the destination as sizeexp in case src/dest are BLKmode
340 mems. Usually we give the source. As we result from SSA names
341 the left and right size should be the same (and no WITH_SIZE_EXPR
342 involved), so it doesn't matter. */
343 seq
= emit_partition_copy (SA
.partition_to_pseudo
[dest
],
345 partition_to_var (SA
.map
, dest
));
347 insert_insn_on_edge (seq
, e
);
350 /* Insert a copy instruction from partition SRC to RTL lvalue DEST
354 insert_part_to_rtx_on_edge (edge e
, rtx dest
, int src
, source_location locus
)
358 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
361 "Inserting a temp copy on edge BB%d->BB%d : ",
364 print_simple_rtl (dump_file
, dest
);
365 fprintf (dump_file
, "= PART.%d\n", src
);
368 gcc_assert (SA
.partition_to_pseudo
[src
]);
370 set_location_for_edge (e
);
371 /* If a locus is provided, override the default. */
373 set_curr_insn_location (locus
);
375 var
= partition_to_var (SA
.map
, src
);
376 seq
= emit_partition_copy (dest
,
377 SA
.partition_to_pseudo
[src
],
378 TYPE_UNSIGNED (TREE_TYPE (var
)),
381 insert_insn_on_edge (seq
, e
);
385 /* Create an elimination graph with SIZE nodes and associated data
389 new_elim_graph (int size
)
391 elim_graph g
= (elim_graph
) xmalloc (sizeof (struct _elim_graph
));
393 g
->nodes
.create (30);
394 g
->const_dests
.create (20);
395 g
->const_copies
.create (20);
396 g
->copy_locus
.create (10);
397 g
->edge_list
.create (20);
398 g
->edge_locus
.create (10);
399 g
->stack
.create (30);
401 g
->visited
= sbitmap_alloc (size
);
407 /* Empty elimination graph G. */
410 clear_elim_graph (elim_graph g
)
412 g
->nodes
.truncate (0);
413 g
->edge_list
.truncate (0);
414 g
->edge_locus
.truncate (0);
418 /* Delete elimination graph G. */
421 delete_elim_graph (elim_graph g
)
423 sbitmap_free (g
->visited
);
425 g
->edge_list
.release ();
426 g
->const_copies
.release ();
427 g
->const_dests
.release ();
429 g
->copy_locus
.release ();
430 g
->edge_locus
.release ();
436 /* Return the number of nodes in graph G. */
439 elim_graph_size (elim_graph g
)
441 return g
->nodes
.length ();
445 /* Add NODE to graph G, if it doesn't exist already. */
448 elim_graph_add_node (elim_graph g
, int node
)
453 FOR_EACH_VEC_ELT (g
->nodes
, x
, t
)
456 g
->nodes
.safe_push (node
);
460 /* Add the edge PRED->SUCC to graph G. */
463 elim_graph_add_edge (elim_graph g
, int pred
, int succ
, source_location locus
)
465 g
->edge_list
.safe_push (pred
);
466 g
->edge_list
.safe_push (succ
);
467 g
->edge_locus
.safe_push (locus
);
471 /* Remove an edge from graph G for which NODE is the predecessor, and
472 return the successor node. -1 is returned if there is no such edge. */
475 elim_graph_remove_succ_edge (elim_graph g
, int node
, source_location
*locus
)
479 for (x
= 0; x
< g
->edge_list
.length (); x
+= 2)
480 if (g
->edge_list
[x
] == node
)
482 g
->edge_list
[x
] = -1;
483 y
= g
->edge_list
[x
+ 1];
484 g
->edge_list
[x
+ 1] = -1;
485 *locus
= g
->edge_locus
[x
/ 2];
486 g
->edge_locus
[x
/ 2] = UNKNOWN_LOCATION
;
489 *locus
= UNKNOWN_LOCATION
;
494 /* Find all the nodes in GRAPH which are successors to NODE in the
495 edge list. VAR will hold the partition number found. CODE is the
496 code fragment executed for every node found. */
498 #define FOR_EACH_ELIM_GRAPH_SUCC(GRAPH, NODE, VAR, LOCUS, CODE) \
502 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
504 y_ = (GRAPH)->edge_list[x_]; \
507 (void) ((VAR) = (GRAPH)->edge_list[x_ + 1]); \
508 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
514 /* Find all the nodes which are predecessors of NODE in the edge list for
515 GRAPH. VAR will hold the partition number found. CODE is the
516 code fragment executed for every node found. */
518 #define FOR_EACH_ELIM_GRAPH_PRED(GRAPH, NODE, VAR, LOCUS, CODE) \
522 for (x_ = 0; x_ < (GRAPH)->edge_list.length (); x_ += 2) \
524 y_ = (GRAPH)->edge_list[x_ + 1]; \
527 (void) ((VAR) = (GRAPH)->edge_list[x_]); \
528 (void) ((LOCUS) = (GRAPH)->edge_locus[x_ / 2]); \
534 /* Add T to elimination graph G. */
537 eliminate_name (elim_graph g
, int T
)
539 elim_graph_add_node (g
, T
);
543 /* Build elimination graph G for basic block BB on incoming PHI edge
547 eliminate_build (elim_graph g
)
551 gimple_stmt_iterator gsi
;
553 clear_elim_graph (g
);
555 for (gsi
= gsi_start_phis (g
->e
->dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
557 gimple phi
= gsi_stmt (gsi
);
558 source_location locus
;
560 p0
= var_to_partition (g
->map
, gimple_phi_result (phi
));
561 /* Ignore results which are not in partitions. */
562 if (p0
== NO_PARTITION
)
565 Ti
= PHI_ARG_DEF (phi
, g
->e
->dest_idx
);
566 locus
= gimple_phi_arg_location_from_edge (phi
, g
->e
);
568 /* If this argument is a constant, or a SSA_NAME which is being
569 left in SSA form, just queue a copy to be emitted on this
571 if (!phi_ssa_name_p (Ti
)
572 || (TREE_CODE (Ti
) == SSA_NAME
573 && var_to_partition (g
->map
, Ti
) == NO_PARTITION
))
575 /* Save constant copies until all other copies have been emitted
577 g
->const_dests
.safe_push (p0
);
578 g
->const_copies
.safe_push (Ti
);
579 g
->copy_locus
.safe_push (locus
);
583 pi
= var_to_partition (g
->map
, Ti
);
586 eliminate_name (g
, p0
);
587 eliminate_name (g
, pi
);
588 elim_graph_add_edge (g
, p0
, pi
, locus
);
595 /* Push successors of T onto the elimination stack for G. */
598 elim_forward (elim_graph g
, int T
)
601 source_location locus
;
603 bitmap_set_bit (g
->visited
, T
);
604 FOR_EACH_ELIM_GRAPH_SUCC (g
, T
, S
, locus
,
606 if (!bitmap_bit_p (g
->visited
, S
))
609 g
->stack
.safe_push (T
);
613 /* Return 1 if there unvisited predecessors of T in graph G. */
616 elim_unvisited_predecessor (elim_graph g
, int T
)
619 source_location locus
;
621 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
623 if (!bitmap_bit_p (g
->visited
, P
))
629 /* Process predecessors first, and insert a copy. */
632 elim_backward (elim_graph g
, int T
)
635 source_location locus
;
637 bitmap_set_bit (g
->visited
, T
);
638 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
640 if (!bitmap_bit_p (g
->visited
, P
))
642 elim_backward (g
, P
);
643 insert_partition_copy_on_edge (g
->e
, P
, T
, locus
);
648 /* Allocate a new pseudo register usable for storing values sitting
649 in NAME (a decl or SSA name), i.e. with matching mode and attributes. */
652 get_temp_reg (tree name
)
654 tree var
= TREE_CODE (name
) == SSA_NAME
? SSA_NAME_VAR (name
) : name
;
655 tree type
= TREE_TYPE (var
);
657 enum machine_mode reg_mode
= promote_decl_mode (var
, &unsignedp
);
658 rtx x
= gen_reg_rtx (reg_mode
);
659 if (POINTER_TYPE_P (type
))
660 mark_reg_pointer (x
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (var
))));
664 /* Insert required copies for T in graph G. Check for a strongly connected
665 region, and create a temporary to break the cycle if one is found. */
668 elim_create (elim_graph g
, int T
)
671 source_location locus
;
673 if (elim_unvisited_predecessor (g
, T
))
675 tree var
= partition_to_var (g
->map
, T
);
676 rtx U
= get_temp_reg (var
);
677 int unsignedsrcp
= TYPE_UNSIGNED (TREE_TYPE (var
));
679 insert_part_to_rtx_on_edge (g
->e
, U
, T
, UNKNOWN_LOCATION
);
680 FOR_EACH_ELIM_GRAPH_PRED (g
, T
, P
, locus
,
682 if (!bitmap_bit_p (g
->visited
, P
))
684 elim_backward (g
, P
);
685 insert_rtx_to_part_on_edge (g
->e
, P
, U
, unsignedsrcp
, locus
);
691 S
= elim_graph_remove_succ_edge (g
, T
, &locus
);
694 bitmap_set_bit (g
->visited
, T
);
695 insert_partition_copy_on_edge (g
->e
, T
, S
, locus
);
701 /* Eliminate all the phi nodes on edge E in graph G. */
704 eliminate_phi (edge e
, elim_graph g
)
708 gcc_assert (g
->const_copies
.length () == 0);
709 gcc_assert (g
->copy_locus
.length () == 0);
711 /* Abnormal edges already have everything coalesced. */
712 if (e
->flags
& EDGE_ABNORMAL
)
719 if (elim_graph_size (g
) != 0)
723 bitmap_clear (g
->visited
);
724 g
->stack
.truncate (0);
726 FOR_EACH_VEC_ELT (g
->nodes
, x
, part
)
728 if (!bitmap_bit_p (g
->visited
, part
))
729 elim_forward (g
, part
);
732 bitmap_clear (g
->visited
);
733 while (g
->stack
.length () > 0)
736 if (!bitmap_bit_p (g
->visited
, x
))
741 /* If there are any pending constant copies, issue them now. */
742 while (g
->const_copies
.length () > 0)
746 source_location locus
;
748 src
= g
->const_copies
.pop ();
749 dest
= g
->const_dests
.pop ();
750 locus
= g
->copy_locus
.pop ();
751 insert_value_copy_on_edge (e
, dest
, src
, locus
);
756 /* Remove each argument from PHI. If an arg was the last use of an SSA_NAME,
757 check to see if this allows another PHI node to be removed. */
760 remove_gimple_phi_args (gimple phi
)
765 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
767 fprintf (dump_file
, "Removing Dead PHI definition: ");
768 print_gimple_stmt (dump_file
, phi
, 0, TDF_SLIM
);
771 FOR_EACH_PHI_ARG (arg_p
, phi
, iter
, SSA_OP_USE
)
773 tree arg
= USE_FROM_PTR (arg_p
);
774 if (TREE_CODE (arg
) == SSA_NAME
)
776 /* Remove the reference to the existing argument. */
777 SET_USE (arg_p
, NULL_TREE
);
778 if (has_zero_uses (arg
))
781 gimple_stmt_iterator gsi
;
783 stmt
= SSA_NAME_DEF_STMT (arg
);
785 /* Also remove the def if it is a PHI node. */
786 if (gimple_code (stmt
) == GIMPLE_PHI
)
788 remove_gimple_phi_args (stmt
);
789 gsi
= gsi_for_stmt (stmt
);
790 remove_phi_node (&gsi
, true);
798 /* Remove any PHI node which is a virtual PHI, or a PHI with no uses. */
801 eliminate_useless_phis (void)
804 gimple_stmt_iterator gsi
;
809 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); )
811 gimple phi
= gsi_stmt (gsi
);
812 result
= gimple_phi_result (phi
);
813 if (virtual_operand_p (result
))
815 #ifdef ENABLE_CHECKING
817 /* There should be no arguments which are not virtual, or the
818 results will be incorrect. */
819 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
821 tree arg
= PHI_ARG_DEF (phi
, i
);
822 if (TREE_CODE (arg
) == SSA_NAME
823 && !virtual_operand_p (arg
))
825 fprintf (stderr
, "Argument of PHI is not virtual (");
826 print_generic_expr (stderr
, arg
, TDF_SLIM
);
827 fprintf (stderr
, "), but the result is :");
828 print_gimple_stmt (stderr
, phi
, 0, TDF_SLIM
);
829 internal_error ("SSA corruption");
833 remove_phi_node (&gsi
, true);
837 /* Also remove real PHIs with no uses. */
838 if (has_zero_uses (result
))
840 remove_gimple_phi_args (phi
);
841 remove_phi_node (&gsi
, true);
851 /* This function will rewrite the current program using the variable mapping
852 found in MAP. If the replacement vector VALUES is provided, any
853 occurrences of partitions with non-null entries in the vector will be
854 replaced with the expression in the vector instead of its mapped
858 rewrite_trees (var_map map ATTRIBUTE_UNUSED
)
860 #ifdef ENABLE_CHECKING
862 /* Search for PHIs where the destination has no partition, but one
863 or more arguments has a partition. This should not happen and can
864 create incorrect code. */
867 gimple_stmt_iterator gsi
;
868 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
870 gimple phi
= gsi_stmt (gsi
);
871 tree T0
= var_to_partition_to_var (map
, gimple_phi_result (phi
));
875 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
877 tree arg
= PHI_ARG_DEF (phi
, i
);
879 if (TREE_CODE (arg
) == SSA_NAME
880 && var_to_partition (map
, arg
) != NO_PARTITION
)
882 fprintf (stderr
, "Argument of PHI is in a partition :(");
883 print_generic_expr (stderr
, arg
, TDF_SLIM
);
884 fprintf (stderr
, "), but the result is not :");
885 print_gimple_stmt (stderr
, phi
, 0, TDF_SLIM
);
886 internal_error ("SSA corruption");
895 /* Given the out-of-ssa info object SA (with prepared partitions)
896 eliminate all phi nodes in all basic blocks. Afterwards no
897 basic block will have phi nodes anymore and there are possibly
898 some RTL instructions inserted on edges. */
901 expand_phi_nodes (struct ssaexpand
*sa
)
904 elim_graph g
= new_elim_graph (sa
->map
->num_partitions
);
907 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
->next_bb
, EXIT_BLOCK_PTR
, next_bb
)
908 if (!gimple_seq_empty_p (phi_nodes (bb
)))
912 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
913 eliminate_phi (e
, g
);
914 set_phi_nodes (bb
, NULL
);
915 /* We can't redirect EH edges in RTL land, so we need to do this
916 here. Redirection happens only when splitting is necessary,
917 which it is only for critical edges, normally. For EH edges
918 it might also be necessary when the successor has more than
919 one predecessor. In that case the edge is either required to
920 be fallthru (which EH edges aren't), or the predecessor needs
921 to end with a jump (which again, isn't the case with EH edges).
922 Hence, split all EH edges on which we inserted instructions
923 and whose successor has multiple predecessors. */
924 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
926 if (e
->insns
.r
&& (e
->flags
& EDGE_EH
)
927 && !single_pred_p (e
->dest
))
929 rtx insns
= e
->insns
.r
;
931 e
->insns
.r
= NULL_RTX
;
933 single_pred_edge (bb
)->insns
.r
= insns
;
940 delete_elim_graph (g
);
944 /* Remove the ssa-names in the current function and translate them into normal
945 compiler variables. PERFORM_TER is true if Temporary Expression Replacement
946 should also be used. */
949 remove_ssa_form (bool perform_ter
, struct ssaexpand
*sa
)
951 bitmap values
= NULL
;
955 map
= coalesce_ssa_name ();
957 /* Return to viewing the variable list as just all reference variables after
958 coalescing has been performed. */
959 partition_view_normal (map
, false);
961 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
963 fprintf (dump_file
, "After Coalescing:\n");
964 dump_var_map (dump_file
, map
);
969 values
= find_replaceable_exprs (map
);
970 if (values
&& dump_file
&& (dump_flags
& TDF_DETAILS
))
971 dump_replaceable_exprs (dump_file
, values
);
978 sa
->partition_has_default_def
= BITMAP_ALLOC (NULL
);
979 for (i
= 1; i
< num_ssa_names
; i
++)
981 tree t
= ssa_name (i
);
982 if (t
&& SSA_NAME_IS_DEFAULT_DEF (t
))
984 int p
= var_to_partition (map
, t
);
985 if (p
!= NO_PARTITION
)
986 bitmap_set_bit (sa
->partition_has_default_def
, p
);
992 /* If not already done so for basic block BB, assign increasing uids
993 to each of its instructions. */
996 maybe_renumber_stmts_bb (basic_block bb
)
999 gimple_stmt_iterator gsi
;
1004 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1006 gimple stmt
= gsi_stmt (gsi
);
1007 gimple_set_uid (stmt
, i
);
1013 /* Return true if we can determine that the SSA_NAMEs RESULT (a result
1014 of a PHI node) and ARG (one of its arguments) conflict. Return false
1015 otherwise, also when we simply aren't sure. */
1018 trivially_conflicts_p (basic_block bb
, tree result
, tree arg
)
1021 imm_use_iterator imm_iter
;
1022 gimple defa
= SSA_NAME_DEF_STMT (arg
);
1024 /* If ARG isn't defined in the same block it's too complicated for
1026 if (gimple_bb (defa
) != bb
)
1029 FOR_EACH_IMM_USE_FAST (use
, imm_iter
, result
)
1031 gimple use_stmt
= USE_STMT (use
);
1032 if (is_gimple_debug (use_stmt
))
1034 /* Now, if there's a use of RESULT that lies outside this basic block,
1035 then there surely is a conflict with ARG. */
1036 if (gimple_bb (use_stmt
) != bb
)
1038 if (gimple_code (use_stmt
) == GIMPLE_PHI
)
1040 /* The use now is in a real stmt of BB, so if ARG was defined
1041 in a PHI node (like RESULT) both conflict. */
1042 if (gimple_code (defa
) == GIMPLE_PHI
)
1044 maybe_renumber_stmts_bb (bb
);
1045 /* If the use of RESULT occurs after the definition of ARG,
1046 the two conflict too. */
1047 if (gimple_uid (defa
) < gimple_uid (use_stmt
))
1055 /* Search every PHI node for arguments associated with backedges which
1056 we can trivially determine will need a copy (the argument is either
1057 not an SSA_NAME or the argument has a different underlying variable
1058 than the PHI result).
1060 Insert a copy from the PHI argument to a new destination at the
1061 end of the block with the backedge to the top of the loop. Update
1062 the PHI argument to reference this new destination. */
1065 insert_backedge_copies (void)
1068 gimple_stmt_iterator gsi
;
1070 mark_dfs_back_edges ();
1074 /* Mark block as possibly needing calculation of UIDs. */
1077 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1079 gimple phi
= gsi_stmt (gsi
);
1080 tree result
= gimple_phi_result (phi
);
1083 if (virtual_operand_p (result
))
1086 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1088 tree arg
= gimple_phi_arg_def (phi
, i
);
1089 edge e
= gimple_phi_arg_edge (phi
, i
);
1091 /* If the argument is not an SSA_NAME, then we will need a
1092 constant initialization. If the argument is an SSA_NAME with
1093 a different underlying variable then a copy statement will be
1095 if ((e
->flags
& EDGE_DFS_BACK
)
1096 && (TREE_CODE (arg
) != SSA_NAME
1097 || SSA_NAME_VAR (arg
) != SSA_NAME_VAR (result
)
1098 || trivially_conflicts_p (bb
, result
, arg
)))
1101 gimple stmt
, last
= NULL
;
1102 gimple_stmt_iterator gsi2
;
1104 gsi2
= gsi_last_bb (gimple_phi_arg_edge (phi
, i
)->src
);
1105 if (!gsi_end_p (gsi2
))
1106 last
= gsi_stmt (gsi2
);
1108 /* In theory the only way we ought to get back to the
1109 start of a loop should be with a COND_EXPR or GOTO_EXPR.
1110 However, better safe than sorry.
1111 If the block ends with a control statement or
1112 something that might throw, then we have to
1113 insert this assignment before the last
1114 statement. Else insert it after the last statement. */
1115 if (last
&& stmt_ends_bb_p (last
))
1117 /* If the last statement in the block is the definition
1118 site of the PHI argument, then we can't insert
1119 anything after it. */
1120 if (TREE_CODE (arg
) == SSA_NAME
1121 && SSA_NAME_DEF_STMT (arg
) == last
)
1125 /* Create a new instance of the underlying variable of the
1127 name
= copy_ssa_name (result
, NULL
);
1128 stmt
= gimple_build_assign (name
,
1129 gimple_phi_arg_def (phi
, i
));
1131 /* copy location if present. */
1132 if (gimple_phi_arg_has_location (phi
, i
))
1133 gimple_set_location (stmt
,
1134 gimple_phi_arg_location (phi
, i
));
1136 /* Insert the new statement into the block and update
1138 if (last
&& stmt_ends_bb_p (last
))
1139 gsi_insert_before (&gsi2
, stmt
, GSI_NEW_STMT
);
1141 gsi_insert_after (&gsi2
, stmt
, GSI_NEW_STMT
);
1142 SET_PHI_ARG_DEF (phi
, i
, name
);
1147 /* Unmark this block again. */
1152 /* Free all memory associated with going out of SSA form. SA is
1153 the outof-SSA info object. */
1156 finish_out_of_ssa (struct ssaexpand
*sa
)
1158 free (sa
->partition_to_pseudo
);
1160 BITMAP_FREE (sa
->values
);
1161 delete_var_map (sa
->map
);
1162 BITMAP_FREE (sa
->partition_has_default_def
);
1163 memset (sa
, 0, sizeof *sa
);
1166 /* Take the current function out of SSA form, translating PHIs as described in
1167 R. Morgan, ``Building an Optimizing Compiler'',
1168 Butterworth-Heinemann, Boston, MA, 1998. pp 176-186. */
1171 rewrite_out_of_ssa (struct ssaexpand
*sa
)
1173 /* If elimination of a PHI requires inserting a copy on a backedge,
1174 then we will have to split the backedge which has numerous
1175 undesirable performance effects.
1177 A significant number of such cases can be handled here by inserting
1178 copies into the loop itself. */
1179 insert_backedge_copies ();
1182 /* Eliminate PHIs which are of no use, such as virtual or dead phis. */
1183 eliminate_useless_phis ();
1185 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1186 gimple_dump_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);
1188 remove_ssa_form (flag_tree_ter
, sa
);
1190 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
1191 gimple_dump_cfg (dump_file
, dump_flags
& ~TDF_DETAILS
);