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"
45 /* This file implements a generic value propagation engine based on
46 the same propagation used by the SSA-CCP algorithm [1].
48 Propagation is performed by simulating the execution of every
49 statement that produces the value being propagated. Simulation
52 1- Initially, all edges of the CFG are marked not executable and
53 the CFG worklist is seeded with all the statements in the entry
54 basic block (block 0).
56 2- Every statement S is simulated with a call to the call-back
57 function SSA_PROP_VISIT_STMT. This evaluation may produce 3
60 SSA_PROP_NOT_INTERESTING: Statement S produces nothing of
61 interest and does not affect any of the work lists.
63 SSA_PROP_VARYING: The value produced by S cannot be determined
64 at compile time. Further simulation of S is not required.
65 If S is a conditional jump, all the outgoing edges for the
66 block are considered executable and added to the work
69 SSA_PROP_INTERESTING: S produces a value that can be computed
70 at compile time. Its result can be propagated into the
71 statements that feed from S. Furthermore, if S is a
72 conditional jump, only the edge known to be taken is added
73 to the work list. Edges that are known not to execute are
76 3- PHI nodes are simulated with a call to SSA_PROP_VISIT_PHI. The
77 return value from SSA_PROP_VISIT_PHI has the same semantics as
80 4- Three work lists are kept. Statements are only added to these
81 lists if they produce one of SSA_PROP_INTERESTING or
84 CFG_BLOCKS contains the list of blocks to be simulated.
85 Blocks are added to this list if their incoming edges are
88 VARYING_SSA_EDGES contains the list of statements that feed
89 from statements that produce an SSA_PROP_VARYING result.
90 These are simulated first to speed up processing.
92 INTERESTING_SSA_EDGES contains the list of statements that
93 feed from statements that produce an SSA_PROP_INTERESTING
96 5- Simulation terminates when all three work lists are drained.
98 Before calling ssa_propagate, it is important to clear
99 DONT_SIMULATE_AGAIN for all the statements in the program that
100 should be simulated. This initialization allows an implementation
101 to specify which statements should never be simulated.
103 It is also important to compute def-use information before calling
108 [1] Constant propagation with conditional branches,
109 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
111 [2] Building an Optimizing Compiler,
112 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
114 [3] Advanced Compiler Design and Implementation,
115 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
117 /* Function pointers used to parameterize the propagation engine. */
118 static ssa_prop_visit_stmt_fn ssa_prop_visit_stmt
;
119 static ssa_prop_visit_phi_fn ssa_prop_visit_phi
;
121 /* Use the TREE_DEPRECATED bitflag to mark statements that have been
122 added to one of the SSA edges worklists. This flag is used to
123 avoid visiting statements unnecessarily when draining an SSA edge
124 worklist. If while simulating a basic block, we find a statement with
125 STMT_IN_SSA_EDGE_WORKLIST set, we clear it to prevent SSA edge
126 processing from visiting it again. */
127 #define STMT_IN_SSA_EDGE_WORKLIST(T) TREE_DEPRECATED (T)
129 /* A bitmap to keep track of executable blocks in the CFG. */
130 static sbitmap executable_blocks
;
132 /* Array of control flow edges on the worklist. */
133 static GTY(()) varray_type cfg_blocks
= NULL
;
135 static unsigned int cfg_blocks_num
= 0;
136 static int cfg_blocks_tail
;
137 static int cfg_blocks_head
;
139 static sbitmap bb_in_list
;
141 /* Worklist of SSA edges which will need reexamination as their
142 definition has changed. SSA edges are def-use edges in the SSA
143 web. For each D-U edge, we store the target statement or PHI node
145 static GTY(()) varray_type interesting_ssa_edges
;
147 /* Identical to INTERESTING_SSA_EDGES. For performance reasons, the
148 list of SSA edges is split into two. One contains all SSA edges
149 who need to be reexamined because their lattice value changed to
150 varying (this worklist), and the other contains all other SSA edges
151 to be reexamined (INTERESTING_SSA_EDGES).
153 Since most values in the program are VARYING, the ideal situation
154 is to move them to that lattice value as quickly as possible.
155 Thus, it doesn't make sense to process any other type of lattice
156 value until all VARYING values are propagated fully, which is one
157 thing using the VARYING worklist achieves. In addition, if we
158 don't use a separate worklist for VARYING edges, we end up with
159 situations where lattice values move from
160 UNDEFINED->INTERESTING->VARYING instead of UNDEFINED->VARYING. */
161 static GTY(()) varray_type varying_ssa_edges
;
164 /* Return true if the block worklist empty. */
167 cfg_blocks_empty_p (void)
169 return (cfg_blocks_num
== 0);
173 /* Add a basic block to the worklist. */
176 cfg_blocks_add (basic_block bb
)
178 if (bb
== ENTRY_BLOCK_PTR
|| bb
== EXIT_BLOCK_PTR
)
181 if (TEST_BIT (bb_in_list
, bb
->index
))
184 if (cfg_blocks_empty_p ())
186 cfg_blocks_tail
= cfg_blocks_head
= 0;
192 if (cfg_blocks_num
> VARRAY_SIZE (cfg_blocks
))
194 /* We have to grow the array now. Adjust to queue to occupy the
195 full space of the original array. */
196 cfg_blocks_tail
= VARRAY_SIZE (cfg_blocks
);
198 VARRAY_GROW (cfg_blocks
, 2 * VARRAY_SIZE (cfg_blocks
));
201 cfg_blocks_tail
= (cfg_blocks_tail
+ 1) % VARRAY_SIZE (cfg_blocks
);
204 VARRAY_BB (cfg_blocks
, cfg_blocks_tail
) = bb
;
205 SET_BIT (bb_in_list
, bb
->index
);
209 /* Remove a block from the worklist. */
212 cfg_blocks_get (void)
216 bb
= VARRAY_BB (cfg_blocks
, cfg_blocks_head
);
218 gcc_assert (!cfg_blocks_empty_p ());
221 cfg_blocks_head
= (cfg_blocks_head
+ 1) % VARRAY_SIZE (cfg_blocks
);
223 RESET_BIT (bb_in_list
, bb
->index
);
229 /* We have just defined a new value for VAR. If IS_VARYING is true,
230 add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
231 them to INTERESTING_SSA_EDGES. */
234 add_ssa_edge (tree var
, bool is_varying
)
236 tree stmt
= SSA_NAME_DEF_STMT (var
);
237 dataflow_t df
= get_immediate_uses (stmt
);
238 int num_uses
= num_immediate_uses (df
);
241 for (i
= 0; i
< num_uses
; i
++)
243 tree use_stmt
= immediate_use (df
, i
);
245 if (!DONT_SIMULATE_AGAIN (use_stmt
)
246 && !STMT_IN_SSA_EDGE_WORKLIST (use_stmt
))
248 STMT_IN_SSA_EDGE_WORKLIST (use_stmt
) = 1;
250 VARRAY_PUSH_TREE (varying_ssa_edges
, use_stmt
);
252 VARRAY_PUSH_TREE (interesting_ssa_edges
, use_stmt
);
258 /* Add edge E to the control flow worklist. */
261 add_control_edge (edge e
)
263 basic_block bb
= e
->dest
;
264 if (bb
== EXIT_BLOCK_PTR
)
267 /* If the edge had already been executed, skip it. */
268 if (e
->flags
& EDGE_EXECUTABLE
)
271 e
->flags
|= EDGE_EXECUTABLE
;
273 /* If the block is already in the list, we're done. */
274 if (TEST_BIT (bb_in_list
, bb
->index
))
279 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
280 fprintf (dump_file
, "Adding Destination of edge (%d -> %d) to worklist\n\n",
281 e
->src
->index
, e
->dest
->index
);
285 /* Simulate the execution of STMT and update the work lists accordingly. */
288 simulate_stmt (tree stmt
)
290 enum ssa_prop_result val
= SSA_PROP_NOT_INTERESTING
;
291 edge taken_edge
= NULL
;
292 tree output_name
= NULL_TREE
;
294 /* Don't bother visiting statements that are already
295 considered varying by the propagator. */
296 if (DONT_SIMULATE_AGAIN (stmt
))
299 if (TREE_CODE (stmt
) == PHI_NODE
)
301 val
= ssa_prop_visit_phi (stmt
);
302 output_name
= PHI_RESULT (stmt
);
305 val
= ssa_prop_visit_stmt (stmt
, &taken_edge
, &output_name
);
307 if (val
== SSA_PROP_VARYING
)
309 DONT_SIMULATE_AGAIN (stmt
) = 1;
311 /* If the statement produced a new varying value, add the SSA
312 edges coming out of OUTPUT_NAME. */
314 add_ssa_edge (output_name
, true);
316 /* If STMT transfers control out of its basic block, add
317 all outgoing edges to the work list. */
318 if (stmt_ends_bb_p (stmt
))
321 basic_block bb
= bb_for_stmt (stmt
);
322 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
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. */
345 process_ssa_edge_worklist (varray_type
*worklist
)
347 /* Drain the entire worklist. */
348 while (VARRAY_ACTIVE_SIZE (*worklist
) > 0)
352 /* Pull the statement to simulate off the worklist. */
353 tree stmt
= VARRAY_TOP_TREE (*worklist
);
354 VARRAY_POP (*worklist
);
356 /* If this statement was already visited by simulate_block, then
357 we don't need to visit it again here. */
358 if (!STMT_IN_SSA_EDGE_WORKLIST (stmt
))
361 /* STMT is no longer in a worklist. */
362 STMT_IN_SSA_EDGE_WORKLIST (stmt
) = 0;
364 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
366 fprintf (dump_file
, "\nSimulating statement (from ssa_edges): ");
367 print_generic_stmt (dump_file
, stmt
, dump_flags
);
370 bb
= bb_for_stmt (stmt
);
372 /* PHI nodes are always visited, regardless of whether or not
373 the destination block is executable. Otherwise, visit the
374 statement only if its block is marked executable. */
375 if (TREE_CODE (stmt
) == PHI_NODE
376 || TEST_BIT (executable_blocks
, bb
->index
))
377 simulate_stmt (stmt
);
382 /* Simulate the execution of BLOCK. Evaluate the statement associated
383 with each variable reference inside the block. */
386 simulate_block (basic_block block
)
390 /* There is nothing to do for the exit block. */
391 if (block
== EXIT_BLOCK_PTR
)
394 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
395 fprintf (dump_file
, "\nSimulating block %d\n", block
->index
);
397 /* Always simulate PHI nodes, even if we have simulated this block
399 for (phi
= phi_nodes (block
); phi
; phi
= PHI_CHAIN (phi
))
402 /* If this is the first time we've simulated this block, then we
403 must simulate each of its statements. */
404 if (!TEST_BIT (executable_blocks
, block
->index
))
406 block_stmt_iterator j
;
407 unsigned int normal_edge_count
;
410 /* Note that we have simulated this block. */
411 SET_BIT (executable_blocks
, block
->index
);
413 for (j
= bsi_start (block
); !bsi_end_p (j
); bsi_next (&j
))
415 tree stmt
= bsi_stmt (j
);
417 /* If this statement is already in the worklist then
418 "cancel" it. The reevaluation implied by the worklist
419 entry will produce the same value we generate here and
420 thus reevaluating it again from the worklist is
422 if (STMT_IN_SSA_EDGE_WORKLIST (stmt
))
423 STMT_IN_SSA_EDGE_WORKLIST (stmt
) = 0;
425 simulate_stmt (stmt
);
428 /* We can not predict when abnormal edges will be executed, so
429 once a block is considered executable, we consider any
430 outgoing abnormal edges as executable.
432 At the same time, if this block has only one successor that is
433 reached by non-abnormal edges, then add that successor to the
435 normal_edge_count
= 0;
437 for (e
= block
->succ
; e
; e
= e
->succ_next
)
439 if (e
->flags
& EDGE_ABNORMAL
)
440 add_control_edge (e
);
448 if (normal_edge_count
== 1)
449 add_control_edge (normal_edge
);
454 /* Initialize local data structures and work lists. */
462 /* Worklists of SSA edges. */
463 VARRAY_TREE_INIT (interesting_ssa_edges
, 20, "interesting_ssa_edges");
464 VARRAY_TREE_INIT (varying_ssa_edges
, 20, "varying_ssa_edges");
466 executable_blocks
= sbitmap_alloc (last_basic_block
);
467 sbitmap_zero (executable_blocks
);
469 bb_in_list
= sbitmap_alloc (last_basic_block
);
470 sbitmap_zero (bb_in_list
);
472 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
473 dump_immediate_uses (dump_file
);
475 VARRAY_BB_INIT (cfg_blocks
, 20, "cfg_blocks");
477 /* Initially assume that every edge in the CFG is not executable. */
480 block_stmt_iterator si
;
482 for (si
= bsi_start (bb
); !bsi_end_p (si
); bsi_next (&si
))
483 STMT_IN_SSA_EDGE_WORKLIST (bsi_stmt (si
)) = 0;
485 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
486 e
->flags
&= ~EDGE_EXECUTABLE
;
489 /* Seed the algorithm by adding the successors of the entry block to the
491 for (e
= ENTRY_BLOCK_PTR
->succ
; e
; e
= e
->succ_next
)
493 if (e
->dest
!= EXIT_BLOCK_PTR
)
495 e
->flags
|= EDGE_EXECUTABLE
;
496 cfg_blocks_add (e
->dest
);
502 /* Free allocated storage. */
507 interesting_ssa_edges
= NULL
;
508 varying_ssa_edges
= NULL
;
510 sbitmap_free (bb_in_list
);
511 sbitmap_free (executable_blocks
);
516 /* Get the main expression from statement STMT. */
521 enum tree_code code
= TREE_CODE (stmt
);
526 stmt
= TREE_OPERAND (stmt
, 0);
527 if (!stmt
|| TREE_CODE (stmt
) != MODIFY_EXPR
)
532 stmt
= TREE_OPERAND (stmt
, 1);
533 if (TREE_CODE (stmt
) == WITH_SIZE_EXPR
)
534 return TREE_OPERAND (stmt
, 0);
539 return COND_EXPR_COND (stmt
);
541 return SWITCH_COND (stmt
);
543 return GOTO_DESTINATION (stmt
);
545 return LABEL_EXPR_LABEL (stmt
);
553 /* Set the main expression of *STMT_P to EXPR. If EXPR is not a valid
554 GIMPLE expression no changes are done and the function returns
558 set_rhs (tree
*stmt_p
, tree expr
)
560 tree stmt
= *stmt_p
, op
;
561 enum tree_code code
= TREE_CODE (expr
);
566 /* Verify the constant folded result is valid gimple. */
567 if (TREE_CODE_CLASS (code
) == '2')
569 if (!is_gimple_val (TREE_OPERAND (expr
, 0))
570 || !is_gimple_val (TREE_OPERAND (expr
, 1)))
573 else if (TREE_CODE_CLASS (code
) == '1')
575 if (!is_gimple_val (TREE_OPERAND (expr
, 0)))
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 || VARRAY_ACTIVE_SIZE (interesting_ssa_edges
) > 0
652 || VARRAY_ACTIVE_SIZE (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"