* include/ext/array_allocator.h: Replace uses of
[official-gcc.git] / gcc / tree-ssa-propagate.c
blob73dfa04ff72619c7c4105dfe81e6b44df85956c4
1 /* Generic SSA value propagation engine.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 3, or (at your option) any
11 later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
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 "tm_p.h"
29 #include "basic-block.h"
30 #include "function.h"
31 #include "gimple-pretty-print.h"
32 #include "dumpfile.h"
33 #include "tree-flow.h"
34 #include "tree-ssa-propagate.h"
35 #include "langhooks.h"
36 #include "vec.h"
37 #include "value-prof.h"
38 #include "gimple.h"
40 /* This file implements a generic value propagation engine based on
41 the same propagation used by the SSA-CCP algorithm [1].
43 Propagation is performed by simulating the execution of every
44 statement that produces the value being propagated. Simulation
45 proceeds as follows:
47 1- Initially, all edges of the CFG are marked not executable and
48 the CFG worklist is seeded with all the statements in the entry
49 basic block (block 0).
51 2- Every statement S is simulated with a call to the call-back
52 function SSA_PROP_VISIT_STMT. This evaluation may produce 3
53 results:
55 SSA_PROP_NOT_INTERESTING: Statement S produces nothing of
56 interest and does not affect any of the work lists.
58 SSA_PROP_VARYING: The value produced by S cannot be determined
59 at compile time. Further simulation of S is not required.
60 If S is a conditional jump, all the outgoing edges for the
61 block are considered executable and added to the work
62 list.
64 SSA_PROP_INTERESTING: S produces a value that can be computed
65 at compile time. Its result can be propagated into the
66 statements that feed from S. Furthermore, if S is a
67 conditional jump, only the edge known to be taken is added
68 to the work list. Edges that are known not to execute are
69 never simulated.
71 3- PHI nodes are simulated with a call to SSA_PROP_VISIT_PHI. The
72 return value from SSA_PROP_VISIT_PHI has the same semantics as
73 described in #2.
75 4- Three work lists are kept. Statements are only added to these
76 lists if they produce one of SSA_PROP_INTERESTING or
77 SSA_PROP_VARYING.
79 CFG_BLOCKS contains the list of blocks to be simulated.
80 Blocks are added to this list if their incoming edges are
81 found executable.
83 VARYING_SSA_EDGES contains the list of statements that feed
84 from statements that produce an SSA_PROP_VARYING result.
85 These are simulated first to speed up processing.
87 INTERESTING_SSA_EDGES contains the list of statements that
88 feed from statements that produce an SSA_PROP_INTERESTING
89 result.
91 5- Simulation terminates when all three work lists are drained.
93 Before calling ssa_propagate, it is important to clear
94 prop_simulate_again_p for all the statements in the program that
95 should be simulated. This initialization allows an implementation
96 to specify which statements should never be simulated.
98 It is also important to compute def-use information before calling
99 ssa_propagate.
101 References:
103 [1] Constant propagation with conditional branches,
104 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
106 [2] Building an Optimizing Compiler,
107 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
109 [3] Advanced Compiler Design and Implementation,
110 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
112 /* Function pointers used to parameterize the propagation engine. */
113 static ssa_prop_visit_stmt_fn ssa_prop_visit_stmt;
114 static ssa_prop_visit_phi_fn ssa_prop_visit_phi;
116 /* Keep track of statements that have been added to one of the SSA
117 edges worklists. This flag is used to avoid visiting statements
118 unnecessarily when draining an SSA edge worklist. If while
119 simulating a basic block, we find a statement with
120 STMT_IN_SSA_EDGE_WORKLIST set, we clear it to prevent SSA edge
121 processing from visiting it again.
123 NOTE: users of the propagation engine are not allowed to use
124 the GF_PLF_1 flag. */
125 #define STMT_IN_SSA_EDGE_WORKLIST GF_PLF_1
127 /* A bitmap to keep track of executable blocks in the CFG. */
128 static sbitmap executable_blocks;
130 /* Array of control flow edges on the worklist. */
131 static vec<basic_block> cfg_blocks;
133 static unsigned int cfg_blocks_num = 0;
134 static int cfg_blocks_tail;
135 static int cfg_blocks_head;
137 static sbitmap bb_in_list;
139 /* Worklist of SSA edges which will need reexamination as their
140 definition has changed. SSA edges are def-use edges in the SSA
141 web. For each D-U edge, we store the target statement or PHI node
142 U. */
143 static GTY(()) vec<gimple, va_gc> *interesting_ssa_edges;
145 /* Identical to INTERESTING_SSA_EDGES. For performance reasons, the
146 list of SSA edges is split into two. One contains all SSA edges
147 who need to be reexamined because their lattice value changed to
148 varying (this worklist), and the other contains all other SSA edges
149 to be reexamined (INTERESTING_SSA_EDGES).
151 Since most values in the program are VARYING, the ideal situation
152 is to move them to that lattice value as quickly as possible.
153 Thus, it doesn't make sense to process any other type of lattice
154 value until all VARYING values are propagated fully, which is one
155 thing using the VARYING worklist achieves. In addition, if we
156 don't use a separate worklist for VARYING edges, we end up with
157 situations where lattice values move from
158 UNDEFINED->INTERESTING->VARYING instead of UNDEFINED->VARYING. */
159 static GTY(()) vec<gimple, va_gc> *varying_ssa_edges;
162 /* Return true if the block worklist empty. */
164 static inline bool
165 cfg_blocks_empty_p (void)
167 return (cfg_blocks_num == 0);
171 /* Add a basic block to the worklist. The block must not be already
172 in the worklist, and it must not be the ENTRY or EXIT block. */
174 static void
175 cfg_blocks_add (basic_block bb)
177 bool head = false;
179 gcc_assert (bb != ENTRY_BLOCK_PTR && bb != EXIT_BLOCK_PTR);
180 gcc_assert (!bitmap_bit_p (bb_in_list, bb->index));
182 if (cfg_blocks_empty_p ())
184 cfg_blocks_tail = cfg_blocks_head = 0;
185 cfg_blocks_num = 1;
187 else
189 cfg_blocks_num++;
190 if (cfg_blocks_num > cfg_blocks.length ())
192 /* We have to grow the array now. Adjust to queue to occupy
193 the full space of the original array. We do not need to
194 initialize the newly allocated portion of the array
195 because we keep track of CFG_BLOCKS_HEAD and
196 CFG_BLOCKS_HEAD. */
197 cfg_blocks_tail = cfg_blocks.length ();
198 cfg_blocks_head = 0;
199 cfg_blocks.safe_grow (2 * cfg_blocks_tail);
201 /* Minor optimization: we prefer to see blocks with more
202 predecessors later, because there is more of a chance that
203 the incoming edges will be executable. */
204 else if (EDGE_COUNT (bb->preds)
205 >= EDGE_COUNT (cfg_blocks[cfg_blocks_head]->preds))
206 cfg_blocks_tail = ((cfg_blocks_tail + 1) % cfg_blocks.length ());
207 else
209 if (cfg_blocks_head == 0)
210 cfg_blocks_head = cfg_blocks.length ();
211 --cfg_blocks_head;
212 head = true;
216 cfg_blocks[head ? cfg_blocks_head : cfg_blocks_tail] = bb;
217 bitmap_set_bit (bb_in_list, bb->index);
221 /* Remove a block from the worklist. */
223 static basic_block
224 cfg_blocks_get (void)
226 basic_block bb;
228 bb = cfg_blocks[cfg_blocks_head];
230 gcc_assert (!cfg_blocks_empty_p ());
231 gcc_assert (bb);
233 cfg_blocks_head = ((cfg_blocks_head + 1) % cfg_blocks.length ());
234 --cfg_blocks_num;
235 bitmap_clear_bit (bb_in_list, bb->index);
237 return bb;
241 /* We have just defined a new value for VAR. If IS_VARYING is true,
242 add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
243 them to INTERESTING_SSA_EDGES. */
245 static void
246 add_ssa_edge (tree var, bool is_varying)
248 imm_use_iterator iter;
249 use_operand_p use_p;
251 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
253 gimple use_stmt = USE_STMT (use_p);
255 if (prop_simulate_again_p (use_stmt)
256 && !gimple_plf (use_stmt, STMT_IN_SSA_EDGE_WORKLIST))
258 gimple_set_plf (use_stmt, STMT_IN_SSA_EDGE_WORKLIST, true);
259 if (is_varying)
260 vec_safe_push (varying_ssa_edges, use_stmt);
261 else
262 vec_safe_push (interesting_ssa_edges, use_stmt);
268 /* Add edge E to the control flow worklist. */
270 static void
271 add_control_edge (edge e)
273 basic_block bb = e->dest;
274 if (bb == EXIT_BLOCK_PTR)
275 return;
277 /* If the edge had already been executed, skip it. */
278 if (e->flags & EDGE_EXECUTABLE)
279 return;
281 e->flags |= EDGE_EXECUTABLE;
283 /* If the block is already in the list, we're done. */
284 if (bitmap_bit_p (bb_in_list, bb->index))
285 return;
287 cfg_blocks_add (bb);
289 if (dump_file && (dump_flags & TDF_DETAILS))
290 fprintf (dump_file, "Adding Destination of edge (%d -> %d) to worklist\n\n",
291 e->src->index, e->dest->index);
295 /* Simulate the execution of STMT and update the work lists accordingly. */
297 static void
298 simulate_stmt (gimple stmt)
300 enum ssa_prop_result val = SSA_PROP_NOT_INTERESTING;
301 edge taken_edge = NULL;
302 tree output_name = NULL_TREE;
304 /* Don't bother visiting statements that are already
305 considered varying by the propagator. */
306 if (!prop_simulate_again_p (stmt))
307 return;
309 if (gimple_code (stmt) == GIMPLE_PHI)
311 val = ssa_prop_visit_phi (stmt);
312 output_name = gimple_phi_result (stmt);
314 else
315 val = ssa_prop_visit_stmt (stmt, &taken_edge, &output_name);
317 if (val == SSA_PROP_VARYING)
319 prop_set_simulate_again (stmt, false);
321 /* If the statement produced a new varying value, add the SSA
322 edges coming out of OUTPUT_NAME. */
323 if (output_name)
324 add_ssa_edge (output_name, true);
326 /* If STMT transfers control out of its basic block, add
327 all outgoing edges to the work list. */
328 if (stmt_ends_bb_p (stmt))
330 edge e;
331 edge_iterator ei;
332 basic_block bb = gimple_bb (stmt);
333 FOR_EACH_EDGE (e, ei, bb->succs)
334 add_control_edge (e);
337 else if (val == SSA_PROP_INTERESTING)
339 /* If the statement produced new value, add the SSA edges coming
340 out of OUTPUT_NAME. */
341 if (output_name)
342 add_ssa_edge (output_name, false);
344 /* If we know which edge is going to be taken out of this block,
345 add it to the CFG work list. */
346 if (taken_edge)
347 add_control_edge (taken_edge);
351 /* Process an SSA edge worklist. WORKLIST is the SSA edge worklist to
352 drain. This pops statements off the given WORKLIST and processes
353 them until there are no more statements on WORKLIST.
354 We take a pointer to WORKLIST because it may be reallocated when an
355 SSA edge is added to it in simulate_stmt. */
357 static void
358 process_ssa_edge_worklist (vec<gimple, va_gc> **worklist)
360 /* Drain the entire worklist. */
361 while ((*worklist)->length () > 0)
363 basic_block bb;
365 /* Pull the statement to simulate off the worklist. */
366 gimple stmt = (*worklist)->pop ();
368 /* If this statement was already visited by simulate_block, then
369 we don't need to visit it again here. */
370 if (!gimple_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST))
371 continue;
373 /* STMT is no longer in a worklist. */
374 gimple_set_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST, false);
376 if (dump_file && (dump_flags & TDF_DETAILS))
378 fprintf (dump_file, "\nSimulating statement (from ssa_edges): ");
379 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
382 bb = gimple_bb (stmt);
384 /* PHI nodes are always visited, regardless of whether or not
385 the destination block is executable. Otherwise, visit the
386 statement only if its block is marked executable. */
387 if (gimple_code (stmt) == GIMPLE_PHI
388 || bitmap_bit_p (executable_blocks, bb->index))
389 simulate_stmt (stmt);
394 /* Simulate the execution of BLOCK. Evaluate the statement associated
395 with each variable reference inside the block. */
397 static void
398 simulate_block (basic_block block)
400 gimple_stmt_iterator gsi;
402 /* There is nothing to do for the exit block. */
403 if (block == EXIT_BLOCK_PTR)
404 return;
406 if (dump_file && (dump_flags & TDF_DETAILS))
407 fprintf (dump_file, "\nSimulating block %d\n", block->index);
409 /* Always simulate PHI nodes, even if we have simulated this block
410 before. */
411 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
412 simulate_stmt (gsi_stmt (gsi));
414 /* If this is the first time we've simulated this block, then we
415 must simulate each of its statements. */
416 if (!bitmap_bit_p (executable_blocks, block->index))
418 gimple_stmt_iterator j;
419 unsigned int normal_edge_count;
420 edge e, normal_edge;
421 edge_iterator ei;
423 /* Note that we have simulated this block. */
424 bitmap_set_bit (executable_blocks, block->index);
426 for (j = gsi_start_bb (block); !gsi_end_p (j); gsi_next (&j))
428 gimple stmt = gsi_stmt (j);
430 /* If this statement is already in the worklist then
431 "cancel" it. The reevaluation implied by the worklist
432 entry will produce the same value we generate here and
433 thus reevaluating it again from the worklist is
434 pointless. */
435 if (gimple_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST))
436 gimple_set_plf (stmt, STMT_IN_SSA_EDGE_WORKLIST, false);
438 simulate_stmt (stmt);
441 /* We can not predict when abnormal and EH edges will be executed, so
442 once a block is considered executable, we consider any
443 outgoing abnormal edges as executable.
445 TODO: This is not exactly true. Simplifying statement might
446 prove it non-throwing and also computed goto can be handled
447 when destination is known.
449 At the same time, if this block has only one successor that is
450 reached by non-abnormal edges, then add that successor to the
451 worklist. */
452 normal_edge_count = 0;
453 normal_edge = NULL;
454 FOR_EACH_EDGE (e, ei, block->succs)
456 if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
457 add_control_edge (e);
458 else
460 normal_edge_count++;
461 normal_edge = e;
465 if (normal_edge_count == 1)
466 add_control_edge (normal_edge);
471 /* Initialize local data structures and work lists. */
473 static void
474 ssa_prop_init (void)
476 edge e;
477 edge_iterator ei;
478 basic_block bb;
480 /* Worklists of SSA edges. */
481 vec_alloc (interesting_ssa_edges, 20);
482 vec_alloc (varying_ssa_edges, 20);
484 executable_blocks = sbitmap_alloc (last_basic_block);
485 bitmap_clear (executable_blocks);
487 bb_in_list = sbitmap_alloc (last_basic_block);
488 bitmap_clear (bb_in_list);
490 if (dump_file && (dump_flags & TDF_DETAILS))
491 dump_immediate_uses (dump_file);
493 cfg_blocks.create (20);
494 cfg_blocks.safe_grow_cleared (20);
496 /* Initially assume that every edge in the CFG is not executable.
497 (including the edges coming out of ENTRY_BLOCK_PTR). */
498 FOR_ALL_BB (bb)
500 gimple_stmt_iterator si;
502 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
503 gimple_set_plf (gsi_stmt (si), STMT_IN_SSA_EDGE_WORKLIST, false);
505 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
506 gimple_set_plf (gsi_stmt (si), STMT_IN_SSA_EDGE_WORKLIST, false);
508 FOR_EACH_EDGE (e, ei, bb->succs)
509 e->flags &= ~EDGE_EXECUTABLE;
512 /* Seed the algorithm by adding the successors of the entry block to the
513 edge worklist. */
514 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
515 add_control_edge (e);
519 /* Free allocated storage. */
521 static void
522 ssa_prop_fini (void)
524 vec_free (interesting_ssa_edges);
525 vec_free (varying_ssa_edges);
526 cfg_blocks.release ();
527 sbitmap_free (bb_in_list);
528 sbitmap_free (executable_blocks);
532 /* Return true if EXPR is an acceptable right-hand-side for a
533 GIMPLE assignment. We validate the entire tree, not just
534 the root node, thus catching expressions that embed complex
535 operands that are not permitted in GIMPLE. This function
536 is needed because the folding routines in fold-const.c
537 may return such expressions in some cases, e.g., an array
538 access with an embedded index addition. It may make more
539 sense to have folding routines that are sensitive to the
540 constraints on GIMPLE operands, rather than abandoning any
541 any attempt to fold if the usual folding turns out to be too
542 aggressive. */
544 bool
545 valid_gimple_rhs_p (tree expr)
547 enum tree_code code = TREE_CODE (expr);
549 switch (TREE_CODE_CLASS (code))
551 case tcc_declaration:
552 if (!is_gimple_variable (expr))
553 return false;
554 break;
556 case tcc_constant:
557 /* All constants are ok. */
558 break;
560 case tcc_binary:
561 case tcc_comparison:
562 if (!is_gimple_val (TREE_OPERAND (expr, 0))
563 || !is_gimple_val (TREE_OPERAND (expr, 1)))
564 return false;
565 break;
567 case tcc_unary:
568 if (!is_gimple_val (TREE_OPERAND (expr, 0)))
569 return false;
570 break;
572 case tcc_expression:
573 switch (code)
575 case ADDR_EXPR:
577 tree t;
578 if (is_gimple_min_invariant (expr))
579 return true;
580 t = TREE_OPERAND (expr, 0);
581 while (handled_component_p (t))
583 /* ??? More checks needed, see the GIMPLE verifier. */
584 if ((TREE_CODE (t) == ARRAY_REF
585 || TREE_CODE (t) == ARRAY_RANGE_REF)
586 && !is_gimple_val (TREE_OPERAND (t, 1)))
587 return false;
588 t = TREE_OPERAND (t, 0);
590 if (!is_gimple_id (t))
591 return false;
593 break;
595 default:
596 if (get_gimple_rhs_class (code) == GIMPLE_TERNARY_RHS)
598 if (((code == VEC_COND_EXPR || code == COND_EXPR)
599 ? !is_gimple_condexpr (TREE_OPERAND (expr, 0))
600 : !is_gimple_val (TREE_OPERAND (expr, 0)))
601 || !is_gimple_val (TREE_OPERAND (expr, 1))
602 || !is_gimple_val (TREE_OPERAND (expr, 2)))
603 return false;
604 break;
606 return false;
608 break;
610 case tcc_vl_exp:
611 return false;
613 case tcc_exceptional:
614 if (code != SSA_NAME)
615 return false;
616 break;
618 default:
619 return false;
622 return true;
626 /* Return true if EXPR is a CALL_EXPR suitable for representation
627 as a single GIMPLE_CALL statement. If the arguments require
628 further gimplification, return false. */
630 static bool
631 valid_gimple_call_p (tree expr)
633 unsigned i, nargs;
635 if (TREE_CODE (expr) != CALL_EXPR)
636 return false;
638 nargs = call_expr_nargs (expr);
639 for (i = 0; i < nargs; i++)
641 tree arg = CALL_EXPR_ARG (expr, i);
642 if (is_gimple_reg_type (arg))
644 if (!is_gimple_val (arg))
645 return false;
647 else
648 if (!is_gimple_lvalue (arg))
649 return false;
652 return true;
656 /* Make SSA names defined by OLD_STMT point to NEW_STMT
657 as their defining statement. */
659 void
660 move_ssa_defining_stmt_for_defs (gimple new_stmt, gimple old_stmt)
662 tree var;
663 ssa_op_iter iter;
665 if (gimple_in_ssa_p (cfun))
667 /* Make defined SSA_NAMEs point to the new
668 statement as their definition. */
669 FOR_EACH_SSA_TREE_OPERAND (var, old_stmt, iter, SSA_OP_ALL_DEFS)
671 if (TREE_CODE (var) == SSA_NAME)
672 SSA_NAME_DEF_STMT (var) = new_stmt;
677 /* Helper function for update_gimple_call and update_call_from_tree.
678 A GIMPLE_CALL STMT is being replaced with GIMPLE_CALL NEW_STMT. */
680 static void
681 finish_update_gimple_call (gimple_stmt_iterator *si_p, gimple new_stmt,
682 gimple stmt)
684 gimple_call_set_lhs (new_stmt, gimple_call_lhs (stmt));
685 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
686 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
687 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
688 gimple_set_location (new_stmt, gimple_location (stmt));
689 if (gimple_block (new_stmt) == NULL_TREE)
690 gimple_set_block (new_stmt, gimple_block (stmt));
691 gsi_replace (si_p, new_stmt, false);
694 /* Update a GIMPLE_CALL statement at iterator *SI_P to call to FN
695 with number of arguments NARGS, where the arguments in GIMPLE form
696 follow NARGS argument. */
698 bool
699 update_gimple_call (gimple_stmt_iterator *si_p, tree fn, int nargs, ...)
701 va_list ap;
702 gimple new_stmt, stmt = gsi_stmt (*si_p);
704 gcc_assert (is_gimple_call (stmt));
705 va_start (ap, nargs);
706 new_stmt = gimple_build_call_valist (fn, nargs, ap);
707 finish_update_gimple_call (si_p, new_stmt, stmt);
708 va_end (ap);
709 return true;
712 /* Update a GIMPLE_CALL statement at iterator *SI_P to reflect the
713 value of EXPR, which is expected to be the result of folding the
714 call. This can only be done if EXPR is a CALL_EXPR with valid
715 GIMPLE operands as arguments, or if it is a suitable RHS expression
716 for a GIMPLE_ASSIGN. More complex expressions will require
717 gimplification, which will introduce additional statements. In this
718 event, no update is performed, and the function returns false.
719 Note that we cannot mutate a GIMPLE_CALL in-place, so we always
720 replace the statement at *SI_P with an entirely new statement.
721 The new statement need not be a call, e.g., if the original call
722 folded to a constant. */
724 bool
725 update_call_from_tree (gimple_stmt_iterator *si_p, tree expr)
727 gimple stmt = gsi_stmt (*si_p);
729 if (valid_gimple_call_p (expr))
731 /* The call has simplified to another call. */
732 tree fn = CALL_EXPR_FN (expr);
733 unsigned i;
734 unsigned nargs = call_expr_nargs (expr);
735 vec<tree> args = vec<tree>();
736 gimple new_stmt;
738 if (nargs > 0)
740 args.create (nargs);
741 args.safe_grow_cleared (nargs);
743 for (i = 0; i < nargs; i++)
744 args[i] = CALL_EXPR_ARG (expr, i);
747 new_stmt = gimple_build_call_vec (fn, args);
748 finish_update_gimple_call (si_p, new_stmt, stmt);
749 args.release ();
751 return true;
753 else if (valid_gimple_rhs_p (expr))
755 tree lhs = gimple_call_lhs (stmt);
756 gimple new_stmt;
758 /* The call has simplified to an expression
759 that cannot be represented as a GIMPLE_CALL. */
760 if (lhs)
762 /* A value is expected.
763 Introduce a new GIMPLE_ASSIGN statement. */
764 STRIP_USELESS_TYPE_CONVERSION (expr);
765 new_stmt = gimple_build_assign (lhs, expr);
766 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
767 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
768 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
770 else if (!TREE_SIDE_EFFECTS (expr))
772 /* No value is expected, and EXPR has no effect.
773 Replace it with an empty statement. */
774 new_stmt = gimple_build_nop ();
775 if (gimple_in_ssa_p (cfun))
777 unlink_stmt_vdef (stmt);
778 release_defs (stmt);
781 else
783 /* No value is expected, but EXPR has an effect,
784 e.g., it could be a reference to a volatile
785 variable. Create an assignment statement
786 with a dummy (unused) lhs variable. */
787 STRIP_USELESS_TYPE_CONVERSION (expr);
788 if (gimple_in_ssa_p (cfun))
789 lhs = make_ssa_name (TREE_TYPE (expr), NULL);
790 else
791 lhs = create_tmp_var (TREE_TYPE (expr), NULL);
792 new_stmt = gimple_build_assign (lhs, expr);
793 gimple_set_vuse (new_stmt, gimple_vuse (stmt));
794 gimple_set_vdef (new_stmt, gimple_vdef (stmt));
795 move_ssa_defining_stmt_for_defs (new_stmt, stmt);
797 gimple_set_location (new_stmt, gimple_location (stmt));
798 gsi_replace (si_p, new_stmt, false);
799 return true;
801 else
802 /* The call simplified to an expression that is
803 not a valid GIMPLE RHS. */
804 return false;
808 /* Entry point to the propagation engine.
810 VISIT_STMT is called for every statement visited.
811 VISIT_PHI is called for every PHI node visited. */
813 void
814 ssa_propagate (ssa_prop_visit_stmt_fn visit_stmt,
815 ssa_prop_visit_phi_fn visit_phi)
817 ssa_prop_visit_stmt = visit_stmt;
818 ssa_prop_visit_phi = visit_phi;
820 ssa_prop_init ();
822 /* Iterate until the worklists are empty. */
823 while (!cfg_blocks_empty_p ()
824 || interesting_ssa_edges->length () > 0
825 || varying_ssa_edges->length () > 0)
827 if (!cfg_blocks_empty_p ())
829 /* Pull the next block to simulate off the worklist. */
830 basic_block dest_block = cfg_blocks_get ();
831 simulate_block (dest_block);
834 /* In order to move things to varying as quickly as
835 possible,process the VARYING_SSA_EDGES worklist first. */
836 process_ssa_edge_worklist (&varying_ssa_edges);
838 /* Now process the INTERESTING_SSA_EDGES worklist. */
839 process_ssa_edge_worklist (&interesting_ssa_edges);
842 ssa_prop_fini ();
846 /* Return true if STMT is of the form 'mem_ref = RHS', where 'mem_ref'
847 is a non-volatile pointer dereference, a structure reference or a
848 reference to a single _DECL. Ignore volatile memory references
849 because they are not interesting for the optimizers. */
851 bool
852 stmt_makes_single_store (gimple stmt)
854 tree lhs;
856 if (gimple_code (stmt) != GIMPLE_ASSIGN
857 && gimple_code (stmt) != GIMPLE_CALL)
858 return false;
860 if (!gimple_vdef (stmt))
861 return false;
863 lhs = gimple_get_lhs (stmt);
865 /* A call statement may have a null LHS. */
866 if (!lhs)
867 return false;
869 return (!TREE_THIS_VOLATILE (lhs)
870 && (DECL_P (lhs)
871 || REFERENCE_CLASS_P (lhs)));
875 /* Propagation statistics. */
876 struct prop_stats_d
878 long num_const_prop;
879 long num_copy_prop;
880 long num_stmts_folded;
881 long num_dce;
884 static struct prop_stats_d prop_stats;
886 /* Replace USE references in statement STMT with the values stored in
887 PROP_VALUE. Return true if at least one reference was replaced. */
889 static bool
890 replace_uses_in (gimple stmt, ssa_prop_get_value_fn get_value)
892 bool replaced = false;
893 use_operand_p use;
894 ssa_op_iter iter;
896 FOR_EACH_SSA_USE_OPERAND (use, stmt, iter, SSA_OP_USE)
898 tree tuse = USE_FROM_PTR (use);
899 tree val = (*get_value) (tuse);
901 if (val == tuse || val == NULL_TREE)
902 continue;
904 if (gimple_code (stmt) == GIMPLE_ASM
905 && !may_propagate_copy_into_asm (tuse))
906 continue;
908 if (!may_propagate_copy (tuse, val))
909 continue;
911 if (TREE_CODE (val) != SSA_NAME)
912 prop_stats.num_const_prop++;
913 else
914 prop_stats.num_copy_prop++;
916 propagate_value (use, val);
918 replaced = true;
921 return replaced;
925 /* Replace propagated values into all the arguments for PHI using the
926 values from PROP_VALUE. */
928 static void
929 replace_phi_args_in (gimple phi, ssa_prop_get_value_fn get_value)
931 size_t i;
932 bool replaced = false;
934 if (dump_file && (dump_flags & TDF_DETAILS))
936 fprintf (dump_file, "Folding PHI node: ");
937 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
940 for (i = 0; i < gimple_phi_num_args (phi); i++)
942 tree arg = gimple_phi_arg_def (phi, i);
944 if (TREE_CODE (arg) == SSA_NAME)
946 tree val = (*get_value) (arg);
948 if (val && val != arg && may_propagate_copy (arg, val))
950 if (TREE_CODE (val) != SSA_NAME)
951 prop_stats.num_const_prop++;
952 else
953 prop_stats.num_copy_prop++;
955 propagate_value (PHI_ARG_DEF_PTR (phi, i), val);
956 replaced = true;
958 /* If we propagated a copy and this argument flows
959 through an abnormal edge, update the replacement
960 accordingly. */
961 if (TREE_CODE (val) == SSA_NAME
962 && gimple_phi_arg_edge (phi, i)->flags & EDGE_ABNORMAL)
963 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
968 if (dump_file && (dump_flags & TDF_DETAILS))
970 if (!replaced)
971 fprintf (dump_file, "No folding possible\n");
972 else
974 fprintf (dump_file, "Folded into: ");
975 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
976 fprintf (dump_file, "\n");
982 /* Perform final substitution and folding of propagated values.
984 PROP_VALUE[I] contains the single value that should be substituted
985 at every use of SSA name N_I. If PROP_VALUE is NULL, no values are
986 substituted.
988 If FOLD_FN is non-NULL the function will be invoked on all statements
989 before propagating values for pass specific simplification.
991 DO_DCE is true if trivially dead stmts can be removed.
993 If DO_DCE is true, the statements within a BB are walked from
994 last to first element. Otherwise we scan from first to last element.
996 Return TRUE when something changed. */
998 bool
999 substitute_and_fold (ssa_prop_get_value_fn get_value_fn,
1000 ssa_prop_fold_stmt_fn fold_fn,
1001 bool do_dce)
1003 basic_block bb;
1004 bool something_changed = false;
1005 unsigned i;
1007 if (!get_value_fn && !fold_fn)
1008 return false;
1010 if (dump_file && (dump_flags & TDF_DETAILS))
1011 fprintf (dump_file, "\nSubstituting values and folding statements\n\n");
1013 memset (&prop_stats, 0, sizeof (prop_stats));
1015 /* Substitute lattice values at definition sites. */
1016 if (get_value_fn)
1017 for (i = 1; i < num_ssa_names; ++i)
1019 tree name = ssa_name (i);
1020 tree val;
1021 gimple def_stmt;
1022 gimple_stmt_iterator gsi;
1024 if (!name
1025 || virtual_operand_p (name))
1026 continue;
1028 def_stmt = SSA_NAME_DEF_STMT (name);
1029 if (gimple_nop_p (def_stmt)
1030 /* Do not substitute ASSERT_EXPR rhs, this will confuse VRP. */
1031 || (gimple_assign_single_p (def_stmt)
1032 && gimple_assign_rhs_code (def_stmt) == ASSERT_EXPR)
1033 || !(val = (*get_value_fn) (name))
1034 || !may_propagate_copy (name, val))
1035 continue;
1037 gsi = gsi_for_stmt (def_stmt);
1038 if (is_gimple_assign (def_stmt))
1040 gimple_assign_set_rhs_with_ops (&gsi, TREE_CODE (val),
1041 val, NULL_TREE);
1042 gcc_assert (gsi_stmt (gsi) == def_stmt);
1043 if (maybe_clean_eh_stmt (def_stmt))
1044 gimple_purge_dead_eh_edges (gimple_bb (def_stmt));
1045 update_stmt (def_stmt);
1047 else if (is_gimple_call (def_stmt))
1049 int flags = gimple_call_flags (def_stmt);
1051 /* Don't optimize away calls that have side-effects. */
1052 if ((flags & (ECF_CONST|ECF_PURE)) == 0
1053 || (flags & ECF_LOOPING_CONST_OR_PURE))
1054 continue;
1055 if (update_call_from_tree (&gsi, val)
1056 && maybe_clean_or_replace_eh_stmt (def_stmt, gsi_stmt (gsi)))
1057 gimple_purge_dead_eh_edges (gimple_bb (gsi_stmt (gsi)));
1059 else if (gimple_code (def_stmt) == GIMPLE_PHI)
1061 gimple new_stmt = gimple_build_assign (name, val);
1062 gimple_stmt_iterator gsi2;
1063 SSA_NAME_DEF_STMT (name) = new_stmt;
1064 gsi2 = gsi_after_labels (gimple_bb (def_stmt));
1065 gsi_insert_before (&gsi2, new_stmt, GSI_SAME_STMT);
1066 remove_phi_node (&gsi, false);
1069 something_changed = true;
1072 /* Propagate into all uses and fold. */
1073 FOR_EACH_BB (bb)
1075 gimple_stmt_iterator i;
1077 /* Propagate known values into PHI nodes. */
1078 if (get_value_fn)
1079 for (i = gsi_start_phis (bb); !gsi_end_p (i); gsi_next (&i))
1080 replace_phi_args_in (gsi_stmt (i), get_value_fn);
1082 /* Propagate known values into stmts. Do a backward walk if
1083 do_dce is true. In some case it exposes
1084 more trivially deletable stmts to walk backward. */
1085 for (i = (do_dce ? gsi_last_bb (bb) : gsi_start_bb (bb)); !gsi_end_p (i);)
1087 bool did_replace;
1088 gimple stmt = gsi_stmt (i);
1089 gimple old_stmt;
1090 enum gimple_code code = gimple_code (stmt);
1091 gimple_stmt_iterator oldi;
1093 oldi = i;
1094 if (do_dce)
1095 gsi_prev (&i);
1096 else
1097 gsi_next (&i);
1099 /* Ignore ASSERT_EXPRs. They are used by VRP to generate
1100 range information for names and they are discarded
1101 afterwards. */
1103 if (code == GIMPLE_ASSIGN
1104 && TREE_CODE (gimple_assign_rhs1 (stmt)) == ASSERT_EXPR)
1105 continue;
1107 /* No point propagating into a stmt whose result is not used,
1108 but instead we might be able to remove a trivially dead stmt.
1109 Don't do this when called from VRP, since the SSA_NAME which
1110 is going to be released could be still referenced in VRP
1111 ranges. */
1112 if (do_dce
1113 && gimple_get_lhs (stmt)
1114 && TREE_CODE (gimple_get_lhs (stmt)) == SSA_NAME
1115 && has_zero_uses (gimple_get_lhs (stmt))
1116 && !stmt_could_throw_p (stmt)
1117 && !gimple_has_side_effects (stmt))
1119 gimple_stmt_iterator i2;
1121 if (dump_file && dump_flags & TDF_DETAILS)
1123 fprintf (dump_file, "Removing dead stmt ");
1124 print_gimple_stmt (dump_file, stmt, 0, 0);
1125 fprintf (dump_file, "\n");
1127 prop_stats.num_dce++;
1128 i2 = gsi_for_stmt (stmt);
1129 gsi_remove (&i2, true);
1130 release_defs (stmt);
1131 continue;
1134 /* Replace the statement with its folded version and mark it
1135 folded. */
1136 did_replace = false;
1137 if (dump_file && (dump_flags & TDF_DETAILS))
1139 fprintf (dump_file, "Folding statement: ");
1140 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1143 old_stmt = stmt;
1145 /* Some statements may be simplified using propagator
1146 specific information. Do this before propagating
1147 into the stmt to not disturb pass specific information. */
1148 if (fold_fn
1149 && (*fold_fn)(&oldi))
1151 did_replace = true;
1152 prop_stats.num_stmts_folded++;
1153 stmt = gsi_stmt (oldi);
1154 update_stmt (stmt);
1157 /* Replace real uses in the statement. */
1158 if (get_value_fn)
1159 did_replace |= replace_uses_in (stmt, get_value_fn);
1161 /* If we made a replacement, fold the statement. */
1162 if (did_replace)
1163 fold_stmt (&oldi);
1165 /* Now cleanup. */
1166 if (did_replace)
1168 stmt = gsi_stmt (oldi);
1170 /* If we cleaned up EH information from the statement,
1171 remove EH edges. */
1172 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
1173 gimple_purge_dead_eh_edges (bb);
1175 if (is_gimple_assign (stmt)
1176 && (get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
1177 == GIMPLE_SINGLE_RHS))
1179 tree rhs = gimple_assign_rhs1 (stmt);
1181 if (TREE_CODE (rhs) == ADDR_EXPR)
1182 recompute_tree_invariant_for_addr_expr (rhs);
1185 /* Determine what needs to be done to update the SSA form. */
1186 update_stmt (stmt);
1187 if (!is_gimple_debug (stmt))
1188 something_changed = true;
1191 if (dump_file && (dump_flags & TDF_DETAILS))
1193 if (did_replace)
1195 fprintf (dump_file, "Folded into: ");
1196 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1197 fprintf (dump_file, "\n");
1199 else
1200 fprintf (dump_file, "Not folded\n");
1205 statistics_counter_event (cfun, "Constants propagated",
1206 prop_stats.num_const_prop);
1207 statistics_counter_event (cfun, "Copies propagated",
1208 prop_stats.num_copy_prop);
1209 statistics_counter_event (cfun, "Statements folded",
1210 prop_stats.num_stmts_folded);
1211 statistics_counter_event (cfun, "Statements deleted",
1212 prop_stats.num_dce);
1213 return something_changed;
1216 #include "gt-tree-ssa-propagate.h"