d: Merge upstream dmd, druntime c8ae4adb2e, phobos 792c8b7c1.
[official-gcc.git] / gcc / tree-ssa-propagate.cc
blob976b035eeece5d8f0e44015c403c392ef16100a5
1 /* Generic SSA value propagation engine.
2 Copyright (C) 2004-2022 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 "backend.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "ssa.h"
28 #include "gimple-pretty-print.h"
29 #include "dumpfile.h"
30 #include "gimple-iterator.h"
31 #include "gimple-fold.h"
32 #include "tree-eh.h"
33 #include "gimplify.h"
34 #include "tree-cfg.h"
35 #include "tree-ssa.h"
36 #include "tree-ssa-propagate.h"
37 #include "domwalk.h"
38 #include "cfgloop.h"
39 #include "tree-cfgcleanup.h"
40 #include "cfganal.h"
42 /* This file implements a generic value propagation engine based on
43 the same propagation used by the SSA-CCP algorithm [1].
45 Propagation is performed by simulating the execution of every
46 statement that produces the value being propagated. Simulation
47 proceeds as follows:
49 1- Initially, all edges of the CFG are marked not executable and
50 the CFG worklist is seeded with all the statements in the entry
51 basic block (block 0).
53 2- Every statement S is simulated with a call to the call-back
54 function SSA_PROP_VISIT_STMT. This evaluation may produce 3
55 results:
57 SSA_PROP_NOT_INTERESTING: Statement S produces nothing of
58 interest and does not affect any of the work lists.
59 The statement may be simulated again if any of its input
60 operands change in future iterations of the simulator.
62 SSA_PROP_VARYING: The value produced by S cannot be determined
63 at compile time. Further simulation of S is not required.
64 If S is a conditional jump, all the outgoing edges for the
65 block are considered executable and added to the work
66 list.
68 SSA_PROP_INTERESTING: S produces a value that can be computed
69 at compile time. Its result can be propagated into the
70 statements that feed from S. Furthermore, if S is a
71 conditional jump, only the edge known to be taken is added
72 to the work list. Edges that are known not to execute are
73 never simulated.
75 3- PHI nodes are simulated with a call to SSA_PROP_VISIT_PHI. The
76 return value from SSA_PROP_VISIT_PHI has the same semantics as
77 described in #2.
79 4- Three work lists are kept. Statements are only added to these
80 lists if they produce one of SSA_PROP_INTERESTING or
81 SSA_PROP_VARYING.
83 CFG_BLOCKS contains the list of blocks to be simulated.
84 Blocks are added to this list if their incoming edges are
85 found executable.
87 SSA_EDGE_WORKLIST contains the list of statements that we
88 need to revisit.
90 5- Simulation terminates when all three work lists are drained.
92 Before calling ssa_propagate, it is important to clear
93 prop_simulate_again_p for all the statements in the program that
94 should be simulated. This initialization allows an implementation
95 to specify which statements should never be simulated.
97 It is also important to compute def-use information before calling
98 ssa_propagate.
100 References:
102 [1] Constant propagation with conditional branches,
103 Wegman and Zadeck, ACM TOPLAS 13(2):181-210.
105 [2] Building an Optimizing Compiler,
106 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
108 [3] Advanced Compiler Design and Implementation,
109 Steven Muchnick, Morgan Kaufmann, 1997, Section 12.6 */
111 /* Worklists of control flow edge destinations. This contains
112 the CFG order number of the blocks so we can iterate in CFG
113 order by visiting in bit-order. We use two worklists to
114 first make forward progress before iterating. */
115 static bitmap cfg_blocks;
116 static bitmap cfg_blocks_back;
117 static int *bb_to_cfg_order;
118 static int *cfg_order_to_bb;
120 /* Worklists of SSA edges which will need reexamination as their
121 definition has changed. SSA edges are def-use edges in the SSA
122 web. For each D-U edge, we store the target statement or PHI node
123 UID in a bitmap. UIDs order stmts in execution order. We use
124 two worklists to first make forward progress before iterating. */
125 static bitmap ssa_edge_worklist;
126 static bitmap ssa_edge_worklist_back;
127 static vec<gimple *> uid_to_stmt;
129 /* Current RPO index in the iteration. */
130 static int curr_order;
133 /* We have just defined a new value for VAR. If IS_VARYING is true,
134 add all immediate uses of VAR to VARYING_SSA_EDGES, otherwise add
135 them to INTERESTING_SSA_EDGES. */
137 static void
138 add_ssa_edge (tree var)
140 imm_use_iterator iter;
141 use_operand_p use_p;
143 FOR_EACH_IMM_USE_FAST (use_p, iter, var)
145 gimple *use_stmt = USE_STMT (use_p);
146 if (!prop_simulate_again_p (use_stmt))
147 continue;
149 /* If we did not yet simulate the block wait for this to happen
150 and do not add the stmt to the SSA edge worklist. */
151 basic_block use_bb = gimple_bb (use_stmt);
152 if (! (use_bb->flags & BB_VISITED))
153 continue;
155 /* If this is a use on a not yet executable edge do not bother to
156 queue it. */
157 if (gimple_code (use_stmt) == GIMPLE_PHI
158 && !(EDGE_PRED (use_bb, PHI_ARG_INDEX_FROM_USE (use_p))->flags
159 & EDGE_EXECUTABLE))
160 continue;
162 bitmap worklist;
163 if (bb_to_cfg_order[gimple_bb (use_stmt)->index] < curr_order)
164 worklist = ssa_edge_worklist_back;
165 else
166 worklist = ssa_edge_worklist;
167 if (bitmap_set_bit (worklist, gimple_uid (use_stmt)))
169 uid_to_stmt[gimple_uid (use_stmt)] = use_stmt;
170 if (dump_file && (dump_flags & TDF_DETAILS))
172 fprintf (dump_file, "ssa_edge_worklist: adding SSA use in ");
173 print_gimple_stmt (dump_file, use_stmt, 0, TDF_SLIM);
180 /* Add edge E to the control flow worklist. */
182 static void
183 add_control_edge (edge e)
185 basic_block bb = e->dest;
186 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
187 return;
189 /* If the edge had already been executed, skip it. */
190 if (e->flags & EDGE_EXECUTABLE)
191 return;
193 e->flags |= EDGE_EXECUTABLE;
195 int bb_order = bb_to_cfg_order[bb->index];
196 if (bb_order < curr_order)
197 bitmap_set_bit (cfg_blocks_back, bb_order);
198 else
199 bitmap_set_bit (cfg_blocks, bb_order);
201 if (dump_file && (dump_flags & TDF_DETAILS))
202 fprintf (dump_file, "Adding destination of edge (%d -> %d) to worklist\n",
203 e->src->index, e->dest->index);
207 /* Simulate the execution of STMT and update the work lists accordingly. */
209 void
210 ssa_propagation_engine::simulate_stmt (gimple *stmt)
212 enum ssa_prop_result val = SSA_PROP_NOT_INTERESTING;
213 edge taken_edge = NULL;
214 tree output_name = NULL_TREE;
216 /* Pull the stmt off the SSA edge worklist. */
217 bitmap_clear_bit (ssa_edge_worklist, gimple_uid (stmt));
219 /* Don't bother visiting statements that are already
220 considered varying by the propagator. */
221 if (!prop_simulate_again_p (stmt))
222 return;
224 if (gimple_code (stmt) == GIMPLE_PHI)
226 val = visit_phi (as_a <gphi *> (stmt));
227 output_name = gimple_phi_result (stmt);
229 else
230 val = visit_stmt (stmt, &taken_edge, &output_name);
232 if (val == SSA_PROP_VARYING)
234 prop_set_simulate_again (stmt, false);
236 /* If the statement produced a new varying value, add the SSA
237 edges coming out of OUTPUT_NAME. */
238 if (output_name)
239 add_ssa_edge (output_name);
241 /* If STMT transfers control out of its basic block, add
242 all outgoing edges to the work list. */
243 if (stmt_ends_bb_p (stmt))
245 edge e;
246 edge_iterator ei;
247 basic_block bb = gimple_bb (stmt);
248 FOR_EACH_EDGE (e, ei, bb->succs)
249 add_control_edge (e);
251 return;
253 else if (val == SSA_PROP_INTERESTING)
255 /* If the statement produced new value, add the SSA edges coming
256 out of OUTPUT_NAME. */
257 if (output_name)
258 add_ssa_edge (output_name);
260 /* If we know which edge is going to be taken out of this block,
261 add it to the CFG work list. */
262 if (taken_edge)
263 add_control_edge (taken_edge);
266 /* If there are no SSA uses on the stmt whose defs are simulated
267 again then this stmt will be never visited again. */
268 bool has_simulate_again_uses = false;
269 use_operand_p use_p;
270 ssa_op_iter iter;
271 if (gimple_code (stmt) == GIMPLE_PHI)
273 edge_iterator ei;
274 edge e;
275 tree arg;
276 FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->preds)
277 if (!(e->flags & EDGE_EXECUTABLE)
278 || ((arg = PHI_ARG_DEF_FROM_EDGE (stmt, e))
279 && TREE_CODE (arg) == SSA_NAME
280 && !SSA_NAME_IS_DEFAULT_DEF (arg)
281 && prop_simulate_again_p (SSA_NAME_DEF_STMT (arg))))
283 has_simulate_again_uses = true;
284 break;
287 else
288 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
290 gimple *def_stmt = SSA_NAME_DEF_STMT (USE_FROM_PTR (use_p));
291 if (!gimple_nop_p (def_stmt)
292 && prop_simulate_again_p (def_stmt))
294 has_simulate_again_uses = true;
295 break;
298 if (!has_simulate_again_uses)
300 if (dump_file && (dump_flags & TDF_DETAILS))
301 fprintf (dump_file, "marking stmt to be not simulated again\n");
302 prop_set_simulate_again (stmt, false);
307 /* Simulate the execution of BLOCK. Evaluate the statement associated
308 with each variable reference inside the block. */
310 void
311 ssa_propagation_engine::simulate_block (basic_block block)
313 gimple_stmt_iterator gsi;
315 /* There is nothing to do for the exit block. */
316 if (block == EXIT_BLOCK_PTR_FOR_FN (cfun))
317 return;
319 if (dump_file && (dump_flags & TDF_DETAILS))
320 fprintf (dump_file, "\nSimulating block %d\n", block->index);
322 /* Always simulate PHI nodes, even if we have simulated this block
323 before. */
324 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
325 simulate_stmt (gsi_stmt (gsi));
327 /* If this is the first time we've simulated this block, then we
328 must simulate each of its statements. */
329 if (! (block->flags & BB_VISITED))
331 gimple_stmt_iterator j;
332 unsigned int normal_edge_count;
333 edge e, normal_edge;
334 edge_iterator ei;
336 for (j = gsi_start_bb (block); !gsi_end_p (j); gsi_next (&j))
337 simulate_stmt (gsi_stmt (j));
339 /* Note that we have simulated this block. */
340 block->flags |= BB_VISITED;
342 /* We cannot predict when abnormal and EH edges will be executed, so
343 once a block is considered executable, we consider any
344 outgoing abnormal edges as executable.
346 TODO: This is not exactly true. Simplifying statement might
347 prove it non-throwing and also computed goto can be handled
348 when destination is known.
350 At the same time, if this block has only one successor that is
351 reached by non-abnormal edges, then add that successor to the
352 worklist. */
353 normal_edge_count = 0;
354 normal_edge = NULL;
355 FOR_EACH_EDGE (e, ei, block->succs)
357 if (e->flags & (EDGE_ABNORMAL | EDGE_EH))
358 add_control_edge (e);
359 else
361 normal_edge_count++;
362 normal_edge = e;
366 if (normal_edge_count == 1)
367 add_control_edge (normal_edge);
372 /* Initialize local data structures and work lists. */
374 static void
375 ssa_prop_init (void)
377 edge e;
378 edge_iterator ei;
379 basic_block bb;
381 /* Worklists of SSA edges. */
382 ssa_edge_worklist = BITMAP_ALLOC (NULL);
383 ssa_edge_worklist_back = BITMAP_ALLOC (NULL);
384 bitmap_tree_view (ssa_edge_worklist);
385 bitmap_tree_view (ssa_edge_worklist_back);
387 /* Worklist of basic-blocks. */
388 bb_to_cfg_order = XNEWVEC (int, last_basic_block_for_fn (cfun) + 1);
389 cfg_order_to_bb = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
390 int n = pre_and_rev_post_order_compute_fn (cfun, NULL,
391 cfg_order_to_bb, false);
392 for (int i = 0; i < n; ++i)
393 bb_to_cfg_order[cfg_order_to_bb[i]] = i;
394 cfg_blocks = BITMAP_ALLOC (NULL);
395 cfg_blocks_back = BITMAP_ALLOC (NULL);
397 /* Initially assume that every edge in the CFG is not executable.
398 (including the edges coming out of the entry block). Mark blocks
399 as not visited, blocks not yet visited will have all their statements
400 simulated once an incoming edge gets executable. */
401 set_gimple_stmt_max_uid (cfun, 0);
402 for (int i = 0; i < n; ++i)
404 gimple_stmt_iterator si;
405 bb = BASIC_BLOCK_FOR_FN (cfun, cfg_order_to_bb[i]);
407 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
409 gimple *stmt = gsi_stmt (si);
410 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
413 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
415 gimple *stmt = gsi_stmt (si);
416 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
419 bb->flags &= ~BB_VISITED;
420 FOR_EACH_EDGE (e, ei, bb->succs)
421 e->flags &= ~EDGE_EXECUTABLE;
423 uid_to_stmt.safe_grow (gimple_stmt_max_uid (cfun), true);
427 /* Free allocated storage. */
429 static void
430 ssa_prop_fini (void)
432 BITMAP_FREE (cfg_blocks);
433 BITMAP_FREE (cfg_blocks_back);
434 free (bb_to_cfg_order);
435 free (cfg_order_to_bb);
436 BITMAP_FREE (ssa_edge_worklist);
437 BITMAP_FREE (ssa_edge_worklist_back);
438 uid_to_stmt.release ();
442 /* Entry point to the propagation engine.
444 The VISIT_STMT virtual function is called for every statement
445 visited and the VISIT_PHI virtual function is called for every PHI
446 node visited. */
448 void
449 ssa_propagation_engine::ssa_propagate (void)
451 ssa_prop_init ();
453 curr_order = 0;
455 /* Iterate until the worklists are empty. We iterate both blocks
456 and stmts in RPO order, using sets of two worklists to first
457 complete the current iteration before iterating over backedges.
458 Seed the algorithm by adding the successors of the entry block to the
459 edge worklist. */
460 edge e;
461 edge_iterator ei;
462 FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs)
464 e->flags &= ~EDGE_EXECUTABLE;
465 add_control_edge (e);
467 while (1)
469 int next_block_order = (bitmap_empty_p (cfg_blocks)
470 ? -1 : bitmap_first_set_bit (cfg_blocks));
471 int next_stmt_uid = (bitmap_empty_p (ssa_edge_worklist)
472 ? -1 : bitmap_first_set_bit (ssa_edge_worklist));
473 if (next_block_order == -1 && next_stmt_uid == -1)
475 if (bitmap_empty_p (cfg_blocks_back)
476 && bitmap_empty_p (ssa_edge_worklist_back))
477 break;
479 if (dump_file && (dump_flags & TDF_DETAILS))
480 fprintf (dump_file, "Regular worklists empty, now processing "
481 "backedge destinations\n");
482 std::swap (cfg_blocks, cfg_blocks_back);
483 std::swap (ssa_edge_worklist, ssa_edge_worklist_back);
484 continue;
487 int next_stmt_bb_order = -1;
488 gimple *next_stmt = NULL;
489 if (next_stmt_uid != -1)
491 next_stmt = uid_to_stmt[next_stmt_uid];
492 next_stmt_bb_order = bb_to_cfg_order[gimple_bb (next_stmt)->index];
495 /* Pull the next block to simulate off the worklist if it comes first. */
496 if (next_block_order != -1
497 && (next_stmt_bb_order == -1
498 || next_block_order <= next_stmt_bb_order))
500 curr_order = next_block_order;
501 bitmap_clear_bit (cfg_blocks, next_block_order);
502 basic_block bb
503 = BASIC_BLOCK_FOR_FN (cfun, cfg_order_to_bb [next_block_order]);
504 simulate_block (bb);
506 /* Else simulate from the SSA edge worklist. */
507 else
509 curr_order = next_stmt_bb_order;
510 if (dump_file && (dump_flags & TDF_DETAILS))
512 fprintf (dump_file, "\nSimulating statement: ");
513 print_gimple_stmt (dump_file, next_stmt, 0, dump_flags);
515 simulate_stmt (next_stmt);
519 ssa_prop_fini ();
522 /* Return true if STMT is of the form 'mem_ref = RHS', where 'mem_ref'
523 is a non-volatile pointer dereference, a structure reference or a
524 reference to a single _DECL. Ignore volatile memory references
525 because they are not interesting for the optimizers. */
527 bool
528 stmt_makes_single_store (gimple *stmt)
530 tree lhs;
532 if (gimple_code (stmt) != GIMPLE_ASSIGN
533 && gimple_code (stmt) != GIMPLE_CALL)
534 return false;
536 if (!gimple_vdef (stmt))
537 return false;
539 lhs = gimple_get_lhs (stmt);
541 /* A call statement may have a null LHS. */
542 if (!lhs)
543 return false;
545 return (!TREE_THIS_VOLATILE (lhs)
546 && (DECL_P (lhs)
547 || REFERENCE_CLASS_P (lhs)));
551 /* Propagation statistics. */
552 struct prop_stats_d
554 long num_const_prop;
555 long num_copy_prop;
556 long num_stmts_folded;
557 long num_dce;
560 static struct prop_stats_d prop_stats;
562 /* Replace USE references in statement STMT with the values stored in
563 PROP_VALUE. Return true if at least one reference was replaced. */
565 bool
566 substitute_and_fold_engine::replace_uses_in (gimple *stmt)
568 bool replaced = false;
569 use_operand_p use;
570 ssa_op_iter iter;
572 FOR_EACH_SSA_USE_OPERAND (use, stmt, iter, SSA_OP_USE)
574 tree tuse = USE_FROM_PTR (use);
575 tree val = value_of_expr (tuse, stmt);
577 if (val == tuse || val == NULL_TREE)
578 continue;
580 if (gimple_code (stmt) == GIMPLE_ASM
581 && !may_propagate_copy_into_asm (tuse))
582 continue;
584 if (!may_propagate_copy (tuse, val))
585 continue;
587 if (TREE_CODE (val) != SSA_NAME)
588 prop_stats.num_const_prop++;
589 else
590 prop_stats.num_copy_prop++;
592 propagate_value (use, val);
594 replaced = true;
597 return replaced;
601 /* Replace propagated values into all the arguments for PHI using the
602 values from PROP_VALUE. */
604 bool
605 substitute_and_fold_engine::replace_phi_args_in (gphi *phi)
607 size_t i;
608 bool replaced = false;
610 for (i = 0; i < gimple_phi_num_args (phi); i++)
612 tree arg = gimple_phi_arg_def (phi, i);
614 if (TREE_CODE (arg) == SSA_NAME)
616 edge e = gimple_phi_arg_edge (phi, i);
617 tree val = value_on_edge (e, arg);
619 if (val && val != arg && may_propagate_copy (arg, val))
621 if (TREE_CODE (val) != SSA_NAME)
622 prop_stats.num_const_prop++;
623 else
624 prop_stats.num_copy_prop++;
626 propagate_value (PHI_ARG_DEF_PTR (phi, i), val);
627 replaced = true;
629 /* If we propagated a copy and this argument flows
630 through an abnormal edge, update the replacement
631 accordingly. */
632 if (TREE_CODE (val) == SSA_NAME
633 && e->flags & EDGE_ABNORMAL
634 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
636 /* This can only occur for virtual operands, since
637 for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val))
638 would prevent replacement. */
639 gcc_checking_assert (virtual_operand_p (val));
640 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
646 if (dump_file && (dump_flags & TDF_DETAILS))
648 if (!replaced)
649 fprintf (dump_file, "No folding possible\n");
650 else
652 fprintf (dump_file, "Folded into: ");
653 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
654 fprintf (dump_file, "\n");
658 return replaced;
662 class substitute_and_fold_dom_walker : public dom_walker
664 public:
665 substitute_and_fold_dom_walker (cdi_direction direction,
666 class substitute_and_fold_engine *engine)
667 : dom_walker (direction),
668 something_changed (false),
669 substitute_and_fold_engine (engine)
671 stmts_to_remove.create (0);
672 stmts_to_fixup.create (0);
673 need_eh_cleanup = BITMAP_ALLOC (NULL);
674 need_ab_cleanup = BITMAP_ALLOC (NULL);
676 ~substitute_and_fold_dom_walker ()
678 stmts_to_remove.release ();
679 stmts_to_fixup.release ();
680 BITMAP_FREE (need_eh_cleanup);
681 BITMAP_FREE (need_ab_cleanup);
684 edge before_dom_children (basic_block) final override;
685 void after_dom_children (basic_block bb) final override
687 substitute_and_fold_engine->post_fold_bb (bb);
690 bool something_changed;
691 vec<gimple *> stmts_to_remove;
692 vec<gimple *> stmts_to_fixup;
693 bitmap need_eh_cleanup;
694 bitmap need_ab_cleanup;
696 class substitute_and_fold_engine *substitute_and_fold_engine;
698 private:
699 void foreach_new_stmt_in_bb (gimple_stmt_iterator old_gsi,
700 gimple_stmt_iterator new_gsi);
703 /* Call post_new_stmt for each new statement that has been added
704 to the current BB. OLD_GSI is the statement iterator before the BB
705 changes ocurred. NEW_GSI is the iterator which may contain new
706 statements. */
708 void
709 substitute_and_fold_dom_walker::foreach_new_stmt_in_bb
710 (gimple_stmt_iterator old_gsi,
711 gimple_stmt_iterator new_gsi)
713 basic_block bb = gsi_bb (new_gsi);
714 if (gsi_end_p (old_gsi))
715 old_gsi = gsi_start_bb (bb);
716 else
717 gsi_next (&old_gsi);
718 while (gsi_stmt (old_gsi) != gsi_stmt (new_gsi))
720 gimple *stmt = gsi_stmt (old_gsi);
721 substitute_and_fold_engine->post_new_stmt (stmt);
722 gsi_next (&old_gsi);
726 bool
727 substitute_and_fold_engine::propagate_into_phi_args (basic_block bb)
729 edge e;
730 edge_iterator ei;
731 bool propagated = false;
733 /* Visit BB successor PHI nodes and replace PHI args. */
734 FOR_EACH_EDGE (e, ei, bb->succs)
736 for (gphi_iterator gpi = gsi_start_phis (e->dest);
737 !gsi_end_p (gpi); gsi_next (&gpi))
739 gphi *phi = gpi.phi ();
740 use_operand_p use_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, e);
741 tree arg = USE_FROM_PTR (use_p);
742 if (TREE_CODE (arg) != SSA_NAME
743 || virtual_operand_p (arg))
744 continue;
745 tree val = value_on_edge (e, arg);
746 if (val
747 && is_gimple_min_invariant (val)
748 && may_propagate_copy (arg, val))
750 propagate_value (use_p, val);
751 propagated = true;
755 return propagated;
758 edge
759 substitute_and_fold_dom_walker::before_dom_children (basic_block bb)
761 substitute_and_fold_engine->pre_fold_bb (bb);
763 /* Propagate known values into PHI nodes. */
764 for (gphi_iterator i = gsi_start_phis (bb);
765 !gsi_end_p (i);
766 gsi_next (&i))
768 gphi *phi = i.phi ();
769 tree res = gimple_phi_result (phi);
770 if (virtual_operand_p (res))
771 continue;
772 if (dump_file && (dump_flags & TDF_DETAILS))
774 fprintf (dump_file, "Folding PHI node: ");
775 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
777 if (res && TREE_CODE (res) == SSA_NAME)
779 tree sprime = substitute_and_fold_engine->value_of_expr (res, phi);
780 if (sprime
781 && sprime != res
782 && may_propagate_copy (res, sprime))
784 if (dump_file && (dump_flags & TDF_DETAILS))
786 fprintf (dump_file, "Queued PHI for removal. Folds to: ");
787 print_generic_expr (dump_file, sprime);
788 fprintf (dump_file, "\n");
790 stmts_to_remove.safe_push (phi);
791 continue;
794 something_changed |= substitute_and_fold_engine->replace_phi_args_in (phi);
797 /* Propagate known values into stmts. In some case it exposes
798 more trivially deletable stmts to walk backward. */
799 for (gimple_stmt_iterator i = gsi_start_bb (bb);
800 !gsi_end_p (i);
801 gsi_next (&i))
803 bool did_replace;
804 gimple *stmt = gsi_stmt (i);
806 substitute_and_fold_engine->pre_fold_stmt (stmt);
808 if (dump_file && (dump_flags & TDF_DETAILS))
810 fprintf (dump_file, "Folding statement: ");
811 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
814 /* No point propagating into a stmt we have a value for we
815 can propagate into all uses. Mark it for removal instead. */
816 tree lhs = gimple_get_lhs (stmt);
817 if (lhs && TREE_CODE (lhs) == SSA_NAME)
819 tree sprime = substitute_and_fold_engine->value_of_stmt (stmt, lhs);
820 if (sprime
821 && sprime != lhs
822 && may_propagate_copy (lhs, sprime)
823 && !stmt_could_throw_p (cfun, stmt)
824 && !gimple_has_side_effects (stmt))
826 if (dump_file && (dump_flags & TDF_DETAILS))
828 fprintf (dump_file, "Queued stmt for removal. Folds to: ");
829 print_generic_expr (dump_file, sprime);
830 fprintf (dump_file, "\n");
832 stmts_to_remove.safe_push (stmt);
833 continue;
837 /* Replace the statement with its folded version and mark it
838 folded. */
839 did_replace = false;
840 gimple *old_stmt = stmt;
841 bool was_noreturn = false;
842 bool can_make_abnormal_goto = false;
843 if (is_gimple_call (stmt))
845 was_noreturn = gimple_call_noreturn_p (stmt);
846 can_make_abnormal_goto = stmt_can_make_abnormal_goto (stmt);
849 /* Replace real uses in the statement. */
850 did_replace |= substitute_and_fold_engine->replace_uses_in (stmt);
852 gimple_stmt_iterator prev_gsi = i;
853 gsi_prev (&prev_gsi);
855 /* If we made a replacement, fold the statement. */
856 if (did_replace)
858 fold_stmt (&i, follow_single_use_edges);
859 stmt = gsi_stmt (i);
860 gimple_set_modified (stmt, true);
862 /* Also fold if we want to fold all statements. */
863 else if (substitute_and_fold_engine->fold_all_stmts
864 && fold_stmt (&i, follow_single_use_edges))
866 did_replace = true;
867 stmt = gsi_stmt (i);
868 gimple_set_modified (stmt, true);
871 /* Some statements may be simplified using propagator
872 specific information. Do this before propagating
873 into the stmt to not disturb pass specific information. */
874 update_stmt_if_modified (stmt);
875 if (substitute_and_fold_engine->fold_stmt (&i))
877 did_replace = true;
878 prop_stats.num_stmts_folded++;
879 stmt = gsi_stmt (i);
880 gimple_set_modified (stmt, true);
883 /* If this is a control statement the propagator left edges
884 unexecuted on force the condition in a way consistent with
885 that. See PR66945 for cases where the propagator can end
886 up with a different idea of a taken edge than folding
887 (once undefined behavior is involved). */
888 if (gimple_code (stmt) == GIMPLE_COND)
890 if ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE)
891 ^ (EDGE_SUCC (bb, 1)->flags & EDGE_EXECUTABLE))
893 if (((EDGE_SUCC (bb, 0)->flags & EDGE_TRUE_VALUE) != 0)
894 == ((EDGE_SUCC (bb, 0)->flags & EDGE_EXECUTABLE) != 0))
895 gimple_cond_make_true (as_a <gcond *> (stmt));
896 else
897 gimple_cond_make_false (as_a <gcond *> (stmt));
898 gimple_set_modified (stmt, true);
899 did_replace = true;
903 /* Now cleanup. */
904 if (did_replace)
906 foreach_new_stmt_in_bb (prev_gsi, i);
908 /* If we cleaned up EH information from the statement,
909 remove EH edges. */
910 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
911 bitmap_set_bit (need_eh_cleanup, bb->index);
913 /* If we turned a call with possible abnormal control transfer
914 into one that doesn't, remove abnormal edges. */
915 if (can_make_abnormal_goto
916 && !stmt_can_make_abnormal_goto (stmt))
917 bitmap_set_bit (need_ab_cleanup, bb->index);
919 /* If we turned a not noreturn call into a noreturn one
920 schedule it for fixup. */
921 if (!was_noreturn
922 && is_gimple_call (stmt)
923 && gimple_call_noreturn_p (stmt))
924 stmts_to_fixup.safe_push (stmt);
926 if (gimple_assign_single_p (stmt))
928 tree rhs = gimple_assign_rhs1 (stmt);
930 if (TREE_CODE (rhs) == ADDR_EXPR)
931 recompute_tree_invariant_for_addr_expr (rhs);
934 /* Determine what needs to be done to update the SSA form. */
935 update_stmt_if_modified (stmt);
936 if (!is_gimple_debug (stmt))
937 something_changed = true;
940 if (dump_file && (dump_flags & TDF_DETAILS))
942 if (did_replace)
944 fprintf (dump_file, "Folded into: ");
945 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
946 fprintf (dump_file, "\n");
948 else
949 fprintf (dump_file, "Not folded\n");
953 something_changed |= substitute_and_fold_engine->propagate_into_phi_args (bb);
955 return NULL;
960 /* Perform final substitution and folding of propagated values.
961 Process the whole function if BLOCK is null, otherwise only
962 process the blocks that BLOCK dominates. In the latter case,
963 it is the caller's responsibility to ensure that dominator
964 information is available and up-to-date.
966 PROP_VALUE[I] contains the single value that should be substituted
967 at every use of SSA name N_I. If PROP_VALUE is NULL, no values are
968 substituted.
970 If FOLD_FN is non-NULL the function will be invoked on all statements
971 before propagating values for pass specific simplification.
973 DO_DCE is true if trivially dead stmts can be removed.
975 If DO_DCE is true, the statements within a BB are walked from
976 last to first element. Otherwise we scan from first to last element.
978 Return TRUE when something changed. */
980 bool
981 substitute_and_fold_engine::substitute_and_fold (basic_block block)
983 if (dump_file && (dump_flags & TDF_DETAILS))
984 fprintf (dump_file, "\nSubstituting values and folding statements\n\n");
986 memset (&prop_stats, 0, sizeof (prop_stats));
988 /* Don't call calculate_dominance_info when iterating over a subgraph.
989 Callers that are using the interface this way are likely to want to
990 iterate over several disjoint subgraphs, and it would be expensive
991 in enable-checking builds to revalidate the whole dominance tree
992 each time. */
993 if (block)
994 gcc_assert (dom_info_state (CDI_DOMINATORS));
995 else
996 calculate_dominance_info (CDI_DOMINATORS);
997 substitute_and_fold_dom_walker walker (CDI_DOMINATORS, this);
998 walker.walk (block ? block : ENTRY_BLOCK_PTR_FOR_FN (cfun));
1000 /* We cannot remove stmts during the BB walk, especially not release
1001 SSA names there as that destroys the lattice of our callers.
1002 Remove stmts in reverse order to make debug stmt creation possible. */
1003 while (!walker.stmts_to_remove.is_empty ())
1005 gimple *stmt = walker.stmts_to_remove.pop ();
1006 if (dump_file && dump_flags & TDF_DETAILS)
1008 fprintf (dump_file, "Removing dead stmt ");
1009 print_gimple_stmt (dump_file, stmt, 0);
1010 fprintf (dump_file, "\n");
1012 prop_stats.num_dce++;
1013 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
1014 if (gimple_code (stmt) == GIMPLE_PHI)
1015 remove_phi_node (&gsi, true);
1016 else
1018 unlink_stmt_vdef (stmt);
1019 gsi_remove (&gsi, true);
1020 release_defs (stmt);
1024 if (!bitmap_empty_p (walker.need_eh_cleanup))
1025 gimple_purge_all_dead_eh_edges (walker.need_eh_cleanup);
1026 if (!bitmap_empty_p (walker.need_ab_cleanup))
1027 gimple_purge_all_dead_abnormal_call_edges (walker.need_ab_cleanup);
1029 /* Fixup stmts that became noreturn calls. This may require splitting
1030 blocks and thus isn't possible during the dominator walk. Do this
1031 in reverse order so we don't inadvertedly remove a stmt we want to
1032 fixup by visiting a dominating now noreturn call first. */
1033 while (!walker.stmts_to_fixup.is_empty ())
1035 gimple *stmt = walker.stmts_to_fixup.pop ();
1036 if (dump_file && dump_flags & TDF_DETAILS)
1038 fprintf (dump_file, "Fixing up noreturn call ");
1039 print_gimple_stmt (dump_file, stmt, 0);
1040 fprintf (dump_file, "\n");
1042 fixup_noreturn_call (stmt);
1045 statistics_counter_event (cfun, "Constants propagated",
1046 prop_stats.num_const_prop);
1047 statistics_counter_event (cfun, "Copies propagated",
1048 prop_stats.num_copy_prop);
1049 statistics_counter_event (cfun, "Statements folded",
1050 prop_stats.num_stmts_folded);
1051 statistics_counter_event (cfun, "Statements deleted",
1052 prop_stats.num_dce);
1054 return walker.something_changed;
1058 /* Return true if we may propagate ORIG into DEST, false otherwise.
1059 If DEST_NOT_PHI_ARG_P is true then assume the propagation does
1060 not happen into a PHI argument which relaxes some constraints. */
1062 bool
1063 may_propagate_copy (tree dest, tree orig, bool dest_not_phi_arg_p)
1065 tree type_d = TREE_TYPE (dest);
1066 tree type_o = TREE_TYPE (orig);
1068 /* If ORIG is a default definition which flows in from an abnormal edge
1069 then the copy can be propagated. It is important that we do so to avoid
1070 uninitialized copies. */
1071 if (TREE_CODE (orig) == SSA_NAME
1072 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig)
1073 && SSA_NAME_IS_DEFAULT_DEF (orig)
1074 && (SSA_NAME_VAR (orig) == NULL_TREE
1075 || TREE_CODE (SSA_NAME_VAR (orig)) == VAR_DECL))
1077 /* Otherwise if ORIG just flows in from an abnormal edge then the copy cannot
1078 be propagated. */
1079 else if (TREE_CODE (orig) == SSA_NAME
1080 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig))
1081 return false;
1082 /* Similarly if DEST flows in from an abnormal edge then the copy cannot be
1083 propagated. If we know we do not propagate into a PHI argument this
1084 does not apply. */
1085 else if (!dest_not_phi_arg_p
1086 && TREE_CODE (dest) == SSA_NAME
1087 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (dest))
1088 return false;
1090 /* Do not copy between types for which we *do* need a conversion. */
1091 if (!useless_type_conversion_p (type_d, type_o))
1092 return false;
1094 /* Generally propagating virtual operands is not ok as that may
1095 create overlapping life-ranges. */
1096 if (TREE_CODE (dest) == SSA_NAME && virtual_operand_p (dest))
1097 return false;
1099 /* Anything else is OK. */
1100 return true;
1103 /* Like may_propagate_copy, but use as the destination expression
1104 the principal expression (typically, the RHS) contained in
1105 statement DEST. This is more efficient when working with the
1106 gimple tuples representation. */
1108 bool
1109 may_propagate_copy_into_stmt (gimple *dest, tree orig)
1111 tree type_d;
1112 tree type_o;
1114 /* If the statement is a switch or a single-rhs assignment,
1115 then the expression to be replaced by the propagation may
1116 be an SSA_NAME. Fortunately, there is an explicit tree
1117 for the expression, so we delegate to may_propagate_copy. */
1119 if (gimple_assign_single_p (dest))
1120 return may_propagate_copy (gimple_assign_rhs1 (dest), orig, true);
1121 else if (gswitch *dest_swtch = dyn_cast <gswitch *> (dest))
1122 return may_propagate_copy (gimple_switch_index (dest_swtch), orig, true);
1124 /* In other cases, the expression is not materialized, so there
1125 is no destination to pass to may_propagate_copy. On the other
1126 hand, the expression cannot be an SSA_NAME, so the analysis
1127 is much simpler. */
1129 if (TREE_CODE (orig) == SSA_NAME
1130 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig))
1131 return false;
1133 if (is_gimple_assign (dest))
1134 type_d = TREE_TYPE (gimple_assign_lhs (dest));
1135 else if (gimple_code (dest) == GIMPLE_COND)
1136 type_d = boolean_type_node;
1137 else if (is_gimple_call (dest)
1138 && gimple_call_lhs (dest) != NULL_TREE)
1139 type_d = TREE_TYPE (gimple_call_lhs (dest));
1140 else
1141 gcc_unreachable ();
1143 type_o = TREE_TYPE (orig);
1145 if (!useless_type_conversion_p (type_d, type_o))
1146 return false;
1148 return true;
1151 /* Similarly, but we know that we're propagating into an ASM_EXPR. */
1153 bool
1154 may_propagate_copy_into_asm (tree dest ATTRIBUTE_UNUSED)
1156 return true;
1160 /* Replace *OP_P with value VAL (assumed to be a constant or another SSA_NAME).
1162 Use this version when not const/copy propagating values. For example,
1163 PRE uses this version when building expressions as they would appear
1164 in specific blocks taking into account actions of PHI nodes.
1166 The statement in which an expression has been replaced should be
1167 folded using fold_stmt_inplace. */
1169 void
1170 replace_exp (use_operand_p op_p, tree val)
1172 if (TREE_CODE (val) == SSA_NAME || CONSTANT_CLASS_P (val))
1173 SET_USE (op_p, val);
1174 else
1175 SET_USE (op_p, unshare_expr (val));
1179 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
1180 into the operand pointed to by OP_P.
1182 Use this version for const/copy propagation as it will perform additional
1183 checks to ensure validity of the const/copy propagation. */
1185 void
1186 propagate_value (use_operand_p op_p, tree val)
1188 if (flag_checking)
1189 gcc_assert (may_propagate_copy (USE_FROM_PTR (op_p), val,
1190 !is_a <gphi *> (USE_STMT (op_p))));
1191 replace_exp (op_p, val);
1195 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
1196 into the tree pointed to by OP_P.
1198 Use this version for const/copy propagation when SSA operands are not
1199 available. It will perform the additional checks to ensure validity of
1200 the const/copy propagation, but will not update any operand information.
1201 Be sure to mark the stmt as modified. */
1203 void
1204 propagate_tree_value (tree *op_p, tree val)
1206 if (TREE_CODE (val) == SSA_NAME)
1207 *op_p = val;
1208 else
1209 *op_p = unshare_expr (val);
1213 /* Like propagate_tree_value, but use as the operand to replace
1214 the principal expression (typically, the RHS) contained in the
1215 statement referenced by iterator GSI. Note that it is not
1216 always possible to update the statement in-place, so a new
1217 statement may be created to replace the original. */
1219 void
1220 propagate_tree_value_into_stmt (gimple_stmt_iterator *gsi, tree val)
1222 gimple *stmt = gsi_stmt (*gsi);
1224 if (is_gimple_assign (stmt))
1226 tree expr = NULL_TREE;
1227 if (gimple_assign_single_p (stmt))
1228 expr = gimple_assign_rhs1 (stmt);
1229 propagate_tree_value (&expr, val);
1230 gimple_assign_set_rhs_from_tree (gsi, expr);
1232 else if (gcond *cond_stmt = dyn_cast <gcond *> (stmt))
1234 tree lhs = NULL_TREE;
1235 tree rhs = build_zero_cst (TREE_TYPE (val));
1236 propagate_tree_value (&lhs, val);
1237 gimple_cond_set_code (cond_stmt, NE_EXPR);
1238 gimple_cond_set_lhs (cond_stmt, lhs);
1239 gimple_cond_set_rhs (cond_stmt, rhs);
1241 else if (is_gimple_call (stmt)
1242 && gimple_call_lhs (stmt) != NULL_TREE)
1244 tree expr = NULL_TREE;
1245 propagate_tree_value (&expr, val);
1246 replace_call_with_value (gsi, expr);
1248 else if (gswitch *swtch_stmt = dyn_cast <gswitch *> (stmt))
1249 propagate_tree_value (gimple_switch_index_ptr (swtch_stmt), val);
1250 else
1251 gcc_unreachable ();
1254 /* Check exits of each loop in FUN, walk over loop closed PHIs in
1255 each exit basic block and propagate degenerate PHIs. */
1257 unsigned
1258 clean_up_loop_closed_phi (function *fun)
1260 gphi *phi;
1261 tree rhs;
1262 tree lhs;
1263 gphi_iterator gsi;
1265 /* Avoid possibly quadratic work when scanning for loop exits across
1266 all loops of a nest. */
1267 if (!loops_state_satisfies_p (LOOPS_HAVE_RECORDED_EXITS))
1268 return 0;
1270 /* replace_uses_by might purge dead EH edges and we want it to also
1271 remove dominated blocks. */
1272 calculate_dominance_info (CDI_DOMINATORS);
1274 /* Walk over loop in function. */
1275 for (auto loop : loops_list (fun, 0))
1277 /* Check each exit edege of loop. */
1278 auto_vec<edge> exits = get_loop_exit_edges (loop);
1279 for (edge e : exits)
1280 if (single_pred_p (e->dest))
1281 /* Walk over loop-closed PHIs. */
1282 for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi);)
1284 phi = gsi.phi ();
1285 rhs = gimple_phi_arg_def (phi, 0);
1286 lhs = gimple_phi_result (phi);
1288 if (virtual_operand_p (rhs))
1290 imm_use_iterator iter;
1291 use_operand_p use_p;
1292 gimple *stmt;
1294 FOR_EACH_IMM_USE_STMT (stmt, iter, lhs)
1295 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1296 SET_USE (use_p, rhs);
1298 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
1299 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
1300 remove_phi_node (&gsi, true);
1302 else if (may_propagate_copy (lhs, rhs))
1304 /* Dump details. */
1305 if (dump_file && (dump_flags & TDF_DETAILS))
1307 fprintf (dump_file, " Replacing '");
1308 print_generic_expr (dump_file, lhs, dump_flags);
1309 fprintf (dump_file, "' with '");
1310 print_generic_expr (dump_file, rhs, dump_flags);
1311 fprintf (dump_file, "'\n");
1314 replace_uses_by (lhs, rhs);
1315 remove_phi_node (&gsi, true);
1317 else
1318 gsi_next (&gsi);
1322 return 0;