Small ChangeLog tweak.
[official-gcc.git] / gcc / tree-ssa-pre.c
blob2a431c96f7fe9e57b7097431fdf4ef24227a791c
1 /* Full and partial redundancy elimination and code hoisting on SSA GIMPLE.
2 Copyright (C) 2001-2017 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dan@dberlin.org> and Steven Bosscher
4 <stevenb@suse.de>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License 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 "backend.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "gimple.h"
29 #include "predict.h"
30 #include "alloc-pool.h"
31 #include "tree-pass.h"
32 #include "ssa.h"
33 #include "cgraph.h"
34 #include "gimple-pretty-print.h"
35 #include "fold-const.h"
36 #include "cfganal.h"
37 #include "gimple-fold.h"
38 #include "tree-eh.h"
39 #include "gimplify.h"
40 #include "gimple-iterator.h"
41 #include "tree-cfg.h"
42 #include "tree-ssa-loop.h"
43 #include "tree-into-ssa.h"
44 #include "tree-dfa.h"
45 #include "tree-ssa.h"
46 #include "cfgloop.h"
47 #include "tree-ssa-sccvn.h"
48 #include "tree-scalar-evolution.h"
49 #include "params.h"
50 #include "dbgcnt.h"
51 #include "domwalk.h"
52 #include "tree-ssa-propagate.h"
53 #include "ipa-utils.h"
54 #include "tree-cfgcleanup.h"
55 #include "langhooks.h"
56 #include "alias.h"
58 /* Even though this file is called tree-ssa-pre.c, we actually
59 implement a bit more than just PRE here. All of them piggy-back
60 on GVN which is implemented in tree-ssa-sccvn.c.
62 1. Full Redundancy Elimination (FRE)
63 This is the elimination phase of GVN.
65 2. Partial Redundancy Elimination (PRE)
66 This is adds computation of AVAIL_OUT and ANTIC_IN and
67 doing expression insertion to form GVN-PRE.
69 3. Code hoisting
70 This optimization uses the ANTIC_IN sets computed for PRE
71 to move expressions further up than PRE would do, to make
72 multiple computations of the same value fully redundant.
73 This pass is explained below (after the explanation of the
74 basic algorithm for PRE).
77 /* TODO:
79 1. Avail sets can be shared by making an avail_find_leader that
80 walks up the dominator tree and looks in those avail sets.
81 This might affect code optimality, it's unclear right now.
82 Currently the AVAIL_OUT sets are the remaining quadraticness in
83 memory of GVN-PRE.
84 2. Strength reduction can be performed by anticipating expressions
85 we can repair later on.
86 3. We can do back-substitution or smarter value numbering to catch
87 commutative expressions split up over multiple statements.
90 /* For ease of terminology, "expression node" in the below refers to
91 every expression node but GIMPLE_ASSIGN, because GIMPLE_ASSIGNs
92 represent the actual statement containing the expressions we care about,
93 and we cache the value number by putting it in the expression. */
95 /* Basic algorithm for Partial Redundancy Elimination:
97 First we walk the statements to generate the AVAIL sets, the
98 EXP_GEN sets, and the tmp_gen sets. EXP_GEN sets represent the
99 generation of values/expressions by a given block. We use them
100 when computing the ANTIC sets. The AVAIL sets consist of
101 SSA_NAME's that represent values, so we know what values are
102 available in what blocks. AVAIL is a forward dataflow problem. In
103 SSA, values are never killed, so we don't need a kill set, or a
104 fixpoint iteration, in order to calculate the AVAIL sets. In
105 traditional parlance, AVAIL sets tell us the downsafety of the
106 expressions/values.
108 Next, we generate the ANTIC sets. These sets represent the
109 anticipatable expressions. ANTIC is a backwards dataflow
110 problem. An expression is anticipatable in a given block if it could
111 be generated in that block. This means that if we had to perform
112 an insertion in that block, of the value of that expression, we
113 could. Calculating the ANTIC sets requires phi translation of
114 expressions, because the flow goes backwards through phis. We must
115 iterate to a fixpoint of the ANTIC sets, because we have a kill
116 set. Even in SSA form, values are not live over the entire
117 function, only from their definition point onwards. So we have to
118 remove values from the ANTIC set once we go past the definition
119 point of the leaders that make them up.
120 compute_antic/compute_antic_aux performs this computation.
122 Third, we perform insertions to make partially redundant
123 expressions fully redundant.
125 An expression is partially redundant (excluding partial
126 anticipation) if:
128 1. It is AVAIL in some, but not all, of the predecessors of a
129 given block.
130 2. It is ANTIC in all the predecessors.
132 In order to make it fully redundant, we insert the expression into
133 the predecessors where it is not available, but is ANTIC.
135 When optimizing for size, we only eliminate the partial redundancy
136 if we need to insert in only one predecessor. This avoids almost
137 completely the code size increase that PRE usually causes.
139 For the partial anticipation case, we only perform insertion if it
140 is partially anticipated in some block, and fully available in all
141 of the predecessors.
143 do_pre_regular_insertion/do_pre_partial_partial_insertion
144 performs these steps, driven by insert/insert_aux.
146 Fourth, we eliminate fully redundant expressions.
147 This is a simple statement walk that replaces redundant
148 calculations with the now available values. */
150 /* Basic algorithm for Code Hoisting:
152 Code hoisting is: Moving value computations up in the control flow
153 graph to make multiple copies redundant. Typically this is a size
154 optimization, but there are cases where it also is helpful for speed.
156 A simple code hoisting algorithm is implemented that piggy-backs on
157 the PRE infrastructure. For code hoisting, we have to know ANTIC_OUT
158 which is effectively ANTIC_IN - AVAIL_OUT. The latter two have to be
159 computed for PRE, and we can use them to perform a limited version of
160 code hoisting, too.
162 For the purpose of this implementation, a value is hoistable to a basic
163 block B if the following properties are met:
165 1. The value is in ANTIC_IN(B) -- the value will be computed on all
166 paths from B to function exit and it can be computed in B);
168 2. The value is not in AVAIL_OUT(B) -- there would be no need to
169 compute the value again and make it available twice;
171 3. All successors of B are dominated by B -- makes sure that inserting
172 a computation of the value in B will make the remaining
173 computations fully redundant;
175 4. At least one successor has the value in AVAIL_OUT -- to avoid
176 hoisting values up too far;
178 5. There are at least two successors of B -- hoisting in straight
179 line code is pointless.
181 The third condition is not strictly necessary, but it would complicate
182 the hoisting pass a lot. In fact, I don't know of any code hoisting
183 algorithm that does not have this requirement. Fortunately, experiments
184 have show that most candidate hoistable values are in regions that meet
185 this condition (e.g. diamond-shape regions).
187 The forth condition is necessary to avoid hoisting things up too far
188 away from the uses of the value. Nothing else limits the algorithm
189 from hoisting everything up as far as ANTIC_IN allows. Experiments
190 with SPEC and CSiBE have shown that hoisting up too far results in more
191 spilling, less benefits for code size, and worse benchmark scores.
192 Fortunately, in practice most of the interesting hoisting opportunities
193 are caught despite this limitation.
195 For hoistable values that meet all conditions, expressions are inserted
196 to make the calculation of the hoistable value fully redundant. We
197 perform code hoisting insertions after each round of PRE insertions,
198 because code hoisting never exposes new PRE opportunities, but PRE can
199 create new code hoisting opportunities.
201 The code hoisting algorithm is implemented in do_hoist_insert, driven
202 by insert/insert_aux. */
204 /* Representations of value numbers:
206 Value numbers are represented by a representative SSA_NAME. We
207 will create fake SSA_NAME's in situations where we need a
208 representative but do not have one (because it is a complex
209 expression). In order to facilitate storing the value numbers in
210 bitmaps, and keep the number of wasted SSA_NAME's down, we also
211 associate a value_id with each value number, and create full blown
212 ssa_name's only where we actually need them (IE in operands of
213 existing expressions).
215 Theoretically you could replace all the value_id's with
216 SSA_NAME_VERSION, but this would allocate a large number of
217 SSA_NAME's (which are each > 30 bytes) just to get a 4 byte number.
218 It would also require an additional indirection at each point we
219 use the value id. */
221 /* Representation of expressions on value numbers:
223 Expressions consisting of value numbers are represented the same
224 way as our VN internally represents them, with an additional
225 "pre_expr" wrapping around them in order to facilitate storing all
226 of the expressions in the same sets. */
228 /* Representation of sets:
230 The dataflow sets do not need to be sorted in any particular order
231 for the majority of their lifetime, are simply represented as two
232 bitmaps, one that keeps track of values present in the set, and one
233 that keeps track of expressions present in the set.
235 When we need them in topological order, we produce it on demand by
236 transforming the bitmap into an array and sorting it into topo
237 order. */
239 /* Type of expression, used to know which member of the PRE_EXPR union
240 is valid. */
242 enum pre_expr_kind
244 NAME,
245 NARY,
246 REFERENCE,
247 CONSTANT
250 union pre_expr_union
252 tree name;
253 tree constant;
254 vn_nary_op_t nary;
255 vn_reference_t reference;
258 typedef struct pre_expr_d : nofree_ptr_hash <pre_expr_d>
260 enum pre_expr_kind kind;
261 unsigned int id;
262 pre_expr_union u;
264 /* hash_table support. */
265 static inline hashval_t hash (const pre_expr_d *);
266 static inline int equal (const pre_expr_d *, const pre_expr_d *);
267 } *pre_expr;
269 #define PRE_EXPR_NAME(e) (e)->u.name
270 #define PRE_EXPR_NARY(e) (e)->u.nary
271 #define PRE_EXPR_REFERENCE(e) (e)->u.reference
272 #define PRE_EXPR_CONSTANT(e) (e)->u.constant
274 /* Compare E1 and E1 for equality. */
276 inline int
277 pre_expr_d::equal (const pre_expr_d *e1, const pre_expr_d *e2)
279 if (e1->kind != e2->kind)
280 return false;
282 switch (e1->kind)
284 case CONSTANT:
285 return vn_constant_eq_with_type (PRE_EXPR_CONSTANT (e1),
286 PRE_EXPR_CONSTANT (e2));
287 case NAME:
288 return PRE_EXPR_NAME (e1) == PRE_EXPR_NAME (e2);
289 case NARY:
290 return vn_nary_op_eq (PRE_EXPR_NARY (e1), PRE_EXPR_NARY (e2));
291 case REFERENCE:
292 return vn_reference_eq (PRE_EXPR_REFERENCE (e1),
293 PRE_EXPR_REFERENCE (e2));
294 default:
295 gcc_unreachable ();
299 /* Hash E. */
301 inline hashval_t
302 pre_expr_d::hash (const pre_expr_d *e)
304 switch (e->kind)
306 case CONSTANT:
307 return vn_hash_constant_with_type (PRE_EXPR_CONSTANT (e));
308 case NAME:
309 return SSA_NAME_VERSION (PRE_EXPR_NAME (e));
310 case NARY:
311 return PRE_EXPR_NARY (e)->hashcode;
312 case REFERENCE:
313 return PRE_EXPR_REFERENCE (e)->hashcode;
314 default:
315 gcc_unreachable ();
319 /* Next global expression id number. */
320 static unsigned int next_expression_id;
322 /* Mapping from expression to id number we can use in bitmap sets. */
323 static vec<pre_expr> expressions;
324 static hash_table<pre_expr_d> *expression_to_id;
325 static vec<unsigned> name_to_id;
327 /* Allocate an expression id for EXPR. */
329 static inline unsigned int
330 alloc_expression_id (pre_expr expr)
332 struct pre_expr_d **slot;
333 /* Make sure we won't overflow. */
334 gcc_assert (next_expression_id + 1 > next_expression_id);
335 expr->id = next_expression_id++;
336 expressions.safe_push (expr);
337 if (expr->kind == NAME)
339 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
340 /* vec::safe_grow_cleared allocates no headroom. Avoid frequent
341 re-allocations by using vec::reserve upfront. */
342 unsigned old_len = name_to_id.length ();
343 name_to_id.reserve (num_ssa_names - old_len);
344 name_to_id.quick_grow_cleared (num_ssa_names);
345 gcc_assert (name_to_id[version] == 0);
346 name_to_id[version] = expr->id;
348 else
350 slot = expression_to_id->find_slot (expr, INSERT);
351 gcc_assert (!*slot);
352 *slot = expr;
354 return next_expression_id - 1;
357 /* Return the expression id for tree EXPR. */
359 static inline unsigned int
360 get_expression_id (const pre_expr expr)
362 return expr->id;
365 static inline unsigned int
366 lookup_expression_id (const pre_expr expr)
368 struct pre_expr_d **slot;
370 if (expr->kind == NAME)
372 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
373 if (name_to_id.length () <= version)
374 return 0;
375 return name_to_id[version];
377 else
379 slot = expression_to_id->find_slot (expr, NO_INSERT);
380 if (!slot)
381 return 0;
382 return ((pre_expr)*slot)->id;
386 /* Return the existing expression id for EXPR, or create one if one
387 does not exist yet. */
389 static inline unsigned int
390 get_or_alloc_expression_id (pre_expr expr)
392 unsigned int id = lookup_expression_id (expr);
393 if (id == 0)
394 return alloc_expression_id (expr);
395 return expr->id = id;
398 /* Return the expression that has expression id ID */
400 static inline pre_expr
401 expression_for_id (unsigned int id)
403 return expressions[id];
406 /* Free the expression id field in all of our expressions,
407 and then destroy the expressions array. */
409 static void
410 clear_expression_ids (void)
412 expressions.release ();
415 static object_allocator<pre_expr_d> pre_expr_pool ("pre_expr nodes");
417 /* Given an SSA_NAME NAME, get or create a pre_expr to represent it. */
419 static pre_expr
420 get_or_alloc_expr_for_name (tree name)
422 struct pre_expr_d expr;
423 pre_expr result;
424 unsigned int result_id;
426 expr.kind = NAME;
427 expr.id = 0;
428 PRE_EXPR_NAME (&expr) = name;
429 result_id = lookup_expression_id (&expr);
430 if (result_id != 0)
431 return expression_for_id (result_id);
433 result = pre_expr_pool.allocate ();
434 result->kind = NAME;
435 PRE_EXPR_NAME (result) = name;
436 alloc_expression_id (result);
437 return result;
440 /* An unordered bitmap set. One bitmap tracks values, the other,
441 expressions. */
442 typedef struct bitmap_set
444 bitmap_head expressions;
445 bitmap_head values;
446 } *bitmap_set_t;
448 #define FOR_EACH_EXPR_ID_IN_SET(set, id, bi) \
449 EXECUTE_IF_SET_IN_BITMAP (&(set)->expressions, 0, (id), (bi))
451 #define FOR_EACH_VALUE_ID_IN_SET(set, id, bi) \
452 EXECUTE_IF_SET_IN_BITMAP (&(set)->values, 0, (id), (bi))
454 /* Mapping from value id to expressions with that value_id. */
455 static vec<bitmap> value_expressions;
457 /* Sets that we need to keep track of. */
458 typedef struct bb_bitmap_sets
460 /* The EXP_GEN set, which represents expressions/values generated in
461 a basic block. */
462 bitmap_set_t exp_gen;
464 /* The PHI_GEN set, which represents PHI results generated in a
465 basic block. */
466 bitmap_set_t phi_gen;
468 /* The TMP_GEN set, which represents results/temporaries generated
469 in a basic block. IE the LHS of an expression. */
470 bitmap_set_t tmp_gen;
472 /* The AVAIL_OUT set, which represents which values are available in
473 a given basic block. */
474 bitmap_set_t avail_out;
476 /* The ANTIC_IN set, which represents which values are anticipatable
477 in a given basic block. */
478 bitmap_set_t antic_in;
480 /* The PA_IN set, which represents which values are
481 partially anticipatable in a given basic block. */
482 bitmap_set_t pa_in;
484 /* The NEW_SETS set, which is used during insertion to augment the
485 AVAIL_OUT set of blocks with the new insertions performed during
486 the current iteration. */
487 bitmap_set_t new_sets;
489 /* A cache for value_dies_in_block_x. */
490 bitmap expr_dies;
492 /* The live virtual operand on successor edges. */
493 tree vop_on_exit;
495 /* True if we have visited this block during ANTIC calculation. */
496 unsigned int visited : 1;
498 /* True when the block contains a call that might not return. */
499 unsigned int contains_may_not_return_call : 1;
500 } *bb_value_sets_t;
502 #define EXP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->exp_gen
503 #define PHI_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->phi_gen
504 #define TMP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->tmp_gen
505 #define AVAIL_OUT(BB) ((bb_value_sets_t) ((BB)->aux))->avail_out
506 #define ANTIC_IN(BB) ((bb_value_sets_t) ((BB)->aux))->antic_in
507 #define PA_IN(BB) ((bb_value_sets_t) ((BB)->aux))->pa_in
508 #define NEW_SETS(BB) ((bb_value_sets_t) ((BB)->aux))->new_sets
509 #define EXPR_DIES(BB) ((bb_value_sets_t) ((BB)->aux))->expr_dies
510 #define BB_VISITED(BB) ((bb_value_sets_t) ((BB)->aux))->visited
511 #define BB_MAY_NOTRETURN(BB) ((bb_value_sets_t) ((BB)->aux))->contains_may_not_return_call
512 #define BB_LIVE_VOP_ON_EXIT(BB) ((bb_value_sets_t) ((BB)->aux))->vop_on_exit
515 /* This structure is used to keep track of statistics on what
516 optimization PRE was able to perform. */
517 static struct
519 /* The number of RHS computations eliminated by PRE. */
520 int eliminations;
522 /* The number of new expressions/temporaries generated by PRE. */
523 int insertions;
525 /* The number of inserts found due to partial anticipation */
526 int pa_insert;
528 /* The number of inserts made for code hoisting. */
529 int hoist_insert;
531 /* The number of new PHI nodes added by PRE. */
532 int phis;
533 } pre_stats;
535 static bool do_partial_partial;
536 static pre_expr bitmap_find_leader (bitmap_set_t, unsigned int);
537 static void bitmap_value_insert_into_set (bitmap_set_t, pre_expr);
538 static void bitmap_value_replace_in_set (bitmap_set_t, pre_expr);
539 static void bitmap_set_copy (bitmap_set_t, bitmap_set_t);
540 static void bitmap_set_and (bitmap_set_t, bitmap_set_t);
541 static bool bitmap_set_contains_value (bitmap_set_t, unsigned int);
542 static void bitmap_insert_into_set (bitmap_set_t, pre_expr);
543 static void bitmap_insert_into_set_1 (bitmap_set_t, pre_expr,
544 unsigned int, bool);
545 static bitmap_set_t bitmap_set_new (void);
546 static tree create_expression_by_pieces (basic_block, pre_expr, gimple_seq *,
547 tree);
548 static tree find_or_generate_expression (basic_block, tree, gimple_seq *);
549 static unsigned int get_expr_value_id (pre_expr);
551 /* We can add and remove elements and entries to and from sets
552 and hash tables, so we use alloc pools for them. */
554 static object_allocator<bitmap_set> bitmap_set_pool ("Bitmap sets");
555 static bitmap_obstack grand_bitmap_obstack;
557 /* Set of blocks with statements that have had their EH properties changed. */
558 static bitmap need_eh_cleanup;
560 /* Set of blocks with statements that have had their AB properties changed. */
561 static bitmap need_ab_cleanup;
563 /* A three tuple {e, pred, v} used to cache phi translations in the
564 phi_translate_table. */
566 typedef struct expr_pred_trans_d : free_ptr_hash<expr_pred_trans_d>
568 /* The expression. */
569 pre_expr e;
571 /* The predecessor block along which we translated the expression. */
572 basic_block pred;
574 /* The value that resulted from the translation. */
575 pre_expr v;
577 /* The hashcode for the expression, pred pair. This is cached for
578 speed reasons. */
579 hashval_t hashcode;
581 /* hash_table support. */
582 static inline hashval_t hash (const expr_pred_trans_d *);
583 static inline int equal (const expr_pred_trans_d *, const expr_pred_trans_d *);
584 } *expr_pred_trans_t;
585 typedef const struct expr_pred_trans_d *const_expr_pred_trans_t;
587 inline hashval_t
588 expr_pred_trans_d::hash (const expr_pred_trans_d *e)
590 return e->hashcode;
593 inline int
594 expr_pred_trans_d::equal (const expr_pred_trans_d *ve1,
595 const expr_pred_trans_d *ve2)
597 basic_block b1 = ve1->pred;
598 basic_block b2 = ve2->pred;
600 /* If they are not translations for the same basic block, they can't
601 be equal. */
602 if (b1 != b2)
603 return false;
604 return pre_expr_d::equal (ve1->e, ve2->e);
607 /* The phi_translate_table caches phi translations for a given
608 expression and predecessor. */
609 static hash_table<expr_pred_trans_d> *phi_translate_table;
611 /* Add the tuple mapping from {expression E, basic block PRED} to
612 the phi translation table and return whether it pre-existed. */
614 static inline bool
615 phi_trans_add (expr_pred_trans_t *entry, pre_expr e, basic_block pred)
617 expr_pred_trans_t *slot;
618 expr_pred_trans_d tem;
619 hashval_t hash = iterative_hash_hashval_t (pre_expr_d::hash (e),
620 pred->index);
621 tem.e = e;
622 tem.pred = pred;
623 tem.hashcode = hash;
624 slot = phi_translate_table->find_slot_with_hash (&tem, hash, INSERT);
625 if (*slot)
627 *entry = *slot;
628 return true;
631 *entry = *slot = XNEW (struct expr_pred_trans_d);
632 (*entry)->e = e;
633 (*entry)->pred = pred;
634 (*entry)->hashcode = hash;
635 return false;
639 /* Add expression E to the expression set of value id V. */
641 static void
642 add_to_value (unsigned int v, pre_expr e)
644 bitmap set;
646 gcc_checking_assert (get_expr_value_id (e) == v);
648 if (v >= value_expressions.length ())
650 value_expressions.safe_grow_cleared (v + 1);
653 set = value_expressions[v];
654 if (!set)
656 set = BITMAP_ALLOC (&grand_bitmap_obstack);
657 value_expressions[v] = set;
660 bitmap_set_bit (set, get_or_alloc_expression_id (e));
663 /* Create a new bitmap set and return it. */
665 static bitmap_set_t
666 bitmap_set_new (void)
668 bitmap_set_t ret = bitmap_set_pool.allocate ();
669 bitmap_initialize (&ret->expressions, &grand_bitmap_obstack);
670 bitmap_initialize (&ret->values, &grand_bitmap_obstack);
671 return ret;
674 /* Return the value id for a PRE expression EXPR. */
676 static unsigned int
677 get_expr_value_id (pre_expr expr)
679 unsigned int id;
680 switch (expr->kind)
682 case CONSTANT:
683 id = get_constant_value_id (PRE_EXPR_CONSTANT (expr));
684 break;
685 case NAME:
686 id = VN_INFO (PRE_EXPR_NAME (expr))->value_id;
687 break;
688 case NARY:
689 id = PRE_EXPR_NARY (expr)->value_id;
690 break;
691 case REFERENCE:
692 id = PRE_EXPR_REFERENCE (expr)->value_id;
693 break;
694 default:
695 gcc_unreachable ();
697 /* ??? We cannot assert that expr has a value-id (it can be 0), because
698 we assign value-ids only to expressions that have a result
699 in set_hashtable_value_ids. */
700 return id;
703 /* Return a SCCVN valnum (SSA name or constant) for the PRE value-id VAL. */
705 static tree
706 sccvn_valnum_from_value_id (unsigned int val)
708 bitmap_iterator bi;
709 unsigned int i;
710 bitmap exprset = value_expressions[val];
711 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
713 pre_expr vexpr = expression_for_id (i);
714 if (vexpr->kind == NAME)
715 return VN_INFO (PRE_EXPR_NAME (vexpr))->valnum;
716 else if (vexpr->kind == CONSTANT)
717 return PRE_EXPR_CONSTANT (vexpr);
719 return NULL_TREE;
722 /* Remove an expression EXPR from a bitmapped set. */
724 static void
725 bitmap_remove_from_set (bitmap_set_t set, pre_expr expr)
727 unsigned int val = get_expr_value_id (expr);
728 if (!value_id_constant_p (val))
730 bitmap_clear_bit (&set->values, val);
731 bitmap_clear_bit (&set->expressions, get_expression_id (expr));
735 static void
736 bitmap_insert_into_set_1 (bitmap_set_t set, pre_expr expr,
737 unsigned int val, bool allow_constants)
739 if (allow_constants || !value_id_constant_p (val))
741 /* We specifically expect this and only this function to be able to
742 insert constants into a set. */
743 bitmap_set_bit (&set->values, val);
744 bitmap_set_bit (&set->expressions, get_or_alloc_expression_id (expr));
748 /* Insert an expression EXPR into a bitmapped set. */
750 static void
751 bitmap_insert_into_set (bitmap_set_t set, pre_expr expr)
753 bitmap_insert_into_set_1 (set, expr, get_expr_value_id (expr), false);
756 /* Copy a bitmapped set ORIG, into bitmapped set DEST. */
758 static void
759 bitmap_set_copy (bitmap_set_t dest, bitmap_set_t orig)
761 bitmap_copy (&dest->expressions, &orig->expressions);
762 bitmap_copy (&dest->values, &orig->values);
766 /* Free memory used up by SET. */
767 static void
768 bitmap_set_free (bitmap_set_t set)
770 bitmap_clear (&set->expressions);
771 bitmap_clear (&set->values);
775 /* Generate an topological-ordered array of bitmap set SET. */
777 static vec<pre_expr>
778 sorted_array_from_bitmap_set (bitmap_set_t set)
780 unsigned int i, j;
781 bitmap_iterator bi, bj;
782 vec<pre_expr> result;
784 /* Pre-allocate enough space for the array. */
785 result.create (bitmap_count_bits (&set->expressions));
787 FOR_EACH_VALUE_ID_IN_SET (set, i, bi)
789 /* The number of expressions having a given value is usually
790 relatively small. Thus, rather than making a vector of all
791 the expressions and sorting it by value-id, we walk the values
792 and check in the reverse mapping that tells us what expressions
793 have a given value, to filter those in our set. As a result,
794 the expressions are inserted in value-id order, which means
795 topological order.
797 If this is somehow a significant lose for some cases, we can
798 choose which set to walk based on the set size. */
799 bitmap exprset = value_expressions[i];
800 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, j, bj)
802 if (bitmap_bit_p (&set->expressions, j))
803 result.quick_push (expression_for_id (j));
807 return result;
810 /* Perform bitmapped set operation DEST &= ORIG. */
812 static void
813 bitmap_set_and (bitmap_set_t dest, bitmap_set_t orig)
815 bitmap_iterator bi;
816 unsigned int i;
818 if (dest != orig)
820 bitmap_and_into (&dest->values, &orig->values);
822 unsigned int to_clear = -1U;
823 FOR_EACH_EXPR_ID_IN_SET (dest, i, bi)
825 if (to_clear != -1U)
827 bitmap_clear_bit (&dest->expressions, to_clear);
828 to_clear = -1U;
830 pre_expr expr = expression_for_id (i);
831 unsigned int value_id = get_expr_value_id (expr);
832 if (!bitmap_bit_p (&dest->values, value_id))
833 to_clear = i;
835 if (to_clear != -1U)
836 bitmap_clear_bit (&dest->expressions, to_clear);
840 /* Subtract all values and expressions contained in ORIG from DEST. */
842 static bitmap_set_t
843 bitmap_set_subtract (bitmap_set_t dest, bitmap_set_t orig)
845 bitmap_set_t result = bitmap_set_new ();
846 bitmap_iterator bi;
847 unsigned int i;
849 bitmap_and_compl (&result->expressions, &dest->expressions,
850 &orig->expressions);
852 FOR_EACH_EXPR_ID_IN_SET (result, i, bi)
854 pre_expr expr = expression_for_id (i);
855 unsigned int value_id = get_expr_value_id (expr);
856 bitmap_set_bit (&result->values, value_id);
859 return result;
862 /* Subtract all the values in bitmap set B from bitmap set A. */
864 static void
865 bitmap_set_subtract_values (bitmap_set_t a, bitmap_set_t b)
867 unsigned int i;
868 bitmap_iterator bi;
869 pre_expr to_remove = NULL;
870 FOR_EACH_EXPR_ID_IN_SET (a, i, bi)
872 if (to_remove)
874 bitmap_remove_from_set (a, to_remove);
875 to_remove = NULL;
877 pre_expr expr = expression_for_id (i);
878 if (bitmap_set_contains_value (b, get_expr_value_id (expr)))
879 to_remove = expr;
881 if (to_remove)
882 bitmap_remove_from_set (a, to_remove);
886 /* Return true if bitmapped set SET contains the value VALUE_ID. */
888 static bool
889 bitmap_set_contains_value (bitmap_set_t set, unsigned int value_id)
891 if (value_id_constant_p (value_id))
892 return true;
894 if (!set || bitmap_empty_p (&set->expressions))
895 return false;
897 return bitmap_bit_p (&set->values, value_id);
900 static inline bool
901 bitmap_set_contains_expr (bitmap_set_t set, const pre_expr expr)
903 return bitmap_bit_p (&set->expressions, get_expression_id (expr));
906 /* Replace an instance of value LOOKFOR with expression EXPR in SET. */
908 static void
909 bitmap_set_replace_value (bitmap_set_t set, unsigned int lookfor,
910 const pre_expr expr)
912 bitmap exprset;
913 unsigned int i;
914 bitmap_iterator bi;
916 if (value_id_constant_p (lookfor))
917 return;
919 if (!bitmap_set_contains_value (set, lookfor))
920 return;
922 /* The number of expressions having a given value is usually
923 significantly less than the total number of expressions in SET.
924 Thus, rather than check, for each expression in SET, whether it
925 has the value LOOKFOR, we walk the reverse mapping that tells us
926 what expressions have a given value, and see if any of those
927 expressions are in our set. For large testcases, this is about
928 5-10x faster than walking the bitmap. If this is somehow a
929 significant lose for some cases, we can choose which set to walk
930 based on the set size. */
931 exprset = value_expressions[lookfor];
932 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
934 if (bitmap_clear_bit (&set->expressions, i))
936 bitmap_set_bit (&set->expressions, get_expression_id (expr));
937 return;
941 gcc_unreachable ();
944 /* Return true if two bitmap sets are equal. */
946 static bool
947 bitmap_set_equal (bitmap_set_t a, bitmap_set_t b)
949 return bitmap_equal_p (&a->values, &b->values);
952 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
953 and add it otherwise. */
955 static void
956 bitmap_value_replace_in_set (bitmap_set_t set, pre_expr expr)
958 unsigned int val = get_expr_value_id (expr);
960 if (bitmap_set_contains_value (set, val))
961 bitmap_set_replace_value (set, val, expr);
962 else
963 bitmap_insert_into_set (set, expr);
966 /* Insert EXPR into SET if EXPR's value is not already present in
967 SET. */
969 static void
970 bitmap_value_insert_into_set (bitmap_set_t set, pre_expr expr)
972 unsigned int val = get_expr_value_id (expr);
974 gcc_checking_assert (expr->id == get_or_alloc_expression_id (expr));
976 /* Constant values are always considered to be part of the set. */
977 if (value_id_constant_p (val))
978 return;
980 /* If the value membership changed, add the expression. */
981 if (bitmap_set_bit (&set->values, val))
982 bitmap_set_bit (&set->expressions, expr->id);
985 /* Print out EXPR to outfile. */
987 static void
988 print_pre_expr (FILE *outfile, const pre_expr expr)
990 switch (expr->kind)
992 case CONSTANT:
993 print_generic_expr (outfile, PRE_EXPR_CONSTANT (expr));
994 break;
995 case NAME:
996 print_generic_expr (outfile, PRE_EXPR_NAME (expr));
997 break;
998 case NARY:
1000 unsigned int i;
1001 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1002 fprintf (outfile, "{%s,", get_tree_code_name (nary->opcode));
1003 for (i = 0; i < nary->length; i++)
1005 print_generic_expr (outfile, nary->op[i]);
1006 if (i != (unsigned) nary->length - 1)
1007 fprintf (outfile, ",");
1009 fprintf (outfile, "}");
1011 break;
1013 case REFERENCE:
1015 vn_reference_op_t vro;
1016 unsigned int i;
1017 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1018 fprintf (outfile, "{");
1019 for (i = 0;
1020 ref->operands.iterate (i, &vro);
1021 i++)
1023 bool closebrace = false;
1024 if (vro->opcode != SSA_NAME
1025 && TREE_CODE_CLASS (vro->opcode) != tcc_declaration)
1027 fprintf (outfile, "%s", get_tree_code_name (vro->opcode));
1028 if (vro->op0)
1030 fprintf (outfile, "<");
1031 closebrace = true;
1034 if (vro->op0)
1036 print_generic_expr (outfile, vro->op0);
1037 if (vro->op1)
1039 fprintf (outfile, ",");
1040 print_generic_expr (outfile, vro->op1);
1042 if (vro->op2)
1044 fprintf (outfile, ",");
1045 print_generic_expr (outfile, vro->op2);
1048 if (closebrace)
1049 fprintf (outfile, ">");
1050 if (i != ref->operands.length () - 1)
1051 fprintf (outfile, ",");
1053 fprintf (outfile, "}");
1054 if (ref->vuse)
1056 fprintf (outfile, "@");
1057 print_generic_expr (outfile, ref->vuse);
1060 break;
1063 void debug_pre_expr (pre_expr);
1065 /* Like print_pre_expr but always prints to stderr. */
1066 DEBUG_FUNCTION void
1067 debug_pre_expr (pre_expr e)
1069 print_pre_expr (stderr, e);
1070 fprintf (stderr, "\n");
1073 /* Print out SET to OUTFILE. */
1075 static void
1076 print_bitmap_set (FILE *outfile, bitmap_set_t set,
1077 const char *setname, int blockindex)
1079 fprintf (outfile, "%s[%d] := { ", setname, blockindex);
1080 if (set)
1082 bool first = true;
1083 unsigned i;
1084 bitmap_iterator bi;
1086 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
1088 const pre_expr expr = expression_for_id (i);
1090 if (!first)
1091 fprintf (outfile, ", ");
1092 first = false;
1093 print_pre_expr (outfile, expr);
1095 fprintf (outfile, " (%04d)", get_expr_value_id (expr));
1098 fprintf (outfile, " }\n");
1101 void debug_bitmap_set (bitmap_set_t);
1103 DEBUG_FUNCTION void
1104 debug_bitmap_set (bitmap_set_t set)
1106 print_bitmap_set (stderr, set, "debug", 0);
1109 void debug_bitmap_sets_for (basic_block);
1111 DEBUG_FUNCTION void
1112 debug_bitmap_sets_for (basic_block bb)
1114 print_bitmap_set (stderr, AVAIL_OUT (bb), "avail_out", bb->index);
1115 print_bitmap_set (stderr, EXP_GEN (bb), "exp_gen", bb->index);
1116 print_bitmap_set (stderr, PHI_GEN (bb), "phi_gen", bb->index);
1117 print_bitmap_set (stderr, TMP_GEN (bb), "tmp_gen", bb->index);
1118 print_bitmap_set (stderr, ANTIC_IN (bb), "antic_in", bb->index);
1119 if (do_partial_partial)
1120 print_bitmap_set (stderr, PA_IN (bb), "pa_in", bb->index);
1121 print_bitmap_set (stderr, NEW_SETS (bb), "new_sets", bb->index);
1124 /* Print out the expressions that have VAL to OUTFILE. */
1126 static void
1127 print_value_expressions (FILE *outfile, unsigned int val)
1129 bitmap set = value_expressions[val];
1130 if (set)
1132 bitmap_set x;
1133 char s[10];
1134 sprintf (s, "%04d", val);
1135 x.expressions = *set;
1136 print_bitmap_set (outfile, &x, s, 0);
1141 DEBUG_FUNCTION void
1142 debug_value_expressions (unsigned int val)
1144 print_value_expressions (stderr, val);
1147 /* Given a CONSTANT, allocate a new CONSTANT type PRE_EXPR to
1148 represent it. */
1150 static pre_expr
1151 get_or_alloc_expr_for_constant (tree constant)
1153 unsigned int result_id;
1154 unsigned int value_id;
1155 struct pre_expr_d expr;
1156 pre_expr newexpr;
1158 expr.kind = CONSTANT;
1159 PRE_EXPR_CONSTANT (&expr) = constant;
1160 result_id = lookup_expression_id (&expr);
1161 if (result_id != 0)
1162 return expression_for_id (result_id);
1164 newexpr = pre_expr_pool.allocate ();
1165 newexpr->kind = CONSTANT;
1166 PRE_EXPR_CONSTANT (newexpr) = constant;
1167 alloc_expression_id (newexpr);
1168 value_id = get_or_alloc_constant_value_id (constant);
1169 add_to_value (value_id, newexpr);
1170 return newexpr;
1173 /* Get or allocate a pre_expr for a piece of GIMPLE, and return it.
1174 Currently only supports constants and SSA_NAMES. */
1175 static pre_expr
1176 get_or_alloc_expr_for (tree t)
1178 if (TREE_CODE (t) == SSA_NAME)
1179 return get_or_alloc_expr_for_name (t);
1180 else if (is_gimple_min_invariant (t))
1181 return get_or_alloc_expr_for_constant (t);
1182 gcc_unreachable ();
1185 /* Return the folded version of T if T, when folded, is a gimple
1186 min_invariant or an SSA name. Otherwise, return T. */
1188 static pre_expr
1189 fully_constant_expression (pre_expr e)
1191 switch (e->kind)
1193 case CONSTANT:
1194 return e;
1195 case NARY:
1197 vn_nary_op_t nary = PRE_EXPR_NARY (e);
1198 tree res = vn_nary_simplify (nary);
1199 if (!res)
1200 return e;
1201 if (is_gimple_min_invariant (res))
1202 return get_or_alloc_expr_for_constant (res);
1203 if (TREE_CODE (res) == SSA_NAME)
1204 return get_or_alloc_expr_for_name (res);
1205 return e;
1207 case REFERENCE:
1209 vn_reference_t ref = PRE_EXPR_REFERENCE (e);
1210 tree folded;
1211 if ((folded = fully_constant_vn_reference_p (ref)))
1212 return get_or_alloc_expr_for_constant (folded);
1213 return e;
1215 default:
1216 return e;
1218 return e;
1221 /* Translate the VUSE backwards through phi nodes in PHIBLOCK, so that
1222 it has the value it would have in BLOCK. Set *SAME_VALID to true
1223 in case the new vuse doesn't change the value id of the OPERANDS. */
1225 static tree
1226 translate_vuse_through_block (vec<vn_reference_op_s> operands,
1227 alias_set_type set, tree type, tree vuse,
1228 basic_block phiblock,
1229 basic_block block, bool *same_valid)
1231 gimple *phi = SSA_NAME_DEF_STMT (vuse);
1232 ao_ref ref;
1233 edge e = NULL;
1234 bool use_oracle;
1236 *same_valid = true;
1238 if (gimple_bb (phi) != phiblock)
1239 return vuse;
1241 use_oracle = ao_ref_init_from_vn_reference (&ref, set, type, operands);
1243 /* Use the alias-oracle to find either the PHI node in this block,
1244 the first VUSE used in this block that is equivalent to vuse or
1245 the first VUSE which definition in this block kills the value. */
1246 if (gimple_code (phi) == GIMPLE_PHI)
1247 e = find_edge (block, phiblock);
1248 else if (use_oracle)
1249 while (!stmt_may_clobber_ref_p_1 (phi, &ref))
1251 vuse = gimple_vuse (phi);
1252 phi = SSA_NAME_DEF_STMT (vuse);
1253 if (gimple_bb (phi) != phiblock)
1254 return vuse;
1255 if (gimple_code (phi) == GIMPLE_PHI)
1257 e = find_edge (block, phiblock);
1258 break;
1261 else
1262 return NULL_TREE;
1264 if (e)
1266 if (use_oracle)
1268 bitmap visited = NULL;
1269 unsigned int cnt;
1270 /* Try to find a vuse that dominates this phi node by skipping
1271 non-clobbering statements. */
1272 vuse = get_continuation_for_phi (phi, &ref, &cnt, &visited, false,
1273 NULL, NULL);
1274 if (visited)
1275 BITMAP_FREE (visited);
1277 else
1278 vuse = NULL_TREE;
1279 if (!vuse)
1281 /* If we didn't find any, the value ID can't stay the same,
1282 but return the translated vuse. */
1283 *same_valid = false;
1284 vuse = PHI_ARG_DEF (phi, e->dest_idx);
1286 /* ??? We would like to return vuse here as this is the canonical
1287 upmost vdef that this reference is associated with. But during
1288 insertion of the references into the hash tables we only ever
1289 directly insert with their direct gimple_vuse, hence returning
1290 something else would make us not find the other expression. */
1291 return PHI_ARG_DEF (phi, e->dest_idx);
1294 return NULL_TREE;
1297 /* Like bitmap_find_leader, but checks for the value existing in SET1 *or*
1298 SET2 *or* SET3. This is used to avoid making a set consisting of the union
1299 of PA_IN and ANTIC_IN during insert and phi-translation. */
1301 static inline pre_expr
1302 find_leader_in_sets (unsigned int val, bitmap_set_t set1, bitmap_set_t set2,
1303 bitmap_set_t set3 = NULL)
1305 pre_expr result;
1307 result = bitmap_find_leader (set1, val);
1308 if (!result && set2)
1309 result = bitmap_find_leader (set2, val);
1310 if (!result && set3)
1311 result = bitmap_find_leader (set3, val);
1312 return result;
1315 /* Get the tree type for our PRE expression e. */
1317 static tree
1318 get_expr_type (const pre_expr e)
1320 switch (e->kind)
1322 case NAME:
1323 return TREE_TYPE (PRE_EXPR_NAME (e));
1324 case CONSTANT:
1325 return TREE_TYPE (PRE_EXPR_CONSTANT (e));
1326 case REFERENCE:
1327 return PRE_EXPR_REFERENCE (e)->type;
1328 case NARY:
1329 return PRE_EXPR_NARY (e)->type;
1331 gcc_unreachable ();
1334 /* Get a representative SSA_NAME for a given expression.
1335 Since all of our sub-expressions are treated as values, we require
1336 them to be SSA_NAME's for simplicity.
1337 Prior versions of GVNPRE used to use "value handles" here, so that
1338 an expression would be VH.11 + VH.10 instead of d_3 + e_6. In
1339 either case, the operands are really values (IE we do not expect
1340 them to be usable without finding leaders). */
1342 static tree
1343 get_representative_for (const pre_expr e)
1345 tree name;
1346 unsigned int value_id = get_expr_value_id (e);
1348 switch (e->kind)
1350 case NAME:
1351 return VN_INFO (PRE_EXPR_NAME (e))->valnum;
1352 case CONSTANT:
1353 return PRE_EXPR_CONSTANT (e);
1354 case NARY:
1355 case REFERENCE:
1357 /* Go through all of the expressions representing this value
1358 and pick out an SSA_NAME. */
1359 unsigned int i;
1360 bitmap_iterator bi;
1361 bitmap exprs = value_expressions[value_id];
1362 EXECUTE_IF_SET_IN_BITMAP (exprs, 0, i, bi)
1364 pre_expr rep = expression_for_id (i);
1365 if (rep->kind == NAME)
1366 return VN_INFO (PRE_EXPR_NAME (rep))->valnum;
1367 else if (rep->kind == CONSTANT)
1368 return PRE_EXPR_CONSTANT (rep);
1371 break;
1374 /* If we reached here we couldn't find an SSA_NAME. This can
1375 happen when we've discovered a value that has never appeared in
1376 the program as set to an SSA_NAME, as the result of phi translation.
1377 Create one here.
1378 ??? We should be able to re-use this when we insert the statement
1379 to compute it. */
1380 name = make_temp_ssa_name (get_expr_type (e), gimple_build_nop (), "pretmp");
1381 VN_INFO_GET (name)->value_id = value_id;
1382 VN_INFO (name)->valnum = name;
1383 /* ??? For now mark this SSA name for release by SCCVN. */
1384 VN_INFO (name)->needs_insertion = true;
1385 add_to_value (value_id, get_or_alloc_expr_for_name (name));
1386 if (dump_file && (dump_flags & TDF_DETAILS))
1388 fprintf (dump_file, "Created SSA_NAME representative ");
1389 print_generic_expr (dump_file, name);
1390 fprintf (dump_file, " for expression:");
1391 print_pre_expr (dump_file, e);
1392 fprintf (dump_file, " (%04d)\n", value_id);
1395 return name;
1400 static pre_expr
1401 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1402 basic_block pred, basic_block phiblock);
1404 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1405 the phis in PRED. Return NULL if we can't find a leader for each part
1406 of the translated expression. */
1408 static pre_expr
1409 phi_translate_1 (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1410 basic_block pred, basic_block phiblock)
1412 switch (expr->kind)
1414 case NARY:
1416 unsigned int i;
1417 bool changed = false;
1418 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1419 vn_nary_op_t newnary = XALLOCAVAR (struct vn_nary_op_s,
1420 sizeof_vn_nary_op (nary->length));
1421 memcpy (newnary, nary, sizeof_vn_nary_op (nary->length));
1423 for (i = 0; i < newnary->length; i++)
1425 if (TREE_CODE (newnary->op[i]) != SSA_NAME)
1426 continue;
1427 else
1429 pre_expr leader, result;
1430 unsigned int op_val_id = VN_INFO (newnary->op[i])->value_id;
1431 leader = find_leader_in_sets (op_val_id, set1, set2);
1432 result = phi_translate (leader, set1, set2, pred, phiblock);
1433 if (result && result != leader)
1434 newnary->op[i] = get_representative_for (result);
1435 else if (!result)
1436 return NULL;
1438 changed |= newnary->op[i] != nary->op[i];
1441 if (changed)
1443 pre_expr constant;
1444 unsigned int new_val_id;
1446 PRE_EXPR_NARY (expr) = newnary;
1447 constant = fully_constant_expression (expr);
1448 PRE_EXPR_NARY (expr) = nary;
1449 if (constant != expr)
1451 /* For non-CONSTANTs we have to make sure we can eventually
1452 insert the expression. Which means we need to have a
1453 leader for it. */
1454 if (constant->kind != CONSTANT)
1456 /* Do not allow simplifications to non-constants over
1457 backedges as this will likely result in a loop PHI node
1458 to be inserted and increased register pressure.
1459 See PR77498 - this avoids doing predcoms work in
1460 a less efficient way. */
1461 if (find_edge (pred, phiblock)->flags & EDGE_DFS_BACK)
1463 else
1465 unsigned value_id = get_expr_value_id (constant);
1466 constant = find_leader_in_sets (value_id, set1, set2,
1467 AVAIL_OUT (pred));
1468 if (constant)
1469 return constant;
1472 else
1473 return constant;
1476 tree result = vn_nary_op_lookup_pieces (newnary->length,
1477 newnary->opcode,
1478 newnary->type,
1479 &newnary->op[0],
1480 &nary);
1481 if (result && is_gimple_min_invariant (result))
1482 return get_or_alloc_expr_for_constant (result);
1484 expr = pre_expr_pool.allocate ();
1485 expr->kind = NARY;
1486 expr->id = 0;
1487 if (nary)
1489 PRE_EXPR_NARY (expr) = nary;
1490 new_val_id = nary->value_id;
1491 get_or_alloc_expression_id (expr);
1493 else
1495 new_val_id = get_next_value_id ();
1496 value_expressions.safe_grow_cleared (get_max_value_id () + 1);
1497 nary = vn_nary_op_insert_pieces (newnary->length,
1498 newnary->opcode,
1499 newnary->type,
1500 &newnary->op[0],
1501 result, new_val_id);
1502 PRE_EXPR_NARY (expr) = nary;
1503 get_or_alloc_expression_id (expr);
1505 add_to_value (new_val_id, expr);
1507 return expr;
1509 break;
1511 case REFERENCE:
1513 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1514 vec<vn_reference_op_s> operands = ref->operands;
1515 tree vuse = ref->vuse;
1516 tree newvuse = vuse;
1517 vec<vn_reference_op_s> newoperands = vNULL;
1518 bool changed = false, same_valid = true;
1519 unsigned int i, n;
1520 vn_reference_op_t operand;
1521 vn_reference_t newref;
1523 for (i = 0; operands.iterate (i, &operand); i++)
1525 pre_expr opresult;
1526 pre_expr leader;
1527 tree op[3];
1528 tree type = operand->type;
1529 vn_reference_op_s newop = *operand;
1530 op[0] = operand->op0;
1531 op[1] = operand->op1;
1532 op[2] = operand->op2;
1533 for (n = 0; n < 3; ++n)
1535 unsigned int op_val_id;
1536 if (!op[n])
1537 continue;
1538 if (TREE_CODE (op[n]) != SSA_NAME)
1540 /* We can't possibly insert these. */
1541 if (n != 0
1542 && !is_gimple_min_invariant (op[n]))
1543 break;
1544 continue;
1546 op_val_id = VN_INFO (op[n])->value_id;
1547 leader = find_leader_in_sets (op_val_id, set1, set2);
1548 opresult = phi_translate (leader, set1, set2, pred, phiblock);
1549 if (opresult && opresult != leader)
1551 tree name = get_representative_for (opresult);
1552 changed |= name != op[n];
1553 op[n] = name;
1555 else if (!opresult)
1556 break;
1558 if (n != 3)
1560 newoperands.release ();
1561 return NULL;
1563 if (!changed)
1564 continue;
1565 if (!newoperands.exists ())
1566 newoperands = operands.copy ();
1567 /* We may have changed from an SSA_NAME to a constant */
1568 if (newop.opcode == SSA_NAME && TREE_CODE (op[0]) != SSA_NAME)
1569 newop.opcode = TREE_CODE (op[0]);
1570 newop.type = type;
1571 newop.op0 = op[0];
1572 newop.op1 = op[1];
1573 newop.op2 = op[2];
1574 newoperands[i] = newop;
1576 gcc_checking_assert (i == operands.length ());
1578 if (vuse)
1580 newvuse = translate_vuse_through_block (newoperands.exists ()
1581 ? newoperands : operands,
1582 ref->set, ref->type,
1583 vuse, phiblock, pred,
1584 &same_valid);
1585 if (newvuse == NULL_TREE)
1587 newoperands.release ();
1588 return NULL;
1592 if (changed || newvuse != vuse)
1594 unsigned int new_val_id;
1595 pre_expr constant;
1597 tree result = vn_reference_lookup_pieces (newvuse, ref->set,
1598 ref->type,
1599 newoperands.exists ()
1600 ? newoperands : operands,
1601 &newref, VN_WALK);
1602 if (result)
1603 newoperands.release ();
1605 /* We can always insert constants, so if we have a partial
1606 redundant constant load of another type try to translate it
1607 to a constant of appropriate type. */
1608 if (result && is_gimple_min_invariant (result))
1610 tree tem = result;
1611 if (!useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1613 tem = fold_unary (VIEW_CONVERT_EXPR, ref->type, result);
1614 if (tem && !is_gimple_min_invariant (tem))
1615 tem = NULL_TREE;
1617 if (tem)
1618 return get_or_alloc_expr_for_constant (tem);
1621 /* If we'd have to convert things we would need to validate
1622 if we can insert the translated expression. So fail
1623 here for now - we cannot insert an alias with a different
1624 type in the VN tables either, as that would assert. */
1625 if (result
1626 && !useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1627 return NULL;
1628 else if (!result && newref
1629 && !useless_type_conversion_p (ref->type, newref->type))
1631 newoperands.release ();
1632 return NULL;
1635 expr = pre_expr_pool.allocate ();
1636 expr->kind = REFERENCE;
1637 expr->id = 0;
1639 if (newref)
1641 PRE_EXPR_REFERENCE (expr) = newref;
1642 constant = fully_constant_expression (expr);
1643 if (constant != expr)
1644 return constant;
1646 new_val_id = newref->value_id;
1647 get_or_alloc_expression_id (expr);
1649 else
1651 if (changed || !same_valid)
1653 new_val_id = get_next_value_id ();
1654 value_expressions.safe_grow_cleared
1655 (get_max_value_id () + 1);
1657 else
1658 new_val_id = ref->value_id;
1659 if (!newoperands.exists ())
1660 newoperands = operands.copy ();
1661 newref = vn_reference_insert_pieces (newvuse, ref->set,
1662 ref->type,
1663 newoperands,
1664 result, new_val_id);
1665 newoperands = vNULL;
1666 PRE_EXPR_REFERENCE (expr) = newref;
1667 constant = fully_constant_expression (expr);
1668 if (constant != expr)
1669 return constant;
1670 get_or_alloc_expression_id (expr);
1672 add_to_value (new_val_id, expr);
1674 newoperands.release ();
1675 return expr;
1677 break;
1679 case NAME:
1681 tree name = PRE_EXPR_NAME (expr);
1682 gimple *def_stmt = SSA_NAME_DEF_STMT (name);
1683 /* If the SSA name is defined by a PHI node in this block,
1684 translate it. */
1685 if (gimple_code (def_stmt) == GIMPLE_PHI
1686 && gimple_bb (def_stmt) == phiblock)
1688 edge e = find_edge (pred, gimple_bb (def_stmt));
1689 tree def = PHI_ARG_DEF (def_stmt, e->dest_idx);
1691 /* Handle constant. */
1692 if (is_gimple_min_invariant (def))
1693 return get_or_alloc_expr_for_constant (def);
1695 return get_or_alloc_expr_for_name (def);
1697 /* Otherwise return it unchanged - it will get removed if its
1698 value is not available in PREDs AVAIL_OUT set of expressions
1699 by the subtraction of TMP_GEN. */
1700 return expr;
1703 default:
1704 gcc_unreachable ();
1708 /* Wrapper around phi_translate_1 providing caching functionality. */
1710 static pre_expr
1711 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1712 basic_block pred, basic_block phiblock)
1714 expr_pred_trans_t slot = NULL;
1715 pre_expr phitrans;
1717 if (!expr)
1718 return NULL;
1720 /* Constants contain no values that need translation. */
1721 if (expr->kind == CONSTANT)
1722 return expr;
1724 if (value_id_constant_p (get_expr_value_id (expr)))
1725 return expr;
1727 /* Don't add translations of NAMEs as those are cheap to translate. */
1728 if (expr->kind != NAME)
1730 if (phi_trans_add (&slot, expr, pred))
1731 return slot->v;
1732 /* Store NULL for the value we want to return in the case of
1733 recursing. */
1734 slot->v = NULL;
1737 /* Translate. */
1738 phitrans = phi_translate_1 (expr, set1, set2, pred, phiblock);
1740 if (slot)
1742 if (phitrans)
1743 slot->v = phitrans;
1744 else
1745 /* Remove failed translations again, they cause insert
1746 iteration to not pick up new opportunities reliably. */
1747 phi_translate_table->remove_elt_with_hash (slot, slot->hashcode);
1750 return phitrans;
1754 /* For each expression in SET, translate the values through phi nodes
1755 in PHIBLOCK using edge PHIBLOCK->PRED, and store the resulting
1756 expressions in DEST. */
1758 static void
1759 phi_translate_set (bitmap_set_t dest, bitmap_set_t set, basic_block pred,
1760 basic_block phiblock)
1762 vec<pre_expr> exprs;
1763 pre_expr expr;
1764 int i;
1766 if (gimple_seq_empty_p (phi_nodes (phiblock)))
1768 bitmap_set_copy (dest, set);
1769 return;
1772 exprs = sorted_array_from_bitmap_set (set);
1773 FOR_EACH_VEC_ELT (exprs, i, expr)
1775 pre_expr translated;
1776 translated = phi_translate (expr, set, NULL, pred, phiblock);
1777 if (!translated)
1778 continue;
1780 /* We might end up with multiple expressions from SET being
1781 translated to the same value. In this case we do not want
1782 to retain the NARY or REFERENCE expression but prefer a NAME
1783 which would be the leader. */
1784 if (translated->kind == NAME)
1785 bitmap_value_replace_in_set (dest, translated);
1786 else
1787 bitmap_value_insert_into_set (dest, translated);
1789 exprs.release ();
1792 /* Find the leader for a value (i.e., the name representing that
1793 value) in a given set, and return it. Return NULL if no leader
1794 is found. */
1796 static pre_expr
1797 bitmap_find_leader (bitmap_set_t set, unsigned int val)
1799 if (value_id_constant_p (val))
1801 unsigned int i;
1802 bitmap_iterator bi;
1803 bitmap exprset = value_expressions[val];
1805 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
1807 pre_expr expr = expression_for_id (i);
1808 if (expr->kind == CONSTANT)
1809 return expr;
1812 if (bitmap_set_contains_value (set, val))
1814 /* Rather than walk the entire bitmap of expressions, and see
1815 whether any of them has the value we are looking for, we look
1816 at the reverse mapping, which tells us the set of expressions
1817 that have a given value (IE value->expressions with that
1818 value) and see if any of those expressions are in our set.
1819 The number of expressions per value is usually significantly
1820 less than the number of expressions in the set. In fact, for
1821 large testcases, doing it this way is roughly 5-10x faster
1822 than walking the bitmap.
1823 If this is somehow a significant lose for some cases, we can
1824 choose which set to walk based on which set is smaller. */
1825 unsigned int i;
1826 bitmap_iterator bi;
1827 bitmap exprset = value_expressions[val];
1829 EXECUTE_IF_AND_IN_BITMAP (exprset, &set->expressions, 0, i, bi)
1830 return expression_for_id (i);
1832 return NULL;
1835 /* Determine if EXPR, a memory expression, is ANTIC_IN at the top of
1836 BLOCK by seeing if it is not killed in the block. Note that we are
1837 only determining whether there is a store that kills it. Because
1838 of the order in which clean iterates over values, we are guaranteed
1839 that altered operands will have caused us to be eliminated from the
1840 ANTIC_IN set already. */
1842 static bool
1843 value_dies_in_block_x (pre_expr expr, basic_block block)
1845 tree vuse = PRE_EXPR_REFERENCE (expr)->vuse;
1846 vn_reference_t refx = PRE_EXPR_REFERENCE (expr);
1847 gimple *def;
1848 gimple_stmt_iterator gsi;
1849 unsigned id = get_expression_id (expr);
1850 bool res = false;
1851 ao_ref ref;
1853 if (!vuse)
1854 return false;
1856 /* Lookup a previously calculated result. */
1857 if (EXPR_DIES (block)
1858 && bitmap_bit_p (EXPR_DIES (block), id * 2))
1859 return bitmap_bit_p (EXPR_DIES (block), id * 2 + 1);
1861 /* A memory expression {e, VUSE} dies in the block if there is a
1862 statement that may clobber e. If, starting statement walk from the
1863 top of the basic block, a statement uses VUSE there can be no kill
1864 inbetween that use and the original statement that loaded {e, VUSE},
1865 so we can stop walking. */
1866 ref.base = NULL_TREE;
1867 for (gsi = gsi_start_bb (block); !gsi_end_p (gsi); gsi_next (&gsi))
1869 tree def_vuse, def_vdef;
1870 def = gsi_stmt (gsi);
1871 def_vuse = gimple_vuse (def);
1872 def_vdef = gimple_vdef (def);
1874 /* Not a memory statement. */
1875 if (!def_vuse)
1876 continue;
1878 /* Not a may-def. */
1879 if (!def_vdef)
1881 /* A load with the same VUSE, we're done. */
1882 if (def_vuse == vuse)
1883 break;
1885 continue;
1888 /* Init ref only if we really need it. */
1889 if (ref.base == NULL_TREE
1890 && !ao_ref_init_from_vn_reference (&ref, refx->set, refx->type,
1891 refx->operands))
1893 res = true;
1894 break;
1896 /* If the statement may clobber expr, it dies. */
1897 if (stmt_may_clobber_ref_p_1 (def, &ref))
1899 res = true;
1900 break;
1904 /* Remember the result. */
1905 if (!EXPR_DIES (block))
1906 EXPR_DIES (block) = BITMAP_ALLOC (&grand_bitmap_obstack);
1907 bitmap_set_bit (EXPR_DIES (block), id * 2);
1908 if (res)
1909 bitmap_set_bit (EXPR_DIES (block), id * 2 + 1);
1911 return res;
1915 /* Determine if OP is valid in SET1 U SET2, which it is when the union
1916 contains its value-id. */
1918 static bool
1919 op_valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, tree op)
1921 if (op && TREE_CODE (op) == SSA_NAME)
1923 unsigned int value_id = VN_INFO (op)->value_id;
1924 if (!(bitmap_set_contains_value (set1, value_id)
1925 || (set2 && bitmap_set_contains_value (set2, value_id))))
1926 return false;
1928 return true;
1931 /* Determine if the expression EXPR is valid in SET1 U SET2.
1932 ONLY SET2 CAN BE NULL.
1933 This means that we have a leader for each part of the expression
1934 (if it consists of values), or the expression is an SSA_NAME.
1935 For loads/calls, we also see if the vuse is killed in this block. */
1937 static bool
1938 valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, pre_expr expr)
1940 switch (expr->kind)
1942 case NAME:
1943 /* By construction all NAMEs are available. Non-available
1944 NAMEs are removed by subtracting TMP_GEN from the sets. */
1945 return true;
1946 case NARY:
1948 unsigned int i;
1949 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1950 for (i = 0; i < nary->length; i++)
1951 if (!op_valid_in_sets (set1, set2, nary->op[i]))
1952 return false;
1953 return true;
1955 break;
1956 case REFERENCE:
1958 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1959 vn_reference_op_t vro;
1960 unsigned int i;
1962 FOR_EACH_VEC_ELT (ref->operands, i, vro)
1964 if (!op_valid_in_sets (set1, set2, vro->op0)
1965 || !op_valid_in_sets (set1, set2, vro->op1)
1966 || !op_valid_in_sets (set1, set2, vro->op2))
1967 return false;
1969 return true;
1971 default:
1972 gcc_unreachable ();
1976 /* Clean the set of expressions that are no longer valid in SET1 or
1977 SET2. This means expressions that are made up of values we have no
1978 leaders for in SET1 or SET2. This version is used for partial
1979 anticipation, which means it is not valid in either ANTIC_IN or
1980 PA_IN. */
1982 static void
1983 dependent_clean (bitmap_set_t set1, bitmap_set_t set2)
1985 vec<pre_expr> exprs = sorted_array_from_bitmap_set (set1);
1986 pre_expr expr;
1987 int i;
1989 FOR_EACH_VEC_ELT (exprs, i, expr)
1991 if (!valid_in_sets (set1, set2, expr))
1992 bitmap_remove_from_set (set1, expr);
1994 exprs.release ();
1997 /* Clean the set of expressions that are no longer valid in SET. This
1998 means expressions that are made up of values we have no leaders for
1999 in SET. */
2001 static void
2002 clean (bitmap_set_t set)
2004 vec<pre_expr> exprs = sorted_array_from_bitmap_set (set);
2005 pre_expr expr;
2006 int i;
2008 FOR_EACH_VEC_ELT (exprs, i, expr)
2010 if (!valid_in_sets (set, NULL, expr))
2011 bitmap_remove_from_set (set, expr);
2013 exprs.release ();
2016 /* Clean the set of expressions that are no longer valid in SET because
2017 they are clobbered in BLOCK or because they trap and may not be executed. */
2019 static void
2020 prune_clobbered_mems (bitmap_set_t set, basic_block block)
2022 bitmap_iterator bi;
2023 unsigned i;
2024 pre_expr to_remove = NULL;
2026 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
2028 /* Remove queued expr. */
2029 if (to_remove)
2031 bitmap_remove_from_set (set, to_remove);
2032 to_remove = NULL;
2035 pre_expr expr = expression_for_id (i);
2036 if (expr->kind == REFERENCE)
2038 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2039 if (ref->vuse)
2041 gimple *def_stmt = SSA_NAME_DEF_STMT (ref->vuse);
2042 if (!gimple_nop_p (def_stmt)
2043 && ((gimple_bb (def_stmt) != block
2044 && !dominated_by_p (CDI_DOMINATORS,
2045 block, gimple_bb (def_stmt)))
2046 || (gimple_bb (def_stmt) == block
2047 && value_dies_in_block_x (expr, block))))
2048 to_remove = expr;
2051 else if (expr->kind == NARY)
2053 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2054 /* If the NARY may trap make sure the block does not contain
2055 a possible exit point.
2056 ??? This is overly conservative if we translate AVAIL_OUT
2057 as the available expression might be after the exit point. */
2058 if (BB_MAY_NOTRETURN (block)
2059 && vn_nary_may_trap (nary))
2060 to_remove = expr;
2064 /* Remove queued expr. */
2065 if (to_remove)
2066 bitmap_remove_from_set (set, to_remove);
2069 static sbitmap has_abnormal_preds;
2071 /* Compute the ANTIC set for BLOCK.
2073 If succs(BLOCK) > 1 then
2074 ANTIC_OUT[BLOCK] = intersection of ANTIC_IN[b] for all succ(BLOCK)
2075 else if succs(BLOCK) == 1 then
2076 ANTIC_OUT[BLOCK] = phi_translate (ANTIC_IN[succ(BLOCK)])
2078 ANTIC_IN[BLOCK] = clean(ANTIC_OUT[BLOCK] U EXP_GEN[BLOCK] - TMP_GEN[BLOCK])
2081 static bool
2082 compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge)
2084 bool changed = false;
2085 bitmap_set_t S, old, ANTIC_OUT;
2086 bitmap_iterator bi;
2087 unsigned int bii;
2088 edge e;
2089 edge_iterator ei;
2090 bool was_visited = BB_VISITED (block);
2092 old = ANTIC_OUT = S = NULL;
2093 BB_VISITED (block) = 1;
2095 /* If any edges from predecessors are abnormal, antic_in is empty,
2096 so do nothing. */
2097 if (block_has_abnormal_pred_edge)
2098 goto maybe_dump_sets;
2100 old = ANTIC_IN (block);
2101 ANTIC_OUT = bitmap_set_new ();
2103 /* If the block has no successors, ANTIC_OUT is empty. */
2104 if (EDGE_COUNT (block->succs) == 0)
2106 /* If we have one successor, we could have some phi nodes to
2107 translate through. */
2108 else if (single_succ_p (block))
2110 basic_block succ_bb = single_succ (block);
2111 gcc_assert (BB_VISITED (succ_bb));
2112 phi_translate_set (ANTIC_OUT, ANTIC_IN (succ_bb), block, succ_bb);
2114 /* If we have multiple successors, we take the intersection of all of
2115 them. Note that in the case of loop exit phi nodes, we may have
2116 phis to translate through. */
2117 else
2119 size_t i;
2120 basic_block bprime, first = NULL;
2122 auto_vec<basic_block> worklist (EDGE_COUNT (block->succs));
2123 FOR_EACH_EDGE (e, ei, block->succs)
2125 if (!first
2126 && BB_VISITED (e->dest))
2127 first = e->dest;
2128 else if (BB_VISITED (e->dest))
2129 worklist.quick_push (e->dest);
2130 else
2132 /* Unvisited successors get their ANTIC_IN replaced by the
2133 maximal set to arrive at a maximum ANTIC_IN solution.
2134 We can ignore them in the intersection operation and thus
2135 need not explicitely represent that maximum solution. */
2136 if (dump_file && (dump_flags & TDF_DETAILS))
2137 fprintf (dump_file, "ANTIC_IN is MAX on %d->%d\n",
2138 e->src->index, e->dest->index);
2142 /* Of multiple successors we have to have visited one already
2143 which is guaranteed by iteration order. */
2144 gcc_assert (first != NULL);
2146 phi_translate_set (ANTIC_OUT, ANTIC_IN (first), block, first);
2148 FOR_EACH_VEC_ELT (worklist, i, bprime)
2150 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2152 bitmap_set_t tmp = bitmap_set_new ();
2153 phi_translate_set (tmp, ANTIC_IN (bprime), block, bprime);
2154 bitmap_set_and (ANTIC_OUT, tmp);
2155 bitmap_set_free (tmp);
2157 else
2158 bitmap_set_and (ANTIC_OUT, ANTIC_IN (bprime));
2162 /* Prune expressions that are clobbered in block and thus become
2163 invalid if translated from ANTIC_OUT to ANTIC_IN. */
2164 prune_clobbered_mems (ANTIC_OUT, block);
2166 /* Generate ANTIC_OUT - TMP_GEN. */
2167 S = bitmap_set_subtract (ANTIC_OUT, TMP_GEN (block));
2169 /* Start ANTIC_IN with EXP_GEN - TMP_GEN. */
2170 ANTIC_IN (block) = bitmap_set_subtract (EXP_GEN (block),
2171 TMP_GEN (block));
2173 /* Then union in the ANTIC_OUT - TMP_GEN values,
2174 to get ANTIC_OUT U EXP_GEN - TMP_GEN */
2175 FOR_EACH_EXPR_ID_IN_SET (S, bii, bi)
2176 bitmap_value_insert_into_set (ANTIC_IN (block),
2177 expression_for_id (bii));
2179 clean (ANTIC_IN (block));
2181 if (!was_visited || !bitmap_set_equal (old, ANTIC_IN (block)))
2182 changed = true;
2184 maybe_dump_sets:
2185 if (dump_file && (dump_flags & TDF_DETAILS))
2187 if (ANTIC_OUT)
2188 print_bitmap_set (dump_file, ANTIC_OUT, "ANTIC_OUT", block->index);
2190 if (changed)
2191 fprintf (dump_file, "[changed] ");
2192 print_bitmap_set (dump_file, ANTIC_IN (block), "ANTIC_IN",
2193 block->index);
2195 if (S)
2196 print_bitmap_set (dump_file, S, "S", block->index);
2198 if (old)
2199 bitmap_set_free (old);
2200 if (S)
2201 bitmap_set_free (S);
2202 if (ANTIC_OUT)
2203 bitmap_set_free (ANTIC_OUT);
2204 return changed;
2207 /* Compute PARTIAL_ANTIC for BLOCK.
2209 If succs(BLOCK) > 1 then
2210 PA_OUT[BLOCK] = value wise union of PA_IN[b] + all ANTIC_IN not
2211 in ANTIC_OUT for all succ(BLOCK)
2212 else if succs(BLOCK) == 1 then
2213 PA_OUT[BLOCK] = phi_translate (PA_IN[succ(BLOCK)])
2215 PA_IN[BLOCK] = dependent_clean(PA_OUT[BLOCK] - TMP_GEN[BLOCK]
2216 - ANTIC_IN[BLOCK])
2219 static void
2220 compute_partial_antic_aux (basic_block block,
2221 bool block_has_abnormal_pred_edge)
2223 bitmap_set_t old_PA_IN;
2224 bitmap_set_t PA_OUT;
2225 edge e;
2226 edge_iterator ei;
2227 unsigned long max_pa = PARAM_VALUE (PARAM_MAX_PARTIAL_ANTIC_LENGTH);
2229 old_PA_IN = PA_OUT = NULL;
2231 /* If any edges from predecessors are abnormal, antic_in is empty,
2232 so do nothing. */
2233 if (block_has_abnormal_pred_edge)
2234 goto maybe_dump_sets;
2236 /* If there are too many partially anticipatable values in the
2237 block, phi_translate_set can take an exponential time: stop
2238 before the translation starts. */
2239 if (max_pa
2240 && single_succ_p (block)
2241 && bitmap_count_bits (&PA_IN (single_succ (block))->values) > max_pa)
2242 goto maybe_dump_sets;
2244 old_PA_IN = PA_IN (block);
2245 PA_OUT = bitmap_set_new ();
2247 /* If the block has no successors, ANTIC_OUT is empty. */
2248 if (EDGE_COUNT (block->succs) == 0)
2250 /* If we have one successor, we could have some phi nodes to
2251 translate through. Note that we can't phi translate across DFS
2252 back edges in partial antic, because it uses a union operation on
2253 the successors. For recurrences like IV's, we will end up
2254 generating a new value in the set on each go around (i + 3 (VH.1)
2255 VH.1 + 1 (VH.2), VH.2 + 1 (VH.3), etc), forever. */
2256 else if (single_succ_p (block))
2258 basic_block succ = single_succ (block);
2259 if (!(single_succ_edge (block)->flags & EDGE_DFS_BACK))
2260 phi_translate_set (PA_OUT, PA_IN (succ), block, succ);
2262 /* If we have multiple successors, we take the union of all of
2263 them. */
2264 else
2266 size_t i;
2267 basic_block bprime;
2269 auto_vec<basic_block> worklist (EDGE_COUNT (block->succs));
2270 FOR_EACH_EDGE (e, ei, block->succs)
2272 if (e->flags & EDGE_DFS_BACK)
2273 continue;
2274 worklist.quick_push (e->dest);
2276 if (worklist.length () > 0)
2278 FOR_EACH_VEC_ELT (worklist, i, bprime)
2280 unsigned int i;
2281 bitmap_iterator bi;
2283 FOR_EACH_EXPR_ID_IN_SET (ANTIC_IN (bprime), i, bi)
2284 bitmap_value_insert_into_set (PA_OUT,
2285 expression_for_id (i));
2286 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2288 bitmap_set_t pa_in = bitmap_set_new ();
2289 phi_translate_set (pa_in, PA_IN (bprime), block, bprime);
2290 FOR_EACH_EXPR_ID_IN_SET (pa_in, i, bi)
2291 bitmap_value_insert_into_set (PA_OUT,
2292 expression_for_id (i));
2293 bitmap_set_free (pa_in);
2295 else
2296 FOR_EACH_EXPR_ID_IN_SET (PA_IN (bprime), i, bi)
2297 bitmap_value_insert_into_set (PA_OUT,
2298 expression_for_id (i));
2303 /* Prune expressions that are clobbered in block and thus become
2304 invalid if translated from PA_OUT to PA_IN. */
2305 prune_clobbered_mems (PA_OUT, block);
2307 /* PA_IN starts with PA_OUT - TMP_GEN.
2308 Then we subtract things from ANTIC_IN. */
2309 PA_IN (block) = bitmap_set_subtract (PA_OUT, TMP_GEN (block));
2311 /* For partial antic, we want to put back in the phi results, since
2312 we will properly avoid making them partially antic over backedges. */
2313 bitmap_ior_into (&PA_IN (block)->values, &PHI_GEN (block)->values);
2314 bitmap_ior_into (&PA_IN (block)->expressions, &PHI_GEN (block)->expressions);
2316 /* PA_IN[block] = PA_IN[block] - ANTIC_IN[block] */
2317 bitmap_set_subtract_values (PA_IN (block), ANTIC_IN (block));
2319 dependent_clean (PA_IN (block), ANTIC_IN (block));
2321 maybe_dump_sets:
2322 if (dump_file && (dump_flags & TDF_DETAILS))
2324 if (PA_OUT)
2325 print_bitmap_set (dump_file, PA_OUT, "PA_OUT", block->index);
2327 print_bitmap_set (dump_file, PA_IN (block), "PA_IN", block->index);
2329 if (old_PA_IN)
2330 bitmap_set_free (old_PA_IN);
2331 if (PA_OUT)
2332 bitmap_set_free (PA_OUT);
2335 /* Compute ANTIC and partial ANTIC sets. */
2337 static void
2338 compute_antic (void)
2340 bool changed = true;
2341 int num_iterations = 0;
2342 basic_block block;
2343 int i;
2344 edge_iterator ei;
2345 edge e;
2347 /* If any predecessor edges are abnormal, we punt, so antic_in is empty.
2348 We pre-build the map of blocks with incoming abnormal edges here. */
2349 has_abnormal_preds = sbitmap_alloc (last_basic_block_for_fn (cfun));
2350 bitmap_clear (has_abnormal_preds);
2352 FOR_ALL_BB_FN (block, cfun)
2354 BB_VISITED (block) = 0;
2356 FOR_EACH_EDGE (e, ei, block->preds)
2357 if (e->flags & EDGE_ABNORMAL)
2359 bitmap_set_bit (has_abnormal_preds, block->index);
2361 /* We also anticipate nothing. */
2362 BB_VISITED (block) = 1;
2363 break;
2366 /* While we are here, give empty ANTIC_IN sets to each block. */
2367 ANTIC_IN (block) = bitmap_set_new ();
2368 if (do_partial_partial)
2369 PA_IN (block) = bitmap_set_new ();
2372 /* At the exit block we anticipate nothing. */
2373 BB_VISITED (EXIT_BLOCK_PTR_FOR_FN (cfun)) = 1;
2375 /* For ANTIC computation we need a postorder that also guarantees that
2376 a block with a single successor is visited after its successor.
2377 RPO on the inverted CFG has this property. */
2378 auto_vec<int, 20> postorder;
2379 inverted_post_order_compute (&postorder);
2381 auto_sbitmap worklist (last_basic_block_for_fn (cfun) + 1);
2382 bitmap_ones (worklist);
2383 while (changed)
2385 if (dump_file && (dump_flags & TDF_DETAILS))
2386 fprintf (dump_file, "Starting iteration %d\n", num_iterations);
2387 /* ??? We need to clear our PHI translation cache here as the
2388 ANTIC sets shrink and we restrict valid translations to
2389 those having operands with leaders in ANTIC. Same below
2390 for PA ANTIC computation. */
2391 num_iterations++;
2392 changed = false;
2393 for (i = postorder.length () - 1; i >= 0; i--)
2395 if (bitmap_bit_p (worklist, postorder[i]))
2397 basic_block block = BASIC_BLOCK_FOR_FN (cfun, postorder[i]);
2398 bitmap_clear_bit (worklist, block->index);
2399 if (compute_antic_aux (block,
2400 bitmap_bit_p (has_abnormal_preds,
2401 block->index)))
2403 FOR_EACH_EDGE (e, ei, block->preds)
2404 bitmap_set_bit (worklist, e->src->index);
2405 changed = true;
2409 /* Theoretically possible, but *highly* unlikely. */
2410 gcc_checking_assert (num_iterations < 500);
2413 statistics_histogram_event (cfun, "compute_antic iterations",
2414 num_iterations);
2416 if (do_partial_partial)
2418 /* For partial antic we ignore backedges and thus we do not need
2419 to perform any iteration when we process blocks in postorder. */
2420 int postorder_num = pre_and_rev_post_order_compute (NULL, postorder.address (), false);
2421 for (i = postorder_num - 1 ; i >= 0; i--)
2423 basic_block block = BASIC_BLOCK_FOR_FN (cfun, postorder[i]);
2424 compute_partial_antic_aux (block,
2425 bitmap_bit_p (has_abnormal_preds,
2426 block->index));
2430 sbitmap_free (has_abnormal_preds);
2434 /* Inserted expressions are placed onto this worklist, which is used
2435 for performing quick dead code elimination of insertions we made
2436 that didn't turn out to be necessary. */
2437 static bitmap inserted_exprs;
2439 /* The actual worker for create_component_ref_by_pieces. */
2441 static tree
2442 create_component_ref_by_pieces_1 (basic_block block, vn_reference_t ref,
2443 unsigned int *operand, gimple_seq *stmts)
2445 vn_reference_op_t currop = &ref->operands[*operand];
2446 tree genop;
2447 ++*operand;
2448 switch (currop->opcode)
2450 case CALL_EXPR:
2451 gcc_unreachable ();
2453 case MEM_REF:
2455 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2456 stmts);
2457 if (!baseop)
2458 return NULL_TREE;
2459 tree offset = currop->op0;
2460 if (TREE_CODE (baseop) == ADDR_EXPR
2461 && handled_component_p (TREE_OPERAND (baseop, 0)))
2463 HOST_WIDE_INT off;
2464 tree base;
2465 base = get_addr_base_and_unit_offset (TREE_OPERAND (baseop, 0),
2466 &off);
2467 gcc_assert (base);
2468 offset = int_const_binop (PLUS_EXPR, offset,
2469 build_int_cst (TREE_TYPE (offset),
2470 off));
2471 baseop = build_fold_addr_expr (base);
2473 genop = build2 (MEM_REF, currop->type, baseop, offset);
2474 MR_DEPENDENCE_CLIQUE (genop) = currop->clique;
2475 MR_DEPENDENCE_BASE (genop) = currop->base;
2476 REF_REVERSE_STORAGE_ORDER (genop) = currop->reverse;
2477 return genop;
2480 case TARGET_MEM_REF:
2482 tree genop0 = NULL_TREE, genop1 = NULL_TREE;
2483 vn_reference_op_t nextop = &ref->operands[++*operand];
2484 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2485 stmts);
2486 if (!baseop)
2487 return NULL_TREE;
2488 if (currop->op0)
2490 genop0 = find_or_generate_expression (block, currop->op0, stmts);
2491 if (!genop0)
2492 return NULL_TREE;
2494 if (nextop->op0)
2496 genop1 = find_or_generate_expression (block, nextop->op0, stmts);
2497 if (!genop1)
2498 return NULL_TREE;
2500 genop = build5 (TARGET_MEM_REF, currop->type,
2501 baseop, currop->op2, genop0, currop->op1, genop1);
2503 MR_DEPENDENCE_CLIQUE (genop) = currop->clique;
2504 MR_DEPENDENCE_BASE (genop) = currop->base;
2505 return genop;
2508 case ADDR_EXPR:
2509 if (currop->op0)
2511 gcc_assert (is_gimple_min_invariant (currop->op0));
2512 return currop->op0;
2514 /* Fallthrough. */
2515 case REALPART_EXPR:
2516 case IMAGPART_EXPR:
2517 case VIEW_CONVERT_EXPR:
2519 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2520 stmts);
2521 if (!genop0)
2522 return NULL_TREE;
2523 return fold_build1 (currop->opcode, currop->type, genop0);
2526 case WITH_SIZE_EXPR:
2528 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2529 stmts);
2530 if (!genop0)
2531 return NULL_TREE;
2532 tree genop1 = find_or_generate_expression (block, currop->op0, stmts);
2533 if (!genop1)
2534 return NULL_TREE;
2535 return fold_build2 (currop->opcode, currop->type, genop0, genop1);
2538 case BIT_FIELD_REF:
2540 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2541 stmts);
2542 if (!genop0)
2543 return NULL_TREE;
2544 tree op1 = currop->op0;
2545 tree op2 = currop->op1;
2546 tree t = build3 (BIT_FIELD_REF, currop->type, genop0, op1, op2);
2547 REF_REVERSE_STORAGE_ORDER (t) = currop->reverse;
2548 return fold (t);
2551 /* For array ref vn_reference_op's, operand 1 of the array ref
2552 is op0 of the reference op and operand 3 of the array ref is
2553 op1. */
2554 case ARRAY_RANGE_REF:
2555 case ARRAY_REF:
2557 tree genop0;
2558 tree genop1 = currop->op0;
2559 tree genop2 = currop->op1;
2560 tree genop3 = currop->op2;
2561 genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2562 stmts);
2563 if (!genop0)
2564 return NULL_TREE;
2565 genop1 = find_or_generate_expression (block, genop1, stmts);
2566 if (!genop1)
2567 return NULL_TREE;
2568 if (genop2)
2570 tree domain_type = TYPE_DOMAIN (TREE_TYPE (genop0));
2571 /* Drop zero minimum index if redundant. */
2572 if (integer_zerop (genop2)
2573 && (!domain_type
2574 || integer_zerop (TYPE_MIN_VALUE (domain_type))))
2575 genop2 = NULL_TREE;
2576 else
2578 genop2 = find_or_generate_expression (block, genop2, stmts);
2579 if (!genop2)
2580 return NULL_TREE;
2583 if (genop3)
2585 tree elmt_type = TREE_TYPE (TREE_TYPE (genop0));
2586 /* We can't always put a size in units of the element alignment
2587 here as the element alignment may be not visible. See
2588 PR43783. Simply drop the element size for constant
2589 sizes. */
2590 if (TREE_CODE (genop3) == INTEGER_CST
2591 && TREE_CODE (TYPE_SIZE_UNIT (elmt_type)) == INTEGER_CST
2592 && wi::eq_p (wi::to_offset (TYPE_SIZE_UNIT (elmt_type)),
2593 (wi::to_offset (genop3)
2594 * vn_ref_op_align_unit (currop))))
2595 genop3 = NULL_TREE;
2596 else
2598 genop3 = find_or_generate_expression (block, genop3, stmts);
2599 if (!genop3)
2600 return NULL_TREE;
2603 return build4 (currop->opcode, currop->type, genop0, genop1,
2604 genop2, genop3);
2606 case COMPONENT_REF:
2608 tree op0;
2609 tree op1;
2610 tree genop2 = currop->op1;
2611 op0 = create_component_ref_by_pieces_1 (block, ref, operand, stmts);
2612 if (!op0)
2613 return NULL_TREE;
2614 /* op1 should be a FIELD_DECL, which are represented by themselves. */
2615 op1 = currop->op0;
2616 if (genop2)
2618 genop2 = find_or_generate_expression (block, genop2, stmts);
2619 if (!genop2)
2620 return NULL_TREE;
2622 return fold_build3 (COMPONENT_REF, TREE_TYPE (op1), op0, op1, genop2);
2625 case SSA_NAME:
2627 genop = find_or_generate_expression (block, currop->op0, stmts);
2628 return genop;
2630 case STRING_CST:
2631 case INTEGER_CST:
2632 case COMPLEX_CST:
2633 case VECTOR_CST:
2634 case REAL_CST:
2635 case CONSTRUCTOR:
2636 case VAR_DECL:
2637 case PARM_DECL:
2638 case CONST_DECL:
2639 case RESULT_DECL:
2640 case FUNCTION_DECL:
2641 return currop->op0;
2643 default:
2644 gcc_unreachable ();
2648 /* For COMPONENT_REF's and ARRAY_REF's, we can't have any intermediates for the
2649 COMPONENT_REF or MEM_REF or ARRAY_REF portion, because we'd end up with
2650 trying to rename aggregates into ssa form directly, which is a no no.
2652 Thus, this routine doesn't create temporaries, it just builds a
2653 single access expression for the array, calling
2654 find_or_generate_expression to build the innermost pieces.
2656 This function is a subroutine of create_expression_by_pieces, and
2657 should not be called on it's own unless you really know what you
2658 are doing. */
2660 static tree
2661 create_component_ref_by_pieces (basic_block block, vn_reference_t ref,
2662 gimple_seq *stmts)
2664 unsigned int op = 0;
2665 return create_component_ref_by_pieces_1 (block, ref, &op, stmts);
2668 /* Find a simple leader for an expression, or generate one using
2669 create_expression_by_pieces from a NARY expression for the value.
2670 BLOCK is the basic_block we are looking for leaders in.
2671 OP is the tree expression to find a leader for or generate.
2672 Returns the leader or NULL_TREE on failure. */
2674 static tree
2675 find_or_generate_expression (basic_block block, tree op, gimple_seq *stmts)
2677 pre_expr expr = get_or_alloc_expr_for (op);
2678 unsigned int lookfor = get_expr_value_id (expr);
2679 pre_expr leader = bitmap_find_leader (AVAIL_OUT (block), lookfor);
2680 if (leader)
2682 if (leader->kind == NAME)
2683 return PRE_EXPR_NAME (leader);
2684 else if (leader->kind == CONSTANT)
2685 return PRE_EXPR_CONSTANT (leader);
2687 /* Defer. */
2688 return NULL_TREE;
2691 /* It must be a complex expression, so generate it recursively. Note
2692 that this is only necessary to handle gcc.dg/tree-ssa/ssa-pre28.c
2693 where the insert algorithm fails to insert a required expression. */
2694 bitmap exprset = value_expressions[lookfor];
2695 bitmap_iterator bi;
2696 unsigned int i;
2697 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
2699 pre_expr temp = expression_for_id (i);
2700 /* We cannot insert random REFERENCE expressions at arbitrary
2701 places. We can insert NARYs which eventually re-materializes
2702 its operand values. */
2703 if (temp->kind == NARY)
2704 return create_expression_by_pieces (block, temp, stmts,
2705 get_expr_type (expr));
2708 /* Defer. */
2709 return NULL_TREE;
2712 #define NECESSARY GF_PLF_1
2714 /* Create an expression in pieces, so that we can handle very complex
2715 expressions that may be ANTIC, but not necessary GIMPLE.
2716 BLOCK is the basic block the expression will be inserted into,
2717 EXPR is the expression to insert (in value form)
2718 STMTS is a statement list to append the necessary insertions into.
2720 This function will die if we hit some value that shouldn't be
2721 ANTIC but is (IE there is no leader for it, or its components).
2722 The function returns NULL_TREE in case a different antic expression
2723 has to be inserted first.
2724 This function may also generate expressions that are themselves
2725 partially or fully redundant. Those that are will be either made
2726 fully redundant during the next iteration of insert (for partially
2727 redundant ones), or eliminated by eliminate (for fully redundant
2728 ones). */
2730 static tree
2731 create_expression_by_pieces (basic_block block, pre_expr expr,
2732 gimple_seq *stmts, tree type)
2734 tree name;
2735 tree folded;
2736 gimple_seq forced_stmts = NULL;
2737 unsigned int value_id;
2738 gimple_stmt_iterator gsi;
2739 tree exprtype = type ? type : get_expr_type (expr);
2740 pre_expr nameexpr;
2741 gassign *newstmt;
2743 switch (expr->kind)
2745 /* We may hit the NAME/CONSTANT case if we have to convert types
2746 that value numbering saw through. */
2747 case NAME:
2748 folded = PRE_EXPR_NAME (expr);
2749 if (useless_type_conversion_p (exprtype, TREE_TYPE (folded)))
2750 return folded;
2751 break;
2752 case CONSTANT:
2754 folded = PRE_EXPR_CONSTANT (expr);
2755 tree tem = fold_convert (exprtype, folded);
2756 if (is_gimple_min_invariant (tem))
2757 return tem;
2758 break;
2760 case REFERENCE:
2761 if (PRE_EXPR_REFERENCE (expr)->operands[0].opcode == CALL_EXPR)
2763 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2764 unsigned int operand = 1;
2765 vn_reference_op_t currop = &ref->operands[0];
2766 tree sc = NULL_TREE;
2767 tree fn;
2768 if (TREE_CODE (currop->op0) == FUNCTION_DECL)
2769 fn = currop->op0;
2770 else
2771 fn = find_or_generate_expression (block, currop->op0, stmts);
2772 if (!fn)
2773 return NULL_TREE;
2774 if (currop->op1)
2776 sc = find_or_generate_expression (block, currop->op1, stmts);
2777 if (!sc)
2778 return NULL_TREE;
2780 auto_vec<tree> args (ref->operands.length () - 1);
2781 while (operand < ref->operands.length ())
2783 tree arg = create_component_ref_by_pieces_1 (block, ref,
2784 &operand, stmts);
2785 if (!arg)
2786 return NULL_TREE;
2787 args.quick_push (arg);
2789 gcall *call
2790 = gimple_build_call_vec ((TREE_CODE (fn) == FUNCTION_DECL
2791 ? build_fold_addr_expr (fn) : fn), args);
2792 gimple_call_set_with_bounds (call, currop->with_bounds);
2793 if (sc)
2794 gimple_call_set_chain (call, sc);
2795 tree forcedname = make_ssa_name (currop->type);
2796 gimple_call_set_lhs (call, forcedname);
2797 gimple_set_vuse (call, BB_LIVE_VOP_ON_EXIT (block));
2798 gimple_seq_add_stmt_without_update (&forced_stmts, call);
2799 folded = forcedname;
2801 else
2803 folded = create_component_ref_by_pieces (block,
2804 PRE_EXPR_REFERENCE (expr),
2805 stmts);
2806 if (!folded)
2807 return NULL_TREE;
2808 name = make_temp_ssa_name (exprtype, NULL, "pretmp");
2809 newstmt = gimple_build_assign (name, folded);
2810 gimple_seq_add_stmt_without_update (&forced_stmts, newstmt);
2811 gimple_set_vuse (newstmt, BB_LIVE_VOP_ON_EXIT (block));
2812 folded = name;
2814 break;
2815 case NARY:
2817 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2818 tree *genop = XALLOCAVEC (tree, nary->length);
2819 unsigned i;
2820 for (i = 0; i < nary->length; ++i)
2822 genop[i] = find_or_generate_expression (block, nary->op[i], stmts);
2823 if (!genop[i])
2824 return NULL_TREE;
2825 /* Ensure genop[] is properly typed for POINTER_PLUS_EXPR. It
2826 may have conversions stripped. */
2827 if (nary->opcode == POINTER_PLUS_EXPR)
2829 if (i == 0)
2830 genop[i] = gimple_convert (&forced_stmts,
2831 nary->type, genop[i]);
2832 else if (i == 1)
2833 genop[i] = gimple_convert (&forced_stmts,
2834 sizetype, genop[i]);
2836 else
2837 genop[i] = gimple_convert (&forced_stmts,
2838 TREE_TYPE (nary->op[i]), genop[i]);
2840 if (nary->opcode == CONSTRUCTOR)
2842 vec<constructor_elt, va_gc> *elts = NULL;
2843 for (i = 0; i < nary->length; ++i)
2844 CONSTRUCTOR_APPEND_ELT (elts, NULL_TREE, genop[i]);
2845 folded = build_constructor (nary->type, elts);
2846 name = make_temp_ssa_name (exprtype, NULL, "pretmp");
2847 newstmt = gimple_build_assign (name, folded);
2848 gimple_seq_add_stmt_without_update (&forced_stmts, newstmt);
2849 folded = name;
2851 else
2853 switch (nary->length)
2855 case 1:
2856 folded = gimple_build (&forced_stmts, nary->opcode, nary->type,
2857 genop[0]);
2858 break;
2859 case 2:
2860 folded = gimple_build (&forced_stmts, nary->opcode, nary->type,
2861 genop[0], genop[1]);
2862 break;
2863 case 3:
2864 folded = gimple_build (&forced_stmts, nary->opcode, nary->type,
2865 genop[0], genop[1], genop[2]);
2866 break;
2867 default:
2868 gcc_unreachable ();
2872 break;
2873 default:
2874 gcc_unreachable ();
2877 folded = gimple_convert (&forced_stmts, exprtype, folded);
2879 /* If there is nothing to insert, return the simplified result. */
2880 if (gimple_seq_empty_p (forced_stmts))
2881 return folded;
2882 /* If we simplified to a constant return it and discard eventually
2883 built stmts. */
2884 if (is_gimple_min_invariant (folded))
2886 gimple_seq_discard (forced_stmts);
2887 return folded;
2889 /* Likewise if we simplified to sth not queued for insertion. */
2890 bool found = false;
2891 gsi = gsi_last (forced_stmts);
2892 for (; !gsi_end_p (gsi); gsi_prev (&gsi))
2894 gimple *stmt = gsi_stmt (gsi);
2895 tree forcedname = gimple_get_lhs (stmt);
2896 if (forcedname == folded)
2898 found = true;
2899 break;
2902 if (! found)
2904 gimple_seq_discard (forced_stmts);
2905 return folded;
2907 gcc_assert (TREE_CODE (folded) == SSA_NAME);
2909 /* If we have any intermediate expressions to the value sets, add them
2910 to the value sets and chain them in the instruction stream. */
2911 if (forced_stmts)
2913 gsi = gsi_start (forced_stmts);
2914 for (; !gsi_end_p (gsi); gsi_next (&gsi))
2916 gimple *stmt = gsi_stmt (gsi);
2917 tree forcedname = gimple_get_lhs (stmt);
2918 pre_expr nameexpr;
2920 if (forcedname != folded)
2922 VN_INFO_GET (forcedname)->valnum = forcedname;
2923 VN_INFO (forcedname)->value_id = get_next_value_id ();
2924 nameexpr = get_or_alloc_expr_for_name (forcedname);
2925 add_to_value (VN_INFO (forcedname)->value_id, nameexpr);
2926 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
2927 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
2930 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (forcedname));
2931 gimple_set_plf (stmt, NECESSARY, false);
2933 gimple_seq_add_seq (stmts, forced_stmts);
2936 name = folded;
2938 /* Fold the last statement. */
2939 gsi = gsi_last (*stmts);
2940 if (fold_stmt_inplace (&gsi))
2941 update_stmt (gsi_stmt (gsi));
2943 /* Add a value number to the temporary.
2944 The value may already exist in either NEW_SETS, or AVAIL_OUT, because
2945 we are creating the expression by pieces, and this particular piece of
2946 the expression may have been represented. There is no harm in replacing
2947 here. */
2948 value_id = get_expr_value_id (expr);
2949 VN_INFO_GET (name)->value_id = value_id;
2950 VN_INFO (name)->valnum = sccvn_valnum_from_value_id (value_id);
2951 if (VN_INFO (name)->valnum == NULL_TREE)
2952 VN_INFO (name)->valnum = name;
2953 gcc_assert (VN_INFO (name)->valnum != NULL_TREE);
2954 nameexpr = get_or_alloc_expr_for_name (name);
2955 add_to_value (value_id, nameexpr);
2956 if (NEW_SETS (block))
2957 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
2958 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
2960 pre_stats.insertions++;
2961 if (dump_file && (dump_flags & TDF_DETAILS))
2963 fprintf (dump_file, "Inserted ");
2964 print_gimple_stmt (dump_file, gsi_stmt (gsi_last (*stmts)), 0);
2965 fprintf (dump_file, " in predecessor %d (%04d)\n",
2966 block->index, value_id);
2969 return name;
2973 /* Insert the to-be-made-available values of expression EXPRNUM for each
2974 predecessor, stored in AVAIL, into the predecessors of BLOCK, and
2975 merge the result with a phi node, given the same value number as
2976 NODE. Return true if we have inserted new stuff. */
2978 static bool
2979 insert_into_preds_of_block (basic_block block, unsigned int exprnum,
2980 vec<pre_expr> avail)
2982 pre_expr expr = expression_for_id (exprnum);
2983 pre_expr newphi;
2984 unsigned int val = get_expr_value_id (expr);
2985 edge pred;
2986 bool insertions = false;
2987 bool nophi = false;
2988 basic_block bprime;
2989 pre_expr eprime;
2990 edge_iterator ei;
2991 tree type = get_expr_type (expr);
2992 tree temp;
2993 gphi *phi;
2995 /* Make sure we aren't creating an induction variable. */
2996 if (bb_loop_depth (block) > 0 && EDGE_COUNT (block->preds) == 2)
2998 bool firstinsideloop = false;
2999 bool secondinsideloop = false;
3000 firstinsideloop = flow_bb_inside_loop_p (block->loop_father,
3001 EDGE_PRED (block, 0)->src);
3002 secondinsideloop = flow_bb_inside_loop_p (block->loop_father,
3003 EDGE_PRED (block, 1)->src);
3004 /* Induction variables only have one edge inside the loop. */
3005 if ((firstinsideloop ^ secondinsideloop)
3006 && expr->kind != REFERENCE)
3008 if (dump_file && (dump_flags & TDF_DETAILS))
3009 fprintf (dump_file, "Skipping insertion of phi for partial redundancy: Looks like an induction variable\n");
3010 nophi = true;
3014 /* Make the necessary insertions. */
3015 FOR_EACH_EDGE (pred, ei, block->preds)
3017 gimple_seq stmts = NULL;
3018 tree builtexpr;
3019 bprime = pred->src;
3020 eprime = avail[pred->dest_idx];
3021 builtexpr = create_expression_by_pieces (bprime, eprime,
3022 &stmts, type);
3023 gcc_assert (!(pred->flags & EDGE_ABNORMAL));
3024 if (!gimple_seq_empty_p (stmts))
3026 gsi_insert_seq_on_edge (pred, stmts);
3027 insertions = true;
3029 if (!builtexpr)
3031 /* We cannot insert a PHI node if we failed to insert
3032 on one edge. */
3033 nophi = true;
3034 continue;
3036 if (is_gimple_min_invariant (builtexpr))
3037 avail[pred->dest_idx] = get_or_alloc_expr_for_constant (builtexpr);
3038 else
3039 avail[pred->dest_idx] = get_or_alloc_expr_for_name (builtexpr);
3041 /* If we didn't want a phi node, and we made insertions, we still have
3042 inserted new stuff, and thus return true. If we didn't want a phi node,
3043 and didn't make insertions, we haven't added anything new, so return
3044 false. */
3045 if (nophi && insertions)
3046 return true;
3047 else if (nophi && !insertions)
3048 return false;
3050 /* Now build a phi for the new variable. */
3051 temp = make_temp_ssa_name (type, NULL, "prephitmp");
3052 phi = create_phi_node (temp, block);
3054 gimple_set_plf (phi, NECESSARY, false);
3055 VN_INFO_GET (temp)->value_id = val;
3056 VN_INFO (temp)->valnum = sccvn_valnum_from_value_id (val);
3057 if (VN_INFO (temp)->valnum == NULL_TREE)
3058 VN_INFO (temp)->valnum = temp;
3059 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (temp));
3060 FOR_EACH_EDGE (pred, ei, block->preds)
3062 pre_expr ae = avail[pred->dest_idx];
3063 gcc_assert (get_expr_type (ae) == type
3064 || useless_type_conversion_p (type, get_expr_type (ae)));
3065 if (ae->kind == CONSTANT)
3066 add_phi_arg (phi, unshare_expr (PRE_EXPR_CONSTANT (ae)),
3067 pred, UNKNOWN_LOCATION);
3068 else
3069 add_phi_arg (phi, PRE_EXPR_NAME (ae), pred, UNKNOWN_LOCATION);
3072 newphi = get_or_alloc_expr_for_name (temp);
3073 add_to_value (val, newphi);
3075 /* The value should *not* exist in PHI_GEN, or else we wouldn't be doing
3076 this insertion, since we test for the existence of this value in PHI_GEN
3077 before proceeding with the partial redundancy checks in insert_aux.
3079 The value may exist in AVAIL_OUT, in particular, it could be represented
3080 by the expression we are trying to eliminate, in which case we want the
3081 replacement to occur. If it's not existing in AVAIL_OUT, we want it
3082 inserted there.
3084 Similarly, to the PHI_GEN case, the value should not exist in NEW_SETS of
3085 this block, because if it did, it would have existed in our dominator's
3086 AVAIL_OUT, and would have been skipped due to the full redundancy check.
3089 bitmap_insert_into_set (PHI_GEN (block), newphi);
3090 bitmap_value_replace_in_set (AVAIL_OUT (block),
3091 newphi);
3092 bitmap_insert_into_set (NEW_SETS (block),
3093 newphi);
3095 /* If we insert a PHI node for a conversion of another PHI node
3096 in the same basic-block try to preserve range information.
3097 This is important so that followup loop passes receive optimal
3098 number of iteration analysis results. See PR61743. */
3099 if (expr->kind == NARY
3100 && CONVERT_EXPR_CODE_P (expr->u.nary->opcode)
3101 && TREE_CODE (expr->u.nary->op[0]) == SSA_NAME
3102 && gimple_bb (SSA_NAME_DEF_STMT (expr->u.nary->op[0])) == block
3103 && INTEGRAL_TYPE_P (type)
3104 && INTEGRAL_TYPE_P (TREE_TYPE (expr->u.nary->op[0]))
3105 && (TYPE_PRECISION (type)
3106 >= TYPE_PRECISION (TREE_TYPE (expr->u.nary->op[0])))
3107 && SSA_NAME_RANGE_INFO (expr->u.nary->op[0]))
3109 wide_int min, max;
3110 if (get_range_info (expr->u.nary->op[0], &min, &max) == VR_RANGE
3111 && !wi::neg_p (min, SIGNED)
3112 && !wi::neg_p (max, SIGNED))
3113 /* Just handle extension and sign-changes of all-positive ranges. */
3114 set_range_info (temp,
3115 SSA_NAME_RANGE_TYPE (expr->u.nary->op[0]),
3116 wide_int_storage::from (min, TYPE_PRECISION (type),
3117 TYPE_SIGN (type)),
3118 wide_int_storage::from (max, TYPE_PRECISION (type),
3119 TYPE_SIGN (type)));
3122 if (dump_file && (dump_flags & TDF_DETAILS))
3124 fprintf (dump_file, "Created phi ");
3125 print_gimple_stmt (dump_file, phi, 0);
3126 fprintf (dump_file, " in block %d (%04d)\n", block->index, val);
3128 pre_stats.phis++;
3129 return true;
3134 /* Perform insertion of partially redundant or hoistable values.
3135 For BLOCK, do the following:
3136 1. Propagate the NEW_SETS of the dominator into the current block.
3137 If the block has multiple predecessors,
3138 2a. Iterate over the ANTIC expressions for the block to see if
3139 any of them are partially redundant.
3140 2b. If so, insert them into the necessary predecessors to make
3141 the expression fully redundant.
3142 2c. Insert a new PHI merging the values of the predecessors.
3143 2d. Insert the new PHI, and the new expressions, into the
3144 NEW_SETS set.
3145 If the block has multiple successors,
3146 3a. Iterate over the ANTIC values for the block to see if
3147 any of them are good candidates for hoisting.
3148 3b. If so, insert expressions computing the values in BLOCK,
3149 and add the new expressions into the NEW_SETS set.
3150 4. Recursively call ourselves on the dominator children of BLOCK.
3152 Steps 1, 2a, and 4 are done by insert_aux. 2b, 2c and 2d are done by
3153 do_pre_regular_insertion and do_partial_insertion. 3a and 3b are
3154 done in do_hoist_insertion.
3157 static bool
3158 do_pre_regular_insertion (basic_block block, basic_block dom)
3160 bool new_stuff = false;
3161 vec<pre_expr> exprs;
3162 pre_expr expr;
3163 auto_vec<pre_expr> avail;
3164 int i;
3166 exprs = sorted_array_from_bitmap_set (ANTIC_IN (block));
3167 avail.safe_grow (EDGE_COUNT (block->preds));
3169 FOR_EACH_VEC_ELT (exprs, i, expr)
3171 if (expr->kind == NARY
3172 || expr->kind == REFERENCE)
3174 unsigned int val;
3175 bool by_some = false;
3176 bool cant_insert = false;
3177 bool all_same = true;
3178 pre_expr first_s = NULL;
3179 edge pred;
3180 basic_block bprime;
3181 pre_expr eprime = NULL;
3182 edge_iterator ei;
3183 pre_expr edoubleprime = NULL;
3184 bool do_insertion = false;
3186 val = get_expr_value_id (expr);
3187 if (bitmap_set_contains_value (PHI_GEN (block), val))
3188 continue;
3189 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3191 if (dump_file && (dump_flags & TDF_DETAILS))
3193 fprintf (dump_file, "Found fully redundant value: ");
3194 print_pre_expr (dump_file, expr);
3195 fprintf (dump_file, "\n");
3197 continue;
3200 FOR_EACH_EDGE (pred, ei, block->preds)
3202 unsigned int vprime;
3204 /* We should never run insertion for the exit block
3205 and so not come across fake pred edges. */
3206 gcc_assert (!(pred->flags & EDGE_FAKE));
3207 bprime = pred->src;
3208 /* We are looking at ANTIC_OUT of bprime. */
3209 eprime = phi_translate (expr, ANTIC_IN (block), NULL,
3210 bprime, block);
3212 /* eprime will generally only be NULL if the
3213 value of the expression, translated
3214 through the PHI for this predecessor, is
3215 undefined. If that is the case, we can't
3216 make the expression fully redundant,
3217 because its value is undefined along a
3218 predecessor path. We can thus break out
3219 early because it doesn't matter what the
3220 rest of the results are. */
3221 if (eprime == NULL)
3223 avail[pred->dest_idx] = NULL;
3224 cant_insert = true;
3225 break;
3228 vprime = get_expr_value_id (eprime);
3229 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime),
3230 vprime);
3231 if (edoubleprime == NULL)
3233 avail[pred->dest_idx] = eprime;
3234 all_same = false;
3236 else
3238 avail[pred->dest_idx] = edoubleprime;
3239 by_some = true;
3240 /* We want to perform insertions to remove a redundancy on
3241 a path in the CFG we want to optimize for speed. */
3242 if (optimize_edge_for_speed_p (pred))
3243 do_insertion = true;
3244 if (first_s == NULL)
3245 first_s = edoubleprime;
3246 else if (!pre_expr_d::equal (first_s, edoubleprime))
3247 all_same = false;
3250 /* If we can insert it, it's not the same value
3251 already existing along every predecessor, and
3252 it's defined by some predecessor, it is
3253 partially redundant. */
3254 if (!cant_insert && !all_same && by_some)
3256 if (!do_insertion)
3258 if (dump_file && (dump_flags & TDF_DETAILS))
3260 fprintf (dump_file, "Skipping partial redundancy for "
3261 "expression ");
3262 print_pre_expr (dump_file, expr);
3263 fprintf (dump_file, " (%04d), no redundancy on to be "
3264 "optimized for speed edge\n", val);
3267 else if (dbg_cnt (treepre_insert))
3269 if (dump_file && (dump_flags & TDF_DETAILS))
3271 fprintf (dump_file, "Found partial redundancy for "
3272 "expression ");
3273 print_pre_expr (dump_file, expr);
3274 fprintf (dump_file, " (%04d)\n",
3275 get_expr_value_id (expr));
3277 if (insert_into_preds_of_block (block,
3278 get_expression_id (expr),
3279 avail))
3280 new_stuff = true;
3283 /* If all edges produce the same value and that value is
3284 an invariant, then the PHI has the same value on all
3285 edges. Note this. */
3286 else if (!cant_insert && all_same)
3288 gcc_assert (edoubleprime->kind == CONSTANT
3289 || edoubleprime->kind == NAME);
3291 tree temp = make_temp_ssa_name (get_expr_type (expr),
3292 NULL, "pretmp");
3293 gassign *assign
3294 = gimple_build_assign (temp,
3295 edoubleprime->kind == CONSTANT ?
3296 PRE_EXPR_CONSTANT (edoubleprime) :
3297 PRE_EXPR_NAME (edoubleprime));
3298 gimple_stmt_iterator gsi = gsi_after_labels (block);
3299 gsi_insert_before (&gsi, assign, GSI_NEW_STMT);
3301 gimple_set_plf (assign, NECESSARY, false);
3302 VN_INFO_GET (temp)->value_id = val;
3303 VN_INFO (temp)->valnum = sccvn_valnum_from_value_id (val);
3304 if (VN_INFO (temp)->valnum == NULL_TREE)
3305 VN_INFO (temp)->valnum = temp;
3306 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (temp));
3307 pre_expr newe = get_or_alloc_expr_for_name (temp);
3308 add_to_value (val, newe);
3309 bitmap_value_replace_in_set (AVAIL_OUT (block), newe);
3310 bitmap_insert_into_set (NEW_SETS (block), newe);
3315 exprs.release ();
3316 return new_stuff;
3320 /* Perform insertion for partially anticipatable expressions. There
3321 is only one case we will perform insertion for these. This case is
3322 if the expression is partially anticipatable, and fully available.
3323 In this case, we know that putting it earlier will enable us to
3324 remove the later computation. */
3326 static bool
3327 do_pre_partial_partial_insertion (basic_block block, basic_block dom)
3329 bool new_stuff = false;
3330 vec<pre_expr> exprs;
3331 pre_expr expr;
3332 auto_vec<pre_expr> avail;
3333 int i;
3335 exprs = sorted_array_from_bitmap_set (PA_IN (block));
3336 avail.safe_grow (EDGE_COUNT (block->preds));
3338 FOR_EACH_VEC_ELT (exprs, i, expr)
3340 if (expr->kind == NARY
3341 || expr->kind == REFERENCE)
3343 unsigned int val;
3344 bool by_all = true;
3345 bool cant_insert = false;
3346 edge pred;
3347 basic_block bprime;
3348 pre_expr eprime = NULL;
3349 edge_iterator ei;
3351 val = get_expr_value_id (expr);
3352 if (bitmap_set_contains_value (PHI_GEN (block), val))
3353 continue;
3354 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3355 continue;
3357 FOR_EACH_EDGE (pred, ei, block->preds)
3359 unsigned int vprime;
3360 pre_expr edoubleprime;
3362 /* We should never run insertion for the exit block
3363 and so not come across fake pred edges. */
3364 gcc_assert (!(pred->flags & EDGE_FAKE));
3365 bprime = pred->src;
3366 eprime = phi_translate (expr, ANTIC_IN (block),
3367 PA_IN (block),
3368 bprime, block);
3370 /* eprime will generally only be NULL if the
3371 value of the expression, translated
3372 through the PHI for this predecessor, is
3373 undefined. If that is the case, we can't
3374 make the expression fully redundant,
3375 because its value is undefined along a
3376 predecessor path. We can thus break out
3377 early because it doesn't matter what the
3378 rest of the results are. */
3379 if (eprime == NULL)
3381 avail[pred->dest_idx] = NULL;
3382 cant_insert = true;
3383 break;
3386 vprime = get_expr_value_id (eprime);
3387 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime), vprime);
3388 avail[pred->dest_idx] = edoubleprime;
3389 if (edoubleprime == NULL)
3391 by_all = false;
3392 break;
3396 /* If we can insert it, it's not the same value
3397 already existing along every predecessor, and
3398 it's defined by some predecessor, it is
3399 partially redundant. */
3400 if (!cant_insert && by_all)
3402 edge succ;
3403 bool do_insertion = false;
3405 /* Insert only if we can remove a later expression on a path
3406 that we want to optimize for speed.
3407 The phi node that we will be inserting in BLOCK is not free,
3408 and inserting it for the sake of !optimize_for_speed successor
3409 may cause regressions on the speed path. */
3410 FOR_EACH_EDGE (succ, ei, block->succs)
3412 if (bitmap_set_contains_value (PA_IN (succ->dest), val)
3413 || bitmap_set_contains_value (ANTIC_IN (succ->dest), val))
3415 if (optimize_edge_for_speed_p (succ))
3416 do_insertion = true;
3420 if (!do_insertion)
3422 if (dump_file && (dump_flags & TDF_DETAILS))
3424 fprintf (dump_file, "Skipping partial partial redundancy "
3425 "for expression ");
3426 print_pre_expr (dump_file, expr);
3427 fprintf (dump_file, " (%04d), not (partially) anticipated "
3428 "on any to be optimized for speed edges\n", val);
3431 else if (dbg_cnt (treepre_insert))
3433 pre_stats.pa_insert++;
3434 if (dump_file && (dump_flags & TDF_DETAILS))
3436 fprintf (dump_file, "Found partial partial redundancy "
3437 "for expression ");
3438 print_pre_expr (dump_file, expr);
3439 fprintf (dump_file, " (%04d)\n",
3440 get_expr_value_id (expr));
3442 if (insert_into_preds_of_block (block,
3443 get_expression_id (expr),
3444 avail))
3445 new_stuff = true;
3451 exprs.release ();
3452 return new_stuff;
3455 /* Insert expressions in BLOCK to compute hoistable values up.
3456 Return TRUE if something was inserted, otherwise return FALSE.
3457 The caller has to make sure that BLOCK has at least two successors. */
3459 static bool
3460 do_hoist_insertion (basic_block block)
3462 edge e;
3463 edge_iterator ei;
3464 bool new_stuff = false;
3465 unsigned i;
3466 gimple_stmt_iterator last;
3468 /* At least two successors, or else... */
3469 gcc_assert (EDGE_COUNT (block->succs) >= 2);
3471 /* Check that all successors of BLOCK are dominated by block.
3472 We could use dominated_by_p() for this, but actually there is a much
3473 quicker check: any successor that is dominated by BLOCK can't have
3474 more than one predecessor edge. */
3475 FOR_EACH_EDGE (e, ei, block->succs)
3476 if (! single_pred_p (e->dest))
3477 return false;
3479 /* Determine the insertion point. If we cannot safely insert before
3480 the last stmt if we'd have to, bail out. */
3481 last = gsi_last_bb (block);
3482 if (!gsi_end_p (last)
3483 && !is_ctrl_stmt (gsi_stmt (last))
3484 && stmt_ends_bb_p (gsi_stmt (last)))
3485 return false;
3487 /* Compute the set of hoistable expressions from ANTIC_IN. First compute
3488 hoistable values. */
3489 bitmap_set hoistable_set;
3491 /* A hoistable value must be in ANTIC_IN(block)
3492 but not in AVAIL_OUT(BLOCK). */
3493 bitmap_initialize (&hoistable_set.values, &grand_bitmap_obstack);
3494 bitmap_and_compl (&hoistable_set.values,
3495 &ANTIC_IN (block)->values, &AVAIL_OUT (block)->values);
3497 /* Short-cut for a common case: hoistable_set is empty. */
3498 if (bitmap_empty_p (&hoistable_set.values))
3499 return false;
3501 /* Compute which of the hoistable values is in AVAIL_OUT of
3502 at least one of the successors of BLOCK. */
3503 bitmap_head availout_in_some;
3504 bitmap_initialize (&availout_in_some, &grand_bitmap_obstack);
3505 FOR_EACH_EDGE (e, ei, block->succs)
3506 /* Do not consider expressions solely because their availability
3507 on loop exits. They'd be ANTIC-IN throughout the whole loop
3508 and thus effectively hoisted across loops by combination of
3509 PRE and hoisting. */
3510 if (! loop_exit_edge_p (block->loop_father, e))
3511 bitmap_ior_and_into (&availout_in_some, &hoistable_set.values,
3512 &AVAIL_OUT (e->dest)->values);
3513 bitmap_clear (&hoistable_set.values);
3515 /* Short-cut for a common case: availout_in_some is empty. */
3516 if (bitmap_empty_p (&availout_in_some))
3517 return false;
3519 /* Hack hoitable_set in-place so we can use sorted_array_from_bitmap_set. */
3520 hoistable_set.values = availout_in_some;
3521 hoistable_set.expressions = ANTIC_IN (block)->expressions;
3523 /* Now finally construct the topological-ordered expression set. */
3524 vec<pre_expr> exprs = sorted_array_from_bitmap_set (&hoistable_set);
3526 bitmap_clear (&hoistable_set.values);
3528 /* If there are candidate values for hoisting, insert expressions
3529 strategically to make the hoistable expressions fully redundant. */
3530 pre_expr expr;
3531 FOR_EACH_VEC_ELT (exprs, i, expr)
3533 /* While we try to sort expressions topologically above the
3534 sorting doesn't work out perfectly. Catch expressions we
3535 already inserted. */
3536 unsigned int value_id = get_expr_value_id (expr);
3537 if (bitmap_set_contains_value (AVAIL_OUT (block), value_id))
3539 if (dump_file && (dump_flags & TDF_DETAILS))
3541 fprintf (dump_file,
3542 "Already inserted expression for ");
3543 print_pre_expr (dump_file, expr);
3544 fprintf (dump_file, " (%04d)\n", value_id);
3546 continue;
3549 /* OK, we should hoist this value. Perform the transformation. */
3550 pre_stats.hoist_insert++;
3551 if (dump_file && (dump_flags & TDF_DETAILS))
3553 fprintf (dump_file,
3554 "Inserting expression in block %d for code hoisting: ",
3555 block->index);
3556 print_pre_expr (dump_file, expr);
3557 fprintf (dump_file, " (%04d)\n", value_id);
3560 gimple_seq stmts = NULL;
3561 tree res = create_expression_by_pieces (block, expr, &stmts,
3562 get_expr_type (expr));
3564 /* Do not return true if expression creation ultimately
3565 did not insert any statements. */
3566 if (gimple_seq_empty_p (stmts))
3567 res = NULL_TREE;
3568 else
3570 if (gsi_end_p (last) || is_ctrl_stmt (gsi_stmt (last)))
3571 gsi_insert_seq_before (&last, stmts, GSI_SAME_STMT);
3572 else
3573 gsi_insert_seq_after (&last, stmts, GSI_NEW_STMT);
3576 /* Make sure to not return true if expression creation ultimately
3577 failed but also make sure to insert any stmts produced as they
3578 are tracked in inserted_exprs. */
3579 if (! res)
3580 continue;
3582 new_stuff = true;
3585 exprs.release ();
3587 return new_stuff;
3590 /* Do a dominator walk on the control flow graph, and insert computations
3591 of values as necessary for PRE and hoisting. */
3593 static bool
3594 insert_aux (basic_block block, bool do_pre, bool do_hoist)
3596 basic_block son;
3597 bool new_stuff = false;
3599 if (block)
3601 basic_block dom;
3602 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3603 if (dom)
3605 unsigned i;
3606 bitmap_iterator bi;
3607 bitmap_set_t newset;
3609 /* First, update the AVAIL_OUT set with anything we may have
3610 inserted higher up in the dominator tree. */
3611 newset = NEW_SETS (dom);
3612 if (newset)
3614 /* Note that we need to value_replace both NEW_SETS, and
3615 AVAIL_OUT. For both the case of NEW_SETS, the value may be
3616 represented by some non-simple expression here that we want
3617 to replace it with. */
3618 FOR_EACH_EXPR_ID_IN_SET (newset, i, bi)
3620 pre_expr expr = expression_for_id (i);
3621 bitmap_value_replace_in_set (NEW_SETS (block), expr);
3622 bitmap_value_replace_in_set (AVAIL_OUT (block), expr);
3626 /* Insert expressions for partial redundancies. */
3627 if (do_pre && !single_pred_p (block))
3629 new_stuff |= do_pre_regular_insertion (block, dom);
3630 if (do_partial_partial)
3631 new_stuff |= do_pre_partial_partial_insertion (block, dom);
3634 /* Insert expressions for hoisting. */
3635 if (do_hoist && EDGE_COUNT (block->succs) >= 2)
3636 new_stuff |= do_hoist_insertion (block);
3639 for (son = first_dom_son (CDI_DOMINATORS, block);
3640 son;
3641 son = next_dom_son (CDI_DOMINATORS, son))
3643 new_stuff |= insert_aux (son, do_pre, do_hoist);
3646 return new_stuff;
3649 /* Perform insertion of partially redundant and hoistable values. */
3651 static void
3652 insert (void)
3654 bool new_stuff = true;
3655 basic_block bb;
3656 int num_iterations = 0;
3658 FOR_ALL_BB_FN (bb, cfun)
3659 NEW_SETS (bb) = bitmap_set_new ();
3661 while (new_stuff)
3663 num_iterations++;
3664 if (dump_file && dump_flags & TDF_DETAILS)
3665 fprintf (dump_file, "Starting insert iteration %d\n", num_iterations);
3666 new_stuff = insert_aux (ENTRY_BLOCK_PTR_FOR_FN (cfun), flag_tree_pre,
3667 flag_code_hoisting);
3669 /* Clear the NEW sets before the next iteration. We have already
3670 fully propagated its contents. */
3671 if (new_stuff)
3672 FOR_ALL_BB_FN (bb, cfun)
3673 bitmap_set_free (NEW_SETS (bb));
3675 statistics_histogram_event (cfun, "insert iterations", num_iterations);
3679 /* Compute the AVAIL set for all basic blocks.
3681 This function performs value numbering of the statements in each basic
3682 block. The AVAIL sets are built from information we glean while doing
3683 this value numbering, since the AVAIL sets contain only one entry per
3684 value.
3686 AVAIL_IN[BLOCK] = AVAIL_OUT[dom(BLOCK)].
3687 AVAIL_OUT[BLOCK] = AVAIL_IN[BLOCK] U PHI_GEN[BLOCK] U TMP_GEN[BLOCK]. */
3689 static void
3690 compute_avail (void)
3693 basic_block block, son;
3694 basic_block *worklist;
3695 size_t sp = 0;
3696 unsigned i;
3697 tree name;
3699 /* We pretend that default definitions are defined in the entry block.
3700 This includes function arguments and the static chain decl. */
3701 FOR_EACH_SSA_NAME (i, name, cfun)
3703 pre_expr e;
3704 if (!SSA_NAME_IS_DEFAULT_DEF (name)
3705 || has_zero_uses (name)
3706 || virtual_operand_p (name))
3707 continue;
3709 e = get_or_alloc_expr_for_name (name);
3710 add_to_value (get_expr_value_id (e), e);
3711 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR_FOR_FN (cfun)), e);
3712 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3716 if (dump_file && (dump_flags & TDF_DETAILS))
3718 print_bitmap_set (dump_file, TMP_GEN (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3719 "tmp_gen", ENTRY_BLOCK);
3720 print_bitmap_set (dump_file, AVAIL_OUT (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3721 "avail_out", ENTRY_BLOCK);
3724 /* Allocate the worklist. */
3725 worklist = XNEWVEC (basic_block, n_basic_blocks_for_fn (cfun));
3727 /* Seed the algorithm by putting the dominator children of the entry
3728 block on the worklist. */
3729 for (son = first_dom_son (CDI_DOMINATORS, ENTRY_BLOCK_PTR_FOR_FN (cfun));
3730 son;
3731 son = next_dom_son (CDI_DOMINATORS, son))
3732 worklist[sp++] = son;
3734 BB_LIVE_VOP_ON_EXIT (ENTRY_BLOCK_PTR_FOR_FN (cfun))
3735 = ssa_default_def (cfun, gimple_vop (cfun));
3737 /* Loop until the worklist is empty. */
3738 while (sp)
3740 gimple *stmt;
3741 basic_block dom;
3743 /* Pick a block from the worklist. */
3744 block = worklist[--sp];
3746 /* Initially, the set of available values in BLOCK is that of
3747 its immediate dominator. */
3748 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3749 if (dom)
3751 bitmap_set_copy (AVAIL_OUT (block), AVAIL_OUT (dom));
3752 BB_LIVE_VOP_ON_EXIT (block) = BB_LIVE_VOP_ON_EXIT (dom);
3755 /* Generate values for PHI nodes. */
3756 for (gphi_iterator gsi = gsi_start_phis (block); !gsi_end_p (gsi);
3757 gsi_next (&gsi))
3759 tree result = gimple_phi_result (gsi.phi ());
3761 /* We have no need for virtual phis, as they don't represent
3762 actual computations. */
3763 if (virtual_operand_p (result))
3765 BB_LIVE_VOP_ON_EXIT (block) = result;
3766 continue;
3769 pre_expr e = get_or_alloc_expr_for_name (result);
3770 add_to_value (get_expr_value_id (e), e);
3771 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3772 bitmap_insert_into_set (PHI_GEN (block), e);
3775 BB_MAY_NOTRETURN (block) = 0;
3777 /* Now compute value numbers and populate value sets with all
3778 the expressions computed in BLOCK. */
3779 for (gimple_stmt_iterator gsi = gsi_start_bb (block); !gsi_end_p (gsi);
3780 gsi_next (&gsi))
3782 ssa_op_iter iter;
3783 tree op;
3785 stmt = gsi_stmt (gsi);
3787 /* Cache whether the basic-block has any non-visible side-effect
3788 or control flow.
3789 If this isn't a call or it is the last stmt in the
3790 basic-block then the CFG represents things correctly. */
3791 if (is_gimple_call (stmt) && !stmt_ends_bb_p (stmt))
3793 /* Non-looping const functions always return normally.
3794 Otherwise the call might not return or have side-effects
3795 that forbids hoisting possibly trapping expressions
3796 before it. */
3797 int flags = gimple_call_flags (stmt);
3798 if (!(flags & ECF_CONST)
3799 || (flags & ECF_LOOPING_CONST_OR_PURE))
3800 BB_MAY_NOTRETURN (block) = 1;
3803 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
3805 pre_expr e = get_or_alloc_expr_for_name (op);
3807 add_to_value (get_expr_value_id (e), e);
3808 bitmap_insert_into_set (TMP_GEN (block), e);
3809 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3812 if (gimple_vdef (stmt))
3813 BB_LIVE_VOP_ON_EXIT (block) = gimple_vdef (stmt);
3815 if (gimple_has_side_effects (stmt)
3816 || stmt_could_throw_p (stmt)
3817 || is_gimple_debug (stmt))
3818 continue;
3820 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
3822 if (ssa_undefined_value_p (op))
3823 continue;
3824 pre_expr e = get_or_alloc_expr_for_name (op);
3825 bitmap_value_insert_into_set (EXP_GEN (block), e);
3828 switch (gimple_code (stmt))
3830 case GIMPLE_RETURN:
3831 continue;
3833 case GIMPLE_CALL:
3835 vn_reference_t ref;
3836 vn_reference_s ref1;
3837 pre_expr result = NULL;
3839 /* We can value number only calls to real functions. */
3840 if (gimple_call_internal_p (stmt))
3841 continue;
3843 vn_reference_lookup_call (as_a <gcall *> (stmt), &ref, &ref1);
3844 if (!ref)
3845 continue;
3847 /* If the value of the call is not invalidated in
3848 this block until it is computed, add the expression
3849 to EXP_GEN. */
3850 if (!gimple_vuse (stmt)
3851 || gimple_code
3852 (SSA_NAME_DEF_STMT (gimple_vuse (stmt))) == GIMPLE_PHI
3853 || gimple_bb (SSA_NAME_DEF_STMT
3854 (gimple_vuse (stmt))) != block)
3856 result = pre_expr_pool.allocate ();
3857 result->kind = REFERENCE;
3858 result->id = 0;
3859 PRE_EXPR_REFERENCE (result) = ref;
3861 get_or_alloc_expression_id (result);
3862 add_to_value (get_expr_value_id (result), result);
3863 bitmap_value_insert_into_set (EXP_GEN (block), result);
3865 continue;
3868 case GIMPLE_ASSIGN:
3870 pre_expr result = NULL;
3871 switch (vn_get_stmt_kind (stmt))
3873 case VN_NARY:
3875 enum tree_code code = gimple_assign_rhs_code (stmt);
3876 vn_nary_op_t nary;
3878 /* COND_EXPR and VEC_COND_EXPR are awkward in
3879 that they contain an embedded complex expression.
3880 Don't even try to shove those through PRE. */
3881 if (code == COND_EXPR
3882 || code == VEC_COND_EXPR)
3883 continue;
3885 vn_nary_op_lookup_stmt (stmt, &nary);
3886 if (!nary)
3887 continue;
3889 /* If the NARY traps and there was a preceding
3890 point in the block that might not return avoid
3891 adding the nary to EXP_GEN. */
3892 if (BB_MAY_NOTRETURN (block)
3893 && vn_nary_may_trap (nary))
3894 continue;
3896 result = pre_expr_pool.allocate ();
3897 result->kind = NARY;
3898 result->id = 0;
3899 PRE_EXPR_NARY (result) = nary;
3900 break;
3903 case VN_REFERENCE:
3905 tree rhs1 = gimple_assign_rhs1 (stmt);
3906 alias_set_type set = get_alias_set (rhs1);
3907 vec<vn_reference_op_s> operands
3908 = vn_reference_operands_for_lookup (rhs1);
3909 vn_reference_t ref;
3910 vn_reference_lookup_pieces (gimple_vuse (stmt), set,
3911 TREE_TYPE (rhs1),
3912 operands, &ref, VN_WALK);
3913 if (!ref)
3915 operands.release ();
3916 continue;
3919 /* If the value of the reference is not invalidated in
3920 this block until it is computed, add the expression
3921 to EXP_GEN. */
3922 if (gimple_vuse (stmt))
3924 gimple *def_stmt;
3925 bool ok = true;
3926 def_stmt = SSA_NAME_DEF_STMT (gimple_vuse (stmt));
3927 while (!gimple_nop_p (def_stmt)
3928 && gimple_code (def_stmt) != GIMPLE_PHI
3929 && gimple_bb (def_stmt) == block)
3931 if (stmt_may_clobber_ref_p
3932 (def_stmt, gimple_assign_rhs1 (stmt)))
3934 ok = false;
3935 break;
3937 def_stmt
3938 = SSA_NAME_DEF_STMT (gimple_vuse (def_stmt));
3940 if (!ok)
3942 operands.release ();
3943 continue;
3947 /* If the load was value-numbered to another
3948 load make sure we do not use its expression
3949 for insertion if it wouldn't be a valid
3950 replacement. */
3951 /* At the momemt we have a testcase
3952 for hoist insertion of aligned vs. misaligned
3953 variants in gcc.dg/torture/pr65270-1.c thus
3954 with just alignment to be considered we can
3955 simply replace the expression in the hashtable
3956 with the most conservative one. */
3957 vn_reference_op_t ref1 = &ref->operands.last ();
3958 while (ref1->opcode != TARGET_MEM_REF
3959 && ref1->opcode != MEM_REF
3960 && ref1 != &ref->operands[0])
3961 --ref1;
3962 vn_reference_op_t ref2 = &operands.last ();
3963 while (ref2->opcode != TARGET_MEM_REF
3964 && ref2->opcode != MEM_REF
3965 && ref2 != &operands[0])
3966 --ref2;
3967 if ((ref1->opcode == TARGET_MEM_REF
3968 || ref1->opcode == MEM_REF)
3969 && (TYPE_ALIGN (ref1->type)
3970 > TYPE_ALIGN (ref2->type)))
3971 ref1->type
3972 = build_aligned_type (ref1->type,
3973 TYPE_ALIGN (ref2->type));
3974 /* TBAA behavior is an obvious part so make sure
3975 that the hashtable one covers this as well
3976 by adjusting the ref alias set and its base. */
3977 if (ref->set == set
3978 || alias_set_subset_of (set, ref->set))
3980 else if (alias_set_subset_of (ref->set, set))
3982 ref->set = set;
3983 if (ref1->opcode == MEM_REF)
3984 ref1->op0 = wide_int_to_tree (TREE_TYPE (ref2->op0),
3985 ref1->op0);
3986 else
3987 ref1->op2 = wide_int_to_tree (TREE_TYPE (ref2->op2),
3988 ref1->op2);
3990 else
3992 ref->set = 0;
3993 if (ref1->opcode == MEM_REF)
3994 ref1->op0 = wide_int_to_tree (ptr_type_node,
3995 ref1->op0);
3996 else
3997 ref1->op2 = wide_int_to_tree (ptr_type_node,
3998 ref1->op2);
4000 operands.release ();
4002 result = pre_expr_pool.allocate ();
4003 result->kind = REFERENCE;
4004 result->id = 0;
4005 PRE_EXPR_REFERENCE (result) = ref;
4006 break;
4009 default:
4010 continue;
4013 get_or_alloc_expression_id (result);
4014 add_to_value (get_expr_value_id (result), result);
4015 bitmap_value_insert_into_set (EXP_GEN (block), result);
4016 continue;
4018 default:
4019 break;
4023 if (dump_file && (dump_flags & TDF_DETAILS))
4025 print_bitmap_set (dump_file, EXP_GEN (block),
4026 "exp_gen", block->index);
4027 print_bitmap_set (dump_file, PHI_GEN (block),
4028 "phi_gen", block->index);
4029 print_bitmap_set (dump_file, TMP_GEN (block),
4030 "tmp_gen", block->index);
4031 print_bitmap_set (dump_file, AVAIL_OUT (block),
4032 "avail_out", block->index);
4035 /* Put the dominator children of BLOCK on the worklist of blocks
4036 to compute available sets for. */
4037 for (son = first_dom_son (CDI_DOMINATORS, block);
4038 son;
4039 son = next_dom_son (CDI_DOMINATORS, son))
4040 worklist[sp++] = son;
4043 free (worklist);
4047 /* Local state for the eliminate domwalk. */
4048 static vec<gimple *> el_to_remove;
4049 static vec<gimple *> el_to_fixup;
4050 static unsigned int el_todo;
4051 static vec<tree> el_avail;
4052 static vec<tree> el_avail_stack;
4054 /* Return a leader for OP that is available at the current point of the
4055 eliminate domwalk. */
4057 static tree
4058 eliminate_avail (tree op)
4060 tree valnum = VN_INFO (op)->valnum;
4061 if (TREE_CODE (valnum) == SSA_NAME)
4063 if (SSA_NAME_IS_DEFAULT_DEF (valnum))
4064 return valnum;
4065 if (el_avail.length () > SSA_NAME_VERSION (valnum))
4066 return el_avail[SSA_NAME_VERSION (valnum)];
4068 else if (is_gimple_min_invariant (valnum))
4069 return valnum;
4070 return NULL_TREE;
4073 /* At the current point of the eliminate domwalk make OP available. */
4075 static void
4076 eliminate_push_avail (tree op)
4078 tree valnum = VN_INFO (op)->valnum;
4079 if (TREE_CODE (valnum) == SSA_NAME)
4081 if (el_avail.length () <= SSA_NAME_VERSION (valnum))
4082 el_avail.safe_grow_cleared (SSA_NAME_VERSION (valnum) + 1);
4083 tree pushop = op;
4084 if (el_avail[SSA_NAME_VERSION (valnum)])
4085 pushop = el_avail[SSA_NAME_VERSION (valnum)];
4086 el_avail_stack.safe_push (pushop);
4087 el_avail[SSA_NAME_VERSION (valnum)] = op;
4091 /* Insert the expression recorded by SCCVN for VAL at *GSI. Returns
4092 the leader for the expression if insertion was successful. */
4094 static tree
4095 eliminate_insert (gimple_stmt_iterator *gsi, tree val)
4097 /* We can insert a sequence with a single assignment only. */
4098 gimple_seq stmts = VN_INFO (val)->expr;
4099 if (!gimple_seq_singleton_p (stmts))
4100 return NULL_TREE;
4101 gassign *stmt = dyn_cast <gassign *> (gimple_seq_first_stmt (stmts));
4102 if (!stmt
4103 || (!CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt))
4104 && gimple_assign_rhs_code (stmt) != VIEW_CONVERT_EXPR
4105 && gimple_assign_rhs_code (stmt) != BIT_FIELD_REF
4106 && (gimple_assign_rhs_code (stmt) != BIT_AND_EXPR
4107 || TREE_CODE (gimple_assign_rhs2 (stmt)) != INTEGER_CST)))
4108 return NULL_TREE;
4110 tree op = gimple_assign_rhs1 (stmt);
4111 if (gimple_assign_rhs_code (stmt) == VIEW_CONVERT_EXPR
4112 || gimple_assign_rhs_code (stmt) == BIT_FIELD_REF)
4113 op = TREE_OPERAND (op, 0);
4114 tree leader = TREE_CODE (op) == SSA_NAME ? eliminate_avail (op) : op;
4115 if (!leader)
4116 return NULL_TREE;
4118 tree res;
4119 stmts = NULL;
4120 if (gimple_assign_rhs_code (stmt) == BIT_FIELD_REF)
4121 res = gimple_build (&stmts, BIT_FIELD_REF,
4122 TREE_TYPE (val), leader,
4123 TREE_OPERAND (gimple_assign_rhs1 (stmt), 1),
4124 TREE_OPERAND (gimple_assign_rhs1 (stmt), 2));
4125 else if (gimple_assign_rhs_code (stmt) == BIT_AND_EXPR)
4126 res = gimple_build (&stmts, BIT_AND_EXPR,
4127 TREE_TYPE (val), leader, gimple_assign_rhs2 (stmt));
4128 else
4129 res = gimple_build (&stmts, gimple_assign_rhs_code (stmt),
4130 TREE_TYPE (val), leader);
4131 if (TREE_CODE (res) != SSA_NAME
4132 || SSA_NAME_IS_DEFAULT_DEF (res)
4133 || gimple_bb (SSA_NAME_DEF_STMT (res)))
4135 gimple_seq_discard (stmts);
4137 /* During propagation we have to treat SSA info conservatively
4138 and thus we can end up simplifying the inserted expression
4139 at elimination time to sth not defined in stmts. */
4140 /* But then this is a redundancy we failed to detect. Which means
4141 res now has two values. That doesn't play well with how
4142 we track availability here, so give up. */
4143 if (dump_file && (dump_flags & TDF_DETAILS))
4145 if (TREE_CODE (res) == SSA_NAME)
4146 res = eliminate_avail (res);
4147 if (res)
4149 fprintf (dump_file, "Failed to insert expression for value ");
4150 print_generic_expr (dump_file, val);
4151 fprintf (dump_file, " which is really fully redundant to ");
4152 print_generic_expr (dump_file, res);
4153 fprintf (dump_file, "\n");
4157 return NULL_TREE;
4159 else
4161 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
4162 VN_INFO_GET (res)->valnum = val;
4164 if (TREE_CODE (leader) == SSA_NAME)
4165 gimple_set_plf (SSA_NAME_DEF_STMT (leader), NECESSARY, true);
4168 pre_stats.insertions++;
4169 if (dump_file && (dump_flags & TDF_DETAILS))
4171 fprintf (dump_file, "Inserted ");
4172 print_gimple_stmt (dump_file, SSA_NAME_DEF_STMT (res), 0);
4175 return res;
4178 class eliminate_dom_walker : public dom_walker
4180 public:
4181 eliminate_dom_walker (cdi_direction direction, bool do_pre_)
4182 : dom_walker (direction), do_pre (do_pre_) {}
4184 virtual edge before_dom_children (basic_block);
4185 virtual void after_dom_children (basic_block);
4187 bool do_pre;
4190 /* Perform elimination for the basic-block B during the domwalk. */
4192 edge
4193 eliminate_dom_walker::before_dom_children (basic_block b)
4195 /* Mark new bb. */
4196 el_avail_stack.safe_push (NULL_TREE);
4198 /* Skip unreachable blocks marked unreachable during the SCCVN domwalk. */
4199 edge_iterator ei;
4200 edge e;
4201 FOR_EACH_EDGE (e, ei, b->preds)
4202 if (e->flags & EDGE_EXECUTABLE)
4203 break;
4204 if (! e)
4205 return NULL;
4207 for (gphi_iterator gsi = gsi_start_phis (b); !gsi_end_p (gsi);)
4209 gphi *phi = gsi.phi ();
4210 tree res = PHI_RESULT (phi);
4212 if (virtual_operand_p (res))
4214 gsi_next (&gsi);
4215 continue;
4218 tree sprime = eliminate_avail (res);
4219 if (sprime
4220 && sprime != res)
4222 if (dump_file && (dump_flags & TDF_DETAILS))
4224 fprintf (dump_file, "Replaced redundant PHI node defining ");
4225 print_generic_expr (dump_file, res);
4226 fprintf (dump_file, " with ");
4227 print_generic_expr (dump_file, sprime);
4228 fprintf (dump_file, "\n");
4231 /* If we inserted this PHI node ourself, it's not an elimination. */
4232 if (inserted_exprs
4233 && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res)))
4234 pre_stats.phis--;
4235 else
4236 pre_stats.eliminations++;
4238 /* If we will propagate into all uses don't bother to do
4239 anything. */
4240 if (may_propagate_copy (res, sprime))
4242 /* Mark the PHI for removal. */
4243 el_to_remove.safe_push (phi);
4244 gsi_next (&gsi);
4245 continue;
4248 remove_phi_node (&gsi, false);
4250 if (inserted_exprs
4251 && !bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res))
4252 && TREE_CODE (sprime) == SSA_NAME)
4253 gimple_set_plf (SSA_NAME_DEF_STMT (sprime), NECESSARY, true);
4255 if (!useless_type_conversion_p (TREE_TYPE (res), TREE_TYPE (sprime)))
4256 sprime = fold_convert (TREE_TYPE (res), sprime);
4257 gimple *stmt = gimple_build_assign (res, sprime);
4258 /* ??? It cannot yet be necessary (DOM walk). */
4259 gimple_set_plf (stmt, NECESSARY, gimple_plf (phi, NECESSARY));
4261 gimple_stmt_iterator gsi2 = gsi_after_labels (b);
4262 gsi_insert_before (&gsi2, stmt, GSI_NEW_STMT);
4263 continue;
4266 eliminate_push_avail (res);
4267 gsi_next (&gsi);
4270 for (gimple_stmt_iterator gsi = gsi_start_bb (b);
4271 !gsi_end_p (gsi);
4272 gsi_next (&gsi))
4274 tree sprime = NULL_TREE;
4275 gimple *stmt = gsi_stmt (gsi);
4276 tree lhs = gimple_get_lhs (stmt);
4277 if (lhs && TREE_CODE (lhs) == SSA_NAME
4278 && !gimple_has_volatile_ops (stmt)
4279 /* See PR43491. Do not replace a global register variable when
4280 it is a the RHS of an assignment. Do replace local register
4281 variables since gcc does not guarantee a local variable will
4282 be allocated in register.
4283 ??? The fix isn't effective here. This should instead
4284 be ensured by not value-numbering them the same but treating
4285 them like volatiles? */
4286 && !(gimple_assign_single_p (stmt)
4287 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == VAR_DECL
4288 && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt))
4289 && is_global_var (gimple_assign_rhs1 (stmt)))))
4291 sprime = eliminate_avail (lhs);
4292 if (!sprime)
4294 /* If there is no existing usable leader but SCCVN thinks
4295 it has an expression it wants to use as replacement,
4296 insert that. */
4297 tree val = VN_INFO (lhs)->valnum;
4298 if (val != VN_TOP
4299 && TREE_CODE (val) == SSA_NAME
4300 && VN_INFO (val)->needs_insertion
4301 && VN_INFO (val)->expr != NULL
4302 && (sprime = eliminate_insert (&gsi, val)) != NULL_TREE)
4303 eliminate_push_avail (sprime);
4306 /* If this now constitutes a copy duplicate points-to
4307 and range info appropriately. This is especially
4308 important for inserted code. See tree-ssa-copy.c
4309 for similar code. */
4310 if (sprime
4311 && TREE_CODE (sprime) == SSA_NAME)
4313 basic_block sprime_b = gimple_bb (SSA_NAME_DEF_STMT (sprime));
4314 if (POINTER_TYPE_P (TREE_TYPE (lhs))
4315 && VN_INFO_PTR_INFO (lhs)
4316 && ! VN_INFO_PTR_INFO (sprime))
4318 duplicate_ssa_name_ptr_info (sprime,
4319 VN_INFO_PTR_INFO (lhs));
4320 if (b != sprime_b)
4321 mark_ptr_info_alignment_unknown
4322 (SSA_NAME_PTR_INFO (sprime));
4324 else if (INTEGRAL_TYPE_P (TREE_TYPE (lhs))
4325 && VN_INFO_RANGE_INFO (lhs)
4326 && ! VN_INFO_RANGE_INFO (sprime)
4327 && b == sprime_b)
4328 duplicate_ssa_name_range_info (sprime,
4329 VN_INFO_RANGE_TYPE (lhs),
4330 VN_INFO_RANGE_INFO (lhs));
4333 /* Inhibit the use of an inserted PHI on a loop header when
4334 the address of the memory reference is a simple induction
4335 variable. In other cases the vectorizer won't do anything
4336 anyway (either it's loop invariant or a complicated
4337 expression). */
4338 if (sprime
4339 && TREE_CODE (sprime) == SSA_NAME
4340 && do_pre
4341 && (flag_tree_loop_vectorize || flag_tree_parallelize_loops > 1)
4342 && loop_outer (b->loop_father)
4343 && has_zero_uses (sprime)
4344 && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (sprime))
4345 && gimple_assign_load_p (stmt))
4347 gimple *def_stmt = SSA_NAME_DEF_STMT (sprime);
4348 basic_block def_bb = gimple_bb (def_stmt);
4349 if (gimple_code (def_stmt) == GIMPLE_PHI
4350 && def_bb->loop_father->header == def_bb)
4352 loop_p loop = def_bb->loop_father;
4353 ssa_op_iter iter;
4354 tree op;
4355 bool found = false;
4356 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
4358 affine_iv iv;
4359 def_bb = gimple_bb (SSA_NAME_DEF_STMT (op));
4360 if (def_bb
4361 && flow_bb_inside_loop_p (loop, def_bb)
4362 && simple_iv (loop, loop, op, &iv, true))
4364 found = true;
4365 break;
4368 if (found)
4370 if (dump_file && (dump_flags & TDF_DETAILS))
4372 fprintf (dump_file, "Not replacing ");
4373 print_gimple_expr (dump_file, stmt, 0);
4374 fprintf (dump_file, " with ");
4375 print_generic_expr (dump_file, sprime);
4376 fprintf (dump_file, " which would add a loop"
4377 " carried dependence to loop %d\n",
4378 loop->num);
4380 /* Don't keep sprime available. */
4381 sprime = NULL_TREE;
4386 if (sprime)
4388 /* If we can propagate the value computed for LHS into
4389 all uses don't bother doing anything with this stmt. */
4390 if (may_propagate_copy (lhs, sprime))
4392 /* Mark it for removal. */
4393 el_to_remove.safe_push (stmt);
4395 /* ??? Don't count copy/constant propagations. */
4396 if (gimple_assign_single_p (stmt)
4397 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
4398 || gimple_assign_rhs1 (stmt) == sprime))
4399 continue;
4401 if (dump_file && (dump_flags & TDF_DETAILS))
4403 fprintf (dump_file, "Replaced ");
4404 print_gimple_expr (dump_file, stmt, 0);
4405 fprintf (dump_file, " with ");
4406 print_generic_expr (dump_file, sprime);
4407 fprintf (dump_file, " in all uses of ");
4408 print_gimple_stmt (dump_file, stmt, 0);
4411 pre_stats.eliminations++;
4412 continue;
4415 /* If this is an assignment from our leader (which
4416 happens in the case the value-number is a constant)
4417 then there is nothing to do. */
4418 if (gimple_assign_single_p (stmt)
4419 && sprime == gimple_assign_rhs1 (stmt))
4420 continue;
4422 /* Else replace its RHS. */
4423 bool can_make_abnormal_goto
4424 = is_gimple_call (stmt)
4425 && stmt_can_make_abnormal_goto (stmt);
4427 if (dump_file && (dump_flags & TDF_DETAILS))
4429 fprintf (dump_file, "Replaced ");
4430 print_gimple_expr (dump_file, stmt, 0);
4431 fprintf (dump_file, " with ");
4432 print_generic_expr (dump_file, sprime);
4433 fprintf (dump_file, " in ");
4434 print_gimple_stmt (dump_file, stmt, 0);
4437 if (TREE_CODE (sprime) == SSA_NAME)
4438 gimple_set_plf (SSA_NAME_DEF_STMT (sprime),
4439 NECESSARY, true);
4441 pre_stats.eliminations++;
4442 gimple *orig_stmt = stmt;
4443 if (!useless_type_conversion_p (TREE_TYPE (lhs),
4444 TREE_TYPE (sprime)))
4445 sprime = fold_convert (TREE_TYPE (lhs), sprime);
4446 tree vdef = gimple_vdef (stmt);
4447 tree vuse = gimple_vuse (stmt);
4448 propagate_tree_value_into_stmt (&gsi, sprime);
4449 stmt = gsi_stmt (gsi);
4450 update_stmt (stmt);
4451 if (vdef != gimple_vdef (stmt))
4452 VN_INFO (vdef)->valnum = vuse;
4454 /* If we removed EH side-effects from the statement, clean
4455 its EH information. */
4456 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
4458 bitmap_set_bit (need_eh_cleanup,
4459 gimple_bb (stmt)->index);
4460 if (dump_file && (dump_flags & TDF_DETAILS))
4461 fprintf (dump_file, " Removed EH side-effects.\n");
4464 /* Likewise for AB side-effects. */
4465 if (can_make_abnormal_goto
4466 && !stmt_can_make_abnormal_goto (stmt))
4468 bitmap_set_bit (need_ab_cleanup,
4469 gimple_bb (stmt)->index);
4470 if (dump_file && (dump_flags & TDF_DETAILS))
4471 fprintf (dump_file, " Removed AB side-effects.\n");
4474 continue;
4478 /* If the statement is a scalar store, see if the expression
4479 has the same value number as its rhs. If so, the store is
4480 dead. */
4481 if (gimple_assign_single_p (stmt)
4482 && !gimple_has_volatile_ops (stmt)
4483 && !is_gimple_reg (gimple_assign_lhs (stmt))
4484 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
4485 || is_gimple_min_invariant (gimple_assign_rhs1 (stmt))))
4487 tree val;
4488 tree rhs = gimple_assign_rhs1 (stmt);
4489 vn_reference_t vnresult;
4490 val = vn_reference_lookup (lhs, gimple_vuse (stmt), VN_WALKREWRITE,
4491 &vnresult, false);
4492 if (TREE_CODE (rhs) == SSA_NAME)
4493 rhs = VN_INFO (rhs)->valnum;
4494 if (val
4495 && operand_equal_p (val, rhs, 0))
4497 /* We can only remove the later store if the former aliases
4498 at least all accesses the later one does or if the store
4499 was to readonly memory storing the same value. */
4500 alias_set_type set = get_alias_set (lhs);
4501 if (! vnresult
4502 || vnresult->set == set
4503 || alias_set_subset_of (set, vnresult->set))
4505 if (dump_file && (dump_flags & TDF_DETAILS))
4507 fprintf (dump_file, "Deleted redundant store ");
4508 print_gimple_stmt (dump_file, stmt, 0);
4511 /* Queue stmt for removal. */
4512 el_to_remove.safe_push (stmt);
4513 continue;
4518 /* If this is a control statement value numbering left edges
4519 unexecuted on force the condition in a way consistent with
4520 that. */
4521 if (gcond *cond = dyn_cast <gcond *> (stmt))
4523 if ((EDGE_SUCC (b, 0)->flags & EDGE_EXECUTABLE)
4524 ^ (EDGE_SUCC (b, 1)->flags & EDGE_EXECUTABLE))
4526 if (dump_file && (dump_flags & TDF_DETAILS))
4528 fprintf (dump_file, "Removing unexecutable edge from ");
4529 print_gimple_stmt (dump_file, stmt, 0);
4531 if (((EDGE_SUCC (b, 0)->flags & EDGE_TRUE_VALUE) != 0)
4532 == ((EDGE_SUCC (b, 0)->flags & EDGE_EXECUTABLE) != 0))
4533 gimple_cond_make_true (cond);
4534 else
4535 gimple_cond_make_false (cond);
4536 update_stmt (cond);
4537 el_todo |= TODO_cleanup_cfg;
4538 continue;
4542 bool can_make_abnormal_goto = stmt_can_make_abnormal_goto (stmt);
4543 bool was_noreturn = (is_gimple_call (stmt)
4544 && gimple_call_noreturn_p (stmt));
4545 tree vdef = gimple_vdef (stmt);
4546 tree vuse = gimple_vuse (stmt);
4548 /* If we didn't replace the whole stmt (or propagate the result
4549 into all uses), replace all uses on this stmt with their
4550 leaders. */
4551 use_operand_p use_p;
4552 ssa_op_iter iter;
4553 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
4555 tree use = USE_FROM_PTR (use_p);
4556 /* ??? The call code above leaves stmt operands un-updated. */
4557 if (TREE_CODE (use) != SSA_NAME)
4558 continue;
4559 tree sprime = eliminate_avail (use);
4560 if (sprime && sprime != use
4561 && may_propagate_copy (use, sprime)
4562 /* We substitute into debug stmts to avoid excessive
4563 debug temporaries created by removed stmts, but we need
4564 to avoid doing so for inserted sprimes as we never want
4565 to create debug temporaries for them. */
4566 && (!inserted_exprs
4567 || TREE_CODE (sprime) != SSA_NAME
4568 || !is_gimple_debug (stmt)
4569 || !bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (sprime))))
4571 propagate_value (use_p, sprime);
4572 gimple_set_modified (stmt, true);
4573 if (TREE_CODE (sprime) == SSA_NAME
4574 && !is_gimple_debug (stmt))
4575 gimple_set_plf (SSA_NAME_DEF_STMT (sprime),
4576 NECESSARY, true);
4580 /* Visit indirect calls and turn them into direct calls if
4581 possible using the devirtualization machinery. */
4582 if (gcall *call_stmt = dyn_cast <gcall *> (stmt))
4584 tree fn = gimple_call_fn (call_stmt);
4585 if (fn
4586 && flag_devirtualize
4587 && virtual_method_call_p (fn))
4589 tree otr_type = obj_type_ref_class (fn);
4590 tree instance;
4591 ipa_polymorphic_call_context context (current_function_decl, fn, stmt, &instance);
4592 bool final;
4594 context.get_dynamic_type (instance, OBJ_TYPE_REF_OBJECT (fn), otr_type, stmt);
4596 vec <cgraph_node *>targets
4597 = possible_polymorphic_call_targets (obj_type_ref_class (fn),
4598 tree_to_uhwi
4599 (OBJ_TYPE_REF_TOKEN (fn)),
4600 context,
4601 &final);
4602 if (dump_file)
4603 dump_possible_polymorphic_call_targets (dump_file,
4604 obj_type_ref_class (fn),
4605 tree_to_uhwi
4606 (OBJ_TYPE_REF_TOKEN (fn)),
4607 context);
4608 if (final && targets.length () <= 1 && dbg_cnt (devirt))
4610 tree fn;
4611 if (targets.length () == 1)
4612 fn = targets[0]->decl;
4613 else
4614 fn = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
4615 if (dump_enabled_p ())
4617 location_t loc = gimple_location_safe (stmt);
4618 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
4619 "converting indirect call to "
4620 "function %s\n",
4621 lang_hooks.decl_printable_name (fn, 2));
4623 gimple_call_set_fndecl (call_stmt, fn);
4624 /* If changing the call to __builtin_unreachable
4625 or similar noreturn function, adjust gimple_call_fntype
4626 too. */
4627 if (gimple_call_noreturn_p (call_stmt)
4628 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fn)))
4629 && TYPE_ARG_TYPES (TREE_TYPE (fn))
4630 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fn)))
4631 == void_type_node))
4632 gimple_call_set_fntype (call_stmt, TREE_TYPE (fn));
4633 maybe_remove_unused_call_args (cfun, call_stmt);
4634 gimple_set_modified (stmt, true);
4639 if (gimple_modified_p (stmt))
4641 /* If a formerly non-invariant ADDR_EXPR is turned into an
4642 invariant one it was on a separate stmt. */
4643 if (gimple_assign_single_p (stmt)
4644 && TREE_CODE (gimple_assign_rhs1 (stmt)) == ADDR_EXPR)
4645 recompute_tree_invariant_for_addr_expr (gimple_assign_rhs1 (stmt));
4646 gimple *old_stmt = stmt;
4647 gimple_stmt_iterator prev = gsi;
4648 gsi_prev (&prev);
4649 if (fold_stmt (&gsi))
4651 /* fold_stmt may have created new stmts inbetween
4652 the previous stmt and the folded stmt. Mark
4653 all defs created there as varying to not confuse
4654 the SCCVN machinery as we're using that even during
4655 elimination. */
4656 if (gsi_end_p (prev))
4657 prev = gsi_start_bb (b);
4658 else
4659 gsi_next (&prev);
4660 if (gsi_stmt (prev) != gsi_stmt (gsi))
4663 tree def;
4664 ssa_op_iter dit;
4665 FOR_EACH_SSA_TREE_OPERAND (def, gsi_stmt (prev),
4666 dit, SSA_OP_ALL_DEFS)
4667 /* As existing DEFs may move between stmts
4668 we have to guard VN_INFO_GET. */
4669 if (! has_VN_INFO (def))
4670 VN_INFO_GET (def)->valnum = def;
4671 if (gsi_stmt (prev) == gsi_stmt (gsi))
4672 break;
4673 gsi_next (&prev);
4675 while (1);
4677 stmt = gsi_stmt (gsi);
4678 /* When changing a call into a noreturn call, cfg cleanup
4679 is needed to fix up the noreturn call. */
4680 if (!was_noreturn
4681 && is_gimple_call (stmt) && gimple_call_noreturn_p (stmt))
4682 el_to_fixup.safe_push (stmt);
4683 /* When changing a condition or switch into one we know what
4684 edge will be executed, schedule a cfg cleanup. */
4685 if ((gimple_code (stmt) == GIMPLE_COND
4686 && (gimple_cond_true_p (as_a <gcond *> (stmt))
4687 || gimple_cond_false_p (as_a <gcond *> (stmt))))
4688 || (gimple_code (stmt) == GIMPLE_SWITCH
4689 && TREE_CODE (gimple_switch_index
4690 (as_a <gswitch *> (stmt))) == INTEGER_CST))
4691 el_todo |= TODO_cleanup_cfg;
4692 /* If we removed EH side-effects from the statement, clean
4693 its EH information. */
4694 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
4696 bitmap_set_bit (need_eh_cleanup,
4697 gimple_bb (stmt)->index);
4698 if (dump_file && (dump_flags & TDF_DETAILS))
4699 fprintf (dump_file, " Removed EH side-effects.\n");
4701 /* Likewise for AB side-effects. */
4702 if (can_make_abnormal_goto
4703 && !stmt_can_make_abnormal_goto (stmt))
4705 bitmap_set_bit (need_ab_cleanup,
4706 gimple_bb (stmt)->index);
4707 if (dump_file && (dump_flags & TDF_DETAILS))
4708 fprintf (dump_file, " Removed AB side-effects.\n");
4710 update_stmt (stmt);
4711 if (vdef != gimple_vdef (stmt))
4712 VN_INFO (vdef)->valnum = vuse;
4715 /* Make new values available - for fully redundant LHS we
4716 continue with the next stmt above and skip this. */
4717 def_operand_p defp;
4718 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_DEF)
4719 eliminate_push_avail (DEF_FROM_PTR (defp));
4722 /* Replace destination PHI arguments. */
4723 FOR_EACH_EDGE (e, ei, b->succs)
4724 if (e->flags & EDGE_EXECUTABLE)
4725 for (gphi_iterator gsi = gsi_start_phis (e->dest);
4726 !gsi_end_p (gsi);
4727 gsi_next (&gsi))
4729 gphi *phi = gsi.phi ();
4730 use_operand_p use_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, e);
4731 tree arg = USE_FROM_PTR (use_p);
4732 if (TREE_CODE (arg) != SSA_NAME
4733 || virtual_operand_p (arg))
4734 continue;
4735 tree sprime = eliminate_avail (arg);
4736 if (sprime && may_propagate_copy (arg, sprime))
4738 propagate_value (use_p, sprime);
4739 if (TREE_CODE (sprime) == SSA_NAME)
4740 gimple_set_plf (SSA_NAME_DEF_STMT (sprime), NECESSARY, true);
4743 return NULL;
4746 /* Make no longer available leaders no longer available. */
4748 void
4749 eliminate_dom_walker::after_dom_children (basic_block)
4751 tree entry;
4752 while ((entry = el_avail_stack.pop ()) != NULL_TREE)
4754 tree valnum = VN_INFO (entry)->valnum;
4755 tree old = el_avail[SSA_NAME_VERSION (valnum)];
4756 if (old == entry)
4757 el_avail[SSA_NAME_VERSION (valnum)] = NULL_TREE;
4758 else
4759 el_avail[SSA_NAME_VERSION (valnum)] = entry;
4763 /* Eliminate fully redundant computations. */
4765 static unsigned int
4766 eliminate (bool do_pre)
4768 need_eh_cleanup = BITMAP_ALLOC (NULL);
4769 need_ab_cleanup = BITMAP_ALLOC (NULL);
4771 el_to_remove.create (0);
4772 el_to_fixup.create (0);
4773 el_todo = 0;
4774 el_avail.create (num_ssa_names);
4775 el_avail_stack.create (0);
4777 eliminate_dom_walker (CDI_DOMINATORS,
4778 do_pre).walk (cfun->cfg->x_entry_block_ptr);
4780 el_avail.release ();
4781 el_avail_stack.release ();
4783 return el_todo;
4786 /* Perform CFG cleanups made necessary by elimination. */
4788 static unsigned
4789 fini_eliminate (void)
4791 gimple_stmt_iterator gsi;
4792 gimple *stmt;
4793 unsigned todo = 0;
4795 /* We cannot remove stmts during BB walk, especially not release SSA
4796 names there as this confuses the VN machinery. The stmts ending
4797 up in el_to_remove are either stores or simple copies.
4798 Remove stmts in reverse order to make debug stmt creation possible. */
4799 while (!el_to_remove.is_empty ())
4801 stmt = el_to_remove.pop ();
4803 tree lhs;
4804 if (gimple_code (stmt) == GIMPLE_PHI)
4805 lhs = gimple_phi_result (stmt);
4806 else
4807 lhs = gimple_get_lhs (stmt);
4809 if (inserted_exprs
4810 && TREE_CODE (lhs) == SSA_NAME
4811 && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (lhs)))
4812 continue;
4814 if (dump_file && (dump_flags & TDF_DETAILS))
4816 fprintf (dump_file, "Removing dead stmt ");
4817 print_gimple_stmt (dump_file, stmt, 0, 0);
4820 gsi = gsi_for_stmt (stmt);
4821 if (gimple_code (stmt) == GIMPLE_PHI)
4822 remove_phi_node (&gsi, true);
4823 else
4825 basic_block bb = gimple_bb (stmt);
4826 unlink_stmt_vdef (stmt);
4827 if (gsi_remove (&gsi, true))
4828 bitmap_set_bit (need_eh_cleanup, bb->index);
4829 if (is_gimple_call (stmt) && stmt_can_make_abnormal_goto (stmt))
4830 bitmap_set_bit (need_ab_cleanup, bb->index);
4831 release_defs (stmt);
4834 /* Removing a stmt may expose a forwarder block. */
4835 todo |= TODO_cleanup_cfg;
4837 el_to_remove.release ();
4839 /* Fixup stmts that became noreturn calls. This may require splitting
4840 blocks and thus isn't possible during the dominator walk. Do this
4841 in reverse order so we don't inadvertedly remove a stmt we want to
4842 fixup by visiting a dominating now noreturn call first. */
4843 while (!el_to_fixup.is_empty ())
4845 stmt = el_to_fixup.pop ();
4847 if (dump_file && (dump_flags & TDF_DETAILS))
4849 fprintf (dump_file, "Fixing up noreturn call ");
4850 print_gimple_stmt (dump_file, stmt, 0);
4853 if (fixup_noreturn_call (stmt))
4854 todo |= TODO_cleanup_cfg;
4856 el_to_fixup.release ();
4858 bool do_eh_cleanup = !bitmap_empty_p (need_eh_cleanup);
4859 bool do_ab_cleanup = !bitmap_empty_p (need_ab_cleanup);
4861 if (do_eh_cleanup)
4862 gimple_purge_all_dead_eh_edges (need_eh_cleanup);
4864 if (do_ab_cleanup)
4865 gimple_purge_all_dead_abnormal_call_edges (need_ab_cleanup);
4867 BITMAP_FREE (need_eh_cleanup);
4868 BITMAP_FREE (need_ab_cleanup);
4870 if (do_eh_cleanup || do_ab_cleanup)
4871 todo |= TODO_cleanup_cfg;
4872 return todo;
4875 /* Borrow a bit of tree-ssa-dce.c for the moment.
4876 XXX: In 4.1, we should be able to just run a DCE pass after PRE, though
4877 this may be a bit faster, and we may want critical edges kept split. */
4879 /* If OP's defining statement has not already been determined to be necessary,
4880 mark that statement necessary. Return the stmt, if it is newly
4881 necessary. */
4883 static inline gimple *
4884 mark_operand_necessary (tree op)
4886 gimple *stmt;
4888 gcc_assert (op);
4890 if (TREE_CODE (op) != SSA_NAME)
4891 return NULL;
4893 stmt = SSA_NAME_DEF_STMT (op);
4894 gcc_assert (stmt);
4896 if (gimple_plf (stmt, NECESSARY)
4897 || gimple_nop_p (stmt))
4898 return NULL;
4900 gimple_set_plf (stmt, NECESSARY, true);
4901 return stmt;
4904 /* Because we don't follow exactly the standard PRE algorithm, and decide not
4905 to insert PHI nodes sometimes, and because value numbering of casts isn't
4906 perfect, we sometimes end up inserting dead code. This simple DCE-like
4907 pass removes any insertions we made that weren't actually used. */
4909 static void
4910 remove_dead_inserted_code (void)
4912 unsigned i;
4913 bitmap_iterator bi;
4914 gimple *t;
4916 auto_bitmap worklist;
4917 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4919 t = SSA_NAME_DEF_STMT (ssa_name (i));
4920 if (gimple_plf (t, NECESSARY))
4921 bitmap_set_bit (worklist, i);
4923 while (!bitmap_empty_p (worklist))
4925 i = bitmap_first_set_bit (worklist);
4926 bitmap_clear_bit (worklist, i);
4927 t = SSA_NAME_DEF_STMT (ssa_name (i));
4929 /* PHI nodes are somewhat special in that each PHI alternative has
4930 data and control dependencies. All the statements feeding the
4931 PHI node's arguments are always necessary. */
4932 if (gimple_code (t) == GIMPLE_PHI)
4934 unsigned k;
4936 for (k = 0; k < gimple_phi_num_args (t); k++)
4938 tree arg = PHI_ARG_DEF (t, k);
4939 if (TREE_CODE (arg) == SSA_NAME)
4941 gimple *n = mark_operand_necessary (arg);
4942 if (n)
4943 bitmap_set_bit (worklist, SSA_NAME_VERSION (arg));
4947 else
4949 /* Propagate through the operands. Examine all the USE, VUSE and
4950 VDEF operands in this statement. Mark all the statements
4951 which feed this statement's uses as necessary. */
4952 ssa_op_iter iter;
4953 tree use;
4955 /* The operands of VDEF expressions are also needed as they
4956 represent potential definitions that may reach this
4957 statement (VDEF operands allow us to follow def-def
4958 links). */
4960 FOR_EACH_SSA_TREE_OPERAND (use, t, iter, SSA_OP_ALL_USES)
4962 gimple *n = mark_operand_necessary (use);
4963 if (n)
4964 bitmap_set_bit (worklist, SSA_NAME_VERSION (use));
4969 unsigned int to_clear = -1U;
4970 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4972 if (to_clear != -1U)
4974 bitmap_clear_bit (inserted_exprs, to_clear);
4975 to_clear = -1U;
4977 t = SSA_NAME_DEF_STMT (ssa_name (i));
4978 if (!gimple_plf (t, NECESSARY))
4980 gimple_stmt_iterator gsi;
4982 if (dump_file && (dump_flags & TDF_DETAILS))
4984 fprintf (dump_file, "Removing unnecessary insertion:");
4985 print_gimple_stmt (dump_file, t, 0);
4988 gsi = gsi_for_stmt (t);
4989 if (gimple_code (t) == GIMPLE_PHI)
4990 remove_phi_node (&gsi, true);
4991 else
4993 gsi_remove (&gsi, true);
4994 release_defs (t);
4997 else
4998 /* eliminate_fini will skip stmts marked for removal if we
4999 already removed it and uses inserted_exprs for this, so
5000 clear those we didn't end up removing. */
5001 to_clear = i;
5003 if (to_clear != -1U)
5004 bitmap_clear_bit (inserted_exprs, to_clear);
5008 /* Initialize data structures used by PRE. */
5010 static void
5011 init_pre (void)
5013 basic_block bb;
5015 next_expression_id = 1;
5016 expressions.create (0);
5017 expressions.safe_push (NULL);
5018 value_expressions.create (get_max_value_id () + 1);
5019 value_expressions.safe_grow_cleared (get_max_value_id () + 1);
5020 name_to_id.create (0);
5022 inserted_exprs = BITMAP_ALLOC (NULL);
5024 connect_infinite_loops_to_exit ();
5025 memset (&pre_stats, 0, sizeof (pre_stats));
5027 alloc_aux_for_blocks (sizeof (struct bb_bitmap_sets));
5029 calculate_dominance_info (CDI_DOMINATORS);
5031 bitmap_obstack_initialize (&grand_bitmap_obstack);
5032 phi_translate_table = new hash_table<expr_pred_trans_d> (5110);
5033 expression_to_id = new hash_table<pre_expr_d> (num_ssa_names * 3);
5034 FOR_ALL_BB_FN (bb, cfun)
5036 EXP_GEN (bb) = bitmap_set_new ();
5037 PHI_GEN (bb) = bitmap_set_new ();
5038 TMP_GEN (bb) = bitmap_set_new ();
5039 AVAIL_OUT (bb) = bitmap_set_new ();
5044 /* Deallocate data structures used by PRE. */
5046 static void
5047 fini_pre ()
5049 value_expressions.release ();
5050 BITMAP_FREE (inserted_exprs);
5051 bitmap_obstack_release (&grand_bitmap_obstack);
5052 bitmap_set_pool.release ();
5053 pre_expr_pool.release ();
5054 delete phi_translate_table;
5055 phi_translate_table = NULL;
5056 delete expression_to_id;
5057 expression_to_id = NULL;
5058 name_to_id.release ();
5060 free_aux_for_blocks ();
5063 namespace {
5065 const pass_data pass_data_pre =
5067 GIMPLE_PASS, /* type */
5068 "pre", /* name */
5069 OPTGROUP_NONE, /* optinfo_flags */
5070 TV_TREE_PRE, /* tv_id */
5071 /* PROP_no_crit_edges is ensured by placing pass_split_crit_edges before
5072 pass_pre. */
5073 ( PROP_no_crit_edges | PROP_cfg | PROP_ssa ), /* properties_required */
5074 0, /* properties_provided */
5075 PROP_no_crit_edges, /* properties_destroyed */
5076 TODO_rebuild_alias, /* todo_flags_start */
5077 0, /* todo_flags_finish */
5080 class pass_pre : public gimple_opt_pass
5082 public:
5083 pass_pre (gcc::context *ctxt)
5084 : gimple_opt_pass (pass_data_pre, ctxt)
5087 /* opt_pass methods: */
5088 virtual bool gate (function *)
5089 { return flag_tree_pre != 0 || flag_code_hoisting != 0; }
5090 virtual unsigned int execute (function *);
5092 }; // class pass_pre
5094 unsigned int
5095 pass_pre::execute (function *fun)
5097 unsigned int todo = 0;
5099 do_partial_partial =
5100 flag_tree_partial_pre && optimize_function_for_speed_p (fun);
5102 /* This has to happen before SCCVN runs because
5103 loop_optimizer_init may create new phis, etc. */
5104 loop_optimizer_init (LOOPS_NORMAL);
5106 run_scc_vn (VN_WALK);
5108 init_pre ();
5109 scev_initialize ();
5111 /* Collect and value number expressions computed in each basic block. */
5112 compute_avail ();
5114 /* Insert can get quite slow on an incredibly large number of basic
5115 blocks due to some quadratic behavior. Until this behavior is
5116 fixed, don't run it when he have an incredibly large number of
5117 bb's. If we aren't going to run insert, there is no point in
5118 computing ANTIC, either, even though it's plenty fast. */
5119 if (n_basic_blocks_for_fn (fun) < 4000)
5121 compute_antic ();
5122 insert ();
5125 /* Make sure to remove fake edges before committing our inserts.
5126 This makes sure we don't end up with extra critical edges that
5127 we would need to split. */
5128 remove_fake_exit_edges ();
5129 gsi_commit_edge_inserts ();
5131 /* Eliminate folds statements which might (should not...) end up
5132 not keeping virtual operands up-to-date. */
5133 gcc_assert (!need_ssa_update_p (fun));
5135 /* Remove all the redundant expressions. */
5136 todo |= eliminate (true);
5138 statistics_counter_event (fun, "Insertions", pre_stats.insertions);
5139 statistics_counter_event (fun, "PA inserted", pre_stats.pa_insert);
5140 statistics_counter_event (fun, "HOIST inserted", pre_stats.hoist_insert);
5141 statistics_counter_event (fun, "New PHIs", pre_stats.phis);
5142 statistics_counter_event (fun, "Eliminated", pre_stats.eliminations);
5144 clear_expression_ids ();
5145 remove_dead_inserted_code ();
5147 scev_finalize ();
5148 todo |= fini_eliminate ();
5149 fini_pre ();
5150 loop_optimizer_finalize ();
5152 /* Restore SSA info before tail-merging as that resets it as well. */
5153 scc_vn_restore_ssa_info ();
5155 /* TODO: tail_merge_optimize may merge all predecessors of a block, in which
5156 case we can merge the block with the remaining predecessor of the block.
5157 It should either:
5158 - call merge_blocks after each tail merge iteration
5159 - call merge_blocks after all tail merge iterations
5160 - mark TODO_cleanup_cfg when necessary
5161 - share the cfg cleanup with fini_pre. */
5162 todo |= tail_merge_optimize (todo);
5164 free_scc_vn ();
5166 /* Tail merging invalidates the virtual SSA web, together with
5167 cfg-cleanup opportunities exposed by PRE this will wreck the
5168 SSA updating machinery. So make sure to run update-ssa
5169 manually, before eventually scheduling cfg-cleanup as part of
5170 the todo. */
5171 update_ssa (TODO_update_ssa_only_virtuals);
5173 return todo;
5176 } // anon namespace
5178 gimple_opt_pass *
5179 make_pass_pre (gcc::context *ctxt)
5181 return new pass_pre (ctxt);
5184 namespace {
5186 const pass_data pass_data_fre =
5188 GIMPLE_PASS, /* type */
5189 "fre", /* name */
5190 OPTGROUP_NONE, /* optinfo_flags */
5191 TV_TREE_FRE, /* tv_id */
5192 ( PROP_cfg | PROP_ssa ), /* properties_required */
5193 0, /* properties_provided */
5194 0, /* properties_destroyed */
5195 0, /* todo_flags_start */
5196 0, /* todo_flags_finish */
5199 class pass_fre : public gimple_opt_pass
5201 public:
5202 pass_fre (gcc::context *ctxt)
5203 : gimple_opt_pass (pass_data_fre, ctxt)
5206 /* opt_pass methods: */
5207 opt_pass * clone () { return new pass_fre (m_ctxt); }
5208 virtual bool gate (function *) { return flag_tree_fre != 0; }
5209 virtual unsigned int execute (function *);
5211 }; // class pass_fre
5213 unsigned int
5214 pass_fre::execute (function *fun)
5216 unsigned int todo = 0;
5218 run_scc_vn (VN_WALKREWRITE);
5220 memset (&pre_stats, 0, sizeof (pre_stats));
5222 /* Remove all the redundant expressions. */
5223 todo |= eliminate (false);
5225 todo |= fini_eliminate ();
5227 scc_vn_restore_ssa_info ();
5228 free_scc_vn ();
5230 statistics_counter_event (fun, "Insertions", pre_stats.insertions);
5231 statistics_counter_event (fun, "Eliminated", pre_stats.eliminations);
5233 return todo;
5236 } // anon namespace
5238 gimple_opt_pass *
5239 make_pass_fre (gcc::context *ctxt)
5241 return new pass_fre (ctxt);