2004-09-17 Jeffrey D. Oldham <oldham@codesourcery.com>
[official-gcc.git] / gcc / tree-ssa-propagate.c
blobffb7c9c00b01b5fde787820c4994d35773f62b07
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
10 later version.
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
15 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 the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "flags.h"
28 #include "rtl.h"
29 #include "tm_p.h"
30 #include "ggc.h"
31 #include "basic-block.h"
32 #include "output.h"
33 #include "errors.h"
34 #include "expr.h"
35 #include "function.h"
36 #include "diagnostic.h"
37 #include "timevar.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
50 proceeds as follows:
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
58 results:
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
67 list.
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
74 never simulated.
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
78 described in #2.
80 4- Three work lists are kept. Statements are only added to these
81 lists if they produce one of SSA_PROP_INTERESTING or
82 SSA_PROP_VARYING.
84 CFG_BLOCKS contains the list of blocks to be simulated.
85 Blocks are added to this list if their incoming edges are
86 found executable.
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
94 result.
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
104 ssa_propagate.
106 References:
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
144 U. */
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. */
166 static inline bool
167 cfg_blocks_empty_p (void)
169 return (cfg_blocks_num == 0);
173 /* Add a basic block to the worklist. */
175 static void
176 cfg_blocks_add (basic_block bb)
178 if (bb == ENTRY_BLOCK_PTR || bb == EXIT_BLOCK_PTR)
179 return;
181 if (TEST_BIT (bb_in_list, bb->index))
182 return;
184 if (cfg_blocks_empty_p ())
186 cfg_blocks_tail = cfg_blocks_head = 0;
187 cfg_blocks_num = 1;
189 else
191 cfg_blocks_num++;
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);
197 cfg_blocks_head = 0;
198 VARRAY_GROW (cfg_blocks, 2 * VARRAY_SIZE (cfg_blocks));
200 else
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. */
211 static basic_block
212 cfg_blocks_get (void)
214 basic_block bb;
216 bb = VARRAY_BB (cfg_blocks, cfg_blocks_head);
218 gcc_assert (!cfg_blocks_empty_p ());
219 gcc_assert (bb);
221 cfg_blocks_head = (cfg_blocks_head + 1) % VARRAY_SIZE (cfg_blocks);
222 --cfg_blocks_num;
223 RESET_BIT (bb_in_list, bb->index);
225 return bb;
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. */
233 static void
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);
239 int i;
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;
249 if (is_varying)
250 VARRAY_PUSH_TREE (varying_ssa_edges, use_stmt);
251 else
252 VARRAY_PUSH_TREE (interesting_ssa_edges, use_stmt);
258 /* Add edge E to the control flow worklist. */
260 static void
261 add_control_edge (edge e)
263 basic_block bb = e->dest;
264 if (bb == EXIT_BLOCK_PTR)
265 return;
267 /* If the edge had already been executed, skip it. */
268 if (e->flags & EDGE_EXECUTABLE)
269 return;
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))
275 return;
277 cfg_blocks_add (bb);
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. */
287 static void
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))
297 return;
299 if (TREE_CODE (stmt) == PHI_NODE)
301 val = ssa_prop_visit_phi (stmt);
302 output_name = PHI_RESULT (stmt);
304 else
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. */
313 if (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))
320 edge e;
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. */
330 if (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. */
335 if (taken_edge)
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. */
344 static void
345 process_ssa_edge_worklist (varray_type *worklist)
347 /* Drain the entire worklist. */
348 while (VARRAY_ACTIVE_SIZE (*worklist) > 0)
350 basic_block bb;
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))
359 continue;
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. */
385 static void
386 simulate_block (basic_block block)
388 tree phi;
390 /* There is nothing to do for the exit block. */
391 if (block == EXIT_BLOCK_PTR)
392 return;
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
398 before. */
399 for (phi = phi_nodes (block); phi; phi = PHI_CHAIN (phi))
400 simulate_stmt (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;
408 edge e, normal_edge;
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
421 pointless. */
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
434 worklist. */
435 normal_edge_count = 0;
436 normal_edge = NULL;
437 for (e = block->succ; e; e = e->succ_next)
439 if (e->flags & EDGE_ABNORMAL)
440 add_control_edge (e);
441 else
443 normal_edge_count++;
444 normal_edge = e;
448 if (normal_edge_count == 1)
449 add_control_edge (normal_edge);
454 /* Initialize local data structures and work lists. */
456 static void
457 ssa_prop_init (void)
459 edge e;
460 basic_block bb;
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. */
478 FOR_EACH_BB (bb)
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
490 edge worklist. */
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. */
504 static void
505 ssa_prop_fini (void)
507 interesting_ssa_edges = NULL;
508 varying_ssa_edges = NULL;
509 cfg_blocks = NULL;
510 sbitmap_free (bb_in_list);
511 sbitmap_free (executable_blocks);
512 free_df ();
516 /* Get the main expression from statement STMT. */
518 tree
519 get_rhs (tree stmt)
521 enum tree_code code = TREE_CODE (stmt);
523 switch (code)
525 case RETURN_EXPR:
526 stmt = TREE_OPERAND (stmt, 0);
527 if (!stmt || TREE_CODE (stmt) != MODIFY_EXPR)
528 return stmt;
529 /* FALLTHRU */
531 case MODIFY_EXPR:
532 stmt = TREE_OPERAND (stmt, 1);
533 if (TREE_CODE (stmt) == WITH_SIZE_EXPR)
534 return TREE_OPERAND (stmt, 0);
535 else
536 return stmt;
538 case COND_EXPR:
539 return COND_EXPR_COND (stmt);
540 case SWITCH_EXPR:
541 return SWITCH_COND (stmt);
542 case GOTO_EXPR:
543 return GOTO_DESTINATION (stmt);
544 case LABEL_EXPR:
545 return LABEL_EXPR_LABEL (stmt);
547 default:
548 return 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
555 false. */
557 bool
558 set_rhs (tree *stmt_p, tree expr)
560 tree stmt = *stmt_p, op;
561 enum tree_code code = TREE_CODE (expr);
562 stmt_ann_t ann;
563 tree var;
564 ssa_op_iter iter;
566 /* Verify the constant folded result is valid gimple. */
567 if (TREE_CODE_CLASS (code) == tcc_binary)
569 if (!is_gimple_val (TREE_OPERAND (expr, 0))
570 || !is_gimple_val (TREE_OPERAND (expr, 1)))
571 return false;
573 else if (TREE_CODE_CLASS (code) == tcc_unary)
575 if (!is_gimple_val (TREE_OPERAND (expr, 0)))
576 return false;
579 switch (TREE_CODE (stmt))
581 case RETURN_EXPR:
582 op = TREE_OPERAND (stmt, 0);
583 if (TREE_CODE (op) != MODIFY_EXPR)
585 TREE_OPERAND (stmt, 0) = expr;
586 break;
588 stmt = op;
589 /* FALLTHRU */
591 case MODIFY_EXPR:
592 op = TREE_OPERAND (stmt, 1);
593 if (TREE_CODE (op) == WITH_SIZE_EXPR)
594 stmt = op;
595 TREE_OPERAND (stmt, 1) = expr;
596 break;
598 case COND_EXPR:
599 COND_EXPR_COND (stmt) = expr;
600 break;
601 case SWITCH_EXPR:
602 SWITCH_COND (stmt) = expr;
603 break;
604 case GOTO_EXPR:
605 GOTO_DESTINATION (stmt) = expr;
606 break;
607 case LABEL_EXPR:
608 LABEL_EXPR_LABEL (stmt) = expr;
609 break;
611 default:
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
621 replacement. */
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;
628 break;
631 return true;
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. */
640 void
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;
647 ssa_prop_init ();
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);
669 ssa_prop_fini ();
672 #include "gt-tree-ssa-propagate.h"