Enable dumping of alias graphs.
[official-gcc/Ramakrishna.git] / gcc / tree-ssa-propagate.c
blobab9cee34a218d37059210081b7618f11e7820cb4
1 /* Generic SSA value propagation engine.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008 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 3, 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 COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "flags.h"
27 #include "rtl.h"
28 #include "tm_p.h"
29 #include "ggc.h"
30 #include "basic-block.h"
31 #include "output.h"
32 #include "expr.h"
33 #include "function.h"
34 #include "diagnostic.h"
35 #include "timevar.h"
36 #include "tree-dump.h"
37 #include "tree-flow.h"
38 #include "tree-pass.h"
39 #include "tree-ssa-propagate.h"
40 #include "langhooks.h"
41 #include "varray.h"
42 #include "vec.h"
43 #include "value-prof.h"
44 #include "gimple.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
51 proceeds as follows:
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
59 results:
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
68 list.
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
75 never simulated.
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
79 described in #2.
81 4- Three work lists are kept. Statements are only added to these
82 lists if they produce one of SSA_PROP_INTERESTING or
83 SSA_PROP_VARYING.
85 CFG_BLOCKS contains the list of blocks to be simulated.
86 Blocks are added to this list if their incoming edges are
87 found executable.
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
95 result.
97 5- Simulation terminates when all three work lists are drained.
99 Before calling ssa_propagate, it is important to clear
100 prop_simulate_again_p 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
105 ssa_propagate.
107 References:
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 /* Keep track of statements that have been added to one of the SSA
123 edges worklists. This flag is used to avoid visiting statements
124 unnecessarily when draining an SSA edge worklist. If while
125 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.
129 NOTE: users of the propagation engine are not allowed to use
130 the GF_PLF_1 flag. */
131 #define STMT_IN_SSA_EDGE_WORKLIST GF_PLF_1
133 /* A bitmap to keep track of executable blocks in the CFG. */
134 static sbitmap executable_blocks;
136 /* Array of control flow edges on the worklist. */
137 static VEC(basic_block,heap) *cfg_blocks;
139 static unsigned int cfg_blocks_num = 0;
140 static int cfg_blocks_tail;
141 static int cfg_blocks_head;
143 static sbitmap bb_in_list;
145 /* Worklist of SSA edges which will need reexamination as their
146 definition has changed. SSA edges are def-use edges in the SSA
147 web. For each D-U edge, we store the target statement or PHI node
148 U. */
149 static GTY(()) VEC(gimple,gc) *interesting_ssa_edges;
151 /* Identical to INTERESTING_SSA_EDGES. For performance reasons, the
152 list of SSA edges is split into two. One contains all SSA edges
153 who need to be reexamined because their lattice value changed to
154 varying (this worklist), and the other contains all other SSA edges
155 to be reexamined (INTERESTING_SSA_EDGES).
157 Since most values in the program are VARYING, the ideal situation
158 is to move them to that lattice value as quickly as possible.
159 Thus, it doesn't make sense to process any other type of lattice
160 value until all VARYING values are propagated fully, which is one
161 thing using the VARYING worklist achieves. In addition, if we
162 don't use a separate worklist for VARYING edges, we end up with
163 situations where lattice values move from
164 UNDEFINED->INTERESTING->VARYING instead of UNDEFINED->VARYING. */
165 static GTY(()) VEC(gimple,gc) *varying_ssa_edges;
168 /* Return true if the block worklist empty. */
170 static inline bool
171 cfg_blocks_empty_p (void)
173 return (cfg_blocks_num == 0);
177 /* Add a basic block to the worklist. The block must not be already
178 in the worklist, and it must not be the ENTRY or EXIT block. */
180 static void
181 cfg_blocks_add (basic_block bb)
183 bool head = false;
185 gcc_assert (bb != ENTRY_BLOCK_PTR && bb != EXIT_BLOCK_PTR);
186 gcc_assert (!TEST_BIT (bb_in_list, bb->index));
188 if (cfg_blocks_empty_p ())
190 cfg_blocks_tail = cfg_blocks_head = 0;
191 cfg_blocks_num = 1;
193 else
195 cfg_blocks_num++;
196 if (cfg_blocks_num > VEC_length (basic_block, cfg_blocks))
198 /* We have to grow the array now. Adjust to queue to occupy
199 the full space of the original array. We do not need to
200 initialize the newly allocated portion of the array
201 because we keep track of CFG_BLOCKS_HEAD and
202 CFG_BLOCKS_HEAD. */
203 cfg_blocks_tail = VEC_length (basic_block, cfg_blocks);
204 cfg_blocks_head = 0;
205 VEC_safe_grow (basic_block, heap, cfg_blocks, 2 * cfg_blocks_tail);
207 /* Minor optimization: we prefer to see blocks with more
208 predecessors later, because there is more of a chance that
209 the incoming edges will be executable. */
210 else if (EDGE_COUNT (bb->preds)
211 >= EDGE_COUNT (VEC_index (basic_block, cfg_blocks,
212 cfg_blocks_head)->preds))
213 cfg_blocks_tail = ((cfg_blocks_tail + 1)
214 % VEC_length (basic_block, cfg_blocks));
215 else
217 if (cfg_blocks_head == 0)
218 cfg_blocks_head = VEC_length (basic_block, cfg_blocks);
219 --cfg_blocks_head;
220 head = true;
224 VEC_replace (basic_block, cfg_blocks,
225 head ? cfg_blocks_head : cfg_blocks_tail,
226 bb);
227 SET_BIT (bb_in_list, bb->index);
231 /* Remove a block from the worklist. */
233 static basic_block
234 cfg_blocks_get (void)
236 basic_block bb;
238 bb = VEC_index (basic_block, cfg_blocks, cfg_blocks_head);
240 gcc_assert (!cfg_blocks_empty_p ());
241 gcc_assert (bb);
243 cfg_blocks_head = ((cfg_blocks_head + 1)
244 % VEC_length (basic_block, cfg_blocks));
245 --cfg_blocks_num;
246 RESET_BIT (bb_in_list, bb->index);
248 return bb;
252 /* We have just defined a new value for VAR. If IS_VARYING is true,
253 add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
254 them to INTERESTING_SSA_EDGES. */
256 static void
257 add_ssa_edge (tree var, bool is_varying)
259 imm_use_iterator iter;
260 use_operand_p use_p;
262 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
264 gimple use_stmt = USE_STMT (use_p);
266 if (prop_simulate_again_p (use_stmt)
267 && !gimple_plf (use_stmt, STMT_IN_SSA_EDGE_WORKLIST))
269 gimple_set_plf (use_stmt, STMT_IN_SSA_EDGE_WORKLIST, true);
270 if (is_varying)
271 VEC_safe_push (gimple, gc, varying_ssa_edges, use_stmt);
272 else
273 VEC_safe_push (gimple, gc, interesting_ssa_edges, use_stmt);
279 /* Add edge E to the control flow worklist. */
281 static void
282 add_control_edge (edge e)
284 basic_block bb = e->dest;
285 if (bb == EXIT_BLOCK_PTR)
286 return;
288 /* If the edge had already been executed, skip it. */
289 if (e->flags & EDGE_EXECUTABLE)
290 return;
292 e->flags |= EDGE_EXECUTABLE;
294 /* If the block is already in the list, we're done. */
295 if (TEST_BIT (bb_in_list, bb->index))
296 return;
298 cfg_blocks_add (bb);
300 if (dump_file && (dump_flags & TDF_DETAILS))
301 fprintf (dump_file, "Adding Destination of edge (%d -> %d) to worklist\n\n",
302 e->src->index, e->dest->index);
306 /* Simulate the execution of STMT and update the work lists accordingly. */
308 static void
309 simulate_stmt (gimple stmt)
311 enum ssa_prop_result val = SSA_PROP_NOT_INTERESTING;
312 edge taken_edge = NULL;
313 tree output_name = NULL_TREE;
315 /* Don't bother visiting statements that are already
316 considered varying by the propagator. */
317 if (!prop_simulate_again_p (stmt))
318 return;
320 if (gimple_code (stmt) == GIMPLE_PHI)
322 val = ssa_prop_visit_phi (stmt);
323 output_name = gimple_phi_result (stmt);
325 else
326 val = ssa_prop_visit_stmt (stmt, &taken_edge, &output_name);
328 if (val == SSA_PROP_VARYING)
330 prop_set_simulate_again (stmt, false);
332 /* If the statement produced a new varying value, add the SSA
333 edges coming out of OUTPUT_NAME. */
334 if (output_name)
335 add_ssa_edge (output_name, true);
337 /* If STMT transfers control out of its basic block, add
338 all outgoing edges to the work list. */
339 if (stmt_ends_bb_p (stmt))
341 edge e;
342 edge_iterator ei;
343 basic_block bb = gimple_bb (stmt);
344 FOR_EACH_EDGE (e, ei, bb->succs)
345 add_control_edge (e);
348 else if (val == SSA_PROP_INTERESTING)
350 /* If the statement produced new value, add the SSA edges coming
351 out of OUTPUT_NAME. */
352 if (output_name)
353 add_ssa_edge (output_name, false);
355 /* If we know which edge is going to be taken out of this block,
356 add it to the CFG work list. */
357 if (taken_edge)
358 add_control_edge (taken_edge);
362 /* Process an SSA edge worklist. WORKLIST is the SSA edge worklist to
363 drain. This pops statements off the given WORKLIST and processes
364 them until there are no more statements on WORKLIST.
365 We take a pointer to WORKLIST because it may be reallocated when an
366 SSA edge is added to it in simulate_stmt. */
368 static void
369 process_ssa_edge_worklist (VEC(gimple,gc) **worklist)
371 /* Drain the entire worklist. */
372 while (VEC_length (gimple, *worklist) > 0)
374 basic_block bb;
376 /* Pull the statement to simulate off the worklist. */
377 gimple stmt = VEC_pop (gimple, *worklist);
379 /* If this statement was already visited by simulate_block, then
380 we don't need to visit it again here. */
381 if (!gimple_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST))
382 continue;
384 /* STMT is no longer in a worklist. */
385 gimple_set_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST, false);
387 if (dump_file && (dump_flags & TDF_DETAILS))
389 fprintf (dump_file, "\nSimulating statement (from ssa_edges): ");
390 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
393 bb = gimple_bb (stmt);
395 /* PHI nodes are always visited, regardless of whether or not
396 the destination block is executable. Otherwise, visit the
397 statement only if its block is marked executable. */
398 if (gimple_code (stmt) == GIMPLE_PHI
399 || TEST_BIT (executable_blocks, bb->index))
400 simulate_stmt (stmt);
405 /* Simulate the execution of BLOCK. Evaluate the statement associated
406 with each variable reference inside the block. */
408 static void
409 simulate_block (basic_block block)
411 gimple_stmt_iterator gsi;
413 /* There is nothing to do for the exit block. */
414 if (block == EXIT_BLOCK_PTR)
415 return;
417 if (dump_file && (dump_flags & TDF_DETAILS))
418 fprintf (dump_file, "\nSimulating block %d\n", block->index);
420 /* Always simulate PHI nodes, even if we have simulated this block
421 before. */
422 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
423 simulate_stmt (gsi_stmt (gsi));
425 /* If this is the first time we've simulated this block, then we
426 must simulate each of its statements. */
427 if (!TEST_BIT (executable_blocks, block->index))
429 gimple_stmt_iterator j;
430 unsigned int normal_edge_count;
431 edge e, normal_edge;
432 edge_iterator ei;
434 /* Note that we have simulated this block. */
435 SET_BIT (executable_blocks, block->index);
437 for (j = gsi_start_bb (block); !gsi_end_p (j); gsi_next (&j))
439 gimple stmt = gsi_stmt (j);
441 /* If this statement is already in the worklist then
442 "cancel" it. The reevaluation implied by the worklist
443 entry will produce the same value we generate here and
444 thus reevaluating it again from the worklist is
445 pointless. */
446 if (gimple_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST))
447 gimple_set_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST, false);
449 simulate_stmt (stmt);
452 /* We can not predict when abnormal and EH edges will be executed, so
453 once a block is considered executable, we consider any
454 outgoing abnormal edges as executable.
456 TODO: This is not exactly true. Simplifying statement might
457 prove it non-throwing and also computed goto can be handled
458 when destination is known.
460 At the same time, if this block has only one successor that is
461 reached by non-abnormal edges, then add that successor to the
462 worklist. */
463 normal_edge_count = 0;
464 normal_edge = NULL;
465 FOR_EACH_EDGE (e, ei, block->succs)
467 if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
468 add_control_edge (e);
469 else
471 normal_edge_count++;
472 normal_edge = e;
476 if (normal_edge_count == 1)
477 add_control_edge (normal_edge);
482 /* Initialize local data structures and work lists. */
484 static void
485 ssa_prop_init (void)
487 edge e;
488 edge_iterator ei;
489 basic_block bb;
491 /* Worklists of SSA edges. */
492 interesting_ssa_edges = VEC_alloc (gimple, gc, 20);
493 varying_ssa_edges = VEC_alloc (gimple, gc, 20);
495 executable_blocks = sbitmap_alloc (last_basic_block);
496 sbitmap_zero (executable_blocks);
498 bb_in_list = sbitmap_alloc (last_basic_block);
499 sbitmap_zero (bb_in_list);
501 if (dump_file && (dump_flags & TDF_DETAILS))
502 dump_immediate_uses (dump_file);
504 cfg_blocks = VEC_alloc (basic_block, heap, 20);
505 VEC_safe_grow (basic_block, heap, cfg_blocks, 20);
507 /* Initially assume that every edge in the CFG is not executable.
508 (including the edges coming out of ENTRY_BLOCK_PTR). */
509 FOR_ALL_BB (bb)
511 gimple_stmt_iterator si;
513 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
514 gimple_set_plf (gsi_stmt (si), STMT_IN_SSA_EDGE_WORKLIST, false);
516 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
517 gimple_set_plf (gsi_stmt (si), STMT_IN_SSA_EDGE_WORKLIST, false);
519 FOR_EACH_EDGE (e, ei, bb->succs)
520 e->flags &= ~EDGE_EXECUTABLE;
523 /* Seed the algorithm by adding the successors of the entry block to the
524 edge worklist. */
525 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
526 add_control_edge (e);
530 /* Free allocated storage. */
532 static void
533 ssa_prop_fini (void)
535 VEC_free (gimple, gc, interesting_ssa_edges);
536 VEC_free (gimple, gc, varying_ssa_edges);
537 VEC_free (basic_block, heap, cfg_blocks);
538 cfg_blocks = NULL;
539 sbitmap_free (bb_in_list);
540 sbitmap_free (executable_blocks);
544 /* Return true if EXPR is an acceptable right-hand-side for a
545 GIMPLE assignment. We validate the entire tree, not just
546 the root node, thus catching expressions that embed complex
547 operands that are not permitted in GIMPLE. This function
548 is needed because the folding routines in fold-const.c
549 may return such expressions in some cases, e.g., an array
550 access with an embedded index addition. It may make more
551 sense to have folding routines that are sensitive to the
552 constraints on GIMPLE operands, rather than abandoning any
553 any attempt to fold if the usual folding turns out to be too
554 aggressive. */
556 bool
557 valid_gimple_rhs_p (tree expr)
559 enum tree_code code = TREE_CODE (expr);
561 switch (TREE_CODE_CLASS (code))
563 case tcc_declaration:
564 if (!is_gimple_variable (expr))
565 return false;
566 break;
568 case tcc_constant:
569 /* All constants are ok. */
570 break;
572 case tcc_binary:
573 case tcc_comparison:
574 if (!is_gimple_val (TREE_OPERAND (expr, 0))
575 || !is_gimple_val (TREE_OPERAND (expr, 1)))
576 return false;
577 break;
579 case tcc_unary:
580 if (!is_gimple_val (TREE_OPERAND (expr, 0)))
581 return false;
582 break;
584 case tcc_expression:
585 switch (code)
587 case ADDR_EXPR:
589 tree t;
590 if (is_gimple_min_invariant (expr))
591 return true;
592 t = TREE_OPERAND (expr, 0);
593 while (handled_component_p (t))
595 /* ??? More checks needed, see the GIMPLE verifier. */
596 if ((TREE_CODE (t) == ARRAY_REF
597 || TREE_CODE (t) == ARRAY_RANGE_REF)
598 && !is_gimple_val (TREE_OPERAND (t, 1)))
599 return false;
600 t = TREE_OPERAND (t, 0);
602 if (!is_gimple_id (t))
603 return false;
605 break;
607 case TRUTH_NOT_EXPR:
608 if (!is_gimple_val (TREE_OPERAND (expr, 0)))
609 return false;
610 break;
612 case TRUTH_AND_EXPR:
613 case TRUTH_XOR_EXPR:
614 case TRUTH_OR_EXPR:
615 if (!is_gimple_val (TREE_OPERAND (expr, 0))
616 || !is_gimple_val (TREE_OPERAND (expr, 1)))
617 return false;
618 break;
620 case EXC_PTR_EXPR:
621 case FILTER_EXPR:
622 break;
624 default:
625 return false;
627 break;
629 case tcc_vl_exp:
630 return false;
632 case tcc_exceptional:
633 if (code != SSA_NAME)
634 return false;
635 break;
637 default:
638 return false;
641 return true;
645 /* Return true if EXPR is a CALL_EXPR suitable for representation
646 as a single GIMPLE_CALL statement. If the arguments require
647 further gimplification, return false. */
649 bool
650 valid_gimple_call_p (tree expr)
652 unsigned i, nargs;
654 if (TREE_CODE (expr) != CALL_EXPR)
655 return false;
657 nargs = call_expr_nargs (expr);
658 for (i = 0; i < nargs; i++)
659 if (! is_gimple_operand (CALL_EXPR_ARG (expr, i)))
660 return false;
662 return true;
666 /* Make SSA names defined by OLD_STMT point to NEW_STMT
667 as their defining statement. */
669 void
670 move_ssa_defining_stmt_for_defs (gimple new_stmt, gimple old_stmt)
672 tree var;
673 ssa_op_iter iter;
675 if (gimple_in_ssa_p (cfun))
677 /* Make defined SSA_NAMEs point to the new
678 statement as their definition. */
679 FOR_EACH_SSA_TREE_OPERAND (var, old_stmt, iter, SSA_OP_ALL_DEFS)
681 if (TREE_CODE (var) == SSA_NAME)
682 SSA_NAME_DEF_STMT (var) = new_stmt;
688 /* Update a GIMPLE_CALL statement at iterator *SI_P to reflect the
689 value of EXPR, which is expected to be the result of folding the
690 call. This can only be done if EXPR is a CALL_EXPR with valid
691 GIMPLE operands as arguments, or if it is a suitable RHS expression
692 for a GIMPLE_ASSIGN. More complex expressions will require
693 gimplification, which will introduce addtional statements. In this
694 event, no update is performed, and the function returns false.
695 Note that we cannot mutate a GIMPLE_CALL in-place, so we always
696 replace the statement at *SI_P with an entirely new statement.
697 The new statement need not be a call, e.g., if the original call
698 folded to a constant. */
700 bool
701 update_call_from_tree (gimple_stmt_iterator *si_p, tree expr)
703 tree lhs;
705 gimple stmt = gsi_stmt (*si_p);
707 gcc_assert (is_gimple_call (stmt));
709 lhs = gimple_call_lhs (stmt);
711 if (valid_gimple_call_p (expr))
713 /* The call has simplified to another call. */
714 tree fn = CALL_EXPR_FN (expr);
715 unsigned i;
716 unsigned nargs = call_expr_nargs (expr);
717 VEC(tree, heap) *args = NULL;
718 gimple new_stmt;
720 if (nargs > 0)
722 args = VEC_alloc (tree, heap, nargs);
723 VEC_safe_grow (tree, heap, args, nargs);
725 for (i = 0; i < nargs; i++)
726 VEC_replace (tree, args, i, CALL_EXPR_ARG (expr, i));
729 new_stmt = gimple_build_call_vec (fn, args);
730 gimple_call_set_lhs (new_stmt, lhs);
731 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
732 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
733 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
734 gimple_set_location (new_stmt, gimple_location (stmt));
735 gsi_replace (si_p, new_stmt, false);
736 VEC_free (tree, heap, args);
738 return true;
740 else if (valid_gimple_rhs_p (expr))
742 gimple new_stmt;
744 /* The call has simplified to an expression
745 that cannot be represented as a GIMPLE_CALL. */
746 if (lhs)
748 /* A value is expected.
749 Introduce a new GIMPLE_ASSIGN statement. */
750 STRIP_USELESS_TYPE_CONVERSION (expr);
751 new_stmt = gimple_build_assign (lhs, expr);
752 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
753 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
754 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
756 else if (!TREE_SIDE_EFFECTS (expr))
758 /* No value is expected, and EXPR has no effect.
759 Replace it with an empty statement. */
760 new_stmt = gimple_build_nop ();
761 unlink_stmt_vdef (stmt);
762 release_defs (stmt);
764 else
766 /* No value is expected, but EXPR has an effect,
767 e.g., it could be a reference to a volatile
768 variable. Create an assignment statement
769 with a dummy (unused) lhs variable. */
770 STRIP_USELESS_TYPE_CONVERSION (expr);
771 lhs = create_tmp_var (TREE_TYPE (expr), NULL);
772 new_stmt = gimple_build_assign (lhs, expr);
773 add_referenced_var (lhs);
774 lhs = make_ssa_name (lhs, new_stmt);
775 gimple_assign_set_lhs (new_stmt, lhs);
776 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
777 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
778 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
780 gimple_set_location (new_stmt, gimple_location (stmt));
781 gsi_replace (si_p, new_stmt, false);
782 return true;
784 else
785 /* The call simplified to an expression that is
786 not a valid GIMPLE RHS. */
787 return false;
791 /* Entry point to the propagation engine.
793 VISIT_STMT is called for every statement visited.
794 VISIT_PHI is called for every PHI node visited. */
796 void
797 ssa_propagate (ssa_prop_visit_stmt_fn visit_stmt,
798 ssa_prop_visit_phi_fn visit_phi)
800 ssa_prop_visit_stmt = visit_stmt;
801 ssa_prop_visit_phi = visit_phi;
803 ssa_prop_init ();
805 /* Iterate until the worklists are empty. */
806 while (!cfg_blocks_empty_p ()
807 || VEC_length (gimple, interesting_ssa_edges) > 0
808 || VEC_length (gimple, varying_ssa_edges) > 0)
810 if (!cfg_blocks_empty_p ())
812 /* Pull the next block to simulate off the worklist. */
813 basic_block dest_block = cfg_blocks_get ();
814 simulate_block (dest_block);
817 /* In order to move things to varying as quickly as
818 possible,process the VARYING_SSA_EDGES worklist first. */
819 process_ssa_edge_worklist (&varying_ssa_edges);
821 /* Now process the INTERESTING_SSA_EDGES worklist. */
822 process_ssa_edge_worklist (&interesting_ssa_edges);
825 ssa_prop_fini ();
829 /* Return true if STMT is of the form 'mem_ref = RHS', where 'mem_ref'
830 is a non-volatile pointer dereference, a structure reference or a
831 reference to a single _DECL. Ignore volatile memory references
832 because they are not interesting for the optimizers. */
834 bool
835 stmt_makes_single_store (gimple stmt)
837 tree lhs;
839 if (gimple_code (stmt) != GIMPLE_ASSIGN
840 && gimple_code (stmt) != GIMPLE_CALL)
841 return false;
843 if (!gimple_vdef (stmt))
844 return false;
846 lhs = gimple_get_lhs (stmt);
848 /* A call statement may have a null LHS. */
849 if (!lhs)
850 return false;
852 return (!TREE_THIS_VOLATILE (lhs)
853 && (DECL_P (lhs)
854 || REFERENCE_CLASS_P (lhs)));
858 /* Propagation statistics. */
859 struct prop_stats_d
861 long num_const_prop;
862 long num_copy_prop;
863 long num_pred_folded;
864 long num_dce;
867 static struct prop_stats_d prop_stats;
869 /* Replace USE references in statement STMT with the values stored in
870 PROP_VALUE. Return true if at least one reference was replaced. */
872 static bool
873 replace_uses_in (gimple stmt, prop_value_t *prop_value)
875 bool replaced = false;
876 use_operand_p use;
877 ssa_op_iter iter;
879 FOR_EACH_SSA_USE_OPERAND (use, stmt, iter, SSA_OP_USE)
881 tree tuse = USE_FROM_PTR (use);
882 tree val = prop_value[SSA_NAME_VERSION (tuse)].value;
884 if (val == tuse || val == NULL_TREE)
885 continue;
887 if (gimple_code (stmt) == GIMPLE_ASM
888 && !may_propagate_copy_into_asm (tuse))
889 continue;
891 if (!may_propagate_copy (tuse, val))
892 continue;
894 if (TREE_CODE (val) != SSA_NAME)
895 prop_stats.num_const_prop++;
896 else
897 prop_stats.num_copy_prop++;
899 propagate_value (use, val);
901 replaced = true;
904 return replaced;
908 /* Replace propagated values into all the arguments for PHI using the
909 values from PROP_VALUE. */
911 static void
912 replace_phi_args_in (gimple phi, prop_value_t *prop_value)
914 size_t i;
915 bool replaced = false;
917 if (dump_file && (dump_flags & TDF_DETAILS))
919 fprintf (dump_file, "Folding PHI node: ");
920 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
923 for (i = 0; i < gimple_phi_num_args (phi); i++)
925 tree arg = gimple_phi_arg_def (phi, i);
927 if (TREE_CODE (arg) == SSA_NAME)
929 tree val = prop_value[SSA_NAME_VERSION (arg)].value;
931 if (val && val != arg && may_propagate_copy (arg, val))
933 if (TREE_CODE (val) != SSA_NAME)
934 prop_stats.num_const_prop++;
935 else
936 prop_stats.num_copy_prop++;
938 propagate_value (PHI_ARG_DEF_PTR (phi, i), val);
939 replaced = true;
941 /* If we propagated a copy and this argument flows
942 through an abnormal edge, update the replacement
943 accordingly. */
944 if (TREE_CODE (val) == SSA_NAME
945 && gimple_phi_arg_edge (phi, i)->flags & EDGE_ABNORMAL)
946 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
951 if (dump_file && (dump_flags & TDF_DETAILS))
953 if (!replaced)
954 fprintf (dump_file, "No folding possible\n");
955 else
957 fprintf (dump_file, "Folded into: ");
958 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
959 fprintf (dump_file, "\n");
965 /* If the statement pointed by SI has a predicate whose value can be
966 computed using the value range information computed by VRP, compute
967 its value and return true. Otherwise, return false. */
969 static bool
970 fold_predicate_in (gimple_stmt_iterator *si)
972 bool assignment_p = false;
973 tree val;
974 gimple stmt = gsi_stmt (*si);
976 if (is_gimple_assign (stmt)
977 && TREE_CODE_CLASS (gimple_assign_rhs_code (stmt)) == tcc_comparison)
979 assignment_p = true;
980 val = vrp_evaluate_conditional (gimple_assign_rhs_code (stmt),
981 gimple_assign_rhs1 (stmt),
982 gimple_assign_rhs2 (stmt),
983 stmt);
985 else if (gimple_code (stmt) == GIMPLE_COND)
986 val = vrp_evaluate_conditional (gimple_cond_code (stmt),
987 gimple_cond_lhs (stmt),
988 gimple_cond_rhs (stmt),
989 stmt);
990 else
991 return false;
994 if (val)
996 if (assignment_p)
997 val = fold_convert (gimple_expr_type (stmt), val);
999 if (dump_file)
1001 fprintf (dump_file, "Folding predicate ");
1002 print_gimple_expr (dump_file, stmt, 0, 0);
1003 fprintf (dump_file, " to ");
1004 print_generic_expr (dump_file, val, 0);
1005 fprintf (dump_file, "\n");
1008 prop_stats.num_pred_folded++;
1010 if (is_gimple_assign (stmt))
1011 gimple_assign_set_rhs_from_tree (si, val);
1012 else
1014 gcc_assert (gimple_code (stmt) == GIMPLE_COND);
1015 if (integer_zerop (val))
1016 gimple_cond_make_false (stmt);
1017 else if (integer_onep (val))
1018 gimple_cond_make_true (stmt);
1019 else
1020 gcc_unreachable ();
1023 return true;
1026 return false;
1030 /* Perform final substitution and folding of propagated values.
1032 PROP_VALUE[I] contains the single value that should be substituted
1033 at every use of SSA name N_I. If PROP_VALUE is NULL, no values are
1034 substituted.
1036 If USE_RANGES_P is true, statements that contain predicate
1037 expressions are evaluated with a call to vrp_evaluate_conditional.
1038 This will only give meaningful results when called from tree-vrp.c
1039 (the information used by vrp_evaluate_conditional is built by the
1040 VRP pass).
1042 Return TRUE when something changed. */
1044 bool
1045 substitute_and_fold (prop_value_t *prop_value, bool use_ranges_p)
1047 basic_block bb;
1048 bool something_changed = false;
1050 if (prop_value == NULL && !use_ranges_p)
1051 return false;
1053 if (dump_file && (dump_flags & TDF_DETAILS))
1054 fprintf (dump_file, "\nSubstituting values and folding statements\n\n");
1056 memset (&prop_stats, 0, sizeof (prop_stats));
1058 /* Substitute values in every statement of every basic block. */
1059 FOR_EACH_BB (bb)
1061 gimple_stmt_iterator i;
1063 /* Propagate known values into PHI nodes. */
1064 if (prop_value)
1065 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
1066 replace_phi_args_in (gsi_stmt (i), prop_value);
1068 /* Propagate known values into stmts. Do a backward walk to expose
1069 more trivially deletable stmts. */
1070 for (i = gsi_last_bb (bb); !gsi_end_p (i);)
1072 bool did_replace;
1073 gimple stmt = gsi_stmt (i);
1074 gimple old_stmt;
1075 enum gimple_code code = gimple_code (stmt);
1077 /* Ignore ASSERT_EXPRs. They are used by VRP to generate
1078 range information for names and they are discarded
1079 afterwards. */
1081 if (code == GIMPLE_ASSIGN
1082 && TREE_CODE (gimple_assign_rhs1 (stmt)) == ASSERT_EXPR)
1084 gsi_prev (&i);
1085 continue;
1088 /* No point propagating into a stmt whose result is not used,
1089 but instead we might be able to remove a trivially dead stmt. */
1090 if (gimple_get_lhs (stmt)
1091 && TREE_CODE (gimple_get_lhs (stmt)) == SSA_NAME
1092 && has_zero_uses (gimple_get_lhs (stmt))
1093 && !stmt_could_throw_p (stmt)
1094 && !gimple_has_side_effects (stmt))
1096 gimple_stmt_iterator i2;
1098 if (dump_file && dump_flags & TDF_DETAILS)
1100 fprintf (dump_file, "Removing dead stmt ");
1101 print_gimple_stmt (dump_file, stmt, 0, 0);
1102 fprintf (dump_file, "\n");
1104 prop_stats.num_dce++;
1105 gsi_prev (&i);
1106 i2 = gsi_for_stmt (stmt);
1107 gsi_remove (&i2, true);
1108 release_defs (stmt);
1109 continue;
1112 /* Replace the statement with its folded version and mark it
1113 folded. */
1114 did_replace = false;
1115 if (dump_file && (dump_flags & TDF_DETAILS))
1117 fprintf (dump_file, "Folding statement: ");
1118 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1121 /* If we have range information, see if we can fold
1122 predicate expressions. */
1123 if (use_ranges_p)
1125 did_replace = fold_predicate_in (&i);
1126 /* fold_predicate_in should not have reallocated STMT. */
1127 gcc_assert (gsi_stmt (i) == stmt);
1130 /* Only replace real uses if we couldn't fold the
1131 statement using value range information. */
1132 if (prop_value
1133 && !did_replace)
1134 did_replace |= replace_uses_in (stmt, prop_value);
1136 /* If we made a replacement, fold the statement. */
1138 old_stmt = stmt;
1139 if (did_replace)
1140 fold_stmt (&i);
1142 /* Some statements may be simplified using ranges. For
1143 example, division may be replaced by shifts, modulo
1144 replaced with bitwise and, etc. Do this after
1145 substituting constants, folding, etc so that we're
1146 presented with a fully propagated, canonicalized
1147 statement. */
1148 if (use_ranges_p)
1149 did_replace |= simplify_stmt_using_ranges (&i);
1151 /* Now cleanup. */
1152 if (did_replace)
1154 stmt = gsi_stmt (i);
1156 /* If we cleaned up EH information from the statement,
1157 remove EH edges. */
1158 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
1159 gimple_purge_dead_eh_edges (bb);
1161 if (is_gimple_assign (stmt)
1162 && (get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
1163 == GIMPLE_SINGLE_RHS))
1165 tree rhs = gimple_assign_rhs1 (stmt);
1167 if (TREE_CODE (rhs) == ADDR_EXPR)
1168 recompute_tree_invariant_for_addr_expr (rhs);
1171 /* Determine what needs to be done to update the SSA form. */
1172 update_stmt (stmt);
1173 if (!is_gimple_debug (stmt))
1174 something_changed = true;
1177 if (dump_file && (dump_flags & TDF_DETAILS))
1179 if (did_replace)
1181 fprintf (dump_file, "Folded into: ");
1182 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1183 fprintf (dump_file, "\n");
1185 else
1186 fprintf (dump_file, "Not folded\n");
1189 gsi_prev (&i);
1193 statistics_counter_event (cfun, "Constants propagated",
1194 prop_stats.num_const_prop);
1195 statistics_counter_event (cfun, "Copies propagated",
1196 prop_stats.num_copy_prop);
1197 statistics_counter_event (cfun, "Predicates folded",
1198 prop_stats.num_pred_folded);
1199 statistics_counter_event (cfun, "Statements deleted",
1200 prop_stats.num_dce);
1201 return something_changed;
1204 #include "gt-tree-ssa-propagate.h"