IPA ICF, part 4/5
[official-gcc.git] / gcc / tree-ssa-copy.c
blob3bbbb67ce085fb070b8d3255d19293dee6b91890
1 /* Copy propagation and SSA_NAME replacement support routines.
2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "flags.h"
26 #include "tm_p.h"
27 #include "basic-block.h"
28 #include "function.h"
29 #include "gimple-pretty-print.h"
30 #include "tree-ssa-alias.h"
31 #include "internal-fn.h"
32 #include "gimple-expr.h"
33 #include "is-a.h"
34 #include "gimple.h"
35 #include "gimple-iterator.h"
36 #include "gimple-ssa.h"
37 #include "tree-cfg.h"
38 #include "tree-phinodes.h"
39 #include "ssa-iterators.h"
40 #include "stringpool.h"
41 #include "tree-ssanames.h"
42 #include "tree-pass.h"
43 #include "tree-ssa-propagate.h"
44 #include "langhooks.h"
45 #include "cfgloop.h"
46 #include "tree-scalar-evolution.h"
47 #include "tree-ssa-dom.h"
48 #include "tree-ssa-loop-niter.h"
51 /* This file implements the copy propagation pass and provides a
52 handful of interfaces for performing const/copy propagation and
53 simple expression replacement which keep variable annotations
54 up-to-date.
56 We require that for any copy operation where the RHS and LHS have
57 a non-null memory tag the memory tag be the same. It is OK
58 for one or both of the memory tags to be NULL.
60 We also require tracking if a variable is dereferenced in a load or
61 store operation.
63 We enforce these requirements by having all copy propagation and
64 replacements of one SSA_NAME with a different SSA_NAME to use the
65 APIs defined in this file. */
67 /*---------------------------------------------------------------------------
68 Copy propagation
69 ---------------------------------------------------------------------------*/
70 /* Lattice for copy-propagation. The lattice is initialized to
71 UNDEFINED (value == NULL) for SSA names that can become a copy
72 of something or VARYING (value == self) if not (see get_copy_of_val
73 and stmt_may_generate_copy). Other values make the name a COPY
74 of that value.
76 When visiting a statement or PHI node the lattice value for an
77 SSA name can transition from UNDEFINED to COPY to VARYING. */
79 struct prop_value_t {
80 /* Copy-of value. */
81 tree value;
84 static prop_value_t *copy_of;
85 static unsigned n_copy_of;
88 /* Return true if this statement may generate a useful copy. */
90 static bool
91 stmt_may_generate_copy (gimple stmt)
93 if (gimple_code (stmt) == GIMPLE_PHI)
94 return !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_phi_result (stmt));
96 if (gimple_code (stmt) != GIMPLE_ASSIGN)
97 return false;
99 /* If the statement has volatile operands, it won't generate a
100 useful copy. */
101 if (gimple_has_volatile_ops (stmt))
102 return false;
104 /* Statements with loads and/or stores will never generate a useful copy. */
105 if (gimple_vuse (stmt))
106 return false;
108 /* Otherwise, the only statements that generate useful copies are
109 assignments whose RHS is just an SSA name that doesn't flow
110 through abnormal edges. */
111 return ((gimple_assign_rhs_code (stmt) == SSA_NAME
112 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_assign_rhs1 (stmt)))
113 || is_gimple_min_invariant (gimple_assign_rhs1 (stmt)));
117 /* Return the copy-of value for VAR. */
119 static inline prop_value_t *
120 get_copy_of_val (tree var)
122 prop_value_t *val = &copy_of[SSA_NAME_VERSION (var)];
124 if (val->value == NULL_TREE
125 && !stmt_may_generate_copy (SSA_NAME_DEF_STMT (var)))
127 /* If the variable will never generate a useful copy relation,
128 make it its own copy. */
129 val->value = var;
132 return val;
135 /* Return the variable VAR is a copy of or VAR if VAR isn't the result
136 of a copy. */
138 static inline tree
139 valueize_val (tree var)
141 if (TREE_CODE (var) == SSA_NAME)
143 tree val = get_copy_of_val (var)->value;
144 if (val)
145 return val;
147 return var;
150 /* Set VAL to be the copy of VAR. If that changed return true. */
152 static inline bool
153 set_copy_of_val (tree var, tree val)
155 unsigned int ver = SSA_NAME_VERSION (var);
156 tree old;
158 /* Set FIRST to be the first link in COPY_OF[DEST]. If that
159 changed, return true. */
160 old = copy_of[ver].value;
161 copy_of[ver].value = val;
163 if (old != val
164 || (val && !operand_equal_p (old, val, 0)))
165 return true;
167 return false;
171 /* Dump the copy-of value for variable VAR to FILE. */
173 static void
174 dump_copy_of (FILE *file, tree var)
176 tree val;
178 print_generic_expr (file, var, dump_flags);
179 if (TREE_CODE (var) != SSA_NAME)
180 return;
182 val = copy_of[SSA_NAME_VERSION (var)].value;
183 fprintf (file, " copy-of chain: ");
184 print_generic_expr (file, var, 0);
185 fprintf (file, " ");
186 if (!val)
187 fprintf (file, "[UNDEFINED]");
188 else if (val == var)
189 fprintf (file, "[NOT A COPY]");
190 else
192 fprintf (file, "-> ");
193 print_generic_expr (file, val, 0);
194 fprintf (file, " ");
195 fprintf (file, "[COPY]");
200 /* Evaluate the RHS of STMT. If it produces a valid copy, set the LHS
201 value and store the LHS into *RESULT_P. */
203 static enum ssa_prop_result
204 copy_prop_visit_assignment (gimple stmt, tree *result_p)
206 tree lhs, rhs;
208 lhs = gimple_assign_lhs (stmt);
209 rhs = valueize_val (gimple_assign_rhs1 (stmt));
211 if (TREE_CODE (lhs) == SSA_NAME)
213 /* Straight copy between two SSA names. First, make sure that
214 we can propagate the RHS into uses of LHS. */
215 if (!may_propagate_copy (lhs, rhs))
216 return SSA_PROP_VARYING;
218 *result_p = lhs;
219 if (set_copy_of_val (*result_p, rhs))
220 return SSA_PROP_INTERESTING;
221 else
222 return SSA_PROP_NOT_INTERESTING;
225 return SSA_PROP_VARYING;
229 /* Visit the GIMPLE_COND STMT. Return SSA_PROP_INTERESTING
230 if it can determine which edge will be taken. Otherwise, return
231 SSA_PROP_VARYING. */
233 static enum ssa_prop_result
234 copy_prop_visit_cond_stmt (gimple stmt, edge *taken_edge_p)
236 enum ssa_prop_result retval = SSA_PROP_VARYING;
237 location_t loc = gimple_location (stmt);
239 tree op0 = valueize_val (gimple_cond_lhs (stmt));
240 tree op1 = valueize_val (gimple_cond_rhs (stmt));
242 /* See if we can determine the predicate's value. */
243 if (dump_file && (dump_flags & TDF_DETAILS))
245 fprintf (dump_file, "Trying to determine truth value of ");
246 fprintf (dump_file, "predicate ");
247 print_gimple_stmt (dump_file, stmt, 0, 0);
250 /* Fold COND and see whether we get a useful result. */
251 tree folded_cond = fold_binary_loc (loc, gimple_cond_code (stmt),
252 boolean_type_node, op0, op1);
253 if (folded_cond)
255 basic_block bb = gimple_bb (stmt);
256 *taken_edge_p = find_taken_edge (bb, folded_cond);
257 if (*taken_edge_p)
258 retval = SSA_PROP_INTERESTING;
261 if (dump_file && (dump_flags & TDF_DETAILS) && *taken_edge_p)
262 fprintf (dump_file, "\nConditional will always take edge %d->%d\n",
263 (*taken_edge_p)->src->index, (*taken_edge_p)->dest->index);
265 return retval;
269 /* Evaluate statement STMT. If the statement produces a new output
270 value, return SSA_PROP_INTERESTING and store the SSA_NAME holding
271 the new value in *RESULT_P.
273 If STMT is a conditional branch and we can determine its truth
274 value, set *TAKEN_EDGE_P accordingly.
276 If the new value produced by STMT is varying, return
277 SSA_PROP_VARYING. */
279 static enum ssa_prop_result
280 copy_prop_visit_stmt (gimple stmt, edge *taken_edge_p, tree *result_p)
282 enum ssa_prop_result retval;
284 if (dump_file && (dump_flags & TDF_DETAILS))
286 fprintf (dump_file, "\nVisiting statement:\n");
287 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
288 fprintf (dump_file, "\n");
291 if (gimple_assign_single_p (stmt)
292 && TREE_CODE (gimple_assign_lhs (stmt)) == SSA_NAME
293 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
294 || is_gimple_min_invariant (gimple_assign_rhs1 (stmt))))
296 /* If the statement is a copy assignment, evaluate its RHS to
297 see if the lattice value of its output has changed. */
298 retval = copy_prop_visit_assignment (stmt, result_p);
300 else if (gimple_code (stmt) == GIMPLE_COND)
302 /* See if we can determine which edge goes out of a conditional
303 jump. */
304 retval = copy_prop_visit_cond_stmt (stmt, taken_edge_p);
306 else
307 retval = SSA_PROP_VARYING;
309 if (retval == SSA_PROP_VARYING)
311 tree def;
312 ssa_op_iter i;
314 /* Any other kind of statement is not interesting for constant
315 propagation and, therefore, not worth simulating. */
316 if (dump_file && (dump_flags & TDF_DETAILS))
317 fprintf (dump_file, "No interesting values produced.\n");
319 /* The assignment is not a copy operation. Don't visit this
320 statement again and mark all the definitions in the statement
321 to be copies of nothing. */
322 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_ALL_DEFS)
323 set_copy_of_val (def, def);
326 return retval;
330 /* Visit PHI node PHI. If all the arguments produce the same value,
331 set it to be the value of the LHS of PHI. */
333 static enum ssa_prop_result
334 copy_prop_visit_phi_node (gimple phi)
336 enum ssa_prop_result retval;
337 unsigned i;
338 prop_value_t phi_val = { NULL_TREE };
340 tree lhs = gimple_phi_result (phi);
342 if (dump_file && (dump_flags & TDF_DETAILS))
344 fprintf (dump_file, "\nVisiting PHI node: ");
345 print_gimple_stmt (dump_file, phi, 0, dump_flags);
348 for (i = 0; i < gimple_phi_num_args (phi); i++)
350 prop_value_t *arg_val;
351 tree arg_value;
352 tree arg = gimple_phi_arg_def (phi, i);
353 edge e = gimple_phi_arg_edge (phi, i);
355 /* We don't care about values flowing through non-executable
356 edges. */
357 if (!(e->flags & EDGE_EXECUTABLE))
358 continue;
360 /* Names that flow through abnormal edges cannot be used to
361 derive copies. */
362 if (TREE_CODE (arg) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (arg))
364 phi_val.value = lhs;
365 break;
368 if (dump_file && (dump_flags & TDF_DETAILS))
370 fprintf (dump_file, "\tArgument #%d: ", i);
371 dump_copy_of (dump_file, arg);
372 fprintf (dump_file, "\n");
375 if (TREE_CODE (arg) == SSA_NAME)
377 arg_val = get_copy_of_val (arg);
379 /* If we didn't visit the definition of arg yet treat it as
380 UNDEFINED. This also handles PHI arguments that are the
381 same as lhs. We'll come here again. */
382 if (!arg_val->value)
383 continue;
385 arg_value = arg_val->value;
387 else
388 arg_value = valueize_val (arg);
390 /* In loop-closed SSA form do not copy-propagate SSA-names across
391 loop exit edges. */
392 if (loops_state_satisfies_p (LOOP_CLOSED_SSA)
393 && TREE_CODE (arg_value) == SSA_NAME
394 && loop_exit_edge_p (e->src->loop_father, e))
396 phi_val.value = lhs;
397 break;
400 /* If the LHS didn't have a value yet, make it a copy of the
401 first argument we find. */
402 if (phi_val.value == NULL_TREE)
404 phi_val.value = arg_value;
405 continue;
408 /* If PHI_VAL and ARG don't have a common copy-of chain, then
409 this PHI node cannot be a copy operation. */
410 if (phi_val.value != arg_value
411 && !operand_equal_p (phi_val.value, arg_value, 0))
413 phi_val.value = lhs;
414 break;
418 if (phi_val.value
419 && may_propagate_copy (lhs, phi_val.value)
420 && set_copy_of_val (lhs, phi_val.value))
421 retval = (phi_val.value != lhs) ? SSA_PROP_INTERESTING : SSA_PROP_VARYING;
422 else
423 retval = SSA_PROP_NOT_INTERESTING;
425 if (dump_file && (dump_flags & TDF_DETAILS))
427 fprintf (dump_file, "PHI node ");
428 dump_copy_of (dump_file, lhs);
429 fprintf (dump_file, "\nTelling the propagator to ");
430 if (retval == SSA_PROP_INTERESTING)
431 fprintf (dump_file, "add SSA edges out of this PHI and continue.");
432 else if (retval == SSA_PROP_VARYING)
433 fprintf (dump_file, "add SSA edges out of this PHI and never visit again.");
434 else
435 fprintf (dump_file, "do nothing with SSA edges and keep iterating.");
436 fprintf (dump_file, "\n\n");
439 return retval;
443 /* Initialize structures used for copy propagation. */
445 static void
446 init_copy_prop (void)
448 basic_block bb;
450 n_copy_of = num_ssa_names;
451 copy_of = XCNEWVEC (prop_value_t, n_copy_of);
453 FOR_EACH_BB_FN (bb, cfun)
455 gimple_stmt_iterator si;
457 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
459 gimple stmt = gsi_stmt (si);
460 ssa_op_iter iter;
461 tree def;
463 /* The only statements that we care about are those that may
464 generate useful copies. We also need to mark conditional
465 jumps so that their outgoing edges are added to the work
466 lists of the propagator. */
467 if (stmt_ends_bb_p (stmt))
468 prop_set_simulate_again (stmt, true);
469 else if (stmt_may_generate_copy (stmt))
470 prop_set_simulate_again (stmt, true);
471 else
472 prop_set_simulate_again (stmt, false);
474 /* Mark all the outputs of this statement as not being
475 the copy of anything. */
476 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
477 if (!prop_simulate_again_p (stmt))
478 set_copy_of_val (def, def);
481 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
483 gimple phi = gsi_stmt (si);
484 tree def;
486 def = gimple_phi_result (phi);
487 if (virtual_operand_p (def))
488 prop_set_simulate_again (phi, false);
489 else
490 prop_set_simulate_again (phi, true);
492 if (!prop_simulate_again_p (phi))
493 set_copy_of_val (def, def);
498 /* Callback for substitute_and_fold to get at the final copy-of values. */
500 static tree
501 get_value (tree name)
503 tree val;
504 if (SSA_NAME_VERSION (name) >= n_copy_of)
505 return NULL_TREE;
506 val = copy_of[SSA_NAME_VERSION (name)].value;
507 if (val && val != name)
508 return val;
509 return NULL_TREE;
512 /* Deallocate memory used in copy propagation and do final
513 substitution. */
515 static bool
516 fini_copy_prop (void)
518 unsigned i;
520 /* Set the final copy-of value for each variable by traversing the
521 copy-of chains. */
522 for (i = 1; i < num_ssa_names; i++)
524 tree var = ssa_name (i);
525 if (!var
526 || !copy_of[i].value
527 || copy_of[i].value == var)
528 continue;
530 /* In theory the points-to solution of all members of the
531 copy chain is their intersection. For now we do not bother
532 to compute this but only make sure we do not lose points-to
533 information completely by setting the points-to solution
534 of the representative to the first solution we find if
535 it doesn't have one already. */
536 if (copy_of[i].value != var
537 && TREE_CODE (copy_of[i].value) == SSA_NAME)
539 basic_block copy_of_bb
540 = gimple_bb (SSA_NAME_DEF_STMT (copy_of[i].value));
541 basic_block var_bb = gimple_bb (SSA_NAME_DEF_STMT (var));
542 if (POINTER_TYPE_P (TREE_TYPE (var))
543 && SSA_NAME_PTR_INFO (var)
544 && !SSA_NAME_PTR_INFO (copy_of[i].value))
546 duplicate_ssa_name_ptr_info (copy_of[i].value,
547 SSA_NAME_PTR_INFO (var));
548 /* Points-to information is cfg insensitive,
549 but alignment info might be cfg sensitive, if it
550 e.g. is derived from VRP derived non-zero bits.
551 So, do not copy alignment info if the two SSA_NAMEs
552 aren't defined in the same basic block. */
553 if (var_bb != copy_of_bb)
554 mark_ptr_info_alignment_unknown
555 (SSA_NAME_PTR_INFO (copy_of[i].value));
557 else if (!POINTER_TYPE_P (TREE_TYPE (var))
558 && SSA_NAME_RANGE_INFO (var)
559 && !SSA_NAME_RANGE_INFO (copy_of[i].value)
560 && var_bb == copy_of_bb)
561 duplicate_ssa_name_range_info (copy_of[i].value,
562 SSA_NAME_RANGE_TYPE (var),
563 SSA_NAME_RANGE_INFO (var));
567 bool changed = substitute_and_fold (get_value, NULL, true);
568 if (changed)
570 free_numbers_of_iterations_estimates ();
571 if (scev_initialized_p ())
572 scev_reset ();
575 free (copy_of);
577 return changed;
581 /* Main entry point to the copy propagator.
583 PHIS_ONLY is true if we should only consider PHI nodes as generating
584 copy propagation opportunities.
586 The algorithm propagates the value COPY-OF using ssa_propagate. For
587 every variable X_i, COPY-OF(X_i) indicates which variable is X_i created
588 from. The following example shows how the algorithm proceeds at a
589 high level:
591 1 a_24 = x_1
592 2 a_2 = PHI <a_24, x_1>
593 3 a_5 = PHI <a_2>
594 4 x_1 = PHI <x_298, a_5, a_2>
596 The end result should be that a_2, a_5, a_24 and x_1 are a copy of
597 x_298. Propagation proceeds as follows.
599 Visit #1: a_24 is copy-of x_1. Value changed.
600 Visit #2: a_2 is copy-of x_1. Value changed.
601 Visit #3: a_5 is copy-of x_1. Value changed.
602 Visit #4: x_1 is copy-of x_298. Value changed.
603 Visit #1: a_24 is copy-of x_298. Value changed.
604 Visit #2: a_2 is copy-of x_298. Value changed.
605 Visit #3: a_5 is copy-of x_298. Value changed.
606 Visit #4: x_1 is copy-of x_298. Stable state reached.
608 When visiting PHI nodes, we only consider arguments that flow
609 through edges marked executable by the propagation engine. So,
610 when visiting statement #2 for the first time, we will only look at
611 the first argument (a_24) and optimistically assume that its value
612 is the copy of a_24 (x_1). */
614 static unsigned int
615 execute_copy_prop (void)
617 init_copy_prop ();
618 ssa_propagate (copy_prop_visit_stmt, copy_prop_visit_phi_node);
619 if (fini_copy_prop ())
620 return TODO_cleanup_cfg;
621 return 0;
624 namespace {
626 const pass_data pass_data_copy_prop =
628 GIMPLE_PASS, /* type */
629 "copyprop", /* name */
630 OPTGROUP_NONE, /* optinfo_flags */
631 TV_TREE_COPY_PROP, /* tv_id */
632 ( PROP_ssa | PROP_cfg ), /* properties_required */
633 0, /* properties_provided */
634 0, /* properties_destroyed */
635 0, /* todo_flags_start */
636 0, /* todo_flags_finish */
639 class pass_copy_prop : public gimple_opt_pass
641 public:
642 pass_copy_prop (gcc::context *ctxt)
643 : gimple_opt_pass (pass_data_copy_prop, ctxt)
646 /* opt_pass methods: */
647 opt_pass * clone () { return new pass_copy_prop (m_ctxt); }
648 virtual bool gate (function *) { return flag_tree_copy_prop != 0; }
649 virtual unsigned int execute (function *) { return execute_copy_prop (); }
651 }; // class pass_copy_prop
653 } // anon namespace
655 gimple_opt_pass *
656 make_pass_copy_prop (gcc::context *ctxt)
658 return new pass_copy_prop (ctxt);