1 /* Generic SSA value propagation engine.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
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 the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "coretypes.h"
31 #include "basic-block.h"
36 #include "diagnostic.h"
38 #include "tree-dump.h"
39 #include "tree-flow.h"
40 #include "tree-pass.h"
41 #include "tree-ssa-propagate.h"
42 #include "langhooks.h"
46 /* This file implements a generic value propagation engine based on
47 the same propagation used by the SSA-CCP algorithm [1].
49 Propagation is performed by simulating the execution of every
50 statement that produces the value being propagated. Simulation
53 1- Initially, all edges of the CFG are marked not executable and
54 the CFG worklist is seeded with all the statements in the entry
55 basic block (block 0).
57 2- Every statement S is simulated with a call to the call-back
58 function SSA_PROP_VISIT_STMT. This evaluation may produce 3
61 SSA_PROP_NOT_INTERESTING: Statement S produces nothing of
62 interest and does not affect any of the work lists.
64 SSA_PROP_VARYING: The value produced by S cannot be determined
65 at compile time. Further simulation of S is not required.
66 If S is a conditional jump, all the outgoing edges for the
67 block are considered executable and added to the work
70 SSA_PROP_INTERESTING: S produces a value that can be computed
71 at compile time. Its result can be propagated into the
72 statements that feed from S. Furthermore, if S is a
73 conditional jump, only the edge known to be taken is added
74 to the work list. Edges that are known not to execute are
77 3- PHI nodes are simulated with a call to SSA_PROP_VISIT_PHI. The
78 return value from SSA_PROP_VISIT_PHI has the same semantics as
81 4- Three work lists are kept. Statements are only added to these
82 lists if they produce one of SSA_PROP_INTERESTING or
85 CFG_BLOCKS contains the list of blocks to be simulated.
86 Blocks are added to this list if their incoming edges are
89 VARYING_SSA_EDGES contains the list of statements that feed
90 from statements that produce an SSA_PROP_VARYING result.
91 These are simulated first to speed up processing.
93 INTERESTING_SSA_EDGES contains the list of statements that
94 feed from statements that produce an SSA_PROP_INTERESTING
97 5- Simulation terminates when all three work lists are drained.
99 Before calling ssa_propagate, it is important to clear
100 DONT_SIMULATE_AGAIN for all the statements in the program that
101 should be simulated. This initialization allows an implementation
102 to specify which statements should never be simulated.
104 It is also important to compute def-use information before calling
109 [1] Constant propagation with conditional branches,
110 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
112 [2] Building an Optimizing Compiler,
113 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
115 [3] Advanced Compiler Design and Implementation,
116 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
118 /* Function pointers used to parameterize the propagation engine. */
119 static ssa_prop_visit_stmt_fn ssa_prop_visit_stmt
;
120 static ssa_prop_visit_phi_fn ssa_prop_visit_phi
;
122 /* Use the TREE_DEPRECATED bitflag to mark statements that have been
123 added to one of the SSA edges worklists. This flag is used to
124 avoid visiting statements unnecessarily when draining an SSA edge
125 worklist. If while simulating a basic block, we find a statement with
126 STMT_IN_SSA_EDGE_WORKLIST set, we clear it to prevent SSA edge
127 processing from visiting it again. */
128 #define STMT_IN_SSA_EDGE_WORKLIST(T) TREE_DEPRECATED (T)
130 /* A bitmap to keep track of executable blocks in the CFG. */
131 static sbitmap executable_blocks
;
133 /* Array of control flow edges on the worklist. */
134 static GTY(()) varray_type cfg_blocks
= NULL
;
136 static unsigned int cfg_blocks_num
= 0;
137 static int cfg_blocks_tail
;
138 static int cfg_blocks_head
;
140 static sbitmap bb_in_list
;
142 /* Worklist of SSA edges which will need reexamination as their
143 definition has changed. SSA edges are def-use edges in the SSA
144 web. For each D-U edge, we store the target statement or PHI node
146 static GTY(()) VEC(tree
) *interesting_ssa_edges
;
148 /* Identical to INTERESTING_SSA_EDGES. For performance reasons, the
149 list of SSA edges is split into two. One contains all SSA edges
150 who need to be reexamined because their lattice value changed to
151 varying (this worklist), and the other contains all other SSA edges
152 to be reexamined (INTERESTING_SSA_EDGES).
154 Since most values in the program are VARYING, the ideal situation
155 is to move them to that lattice value as quickly as possible.
156 Thus, it doesn't make sense to process any other type of lattice
157 value until all VARYING values are propagated fully, which is one
158 thing using the VARYING worklist achieves. In addition, if we
159 don't use a separate worklist for VARYING edges, we end up with
160 situations where lattice values move from
161 UNDEFINED->INTERESTING->VARYING instead of UNDEFINED->VARYING. */
162 static GTY(()) VEC(tree
) *varying_ssa_edges
;
165 /* Return true if the block worklist empty. */
168 cfg_blocks_empty_p (void)
170 return (cfg_blocks_num
== 0);
174 /* Add a basic block to the worklist. The block must not be already
175 in the worklist, and it must not be the ENTRY or EXIT block. */
178 cfg_blocks_add (basic_block bb
)
180 gcc_assert (bb
!= ENTRY_BLOCK_PTR
&& bb
!= EXIT_BLOCK_PTR
);
181 gcc_assert (!TEST_BIT (bb_in_list
, bb
->index
));
183 if (cfg_blocks_empty_p ())
185 cfg_blocks_tail
= cfg_blocks_head
= 0;
191 if (cfg_blocks_num
> VARRAY_SIZE (cfg_blocks
))
193 /* We have to grow the array now. Adjust to queue to occupy the
194 full space of the original array. */
195 cfg_blocks_tail
= VARRAY_SIZE (cfg_blocks
);
197 VARRAY_GROW (cfg_blocks
, 2 * VARRAY_SIZE (cfg_blocks
));
200 cfg_blocks_tail
= (cfg_blocks_tail
+ 1) % VARRAY_SIZE (cfg_blocks
);
203 VARRAY_BB (cfg_blocks
, cfg_blocks_tail
) = bb
;
204 SET_BIT (bb_in_list
, bb
->index
);
208 /* Remove a block from the worklist. */
211 cfg_blocks_get (void)
215 bb
= VARRAY_BB (cfg_blocks
, cfg_blocks_head
);
217 gcc_assert (!cfg_blocks_empty_p ());
220 cfg_blocks_head
= (cfg_blocks_head
+ 1) % VARRAY_SIZE (cfg_blocks
);
222 RESET_BIT (bb_in_list
, bb
->index
);
228 /* We have just defined a new value for VAR. If IS_VARYING is true,
229 add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
230 them to INTERESTING_SSA_EDGES. */
233 add_ssa_edge (tree var
, bool is_varying
)
235 tree stmt
= SSA_NAME_DEF_STMT (var
);
236 dataflow_t df
= get_immediate_uses (stmt
);
237 int num_uses
= num_immediate_uses (df
);
240 for (i
= 0; i
< num_uses
; i
++)
242 tree use_stmt
= immediate_use (df
, i
);
244 if (!DONT_SIMULATE_AGAIN (use_stmt
)
245 && !STMT_IN_SSA_EDGE_WORKLIST (use_stmt
))
247 STMT_IN_SSA_EDGE_WORKLIST (use_stmt
) = 1;
249 VEC_safe_push (tree
, varying_ssa_edges
, use_stmt
);
251 VEC_safe_push (tree
, interesting_ssa_edges
, use_stmt
);
257 /* Add edge E to the control flow worklist. */
260 add_control_edge (edge e
)
262 basic_block bb
= e
->dest
;
263 if (bb
== EXIT_BLOCK_PTR
)
266 /* If the edge had already been executed, skip it. */
267 if (e
->flags
& EDGE_EXECUTABLE
)
270 e
->flags
|= EDGE_EXECUTABLE
;
272 /* If the block is already in the list, we're done. */
273 if (TEST_BIT (bb_in_list
, bb
->index
))
278 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
279 fprintf (dump_file
, "Adding Destination of edge (%d -> %d) to worklist\n\n",
280 e
->src
->index
, e
->dest
->index
);
284 /* Simulate the execution of STMT and update the work lists accordingly. */
287 simulate_stmt (tree stmt
)
289 enum ssa_prop_result val
= SSA_PROP_NOT_INTERESTING
;
290 edge taken_edge
= NULL
;
291 tree output_name
= NULL_TREE
;
293 /* Don't bother visiting statements that are already
294 considered varying by the propagator. */
295 if (DONT_SIMULATE_AGAIN (stmt
))
298 if (TREE_CODE (stmt
) == PHI_NODE
)
300 val
= ssa_prop_visit_phi (stmt
);
301 output_name
= PHI_RESULT (stmt
);
304 val
= ssa_prop_visit_stmt (stmt
, &taken_edge
, &output_name
);
306 if (val
== SSA_PROP_VARYING
)
308 DONT_SIMULATE_AGAIN (stmt
) = 1;
310 /* If the statement produced a new varying value, add the SSA
311 edges coming out of OUTPUT_NAME. */
313 add_ssa_edge (output_name
, true);
315 /* If STMT transfers control out of its basic block, add
316 all outgoing edges to the work list. */
317 if (stmt_ends_bb_p (stmt
))
321 basic_block bb
= bb_for_stmt (stmt
);
322 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
323 add_control_edge (e
);
326 else if (val
== SSA_PROP_INTERESTING
)
328 /* If the statement produced new value, add the SSA edges coming
329 out of OUTPUT_NAME. */
331 add_ssa_edge (output_name
, false);
333 /* If we know which edge is going to be taken out of this block,
334 add it to the CFG work list. */
336 add_control_edge (taken_edge
);
340 /* Process an SSA edge worklist. WORKLIST is the SSA edge worklist to
341 drain. This pops statements off the given WORKLIST and processes
342 them until there are no more statements on WORKLIST.
343 We take a pointer to WORKLIST because it may be reallocated when an
344 SSA edge is added to it in simulate_stmt. */
347 process_ssa_edge_worklist (VEC(tree
) **worklist
)
349 /* Drain the entire worklist. */
350 while (VEC_length (tree
, *worklist
) > 0)
354 /* Pull the statement to simulate off the worklist. */
355 tree stmt
= VEC_pop (tree
, *worklist
);
357 /* If this statement was already visited by simulate_block, then
358 we don't need to visit it again here. */
359 if (!STMT_IN_SSA_EDGE_WORKLIST (stmt
))
362 /* STMT is no longer in a worklist. */
363 STMT_IN_SSA_EDGE_WORKLIST (stmt
) = 0;
365 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
367 fprintf (dump_file
, "\nSimulating statement (from ssa_edges): ");
368 print_generic_stmt (dump_file
, stmt
, dump_flags
);
371 bb
= bb_for_stmt (stmt
);
373 /* PHI nodes are always visited, regardless of whether or not
374 the destination block is executable. Otherwise, visit the
375 statement only if its block is marked executable. */
376 if (TREE_CODE (stmt
) == PHI_NODE
377 || TEST_BIT (executable_blocks
, bb
->index
))
378 simulate_stmt (stmt
);
383 /* Simulate the execution of BLOCK. Evaluate the statement associated
384 with each variable reference inside the block. */
387 simulate_block (basic_block block
)
391 /* There is nothing to do for the exit block. */
392 if (block
== EXIT_BLOCK_PTR
)
395 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
396 fprintf (dump_file
, "\nSimulating block %d\n", block
->index
);
398 /* Always simulate PHI nodes, even if we have simulated this block
400 for (phi
= phi_nodes (block
); phi
; phi
= PHI_CHAIN (phi
))
403 /* If this is the first time we've simulated this block, then we
404 must simulate each of its statements. */
405 if (!TEST_BIT (executable_blocks
, block
->index
))
407 block_stmt_iterator j
;
408 unsigned int normal_edge_count
;
412 /* Note that we have simulated this block. */
413 SET_BIT (executable_blocks
, block
->index
);
415 for (j
= bsi_start (block
); !bsi_end_p (j
); bsi_next (&j
))
417 tree stmt
= bsi_stmt (j
);
419 /* If this statement is already in the worklist then
420 "cancel" it. The reevaluation implied by the worklist
421 entry will produce the same value we generate here and
422 thus reevaluating it again from the worklist is
424 if (STMT_IN_SSA_EDGE_WORKLIST (stmt
))
425 STMT_IN_SSA_EDGE_WORKLIST (stmt
) = 0;
427 simulate_stmt (stmt
);
430 /* We can not predict when abnormal edges will be executed, so
431 once a block is considered executable, we consider any
432 outgoing abnormal edges as executable.
434 At the same time, if this block has only one successor that is
435 reached by non-abnormal edges, then add that successor to the
437 normal_edge_count
= 0;
439 FOR_EACH_EDGE (e
, ei
, block
->succs
)
441 if (e
->flags
& EDGE_ABNORMAL
)
442 add_control_edge (e
);
450 if (normal_edge_count
== 1)
451 add_control_edge (normal_edge
);
456 /* Initialize local data structures and work lists. */
465 /* Worklists of SSA edges. */
466 interesting_ssa_edges
= VEC_alloc (tree
, 20);
467 varying_ssa_edges
= VEC_alloc (tree
, 20);
469 executable_blocks
= sbitmap_alloc (last_basic_block
);
470 sbitmap_zero (executable_blocks
);
472 bb_in_list
= sbitmap_alloc (last_basic_block
);
473 sbitmap_zero (bb_in_list
);
475 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
476 dump_immediate_uses (dump_file
);
478 VARRAY_BB_INIT (cfg_blocks
, 20, "cfg_blocks");
480 /* Initially assume that every edge in the CFG is not executable
481 (including the edges coming out of ENTRY_BLOCK_PTR). */
484 block_stmt_iterator si
;
486 for (si
= bsi_start (bb
); !bsi_end_p (si
); bsi_next (&si
))
487 STMT_IN_SSA_EDGE_WORKLIST (bsi_stmt (si
)) = 0;
489 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
490 e
->flags
&= ~EDGE_EXECUTABLE
;
493 /* Seed the algorithm by adding the successors of the entry block to the
495 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR
->succs
)
496 add_control_edge (e
);
500 /* Free allocated storage. */
505 VEC_free (tree
, interesting_ssa_edges
);
506 VEC_free (tree
, varying_ssa_edges
);
508 sbitmap_free (bb_in_list
);
509 sbitmap_free (executable_blocks
);
514 /* Get the main expression from statement STMT. */
519 enum tree_code code
= TREE_CODE (stmt
);
524 stmt
= TREE_OPERAND (stmt
, 0);
525 if (!stmt
|| TREE_CODE (stmt
) != MODIFY_EXPR
)
530 stmt
= TREE_OPERAND (stmt
, 1);
531 if (TREE_CODE (stmt
) == WITH_SIZE_EXPR
)
532 return TREE_OPERAND (stmt
, 0);
537 return COND_EXPR_COND (stmt
);
539 return SWITCH_COND (stmt
);
541 return GOTO_DESTINATION (stmt
);
543 return LABEL_EXPR_LABEL (stmt
);
551 /* Set the main expression of *STMT_P to EXPR. If EXPR is not a valid
552 GIMPLE expression no changes are done and the function returns
556 set_rhs (tree
*stmt_p
, tree expr
)
558 tree stmt
= *stmt_p
, op
;
559 enum tree_code code
= TREE_CODE (expr
);
564 /* Verify the constant folded result is valid gimple. */
565 if (TREE_CODE_CLASS (code
) == tcc_binary
)
567 if (!is_gimple_val (TREE_OPERAND (expr
, 0))
568 || !is_gimple_val (TREE_OPERAND (expr
, 1)))
571 else if (TREE_CODE_CLASS (code
) == tcc_unary
)
573 if (!is_gimple_val (TREE_OPERAND (expr
, 0)))
576 else if (code
== COMPOUND_EXPR
)
579 switch (TREE_CODE (stmt
))
582 op
= TREE_OPERAND (stmt
, 0);
583 if (TREE_CODE (op
) != MODIFY_EXPR
)
585 TREE_OPERAND (stmt
, 0) = expr
;
592 op
= TREE_OPERAND (stmt
, 1);
593 if (TREE_CODE (op
) == WITH_SIZE_EXPR
)
595 TREE_OPERAND (stmt
, 1) = expr
;
599 COND_EXPR_COND (stmt
) = expr
;
602 SWITCH_COND (stmt
) = expr
;
605 GOTO_DESTINATION (stmt
) = expr
;
608 LABEL_EXPR_LABEL (stmt
) = expr
;
612 /* Replace the whole statement with EXPR. If EXPR has no side
613 effects, then replace *STMT_P with an empty statement. */
614 ann
= stmt_ann (stmt
);
615 *stmt_p
= TREE_SIDE_EFFECTS (expr
) ? expr
: build_empty_stmt ();
616 (*stmt_p
)->common
.ann
= (tree_ann_t
) ann
;
618 if (TREE_SIDE_EFFECTS (expr
))
620 /* Fix all the SSA_NAMEs created by *STMT_P to point to its new
622 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_ALL_DEFS
)
624 if (TREE_CODE (var
) == SSA_NAME
)
625 SSA_NAME_DEF_STMT (var
) = *stmt_p
;
635 /* Entry point to the propagation engine.
637 VISIT_STMT is called for every statement visited.
638 VISIT_PHI is called for every PHI node visited. */
641 ssa_propagate (ssa_prop_visit_stmt_fn visit_stmt
,
642 ssa_prop_visit_phi_fn visit_phi
)
644 ssa_prop_visit_stmt
= visit_stmt
;
645 ssa_prop_visit_phi
= visit_phi
;
649 /* Iterate until the worklists are empty. */
650 while (!cfg_blocks_empty_p ()
651 || VEC_length (tree
, interesting_ssa_edges
) > 0
652 || VEC_length (tree
, varying_ssa_edges
) > 0)
654 if (!cfg_blocks_empty_p ())
656 /* Pull the next block to simulate off the worklist. */
657 basic_block dest_block
= cfg_blocks_get ();
658 simulate_block (dest_block
);
661 /* In order to move things to varying as quickly as
662 possible,process the VARYING_SSA_EDGES worklist first. */
663 process_ssa_edge_worklist (&varying_ssa_edges
);
665 /* Now process the INTERESTING_SSA_EDGES worklist. */
666 process_ssa_edge_worklist (&interesting_ssa_edges
);
672 #include "gt-tree-ssa-propagate.h"