Add C++11 header <cuchar>.
[official-gcc.git] / gcc / tree-ssa-uncprop.c
blob1fbd71ef483be798ae6a578247831de72706d8c9
1 /* Routines for discovering and unpropagating edge equivalences.
2 Copyright (C) 2005-2015 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 "backend.h"
24 #include "tree.h"
25 #include "gimple.h"
26 #include "hard-reg-set.h"
27 #include "ssa.h"
28 #include "alias.h"
29 #include "fold-const.h"
30 #include "stor-layout.h"
31 #include "flags.h"
32 #include "tm_p.h"
33 #include "cfganal.h"
34 #include "internal-fn.h"
35 #include "gimple-iterator.h"
36 #include "tree-cfg.h"
37 #include "domwalk.h"
38 #include "tree-pass.h"
39 #include "tree-ssa-propagate.h"
40 #include "tree-hash-traits.h"
41 #include "bitmap.h"
42 #include "stringpool.h"
43 #include "tree-ssanames.h"
44 #include "tree-ssa-live.h"
45 #include "tree-ssa-coalesce.h"
47 /* The basic structure describing an equivalency created by traversing
48 an edge. Traversing the edge effectively means that we can assume
49 that we've seen an assignment LHS = RHS. */
50 struct edge_equivalency
52 tree rhs;
53 tree lhs;
56 /* This routine finds and records edge equivalences for every edge
57 in the CFG.
59 When complete, each edge that creates an equivalency will have an
60 EDGE_EQUIVALENCY structure hanging off the edge's AUX field.
61 The caller is responsible for freeing the AUX fields. */
63 static void
64 associate_equivalences_with_edges (void)
66 basic_block bb;
68 /* Walk over each block. If the block ends with a control statement,
69 then it might create a useful equivalence. */
70 FOR_EACH_BB_FN (bb, cfun)
72 gimple_stmt_iterator gsi = gsi_last_bb (bb);
73 gimple stmt;
75 /* If the block does not end with a COND_EXPR or SWITCH_EXPR
76 then there is nothing to do. */
77 if (gsi_end_p (gsi))
78 continue;
80 stmt = gsi_stmt (gsi);
82 if (!stmt)
83 continue;
85 /* A COND_EXPR may create an equivalency in a variety of different
86 ways. */
87 if (gimple_code (stmt) == GIMPLE_COND)
89 edge true_edge;
90 edge false_edge;
91 struct edge_equivalency *equivalency;
92 enum tree_code code = gimple_cond_code (stmt);
94 extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
96 /* Equality tests may create one or two equivalences. */
97 if (code == EQ_EXPR || code == NE_EXPR)
99 tree op0 = gimple_cond_lhs (stmt);
100 tree op1 = gimple_cond_rhs (stmt);
102 /* Special case comparing booleans against a constant as we
103 know the value of OP0 on both arms of the branch. i.e., we
104 can record an equivalence for OP0 rather than COND. */
105 if (TREE_CODE (op0) == SSA_NAME
106 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op0)
107 && TREE_CODE (TREE_TYPE (op0)) == BOOLEAN_TYPE
108 && is_gimple_min_invariant (op1))
110 if (code == EQ_EXPR)
112 equivalency = XNEW (struct edge_equivalency);
113 equivalency->lhs = op0;
114 equivalency->rhs = (integer_zerop (op1)
115 ? boolean_false_node
116 : boolean_true_node);
117 true_edge->aux = equivalency;
119 equivalency = XNEW (struct edge_equivalency);
120 equivalency->lhs = op0;
121 equivalency->rhs = (integer_zerop (op1)
122 ? boolean_true_node
123 : boolean_false_node);
124 false_edge->aux = equivalency;
126 else
128 equivalency = XNEW (struct edge_equivalency);
129 equivalency->lhs = op0;
130 equivalency->rhs = (integer_zerop (op1)
131 ? boolean_true_node
132 : boolean_false_node);
133 true_edge->aux = equivalency;
135 equivalency = XNEW (struct edge_equivalency);
136 equivalency->lhs = op0;
137 equivalency->rhs = (integer_zerop (op1)
138 ? boolean_false_node
139 : boolean_true_node);
140 false_edge->aux = equivalency;
144 else if (TREE_CODE (op0) == SSA_NAME
145 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op0)
146 && (is_gimple_min_invariant (op1)
147 || (TREE_CODE (op1) == SSA_NAME
148 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op1))))
150 /* For IEEE, -0.0 == 0.0, so we don't necessarily know
151 the sign of a variable compared against zero. If
152 we're honoring signed zeros, then we cannot record
153 this value unless we know that the value is nonzero. */
154 if (HONOR_SIGNED_ZEROS (op0)
155 && (TREE_CODE (op1) != REAL_CST
156 || REAL_VALUES_EQUAL (dconst0, TREE_REAL_CST (op1))))
157 continue;
159 equivalency = XNEW (struct edge_equivalency);
160 equivalency->lhs = op0;
161 equivalency->rhs = op1;
162 if (code == EQ_EXPR)
163 true_edge->aux = equivalency;
164 else
165 false_edge->aux = equivalency;
170 /* ??? TRUTH_NOT_EXPR can create an equivalence too. */
173 /* For a SWITCH_EXPR, a case label which represents a single
174 value and which is the only case label which reaches the
175 target block creates an equivalence. */
176 else if (gimple_code (stmt) == GIMPLE_SWITCH)
178 gswitch *switch_stmt = as_a <gswitch *> (stmt);
179 tree cond = gimple_switch_index (switch_stmt);
181 if (TREE_CODE (cond) == SSA_NAME
182 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (cond))
184 int i, n_labels = gimple_switch_num_labels (switch_stmt);
185 tree *info = XCNEWVEC (tree, last_basic_block_for_fn (cfun));
187 /* Walk over the case label vector. Record blocks
188 which are reached by a single case label which represents
189 a single value. */
190 for (i = 0; i < n_labels; i++)
192 tree label = gimple_switch_label (switch_stmt, i);
193 basic_block bb = label_to_block (CASE_LABEL (label));
195 if (CASE_HIGH (label)
196 || !CASE_LOW (label)
197 || info[bb->index])
198 info[bb->index] = error_mark_node;
199 else
200 info[bb->index] = label;
203 /* Now walk over the blocks to determine which ones were
204 marked as being reached by a useful case label. */
205 for (i = 0; i < n_basic_blocks_for_fn (cfun); i++)
207 tree node = info[i];
209 if (node != NULL
210 && node != error_mark_node)
212 tree x = fold_convert (TREE_TYPE (cond), CASE_LOW (node));
213 struct edge_equivalency *equivalency;
215 /* Record an equivalency on the edge from BB to basic
216 block I. */
217 equivalency = XNEW (struct edge_equivalency);
218 equivalency->rhs = x;
219 equivalency->lhs = cond;
220 find_edge (bb, BASIC_BLOCK_FOR_FN (cfun, i))->aux =
221 equivalency;
224 free (info);
232 /* Translating out of SSA sometimes requires inserting copies and
233 constant initializations on edges to eliminate PHI nodes.
235 In some cases those copies and constant initializations are
236 redundant because the target already has the value on the
237 RHS of the assignment.
239 We previously tried to catch these cases after translating
240 out of SSA form. However, that code often missed cases. Worse
241 yet, the cases it missed were also often missed by the RTL
242 optimizers. Thus the resulting code had redundant instructions.
244 This pass attempts to detect these situations before translating
245 out of SSA form.
247 The key concept that this pass is built upon is that these
248 redundant copies and constant initializations often occur
249 due to constant/copy propagating equivalences resulting from
250 COND_EXPRs and SWITCH_EXPRs.
252 We want to do those propagations as they can sometimes allow
253 the SSA optimizers to do a better job. However, in the cases
254 where such propagations do not result in further optimization,
255 we would like to "undo" the propagation to avoid the redundant
256 copies and constant initializations.
258 This pass works by first associating equivalences with edges in
259 the CFG. For example, the edge leading from a SWITCH_EXPR to
260 its associated CASE_LABEL will have an equivalency between
261 SWITCH_COND and the value in the case label.
263 Once we have found the edge equivalences, we proceed to walk
264 the CFG in dominator order. As we traverse edges we record
265 equivalences associated with those edges we traverse.
267 When we encounter a PHI node, we walk its arguments to see if we
268 have an equivalence for the PHI argument. If so, then we replace
269 the argument.
271 Equivalences are looked up based on their value (think of it as
272 the RHS of an assignment). A value may be an SSA_NAME or an
273 invariant. We may have several SSA_NAMEs with the same value,
274 so with each value we have a list of SSA_NAMEs that have the
275 same value. */
278 /* Main structure for recording equivalences into our hash table. */
279 struct equiv_hash_elt
281 /* The value/key of this entry. */
282 tree value;
284 /* List of SSA_NAMEs which have the same value/key. */
285 vec<tree> equivalences;
288 /* Value to ssa name equivalence hashtable helpers. */
290 struct val_ssa_equiv_hash_traits : simple_hashmap_traits <tree_operand_hash>
292 template<typename T> static inline void remove (T &);
295 /* Free an instance of equiv_hash_elt. */
297 template<typename T>
298 inline void
299 val_ssa_equiv_hash_traits::remove (T &elt)
301 elt.m_value.release ();
304 /* Global hash table implementing a mapping from invariant values
305 to a list of SSA_NAMEs which have the same value. We might be
306 able to reuse tree-vn for this code. */
307 static hash_map<tree, vec<tree>, val_ssa_equiv_hash_traits> *val_ssa_equiv;
309 static void uncprop_into_successor_phis (basic_block);
311 /* Remove the most recently recorded equivalency for VALUE. */
313 static void
314 remove_equivalence (tree value)
316 val_ssa_equiv->get (value)->pop ();
319 /* Record EQUIVALENCE = VALUE into our hash table. */
321 static void
322 record_equiv (tree value, tree equivalence)
324 val_ssa_equiv->get_or_insert (value).safe_push (equivalence);
327 class uncprop_dom_walker : public dom_walker
329 public:
330 uncprop_dom_walker (cdi_direction direction) : dom_walker (direction) {}
332 virtual void before_dom_children (basic_block);
333 virtual void after_dom_children (basic_block);
335 private:
337 /* As we enter each block we record the value for any edge equivalency
338 leading to this block. If no such edge equivalency exists, then we
339 record NULL. These equivalences are live until we leave the dominator
340 subtree rooted at the block where we record the equivalency. */
341 auto_vec<tree, 2> m_equiv_stack;
344 /* We have finished processing the dominator children of BB, perform
345 any finalization actions in preparation for leaving this node in
346 the dominator tree. */
348 void
349 uncprop_dom_walker::after_dom_children (basic_block bb ATTRIBUTE_UNUSED)
351 /* Pop the topmost value off the equiv stack. */
352 tree value = m_equiv_stack.pop ();
354 /* If that value was non-null, then pop the topmost equivalency off
355 its equivalency stack. */
356 if (value != NULL)
357 remove_equivalence (value);
360 /* Unpropagate values from PHI nodes in successor blocks of BB. */
362 static void
363 uncprop_into_successor_phis (basic_block bb)
365 edge e;
366 edge_iterator ei;
368 /* For each successor edge, first temporarily record any equivalence
369 on that edge. Then unpropagate values in any PHI nodes at the
370 destination of the edge. Then remove the temporary equivalence. */
371 FOR_EACH_EDGE (e, ei, bb->succs)
373 gimple_seq phis = phi_nodes (e->dest);
374 gimple_stmt_iterator gsi;
376 /* If there are no PHI nodes in this destination, then there is
377 no sense in recording any equivalences. */
378 if (gimple_seq_empty_p (phis))
379 continue;
381 /* Record any equivalency associated with E. */
382 if (e->aux)
384 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux;
385 record_equiv (equiv->rhs, equiv->lhs);
388 /* Walk over the PHI nodes, unpropagating values. */
389 for (gsi = gsi_start (phis) ; !gsi_end_p (gsi); gsi_next (&gsi))
391 gimple phi = gsi_stmt (gsi);
392 tree arg = PHI_ARG_DEF (phi, e->dest_idx);
393 tree res = PHI_RESULT (phi);
395 /* If the argument is not an invariant and can be potentially
396 coalesced with the result, then there's no point in
397 un-propagating the argument. */
398 if (!is_gimple_min_invariant (arg)
399 && gimple_can_coalesce_p (arg, res))
400 continue;
402 /* Lookup this argument's value in the hash table. */
403 vec<tree> *equivalences = val_ssa_equiv->get (arg);
404 if (equivalences)
406 /* Walk every equivalence with the same value. If we find
407 one that can potentially coalesce with the PHI rsult,
408 then replace the value in the argument with its equivalent
409 SSA_NAME. Use the most recent equivalence as hopefully
410 that results in shortest lifetimes. */
411 for (int j = equivalences->length () - 1; j >= 0; j--)
413 tree equiv = (*equivalences)[j];
415 if (gimple_can_coalesce_p (equiv, res))
417 SET_PHI_ARG_DEF (phi, e->dest_idx, equiv);
418 break;
424 /* If we had an equivalence associated with this edge, remove it. */
425 if (e->aux)
427 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux;
428 remove_equivalence (equiv->rhs);
433 /* Ignoring loop backedges, if BB has precisely one incoming edge then
434 return that edge. Otherwise return NULL. */
435 static edge
436 single_incoming_edge_ignoring_loop_edges (basic_block bb)
438 edge retval = NULL;
439 edge e;
440 edge_iterator ei;
442 FOR_EACH_EDGE (e, ei, bb->preds)
444 /* A loop back edge can be identified by the destination of
445 the edge dominating the source of the edge. */
446 if (dominated_by_p (CDI_DOMINATORS, e->src, e->dest))
447 continue;
449 /* If we have already seen a non-loop edge, then we must have
450 multiple incoming non-loop edges and thus we return NULL. */
451 if (retval)
452 return NULL;
454 /* This is the first non-loop incoming edge we have found. Record
455 it. */
456 retval = e;
459 return retval;
462 void
463 uncprop_dom_walker::before_dom_children (basic_block bb)
465 basic_block parent;
466 edge e;
467 bool recorded = false;
469 /* If this block is dominated by a single incoming edge and that edge
470 has an equivalency, then record the equivalency and push the
471 VALUE onto EQUIV_STACK. Else push a NULL entry on EQUIV_STACK. */
472 parent = get_immediate_dominator (CDI_DOMINATORS, bb);
473 if (parent)
475 e = single_incoming_edge_ignoring_loop_edges (bb);
477 if (e && e->src == parent && e->aux)
479 struct edge_equivalency *equiv = (struct edge_equivalency *) e->aux;
481 record_equiv (equiv->rhs, equiv->lhs);
482 m_equiv_stack.safe_push (equiv->rhs);
483 recorded = true;
487 if (!recorded)
488 m_equiv_stack.safe_push (NULL_TREE);
490 uncprop_into_successor_phis (bb);
493 namespace {
495 const pass_data pass_data_uncprop =
497 GIMPLE_PASS, /* type */
498 "uncprop", /* name */
499 OPTGROUP_NONE, /* optinfo_flags */
500 TV_TREE_SSA_UNCPROP, /* tv_id */
501 ( PROP_cfg | PROP_ssa ), /* properties_required */
502 0, /* properties_provided */
503 0, /* properties_destroyed */
504 0, /* todo_flags_start */
505 0, /* todo_flags_finish */
508 class pass_uncprop : public gimple_opt_pass
510 public:
511 pass_uncprop (gcc::context *ctxt)
512 : gimple_opt_pass (pass_data_uncprop, ctxt)
515 /* opt_pass methods: */
516 opt_pass * clone () { return new pass_uncprop (m_ctxt); }
517 virtual bool gate (function *) { return flag_tree_dom != 0; }
518 virtual unsigned int execute (function *);
520 }; // class pass_uncprop
522 unsigned int
523 pass_uncprop::execute (function *fun)
525 basic_block bb;
527 associate_equivalences_with_edges ();
529 /* Create our global data structures. */
530 val_ssa_equiv
531 = new hash_map<tree, vec<tree>, val_ssa_equiv_hash_traits> (1024);
533 /* We're going to do a dominator walk, so ensure that we have
534 dominance information. */
535 calculate_dominance_info (CDI_DOMINATORS);
537 /* Recursively walk the dominator tree undoing unprofitable
538 constant/copy propagations. */
539 uncprop_dom_walker (CDI_DOMINATORS).walk (fun->cfg->x_entry_block_ptr);
541 /* we just need to empty elements out of the hash table, and cleanup the
542 AUX field on the edges. */
543 delete val_ssa_equiv;
544 val_ssa_equiv = NULL;
545 FOR_EACH_BB_FN (bb, fun)
547 edge e;
548 edge_iterator ei;
550 FOR_EACH_EDGE (e, ei, bb->succs)
552 if (e->aux)
554 free (e->aux);
555 e->aux = NULL;
559 return 0;
562 } // anon namespace
564 gimple_opt_pass *
565 make_pass_uncprop (gcc::context *ctxt)
567 return new pass_uncprop (ctxt);