aix.h (FP_SAVE_INLINE, [...]): Delete.
[official-gcc.git] / gcc / tree-ssa-pre.c
blobc63acec556d50a5fbf2bc32f3f3c2f86f51b6e66
1 /* SSA-PRE for trees.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Daniel Berlin <dan@dberlin.org> and Steven Bosscher
5 <stevenb@suse.de>
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "basic-block.h"
29 #include "tree-pretty-print.h"
30 #include "gimple-pretty-print.h"
31 #include "tree-inline.h"
32 #include "tree-flow.h"
33 #include "gimple.h"
34 #include "tree-dump.h"
35 #include "timevar.h"
36 #include "fibheap.h"
37 #include "hashtab.h"
38 #include "tree-iterator.h"
39 #include "alloc-pool.h"
40 #include "obstack.h"
41 #include "tree-pass.h"
42 #include "flags.h"
43 #include "bitmap.h"
44 #include "langhooks.h"
45 #include "cfgloop.h"
46 #include "tree-ssa-sccvn.h"
47 #include "tree-scalar-evolution.h"
48 #include "params.h"
49 #include "dbgcnt.h"
51 /* TODO:
53 1. Avail sets can be shared by making an avail_find_leader that
54 walks up the dominator tree and looks in those avail sets.
55 This might affect code optimality, it's unclear right now.
56 2. Strength reduction can be performed by anticipating expressions
57 we can repair later on.
58 3. We can do back-substitution or smarter value numbering to catch
59 commutative expressions split up over multiple statements.
62 /* For ease of terminology, "expression node" in the below refers to
63 every expression node but GIMPLE_ASSIGN, because GIMPLE_ASSIGNs
64 represent the actual statement containing the expressions we care about,
65 and we cache the value number by putting it in the expression. */
67 /* Basic algorithm
69 First we walk the statements to generate the AVAIL sets, the
70 EXP_GEN sets, and the tmp_gen sets. EXP_GEN sets represent the
71 generation of values/expressions by a given block. We use them
72 when computing the ANTIC sets. The AVAIL sets consist of
73 SSA_NAME's that represent values, so we know what values are
74 available in what blocks. AVAIL is a forward dataflow problem. In
75 SSA, values are never killed, so we don't need a kill set, or a
76 fixpoint iteration, in order to calculate the AVAIL sets. In
77 traditional parlance, AVAIL sets tell us the downsafety of the
78 expressions/values.
80 Next, we generate the ANTIC sets. These sets represent the
81 anticipatable expressions. ANTIC is a backwards dataflow
82 problem. An expression is anticipatable in a given block if it could
83 be generated in that block. This means that if we had to perform
84 an insertion in that block, of the value of that expression, we
85 could. Calculating the ANTIC sets requires phi translation of
86 expressions, because the flow goes backwards through phis. We must
87 iterate to a fixpoint of the ANTIC sets, because we have a kill
88 set. Even in SSA form, values are not live over the entire
89 function, only from their definition point onwards. So we have to
90 remove values from the ANTIC set once we go past the definition
91 point of the leaders that make them up.
92 compute_antic/compute_antic_aux performs this computation.
94 Third, we perform insertions to make partially redundant
95 expressions fully redundant.
97 An expression is partially redundant (excluding partial
98 anticipation) if:
100 1. It is AVAIL in some, but not all, of the predecessors of a
101 given block.
102 2. It is ANTIC in all the predecessors.
104 In order to make it fully redundant, we insert the expression into
105 the predecessors where it is not available, but is ANTIC.
107 For the partial anticipation case, we only perform insertion if it
108 is partially anticipated in some block, and fully available in all
109 of the predecessors.
111 insert/insert_aux/do_regular_insertion/do_partial_partial_insertion
112 performs these steps.
114 Fourth, we eliminate fully redundant expressions.
115 This is a simple statement walk that replaces redundant
116 calculations with the now available values. */
118 /* Representations of value numbers:
120 Value numbers are represented by a representative SSA_NAME. We
121 will create fake SSA_NAME's in situations where we need a
122 representative but do not have one (because it is a complex
123 expression). In order to facilitate storing the value numbers in
124 bitmaps, and keep the number of wasted SSA_NAME's down, we also
125 associate a value_id with each value number, and create full blown
126 ssa_name's only where we actually need them (IE in operands of
127 existing expressions).
129 Theoretically you could replace all the value_id's with
130 SSA_NAME_VERSION, but this would allocate a large number of
131 SSA_NAME's (which are each > 30 bytes) just to get a 4 byte number.
132 It would also require an additional indirection at each point we
133 use the value id. */
135 /* Representation of expressions on value numbers:
137 Expressions consisting of value numbers are represented the same
138 way as our VN internally represents them, with an additional
139 "pre_expr" wrapping around them in order to facilitate storing all
140 of the expressions in the same sets. */
142 /* Representation of sets:
144 The dataflow sets do not need to be sorted in any particular order
145 for the majority of their lifetime, are simply represented as two
146 bitmaps, one that keeps track of values present in the set, and one
147 that keeps track of expressions present in the set.
149 When we need them in topological order, we produce it on demand by
150 transforming the bitmap into an array and sorting it into topo
151 order. */
153 /* Type of expression, used to know which member of the PRE_EXPR union
154 is valid. */
156 enum pre_expr_kind
158 NAME,
159 NARY,
160 REFERENCE,
161 CONSTANT
164 typedef union pre_expr_union_d
166 tree name;
167 tree constant;
168 vn_nary_op_t nary;
169 vn_reference_t reference;
170 } pre_expr_union;
172 typedef struct pre_expr_d
174 enum pre_expr_kind kind;
175 unsigned int id;
176 pre_expr_union u;
177 } *pre_expr;
179 #define PRE_EXPR_NAME(e) (e)->u.name
180 #define PRE_EXPR_NARY(e) (e)->u.nary
181 #define PRE_EXPR_REFERENCE(e) (e)->u.reference
182 #define PRE_EXPR_CONSTANT(e) (e)->u.constant
184 static int
185 pre_expr_eq (const void *p1, const void *p2)
187 const struct pre_expr_d *e1 = (const struct pre_expr_d *) p1;
188 const struct pre_expr_d *e2 = (const struct pre_expr_d *) p2;
190 if (e1->kind != e2->kind)
191 return false;
193 switch (e1->kind)
195 case CONSTANT:
196 return vn_constant_eq_with_type (PRE_EXPR_CONSTANT (e1),
197 PRE_EXPR_CONSTANT (e2));
198 case NAME:
199 return PRE_EXPR_NAME (e1) == PRE_EXPR_NAME (e2);
200 case NARY:
201 return vn_nary_op_eq (PRE_EXPR_NARY (e1), PRE_EXPR_NARY (e2));
202 case REFERENCE:
203 return vn_reference_eq (PRE_EXPR_REFERENCE (e1),
204 PRE_EXPR_REFERENCE (e2));
205 default:
206 gcc_unreachable ();
210 static hashval_t
211 pre_expr_hash (const void *p1)
213 const struct pre_expr_d *e = (const struct pre_expr_d *) p1;
214 switch (e->kind)
216 case CONSTANT:
217 return vn_hash_constant_with_type (PRE_EXPR_CONSTANT (e));
218 case NAME:
219 return SSA_NAME_VERSION (PRE_EXPR_NAME (e));
220 case NARY:
221 return PRE_EXPR_NARY (e)->hashcode;
222 case REFERENCE:
223 return PRE_EXPR_REFERENCE (e)->hashcode;
224 default:
225 gcc_unreachable ();
230 /* Next global expression id number. */
231 static unsigned int next_expression_id;
233 /* Mapping from expression to id number we can use in bitmap sets. */
234 DEF_VEC_P (pre_expr);
235 DEF_VEC_ALLOC_P (pre_expr, heap);
236 static VEC(pre_expr, heap) *expressions;
237 static htab_t expression_to_id;
238 static VEC(unsigned, heap) *name_to_id;
240 /* Allocate an expression id for EXPR. */
242 static inline unsigned int
243 alloc_expression_id (pre_expr expr)
245 void **slot;
246 /* Make sure we won't overflow. */
247 gcc_assert (next_expression_id + 1 > next_expression_id);
248 expr->id = next_expression_id++;
249 VEC_safe_push (pre_expr, heap, expressions, expr);
250 if (expr->kind == NAME)
252 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
253 /* VEC_safe_grow_cleared allocates no headroom. Avoid frequent
254 re-allocations by using VEC_reserve upfront. There is no
255 VEC_quick_grow_cleared unfortunately. */
256 VEC_reserve (unsigned, heap, name_to_id, num_ssa_names);
257 VEC_safe_grow_cleared (unsigned, heap, name_to_id, num_ssa_names);
258 gcc_assert (VEC_index (unsigned, name_to_id, version) == 0);
259 VEC_replace (unsigned, name_to_id, version, expr->id);
261 else
263 slot = htab_find_slot (expression_to_id, expr, INSERT);
264 gcc_assert (!*slot);
265 *slot = expr;
267 return next_expression_id - 1;
270 /* Return the expression id for tree EXPR. */
272 static inline unsigned int
273 get_expression_id (const pre_expr expr)
275 return expr->id;
278 static inline unsigned int
279 lookup_expression_id (const pre_expr expr)
281 void **slot;
283 if (expr->kind == NAME)
285 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
286 if (VEC_length (unsigned, name_to_id) <= version)
287 return 0;
288 return VEC_index (unsigned, name_to_id, version);
290 else
292 slot = htab_find_slot (expression_to_id, expr, NO_INSERT);
293 if (!slot)
294 return 0;
295 return ((pre_expr)*slot)->id;
299 /* Return the existing expression id for EXPR, or create one if one
300 does not exist yet. */
302 static inline unsigned int
303 get_or_alloc_expression_id (pre_expr expr)
305 unsigned int id = lookup_expression_id (expr);
306 if (id == 0)
307 return alloc_expression_id (expr);
308 return expr->id = id;
311 /* Return the expression that has expression id ID */
313 static inline pre_expr
314 expression_for_id (unsigned int id)
316 return VEC_index (pre_expr, expressions, id);
319 /* Free the expression id field in all of our expressions,
320 and then destroy the expressions array. */
322 static void
323 clear_expression_ids (void)
325 VEC_free (pre_expr, heap, expressions);
328 static alloc_pool pre_expr_pool;
330 /* Given an SSA_NAME NAME, get or create a pre_expr to represent it. */
332 static pre_expr
333 get_or_alloc_expr_for_name (tree name)
335 struct pre_expr_d expr;
336 pre_expr result;
337 unsigned int result_id;
339 expr.kind = NAME;
340 expr.id = 0;
341 PRE_EXPR_NAME (&expr) = name;
342 result_id = lookup_expression_id (&expr);
343 if (result_id != 0)
344 return expression_for_id (result_id);
346 result = (pre_expr) pool_alloc (pre_expr_pool);
347 result->kind = NAME;
348 PRE_EXPR_NAME (result) = name;
349 alloc_expression_id (result);
350 return result;
353 static bool in_fre = false;
355 /* An unordered bitmap set. One bitmap tracks values, the other,
356 expressions. */
357 typedef struct bitmap_set
359 bitmap_head expressions;
360 bitmap_head values;
361 } *bitmap_set_t;
363 #define FOR_EACH_EXPR_ID_IN_SET(set, id, bi) \
364 EXECUTE_IF_SET_IN_BITMAP(&(set)->expressions, 0, (id), (bi))
366 #define FOR_EACH_VALUE_ID_IN_SET(set, id, bi) \
367 EXECUTE_IF_SET_IN_BITMAP(&(set)->values, 0, (id), (bi))
369 /* Mapping from value id to expressions with that value_id. */
370 DEF_VEC_P (bitmap_set_t);
371 DEF_VEC_ALLOC_P (bitmap_set_t, heap);
372 static VEC(bitmap_set_t, heap) *value_expressions;
374 /* Sets that we need to keep track of. */
375 typedef struct bb_bitmap_sets
377 /* The EXP_GEN set, which represents expressions/values generated in
378 a basic block. */
379 bitmap_set_t exp_gen;
381 /* The PHI_GEN set, which represents PHI results generated in a
382 basic block. */
383 bitmap_set_t phi_gen;
385 /* The TMP_GEN set, which represents results/temporaries generated
386 in a basic block. IE the LHS of an expression. */
387 bitmap_set_t tmp_gen;
389 /* The AVAIL_OUT set, which represents which values are available in
390 a given basic block. */
391 bitmap_set_t avail_out;
393 /* The ANTIC_IN set, which represents which values are anticipatable
394 in a given basic block. */
395 bitmap_set_t antic_in;
397 /* The PA_IN set, which represents which values are
398 partially anticipatable in a given basic block. */
399 bitmap_set_t pa_in;
401 /* The NEW_SETS set, which is used during insertion to augment the
402 AVAIL_OUT set of blocks with the new insertions performed during
403 the current iteration. */
404 bitmap_set_t new_sets;
406 /* A cache for value_dies_in_block_x. */
407 bitmap expr_dies;
409 /* True if we have visited this block during ANTIC calculation. */
410 unsigned int visited : 1;
412 /* True we have deferred processing this block during ANTIC
413 calculation until its successor is processed. */
414 unsigned int deferred : 1;
416 /* True when the block contains a call that might not return. */
417 unsigned int contains_may_not_return_call : 1;
418 } *bb_value_sets_t;
420 #define EXP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->exp_gen
421 #define PHI_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->phi_gen
422 #define TMP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->tmp_gen
423 #define AVAIL_OUT(BB) ((bb_value_sets_t) ((BB)->aux))->avail_out
424 #define ANTIC_IN(BB) ((bb_value_sets_t) ((BB)->aux))->antic_in
425 #define PA_IN(BB) ((bb_value_sets_t) ((BB)->aux))->pa_in
426 #define NEW_SETS(BB) ((bb_value_sets_t) ((BB)->aux))->new_sets
427 #define EXPR_DIES(BB) ((bb_value_sets_t) ((BB)->aux))->expr_dies
428 #define BB_VISITED(BB) ((bb_value_sets_t) ((BB)->aux))->visited
429 #define BB_DEFERRED(BB) ((bb_value_sets_t) ((BB)->aux))->deferred
430 #define BB_MAY_NOTRETURN(BB) ((bb_value_sets_t) ((BB)->aux))->contains_may_not_return_call
433 /* Basic block list in postorder. */
434 static int *postorder;
436 /* This structure is used to keep track of statistics on what
437 optimization PRE was able to perform. */
438 static struct
440 /* The number of RHS computations eliminated by PRE. */
441 int eliminations;
443 /* The number of new expressions/temporaries generated by PRE. */
444 int insertions;
446 /* The number of inserts found due to partial anticipation */
447 int pa_insert;
449 /* The number of new PHI nodes added by PRE. */
450 int phis;
452 /* The number of values found constant. */
453 int constified;
455 } pre_stats;
457 static bool do_partial_partial;
458 static pre_expr bitmap_find_leader (bitmap_set_t, unsigned int, gimple);
459 static void bitmap_value_insert_into_set (bitmap_set_t, pre_expr);
460 static void bitmap_value_replace_in_set (bitmap_set_t, pre_expr);
461 static void bitmap_set_copy (bitmap_set_t, bitmap_set_t);
462 static bool bitmap_set_contains_value (bitmap_set_t, unsigned int);
463 static void bitmap_insert_into_set (bitmap_set_t, pre_expr);
464 static void bitmap_insert_into_set_1 (bitmap_set_t, pre_expr,
465 unsigned int, bool);
466 static bitmap_set_t bitmap_set_new (void);
467 static tree create_expression_by_pieces (basic_block, pre_expr, gimple_seq *,
468 gimple, tree);
469 static tree find_or_generate_expression (basic_block, pre_expr, gimple_seq *,
470 gimple);
471 static unsigned int get_expr_value_id (pre_expr);
473 /* We can add and remove elements and entries to and from sets
474 and hash tables, so we use alloc pools for them. */
476 static alloc_pool bitmap_set_pool;
477 static bitmap_obstack grand_bitmap_obstack;
479 /* To avoid adding 300 temporary variables when we only need one, we
480 only create one temporary variable, on demand, and build ssa names
481 off that. We do have to change the variable if the types don't
482 match the current variable's type. */
483 static tree pretemp;
484 static tree storetemp;
485 static tree prephitemp;
487 /* Set of blocks with statements that have had their EH properties changed. */
488 static bitmap need_eh_cleanup;
490 /* Set of blocks with statements that have had their AB properties changed. */
491 static bitmap need_ab_cleanup;
493 /* The phi_translate_table caches phi translations for a given
494 expression and predecessor. */
496 static htab_t phi_translate_table;
498 /* A three tuple {e, pred, v} used to cache phi translations in the
499 phi_translate_table. */
501 typedef struct expr_pred_trans_d
503 /* The expression. */
504 pre_expr e;
506 /* The predecessor block along which we translated the expression. */
507 basic_block pred;
509 /* The value that resulted from the translation. */
510 pre_expr v;
512 /* The hashcode for the expression, pred pair. This is cached for
513 speed reasons. */
514 hashval_t hashcode;
515 } *expr_pred_trans_t;
516 typedef const struct expr_pred_trans_d *const_expr_pred_trans_t;
518 /* Return the hash value for a phi translation table entry. */
520 static hashval_t
521 expr_pred_trans_hash (const void *p)
523 const_expr_pred_trans_t const ve = (const_expr_pred_trans_t) p;
524 return ve->hashcode;
527 /* Return true if two phi translation table entries are the same.
528 P1 and P2 should point to the expr_pred_trans_t's to be compared.*/
530 static int
531 expr_pred_trans_eq (const void *p1, const void *p2)
533 const_expr_pred_trans_t const ve1 = (const_expr_pred_trans_t) p1;
534 const_expr_pred_trans_t const ve2 = (const_expr_pred_trans_t) p2;
535 basic_block b1 = ve1->pred;
536 basic_block b2 = ve2->pred;
538 /* If they are not translations for the same basic block, they can't
539 be equal. */
540 if (b1 != b2)
541 return false;
542 return pre_expr_eq (ve1->e, ve2->e);
545 /* Search in the phi translation table for the translation of
546 expression E in basic block PRED.
547 Return the translated value, if found, NULL otherwise. */
549 static inline pre_expr
550 phi_trans_lookup (pre_expr e, basic_block pred)
552 void **slot;
553 struct expr_pred_trans_d ept;
555 ept.e = e;
556 ept.pred = pred;
557 ept.hashcode = iterative_hash_hashval_t (pre_expr_hash (e), pred->index);
558 slot = htab_find_slot_with_hash (phi_translate_table, &ept, ept.hashcode,
559 NO_INSERT);
560 if (!slot)
561 return NULL;
562 else
563 return ((expr_pred_trans_t) *slot)->v;
567 /* Add the tuple mapping from {expression E, basic block PRED} to
568 value V, to the phi translation table. */
570 static inline void
571 phi_trans_add (pre_expr e, pre_expr v, basic_block pred)
573 void **slot;
574 expr_pred_trans_t new_pair = XNEW (struct expr_pred_trans_d);
575 new_pair->e = e;
576 new_pair->pred = pred;
577 new_pair->v = v;
578 new_pair->hashcode = iterative_hash_hashval_t (pre_expr_hash (e),
579 pred->index);
581 slot = htab_find_slot_with_hash (phi_translate_table, new_pair,
582 new_pair->hashcode, INSERT);
583 free (*slot);
584 *slot = (void *) new_pair;
588 /* Add expression E to the expression set of value id V. */
590 static void
591 add_to_value (unsigned int v, pre_expr e)
593 bitmap_set_t set;
595 gcc_assert (get_expr_value_id (e) == v);
597 if (v >= VEC_length (bitmap_set_t, value_expressions))
599 VEC_safe_grow_cleared (bitmap_set_t, heap, value_expressions,
600 v + 1);
603 set = VEC_index (bitmap_set_t, value_expressions, v);
604 if (!set)
606 set = bitmap_set_new ();
607 VEC_replace (bitmap_set_t, value_expressions, v, set);
610 bitmap_insert_into_set_1 (set, e, v, true);
613 /* Create a new bitmap set and return it. */
615 static bitmap_set_t
616 bitmap_set_new (void)
618 bitmap_set_t ret = (bitmap_set_t) pool_alloc (bitmap_set_pool);
619 bitmap_initialize (&ret->expressions, &grand_bitmap_obstack);
620 bitmap_initialize (&ret->values, &grand_bitmap_obstack);
621 return ret;
624 /* Return the value id for a PRE expression EXPR. */
626 static unsigned int
627 get_expr_value_id (pre_expr expr)
629 switch (expr->kind)
631 case CONSTANT:
633 unsigned int id;
634 id = get_constant_value_id (PRE_EXPR_CONSTANT (expr));
635 if (id == 0)
637 id = get_or_alloc_constant_value_id (PRE_EXPR_CONSTANT (expr));
638 add_to_value (id, expr);
640 return id;
642 case NAME:
643 return VN_INFO (PRE_EXPR_NAME (expr))->value_id;
644 case NARY:
645 return PRE_EXPR_NARY (expr)->value_id;
646 case REFERENCE:
647 return PRE_EXPR_REFERENCE (expr)->value_id;
648 default:
649 gcc_unreachable ();
653 /* Remove an expression EXPR from a bitmapped set. */
655 static void
656 bitmap_remove_from_set (bitmap_set_t set, pre_expr expr)
658 unsigned int val = get_expr_value_id (expr);
659 if (!value_id_constant_p (val))
661 bitmap_clear_bit (&set->values, val);
662 bitmap_clear_bit (&set->expressions, get_expression_id (expr));
666 static void
667 bitmap_insert_into_set_1 (bitmap_set_t set, pre_expr expr,
668 unsigned int val, bool allow_constants)
670 if (allow_constants || !value_id_constant_p (val))
672 /* We specifically expect this and only this function to be able to
673 insert constants into a set. */
674 bitmap_set_bit (&set->values, val);
675 bitmap_set_bit (&set->expressions, get_or_alloc_expression_id (expr));
679 /* Insert an expression EXPR into a bitmapped set. */
681 static void
682 bitmap_insert_into_set (bitmap_set_t set, pre_expr expr)
684 bitmap_insert_into_set_1 (set, expr, get_expr_value_id (expr), false);
687 /* Copy a bitmapped set ORIG, into bitmapped set DEST. */
689 static void
690 bitmap_set_copy (bitmap_set_t dest, bitmap_set_t orig)
692 bitmap_copy (&dest->expressions, &orig->expressions);
693 bitmap_copy (&dest->values, &orig->values);
697 /* Free memory used up by SET. */
698 static void
699 bitmap_set_free (bitmap_set_t set)
701 bitmap_clear (&set->expressions);
702 bitmap_clear (&set->values);
706 /* Generate an topological-ordered array of bitmap set SET. */
708 static VEC(pre_expr, heap) *
709 sorted_array_from_bitmap_set (bitmap_set_t set)
711 unsigned int i, j;
712 bitmap_iterator bi, bj;
713 VEC(pre_expr, heap) *result;
715 /* Pre-allocate roughly enough space for the array. */
716 result = VEC_alloc (pre_expr, heap, bitmap_count_bits (&set->values));
718 FOR_EACH_VALUE_ID_IN_SET (set, i, bi)
720 /* The number of expressions having a given value is usually
721 relatively small. Thus, rather than making a vector of all
722 the expressions and sorting it by value-id, we walk the values
723 and check in the reverse mapping that tells us what expressions
724 have a given value, to filter those in our set. As a result,
725 the expressions are inserted in value-id order, which means
726 topological order.
728 If this is somehow a significant lose for some cases, we can
729 choose which set to walk based on the set size. */
730 bitmap_set_t exprset = VEC_index (bitmap_set_t, value_expressions, i);
731 FOR_EACH_EXPR_ID_IN_SET (exprset, j, bj)
733 if (bitmap_bit_p (&set->expressions, j))
734 VEC_safe_push (pre_expr, heap, result, expression_for_id (j));
738 return result;
741 /* Perform bitmapped set operation DEST &= ORIG. */
743 static void
744 bitmap_set_and (bitmap_set_t dest, bitmap_set_t orig)
746 bitmap_iterator bi;
747 unsigned int i;
749 if (dest != orig)
751 bitmap_head temp;
752 bitmap_initialize (&temp, &grand_bitmap_obstack);
754 bitmap_and_into (&dest->values, &orig->values);
755 bitmap_copy (&temp, &dest->expressions);
756 EXECUTE_IF_SET_IN_BITMAP (&temp, 0, i, bi)
758 pre_expr expr = expression_for_id (i);
759 unsigned int value_id = get_expr_value_id (expr);
760 if (!bitmap_bit_p (&dest->values, value_id))
761 bitmap_clear_bit (&dest->expressions, i);
763 bitmap_clear (&temp);
767 /* Subtract all values and expressions contained in ORIG from DEST. */
769 static bitmap_set_t
770 bitmap_set_subtract (bitmap_set_t dest, bitmap_set_t orig)
772 bitmap_set_t result = bitmap_set_new ();
773 bitmap_iterator bi;
774 unsigned int i;
776 bitmap_and_compl (&result->expressions, &dest->expressions,
777 &orig->expressions);
779 FOR_EACH_EXPR_ID_IN_SET (result, i, bi)
781 pre_expr expr = expression_for_id (i);
782 unsigned int value_id = get_expr_value_id (expr);
783 bitmap_set_bit (&result->values, value_id);
786 return result;
789 /* Subtract all the values in bitmap set B from bitmap set A. */
791 static void
792 bitmap_set_subtract_values (bitmap_set_t a, bitmap_set_t b)
794 unsigned int i;
795 bitmap_iterator bi;
796 bitmap_head temp;
798 bitmap_initialize (&temp, &grand_bitmap_obstack);
800 bitmap_copy (&temp, &a->expressions);
801 EXECUTE_IF_SET_IN_BITMAP (&temp, 0, i, bi)
803 pre_expr expr = expression_for_id (i);
804 if (bitmap_set_contains_value (b, get_expr_value_id (expr)))
805 bitmap_remove_from_set (a, expr);
807 bitmap_clear (&temp);
811 /* Return true if bitmapped set SET contains the value VALUE_ID. */
813 static bool
814 bitmap_set_contains_value (bitmap_set_t set, unsigned int value_id)
816 if (value_id_constant_p (value_id))
817 return true;
819 if (!set || bitmap_empty_p (&set->expressions))
820 return false;
822 return bitmap_bit_p (&set->values, value_id);
825 static inline bool
826 bitmap_set_contains_expr (bitmap_set_t set, const pre_expr expr)
828 return bitmap_bit_p (&set->expressions, get_expression_id (expr));
831 /* Replace an instance of value LOOKFOR with expression EXPR in SET. */
833 static void
834 bitmap_set_replace_value (bitmap_set_t set, unsigned int lookfor,
835 const pre_expr expr)
837 bitmap_set_t exprset;
838 unsigned int i;
839 bitmap_iterator bi;
841 if (value_id_constant_p (lookfor))
842 return;
844 if (!bitmap_set_contains_value (set, lookfor))
845 return;
847 /* The number of expressions having a given value is usually
848 significantly less than the total number of expressions in SET.
849 Thus, rather than check, for each expression in SET, whether it
850 has the value LOOKFOR, we walk the reverse mapping that tells us
851 what expressions have a given value, and see if any of those
852 expressions are in our set. For large testcases, this is about
853 5-10x faster than walking the bitmap. If this is somehow a
854 significant lose for some cases, we can choose which set to walk
855 based on the set size. */
856 exprset = VEC_index (bitmap_set_t, value_expressions, lookfor);
857 FOR_EACH_EXPR_ID_IN_SET (exprset, i, bi)
859 if (bitmap_clear_bit (&set->expressions, i))
861 bitmap_set_bit (&set->expressions, get_expression_id (expr));
862 return;
867 /* Return true if two bitmap sets are equal. */
869 static bool
870 bitmap_set_equal (bitmap_set_t a, bitmap_set_t b)
872 return bitmap_equal_p (&a->values, &b->values);
875 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
876 and add it otherwise. */
878 static void
879 bitmap_value_replace_in_set (bitmap_set_t set, pre_expr expr)
881 unsigned int val = get_expr_value_id (expr);
883 if (bitmap_set_contains_value (set, val))
884 bitmap_set_replace_value (set, val, expr);
885 else
886 bitmap_insert_into_set (set, expr);
889 /* Insert EXPR into SET if EXPR's value is not already present in
890 SET. */
892 static void
893 bitmap_value_insert_into_set (bitmap_set_t set, pre_expr expr)
895 unsigned int val = get_expr_value_id (expr);
897 gcc_checking_assert (expr->id == get_or_alloc_expression_id (expr));
899 /* Constant values are always considered to be part of the set. */
900 if (value_id_constant_p (val))
901 return;
903 /* If the value membership changed, add the expression. */
904 if (bitmap_set_bit (&set->values, val))
905 bitmap_set_bit (&set->expressions, expr->id);
908 /* Print out EXPR to outfile. */
910 static void
911 print_pre_expr (FILE *outfile, const pre_expr expr)
913 switch (expr->kind)
915 case CONSTANT:
916 print_generic_expr (outfile, PRE_EXPR_CONSTANT (expr), 0);
917 break;
918 case NAME:
919 print_generic_expr (outfile, PRE_EXPR_NAME (expr), 0);
920 break;
921 case NARY:
923 unsigned int i;
924 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
925 fprintf (outfile, "{%s,", tree_code_name [nary->opcode]);
926 for (i = 0; i < nary->length; i++)
928 print_generic_expr (outfile, nary->op[i], 0);
929 if (i != (unsigned) nary->length - 1)
930 fprintf (outfile, ",");
932 fprintf (outfile, "}");
934 break;
936 case REFERENCE:
938 vn_reference_op_t vro;
939 unsigned int i;
940 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
941 fprintf (outfile, "{");
942 for (i = 0;
943 VEC_iterate (vn_reference_op_s, ref->operands, i, vro);
944 i++)
946 bool closebrace = false;
947 if (vro->opcode != SSA_NAME
948 && TREE_CODE_CLASS (vro->opcode) != tcc_declaration)
950 fprintf (outfile, "%s", tree_code_name [vro->opcode]);
951 if (vro->op0)
953 fprintf (outfile, "<");
954 closebrace = true;
957 if (vro->op0)
959 print_generic_expr (outfile, vro->op0, 0);
960 if (vro->op1)
962 fprintf (outfile, ",");
963 print_generic_expr (outfile, vro->op1, 0);
965 if (vro->op2)
967 fprintf (outfile, ",");
968 print_generic_expr (outfile, vro->op2, 0);
971 if (closebrace)
972 fprintf (outfile, ">");
973 if (i != VEC_length (vn_reference_op_s, ref->operands) - 1)
974 fprintf (outfile, ",");
976 fprintf (outfile, "}");
977 if (ref->vuse)
979 fprintf (outfile, "@");
980 print_generic_expr (outfile, ref->vuse, 0);
983 break;
986 void debug_pre_expr (pre_expr);
988 /* Like print_pre_expr but always prints to stderr. */
989 DEBUG_FUNCTION void
990 debug_pre_expr (pre_expr e)
992 print_pre_expr (stderr, e);
993 fprintf (stderr, "\n");
996 /* Print out SET to OUTFILE. */
998 static void
999 print_bitmap_set (FILE *outfile, bitmap_set_t set,
1000 const char *setname, int blockindex)
1002 fprintf (outfile, "%s[%d] := { ", setname, blockindex);
1003 if (set)
1005 bool first = true;
1006 unsigned i;
1007 bitmap_iterator bi;
1009 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
1011 const pre_expr expr = expression_for_id (i);
1013 if (!first)
1014 fprintf (outfile, ", ");
1015 first = false;
1016 print_pre_expr (outfile, expr);
1018 fprintf (outfile, " (%04d)", get_expr_value_id (expr));
1021 fprintf (outfile, " }\n");
1024 void debug_bitmap_set (bitmap_set_t);
1026 DEBUG_FUNCTION void
1027 debug_bitmap_set (bitmap_set_t set)
1029 print_bitmap_set (stderr, set, "debug", 0);
1032 void debug_bitmap_sets_for (basic_block);
1034 DEBUG_FUNCTION void
1035 debug_bitmap_sets_for (basic_block bb)
1037 print_bitmap_set (stderr, AVAIL_OUT (bb), "avail_out", bb->index);
1038 if (!in_fre)
1040 print_bitmap_set (stderr, EXP_GEN (bb), "exp_gen", bb->index);
1041 print_bitmap_set (stderr, PHI_GEN (bb), "phi_gen", bb->index);
1042 print_bitmap_set (stderr, TMP_GEN (bb), "tmp_gen", bb->index);
1043 print_bitmap_set (stderr, ANTIC_IN (bb), "antic_in", bb->index);
1044 if (do_partial_partial)
1045 print_bitmap_set (stderr, PA_IN (bb), "pa_in", bb->index);
1046 print_bitmap_set (stderr, NEW_SETS (bb), "new_sets", bb->index);
1050 /* Print out the expressions that have VAL to OUTFILE. */
1052 static void
1053 print_value_expressions (FILE *outfile, unsigned int val)
1055 bitmap_set_t set = VEC_index (bitmap_set_t, value_expressions, val);
1056 if (set)
1058 char s[10];
1059 sprintf (s, "%04d", val);
1060 print_bitmap_set (outfile, set, s, 0);
1065 DEBUG_FUNCTION void
1066 debug_value_expressions (unsigned int val)
1068 print_value_expressions (stderr, val);
1071 /* Given a CONSTANT, allocate a new CONSTANT type PRE_EXPR to
1072 represent it. */
1074 static pre_expr
1075 get_or_alloc_expr_for_constant (tree constant)
1077 unsigned int result_id;
1078 unsigned int value_id;
1079 struct pre_expr_d expr;
1080 pre_expr newexpr;
1082 expr.kind = CONSTANT;
1083 PRE_EXPR_CONSTANT (&expr) = constant;
1084 result_id = lookup_expression_id (&expr);
1085 if (result_id != 0)
1086 return expression_for_id (result_id);
1088 newexpr = (pre_expr) pool_alloc (pre_expr_pool);
1089 newexpr->kind = CONSTANT;
1090 PRE_EXPR_CONSTANT (newexpr) = constant;
1091 alloc_expression_id (newexpr);
1092 value_id = get_or_alloc_constant_value_id (constant);
1093 add_to_value (value_id, newexpr);
1094 return newexpr;
1097 /* Given a value id V, find the actual tree representing the constant
1098 value if there is one, and return it. Return NULL if we can't find
1099 a constant. */
1101 static tree
1102 get_constant_for_value_id (unsigned int v)
1104 if (value_id_constant_p (v))
1106 unsigned int i;
1107 bitmap_iterator bi;
1108 bitmap_set_t exprset = VEC_index (bitmap_set_t, value_expressions, v);
1110 FOR_EACH_EXPR_ID_IN_SET (exprset, i, bi)
1112 pre_expr expr = expression_for_id (i);
1113 if (expr->kind == CONSTANT)
1114 return PRE_EXPR_CONSTANT (expr);
1117 return NULL;
1120 /* Get or allocate a pre_expr for a piece of GIMPLE, and return it.
1121 Currently only supports constants and SSA_NAMES. */
1122 static pre_expr
1123 get_or_alloc_expr_for (tree t)
1125 if (TREE_CODE (t) == SSA_NAME)
1126 return get_or_alloc_expr_for_name (t);
1127 else if (is_gimple_min_invariant (t))
1128 return get_or_alloc_expr_for_constant (t);
1129 else
1131 /* More complex expressions can result from SCCVN expression
1132 simplification that inserts values for them. As they all
1133 do not have VOPs the get handled by the nary ops struct. */
1134 vn_nary_op_t result;
1135 unsigned int result_id;
1136 vn_nary_op_lookup (t, &result);
1137 if (result != NULL)
1139 pre_expr e = (pre_expr) pool_alloc (pre_expr_pool);
1140 e->kind = NARY;
1141 PRE_EXPR_NARY (e) = result;
1142 result_id = lookup_expression_id (e);
1143 if (result_id != 0)
1145 pool_free (pre_expr_pool, e);
1146 e = expression_for_id (result_id);
1147 return e;
1149 alloc_expression_id (e);
1150 return e;
1153 return NULL;
1156 /* Return the folded version of T if T, when folded, is a gimple
1157 min_invariant. Otherwise, return T. */
1159 static pre_expr
1160 fully_constant_expression (pre_expr e)
1162 switch (e->kind)
1164 case CONSTANT:
1165 return e;
1166 case NARY:
1168 vn_nary_op_t nary = PRE_EXPR_NARY (e);
1169 switch (TREE_CODE_CLASS (nary->opcode))
1171 case tcc_binary:
1172 case tcc_comparison:
1174 /* We have to go from trees to pre exprs to value ids to
1175 constants. */
1176 tree naryop0 = nary->op[0];
1177 tree naryop1 = nary->op[1];
1178 tree result;
1179 if (!is_gimple_min_invariant (naryop0))
1181 pre_expr rep0 = get_or_alloc_expr_for (naryop0);
1182 unsigned int vrep0 = get_expr_value_id (rep0);
1183 tree const0 = get_constant_for_value_id (vrep0);
1184 if (const0)
1185 naryop0 = fold_convert (TREE_TYPE (naryop0), const0);
1187 if (!is_gimple_min_invariant (naryop1))
1189 pre_expr rep1 = get_or_alloc_expr_for (naryop1);
1190 unsigned int vrep1 = get_expr_value_id (rep1);
1191 tree const1 = get_constant_for_value_id (vrep1);
1192 if (const1)
1193 naryop1 = fold_convert (TREE_TYPE (naryop1), const1);
1195 result = fold_binary (nary->opcode, nary->type,
1196 naryop0, naryop1);
1197 if (result && is_gimple_min_invariant (result))
1198 return get_or_alloc_expr_for_constant (result);
1199 /* We might have simplified the expression to a
1200 SSA_NAME for example from x_1 * 1. But we cannot
1201 insert a PHI for x_1 unconditionally as x_1 might
1202 not be available readily. */
1203 return e;
1205 case tcc_reference:
1206 if (nary->opcode != REALPART_EXPR
1207 && nary->opcode != IMAGPART_EXPR
1208 && nary->opcode != VIEW_CONVERT_EXPR)
1209 return e;
1210 /* Fallthrough. */
1211 case tcc_unary:
1213 /* We have to go from trees to pre exprs to value ids to
1214 constants. */
1215 tree naryop0 = nary->op[0];
1216 tree const0, result;
1217 if (is_gimple_min_invariant (naryop0))
1218 const0 = naryop0;
1219 else
1221 pre_expr rep0 = get_or_alloc_expr_for (naryop0);
1222 unsigned int vrep0 = get_expr_value_id (rep0);
1223 const0 = get_constant_for_value_id (vrep0);
1225 result = NULL;
1226 if (const0)
1228 tree type1 = TREE_TYPE (nary->op[0]);
1229 const0 = fold_convert (type1, const0);
1230 result = fold_unary (nary->opcode, nary->type, const0);
1232 if (result && is_gimple_min_invariant (result))
1233 return get_or_alloc_expr_for_constant (result);
1234 return e;
1236 default:
1237 return e;
1240 case REFERENCE:
1242 vn_reference_t ref = PRE_EXPR_REFERENCE (e);
1243 tree folded;
1244 if ((folded = fully_constant_vn_reference_p (ref)))
1245 return get_or_alloc_expr_for_constant (folded);
1246 return e;
1248 default:
1249 return e;
1251 return e;
1254 /* Translate the VUSE backwards through phi nodes in PHIBLOCK, so that
1255 it has the value it would have in BLOCK. Set *SAME_VALID to true
1256 in case the new vuse doesn't change the value id of the OPERANDS. */
1258 static tree
1259 translate_vuse_through_block (VEC (vn_reference_op_s, heap) *operands,
1260 alias_set_type set, tree type, tree vuse,
1261 basic_block phiblock,
1262 basic_block block, bool *same_valid)
1264 gimple phi = SSA_NAME_DEF_STMT (vuse);
1265 ao_ref ref;
1266 edge e = NULL;
1267 bool use_oracle;
1269 *same_valid = true;
1271 if (gimple_bb (phi) != phiblock)
1272 return vuse;
1274 use_oracle = ao_ref_init_from_vn_reference (&ref, set, type, operands);
1276 /* Use the alias-oracle to find either the PHI node in this block,
1277 the first VUSE used in this block that is equivalent to vuse or
1278 the first VUSE which definition in this block kills the value. */
1279 if (gimple_code (phi) == GIMPLE_PHI)
1280 e = find_edge (block, phiblock);
1281 else if (use_oracle)
1282 while (!stmt_may_clobber_ref_p_1 (phi, &ref))
1284 vuse = gimple_vuse (phi);
1285 phi = SSA_NAME_DEF_STMT (vuse);
1286 if (gimple_bb (phi) != phiblock)
1287 return vuse;
1288 if (gimple_code (phi) == GIMPLE_PHI)
1290 e = find_edge (block, phiblock);
1291 break;
1294 else
1295 return NULL_TREE;
1297 if (e)
1299 if (use_oracle)
1301 bitmap visited = NULL;
1302 /* Try to find a vuse that dominates this phi node by skipping
1303 non-clobbering statements. */
1304 vuse = get_continuation_for_phi (phi, &ref, &visited);
1305 if (visited)
1306 BITMAP_FREE (visited);
1308 else
1309 vuse = NULL_TREE;
1310 if (!vuse)
1312 /* If we didn't find any, the value ID can't stay the same,
1313 but return the translated vuse. */
1314 *same_valid = false;
1315 vuse = PHI_ARG_DEF (phi, e->dest_idx);
1317 /* ??? We would like to return vuse here as this is the canonical
1318 upmost vdef that this reference is associated with. But during
1319 insertion of the references into the hash tables we only ever
1320 directly insert with their direct gimple_vuse, hence returning
1321 something else would make us not find the other expression. */
1322 return PHI_ARG_DEF (phi, e->dest_idx);
1325 return NULL_TREE;
1328 /* Like bitmap_find_leader, but checks for the value existing in SET1 *or*
1329 SET2. This is used to avoid making a set consisting of the union
1330 of PA_IN and ANTIC_IN during insert. */
1332 static inline pre_expr
1333 find_leader_in_sets (unsigned int val, bitmap_set_t set1, bitmap_set_t set2)
1335 pre_expr result;
1337 result = bitmap_find_leader (set1, val, NULL);
1338 if (!result && set2)
1339 result = bitmap_find_leader (set2, val, NULL);
1340 return result;
1343 /* Get the tree type for our PRE expression e. */
1345 static tree
1346 get_expr_type (const pre_expr e)
1348 switch (e->kind)
1350 case NAME:
1351 return TREE_TYPE (PRE_EXPR_NAME (e));
1352 case CONSTANT:
1353 return TREE_TYPE (PRE_EXPR_CONSTANT (e));
1354 case REFERENCE:
1355 return PRE_EXPR_REFERENCE (e)->type;
1356 case NARY:
1357 return PRE_EXPR_NARY (e)->type;
1359 gcc_unreachable();
1362 /* Get a representative SSA_NAME for a given expression.
1363 Since all of our sub-expressions are treated as values, we require
1364 them to be SSA_NAME's for simplicity.
1365 Prior versions of GVNPRE used to use "value handles" here, so that
1366 an expression would be VH.11 + VH.10 instead of d_3 + e_6. In
1367 either case, the operands are really values (IE we do not expect
1368 them to be usable without finding leaders). */
1370 static tree
1371 get_representative_for (const pre_expr e)
1373 tree exprtype;
1374 tree name;
1375 unsigned int value_id = get_expr_value_id (e);
1377 switch (e->kind)
1379 case NAME:
1380 return PRE_EXPR_NAME (e);
1381 case CONSTANT:
1382 return PRE_EXPR_CONSTANT (e);
1383 case NARY:
1384 case REFERENCE:
1386 /* Go through all of the expressions representing this value
1387 and pick out an SSA_NAME. */
1388 unsigned int i;
1389 bitmap_iterator bi;
1390 bitmap_set_t exprs = VEC_index (bitmap_set_t, value_expressions,
1391 value_id);
1392 FOR_EACH_EXPR_ID_IN_SET (exprs, i, bi)
1394 pre_expr rep = expression_for_id (i);
1395 if (rep->kind == NAME)
1396 return PRE_EXPR_NAME (rep);
1399 break;
1401 /* If we reached here we couldn't find an SSA_NAME. This can
1402 happen when we've discovered a value that has never appeared in
1403 the program as set to an SSA_NAME, most likely as the result of
1404 phi translation. */
1405 if (dump_file)
1407 fprintf (dump_file,
1408 "Could not find SSA_NAME representative for expression:");
1409 print_pre_expr (dump_file, e);
1410 fprintf (dump_file, "\n");
1413 exprtype = get_expr_type (e);
1415 /* Build and insert the assignment of the end result to the temporary
1416 that we will return. */
1417 if (!pretemp || exprtype != TREE_TYPE (pretemp))
1419 pretemp = create_tmp_reg (exprtype, "pretmp");
1420 add_referenced_var (pretemp);
1423 name = make_ssa_name (pretemp, gimple_build_nop ());
1424 VN_INFO_GET (name)->value_id = value_id;
1425 if (e->kind == CONSTANT)
1426 VN_INFO (name)->valnum = PRE_EXPR_CONSTANT (e);
1427 else
1428 VN_INFO (name)->valnum = name;
1430 add_to_value (value_id, get_or_alloc_expr_for_name (name));
1431 if (dump_file)
1433 fprintf (dump_file, "Created SSA_NAME representative ");
1434 print_generic_expr (dump_file, name, 0);
1435 fprintf (dump_file, " for expression:");
1436 print_pre_expr (dump_file, e);
1437 fprintf (dump_file, "\n");
1440 return name;
1445 static pre_expr
1446 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1447 basic_block pred, basic_block phiblock);
1449 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1450 the phis in PRED. Return NULL if we can't find a leader for each part
1451 of the translated expression. */
1453 static pre_expr
1454 phi_translate_1 (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1455 basic_block pred, basic_block phiblock)
1457 switch (expr->kind)
1459 case NARY:
1461 unsigned int i;
1462 bool changed = false;
1463 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1464 vn_nary_op_t newnary = XALLOCAVAR (struct vn_nary_op_s,
1465 sizeof_vn_nary_op (nary->length));
1466 memcpy (newnary, nary, sizeof_vn_nary_op (nary->length));
1468 for (i = 0; i < newnary->length; i++)
1470 if (TREE_CODE (newnary->op[i]) != SSA_NAME)
1471 continue;
1472 else
1474 pre_expr leader, result;
1475 unsigned int op_val_id = VN_INFO (newnary->op[i])->value_id;
1476 leader = find_leader_in_sets (op_val_id, set1, set2);
1477 result = phi_translate (leader, set1, set2, pred, phiblock);
1478 if (result && result != leader)
1480 tree name = get_representative_for (result);
1481 if (!name)
1482 return NULL;
1483 newnary->op[i] = name;
1485 else if (!result)
1486 return NULL;
1488 changed |= newnary->op[i] != nary->op[i];
1491 if (changed)
1493 pre_expr constant;
1494 unsigned int new_val_id;
1496 tree result = vn_nary_op_lookup_pieces (newnary->length,
1497 newnary->opcode,
1498 newnary->type,
1499 &newnary->op[0],
1500 &nary);
1501 if (result && is_gimple_min_invariant (result))
1502 return get_or_alloc_expr_for_constant (result);
1504 expr = (pre_expr) pool_alloc (pre_expr_pool);
1505 expr->kind = NARY;
1506 expr->id = 0;
1507 if (nary)
1509 PRE_EXPR_NARY (expr) = nary;
1510 constant = fully_constant_expression (expr);
1511 if (constant != expr)
1512 return constant;
1514 new_val_id = nary->value_id;
1515 get_or_alloc_expression_id (expr);
1517 else
1519 new_val_id = get_next_value_id ();
1520 VEC_safe_grow_cleared (bitmap_set_t, heap,
1521 value_expressions,
1522 get_max_value_id() + 1);
1523 nary = vn_nary_op_insert_pieces (newnary->length,
1524 newnary->opcode,
1525 newnary->type,
1526 &newnary->op[0],
1527 result, new_val_id);
1528 PRE_EXPR_NARY (expr) = nary;
1529 constant = fully_constant_expression (expr);
1530 if (constant != expr)
1531 return constant;
1532 get_or_alloc_expression_id (expr);
1534 add_to_value (new_val_id, expr);
1536 return expr;
1538 break;
1540 case REFERENCE:
1542 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1543 VEC (vn_reference_op_s, heap) *operands = ref->operands;
1544 tree vuse = ref->vuse;
1545 tree newvuse = vuse;
1546 VEC (vn_reference_op_s, heap) *newoperands = NULL;
1547 bool changed = false, same_valid = true;
1548 unsigned int i, j, n;
1549 vn_reference_op_t operand;
1550 vn_reference_t newref;
1552 for (i = 0, j = 0;
1553 VEC_iterate (vn_reference_op_s, operands, i, operand); i++, j++)
1555 pre_expr opresult;
1556 pre_expr leader;
1557 tree op[3];
1558 tree type = operand->type;
1559 vn_reference_op_s newop = *operand;
1560 op[0] = operand->op0;
1561 op[1] = operand->op1;
1562 op[2] = operand->op2;
1563 for (n = 0; n < 3; ++n)
1565 unsigned int op_val_id;
1566 if (!op[n])
1567 continue;
1568 if (TREE_CODE (op[n]) != SSA_NAME)
1570 /* We can't possibly insert these. */
1571 if (n != 0
1572 && !is_gimple_min_invariant (op[n]))
1573 break;
1574 continue;
1576 op_val_id = VN_INFO (op[n])->value_id;
1577 leader = find_leader_in_sets (op_val_id, set1, set2);
1578 if (!leader)
1579 break;
1580 /* Make sure we do not recursively translate ourselves
1581 like for translating a[n_1] with the leader for
1582 n_1 being a[n_1]. */
1583 if (get_expression_id (leader) != get_expression_id (expr))
1585 opresult = phi_translate (leader, set1, set2,
1586 pred, phiblock);
1587 if (!opresult)
1588 break;
1589 if (opresult != leader)
1591 tree name = get_representative_for (opresult);
1592 if (!name)
1593 break;
1594 changed |= name != op[n];
1595 op[n] = name;
1599 if (n != 3)
1601 if (newoperands)
1602 VEC_free (vn_reference_op_s, heap, newoperands);
1603 return NULL;
1605 if (!newoperands)
1606 newoperands = VEC_copy (vn_reference_op_s, heap, operands);
1607 /* We may have changed from an SSA_NAME to a constant */
1608 if (newop.opcode == SSA_NAME && TREE_CODE (op[0]) != SSA_NAME)
1609 newop.opcode = TREE_CODE (op[0]);
1610 newop.type = type;
1611 newop.op0 = op[0];
1612 newop.op1 = op[1];
1613 newop.op2 = op[2];
1614 /* If it transforms a non-constant ARRAY_REF into a constant
1615 one, adjust the constant offset. */
1616 if (newop.opcode == ARRAY_REF
1617 && newop.off == -1
1618 && TREE_CODE (op[0]) == INTEGER_CST
1619 && TREE_CODE (op[1]) == INTEGER_CST
1620 && TREE_CODE (op[2]) == INTEGER_CST)
1622 double_int off = tree_to_double_int (op[0]);
1623 off = double_int_add (off,
1624 double_int_neg
1625 (tree_to_double_int (op[1])));
1626 off = double_int_mul (off, tree_to_double_int (op[2]));
1627 if (double_int_fits_in_shwi_p (off))
1628 newop.off = off.low;
1630 VEC_replace (vn_reference_op_s, newoperands, j, &newop);
1631 /* If it transforms from an SSA_NAME to an address, fold with
1632 a preceding indirect reference. */
1633 if (j > 0 && op[0] && TREE_CODE (op[0]) == ADDR_EXPR
1634 && VEC_index (vn_reference_op_s,
1635 newoperands, j - 1)->opcode == MEM_REF)
1636 vn_reference_fold_indirect (&newoperands, &j);
1638 if (i != VEC_length (vn_reference_op_s, operands))
1640 if (newoperands)
1641 VEC_free (vn_reference_op_s, heap, newoperands);
1642 return NULL;
1645 if (vuse)
1647 newvuse = translate_vuse_through_block (newoperands,
1648 ref->set, ref->type,
1649 vuse, phiblock, pred,
1650 &same_valid);
1651 if (newvuse == NULL_TREE)
1653 VEC_free (vn_reference_op_s, heap, newoperands);
1654 return NULL;
1658 if (changed || newvuse != vuse)
1660 unsigned int new_val_id;
1661 pre_expr constant;
1663 tree result = vn_reference_lookup_pieces (newvuse, ref->set,
1664 ref->type,
1665 newoperands,
1666 &newref, VN_WALK);
1667 if (result)
1668 VEC_free (vn_reference_op_s, heap, newoperands);
1670 /* We can always insert constants, so if we have a partial
1671 redundant constant load of another type try to translate it
1672 to a constant of appropriate type. */
1673 if (result && is_gimple_min_invariant (result))
1675 tree tem = result;
1676 if (!useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1678 tem = fold_unary (VIEW_CONVERT_EXPR, ref->type, result);
1679 if (tem && !is_gimple_min_invariant (tem))
1680 tem = NULL_TREE;
1682 if (tem)
1683 return get_or_alloc_expr_for_constant (tem);
1686 /* If we'd have to convert things we would need to validate
1687 if we can insert the translated expression. So fail
1688 here for now - we cannot insert an alias with a different
1689 type in the VN tables either, as that would assert. */
1690 if (result
1691 && !useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1692 return NULL;
1693 else if (!result && newref
1694 && !useless_type_conversion_p (ref->type, newref->type))
1696 VEC_free (vn_reference_op_s, heap, newoperands);
1697 return NULL;
1700 expr = (pre_expr) pool_alloc (pre_expr_pool);
1701 expr->kind = REFERENCE;
1702 expr->id = 0;
1704 if (newref)
1706 PRE_EXPR_REFERENCE (expr) = newref;
1707 constant = fully_constant_expression (expr);
1708 if (constant != expr)
1709 return constant;
1711 new_val_id = newref->value_id;
1712 get_or_alloc_expression_id (expr);
1714 else
1716 if (changed || !same_valid)
1718 new_val_id = get_next_value_id ();
1719 VEC_safe_grow_cleared (bitmap_set_t, heap,
1720 value_expressions,
1721 get_max_value_id() + 1);
1723 else
1724 new_val_id = ref->value_id;
1725 newref = vn_reference_insert_pieces (newvuse, ref->set,
1726 ref->type,
1727 newoperands,
1728 result, new_val_id);
1729 newoperands = NULL;
1730 PRE_EXPR_REFERENCE (expr) = newref;
1731 constant = fully_constant_expression (expr);
1732 if (constant != expr)
1733 return constant;
1734 get_or_alloc_expression_id (expr);
1736 add_to_value (new_val_id, expr);
1738 VEC_free (vn_reference_op_s, heap, newoperands);
1739 return expr;
1741 break;
1743 case NAME:
1745 gimple phi = NULL;
1746 edge e;
1747 gimple def_stmt;
1748 tree name = PRE_EXPR_NAME (expr);
1750 def_stmt = SSA_NAME_DEF_STMT (name);
1751 if (gimple_code (def_stmt) == GIMPLE_PHI
1752 && gimple_bb (def_stmt) == phiblock)
1753 phi = def_stmt;
1754 else
1755 return expr;
1757 e = find_edge (pred, gimple_bb (phi));
1758 if (e)
1760 tree def = PHI_ARG_DEF (phi, e->dest_idx);
1761 pre_expr newexpr;
1763 if (TREE_CODE (def) == SSA_NAME)
1764 def = VN_INFO (def)->valnum;
1766 /* Handle constant. */
1767 if (is_gimple_min_invariant (def))
1768 return get_or_alloc_expr_for_constant (def);
1770 if (TREE_CODE (def) == SSA_NAME && ssa_undefined_value_p (def))
1771 return NULL;
1773 newexpr = get_or_alloc_expr_for_name (def);
1774 return newexpr;
1777 return expr;
1779 default:
1780 gcc_unreachable ();
1784 /* Wrapper around phi_translate_1 providing caching functionality. */
1786 static pre_expr
1787 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1788 basic_block pred, basic_block phiblock)
1790 pre_expr phitrans;
1792 if (!expr)
1793 return NULL;
1795 /* Constants contain no values that need translation. */
1796 if (expr->kind == CONSTANT)
1797 return expr;
1799 if (value_id_constant_p (get_expr_value_id (expr)))
1800 return expr;
1802 if (expr->kind != NAME)
1804 phitrans = phi_trans_lookup (expr, pred);
1805 if (phitrans)
1806 return phitrans;
1809 /* Translate. */
1810 phitrans = phi_translate_1 (expr, set1, set2, pred, phiblock);
1812 /* Don't add empty translations to the cache. Neither add
1813 translations of NAMEs as those are cheap to translate. */
1814 if (phitrans
1815 && expr->kind != NAME)
1816 phi_trans_add (expr, phitrans, pred);
1818 return phitrans;
1822 /* For each expression in SET, translate the values through phi nodes
1823 in PHIBLOCK using edge PHIBLOCK->PRED, and store the resulting
1824 expressions in DEST. */
1826 static void
1827 phi_translate_set (bitmap_set_t dest, bitmap_set_t set, basic_block pred,
1828 basic_block phiblock)
1830 VEC (pre_expr, heap) *exprs;
1831 pre_expr expr;
1832 int i;
1834 if (gimple_seq_empty_p (phi_nodes (phiblock)))
1836 bitmap_set_copy (dest, set);
1837 return;
1840 exprs = sorted_array_from_bitmap_set (set);
1841 FOR_EACH_VEC_ELT (pre_expr, exprs, i, expr)
1843 pre_expr translated;
1844 translated = phi_translate (expr, set, NULL, pred, phiblock);
1845 if (!translated)
1846 continue;
1848 /* We might end up with multiple expressions from SET being
1849 translated to the same value. In this case we do not want
1850 to retain the NARY or REFERENCE expression but prefer a NAME
1851 which would be the leader. */
1852 if (translated->kind == NAME)
1853 bitmap_value_replace_in_set (dest, translated);
1854 else
1855 bitmap_value_insert_into_set (dest, translated);
1857 VEC_free (pre_expr, heap, exprs);
1860 /* Find the leader for a value (i.e., the name representing that
1861 value) in a given set, and return it. If STMT is non-NULL it
1862 makes sure the defining statement for the leader dominates it.
1863 Return NULL if no leader is found. */
1865 static pre_expr
1866 bitmap_find_leader (bitmap_set_t set, unsigned int val, gimple stmt)
1868 if (value_id_constant_p (val))
1870 unsigned int i;
1871 bitmap_iterator bi;
1872 bitmap_set_t exprset = VEC_index (bitmap_set_t, value_expressions, val);
1874 FOR_EACH_EXPR_ID_IN_SET (exprset, i, bi)
1876 pre_expr expr = expression_for_id (i);
1877 if (expr->kind == CONSTANT)
1878 return expr;
1881 if (bitmap_set_contains_value (set, val))
1883 /* Rather than walk the entire bitmap of expressions, and see
1884 whether any of them has the value we are looking for, we look
1885 at the reverse mapping, which tells us the set of expressions
1886 that have a given value (IE value->expressions with that
1887 value) and see if any of those expressions are in our set.
1888 The number of expressions per value is usually significantly
1889 less than the number of expressions in the set. In fact, for
1890 large testcases, doing it this way is roughly 5-10x faster
1891 than walking the bitmap.
1892 If this is somehow a significant lose for some cases, we can
1893 choose which set to walk based on which set is smaller. */
1894 unsigned int i;
1895 bitmap_iterator bi;
1896 bitmap_set_t exprset = VEC_index (bitmap_set_t, value_expressions, val);
1898 EXECUTE_IF_AND_IN_BITMAP (&exprset->expressions,
1899 &set->expressions, 0, i, bi)
1901 pre_expr val = expression_for_id (i);
1902 /* At the point where stmt is not null, there should always
1903 be an SSA_NAME first in the list of expressions. */
1904 if (stmt)
1906 gimple def_stmt = SSA_NAME_DEF_STMT (PRE_EXPR_NAME (val));
1907 if (gimple_code (def_stmt) != GIMPLE_PHI
1908 && gimple_bb (def_stmt) == gimple_bb (stmt)
1909 /* PRE insertions are at the end of the basic-block
1910 and have UID 0. */
1911 && (gimple_uid (def_stmt) == 0
1912 || gimple_uid (def_stmt) >= gimple_uid (stmt)))
1913 continue;
1915 return val;
1918 return NULL;
1921 /* Determine if EXPR, a memory expression, is ANTIC_IN at the top of
1922 BLOCK by seeing if it is not killed in the block. Note that we are
1923 only determining whether there is a store that kills it. Because
1924 of the order in which clean iterates over values, we are guaranteed
1925 that altered operands will have caused us to be eliminated from the
1926 ANTIC_IN set already. */
1928 static bool
1929 value_dies_in_block_x (pre_expr expr, basic_block block)
1931 tree vuse = PRE_EXPR_REFERENCE (expr)->vuse;
1932 vn_reference_t refx = PRE_EXPR_REFERENCE (expr);
1933 gimple def;
1934 gimple_stmt_iterator gsi;
1935 unsigned id = get_expression_id (expr);
1936 bool res = false;
1937 ao_ref ref;
1939 if (!vuse)
1940 return false;
1942 /* Lookup a previously calculated result. */
1943 if (EXPR_DIES (block)
1944 && bitmap_bit_p (EXPR_DIES (block), id * 2))
1945 return bitmap_bit_p (EXPR_DIES (block), id * 2 + 1);
1947 /* A memory expression {e, VUSE} dies in the block if there is a
1948 statement that may clobber e. If, starting statement walk from the
1949 top of the basic block, a statement uses VUSE there can be no kill
1950 inbetween that use and the original statement that loaded {e, VUSE},
1951 so we can stop walking. */
1952 ref.base = NULL_TREE;
1953 for (gsi = gsi_start_bb (block); !gsi_end_p (gsi); gsi_next (&gsi))
1955 tree def_vuse, def_vdef;
1956 def = gsi_stmt (gsi);
1957 def_vuse = gimple_vuse (def);
1958 def_vdef = gimple_vdef (def);
1960 /* Not a memory statement. */
1961 if (!def_vuse)
1962 continue;
1964 /* Not a may-def. */
1965 if (!def_vdef)
1967 /* A load with the same VUSE, we're done. */
1968 if (def_vuse == vuse)
1969 break;
1971 continue;
1974 /* Init ref only if we really need it. */
1975 if (ref.base == NULL_TREE
1976 && !ao_ref_init_from_vn_reference (&ref, refx->set, refx->type,
1977 refx->operands))
1979 res = true;
1980 break;
1982 /* If the statement may clobber expr, it dies. */
1983 if (stmt_may_clobber_ref_p_1 (def, &ref))
1985 res = true;
1986 break;
1990 /* Remember the result. */
1991 if (!EXPR_DIES (block))
1992 EXPR_DIES (block) = BITMAP_ALLOC (&grand_bitmap_obstack);
1993 bitmap_set_bit (EXPR_DIES (block), id * 2);
1994 if (res)
1995 bitmap_set_bit (EXPR_DIES (block), id * 2 + 1);
1997 return res;
2001 /* Determine if OP is valid in SET1 U SET2, which it is when the union
2002 contains its value-id. */
2004 static bool
2005 op_valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, tree op)
2007 if (op && TREE_CODE (op) == SSA_NAME)
2009 unsigned int value_id = VN_INFO (op)->value_id;
2010 if (!(bitmap_set_contains_value (set1, value_id)
2011 || (set2 && bitmap_set_contains_value (set2, value_id))))
2012 return false;
2014 return true;
2017 /* Determine if the expression EXPR is valid in SET1 U SET2.
2018 ONLY SET2 CAN BE NULL.
2019 This means that we have a leader for each part of the expression
2020 (if it consists of values), or the expression is an SSA_NAME.
2021 For loads/calls, we also see if the vuse is killed in this block. */
2023 static bool
2024 valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, pre_expr expr,
2025 basic_block block)
2027 switch (expr->kind)
2029 case NAME:
2030 return bitmap_set_contains_expr (AVAIL_OUT (block), expr);
2031 case NARY:
2033 unsigned int i;
2034 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2035 for (i = 0; i < nary->length; i++)
2036 if (!op_valid_in_sets (set1, set2, nary->op[i]))
2037 return false;
2038 return true;
2040 break;
2041 case REFERENCE:
2043 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2044 vn_reference_op_t vro;
2045 unsigned int i;
2047 FOR_EACH_VEC_ELT (vn_reference_op_s, ref->operands, i, vro)
2049 if (!op_valid_in_sets (set1, set2, vro->op0)
2050 || !op_valid_in_sets (set1, set2, vro->op1)
2051 || !op_valid_in_sets (set1, set2, vro->op2))
2052 return false;
2054 return true;
2056 default:
2057 gcc_unreachable ();
2061 /* Clean the set of expressions that are no longer valid in SET1 or
2062 SET2. This means expressions that are made up of values we have no
2063 leaders for in SET1 or SET2. This version is used for partial
2064 anticipation, which means it is not valid in either ANTIC_IN or
2065 PA_IN. */
2067 static void
2068 dependent_clean (bitmap_set_t set1, bitmap_set_t set2, basic_block block)
2070 VEC (pre_expr, heap) *exprs = sorted_array_from_bitmap_set (set1);
2071 pre_expr expr;
2072 int i;
2074 FOR_EACH_VEC_ELT (pre_expr, exprs, i, expr)
2076 if (!valid_in_sets (set1, set2, expr, block))
2077 bitmap_remove_from_set (set1, expr);
2079 VEC_free (pre_expr, heap, exprs);
2082 /* Clean the set of expressions that are no longer valid in SET. This
2083 means expressions that are made up of values we have no leaders for
2084 in SET. */
2086 static void
2087 clean (bitmap_set_t set, basic_block block)
2089 VEC (pre_expr, heap) *exprs = sorted_array_from_bitmap_set (set);
2090 pre_expr expr;
2091 int i;
2093 FOR_EACH_VEC_ELT (pre_expr, exprs, i, expr)
2095 if (!valid_in_sets (set, NULL, expr, block))
2096 bitmap_remove_from_set (set, expr);
2098 VEC_free (pre_expr, heap, exprs);
2101 /* Clean the set of expressions that are no longer valid in SET because
2102 they are clobbered in BLOCK or because they trap and may not be executed. */
2104 static void
2105 prune_clobbered_mems (bitmap_set_t set, basic_block block)
2107 bitmap_iterator bi;
2108 unsigned i;
2110 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
2112 pre_expr expr = expression_for_id (i);
2113 if (expr->kind == REFERENCE)
2115 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2116 if (ref->vuse)
2118 gimple def_stmt = SSA_NAME_DEF_STMT (ref->vuse);
2119 if (!gimple_nop_p (def_stmt)
2120 && ((gimple_bb (def_stmt) != block
2121 && !dominated_by_p (CDI_DOMINATORS,
2122 block, gimple_bb (def_stmt)))
2123 || (gimple_bb (def_stmt) == block
2124 && value_dies_in_block_x (expr, block))))
2125 bitmap_remove_from_set (set, expr);
2128 else if (expr->kind == NARY)
2130 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2131 /* If the NARY may trap make sure the block does not contain
2132 a possible exit point.
2133 ??? This is overly conservative if we translate AVAIL_OUT
2134 as the available expression might be after the exit point. */
2135 if (BB_MAY_NOTRETURN (block)
2136 && vn_nary_may_trap (nary))
2137 bitmap_remove_from_set (set, expr);
2142 static sbitmap has_abnormal_preds;
2144 /* List of blocks that may have changed during ANTIC computation and
2145 thus need to be iterated over. */
2147 static sbitmap changed_blocks;
2149 /* Decide whether to defer a block for a later iteration, or PHI
2150 translate SOURCE to DEST using phis in PHIBLOCK. Return false if we
2151 should defer the block, and true if we processed it. */
2153 static bool
2154 defer_or_phi_translate_block (bitmap_set_t dest, bitmap_set_t source,
2155 basic_block block, basic_block phiblock)
2157 if (!BB_VISITED (phiblock))
2159 SET_BIT (changed_blocks, block->index);
2160 BB_VISITED (block) = 0;
2161 BB_DEFERRED (block) = 1;
2162 return false;
2164 else
2165 phi_translate_set (dest, source, block, phiblock);
2166 return true;
2169 /* Compute the ANTIC set for BLOCK.
2171 If succs(BLOCK) > 1 then
2172 ANTIC_OUT[BLOCK] = intersection of ANTIC_IN[b] for all succ(BLOCK)
2173 else if succs(BLOCK) == 1 then
2174 ANTIC_OUT[BLOCK] = phi_translate (ANTIC_IN[succ(BLOCK)])
2176 ANTIC_IN[BLOCK] = clean(ANTIC_OUT[BLOCK] U EXP_GEN[BLOCK] - TMP_GEN[BLOCK])
2179 static bool
2180 compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge)
2182 bool changed = false;
2183 bitmap_set_t S, old, ANTIC_OUT;
2184 bitmap_iterator bi;
2185 unsigned int bii;
2186 edge e;
2187 edge_iterator ei;
2189 old = ANTIC_OUT = S = NULL;
2190 BB_VISITED (block) = 1;
2192 /* If any edges from predecessors are abnormal, antic_in is empty,
2193 so do nothing. */
2194 if (block_has_abnormal_pred_edge)
2195 goto maybe_dump_sets;
2197 old = ANTIC_IN (block);
2198 ANTIC_OUT = bitmap_set_new ();
2200 /* If the block has no successors, ANTIC_OUT is empty. */
2201 if (EDGE_COUNT (block->succs) == 0)
2203 /* If we have one successor, we could have some phi nodes to
2204 translate through. */
2205 else if (single_succ_p (block))
2207 basic_block succ_bb = single_succ (block);
2209 /* We trade iterations of the dataflow equations for having to
2210 phi translate the maximal set, which is incredibly slow
2211 (since the maximal set often has 300+ members, even when you
2212 have a small number of blocks).
2213 Basically, we defer the computation of ANTIC for this block
2214 until we have processed it's successor, which will inevitably
2215 have a *much* smaller set of values to phi translate once
2216 clean has been run on it.
2217 The cost of doing this is that we technically perform more
2218 iterations, however, they are lower cost iterations.
2220 Timings for PRE on tramp3d-v4:
2221 without maximal set fix: 11 seconds
2222 with maximal set fix/without deferring: 26 seconds
2223 with maximal set fix/with deferring: 11 seconds
2226 if (!defer_or_phi_translate_block (ANTIC_OUT, ANTIC_IN (succ_bb),
2227 block, succ_bb))
2229 changed = true;
2230 goto maybe_dump_sets;
2233 /* If we have multiple successors, we take the intersection of all of
2234 them. Note that in the case of loop exit phi nodes, we may have
2235 phis to translate through. */
2236 else
2238 VEC(basic_block, heap) * worklist;
2239 size_t i;
2240 basic_block bprime, first = NULL;
2242 worklist = VEC_alloc (basic_block, heap, EDGE_COUNT (block->succs));
2243 FOR_EACH_EDGE (e, ei, block->succs)
2245 if (!first
2246 && BB_VISITED (e->dest))
2247 first = e->dest;
2248 else if (BB_VISITED (e->dest))
2249 VEC_quick_push (basic_block, worklist, e->dest);
2252 /* Of multiple successors we have to have visited one already. */
2253 if (!first)
2255 SET_BIT (changed_blocks, block->index);
2256 BB_VISITED (block) = 0;
2257 BB_DEFERRED (block) = 1;
2258 changed = true;
2259 VEC_free (basic_block, heap, worklist);
2260 goto maybe_dump_sets;
2263 if (!gimple_seq_empty_p (phi_nodes (first)))
2264 phi_translate_set (ANTIC_OUT, ANTIC_IN (first), block, first);
2265 else
2266 bitmap_set_copy (ANTIC_OUT, ANTIC_IN (first));
2268 FOR_EACH_VEC_ELT (basic_block, worklist, i, bprime)
2270 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2272 bitmap_set_t tmp = bitmap_set_new ();
2273 phi_translate_set (tmp, ANTIC_IN (bprime), block, bprime);
2274 bitmap_set_and (ANTIC_OUT, tmp);
2275 bitmap_set_free (tmp);
2277 else
2278 bitmap_set_and (ANTIC_OUT, ANTIC_IN (bprime));
2280 VEC_free (basic_block, heap, worklist);
2283 /* Prune expressions that are clobbered in block and thus become
2284 invalid if translated from ANTIC_OUT to ANTIC_IN. */
2285 prune_clobbered_mems (ANTIC_OUT, block);
2287 /* Generate ANTIC_OUT - TMP_GEN. */
2288 S = bitmap_set_subtract (ANTIC_OUT, TMP_GEN (block));
2290 /* Start ANTIC_IN with EXP_GEN - TMP_GEN. */
2291 ANTIC_IN (block) = bitmap_set_subtract (EXP_GEN (block),
2292 TMP_GEN (block));
2294 /* Then union in the ANTIC_OUT - TMP_GEN values,
2295 to get ANTIC_OUT U EXP_GEN - TMP_GEN */
2296 FOR_EACH_EXPR_ID_IN_SET (S, bii, bi)
2297 bitmap_value_insert_into_set (ANTIC_IN (block),
2298 expression_for_id (bii));
2300 clean (ANTIC_IN (block), block);
2302 if (!bitmap_set_equal (old, ANTIC_IN (block)))
2304 changed = true;
2305 SET_BIT (changed_blocks, block->index);
2306 FOR_EACH_EDGE (e, ei, block->preds)
2307 SET_BIT (changed_blocks, e->src->index);
2309 else
2310 RESET_BIT (changed_blocks, block->index);
2312 maybe_dump_sets:
2313 if (dump_file && (dump_flags & TDF_DETAILS))
2315 if (!BB_DEFERRED (block) || BB_VISITED (block))
2317 if (ANTIC_OUT)
2318 print_bitmap_set (dump_file, ANTIC_OUT, "ANTIC_OUT", block->index);
2320 print_bitmap_set (dump_file, ANTIC_IN (block), "ANTIC_IN",
2321 block->index);
2323 if (S)
2324 print_bitmap_set (dump_file, S, "S", block->index);
2326 else
2328 fprintf (dump_file,
2329 "Block %d was deferred for a future iteration.\n",
2330 block->index);
2333 if (old)
2334 bitmap_set_free (old);
2335 if (S)
2336 bitmap_set_free (S);
2337 if (ANTIC_OUT)
2338 bitmap_set_free (ANTIC_OUT);
2339 return changed;
2342 /* Compute PARTIAL_ANTIC for BLOCK.
2344 If succs(BLOCK) > 1 then
2345 PA_OUT[BLOCK] = value wise union of PA_IN[b] + all ANTIC_IN not
2346 in ANTIC_OUT for all succ(BLOCK)
2347 else if succs(BLOCK) == 1 then
2348 PA_OUT[BLOCK] = phi_translate (PA_IN[succ(BLOCK)])
2350 PA_IN[BLOCK] = dependent_clean(PA_OUT[BLOCK] - TMP_GEN[BLOCK]
2351 - ANTIC_IN[BLOCK])
2354 static bool
2355 compute_partial_antic_aux (basic_block block,
2356 bool block_has_abnormal_pred_edge)
2358 bool changed = false;
2359 bitmap_set_t old_PA_IN;
2360 bitmap_set_t PA_OUT;
2361 edge e;
2362 edge_iterator ei;
2363 unsigned long max_pa = PARAM_VALUE (PARAM_MAX_PARTIAL_ANTIC_LENGTH);
2365 old_PA_IN = PA_OUT = NULL;
2367 /* If any edges from predecessors are abnormal, antic_in is empty,
2368 so do nothing. */
2369 if (block_has_abnormal_pred_edge)
2370 goto maybe_dump_sets;
2372 /* If there are too many partially anticipatable values in the
2373 block, phi_translate_set can take an exponential time: stop
2374 before the translation starts. */
2375 if (max_pa
2376 && single_succ_p (block)
2377 && bitmap_count_bits (&PA_IN (single_succ (block))->values) > max_pa)
2378 goto maybe_dump_sets;
2380 old_PA_IN = PA_IN (block);
2381 PA_OUT = bitmap_set_new ();
2383 /* If the block has no successors, ANTIC_OUT is empty. */
2384 if (EDGE_COUNT (block->succs) == 0)
2386 /* If we have one successor, we could have some phi nodes to
2387 translate through. Note that we can't phi translate across DFS
2388 back edges in partial antic, because it uses a union operation on
2389 the successors. For recurrences like IV's, we will end up
2390 generating a new value in the set on each go around (i + 3 (VH.1)
2391 VH.1 + 1 (VH.2), VH.2 + 1 (VH.3), etc), forever. */
2392 else if (single_succ_p (block))
2394 basic_block succ = single_succ (block);
2395 if (!(single_succ_edge (block)->flags & EDGE_DFS_BACK))
2396 phi_translate_set (PA_OUT, PA_IN (succ), block, succ);
2398 /* If we have multiple successors, we take the union of all of
2399 them. */
2400 else
2402 VEC(basic_block, heap) * worklist;
2403 size_t i;
2404 basic_block bprime;
2406 worklist = VEC_alloc (basic_block, heap, EDGE_COUNT (block->succs));
2407 FOR_EACH_EDGE (e, ei, block->succs)
2409 if (e->flags & EDGE_DFS_BACK)
2410 continue;
2411 VEC_quick_push (basic_block, worklist, e->dest);
2413 if (VEC_length (basic_block, worklist) > 0)
2415 FOR_EACH_VEC_ELT (basic_block, worklist, i, bprime)
2417 unsigned int i;
2418 bitmap_iterator bi;
2420 FOR_EACH_EXPR_ID_IN_SET (ANTIC_IN (bprime), i, bi)
2421 bitmap_value_insert_into_set (PA_OUT,
2422 expression_for_id (i));
2423 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2425 bitmap_set_t pa_in = bitmap_set_new ();
2426 phi_translate_set (pa_in, PA_IN (bprime), block, bprime);
2427 FOR_EACH_EXPR_ID_IN_SET (pa_in, i, bi)
2428 bitmap_value_insert_into_set (PA_OUT,
2429 expression_for_id (i));
2430 bitmap_set_free (pa_in);
2432 else
2433 FOR_EACH_EXPR_ID_IN_SET (PA_IN (bprime), i, bi)
2434 bitmap_value_insert_into_set (PA_OUT,
2435 expression_for_id (i));
2438 VEC_free (basic_block, heap, worklist);
2441 /* Prune expressions that are clobbered in block and thus become
2442 invalid if translated from PA_OUT to PA_IN. */
2443 prune_clobbered_mems (PA_OUT, block);
2445 /* PA_IN starts with PA_OUT - TMP_GEN.
2446 Then we subtract things from ANTIC_IN. */
2447 PA_IN (block) = bitmap_set_subtract (PA_OUT, TMP_GEN (block));
2449 /* For partial antic, we want to put back in the phi results, since
2450 we will properly avoid making them partially antic over backedges. */
2451 bitmap_ior_into (&PA_IN (block)->values, &PHI_GEN (block)->values);
2452 bitmap_ior_into (&PA_IN (block)->expressions, &PHI_GEN (block)->expressions);
2454 /* PA_IN[block] = PA_IN[block] - ANTIC_IN[block] */
2455 bitmap_set_subtract_values (PA_IN (block), ANTIC_IN (block));
2457 dependent_clean (PA_IN (block), ANTIC_IN (block), block);
2459 if (!bitmap_set_equal (old_PA_IN, PA_IN (block)))
2461 changed = true;
2462 SET_BIT (changed_blocks, block->index);
2463 FOR_EACH_EDGE (e, ei, block->preds)
2464 SET_BIT (changed_blocks, e->src->index);
2466 else
2467 RESET_BIT (changed_blocks, block->index);
2469 maybe_dump_sets:
2470 if (dump_file && (dump_flags & TDF_DETAILS))
2472 if (PA_OUT)
2473 print_bitmap_set (dump_file, PA_OUT, "PA_OUT", block->index);
2475 print_bitmap_set (dump_file, PA_IN (block), "PA_IN", block->index);
2477 if (old_PA_IN)
2478 bitmap_set_free (old_PA_IN);
2479 if (PA_OUT)
2480 bitmap_set_free (PA_OUT);
2481 return changed;
2484 /* Compute ANTIC and partial ANTIC sets. */
2486 static void
2487 compute_antic (void)
2489 bool changed = true;
2490 int num_iterations = 0;
2491 basic_block block;
2492 int i;
2494 /* If any predecessor edges are abnormal, we punt, so antic_in is empty.
2495 We pre-build the map of blocks with incoming abnormal edges here. */
2496 has_abnormal_preds = sbitmap_alloc (last_basic_block);
2497 sbitmap_zero (has_abnormal_preds);
2499 FOR_EACH_BB (block)
2501 edge_iterator ei;
2502 edge e;
2504 FOR_EACH_EDGE (e, ei, block->preds)
2506 e->flags &= ~EDGE_DFS_BACK;
2507 if (e->flags & EDGE_ABNORMAL)
2509 SET_BIT (has_abnormal_preds, block->index);
2510 break;
2514 BB_VISITED (block) = 0;
2515 BB_DEFERRED (block) = 0;
2517 /* While we are here, give empty ANTIC_IN sets to each block. */
2518 ANTIC_IN (block) = bitmap_set_new ();
2519 PA_IN (block) = bitmap_set_new ();
2522 /* At the exit block we anticipate nothing. */
2523 ANTIC_IN (EXIT_BLOCK_PTR) = bitmap_set_new ();
2524 BB_VISITED (EXIT_BLOCK_PTR) = 1;
2525 PA_IN (EXIT_BLOCK_PTR) = bitmap_set_new ();
2527 changed_blocks = sbitmap_alloc (last_basic_block + 1);
2528 sbitmap_ones (changed_blocks);
2529 while (changed)
2531 if (dump_file && (dump_flags & TDF_DETAILS))
2532 fprintf (dump_file, "Starting iteration %d\n", num_iterations);
2533 /* ??? We need to clear our PHI translation cache here as the
2534 ANTIC sets shrink and we restrict valid translations to
2535 those having operands with leaders in ANTIC. Same below
2536 for PA ANTIC computation. */
2537 num_iterations++;
2538 changed = false;
2539 for (i = n_basic_blocks - NUM_FIXED_BLOCKS - 1; i >= 0; i--)
2541 if (TEST_BIT (changed_blocks, postorder[i]))
2543 basic_block block = BASIC_BLOCK (postorder[i]);
2544 changed |= compute_antic_aux (block,
2545 TEST_BIT (has_abnormal_preds,
2546 block->index));
2549 /* Theoretically possible, but *highly* unlikely. */
2550 gcc_checking_assert (num_iterations < 500);
2553 statistics_histogram_event (cfun, "compute_antic iterations",
2554 num_iterations);
2556 if (do_partial_partial)
2558 sbitmap_ones (changed_blocks);
2559 mark_dfs_back_edges ();
2560 num_iterations = 0;
2561 changed = true;
2562 while (changed)
2564 if (dump_file && (dump_flags & TDF_DETAILS))
2565 fprintf (dump_file, "Starting iteration %d\n", num_iterations);
2566 num_iterations++;
2567 changed = false;
2568 for (i = n_basic_blocks - NUM_FIXED_BLOCKS - 1 ; i >= 0; i--)
2570 if (TEST_BIT (changed_blocks, postorder[i]))
2572 basic_block block = BASIC_BLOCK (postorder[i]);
2573 changed
2574 |= compute_partial_antic_aux (block,
2575 TEST_BIT (has_abnormal_preds,
2576 block->index));
2579 /* Theoretically possible, but *highly* unlikely. */
2580 gcc_checking_assert (num_iterations < 500);
2582 statistics_histogram_event (cfun, "compute_partial_antic iterations",
2583 num_iterations);
2585 sbitmap_free (has_abnormal_preds);
2586 sbitmap_free (changed_blocks);
2589 /* Return true if OP is a tree which we can perform PRE on.
2590 This may not match the operations we can value number, but in
2591 a perfect world would. */
2593 static bool
2594 can_PRE_operation (tree op)
2596 return UNARY_CLASS_P (op)
2597 || BINARY_CLASS_P (op)
2598 || COMPARISON_CLASS_P (op)
2599 || TREE_CODE (op) == MEM_REF
2600 || TREE_CODE (op) == COMPONENT_REF
2601 || TREE_CODE (op) == VIEW_CONVERT_EXPR
2602 || TREE_CODE (op) == CALL_EXPR
2603 || TREE_CODE (op) == ARRAY_REF;
2607 /* Inserted expressions are placed onto this worklist, which is used
2608 for performing quick dead code elimination of insertions we made
2609 that didn't turn out to be necessary. */
2610 static bitmap inserted_exprs;
2612 /* Pool allocated fake store expressions are placed onto this
2613 worklist, which, after performing dead code elimination, is walked
2614 to see which expressions need to be put into GC'able memory */
2615 static VEC(gimple, heap) *need_creation;
2617 /* The actual worker for create_component_ref_by_pieces. */
2619 static tree
2620 create_component_ref_by_pieces_1 (basic_block block, vn_reference_t ref,
2621 unsigned int *operand, gimple_seq *stmts,
2622 gimple domstmt)
2624 vn_reference_op_t currop = VEC_index (vn_reference_op_s, ref->operands,
2625 *operand);
2626 tree genop;
2627 ++*operand;
2628 switch (currop->opcode)
2630 case CALL_EXPR:
2632 tree folded, sc = NULL_TREE;
2633 unsigned int nargs = 0;
2634 tree fn, *args;
2635 if (TREE_CODE (currop->op0) == FUNCTION_DECL)
2636 fn = currop->op0;
2637 else
2639 pre_expr op0 = get_or_alloc_expr_for (currop->op0);
2640 fn = find_or_generate_expression (block, op0, stmts, domstmt);
2641 if (!fn)
2642 return NULL_TREE;
2644 if (currop->op1)
2646 pre_expr scexpr = get_or_alloc_expr_for (currop->op1);
2647 sc = find_or_generate_expression (block, scexpr, stmts, domstmt);
2648 if (!sc)
2649 return NULL_TREE;
2651 args = XNEWVEC (tree, VEC_length (vn_reference_op_s,
2652 ref->operands) - 1);
2653 while (*operand < VEC_length (vn_reference_op_s, ref->operands))
2655 args[nargs] = create_component_ref_by_pieces_1 (block, ref,
2656 operand, stmts,
2657 domstmt);
2658 if (!args[nargs])
2660 free (args);
2661 return NULL_TREE;
2663 nargs++;
2665 folded = build_call_array (currop->type,
2666 (TREE_CODE (fn) == FUNCTION_DECL
2667 ? build_fold_addr_expr (fn) : fn),
2668 nargs, args);
2669 free (args);
2670 if (sc)
2671 CALL_EXPR_STATIC_CHAIN (folded) = sc;
2672 return folded;
2674 break;
2675 case MEM_REF:
2677 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2678 stmts, domstmt);
2679 tree offset = currop->op0;
2680 if (!baseop)
2681 return NULL_TREE;
2682 if (TREE_CODE (baseop) == ADDR_EXPR
2683 && handled_component_p (TREE_OPERAND (baseop, 0)))
2685 HOST_WIDE_INT off;
2686 tree base;
2687 base = get_addr_base_and_unit_offset (TREE_OPERAND (baseop, 0),
2688 &off);
2689 gcc_assert (base);
2690 offset = int_const_binop (PLUS_EXPR, offset,
2691 build_int_cst (TREE_TYPE (offset),
2692 off));
2693 baseop = build_fold_addr_expr (base);
2695 return fold_build2 (MEM_REF, currop->type, baseop, offset);
2697 break;
2698 case TARGET_MEM_REF:
2700 pre_expr op0expr, op1expr;
2701 tree genop0 = NULL_TREE, genop1 = NULL_TREE;
2702 vn_reference_op_t nextop = VEC_index (vn_reference_op_s, ref->operands,
2703 ++*operand);
2704 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2705 stmts, domstmt);
2706 if (!baseop)
2707 return NULL_TREE;
2708 if (currop->op0)
2710 op0expr = get_or_alloc_expr_for (currop->op0);
2711 genop0 = find_or_generate_expression (block, op0expr,
2712 stmts, domstmt);
2713 if (!genop0)
2714 return NULL_TREE;
2716 if (nextop->op0)
2718 op1expr = get_or_alloc_expr_for (nextop->op0);
2719 genop1 = find_or_generate_expression (block, op1expr,
2720 stmts, domstmt);
2721 if (!genop1)
2722 return NULL_TREE;
2724 return build5 (TARGET_MEM_REF, currop->type,
2725 baseop, currop->op2, genop0, currop->op1, genop1);
2727 break;
2728 case ADDR_EXPR:
2729 if (currop->op0)
2731 gcc_assert (is_gimple_min_invariant (currop->op0));
2732 return currop->op0;
2734 /* Fallthrough. */
2735 case REALPART_EXPR:
2736 case IMAGPART_EXPR:
2737 case VIEW_CONVERT_EXPR:
2739 tree folded;
2740 tree genop0 = create_component_ref_by_pieces_1 (block, ref,
2741 operand,
2742 stmts, domstmt);
2743 if (!genop0)
2744 return NULL_TREE;
2745 folded = fold_build1 (currop->opcode, currop->type,
2746 genop0);
2747 return folded;
2749 break;
2750 case WITH_SIZE_EXPR:
2752 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2753 stmts, domstmt);
2754 pre_expr op1expr = get_or_alloc_expr_for (currop->op0);
2755 tree genop1;
2757 if (!genop0)
2758 return NULL_TREE;
2760 genop1 = find_or_generate_expression (block, op1expr, stmts, domstmt);
2761 if (!genop1)
2762 return NULL_TREE;
2764 return fold_build2 (currop->opcode, currop->type, genop0, genop1);
2766 break;
2767 case BIT_FIELD_REF:
2769 tree folded;
2770 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2771 stmts, domstmt);
2772 pre_expr op1expr = get_or_alloc_expr_for (currop->op0);
2773 pre_expr op2expr = get_or_alloc_expr_for (currop->op1);
2774 tree genop1;
2775 tree genop2;
2777 if (!genop0)
2778 return NULL_TREE;
2779 genop1 = find_or_generate_expression (block, op1expr, stmts, domstmt);
2780 if (!genop1)
2781 return NULL_TREE;
2782 genop2 = find_or_generate_expression (block, op2expr, stmts, domstmt);
2783 if (!genop2)
2784 return NULL_TREE;
2785 folded = fold_build3 (BIT_FIELD_REF, currop->type, genop0, genop1,
2786 genop2);
2787 return folded;
2790 /* For array ref vn_reference_op's, operand 1 of the array ref
2791 is op0 of the reference op and operand 3 of the array ref is
2792 op1. */
2793 case ARRAY_RANGE_REF:
2794 case ARRAY_REF:
2796 tree genop0;
2797 tree genop1 = currop->op0;
2798 pre_expr op1expr;
2799 tree genop2 = currop->op1;
2800 pre_expr op2expr;
2801 tree genop3 = currop->op2;
2802 pre_expr op3expr;
2803 genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2804 stmts, domstmt);
2805 if (!genop0)
2806 return NULL_TREE;
2807 op1expr = get_or_alloc_expr_for (genop1);
2808 genop1 = find_or_generate_expression (block, op1expr, stmts, domstmt);
2809 if (!genop1)
2810 return NULL_TREE;
2811 if (genop2)
2813 tree domain_type = TYPE_DOMAIN (TREE_TYPE (genop0));
2814 /* Drop zero minimum index if redundant. */
2815 if (integer_zerop (genop2)
2816 && (!domain_type
2817 || integer_zerop (TYPE_MIN_VALUE (domain_type))))
2818 genop2 = NULL_TREE;
2819 else
2821 op2expr = get_or_alloc_expr_for (genop2);
2822 genop2 = find_or_generate_expression (block, op2expr, stmts,
2823 domstmt);
2824 if (!genop2)
2825 return NULL_TREE;
2828 if (genop3)
2830 tree elmt_type = TREE_TYPE (TREE_TYPE (genop0));
2831 /* We can't always put a size in units of the element alignment
2832 here as the element alignment may be not visible. See
2833 PR43783. Simply drop the element size for constant
2834 sizes. */
2835 if (tree_int_cst_equal (genop3, TYPE_SIZE_UNIT (elmt_type)))
2836 genop3 = NULL_TREE;
2837 else
2839 genop3 = size_binop (EXACT_DIV_EXPR, genop3,
2840 size_int (TYPE_ALIGN_UNIT (elmt_type)));
2841 op3expr = get_or_alloc_expr_for (genop3);
2842 genop3 = find_or_generate_expression (block, op3expr, stmts,
2843 domstmt);
2844 if (!genop3)
2845 return NULL_TREE;
2848 return build4 (currop->opcode, currop->type, genop0, genop1,
2849 genop2, genop3);
2851 case COMPONENT_REF:
2853 tree op0;
2854 tree op1;
2855 tree genop2 = currop->op1;
2856 pre_expr op2expr;
2857 op0 = create_component_ref_by_pieces_1 (block, ref, operand,
2858 stmts, domstmt);
2859 if (!op0)
2860 return NULL_TREE;
2861 /* op1 should be a FIELD_DECL, which are represented by
2862 themselves. */
2863 op1 = currop->op0;
2864 if (genop2)
2866 op2expr = get_or_alloc_expr_for (genop2);
2867 genop2 = find_or_generate_expression (block, op2expr, stmts,
2868 domstmt);
2869 if (!genop2)
2870 return NULL_TREE;
2873 return fold_build3 (COMPONENT_REF, TREE_TYPE (op1), op0, op1,
2874 genop2);
2876 break;
2877 case SSA_NAME:
2879 pre_expr op0expr = get_or_alloc_expr_for (currop->op0);
2880 genop = find_or_generate_expression (block, op0expr, stmts, domstmt);
2881 return genop;
2883 case STRING_CST:
2884 case INTEGER_CST:
2885 case COMPLEX_CST:
2886 case VECTOR_CST:
2887 case REAL_CST:
2888 case CONSTRUCTOR:
2889 case VAR_DECL:
2890 case PARM_DECL:
2891 case CONST_DECL:
2892 case RESULT_DECL:
2893 case FUNCTION_DECL:
2894 return currop->op0;
2896 default:
2897 gcc_unreachable ();
2901 /* For COMPONENT_REF's and ARRAY_REF's, we can't have any intermediates for the
2902 COMPONENT_REF or MEM_REF or ARRAY_REF portion, because we'd end up with
2903 trying to rename aggregates into ssa form directly, which is a no no.
2905 Thus, this routine doesn't create temporaries, it just builds a
2906 single access expression for the array, calling
2907 find_or_generate_expression to build the innermost pieces.
2909 This function is a subroutine of create_expression_by_pieces, and
2910 should not be called on it's own unless you really know what you
2911 are doing. */
2913 static tree
2914 create_component_ref_by_pieces (basic_block block, vn_reference_t ref,
2915 gimple_seq *stmts, gimple domstmt)
2917 unsigned int op = 0;
2918 return create_component_ref_by_pieces_1 (block, ref, &op, stmts, domstmt);
2921 /* Find a leader for an expression, or generate one using
2922 create_expression_by_pieces if it's ANTIC but
2923 complex.
2924 BLOCK is the basic_block we are looking for leaders in.
2925 EXPR is the expression to find a leader or generate for.
2926 STMTS is the statement list to put the inserted expressions on.
2927 Returns the SSA_NAME of the LHS of the generated expression or the
2928 leader.
2929 DOMSTMT if non-NULL is a statement that should be dominated by
2930 all uses in the generated expression. If DOMSTMT is non-NULL this
2931 routine can fail and return NULL_TREE. Otherwise it will assert
2932 on failure. */
2934 static tree
2935 find_or_generate_expression (basic_block block, pre_expr expr,
2936 gimple_seq *stmts, gimple domstmt)
2938 pre_expr leader = bitmap_find_leader (AVAIL_OUT (block),
2939 get_expr_value_id (expr), domstmt);
2940 tree genop = NULL;
2941 if (leader)
2943 if (leader->kind == NAME)
2944 genop = PRE_EXPR_NAME (leader);
2945 else if (leader->kind == CONSTANT)
2946 genop = PRE_EXPR_CONSTANT (leader);
2949 /* If it's still NULL, it must be a complex expression, so generate
2950 it recursively. Not so if inserting expressions for values generated
2951 by SCCVN. */
2952 if (genop == NULL
2953 && !domstmt)
2955 bitmap_set_t exprset;
2956 unsigned int lookfor = get_expr_value_id (expr);
2957 bool handled = false;
2958 bitmap_iterator bi;
2959 unsigned int i;
2961 exprset = VEC_index (bitmap_set_t, value_expressions, lookfor);
2962 FOR_EACH_EXPR_ID_IN_SET (exprset, i, bi)
2964 pre_expr temp = expression_for_id (i);
2965 if (temp->kind != NAME)
2967 handled = true;
2968 genop = create_expression_by_pieces (block, temp, stmts,
2969 domstmt,
2970 get_expr_type (expr));
2971 break;
2974 if (!handled && domstmt)
2975 return NULL_TREE;
2977 gcc_assert (handled);
2979 return genop;
2982 #define NECESSARY GF_PLF_1
2984 /* Create an expression in pieces, so that we can handle very complex
2985 expressions that may be ANTIC, but not necessary GIMPLE.
2986 BLOCK is the basic block the expression will be inserted into,
2987 EXPR is the expression to insert (in value form)
2988 STMTS is a statement list to append the necessary insertions into.
2990 This function will die if we hit some value that shouldn't be
2991 ANTIC but is (IE there is no leader for it, or its components).
2992 This function may also generate expressions that are themselves
2993 partially or fully redundant. Those that are will be either made
2994 fully redundant during the next iteration of insert (for partially
2995 redundant ones), or eliminated by eliminate (for fully redundant
2996 ones).
2998 If DOMSTMT is non-NULL then we make sure that all uses in the
2999 expressions dominate that statement. In this case the function
3000 can return NULL_TREE to signal failure. */
3002 static tree
3003 create_expression_by_pieces (basic_block block, pre_expr expr,
3004 gimple_seq *stmts, gimple domstmt, tree type)
3006 tree temp, name;
3007 tree folded;
3008 gimple_seq forced_stmts = NULL;
3009 unsigned int value_id;
3010 gimple_stmt_iterator gsi;
3011 tree exprtype = type ? type : get_expr_type (expr);
3012 pre_expr nameexpr;
3013 gimple newstmt;
3015 switch (expr->kind)
3017 /* We may hit the NAME/CONSTANT case if we have to convert types
3018 that value numbering saw through. */
3019 case NAME:
3020 folded = PRE_EXPR_NAME (expr);
3021 break;
3022 case CONSTANT:
3023 folded = PRE_EXPR_CONSTANT (expr);
3024 break;
3025 case REFERENCE:
3027 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
3028 folded = create_component_ref_by_pieces (block, ref, stmts, domstmt);
3030 break;
3031 case NARY:
3033 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
3034 tree genop[4];
3035 unsigned i;
3036 for (i = 0; i < nary->length; ++i)
3038 pre_expr op = get_or_alloc_expr_for (nary->op[i]);
3039 genop[i] = find_or_generate_expression (block, op,
3040 stmts, domstmt);
3041 if (!genop[i])
3042 return NULL_TREE;
3043 /* Ensure genop[] is properly typed for POINTER_PLUS_EXPR. It
3044 may have conversions stripped. */
3045 if (nary->opcode == POINTER_PLUS_EXPR)
3047 if (i == 0)
3048 genop[i] = fold_convert (nary->type, genop[i]);
3049 else if (i == 1)
3050 genop[i] = convert_to_ptrofftype (genop[i]);
3052 else
3053 genop[i] = fold_convert (TREE_TYPE (nary->op[i]), genop[i]);
3055 if (nary->opcode == CONSTRUCTOR)
3057 VEC(constructor_elt,gc) *elts = NULL;
3058 for (i = 0; i < nary->length; ++i)
3059 CONSTRUCTOR_APPEND_ELT (elts, NULL_TREE, genop[i]);
3060 folded = build_constructor (nary->type, elts);
3062 else
3064 switch (nary->length)
3066 case 1:
3067 folded = fold_build1 (nary->opcode, nary->type,
3068 genop[0]);
3069 break;
3070 case 2:
3071 folded = fold_build2 (nary->opcode, nary->type,
3072 genop[0], genop[1]);
3073 break;
3074 case 3:
3075 folded = fold_build3 (nary->opcode, nary->type,
3076 genop[0], genop[1], genop[3]);
3077 break;
3078 default:
3079 gcc_unreachable ();
3083 break;
3084 default:
3085 return NULL_TREE;
3088 if (!useless_type_conversion_p (exprtype, TREE_TYPE (folded)))
3089 folded = fold_convert (exprtype, folded);
3091 /* Force the generated expression to be a sequence of GIMPLE
3092 statements.
3093 We have to call unshare_expr because force_gimple_operand may
3094 modify the tree we pass to it. */
3095 folded = force_gimple_operand (unshare_expr (folded), &forced_stmts,
3096 false, NULL);
3098 /* If we have any intermediate expressions to the value sets, add them
3099 to the value sets and chain them in the instruction stream. */
3100 if (forced_stmts)
3102 gsi = gsi_start (forced_stmts);
3103 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3105 gimple stmt = gsi_stmt (gsi);
3106 tree forcedname = gimple_get_lhs (stmt);
3107 pre_expr nameexpr;
3109 if (TREE_CODE (forcedname) == SSA_NAME)
3111 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (forcedname));
3112 VN_INFO_GET (forcedname)->valnum = forcedname;
3113 VN_INFO (forcedname)->value_id = get_next_value_id ();
3114 nameexpr = get_or_alloc_expr_for_name (forcedname);
3115 add_to_value (VN_INFO (forcedname)->value_id, nameexpr);
3116 if (!in_fre)
3117 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
3118 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
3121 gimple_seq_add_seq (stmts, forced_stmts);
3124 /* Build and insert the assignment of the end result to the temporary
3125 that we will return. */
3126 if (!pretemp || exprtype != TREE_TYPE (pretemp))
3127 pretemp = create_tmp_reg (exprtype, "pretmp");
3129 temp = pretemp;
3130 add_referenced_var (temp);
3132 newstmt = gimple_build_assign (temp, folded);
3133 name = make_ssa_name (temp, newstmt);
3134 gimple_assign_set_lhs (newstmt, name);
3135 gimple_set_plf (newstmt, NECESSARY, false);
3137 gimple_seq_add_stmt (stmts, newstmt);
3138 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (name));
3140 /* Fold the last statement. */
3141 gsi = gsi_last (*stmts);
3142 if (fold_stmt_inplace (&gsi))
3143 update_stmt (gsi_stmt (gsi));
3145 /* Add a value number to the temporary.
3146 The value may already exist in either NEW_SETS, or AVAIL_OUT, because
3147 we are creating the expression by pieces, and this particular piece of
3148 the expression may have been represented. There is no harm in replacing
3149 here. */
3150 VN_INFO_GET (name)->valnum = name;
3151 value_id = get_expr_value_id (expr);
3152 VN_INFO (name)->value_id = value_id;
3153 nameexpr = get_or_alloc_expr_for_name (name);
3154 add_to_value (value_id, nameexpr);
3155 if (NEW_SETS (block))
3156 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
3157 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
3159 pre_stats.insertions++;
3160 if (dump_file && (dump_flags & TDF_DETAILS))
3162 fprintf (dump_file, "Inserted ");
3163 print_gimple_stmt (dump_file, newstmt, 0, 0);
3164 fprintf (dump_file, " in predecessor %d\n", block->index);
3167 return name;
3171 /* Returns true if we want to inhibit the insertions of PHI nodes
3172 for the given EXPR for basic block BB (a member of a loop).
3173 We want to do this, when we fear that the induction variable we
3174 create might inhibit vectorization. */
3176 static bool
3177 inhibit_phi_insertion (basic_block bb, pre_expr expr)
3179 vn_reference_t vr = PRE_EXPR_REFERENCE (expr);
3180 VEC (vn_reference_op_s, heap) *ops = vr->operands;
3181 vn_reference_op_t op;
3182 unsigned i;
3184 /* If we aren't going to vectorize we don't inhibit anything. */
3185 if (!flag_tree_vectorize)
3186 return false;
3188 /* Otherwise we inhibit the insertion when the address of the
3189 memory reference is a simple induction variable. In other
3190 cases the vectorizer won't do anything anyway (either it's
3191 loop invariant or a complicated expression). */
3192 FOR_EACH_VEC_ELT (vn_reference_op_s, ops, i, op)
3194 switch (op->opcode)
3196 case CALL_EXPR:
3197 /* Calls are not a problem. */
3198 return false;
3200 case ARRAY_REF:
3201 case ARRAY_RANGE_REF:
3202 if (TREE_CODE (op->op0) != SSA_NAME)
3203 break;
3204 /* Fallthru. */
3205 case SSA_NAME:
3207 basic_block defbb = gimple_bb (SSA_NAME_DEF_STMT (op->op0));
3208 affine_iv iv;
3209 /* Default defs are loop invariant. */
3210 if (!defbb)
3211 break;
3212 /* Defined outside this loop, also loop invariant. */
3213 if (!flow_bb_inside_loop_p (bb->loop_father, defbb))
3214 break;
3215 /* If it's a simple induction variable inhibit insertion,
3216 the vectorizer might be interested in this one. */
3217 if (simple_iv (bb->loop_father, bb->loop_father,
3218 op->op0, &iv, true))
3219 return true;
3220 /* No simple IV, vectorizer can't do anything, hence no
3221 reason to inhibit the transformation for this operand. */
3222 break;
3224 default:
3225 break;
3228 return false;
3231 /* Insert the to-be-made-available values of expression EXPRNUM for each
3232 predecessor, stored in AVAIL, into the predecessors of BLOCK, and
3233 merge the result with a phi node, given the same value number as
3234 NODE. Return true if we have inserted new stuff. */
3236 static bool
3237 insert_into_preds_of_block (basic_block block, unsigned int exprnum,
3238 pre_expr *avail)
3240 pre_expr expr = expression_for_id (exprnum);
3241 pre_expr newphi;
3242 unsigned int val = get_expr_value_id (expr);
3243 edge pred;
3244 bool insertions = false;
3245 bool nophi = false;
3246 basic_block bprime;
3247 pre_expr eprime;
3248 edge_iterator ei;
3249 tree type = get_expr_type (expr);
3250 tree temp;
3251 gimple phi;
3253 /* Make sure we aren't creating an induction variable. */
3254 if (block->loop_depth > 0 && EDGE_COUNT (block->preds) == 2)
3256 bool firstinsideloop = false;
3257 bool secondinsideloop = false;
3258 firstinsideloop = flow_bb_inside_loop_p (block->loop_father,
3259 EDGE_PRED (block, 0)->src);
3260 secondinsideloop = flow_bb_inside_loop_p (block->loop_father,
3261 EDGE_PRED (block, 1)->src);
3262 /* Induction variables only have one edge inside the loop. */
3263 if ((firstinsideloop ^ secondinsideloop)
3264 && (expr->kind != REFERENCE
3265 || inhibit_phi_insertion (block, expr)))
3267 if (dump_file && (dump_flags & TDF_DETAILS))
3268 fprintf (dump_file, "Skipping insertion of phi for partial redundancy: Looks like an induction variable\n");
3269 nophi = true;
3273 /* Make the necessary insertions. */
3274 FOR_EACH_EDGE (pred, ei, block->preds)
3276 gimple_seq stmts = NULL;
3277 tree builtexpr;
3278 bprime = pred->src;
3279 eprime = avail[bprime->index];
3281 if (eprime->kind != NAME && eprime->kind != CONSTANT)
3283 builtexpr = create_expression_by_pieces (bprime,
3284 eprime,
3285 &stmts, NULL,
3286 type);
3287 gcc_assert (!(pred->flags & EDGE_ABNORMAL));
3288 gsi_insert_seq_on_edge (pred, stmts);
3289 avail[bprime->index] = get_or_alloc_expr_for_name (builtexpr);
3290 insertions = true;
3292 else if (eprime->kind == CONSTANT)
3294 /* Constants may not have the right type, fold_convert
3295 should give us back a constant with the right type.
3297 tree constant = PRE_EXPR_CONSTANT (eprime);
3298 if (!useless_type_conversion_p (type, TREE_TYPE (constant)))
3300 tree builtexpr = fold_convert (type, constant);
3301 if (!is_gimple_min_invariant (builtexpr))
3303 tree forcedexpr = force_gimple_operand (builtexpr,
3304 &stmts, true,
3305 NULL);
3306 if (!is_gimple_min_invariant (forcedexpr))
3308 if (forcedexpr != builtexpr)
3310 VN_INFO_GET (forcedexpr)->valnum = PRE_EXPR_CONSTANT (eprime);
3311 VN_INFO (forcedexpr)->value_id = get_expr_value_id (eprime);
3313 if (stmts)
3315 gimple_stmt_iterator gsi;
3316 gsi = gsi_start (stmts);
3317 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3319 gimple stmt = gsi_stmt (gsi);
3320 tree lhs = gimple_get_lhs (stmt);
3321 if (TREE_CODE (lhs) == SSA_NAME)
3322 bitmap_set_bit (inserted_exprs,
3323 SSA_NAME_VERSION (lhs));
3324 gimple_set_plf (stmt, NECESSARY, false);
3326 gsi_insert_seq_on_edge (pred, stmts);
3328 avail[bprime->index] = get_or_alloc_expr_for_name (forcedexpr);
3331 else
3332 avail[bprime->index] = get_or_alloc_expr_for_constant (builtexpr);
3335 else if (eprime->kind == NAME)
3337 /* We may have to do a conversion because our value
3338 numbering can look through types in certain cases, but
3339 our IL requires all operands of a phi node have the same
3340 type. */
3341 tree name = PRE_EXPR_NAME (eprime);
3342 if (!useless_type_conversion_p (type, TREE_TYPE (name)))
3344 tree builtexpr;
3345 tree forcedexpr;
3346 builtexpr = fold_convert (type, name);
3347 forcedexpr = force_gimple_operand (builtexpr,
3348 &stmts, true,
3349 NULL);
3351 if (forcedexpr != name)
3353 VN_INFO_GET (forcedexpr)->valnum = VN_INFO (name)->valnum;
3354 VN_INFO (forcedexpr)->value_id = VN_INFO (name)->value_id;
3357 if (stmts)
3359 gimple_stmt_iterator gsi;
3360 gsi = gsi_start (stmts);
3361 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3363 gimple stmt = gsi_stmt (gsi);
3364 tree lhs = gimple_get_lhs (stmt);
3365 if (TREE_CODE (lhs) == SSA_NAME)
3366 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (lhs));
3367 gimple_set_plf (stmt, NECESSARY, false);
3369 gsi_insert_seq_on_edge (pred, stmts);
3371 avail[bprime->index] = get_or_alloc_expr_for_name (forcedexpr);
3375 /* If we didn't want a phi node, and we made insertions, we still have
3376 inserted new stuff, and thus return true. If we didn't want a phi node,
3377 and didn't make insertions, we haven't added anything new, so return
3378 false. */
3379 if (nophi && insertions)
3380 return true;
3381 else if (nophi && !insertions)
3382 return false;
3384 /* Now build a phi for the new variable. */
3385 if (!prephitemp || TREE_TYPE (prephitemp) != type)
3386 prephitemp = create_tmp_var (type, "prephitmp");
3388 temp = prephitemp;
3389 add_referenced_var (temp);
3391 if (TREE_CODE (type) == COMPLEX_TYPE
3392 || TREE_CODE (type) == VECTOR_TYPE)
3393 DECL_GIMPLE_REG_P (temp) = 1;
3394 phi = create_phi_node (temp, block);
3396 gimple_set_plf (phi, NECESSARY, false);
3397 VN_INFO_GET (gimple_phi_result (phi))->valnum = gimple_phi_result (phi);
3398 VN_INFO (gimple_phi_result (phi))->value_id = val;
3399 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (gimple_phi_result (phi)));
3400 FOR_EACH_EDGE (pred, ei, block->preds)
3402 pre_expr ae = avail[pred->src->index];
3403 gcc_assert (get_expr_type (ae) == type
3404 || useless_type_conversion_p (type, get_expr_type (ae)));
3405 if (ae->kind == CONSTANT)
3406 add_phi_arg (phi, PRE_EXPR_CONSTANT (ae), pred, UNKNOWN_LOCATION);
3407 else
3408 add_phi_arg (phi, PRE_EXPR_NAME (avail[pred->src->index]), pred,
3409 UNKNOWN_LOCATION);
3412 newphi = get_or_alloc_expr_for_name (gimple_phi_result (phi));
3413 add_to_value (val, newphi);
3415 /* The value should *not* exist in PHI_GEN, or else we wouldn't be doing
3416 this insertion, since we test for the existence of this value in PHI_GEN
3417 before proceeding with the partial redundancy checks in insert_aux.
3419 The value may exist in AVAIL_OUT, in particular, it could be represented
3420 by the expression we are trying to eliminate, in which case we want the
3421 replacement to occur. If it's not existing in AVAIL_OUT, we want it
3422 inserted there.
3424 Similarly, to the PHI_GEN case, the value should not exist in NEW_SETS of
3425 this block, because if it did, it would have existed in our dominator's
3426 AVAIL_OUT, and would have been skipped due to the full redundancy check.
3429 bitmap_insert_into_set (PHI_GEN (block), newphi);
3430 bitmap_value_replace_in_set (AVAIL_OUT (block),
3431 newphi);
3432 bitmap_insert_into_set (NEW_SETS (block),
3433 newphi);
3435 if (dump_file && (dump_flags & TDF_DETAILS))
3437 fprintf (dump_file, "Created phi ");
3438 print_gimple_stmt (dump_file, phi, 0, 0);
3439 fprintf (dump_file, " in block %d\n", block->index);
3441 pre_stats.phis++;
3442 return true;
3447 /* Perform insertion of partially redundant values.
3448 For BLOCK, do the following:
3449 1. Propagate the NEW_SETS of the dominator into the current block.
3450 If the block has multiple predecessors,
3451 2a. Iterate over the ANTIC expressions for the block to see if
3452 any of them are partially redundant.
3453 2b. If so, insert them into the necessary predecessors to make
3454 the expression fully redundant.
3455 2c. Insert a new PHI merging the values of the predecessors.
3456 2d. Insert the new PHI, and the new expressions, into the
3457 NEW_SETS set.
3458 3. Recursively call ourselves on the dominator children of BLOCK.
3460 Steps 1, 2a, and 3 are done by insert_aux. 2b, 2c and 2d are done by
3461 do_regular_insertion and do_partial_insertion.
3465 static bool
3466 do_regular_insertion (basic_block block, basic_block dom)
3468 bool new_stuff = false;
3469 VEC (pre_expr, heap) *exprs = sorted_array_from_bitmap_set (ANTIC_IN (block));
3470 pre_expr expr;
3471 int i;
3473 FOR_EACH_VEC_ELT (pre_expr, exprs, i, expr)
3475 if (expr->kind != NAME)
3477 pre_expr *avail;
3478 unsigned int val;
3479 bool by_some = false;
3480 bool cant_insert = false;
3481 bool all_same = true;
3482 pre_expr first_s = NULL;
3483 edge pred;
3484 basic_block bprime;
3485 pre_expr eprime = NULL;
3486 edge_iterator ei;
3487 pre_expr edoubleprime = NULL;
3488 bool do_insertion = false;
3490 val = get_expr_value_id (expr);
3491 if (bitmap_set_contains_value (PHI_GEN (block), val))
3492 continue;
3493 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3495 if (dump_file && (dump_flags & TDF_DETAILS))
3496 fprintf (dump_file, "Found fully redundant value\n");
3497 continue;
3500 avail = XCNEWVEC (pre_expr, last_basic_block);
3501 FOR_EACH_EDGE (pred, ei, block->preds)
3503 unsigned int vprime;
3505 /* We should never run insertion for the exit block
3506 and so not come across fake pred edges. */
3507 gcc_assert (!(pred->flags & EDGE_FAKE));
3508 bprime = pred->src;
3509 eprime = phi_translate (expr, ANTIC_IN (block), NULL,
3510 bprime, block);
3512 /* eprime will generally only be NULL if the
3513 value of the expression, translated
3514 through the PHI for this predecessor, is
3515 undefined. If that is the case, we can't
3516 make the expression fully redundant,
3517 because its value is undefined along a
3518 predecessor path. We can thus break out
3519 early because it doesn't matter what the
3520 rest of the results are. */
3521 if (eprime == NULL)
3523 cant_insert = true;
3524 break;
3527 eprime = fully_constant_expression (eprime);
3528 vprime = get_expr_value_id (eprime);
3529 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime),
3530 vprime, NULL);
3531 if (edoubleprime == NULL)
3533 avail[bprime->index] = eprime;
3534 all_same = false;
3536 else
3538 avail[bprime->index] = edoubleprime;
3539 by_some = true;
3540 /* We want to perform insertions to remove a redundancy on
3541 a path in the CFG we want to optimize for speed. */
3542 if (optimize_edge_for_speed_p (pred))
3543 do_insertion = true;
3544 if (first_s == NULL)
3545 first_s = edoubleprime;
3546 else if (!pre_expr_eq (first_s, edoubleprime))
3547 all_same = false;
3550 /* If we can insert it, it's not the same value
3551 already existing along every predecessor, and
3552 it's defined by some predecessor, it is
3553 partially redundant. */
3554 if (!cant_insert && !all_same && by_some)
3556 if (!do_insertion)
3558 if (dump_file && (dump_flags & TDF_DETAILS))
3560 fprintf (dump_file, "Skipping partial redundancy for "
3561 "expression ");
3562 print_pre_expr (dump_file, expr);
3563 fprintf (dump_file, " (%04d), no redundancy on to be "
3564 "optimized for speed edge\n", val);
3567 else if (dbg_cnt (treepre_insert))
3569 if (dump_file && (dump_flags & TDF_DETAILS))
3571 fprintf (dump_file, "Found partial redundancy for "
3572 "expression ");
3573 print_pre_expr (dump_file, expr);
3574 fprintf (dump_file, " (%04d)\n",
3575 get_expr_value_id (expr));
3577 if (insert_into_preds_of_block (block,
3578 get_expression_id (expr),
3579 avail))
3580 new_stuff = true;
3583 /* If all edges produce the same value and that value is
3584 an invariant, then the PHI has the same value on all
3585 edges. Note this. */
3586 else if (!cant_insert && all_same && eprime
3587 && (edoubleprime->kind == CONSTANT
3588 || edoubleprime->kind == NAME)
3589 && !value_id_constant_p (val))
3591 unsigned int j;
3592 bitmap_iterator bi;
3593 bitmap_set_t exprset = VEC_index (bitmap_set_t,
3594 value_expressions, val);
3596 unsigned int new_val = get_expr_value_id (edoubleprime);
3597 FOR_EACH_EXPR_ID_IN_SET (exprset, j, bi)
3599 pre_expr expr = expression_for_id (j);
3601 if (expr->kind == NAME)
3603 vn_ssa_aux_t info = VN_INFO (PRE_EXPR_NAME (expr));
3604 /* Just reset the value id and valnum so it is
3605 the same as the constant we have discovered. */
3606 if (edoubleprime->kind == CONSTANT)
3608 info->valnum = PRE_EXPR_CONSTANT (edoubleprime);
3609 pre_stats.constified++;
3611 else
3612 info->valnum = VN_INFO (PRE_EXPR_NAME (edoubleprime))->valnum;
3613 info->value_id = new_val;
3617 free (avail);
3621 VEC_free (pre_expr, heap, exprs);
3622 return new_stuff;
3626 /* Perform insertion for partially anticipatable expressions. There
3627 is only one case we will perform insertion for these. This case is
3628 if the expression is partially anticipatable, and fully available.
3629 In this case, we know that putting it earlier will enable us to
3630 remove the later computation. */
3633 static bool
3634 do_partial_partial_insertion (basic_block block, basic_block dom)
3636 bool new_stuff = false;
3637 VEC (pre_expr, heap) *exprs = sorted_array_from_bitmap_set (PA_IN (block));
3638 pre_expr expr;
3639 int i;
3641 FOR_EACH_VEC_ELT (pre_expr, exprs, i, expr)
3643 if (expr->kind != NAME)
3645 pre_expr *avail;
3646 unsigned int val;
3647 bool by_all = true;
3648 bool cant_insert = false;
3649 edge pred;
3650 basic_block bprime;
3651 pre_expr eprime = NULL;
3652 edge_iterator ei;
3654 val = get_expr_value_id (expr);
3655 if (bitmap_set_contains_value (PHI_GEN (block), val))
3656 continue;
3657 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3658 continue;
3660 avail = XCNEWVEC (pre_expr, last_basic_block);
3661 FOR_EACH_EDGE (pred, ei, block->preds)
3663 unsigned int vprime;
3664 pre_expr edoubleprime;
3666 /* We should never run insertion for the exit block
3667 and so not come across fake pred edges. */
3668 gcc_assert (!(pred->flags & EDGE_FAKE));
3669 bprime = pred->src;
3670 eprime = phi_translate (expr, ANTIC_IN (block),
3671 PA_IN (block),
3672 bprime, block);
3674 /* eprime will generally only be NULL if the
3675 value of the expression, translated
3676 through the PHI for this predecessor, is
3677 undefined. If that is the case, we can't
3678 make the expression fully redundant,
3679 because its value is undefined along a
3680 predecessor path. We can thus break out
3681 early because it doesn't matter what the
3682 rest of the results are. */
3683 if (eprime == NULL)
3685 cant_insert = true;
3686 break;
3689 eprime = fully_constant_expression (eprime);
3690 vprime = get_expr_value_id (eprime);
3691 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime),
3692 vprime, NULL);
3693 if (edoubleprime == NULL)
3695 by_all = false;
3696 break;
3698 else
3699 avail[bprime->index] = edoubleprime;
3702 /* If we can insert it, it's not the same value
3703 already existing along every predecessor, and
3704 it's defined by some predecessor, it is
3705 partially redundant. */
3706 if (!cant_insert && by_all)
3708 edge succ;
3709 bool do_insertion = false;
3711 /* Insert only if we can remove a later expression on a path
3712 that we want to optimize for speed.
3713 The phi node that we will be inserting in BLOCK is not free,
3714 and inserting it for the sake of !optimize_for_speed successor
3715 may cause regressions on the speed path. */
3716 FOR_EACH_EDGE (succ, ei, block->succs)
3718 if (bitmap_set_contains_value (PA_IN (succ->dest), val))
3720 if (optimize_edge_for_speed_p (succ))
3721 do_insertion = true;
3725 if (!do_insertion)
3727 if (dump_file && (dump_flags & TDF_DETAILS))
3729 fprintf (dump_file, "Skipping partial partial redundancy "
3730 "for expression ");
3731 print_pre_expr (dump_file, expr);
3732 fprintf (dump_file, " (%04d), not partially anticipated "
3733 "on any to be optimized for speed edges\n", val);
3736 else if (dbg_cnt (treepre_insert))
3738 pre_stats.pa_insert++;
3739 if (dump_file && (dump_flags & TDF_DETAILS))
3741 fprintf (dump_file, "Found partial partial redundancy "
3742 "for expression ");
3743 print_pre_expr (dump_file, expr);
3744 fprintf (dump_file, " (%04d)\n",
3745 get_expr_value_id (expr));
3747 if (insert_into_preds_of_block (block,
3748 get_expression_id (expr),
3749 avail))
3750 new_stuff = true;
3753 free (avail);
3757 VEC_free (pre_expr, heap, exprs);
3758 return new_stuff;
3761 static bool
3762 insert_aux (basic_block block)
3764 basic_block son;
3765 bool new_stuff = false;
3767 if (block)
3769 basic_block dom;
3770 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3771 if (dom)
3773 unsigned i;
3774 bitmap_iterator bi;
3775 bitmap_set_t newset = NEW_SETS (dom);
3776 if (newset)
3778 /* Note that we need to value_replace both NEW_SETS, and
3779 AVAIL_OUT. For both the case of NEW_SETS, the value may be
3780 represented by some non-simple expression here that we want
3781 to replace it with. */
3782 FOR_EACH_EXPR_ID_IN_SET (newset, i, bi)
3784 pre_expr expr = expression_for_id (i);
3785 bitmap_value_replace_in_set (NEW_SETS (block), expr);
3786 bitmap_value_replace_in_set (AVAIL_OUT (block), expr);
3789 if (!single_pred_p (block))
3791 new_stuff |= do_regular_insertion (block, dom);
3792 if (do_partial_partial)
3793 new_stuff |= do_partial_partial_insertion (block, dom);
3797 for (son = first_dom_son (CDI_DOMINATORS, block);
3798 son;
3799 son = next_dom_son (CDI_DOMINATORS, son))
3801 new_stuff |= insert_aux (son);
3804 return new_stuff;
3807 /* Perform insertion of partially redundant values. */
3809 static void
3810 insert (void)
3812 bool new_stuff = true;
3813 basic_block bb;
3814 int num_iterations = 0;
3816 FOR_ALL_BB (bb)
3817 NEW_SETS (bb) = bitmap_set_new ();
3819 while (new_stuff)
3821 num_iterations++;
3822 if (dump_file && dump_flags & TDF_DETAILS)
3823 fprintf (dump_file, "Starting insert iteration %d\n", num_iterations);
3824 new_stuff = insert_aux (ENTRY_BLOCK_PTR);
3826 statistics_histogram_event (cfun, "insert iterations", num_iterations);
3830 /* Add OP to EXP_GEN (block), and possibly to the maximal set. */
3832 static void
3833 add_to_exp_gen (basic_block block, tree op)
3835 if (!in_fre)
3837 pre_expr result;
3838 if (TREE_CODE (op) == SSA_NAME && ssa_undefined_value_p (op))
3839 return;
3840 result = get_or_alloc_expr_for_name (op);
3841 bitmap_value_insert_into_set (EXP_GEN (block), result);
3845 /* Create value ids for PHI in BLOCK. */
3847 static void
3848 make_values_for_phi (gimple phi, basic_block block)
3850 tree result = gimple_phi_result (phi);
3852 /* We have no need for virtual phis, as they don't represent
3853 actual computations. */
3854 if (is_gimple_reg (result))
3856 pre_expr e = get_or_alloc_expr_for_name (result);
3857 add_to_value (get_expr_value_id (e), e);
3858 bitmap_insert_into_set (PHI_GEN (block), e);
3859 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3860 if (!in_fre)
3862 unsigned i;
3863 for (i = 0; i < gimple_phi_num_args (phi); ++i)
3865 tree arg = gimple_phi_arg_def (phi, i);
3866 if (TREE_CODE (arg) == SSA_NAME)
3868 e = get_or_alloc_expr_for_name (arg);
3869 add_to_value (get_expr_value_id (e), e);
3876 /* Compute the AVAIL set for all basic blocks.
3878 This function performs value numbering of the statements in each basic
3879 block. The AVAIL sets are built from information we glean while doing
3880 this value numbering, since the AVAIL sets contain only one entry per
3881 value.
3883 AVAIL_IN[BLOCK] = AVAIL_OUT[dom(BLOCK)].
3884 AVAIL_OUT[BLOCK] = AVAIL_IN[BLOCK] U PHI_GEN[BLOCK] U TMP_GEN[BLOCK]. */
3886 static void
3887 compute_avail (void)
3890 basic_block block, son;
3891 basic_block *worklist;
3892 size_t sp = 0;
3893 unsigned i;
3895 /* We pretend that default definitions are defined in the entry block.
3896 This includes function arguments and the static chain decl. */
3897 for (i = 1; i < num_ssa_names; ++i)
3899 tree name = ssa_name (i);
3900 pre_expr e;
3901 if (!name
3902 || !SSA_NAME_IS_DEFAULT_DEF (name)
3903 || has_zero_uses (name)
3904 || !is_gimple_reg (name))
3905 continue;
3907 e = get_or_alloc_expr_for_name (name);
3908 add_to_value (get_expr_value_id (e), e);
3909 if (!in_fre)
3910 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR), e);
3911 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR), e);
3914 /* Allocate the worklist. */
3915 worklist = XNEWVEC (basic_block, n_basic_blocks);
3917 /* Seed the algorithm by putting the dominator children of the entry
3918 block on the worklist. */
3919 for (son = first_dom_son (CDI_DOMINATORS, ENTRY_BLOCK_PTR);
3920 son;
3921 son = next_dom_son (CDI_DOMINATORS, son))
3922 worklist[sp++] = son;
3924 /* Loop until the worklist is empty. */
3925 while (sp)
3927 gimple_stmt_iterator gsi;
3928 gimple stmt;
3929 basic_block dom;
3930 unsigned int stmt_uid = 1;
3932 /* Pick a block from the worklist. */
3933 block = worklist[--sp];
3935 /* Initially, the set of available values in BLOCK is that of
3936 its immediate dominator. */
3937 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3938 if (dom)
3939 bitmap_set_copy (AVAIL_OUT (block), AVAIL_OUT (dom));
3941 /* Generate values for PHI nodes. */
3942 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
3943 make_values_for_phi (gsi_stmt (gsi), block);
3945 BB_MAY_NOTRETURN (block) = 0;
3947 /* Now compute value numbers and populate value sets with all
3948 the expressions computed in BLOCK. */
3949 for (gsi = gsi_start_bb (block); !gsi_end_p (gsi); gsi_next (&gsi))
3951 ssa_op_iter iter;
3952 tree op;
3954 stmt = gsi_stmt (gsi);
3955 gimple_set_uid (stmt, stmt_uid++);
3957 /* Cache whether the basic-block has any non-visible side-effect
3958 or control flow.
3959 If this isn't a call or it is the last stmt in the
3960 basic-block then the CFG represents things correctly. */
3961 if (is_gimple_call (stmt) && !stmt_ends_bb_p (stmt))
3963 /* Non-looping const functions always return normally.
3964 Otherwise the call might not return or have side-effects
3965 that forbids hoisting possibly trapping expressions
3966 before it. */
3967 int flags = gimple_call_flags (stmt);
3968 if (!(flags & ECF_CONST)
3969 || (flags & ECF_LOOPING_CONST_OR_PURE))
3970 BB_MAY_NOTRETURN (block) = 1;
3973 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
3975 pre_expr e = get_or_alloc_expr_for_name (op);
3977 add_to_value (get_expr_value_id (e), e);
3978 if (!in_fre)
3979 bitmap_insert_into_set (TMP_GEN (block), e);
3980 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3983 if (gimple_has_side_effects (stmt) || stmt_could_throw_p (stmt))
3984 continue;
3986 switch (gimple_code (stmt))
3988 case GIMPLE_RETURN:
3989 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
3990 add_to_exp_gen (block, op);
3991 continue;
3993 case GIMPLE_CALL:
3995 vn_reference_t ref;
3996 unsigned int i;
3997 vn_reference_op_t vro;
3998 pre_expr result = NULL;
3999 VEC(vn_reference_op_s, heap) *ops = NULL;
4001 /* We can value number only calls to real functions. */
4002 if (gimple_call_internal_p (stmt))
4003 continue;
4005 copy_reference_ops_from_call (stmt, &ops);
4006 vn_reference_lookup_pieces (gimple_vuse (stmt), 0,
4007 gimple_expr_type (stmt),
4008 ops, &ref, VN_NOWALK);
4009 VEC_free (vn_reference_op_s, heap, ops);
4010 if (!ref)
4011 continue;
4013 for (i = 0; VEC_iterate (vn_reference_op_s,
4014 ref->operands, i,
4015 vro); i++)
4017 if (vro->op0 && TREE_CODE (vro->op0) == SSA_NAME)
4018 add_to_exp_gen (block, vro->op0);
4019 if (vro->op1 && TREE_CODE (vro->op1) == SSA_NAME)
4020 add_to_exp_gen (block, vro->op1);
4021 if (vro->op2 && TREE_CODE (vro->op2) == SSA_NAME)
4022 add_to_exp_gen (block, vro->op2);
4025 /* If the value of the call is not invalidated in
4026 this block until it is computed, add the expression
4027 to EXP_GEN. */
4028 if (!gimple_vuse (stmt)
4029 || gimple_code
4030 (SSA_NAME_DEF_STMT (gimple_vuse (stmt))) == GIMPLE_PHI
4031 || gimple_bb (SSA_NAME_DEF_STMT
4032 (gimple_vuse (stmt))) != block)
4034 result = (pre_expr) pool_alloc (pre_expr_pool);
4035 result->kind = REFERENCE;
4036 result->id = 0;
4037 PRE_EXPR_REFERENCE (result) = ref;
4039 get_or_alloc_expression_id (result);
4040 add_to_value (get_expr_value_id (result), result);
4041 if (!in_fre)
4042 bitmap_value_insert_into_set (EXP_GEN (block), result);
4044 continue;
4047 case GIMPLE_ASSIGN:
4049 pre_expr result = NULL;
4050 switch (TREE_CODE_CLASS (gimple_assign_rhs_code (stmt)))
4052 case tcc_unary:
4053 case tcc_binary:
4054 case tcc_comparison:
4056 vn_nary_op_t nary;
4057 unsigned int i;
4059 vn_nary_op_lookup_pieces (gimple_num_ops (stmt) - 1,
4060 gimple_assign_rhs_code (stmt),
4061 gimple_expr_type (stmt),
4062 gimple_assign_rhs1_ptr (stmt),
4063 &nary);
4065 if (!nary)
4066 continue;
4068 for (i = 0; i < nary->length; i++)
4069 if (TREE_CODE (nary->op[i]) == SSA_NAME)
4070 add_to_exp_gen (block, nary->op[i]);
4072 /* If the NARY traps and there was a preceeding
4073 point in the block that might not return avoid
4074 adding the nary to EXP_GEN. */
4075 if (BB_MAY_NOTRETURN (block)
4076 && vn_nary_may_trap (nary))
4077 continue;
4079 result = (pre_expr) pool_alloc (pre_expr_pool);
4080 result->kind = NARY;
4081 result->id = 0;
4082 PRE_EXPR_NARY (result) = nary;
4083 break;
4086 case tcc_declaration:
4087 case tcc_reference:
4089 vn_reference_t ref;
4090 unsigned int i;
4091 vn_reference_op_t vro;
4093 vn_reference_lookup (gimple_assign_rhs1 (stmt),
4094 gimple_vuse (stmt),
4095 VN_WALK, &ref);
4096 if (!ref)
4097 continue;
4099 for (i = 0; VEC_iterate (vn_reference_op_s,
4100 ref->operands, i,
4101 vro); i++)
4103 if (vro->op0 && TREE_CODE (vro->op0) == SSA_NAME)
4104 add_to_exp_gen (block, vro->op0);
4105 if (vro->op1 && TREE_CODE (vro->op1) == SSA_NAME)
4106 add_to_exp_gen (block, vro->op1);
4107 if (vro->op2 && TREE_CODE (vro->op2) == SSA_NAME)
4108 add_to_exp_gen (block, vro->op2);
4111 /* If the value of the reference is not invalidated in
4112 this block until it is computed, add the expression
4113 to EXP_GEN. */
4114 if (gimple_vuse (stmt))
4116 gimple def_stmt;
4117 bool ok = true;
4118 def_stmt = SSA_NAME_DEF_STMT (gimple_vuse (stmt));
4119 while (!gimple_nop_p (def_stmt)
4120 && gimple_code (def_stmt) != GIMPLE_PHI
4121 && gimple_bb (def_stmt) == block)
4123 if (stmt_may_clobber_ref_p
4124 (def_stmt, gimple_assign_rhs1 (stmt)))
4126 ok = false;
4127 break;
4129 def_stmt
4130 = SSA_NAME_DEF_STMT (gimple_vuse (def_stmt));
4132 if (!ok)
4133 continue;
4136 result = (pre_expr) pool_alloc (pre_expr_pool);
4137 result->kind = REFERENCE;
4138 result->id = 0;
4139 PRE_EXPR_REFERENCE (result) = ref;
4140 break;
4143 default:
4144 /* For any other statement that we don't
4145 recognize, simply add all referenced
4146 SSA_NAMEs to EXP_GEN. */
4147 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
4148 add_to_exp_gen (block, op);
4149 continue;
4152 get_or_alloc_expression_id (result);
4153 add_to_value (get_expr_value_id (result), result);
4154 if (!in_fre)
4155 bitmap_value_insert_into_set (EXP_GEN (block), result);
4157 continue;
4159 default:
4160 break;
4164 /* Put the dominator children of BLOCK on the worklist of blocks
4165 to compute available sets for. */
4166 for (son = first_dom_son (CDI_DOMINATORS, block);
4167 son;
4168 son = next_dom_son (CDI_DOMINATORS, son))
4169 worklist[sp++] = son;
4172 free (worklist);
4175 /* Insert the expression for SSA_VN that SCCVN thought would be simpler
4176 than the available expressions for it. The insertion point is
4177 right before the first use in STMT. Returns the SSA_NAME that should
4178 be used for replacement. */
4180 static tree
4181 do_SCCVN_insertion (gimple stmt, tree ssa_vn)
4183 basic_block bb = gimple_bb (stmt);
4184 gimple_stmt_iterator gsi;
4185 gimple_seq stmts = NULL;
4186 tree expr;
4187 pre_expr e;
4189 /* First create a value expression from the expression we want
4190 to insert and associate it with the value handle for SSA_VN. */
4191 e = get_or_alloc_expr_for (vn_get_expr_for (ssa_vn));
4192 if (e == NULL)
4193 return NULL_TREE;
4195 /* Then use create_expression_by_pieces to generate a valid
4196 expression to insert at this point of the IL stream. */
4197 expr = create_expression_by_pieces (bb, e, &stmts, stmt, NULL);
4198 if (expr == NULL_TREE)
4199 return NULL_TREE;
4200 gsi = gsi_for_stmt (stmt);
4201 gsi_insert_seq_before (&gsi, stmts, GSI_SAME_STMT);
4203 return expr;
4206 /* Eliminate fully redundant computations. */
4208 static unsigned int
4209 eliminate (void)
4211 VEC (gimple, heap) *to_remove = NULL;
4212 VEC (gimple, heap) *to_update = NULL;
4213 basic_block b;
4214 unsigned int todo = 0;
4215 gimple_stmt_iterator gsi;
4216 gimple stmt;
4217 unsigned i;
4219 FOR_EACH_BB (b)
4221 for (gsi = gsi_start_bb (b); !gsi_end_p (gsi); gsi_next (&gsi))
4223 tree lhs = NULL_TREE;
4224 tree rhs = NULL_TREE;
4226 stmt = gsi_stmt (gsi);
4228 if (gimple_has_lhs (stmt))
4229 lhs = gimple_get_lhs (stmt);
4231 if (gimple_assign_single_p (stmt))
4232 rhs = gimple_assign_rhs1 (stmt);
4234 /* Lookup the RHS of the expression, see if we have an
4235 available computation for it. If so, replace the RHS with
4236 the available computation.
4238 See PR43491.
4239 We don't replace global register variable when it is a the RHS of
4240 a single assign. We do replace local register variable since gcc
4241 does not guarantee local variable will be allocated in register. */
4242 if (gimple_has_lhs (stmt)
4243 && TREE_CODE (lhs) == SSA_NAME
4244 && !gimple_assign_ssa_name_copy_p (stmt)
4245 && (!gimple_assign_single_p (stmt)
4246 || (!is_gimple_min_invariant (rhs)
4247 && (gimple_assign_rhs_code (stmt) != VAR_DECL
4248 || !is_global_var (rhs)
4249 || !DECL_HARD_REGISTER (rhs))))
4250 && !gimple_has_volatile_ops (stmt)
4251 && !has_zero_uses (lhs))
4253 tree sprime = NULL;
4254 pre_expr lhsexpr = get_or_alloc_expr_for_name (lhs);
4255 pre_expr sprimeexpr;
4256 gimple orig_stmt = stmt;
4258 sprimeexpr = bitmap_find_leader (AVAIL_OUT (b),
4259 get_expr_value_id (lhsexpr),
4260 NULL);
4262 if (sprimeexpr)
4264 if (sprimeexpr->kind == CONSTANT)
4265 sprime = PRE_EXPR_CONSTANT (sprimeexpr);
4266 else if (sprimeexpr->kind == NAME)
4267 sprime = PRE_EXPR_NAME (sprimeexpr);
4268 else
4269 gcc_unreachable ();
4272 /* If there is no existing leader but SCCVN knows this
4273 value is constant, use that constant. */
4274 if (!sprime && is_gimple_min_invariant (VN_INFO (lhs)->valnum))
4276 sprime = VN_INFO (lhs)->valnum;
4277 if (!useless_type_conversion_p (TREE_TYPE (lhs),
4278 TREE_TYPE (sprime)))
4279 sprime = fold_convert (TREE_TYPE (lhs), sprime);
4281 if (dump_file && (dump_flags & TDF_DETAILS))
4283 fprintf (dump_file, "Replaced ");
4284 print_gimple_expr (dump_file, stmt, 0, 0);
4285 fprintf (dump_file, " with ");
4286 print_generic_expr (dump_file, sprime, 0);
4287 fprintf (dump_file, " in ");
4288 print_gimple_stmt (dump_file, stmt, 0, 0);
4290 pre_stats.eliminations++;
4291 propagate_tree_value_into_stmt (&gsi, sprime);
4292 stmt = gsi_stmt (gsi);
4293 update_stmt (stmt);
4295 /* If we removed EH side-effects from the statement, clean
4296 its EH information. */
4297 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
4299 bitmap_set_bit (need_eh_cleanup,
4300 gimple_bb (stmt)->index);
4301 if (dump_file && (dump_flags & TDF_DETAILS))
4302 fprintf (dump_file, " Removed EH side-effects.\n");
4304 continue;
4307 /* If there is no existing usable leader but SCCVN thinks
4308 it has an expression it wants to use as replacement,
4309 insert that. */
4310 if (!sprime || sprime == lhs)
4312 tree val = VN_INFO (lhs)->valnum;
4313 if (val != VN_TOP
4314 && TREE_CODE (val) == SSA_NAME
4315 && VN_INFO (val)->needs_insertion
4316 && can_PRE_operation (vn_get_expr_for (val)))
4317 sprime = do_SCCVN_insertion (stmt, val);
4319 if (sprime
4320 && sprime != lhs
4321 && (rhs == NULL_TREE
4322 || TREE_CODE (rhs) != SSA_NAME
4323 || may_propagate_copy (rhs, sprime)))
4325 bool can_make_abnormal_goto
4326 = is_gimple_call (stmt)
4327 && stmt_can_make_abnormal_goto (stmt);
4329 gcc_assert (sprime != rhs);
4331 if (dump_file && (dump_flags & TDF_DETAILS))
4333 fprintf (dump_file, "Replaced ");
4334 print_gimple_expr (dump_file, stmt, 0, 0);
4335 fprintf (dump_file, " with ");
4336 print_generic_expr (dump_file, sprime, 0);
4337 fprintf (dump_file, " in ");
4338 print_gimple_stmt (dump_file, stmt, 0, 0);
4341 if (TREE_CODE (sprime) == SSA_NAME)
4342 gimple_set_plf (SSA_NAME_DEF_STMT (sprime),
4343 NECESSARY, true);
4344 /* We need to make sure the new and old types actually match,
4345 which may require adding a simple cast, which fold_convert
4346 will do for us. */
4347 if ((!rhs || TREE_CODE (rhs) != SSA_NAME)
4348 && !useless_type_conversion_p (gimple_expr_type (stmt),
4349 TREE_TYPE (sprime)))
4350 sprime = fold_convert (gimple_expr_type (stmt), sprime);
4352 pre_stats.eliminations++;
4353 propagate_tree_value_into_stmt (&gsi, sprime);
4354 stmt = gsi_stmt (gsi);
4355 update_stmt (stmt);
4357 /* If we removed EH side-effects from the statement, clean
4358 its EH information. */
4359 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
4361 bitmap_set_bit (need_eh_cleanup,
4362 gimple_bb (stmt)->index);
4363 if (dump_file && (dump_flags & TDF_DETAILS))
4364 fprintf (dump_file, " Removed EH side-effects.\n");
4367 /* Likewise for AB side-effects. */
4368 if (can_make_abnormal_goto
4369 && !stmt_can_make_abnormal_goto (stmt))
4371 bitmap_set_bit (need_ab_cleanup,
4372 gimple_bb (stmt)->index);
4373 if (dump_file && (dump_flags & TDF_DETAILS))
4374 fprintf (dump_file, " Removed AB side-effects.\n");
4378 /* If the statement is a scalar store, see if the expression
4379 has the same value number as its rhs. If so, the store is
4380 dead. */
4381 else if (gimple_assign_single_p (stmt)
4382 && !gimple_has_volatile_ops (stmt)
4383 && !is_gimple_reg (gimple_assign_lhs (stmt))
4384 && (TREE_CODE (rhs) == SSA_NAME
4385 || is_gimple_min_invariant (rhs)))
4387 tree val;
4388 val = vn_reference_lookup (gimple_assign_lhs (stmt),
4389 gimple_vuse (stmt), VN_WALK, NULL);
4390 if (TREE_CODE (rhs) == SSA_NAME)
4391 rhs = VN_INFO (rhs)->valnum;
4392 if (val
4393 && operand_equal_p (val, rhs, 0))
4395 if (dump_file && (dump_flags & TDF_DETAILS))
4397 fprintf (dump_file, "Deleted redundant store ");
4398 print_gimple_stmt (dump_file, stmt, 0, 0);
4401 /* Queue stmt for removal. */
4402 VEC_safe_push (gimple, heap, to_remove, stmt);
4405 /* Visit COND_EXPRs and fold the comparison with the
4406 available value-numbers. */
4407 else if (gimple_code (stmt) == GIMPLE_COND)
4409 tree op0 = gimple_cond_lhs (stmt);
4410 tree op1 = gimple_cond_rhs (stmt);
4411 tree result;
4413 if (TREE_CODE (op0) == SSA_NAME)
4414 op0 = VN_INFO (op0)->valnum;
4415 if (TREE_CODE (op1) == SSA_NAME)
4416 op1 = VN_INFO (op1)->valnum;
4417 result = fold_binary (gimple_cond_code (stmt), boolean_type_node,
4418 op0, op1);
4419 if (result && TREE_CODE (result) == INTEGER_CST)
4421 if (integer_zerop (result))
4422 gimple_cond_make_false (stmt);
4423 else
4424 gimple_cond_make_true (stmt);
4425 update_stmt (stmt);
4426 todo = TODO_cleanup_cfg;
4429 /* Visit indirect calls and turn them into direct calls if
4430 possible. */
4431 if (is_gimple_call (stmt))
4433 tree orig_fn = gimple_call_fn (stmt);
4434 tree fn;
4435 if (!orig_fn)
4436 continue;
4437 if (TREE_CODE (orig_fn) == SSA_NAME)
4438 fn = VN_INFO (orig_fn)->valnum;
4439 else if (TREE_CODE (orig_fn) == OBJ_TYPE_REF
4440 && TREE_CODE (OBJ_TYPE_REF_EXPR (orig_fn)) == SSA_NAME)
4441 fn = VN_INFO (OBJ_TYPE_REF_EXPR (orig_fn))->valnum;
4442 else
4443 continue;
4444 if (gimple_call_addr_fndecl (fn) != NULL_TREE
4445 && useless_type_conversion_p (TREE_TYPE (orig_fn),
4446 TREE_TYPE (fn)))
4448 bool can_make_abnormal_goto
4449 = stmt_can_make_abnormal_goto (stmt);
4450 bool was_noreturn = gimple_call_noreturn_p (stmt);
4452 if (dump_file && (dump_flags & TDF_DETAILS))
4454 fprintf (dump_file, "Replacing call target with ");
4455 print_generic_expr (dump_file, fn, 0);
4456 fprintf (dump_file, " in ");
4457 print_gimple_stmt (dump_file, stmt, 0, 0);
4460 gimple_call_set_fn (stmt, fn);
4461 VEC_safe_push (gimple, heap, to_update, stmt);
4463 /* When changing a call into a noreturn call, cfg cleanup
4464 is needed to fix up the noreturn call. */
4465 if (!was_noreturn && gimple_call_noreturn_p (stmt))
4466 todo |= TODO_cleanup_cfg;
4468 /* If we removed EH side-effects from the statement, clean
4469 its EH information. */
4470 if (maybe_clean_or_replace_eh_stmt (stmt, stmt))
4472 bitmap_set_bit (need_eh_cleanup,
4473 gimple_bb (stmt)->index);
4474 if (dump_file && (dump_flags & TDF_DETAILS))
4475 fprintf (dump_file, " Removed EH side-effects.\n");
4478 /* Likewise for AB side-effects. */
4479 if (can_make_abnormal_goto
4480 && !stmt_can_make_abnormal_goto (stmt))
4482 bitmap_set_bit (need_ab_cleanup,
4483 gimple_bb (stmt)->index);
4484 if (dump_file && (dump_flags & TDF_DETAILS))
4485 fprintf (dump_file, " Removed AB side-effects.\n");
4488 /* Changing an indirect call to a direct call may
4489 have exposed different semantics. This may
4490 require an SSA update. */
4491 todo |= TODO_update_ssa_only_virtuals;
4496 for (gsi = gsi_start_phis (b); !gsi_end_p (gsi);)
4498 gimple stmt, phi = gsi_stmt (gsi);
4499 tree sprime = NULL_TREE, res = PHI_RESULT (phi);
4500 pre_expr sprimeexpr, resexpr;
4501 gimple_stmt_iterator gsi2;
4503 /* We want to perform redundant PHI elimination. Do so by
4504 replacing the PHI with a single copy if possible.
4505 Do not touch inserted, single-argument or virtual PHIs. */
4506 if (gimple_phi_num_args (phi) == 1
4507 || !is_gimple_reg (res))
4509 gsi_next (&gsi);
4510 continue;
4513 resexpr = get_or_alloc_expr_for_name (res);
4514 sprimeexpr = bitmap_find_leader (AVAIL_OUT (b),
4515 get_expr_value_id (resexpr), NULL);
4516 if (sprimeexpr)
4518 if (sprimeexpr->kind == CONSTANT)
4519 sprime = PRE_EXPR_CONSTANT (sprimeexpr);
4520 else if (sprimeexpr->kind == NAME)
4521 sprime = PRE_EXPR_NAME (sprimeexpr);
4522 else
4523 gcc_unreachable ();
4525 if (!sprime && is_gimple_min_invariant (VN_INFO (res)->valnum))
4527 sprime = VN_INFO (res)->valnum;
4528 if (!useless_type_conversion_p (TREE_TYPE (res),
4529 TREE_TYPE (sprime)))
4530 sprime = fold_convert (TREE_TYPE (res), sprime);
4532 if (!sprime
4533 || sprime == res)
4535 gsi_next (&gsi);
4536 continue;
4539 if (dump_file && (dump_flags & TDF_DETAILS))
4541 fprintf (dump_file, "Replaced redundant PHI node defining ");
4542 print_generic_expr (dump_file, res, 0);
4543 fprintf (dump_file, " with ");
4544 print_generic_expr (dump_file, sprime, 0);
4545 fprintf (dump_file, "\n");
4548 remove_phi_node (&gsi, false);
4550 if (!bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res))
4551 && TREE_CODE (sprime) == SSA_NAME)
4552 gimple_set_plf (SSA_NAME_DEF_STMT (sprime), NECESSARY, true);
4554 if (!useless_type_conversion_p (TREE_TYPE (res), TREE_TYPE (sprime)))
4555 sprime = fold_convert (TREE_TYPE (res), sprime);
4556 stmt = gimple_build_assign (res, sprime);
4557 SSA_NAME_DEF_STMT (res) = stmt;
4558 gimple_set_plf (stmt, NECESSARY, gimple_plf (phi, NECESSARY));
4560 gsi2 = gsi_after_labels (b);
4561 gsi_insert_before (&gsi2, stmt, GSI_NEW_STMT);
4562 /* Queue the copy for eventual removal. */
4563 VEC_safe_push (gimple, heap, to_remove, stmt);
4564 /* If we inserted this PHI node ourself, it's not an elimination. */
4565 if (bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res)))
4566 pre_stats.phis--;
4567 else
4568 pre_stats.eliminations++;
4572 /* We cannot remove stmts during BB walk, especially not release SSA
4573 names there as this confuses the VN machinery. The stmts ending
4574 up in to_remove are either stores or simple copies. */
4575 FOR_EACH_VEC_ELT (gimple, to_remove, i, stmt)
4577 tree lhs = gimple_assign_lhs (stmt);
4578 tree rhs = gimple_assign_rhs1 (stmt);
4579 use_operand_p use_p;
4580 gimple use_stmt;
4582 /* If there is a single use only, propagate the equivalency
4583 instead of keeping the copy. */
4584 if (TREE_CODE (lhs) == SSA_NAME
4585 && TREE_CODE (rhs) == SSA_NAME
4586 && single_imm_use (lhs, &use_p, &use_stmt)
4587 && may_propagate_copy (USE_FROM_PTR (use_p), rhs))
4589 SET_USE (use_p, rhs);
4590 update_stmt (use_stmt);
4591 if (bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (lhs))
4592 && TREE_CODE (rhs) == SSA_NAME)
4593 gimple_set_plf (SSA_NAME_DEF_STMT (rhs), NECESSARY, true);
4596 /* If this is a store or a now unused copy, remove it. */
4597 if (TREE_CODE (lhs) != SSA_NAME
4598 || has_zero_uses (lhs))
4600 basic_block bb = gimple_bb (stmt);
4601 gsi = gsi_for_stmt (stmt);
4602 unlink_stmt_vdef (stmt);
4603 if (gsi_remove (&gsi, true))
4604 bitmap_set_bit (need_eh_cleanup, bb->index);
4605 if (TREE_CODE (lhs) == SSA_NAME)
4606 bitmap_clear_bit (inserted_exprs, SSA_NAME_VERSION (lhs));
4607 release_defs (stmt);
4610 VEC_free (gimple, heap, to_remove);
4612 /* We cannot update call statements with virtual operands during
4613 SSA walk. This might remove them which in turn makes our
4614 VN lattice invalid. */
4615 FOR_EACH_VEC_ELT (gimple, to_update, i, stmt)
4616 update_stmt (stmt);
4617 VEC_free (gimple, heap, to_update);
4619 return todo;
4622 /* Borrow a bit of tree-ssa-dce.c for the moment.
4623 XXX: In 4.1, we should be able to just run a DCE pass after PRE, though
4624 this may be a bit faster, and we may want critical edges kept split. */
4626 /* If OP's defining statement has not already been determined to be necessary,
4627 mark that statement necessary. Return the stmt, if it is newly
4628 necessary. */
4630 static inline gimple
4631 mark_operand_necessary (tree op)
4633 gimple stmt;
4635 gcc_assert (op);
4637 if (TREE_CODE (op) != SSA_NAME)
4638 return NULL;
4640 stmt = SSA_NAME_DEF_STMT (op);
4641 gcc_assert (stmt);
4643 if (gimple_plf (stmt, NECESSARY)
4644 || gimple_nop_p (stmt))
4645 return NULL;
4647 gimple_set_plf (stmt, NECESSARY, true);
4648 return stmt;
4651 /* Because we don't follow exactly the standard PRE algorithm, and decide not
4652 to insert PHI nodes sometimes, and because value numbering of casts isn't
4653 perfect, we sometimes end up inserting dead code. This simple DCE-like
4654 pass removes any insertions we made that weren't actually used. */
4656 static void
4657 remove_dead_inserted_code (void)
4659 bitmap worklist;
4660 unsigned i;
4661 bitmap_iterator bi;
4662 gimple t;
4664 worklist = BITMAP_ALLOC (NULL);
4665 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4667 t = SSA_NAME_DEF_STMT (ssa_name (i));
4668 if (gimple_plf (t, NECESSARY))
4669 bitmap_set_bit (worklist, i);
4671 while (!bitmap_empty_p (worklist))
4673 i = bitmap_first_set_bit (worklist);
4674 bitmap_clear_bit (worklist, i);
4675 t = SSA_NAME_DEF_STMT (ssa_name (i));
4677 /* PHI nodes are somewhat special in that each PHI alternative has
4678 data and control dependencies. All the statements feeding the
4679 PHI node's arguments are always necessary. */
4680 if (gimple_code (t) == GIMPLE_PHI)
4682 unsigned k;
4684 for (k = 0; k < gimple_phi_num_args (t); k++)
4686 tree arg = PHI_ARG_DEF (t, k);
4687 if (TREE_CODE (arg) == SSA_NAME)
4689 gimple n = mark_operand_necessary (arg);
4690 if (n)
4691 bitmap_set_bit (worklist, SSA_NAME_VERSION (arg));
4695 else
4697 /* Propagate through the operands. Examine all the USE, VUSE and
4698 VDEF operands in this statement. Mark all the statements
4699 which feed this statement's uses as necessary. */
4700 ssa_op_iter iter;
4701 tree use;
4703 /* The operands of VDEF expressions are also needed as they
4704 represent potential definitions that may reach this
4705 statement (VDEF operands allow us to follow def-def
4706 links). */
4708 FOR_EACH_SSA_TREE_OPERAND (use, t, iter, SSA_OP_ALL_USES)
4710 gimple n = mark_operand_necessary (use);
4711 if (n)
4712 bitmap_set_bit (worklist, SSA_NAME_VERSION (use));
4717 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4719 t = SSA_NAME_DEF_STMT (ssa_name (i));
4720 if (!gimple_plf (t, NECESSARY))
4722 gimple_stmt_iterator gsi;
4724 if (dump_file && (dump_flags & TDF_DETAILS))
4726 fprintf (dump_file, "Removing unnecessary insertion:");
4727 print_gimple_stmt (dump_file, t, 0, 0);
4730 gsi = gsi_for_stmt (t);
4731 if (gimple_code (t) == GIMPLE_PHI)
4732 remove_phi_node (&gsi, true);
4733 else
4735 gsi_remove (&gsi, true);
4736 release_defs (t);
4740 BITMAP_FREE (worklist);
4743 /* Compute a reverse post-order in *POST_ORDER. If INCLUDE_ENTRY_EXIT is
4744 true, then then ENTRY_BLOCK and EXIT_BLOCK are included. Returns
4745 the number of visited blocks. */
4747 static int
4748 my_rev_post_order_compute (int *post_order, bool include_entry_exit)
4750 edge_iterator *stack;
4751 int sp;
4752 int post_order_num = 0;
4753 sbitmap visited;
4755 if (include_entry_exit)
4756 post_order[post_order_num++] = EXIT_BLOCK;
4758 /* Allocate stack for back-tracking up CFG. */
4759 stack = XNEWVEC (edge_iterator, n_basic_blocks + 1);
4760 sp = 0;
4762 /* Allocate bitmap to track nodes that have been visited. */
4763 visited = sbitmap_alloc (last_basic_block);
4765 /* None of the nodes in the CFG have been visited yet. */
4766 sbitmap_zero (visited);
4768 /* Push the last edge on to the stack. */
4769 stack[sp++] = ei_start (EXIT_BLOCK_PTR->preds);
4771 while (sp)
4773 edge_iterator ei;
4774 basic_block src;
4775 basic_block dest;
4777 /* Look at the edge on the top of the stack. */
4778 ei = stack[sp - 1];
4779 src = ei_edge (ei)->src;
4780 dest = ei_edge (ei)->dest;
4782 /* Check if the edge destination has been visited yet. */
4783 if (src != ENTRY_BLOCK_PTR && ! TEST_BIT (visited, src->index))
4785 /* Mark that we have visited the destination. */
4786 SET_BIT (visited, src->index);
4788 if (EDGE_COUNT (src->preds) > 0)
4789 /* Since the DEST node has been visited for the first
4790 time, check its successors. */
4791 stack[sp++] = ei_start (src->preds);
4792 else
4793 post_order[post_order_num++] = src->index;
4795 else
4797 if (ei_one_before_end_p (ei) && dest != EXIT_BLOCK_PTR)
4798 post_order[post_order_num++] = dest->index;
4800 if (!ei_one_before_end_p (ei))
4801 ei_next (&stack[sp - 1]);
4802 else
4803 sp--;
4807 if (include_entry_exit)
4808 post_order[post_order_num++] = ENTRY_BLOCK;
4810 free (stack);
4811 sbitmap_free (visited);
4812 return post_order_num;
4816 /* Initialize data structures used by PRE. */
4818 static void
4819 init_pre (bool do_fre)
4821 basic_block bb;
4823 next_expression_id = 1;
4824 expressions = NULL;
4825 VEC_safe_push (pre_expr, heap, expressions, NULL);
4826 value_expressions = VEC_alloc (bitmap_set_t, heap, get_max_value_id () + 1);
4827 VEC_safe_grow_cleared (bitmap_set_t, heap, value_expressions,
4828 get_max_value_id() + 1);
4829 name_to_id = NULL;
4831 in_fre = do_fre;
4833 inserted_exprs = BITMAP_ALLOC (NULL);
4834 need_creation = NULL;
4835 pretemp = NULL_TREE;
4836 storetemp = NULL_TREE;
4837 prephitemp = NULL_TREE;
4839 connect_infinite_loops_to_exit ();
4840 memset (&pre_stats, 0, sizeof (pre_stats));
4843 postorder = XNEWVEC (int, n_basic_blocks - NUM_FIXED_BLOCKS);
4844 my_rev_post_order_compute (postorder, false);
4846 alloc_aux_for_blocks (sizeof (struct bb_bitmap_sets));
4848 calculate_dominance_info (CDI_POST_DOMINATORS);
4849 calculate_dominance_info (CDI_DOMINATORS);
4851 bitmap_obstack_initialize (&grand_bitmap_obstack);
4852 phi_translate_table = htab_create (5110, expr_pred_trans_hash,
4853 expr_pred_trans_eq, free);
4854 expression_to_id = htab_create (num_ssa_names * 3,
4855 pre_expr_hash,
4856 pre_expr_eq, NULL);
4857 bitmap_set_pool = create_alloc_pool ("Bitmap sets",
4858 sizeof (struct bitmap_set), 30);
4859 pre_expr_pool = create_alloc_pool ("pre_expr nodes",
4860 sizeof (struct pre_expr_d), 30);
4861 FOR_ALL_BB (bb)
4863 EXP_GEN (bb) = bitmap_set_new ();
4864 PHI_GEN (bb) = bitmap_set_new ();
4865 TMP_GEN (bb) = bitmap_set_new ();
4866 AVAIL_OUT (bb) = bitmap_set_new ();
4869 need_eh_cleanup = BITMAP_ALLOC (NULL);
4870 need_ab_cleanup = BITMAP_ALLOC (NULL);
4874 /* Deallocate data structures used by PRE. */
4876 static void
4877 fini_pre (bool do_fre)
4879 bool do_eh_cleanup = !bitmap_empty_p (need_eh_cleanup);
4880 bool do_ab_cleanup = !bitmap_empty_p (need_ab_cleanup);
4882 free (postorder);
4883 VEC_free (bitmap_set_t, heap, value_expressions);
4884 BITMAP_FREE (inserted_exprs);
4885 VEC_free (gimple, heap, need_creation);
4886 bitmap_obstack_release (&grand_bitmap_obstack);
4887 free_alloc_pool (bitmap_set_pool);
4888 free_alloc_pool (pre_expr_pool);
4889 htab_delete (phi_translate_table);
4890 htab_delete (expression_to_id);
4891 VEC_free (unsigned, heap, name_to_id);
4893 free_aux_for_blocks ();
4895 free_dominance_info (CDI_POST_DOMINATORS);
4897 if (do_eh_cleanup)
4898 gimple_purge_all_dead_eh_edges (need_eh_cleanup);
4900 if (do_ab_cleanup)
4901 gimple_purge_all_dead_abnormal_call_edges (need_ab_cleanup);
4903 BITMAP_FREE (need_eh_cleanup);
4904 BITMAP_FREE (need_ab_cleanup);
4906 if (do_eh_cleanup || do_ab_cleanup)
4907 cleanup_tree_cfg ();
4909 if (!do_fre)
4910 loop_optimizer_finalize ();
4913 /* Main entry point to the SSA-PRE pass. DO_FRE is true if the caller
4914 only wants to do full redundancy elimination. */
4916 static unsigned int
4917 execute_pre (bool do_fre)
4919 unsigned int todo = 0;
4921 do_partial_partial =
4922 flag_tree_partial_pre && optimize_function_for_speed_p (cfun);
4924 /* This has to happen before SCCVN runs because
4925 loop_optimizer_init may create new phis, etc. */
4926 if (!do_fre)
4927 loop_optimizer_init (LOOPS_NORMAL);
4929 if (!run_scc_vn (do_fre ? VN_WALKREWRITE : VN_WALK))
4931 if (!do_fre)
4932 loop_optimizer_finalize ();
4934 return 0;
4937 init_pre (do_fre);
4938 scev_initialize ();
4940 /* Collect and value number expressions computed in each basic block. */
4941 compute_avail ();
4943 if (dump_file && (dump_flags & TDF_DETAILS))
4945 basic_block bb;
4947 FOR_ALL_BB (bb)
4949 print_bitmap_set (dump_file, EXP_GEN (bb), "exp_gen", bb->index);
4950 print_bitmap_set (dump_file, PHI_GEN (bb), "phi_gen", bb->index);
4951 print_bitmap_set (dump_file, TMP_GEN (bb), "tmp_gen", bb->index);
4952 print_bitmap_set (dump_file, AVAIL_OUT (bb), "avail_out", bb->index);
4956 /* Insert can get quite slow on an incredibly large number of basic
4957 blocks due to some quadratic behavior. Until this behavior is
4958 fixed, don't run it when he have an incredibly large number of
4959 bb's. If we aren't going to run insert, there is no point in
4960 computing ANTIC, either, even though it's plenty fast. */
4961 if (!do_fre && n_basic_blocks < 4000)
4963 compute_antic ();
4964 insert ();
4967 /* Make sure to remove fake edges before committing our inserts.
4968 This makes sure we don't end up with extra critical edges that
4969 we would need to split. */
4970 remove_fake_exit_edges ();
4971 gsi_commit_edge_inserts ();
4973 /* Remove all the redundant expressions. */
4974 todo |= eliminate ();
4976 statistics_counter_event (cfun, "Insertions", pre_stats.insertions);
4977 statistics_counter_event (cfun, "PA inserted", pre_stats.pa_insert);
4978 statistics_counter_event (cfun, "New PHIs", pre_stats.phis);
4979 statistics_counter_event (cfun, "Eliminated", pre_stats.eliminations);
4980 statistics_counter_event (cfun, "Constified", pre_stats.constified);
4982 clear_expression_ids ();
4983 if (!do_fre)
4985 remove_dead_inserted_code ();
4986 todo |= TODO_verify_flow;
4989 scev_finalize ();
4990 fini_pre (do_fre);
4992 if (!do_fre)
4993 /* TODO: tail_merge_optimize may merge all predecessors of a block, in which
4994 case we can merge the block with the remaining predecessor of the block.
4995 It should either:
4996 - call merge_blocks after each tail merge iteration
4997 - call merge_blocks after all tail merge iterations
4998 - mark TODO_cleanup_cfg when necessary
4999 - share the cfg cleanup with fini_pre. */
5000 todo |= tail_merge_optimize (todo);
5001 free_scc_vn ();
5003 return todo;
5006 /* Gate and execute functions for PRE. */
5008 static unsigned int
5009 do_pre (void)
5011 return execute_pre (false);
5014 static bool
5015 gate_pre (void)
5017 return flag_tree_pre != 0;
5020 struct gimple_opt_pass pass_pre =
5023 GIMPLE_PASS,
5024 "pre", /* name */
5025 gate_pre, /* gate */
5026 do_pre, /* execute */
5027 NULL, /* sub */
5028 NULL, /* next */
5029 0, /* static_pass_number */
5030 TV_TREE_PRE, /* tv_id */
5031 PROP_no_crit_edges | PROP_cfg
5032 | PROP_ssa, /* properties_required */
5033 0, /* properties_provided */
5034 0, /* properties_destroyed */
5035 TODO_rebuild_alias, /* todo_flags_start */
5036 TODO_update_ssa_only_virtuals | TODO_ggc_collect
5037 | TODO_verify_ssa /* todo_flags_finish */
5042 /* Gate and execute functions for FRE. */
5044 static unsigned int
5045 execute_fre (void)
5047 return execute_pre (true);
5050 static bool
5051 gate_fre (void)
5053 return flag_tree_fre != 0;
5056 struct gimple_opt_pass pass_fre =
5059 GIMPLE_PASS,
5060 "fre", /* name */
5061 gate_fre, /* gate */
5062 execute_fre, /* execute */
5063 NULL, /* sub */
5064 NULL, /* next */
5065 0, /* static_pass_number */
5066 TV_TREE_FRE, /* tv_id */
5067 PROP_cfg | PROP_ssa, /* properties_required */
5068 0, /* properties_provided */
5069 0, /* properties_destroyed */
5070 0, /* todo_flags_start */
5071 TODO_ggc_collect | TODO_verify_ssa /* todo_flags_finish */