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
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)
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/>. */
25 #include "coretypes.h"
28 #include "basic-block.h"
29 #include "gimple-pretty-print.h"
30 #include "tree-inline.h"
31 #include "tree-flow.h"
33 #include "hash-table.h"
34 #include "tree-iterator.h"
35 #include "alloc-pool.h"
37 #include "tree-pass.h"
40 #include "langhooks.h"
42 #include "tree-ssa-sccvn.h"
43 #include "tree-scalar-evolution.h"
50 1. Avail sets can be shared by making an avail_find_leader that
51 walks up the dominator tree and looks in those avail sets.
52 This might affect code optimality, it's unclear right now.
53 2. Strength reduction can be performed by anticipating expressions
54 we can repair later on.
55 3. We can do back-substitution or smarter value numbering to catch
56 commutative expressions split up over multiple statements.
59 /* For ease of terminology, "expression node" in the below refers to
60 every expression node but GIMPLE_ASSIGN, because GIMPLE_ASSIGNs
61 represent the actual statement containing the expressions we care about,
62 and we cache the value number by putting it in the expression. */
66 First we walk the statements to generate the AVAIL sets, the
67 EXP_GEN sets, and the tmp_gen sets. EXP_GEN sets represent the
68 generation of values/expressions by a given block. We use them
69 when computing the ANTIC sets. The AVAIL sets consist of
70 SSA_NAME's that represent values, so we know what values are
71 available in what blocks. AVAIL is a forward dataflow problem. In
72 SSA, values are never killed, so we don't need a kill set, or a
73 fixpoint iteration, in order to calculate the AVAIL sets. In
74 traditional parlance, AVAIL sets tell us the downsafety of the
77 Next, we generate the ANTIC sets. These sets represent the
78 anticipatable expressions. ANTIC is a backwards dataflow
79 problem. An expression is anticipatable in a given block if it could
80 be generated in that block. This means that if we had to perform
81 an insertion in that block, of the value of that expression, we
82 could. Calculating the ANTIC sets requires phi translation of
83 expressions, because the flow goes backwards through phis. We must
84 iterate to a fixpoint of the ANTIC sets, because we have a kill
85 set. Even in SSA form, values are not live over the entire
86 function, only from their definition point onwards. So we have to
87 remove values from the ANTIC set once we go past the definition
88 point of the leaders that make them up.
89 compute_antic/compute_antic_aux performs this computation.
91 Third, we perform insertions to make partially redundant
92 expressions fully redundant.
94 An expression is partially redundant (excluding partial
97 1. It is AVAIL in some, but not all, of the predecessors of a
99 2. It is ANTIC in all the predecessors.
101 In order to make it fully redundant, we insert the expression into
102 the predecessors where it is not available, but is ANTIC.
104 For the partial anticipation case, we only perform insertion if it
105 is partially anticipated in some block, and fully available in all
108 insert/insert_aux/do_regular_insertion/do_partial_partial_insertion
109 performs these steps.
111 Fourth, we eliminate fully redundant expressions.
112 This is a simple statement walk that replaces redundant
113 calculations with the now available values. */
115 /* Representations of value numbers:
117 Value numbers are represented by a representative SSA_NAME. We
118 will create fake SSA_NAME's in situations where we need a
119 representative but do not have one (because it is a complex
120 expression). In order to facilitate storing the value numbers in
121 bitmaps, and keep the number of wasted SSA_NAME's down, we also
122 associate a value_id with each value number, and create full blown
123 ssa_name's only where we actually need them (IE in operands of
124 existing expressions).
126 Theoretically you could replace all the value_id's with
127 SSA_NAME_VERSION, but this would allocate a large number of
128 SSA_NAME's (which are each > 30 bytes) just to get a 4 byte number.
129 It would also require an additional indirection at each point we
132 /* Representation of expressions on value numbers:
134 Expressions consisting of value numbers are represented the same
135 way as our VN internally represents them, with an additional
136 "pre_expr" wrapping around them in order to facilitate storing all
137 of the expressions in the same sets. */
139 /* Representation of sets:
141 The dataflow sets do not need to be sorted in any particular order
142 for the majority of their lifetime, are simply represented as two
143 bitmaps, one that keeps track of values present in the set, and one
144 that keeps track of expressions present in the set.
146 When we need them in topological order, we produce it on demand by
147 transforming the bitmap into an array and sorting it into topo
150 /* Type of expression, used to know which member of the PRE_EXPR union
161 typedef union pre_expr_union_d
166 vn_reference_t reference
;
169 typedef struct pre_expr_d
: typed_noop_remove
<pre_expr_d
>
171 enum pre_expr_kind kind
;
175 /* hash_table support. */
176 typedef pre_expr_d value_type
;
177 typedef pre_expr_d compare_type
;
178 static inline hashval_t
hash (const pre_expr_d
*);
179 static inline int equal (const pre_expr_d
*, const pre_expr_d
*);
182 #define PRE_EXPR_NAME(e) (e)->u.name
183 #define PRE_EXPR_NARY(e) (e)->u.nary
184 #define PRE_EXPR_REFERENCE(e) (e)->u.reference
185 #define PRE_EXPR_CONSTANT(e) (e)->u.constant
187 /* Compare E1 and E1 for equality. */
190 pre_expr_d::equal (const value_type
*e1
, const compare_type
*e2
)
192 if (e1
->kind
!= e2
->kind
)
198 return vn_constant_eq_with_type (PRE_EXPR_CONSTANT (e1
),
199 PRE_EXPR_CONSTANT (e2
));
201 return PRE_EXPR_NAME (e1
) == PRE_EXPR_NAME (e2
);
203 return vn_nary_op_eq (PRE_EXPR_NARY (e1
), PRE_EXPR_NARY (e2
));
205 return vn_reference_eq (PRE_EXPR_REFERENCE (e1
),
206 PRE_EXPR_REFERENCE (e2
));
215 pre_expr_d::hash (const value_type
*e
)
220 return vn_hash_constant_with_type (PRE_EXPR_CONSTANT (e
));
222 return SSA_NAME_VERSION (PRE_EXPR_NAME (e
));
224 return PRE_EXPR_NARY (e
)->hashcode
;
226 return PRE_EXPR_REFERENCE (e
)->hashcode
;
232 /* Next global expression id number. */
233 static unsigned int next_expression_id
;
235 /* Mapping from expression to id number we can use in bitmap sets. */
236 static vec
<pre_expr
> expressions
;
237 static hash_table
<pre_expr_d
> expression_to_id
;
238 static vec
<unsigned> name_to_id
;
240 /* Allocate an expression id for EXPR. */
242 static inline unsigned int
243 alloc_expression_id (pre_expr expr
)
245 struct pre_expr_d
**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 expressions
.safe_push (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 unsigned old_len
= name_to_id
.length ();
257 name_to_id
.reserve (num_ssa_names
- old_len
);
258 name_to_id
.safe_grow_cleared (num_ssa_names
);
259 gcc_assert (name_to_id
[version
] == 0);
260 name_to_id
[version
] = expr
->id
;
264 slot
= expression_to_id
.find_slot (expr
, INSERT
);
268 return next_expression_id
- 1;
271 /* Return the expression id for tree EXPR. */
273 static inline unsigned int
274 get_expression_id (const pre_expr expr
)
279 static inline unsigned int
280 lookup_expression_id (const pre_expr expr
)
282 struct pre_expr_d
**slot
;
284 if (expr
->kind
== NAME
)
286 unsigned version
= SSA_NAME_VERSION (PRE_EXPR_NAME (expr
));
287 if (name_to_id
.length () <= version
)
289 return name_to_id
[version
];
293 slot
= expression_to_id
.find_slot (expr
, NO_INSERT
);
296 return ((pre_expr
)*slot
)->id
;
300 /* Return the existing expression id for EXPR, or create one if one
301 does not exist yet. */
303 static inline unsigned int
304 get_or_alloc_expression_id (pre_expr expr
)
306 unsigned int id
= lookup_expression_id (expr
);
308 return alloc_expression_id (expr
);
309 return expr
->id
= id
;
312 /* Return the expression that has expression id ID */
314 static inline pre_expr
315 expression_for_id (unsigned int id
)
317 return expressions
[id
];
320 /* Free the expression id field in all of our expressions,
321 and then destroy the expressions array. */
324 clear_expression_ids (void)
326 expressions
.release ();
329 static alloc_pool pre_expr_pool
;
331 /* Given an SSA_NAME NAME, get or create a pre_expr to represent it. */
334 get_or_alloc_expr_for_name (tree name
)
336 struct pre_expr_d expr
;
338 unsigned int result_id
;
342 PRE_EXPR_NAME (&expr
) = name
;
343 result_id
= lookup_expression_id (&expr
);
345 return expression_for_id (result_id
);
347 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
349 PRE_EXPR_NAME (result
) = name
;
350 alloc_expression_id (result
);
354 /* An unordered bitmap set. One bitmap tracks values, the other,
356 typedef struct bitmap_set
358 bitmap_head expressions
;
362 #define FOR_EACH_EXPR_ID_IN_SET(set, id, bi) \
363 EXECUTE_IF_SET_IN_BITMAP(&(set)->expressions, 0, (id), (bi))
365 #define FOR_EACH_VALUE_ID_IN_SET(set, id, bi) \
366 EXECUTE_IF_SET_IN_BITMAP(&(set)->values, 0, (id), (bi))
368 /* Mapping from value id to expressions with that value_id. */
369 static vec
<bitmap
> value_expressions
;
371 /* Sets that we need to keep track of. */
372 typedef struct bb_bitmap_sets
374 /* The EXP_GEN set, which represents expressions/values generated in
376 bitmap_set_t exp_gen
;
378 /* The PHI_GEN set, which represents PHI results generated in a
380 bitmap_set_t phi_gen
;
382 /* The TMP_GEN set, which represents results/temporaries generated
383 in a basic block. IE the LHS of an expression. */
384 bitmap_set_t tmp_gen
;
386 /* The AVAIL_OUT set, which represents which values are available in
387 a given basic block. */
388 bitmap_set_t avail_out
;
390 /* The ANTIC_IN set, which represents which values are anticipatable
391 in a given basic block. */
392 bitmap_set_t antic_in
;
394 /* The PA_IN set, which represents which values are
395 partially anticipatable in a given basic block. */
398 /* The NEW_SETS set, which is used during insertion to augment the
399 AVAIL_OUT set of blocks with the new insertions performed during
400 the current iteration. */
401 bitmap_set_t new_sets
;
403 /* A cache for value_dies_in_block_x. */
406 /* True if we have visited this block during ANTIC calculation. */
407 unsigned int visited
: 1;
409 /* True we have deferred processing this block during ANTIC
410 calculation until its successor is processed. */
411 unsigned int deferred
: 1;
413 /* True when the block contains a call that might not return. */
414 unsigned int contains_may_not_return_call
: 1;
417 #define EXP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->exp_gen
418 #define PHI_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->phi_gen
419 #define TMP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->tmp_gen
420 #define AVAIL_OUT(BB) ((bb_value_sets_t) ((BB)->aux))->avail_out
421 #define ANTIC_IN(BB) ((bb_value_sets_t) ((BB)->aux))->antic_in
422 #define PA_IN(BB) ((bb_value_sets_t) ((BB)->aux))->pa_in
423 #define NEW_SETS(BB) ((bb_value_sets_t) ((BB)->aux))->new_sets
424 #define EXPR_DIES(BB) ((bb_value_sets_t) ((BB)->aux))->expr_dies
425 #define BB_VISITED(BB) ((bb_value_sets_t) ((BB)->aux))->visited
426 #define BB_DEFERRED(BB) ((bb_value_sets_t) ((BB)->aux))->deferred
427 #define BB_MAY_NOTRETURN(BB) ((bb_value_sets_t) ((BB)->aux))->contains_may_not_return_call
430 /* Basic block list in postorder. */
431 static int *postorder
;
432 static int postorder_num
;
434 /* This structure is used to keep track of statistics on what
435 optimization PRE was able to perform. */
438 /* The number of RHS computations eliminated by PRE. */
441 /* The number of new expressions/temporaries generated by PRE. */
444 /* The number of inserts found due to partial anticipation */
447 /* The number of new PHI nodes added by PRE. */
450 /* The number of values found constant. */
455 static bool do_partial_partial
;
456 static pre_expr
bitmap_find_leader (bitmap_set_t
, unsigned int);
457 static void bitmap_value_insert_into_set (bitmap_set_t
, pre_expr
);
458 static void bitmap_value_replace_in_set (bitmap_set_t
, pre_expr
);
459 static void bitmap_set_copy (bitmap_set_t
, bitmap_set_t
);
460 static bool bitmap_set_contains_value (bitmap_set_t
, unsigned int);
461 static void bitmap_insert_into_set (bitmap_set_t
, pre_expr
);
462 static void bitmap_insert_into_set_1 (bitmap_set_t
, pre_expr
,
464 static bitmap_set_t
bitmap_set_new (void);
465 static tree
create_expression_by_pieces (basic_block
, pre_expr
, gimple_seq
*,
467 static tree
find_or_generate_expression (basic_block
, tree
, gimple_seq
*);
468 static unsigned int get_expr_value_id (pre_expr
);
470 /* We can add and remove elements and entries to and from sets
471 and hash tables, so we use alloc pools for them. */
473 static alloc_pool bitmap_set_pool
;
474 static bitmap_obstack grand_bitmap_obstack
;
476 /* Set of blocks with statements that have had their EH properties changed. */
477 static bitmap need_eh_cleanup
;
479 /* Set of blocks with statements that have had their AB properties changed. */
480 static bitmap need_ab_cleanup
;
482 /* A three tuple {e, pred, v} used to cache phi translations in the
483 phi_translate_table. */
485 typedef struct expr_pred_trans_d
: typed_free_remove
<expr_pred_trans_d
>
487 /* The expression. */
490 /* The predecessor block along which we translated the expression. */
493 /* The value that resulted from the translation. */
496 /* The hashcode for the expression, pred pair. This is cached for
500 /* hash_table support. */
501 typedef expr_pred_trans_d value_type
;
502 typedef expr_pred_trans_d compare_type
;
503 static inline hashval_t
hash (const value_type
*);
504 static inline int equal (const value_type
*, const compare_type
*);
505 } *expr_pred_trans_t
;
506 typedef const struct expr_pred_trans_d
*const_expr_pred_trans_t
;
509 expr_pred_trans_d::hash (const expr_pred_trans_d
*e
)
515 expr_pred_trans_d::equal (const value_type
*ve1
,
516 const compare_type
*ve2
)
518 basic_block b1
= ve1
->pred
;
519 basic_block b2
= ve2
->pred
;
521 /* If they are not translations for the same basic block, they can't
525 return pre_expr_d::equal (ve1
->e
, ve2
->e
);
528 /* The phi_translate_table caches phi translations for a given
529 expression and predecessor. */
530 static hash_table
<expr_pred_trans_d
> phi_translate_table
;
532 /* Search in the phi translation table for the translation of
533 expression E in basic block PRED.
534 Return the translated value, if found, NULL otherwise. */
536 static inline pre_expr
537 phi_trans_lookup (pre_expr e
, basic_block pred
)
539 expr_pred_trans_t
*slot
;
540 struct expr_pred_trans_d ept
;
544 ept
.hashcode
= iterative_hash_hashval_t (pre_expr_d::hash (e
), pred
->index
);
545 slot
= phi_translate_table
.find_slot_with_hash (&ept
, ept
.hashcode
,
554 /* Add the tuple mapping from {expression E, basic block PRED} to
555 value V, to the phi translation table. */
558 phi_trans_add (pre_expr e
, pre_expr v
, basic_block pred
)
560 expr_pred_trans_t
*slot
;
561 expr_pred_trans_t new_pair
= XNEW (struct expr_pred_trans_d
);
563 new_pair
->pred
= pred
;
565 new_pair
->hashcode
= iterative_hash_hashval_t (pre_expr_d::hash (e
),
568 slot
= phi_translate_table
.find_slot_with_hash (new_pair
,
569 new_pair
->hashcode
, INSERT
);
575 /* Add expression E to the expression set of value id V. */
578 add_to_value (unsigned int v
, pre_expr e
)
582 gcc_checking_assert (get_expr_value_id (e
) == v
);
584 if (v
>= value_expressions
.length ())
586 value_expressions
.safe_grow_cleared (v
+ 1);
589 set
= value_expressions
[v
];
592 set
= BITMAP_ALLOC (&grand_bitmap_obstack
);
593 value_expressions
[v
] = set
;
596 bitmap_set_bit (set
, get_or_alloc_expression_id (e
));
599 /* Create a new bitmap set and return it. */
602 bitmap_set_new (void)
604 bitmap_set_t ret
= (bitmap_set_t
) pool_alloc (bitmap_set_pool
);
605 bitmap_initialize (&ret
->expressions
, &grand_bitmap_obstack
);
606 bitmap_initialize (&ret
->values
, &grand_bitmap_obstack
);
610 /* Return the value id for a PRE expression EXPR. */
613 get_expr_value_id (pre_expr expr
)
620 id
= get_constant_value_id (PRE_EXPR_CONSTANT (expr
));
623 id
= get_or_alloc_constant_value_id (PRE_EXPR_CONSTANT (expr
));
624 add_to_value (id
, expr
);
629 return VN_INFO (PRE_EXPR_NAME (expr
))->value_id
;
631 return PRE_EXPR_NARY (expr
)->value_id
;
633 return PRE_EXPR_REFERENCE (expr
)->value_id
;
639 /* Return a SCCVN valnum (SSA name or constant) for the PRE value-id VAL. */
642 sccvn_valnum_from_value_id (unsigned int val
)
646 bitmap exprset
= value_expressions
[val
];
647 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, i
, bi
)
649 pre_expr vexpr
= expression_for_id (i
);
650 if (vexpr
->kind
== NAME
)
651 return VN_INFO (PRE_EXPR_NAME (vexpr
))->valnum
;
652 else if (vexpr
->kind
== CONSTANT
)
653 return PRE_EXPR_CONSTANT (vexpr
);
658 /* Remove an expression EXPR from a bitmapped set. */
661 bitmap_remove_from_set (bitmap_set_t set
, pre_expr expr
)
663 unsigned int val
= get_expr_value_id (expr
);
664 if (!value_id_constant_p (val
))
666 bitmap_clear_bit (&set
->values
, val
);
667 bitmap_clear_bit (&set
->expressions
, get_expression_id (expr
));
672 bitmap_insert_into_set_1 (bitmap_set_t set
, pre_expr expr
,
673 unsigned int val
, bool allow_constants
)
675 if (allow_constants
|| !value_id_constant_p (val
))
677 /* We specifically expect this and only this function to be able to
678 insert constants into a set. */
679 bitmap_set_bit (&set
->values
, val
);
680 bitmap_set_bit (&set
->expressions
, get_or_alloc_expression_id (expr
));
684 /* Insert an expression EXPR into a bitmapped set. */
687 bitmap_insert_into_set (bitmap_set_t set
, pre_expr expr
)
689 bitmap_insert_into_set_1 (set
, expr
, get_expr_value_id (expr
), false);
692 /* Copy a bitmapped set ORIG, into bitmapped set DEST. */
695 bitmap_set_copy (bitmap_set_t dest
, bitmap_set_t orig
)
697 bitmap_copy (&dest
->expressions
, &orig
->expressions
);
698 bitmap_copy (&dest
->values
, &orig
->values
);
702 /* Free memory used up by SET. */
704 bitmap_set_free (bitmap_set_t set
)
706 bitmap_clear (&set
->expressions
);
707 bitmap_clear (&set
->values
);
711 /* Generate an topological-ordered array of bitmap set SET. */
714 sorted_array_from_bitmap_set (bitmap_set_t set
)
717 bitmap_iterator bi
, bj
;
718 vec
<pre_expr
> result
;
720 /* Pre-allocate roughly enough space for the array. */
721 result
.create (bitmap_count_bits (&set
->values
));
723 FOR_EACH_VALUE_ID_IN_SET (set
, i
, bi
)
725 /* The number of expressions having a given value is usually
726 relatively small. Thus, rather than making a vector of all
727 the expressions and sorting it by value-id, we walk the values
728 and check in the reverse mapping that tells us what expressions
729 have a given value, to filter those in our set. As a result,
730 the expressions are inserted in value-id order, which means
733 If this is somehow a significant lose for some cases, we can
734 choose which set to walk based on the set size. */
735 bitmap exprset
= value_expressions
[i
];
736 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, j
, bj
)
738 if (bitmap_bit_p (&set
->expressions
, j
))
739 result
.safe_push (expression_for_id (j
));
746 /* Perform bitmapped set operation DEST &= ORIG. */
749 bitmap_set_and (bitmap_set_t dest
, bitmap_set_t orig
)
757 bitmap_initialize (&temp
, &grand_bitmap_obstack
);
759 bitmap_and_into (&dest
->values
, &orig
->values
);
760 bitmap_copy (&temp
, &dest
->expressions
);
761 EXECUTE_IF_SET_IN_BITMAP (&temp
, 0, i
, bi
)
763 pre_expr expr
= expression_for_id (i
);
764 unsigned int value_id
= get_expr_value_id (expr
);
765 if (!bitmap_bit_p (&dest
->values
, value_id
))
766 bitmap_clear_bit (&dest
->expressions
, i
);
768 bitmap_clear (&temp
);
772 /* Subtract all values and expressions contained in ORIG from DEST. */
775 bitmap_set_subtract (bitmap_set_t dest
, bitmap_set_t orig
)
777 bitmap_set_t result
= bitmap_set_new ();
781 bitmap_and_compl (&result
->expressions
, &dest
->expressions
,
784 FOR_EACH_EXPR_ID_IN_SET (result
, i
, bi
)
786 pre_expr expr
= expression_for_id (i
);
787 unsigned int value_id
= get_expr_value_id (expr
);
788 bitmap_set_bit (&result
->values
, value_id
);
794 /* Subtract all the values in bitmap set B from bitmap set A. */
797 bitmap_set_subtract_values (bitmap_set_t a
, bitmap_set_t b
)
803 bitmap_initialize (&temp
, &grand_bitmap_obstack
);
805 bitmap_copy (&temp
, &a
->expressions
);
806 EXECUTE_IF_SET_IN_BITMAP (&temp
, 0, i
, bi
)
808 pre_expr expr
= expression_for_id (i
);
809 if (bitmap_set_contains_value (b
, get_expr_value_id (expr
)))
810 bitmap_remove_from_set (a
, expr
);
812 bitmap_clear (&temp
);
816 /* Return true if bitmapped set SET contains the value VALUE_ID. */
819 bitmap_set_contains_value (bitmap_set_t set
, unsigned int value_id
)
821 if (value_id_constant_p (value_id
))
824 if (!set
|| bitmap_empty_p (&set
->expressions
))
827 return bitmap_bit_p (&set
->values
, value_id
);
831 bitmap_set_contains_expr (bitmap_set_t set
, const pre_expr expr
)
833 return bitmap_bit_p (&set
->expressions
, get_expression_id (expr
));
836 /* Replace an instance of value LOOKFOR with expression EXPR in SET. */
839 bitmap_set_replace_value (bitmap_set_t set
, unsigned int lookfor
,
846 if (value_id_constant_p (lookfor
))
849 if (!bitmap_set_contains_value (set
, lookfor
))
852 /* The number of expressions having a given value is usually
853 significantly less than the total number of expressions in SET.
854 Thus, rather than check, for each expression in SET, whether it
855 has the value LOOKFOR, we walk the reverse mapping that tells us
856 what expressions have a given value, and see if any of those
857 expressions are in our set. For large testcases, this is about
858 5-10x faster than walking the bitmap. If this is somehow a
859 significant lose for some cases, we can choose which set to walk
860 based on the set size. */
861 exprset
= value_expressions
[lookfor
];
862 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, i
, bi
)
864 if (bitmap_clear_bit (&set
->expressions
, i
))
866 bitmap_set_bit (&set
->expressions
, get_expression_id (expr
));
872 /* Return true if two bitmap sets are equal. */
875 bitmap_set_equal (bitmap_set_t a
, bitmap_set_t b
)
877 return bitmap_equal_p (&a
->values
, &b
->values
);
880 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
881 and add it otherwise. */
884 bitmap_value_replace_in_set (bitmap_set_t set
, pre_expr expr
)
886 unsigned int val
= get_expr_value_id (expr
);
888 if (bitmap_set_contains_value (set
, val
))
889 bitmap_set_replace_value (set
, val
, expr
);
891 bitmap_insert_into_set (set
, expr
);
894 /* Insert EXPR into SET if EXPR's value is not already present in
898 bitmap_value_insert_into_set (bitmap_set_t set
, pre_expr expr
)
900 unsigned int val
= get_expr_value_id (expr
);
902 gcc_checking_assert (expr
->id
== get_or_alloc_expression_id (expr
));
904 /* Constant values are always considered to be part of the set. */
905 if (value_id_constant_p (val
))
908 /* If the value membership changed, add the expression. */
909 if (bitmap_set_bit (&set
->values
, val
))
910 bitmap_set_bit (&set
->expressions
, expr
->id
);
913 /* Print out EXPR to outfile. */
916 print_pre_expr (FILE *outfile
, const pre_expr expr
)
921 print_generic_expr (outfile
, PRE_EXPR_CONSTANT (expr
), 0);
924 print_generic_expr (outfile
, PRE_EXPR_NAME (expr
), 0);
929 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
930 fprintf (outfile
, "{%s,", tree_code_name
[nary
->opcode
]);
931 for (i
= 0; i
< nary
->length
; i
++)
933 print_generic_expr (outfile
, nary
->op
[i
], 0);
934 if (i
!= (unsigned) nary
->length
- 1)
935 fprintf (outfile
, ",");
937 fprintf (outfile
, "}");
943 vn_reference_op_t vro
;
945 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
946 fprintf (outfile
, "{");
948 ref
->operands
.iterate (i
, &vro
);
951 bool closebrace
= false;
952 if (vro
->opcode
!= SSA_NAME
953 && TREE_CODE_CLASS (vro
->opcode
) != tcc_declaration
)
955 fprintf (outfile
, "%s", tree_code_name
[vro
->opcode
]);
958 fprintf (outfile
, "<");
964 print_generic_expr (outfile
, vro
->op0
, 0);
967 fprintf (outfile
, ",");
968 print_generic_expr (outfile
, vro
->op1
, 0);
972 fprintf (outfile
, ",");
973 print_generic_expr (outfile
, vro
->op2
, 0);
977 fprintf (outfile
, ">");
978 if (i
!= ref
->operands
.length () - 1)
979 fprintf (outfile
, ",");
981 fprintf (outfile
, "}");
984 fprintf (outfile
, "@");
985 print_generic_expr (outfile
, ref
->vuse
, 0);
991 void debug_pre_expr (pre_expr
);
993 /* Like print_pre_expr but always prints to stderr. */
995 debug_pre_expr (pre_expr e
)
997 print_pre_expr (stderr
, e
);
998 fprintf (stderr
, "\n");
1001 /* Print out SET to OUTFILE. */
1004 print_bitmap_set (FILE *outfile
, bitmap_set_t set
,
1005 const char *setname
, int blockindex
)
1007 fprintf (outfile
, "%s[%d] := { ", setname
, blockindex
);
1014 FOR_EACH_EXPR_ID_IN_SET (set
, i
, bi
)
1016 const pre_expr expr
= expression_for_id (i
);
1019 fprintf (outfile
, ", ");
1021 print_pre_expr (outfile
, expr
);
1023 fprintf (outfile
, " (%04d)", get_expr_value_id (expr
));
1026 fprintf (outfile
, " }\n");
1029 void debug_bitmap_set (bitmap_set_t
);
1032 debug_bitmap_set (bitmap_set_t set
)
1034 print_bitmap_set (stderr
, set
, "debug", 0);
1037 void debug_bitmap_sets_for (basic_block
);
1040 debug_bitmap_sets_for (basic_block bb
)
1042 print_bitmap_set (stderr
, AVAIL_OUT (bb
), "avail_out", bb
->index
);
1043 print_bitmap_set (stderr
, EXP_GEN (bb
), "exp_gen", bb
->index
);
1044 print_bitmap_set (stderr
, PHI_GEN (bb
), "phi_gen", bb
->index
);
1045 print_bitmap_set (stderr
, TMP_GEN (bb
), "tmp_gen", bb
->index
);
1046 print_bitmap_set (stderr
, ANTIC_IN (bb
), "antic_in", bb
->index
);
1047 if (do_partial_partial
)
1048 print_bitmap_set (stderr
, PA_IN (bb
), "pa_in", bb
->index
);
1049 print_bitmap_set (stderr
, NEW_SETS (bb
), "new_sets", bb
->index
);
1052 /* Print out the expressions that have VAL to OUTFILE. */
1055 print_value_expressions (FILE *outfile
, unsigned int val
)
1057 bitmap set
= value_expressions
[val
];
1062 sprintf (s
, "%04d", val
);
1063 x
.expressions
= *set
;
1064 print_bitmap_set (outfile
, &x
, s
, 0);
1070 debug_value_expressions (unsigned int val
)
1072 print_value_expressions (stderr
, val
);
1075 /* Given a CONSTANT, allocate a new CONSTANT type PRE_EXPR to
1079 get_or_alloc_expr_for_constant (tree constant
)
1081 unsigned int result_id
;
1082 unsigned int value_id
;
1083 struct pre_expr_d expr
;
1086 expr
.kind
= CONSTANT
;
1087 PRE_EXPR_CONSTANT (&expr
) = constant
;
1088 result_id
= lookup_expression_id (&expr
);
1090 return expression_for_id (result_id
);
1092 newexpr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1093 newexpr
->kind
= CONSTANT
;
1094 PRE_EXPR_CONSTANT (newexpr
) = constant
;
1095 alloc_expression_id (newexpr
);
1096 value_id
= get_or_alloc_constant_value_id (constant
);
1097 add_to_value (value_id
, newexpr
);
1101 /* Given a value id V, find the actual tree representing the constant
1102 value if there is one, and return it. Return NULL if we can't find
1106 get_constant_for_value_id (unsigned int v
)
1108 if (value_id_constant_p (v
))
1112 bitmap exprset
= value_expressions
[v
];
1114 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, i
, bi
)
1116 pre_expr expr
= expression_for_id (i
);
1117 if (expr
->kind
== CONSTANT
)
1118 return PRE_EXPR_CONSTANT (expr
);
1124 /* Get or allocate a pre_expr for a piece of GIMPLE, and return it.
1125 Currently only supports constants and SSA_NAMES. */
1127 get_or_alloc_expr_for (tree t
)
1129 if (TREE_CODE (t
) == SSA_NAME
)
1130 return get_or_alloc_expr_for_name (t
);
1131 else if (is_gimple_min_invariant (t
))
1132 return get_or_alloc_expr_for_constant (t
);
1135 /* More complex expressions can result from SCCVN expression
1136 simplification that inserts values for them. As they all
1137 do not have VOPs the get handled by the nary ops struct. */
1138 vn_nary_op_t result
;
1139 unsigned int result_id
;
1140 vn_nary_op_lookup (t
, &result
);
1143 pre_expr e
= (pre_expr
) pool_alloc (pre_expr_pool
);
1145 PRE_EXPR_NARY (e
) = result
;
1146 result_id
= lookup_expression_id (e
);
1149 pool_free (pre_expr_pool
, e
);
1150 e
= expression_for_id (result_id
);
1153 alloc_expression_id (e
);
1160 /* Return the folded version of T if T, when folded, is a gimple
1161 min_invariant. Otherwise, return T. */
1164 fully_constant_expression (pre_expr e
)
1172 vn_nary_op_t nary
= PRE_EXPR_NARY (e
);
1173 switch (TREE_CODE_CLASS (nary
->opcode
))
1176 case tcc_comparison
:
1178 /* We have to go from trees to pre exprs to value ids to
1180 tree naryop0
= nary
->op
[0];
1181 tree naryop1
= nary
->op
[1];
1183 if (!is_gimple_min_invariant (naryop0
))
1185 pre_expr rep0
= get_or_alloc_expr_for (naryop0
);
1186 unsigned int vrep0
= get_expr_value_id (rep0
);
1187 tree const0
= get_constant_for_value_id (vrep0
);
1189 naryop0
= fold_convert (TREE_TYPE (naryop0
), const0
);
1191 if (!is_gimple_min_invariant (naryop1
))
1193 pre_expr rep1
= get_or_alloc_expr_for (naryop1
);
1194 unsigned int vrep1
= get_expr_value_id (rep1
);
1195 tree const1
= get_constant_for_value_id (vrep1
);
1197 naryop1
= fold_convert (TREE_TYPE (naryop1
), const1
);
1199 result
= fold_binary (nary
->opcode
, nary
->type
,
1201 if (result
&& is_gimple_min_invariant (result
))
1202 return get_or_alloc_expr_for_constant (result
);
1203 /* We might have simplified the expression to a
1204 SSA_NAME for example from x_1 * 1. But we cannot
1205 insert a PHI for x_1 unconditionally as x_1 might
1206 not be available readily. */
1210 if (nary
->opcode
!= REALPART_EXPR
1211 && nary
->opcode
!= IMAGPART_EXPR
1212 && nary
->opcode
!= VIEW_CONVERT_EXPR
)
1217 /* We have to go from trees to pre exprs to value ids to
1219 tree naryop0
= nary
->op
[0];
1220 tree const0
, result
;
1221 if (is_gimple_min_invariant (naryop0
))
1225 pre_expr rep0
= get_or_alloc_expr_for (naryop0
);
1226 unsigned int vrep0
= get_expr_value_id (rep0
);
1227 const0
= get_constant_for_value_id (vrep0
);
1232 tree type1
= TREE_TYPE (nary
->op
[0]);
1233 const0
= fold_convert (type1
, const0
);
1234 result
= fold_unary (nary
->opcode
, nary
->type
, const0
);
1236 if (result
&& is_gimple_min_invariant (result
))
1237 return get_or_alloc_expr_for_constant (result
);
1246 vn_reference_t ref
= PRE_EXPR_REFERENCE (e
);
1248 if ((folded
= fully_constant_vn_reference_p (ref
)))
1249 return get_or_alloc_expr_for_constant (folded
);
1258 /* Translate the VUSE backwards through phi nodes in PHIBLOCK, so that
1259 it has the value it would have in BLOCK. Set *SAME_VALID to true
1260 in case the new vuse doesn't change the value id of the OPERANDS. */
1263 translate_vuse_through_block (vec
<vn_reference_op_s
> operands
,
1264 alias_set_type set
, tree type
, tree vuse
,
1265 basic_block phiblock
,
1266 basic_block block
, bool *same_valid
)
1268 gimple phi
= SSA_NAME_DEF_STMT (vuse
);
1275 if (gimple_bb (phi
) != phiblock
)
1278 use_oracle
= ao_ref_init_from_vn_reference (&ref
, set
, type
, operands
);
1280 /* Use the alias-oracle to find either the PHI node in this block,
1281 the first VUSE used in this block that is equivalent to vuse or
1282 the first VUSE which definition in this block kills the value. */
1283 if (gimple_code (phi
) == GIMPLE_PHI
)
1284 e
= find_edge (block
, phiblock
);
1285 else if (use_oracle
)
1286 while (!stmt_may_clobber_ref_p_1 (phi
, &ref
))
1288 vuse
= gimple_vuse (phi
);
1289 phi
= SSA_NAME_DEF_STMT (vuse
);
1290 if (gimple_bb (phi
) != phiblock
)
1292 if (gimple_code (phi
) == GIMPLE_PHI
)
1294 e
= find_edge (block
, phiblock
);
1305 bitmap visited
= NULL
;
1307 /* Try to find a vuse that dominates this phi node by skipping
1308 non-clobbering statements. */
1309 vuse
= get_continuation_for_phi (phi
, &ref
, &cnt
, &visited
, false);
1311 BITMAP_FREE (visited
);
1317 /* If we didn't find any, the value ID can't stay the same,
1318 but return the translated vuse. */
1319 *same_valid
= false;
1320 vuse
= PHI_ARG_DEF (phi
, e
->dest_idx
);
1322 /* ??? We would like to return vuse here as this is the canonical
1323 upmost vdef that this reference is associated with. But during
1324 insertion of the references into the hash tables we only ever
1325 directly insert with their direct gimple_vuse, hence returning
1326 something else would make us not find the other expression. */
1327 return PHI_ARG_DEF (phi
, e
->dest_idx
);
1333 /* Like bitmap_find_leader, but checks for the value existing in SET1 *or*
1334 SET2. This is used to avoid making a set consisting of the union
1335 of PA_IN and ANTIC_IN during insert. */
1337 static inline pre_expr
1338 find_leader_in_sets (unsigned int val
, bitmap_set_t set1
, bitmap_set_t set2
)
1342 result
= bitmap_find_leader (set1
, val
);
1343 if (!result
&& set2
)
1344 result
= bitmap_find_leader (set2
, val
);
1348 /* Get the tree type for our PRE expression e. */
1351 get_expr_type (const pre_expr e
)
1356 return TREE_TYPE (PRE_EXPR_NAME (e
));
1358 return TREE_TYPE (PRE_EXPR_CONSTANT (e
));
1360 return PRE_EXPR_REFERENCE (e
)->type
;
1362 return PRE_EXPR_NARY (e
)->type
;
1367 /* Get a representative SSA_NAME for a given expression.
1368 Since all of our sub-expressions are treated as values, we require
1369 them to be SSA_NAME's for simplicity.
1370 Prior versions of GVNPRE used to use "value handles" here, so that
1371 an expression would be VH.11 + VH.10 instead of d_3 + e_6. In
1372 either case, the operands are really values (IE we do not expect
1373 them to be usable without finding leaders). */
1376 get_representative_for (const pre_expr e
)
1379 unsigned int value_id
= get_expr_value_id (e
);
1384 return PRE_EXPR_NAME (e
);
1386 return PRE_EXPR_CONSTANT (e
);
1390 /* Go through all of the expressions representing this value
1391 and pick out an SSA_NAME. */
1394 bitmap exprs
= value_expressions
[value_id
];
1395 EXECUTE_IF_SET_IN_BITMAP (exprs
, 0, i
, bi
)
1397 pre_expr rep
= expression_for_id (i
);
1398 if (rep
->kind
== NAME
)
1399 return PRE_EXPR_NAME (rep
);
1404 /* If we reached here we couldn't find an SSA_NAME. This can
1405 happen when we've discovered a value that has never appeared in
1406 the program as set to an SSA_NAME, most likely as the result of
1411 "Could not find SSA_NAME representative for expression:");
1412 print_pre_expr (dump_file
, e
);
1413 fprintf (dump_file
, "\n");
1416 /* Build and insert the assignment of the end result to the temporary
1417 that we will return. */
1418 name
= make_temp_ssa_name (get_expr_type (e
), gimple_build_nop (), "pretmp");
1419 VN_INFO_GET (name
)->value_id
= value_id
;
1420 VN_INFO (name
)->valnum
= sccvn_valnum_from_value_id (value_id
);
1421 if (VN_INFO (name
)->valnum
== NULL_TREE
)
1422 VN_INFO (name
)->valnum
= name
;
1423 add_to_value (value_id
, get_or_alloc_expr_for_name (name
));
1426 fprintf (dump_file
, "Created SSA_NAME representative ");
1427 print_generic_expr (dump_file
, name
, 0);
1428 fprintf (dump_file
, " for expression:");
1429 print_pre_expr (dump_file
, e
);
1430 fprintf (dump_file
, "\n");
1439 phi_translate (pre_expr expr
, bitmap_set_t set1
, bitmap_set_t set2
,
1440 basic_block pred
, basic_block phiblock
);
1442 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1443 the phis in PRED. Return NULL if we can't find a leader for each part
1444 of the translated expression. */
1447 phi_translate_1 (pre_expr expr
, bitmap_set_t set1
, bitmap_set_t set2
,
1448 basic_block pred
, basic_block phiblock
)
1455 bool changed
= false;
1456 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
1457 vn_nary_op_t newnary
= XALLOCAVAR (struct vn_nary_op_s
,
1458 sizeof_vn_nary_op (nary
->length
));
1459 memcpy (newnary
, nary
, sizeof_vn_nary_op (nary
->length
));
1461 for (i
= 0; i
< newnary
->length
; i
++)
1463 if (TREE_CODE (newnary
->op
[i
]) != SSA_NAME
)
1467 pre_expr leader
, result
;
1468 unsigned int op_val_id
= VN_INFO (newnary
->op
[i
])->value_id
;
1469 leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1470 result
= phi_translate (leader
, set1
, set2
, pred
, phiblock
);
1471 if (result
&& result
!= leader
)
1473 tree name
= get_representative_for (result
);
1476 newnary
->op
[i
] = name
;
1481 changed
|= newnary
->op
[i
] != nary
->op
[i
];
1487 unsigned int new_val_id
;
1489 tree result
= vn_nary_op_lookup_pieces (newnary
->length
,
1494 if (result
&& is_gimple_min_invariant (result
))
1495 return get_or_alloc_expr_for_constant (result
);
1497 expr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1502 PRE_EXPR_NARY (expr
) = nary
;
1503 constant
= fully_constant_expression (expr
);
1504 if (constant
!= expr
)
1507 new_val_id
= nary
->value_id
;
1508 get_or_alloc_expression_id (expr
);
1512 new_val_id
= get_next_value_id ();
1513 value_expressions
.safe_grow_cleared (get_max_value_id() + 1);
1514 nary
= vn_nary_op_insert_pieces (newnary
->length
,
1518 result
, new_val_id
);
1519 PRE_EXPR_NARY (expr
) = nary
;
1520 constant
= fully_constant_expression (expr
);
1521 if (constant
!= expr
)
1523 get_or_alloc_expression_id (expr
);
1525 add_to_value (new_val_id
, expr
);
1533 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
1534 vec
<vn_reference_op_s
> operands
= ref
->operands
;
1535 tree vuse
= ref
->vuse
;
1536 tree newvuse
= vuse
;
1537 vec
<vn_reference_op_s
> newoperands
1538 = vec
<vn_reference_op_s
>();
1539 bool changed
= false, same_valid
= true;
1540 unsigned int i
, j
, n
;
1541 vn_reference_op_t operand
;
1542 vn_reference_t newref
;
1545 operands
.iterate (i
, &operand
); i
++, j
++)
1550 tree type
= operand
->type
;
1551 vn_reference_op_s newop
= *operand
;
1552 op
[0] = operand
->op0
;
1553 op
[1] = operand
->op1
;
1554 op
[2] = operand
->op2
;
1555 for (n
= 0; n
< 3; ++n
)
1557 unsigned int op_val_id
;
1560 if (TREE_CODE (op
[n
]) != SSA_NAME
)
1562 /* We can't possibly insert these. */
1564 && !is_gimple_min_invariant (op
[n
]))
1568 op_val_id
= VN_INFO (op
[n
])->value_id
;
1569 leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1572 /* Make sure we do not recursively translate ourselves
1573 like for translating a[n_1] with the leader for
1574 n_1 being a[n_1]. */
1575 if (get_expression_id (leader
) != get_expression_id (expr
))
1577 opresult
= phi_translate (leader
, set1
, set2
,
1581 if (opresult
!= leader
)
1583 tree name
= get_representative_for (opresult
);
1586 changed
|= name
!= op
[n
];
1593 newoperands
.release ();
1596 if (!newoperands
.exists ())
1597 newoperands
= operands
.copy ();
1598 /* We may have changed from an SSA_NAME to a constant */
1599 if (newop
.opcode
== SSA_NAME
&& TREE_CODE (op
[0]) != SSA_NAME
)
1600 newop
.opcode
= TREE_CODE (op
[0]);
1605 /* If it transforms a non-constant ARRAY_REF into a constant
1606 one, adjust the constant offset. */
1607 if (newop
.opcode
== ARRAY_REF
1609 && TREE_CODE (op
[0]) == INTEGER_CST
1610 && TREE_CODE (op
[1]) == INTEGER_CST
1611 && TREE_CODE (op
[2]) == INTEGER_CST
)
1613 double_int off
= tree_to_double_int (op
[0]);
1614 off
+= -tree_to_double_int (op
[1]);
1615 off
*= tree_to_double_int (op
[2]);
1616 if (off
.fits_shwi ())
1617 newop
.off
= off
.low
;
1619 newoperands
[j
] = newop
;
1620 /* If it transforms from an SSA_NAME to an address, fold with
1621 a preceding indirect reference. */
1622 if (j
> 0 && op
[0] && TREE_CODE (op
[0]) == ADDR_EXPR
1623 && newoperands
[j
- 1].opcode
== MEM_REF
)
1624 vn_reference_fold_indirect (&newoperands
, &j
);
1626 if (i
!= operands
.length ())
1628 newoperands
.release ();
1634 newvuse
= translate_vuse_through_block (newoperands
,
1635 ref
->set
, ref
->type
,
1636 vuse
, phiblock
, pred
,
1638 if (newvuse
== NULL_TREE
)
1640 newoperands
.release ();
1645 if (changed
|| newvuse
!= vuse
)
1647 unsigned int new_val_id
;
1650 tree result
= vn_reference_lookup_pieces (newvuse
, ref
->set
,
1655 newoperands
.release ();
1657 /* We can always insert constants, so if we have a partial
1658 redundant constant load of another type try to translate it
1659 to a constant of appropriate type. */
1660 if (result
&& is_gimple_min_invariant (result
))
1663 if (!useless_type_conversion_p (ref
->type
, TREE_TYPE (result
)))
1665 tem
= fold_unary (VIEW_CONVERT_EXPR
, ref
->type
, result
);
1666 if (tem
&& !is_gimple_min_invariant (tem
))
1670 return get_or_alloc_expr_for_constant (tem
);
1673 /* If we'd have to convert things we would need to validate
1674 if we can insert the translated expression. So fail
1675 here for now - we cannot insert an alias with a different
1676 type in the VN tables either, as that would assert. */
1678 && !useless_type_conversion_p (ref
->type
, TREE_TYPE (result
)))
1680 else if (!result
&& newref
1681 && !useless_type_conversion_p (ref
->type
, newref
->type
))
1683 newoperands
.release ();
1687 expr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1688 expr
->kind
= REFERENCE
;
1693 PRE_EXPR_REFERENCE (expr
) = newref
;
1694 constant
= fully_constant_expression (expr
);
1695 if (constant
!= expr
)
1698 new_val_id
= newref
->value_id
;
1699 get_or_alloc_expression_id (expr
);
1703 if (changed
|| !same_valid
)
1705 new_val_id
= get_next_value_id ();
1706 value_expressions
.safe_grow_cleared(get_max_value_id() + 1);
1709 new_val_id
= ref
->value_id
;
1710 newref
= vn_reference_insert_pieces (newvuse
, ref
->set
,
1713 result
, new_val_id
);
1714 newoperands
.create (0);
1715 PRE_EXPR_REFERENCE (expr
) = newref
;
1716 constant
= fully_constant_expression (expr
);
1717 if (constant
!= expr
)
1719 get_or_alloc_expression_id (expr
);
1721 add_to_value (new_val_id
, expr
);
1723 newoperands
.release ();
1730 tree name
= PRE_EXPR_NAME (expr
);
1731 gimple def_stmt
= SSA_NAME_DEF_STMT (name
);
1732 /* If the SSA name is defined by a PHI node in this block,
1734 if (gimple_code (def_stmt
) == GIMPLE_PHI
1735 && gimple_bb (def_stmt
) == phiblock
)
1737 edge e
= find_edge (pred
, gimple_bb (def_stmt
));
1738 tree def
= PHI_ARG_DEF (def_stmt
, e
->dest_idx
);
1740 /* Handle constant. */
1741 if (is_gimple_min_invariant (def
))
1742 return get_or_alloc_expr_for_constant (def
);
1744 return get_or_alloc_expr_for_name (def
);
1746 /* Otherwise return it unchanged - it will get cleaned if its
1747 value is not available in PREDs AVAIL_OUT set of expressions. */
1756 /* Wrapper around phi_translate_1 providing caching functionality. */
1759 phi_translate (pre_expr expr
, bitmap_set_t set1
, bitmap_set_t set2
,
1760 basic_block pred
, basic_block phiblock
)
1767 /* Constants contain no values that need translation. */
1768 if (expr
->kind
== CONSTANT
)
1771 if (value_id_constant_p (get_expr_value_id (expr
)))
1774 if (expr
->kind
!= NAME
)
1776 phitrans
= phi_trans_lookup (expr
, pred
);
1782 phitrans
= phi_translate_1 (expr
, set1
, set2
, pred
, phiblock
);
1784 /* Don't add empty translations to the cache. Neither add
1785 translations of NAMEs as those are cheap to translate. */
1787 && expr
->kind
!= NAME
)
1788 phi_trans_add (expr
, phitrans
, pred
);
1794 /* For each expression in SET, translate the values through phi nodes
1795 in PHIBLOCK using edge PHIBLOCK->PRED, and store the resulting
1796 expressions in DEST. */
1799 phi_translate_set (bitmap_set_t dest
, bitmap_set_t set
, basic_block pred
,
1800 basic_block phiblock
)
1802 vec
<pre_expr
> exprs
;
1806 if (gimple_seq_empty_p (phi_nodes (phiblock
)))
1808 bitmap_set_copy (dest
, set
);
1812 exprs
= sorted_array_from_bitmap_set (set
);
1813 FOR_EACH_VEC_ELT (exprs
, i
, expr
)
1815 pre_expr translated
;
1816 translated
= phi_translate (expr
, set
, NULL
, pred
, phiblock
);
1820 /* We might end up with multiple expressions from SET being
1821 translated to the same value. In this case we do not want
1822 to retain the NARY or REFERENCE expression but prefer a NAME
1823 which would be the leader. */
1824 if (translated
->kind
== NAME
)
1825 bitmap_value_replace_in_set (dest
, translated
);
1827 bitmap_value_insert_into_set (dest
, translated
);
1832 /* Find the leader for a value (i.e., the name representing that
1833 value) in a given set, and return it. If STMT is non-NULL it
1834 makes sure the defining statement for the leader dominates it.
1835 Return NULL if no leader is found. */
1838 bitmap_find_leader (bitmap_set_t set
, unsigned int val
)
1840 if (value_id_constant_p (val
))
1844 bitmap exprset
= value_expressions
[val
];
1846 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, i
, bi
)
1848 pre_expr expr
= expression_for_id (i
);
1849 if (expr
->kind
== CONSTANT
)
1853 if (bitmap_set_contains_value (set
, val
))
1855 /* Rather than walk the entire bitmap of expressions, and see
1856 whether any of them has the value we are looking for, we look
1857 at the reverse mapping, which tells us the set of expressions
1858 that have a given value (IE value->expressions with that
1859 value) and see if any of those expressions are in our set.
1860 The number of expressions per value is usually significantly
1861 less than the number of expressions in the set. In fact, for
1862 large testcases, doing it this way is roughly 5-10x faster
1863 than walking the bitmap.
1864 If this is somehow a significant lose for some cases, we can
1865 choose which set to walk based on which set is smaller. */
1868 bitmap exprset
= value_expressions
[val
];
1870 EXECUTE_IF_AND_IN_BITMAP (exprset
, &set
->expressions
, 0, i
, bi
)
1871 return expression_for_id (i
);
1876 /* Determine if EXPR, a memory expression, is ANTIC_IN at the top of
1877 BLOCK by seeing if it is not killed in the block. Note that we are
1878 only determining whether there is a store that kills it. Because
1879 of the order in which clean iterates over values, we are guaranteed
1880 that altered operands will have caused us to be eliminated from the
1881 ANTIC_IN set already. */
1884 value_dies_in_block_x (pre_expr expr
, basic_block block
)
1886 tree vuse
= PRE_EXPR_REFERENCE (expr
)->vuse
;
1887 vn_reference_t refx
= PRE_EXPR_REFERENCE (expr
);
1889 gimple_stmt_iterator gsi
;
1890 unsigned id
= get_expression_id (expr
);
1897 /* Lookup a previously calculated result. */
1898 if (EXPR_DIES (block
)
1899 && bitmap_bit_p (EXPR_DIES (block
), id
* 2))
1900 return bitmap_bit_p (EXPR_DIES (block
), id
* 2 + 1);
1902 /* A memory expression {e, VUSE} dies in the block if there is a
1903 statement that may clobber e. If, starting statement walk from the
1904 top of the basic block, a statement uses VUSE there can be no kill
1905 inbetween that use and the original statement that loaded {e, VUSE},
1906 so we can stop walking. */
1907 ref
.base
= NULL_TREE
;
1908 for (gsi
= gsi_start_bb (block
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1910 tree def_vuse
, def_vdef
;
1911 def
= gsi_stmt (gsi
);
1912 def_vuse
= gimple_vuse (def
);
1913 def_vdef
= gimple_vdef (def
);
1915 /* Not a memory statement. */
1919 /* Not a may-def. */
1922 /* A load with the same VUSE, we're done. */
1923 if (def_vuse
== vuse
)
1929 /* Init ref only if we really need it. */
1930 if (ref
.base
== NULL_TREE
1931 && !ao_ref_init_from_vn_reference (&ref
, refx
->set
, refx
->type
,
1937 /* If the statement may clobber expr, it dies. */
1938 if (stmt_may_clobber_ref_p_1 (def
, &ref
))
1945 /* Remember the result. */
1946 if (!EXPR_DIES (block
))
1947 EXPR_DIES (block
) = BITMAP_ALLOC (&grand_bitmap_obstack
);
1948 bitmap_set_bit (EXPR_DIES (block
), id
* 2);
1950 bitmap_set_bit (EXPR_DIES (block
), id
* 2 + 1);
1956 /* Determine if OP is valid in SET1 U SET2, which it is when the union
1957 contains its value-id. */
1960 op_valid_in_sets (bitmap_set_t set1
, bitmap_set_t set2
, tree op
)
1962 if (op
&& TREE_CODE (op
) == SSA_NAME
)
1964 unsigned int value_id
= VN_INFO (op
)->value_id
;
1965 if (!(bitmap_set_contains_value (set1
, value_id
)
1966 || (set2
&& bitmap_set_contains_value (set2
, value_id
))))
1972 /* Determine if the expression EXPR is valid in SET1 U SET2.
1973 ONLY SET2 CAN BE NULL.
1974 This means that we have a leader for each part of the expression
1975 (if it consists of values), or the expression is an SSA_NAME.
1976 For loads/calls, we also see if the vuse is killed in this block. */
1979 valid_in_sets (bitmap_set_t set1
, bitmap_set_t set2
, pre_expr expr
,
1985 return bitmap_set_contains_expr (AVAIL_OUT (block
), expr
);
1989 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
1990 for (i
= 0; i
< nary
->length
; i
++)
1991 if (!op_valid_in_sets (set1
, set2
, nary
->op
[i
]))
1998 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
1999 vn_reference_op_t vro
;
2002 FOR_EACH_VEC_ELT (ref
->operands
, i
, vro
)
2004 if (!op_valid_in_sets (set1
, set2
, vro
->op0
)
2005 || !op_valid_in_sets (set1
, set2
, vro
->op1
)
2006 || !op_valid_in_sets (set1
, set2
, vro
->op2
))
2016 /* Clean the set of expressions that are no longer valid in SET1 or
2017 SET2. This means expressions that are made up of values we have no
2018 leaders for in SET1 or SET2. This version is used for partial
2019 anticipation, which means it is not valid in either ANTIC_IN or
2023 dependent_clean (bitmap_set_t set1
, bitmap_set_t set2
, basic_block block
)
2025 vec
<pre_expr
> exprs
= sorted_array_from_bitmap_set (set1
);
2029 FOR_EACH_VEC_ELT (exprs
, i
, expr
)
2031 if (!valid_in_sets (set1
, set2
, expr
, block
))
2032 bitmap_remove_from_set (set1
, expr
);
2037 /* Clean the set of expressions that are no longer valid in SET. This
2038 means expressions that are made up of values we have no leaders for
2042 clean (bitmap_set_t set
, basic_block block
)
2044 vec
<pre_expr
> exprs
= sorted_array_from_bitmap_set (set
);
2048 FOR_EACH_VEC_ELT (exprs
, i
, expr
)
2050 if (!valid_in_sets (set
, NULL
, expr
, block
))
2051 bitmap_remove_from_set (set
, expr
);
2056 /* Clean the set of expressions that are no longer valid in SET because
2057 they are clobbered in BLOCK or because they trap and may not be executed. */
2060 prune_clobbered_mems (bitmap_set_t set
, basic_block block
)
2065 FOR_EACH_EXPR_ID_IN_SET (set
, i
, bi
)
2067 pre_expr expr
= expression_for_id (i
);
2068 if (expr
->kind
== REFERENCE
)
2070 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
2073 gimple def_stmt
= SSA_NAME_DEF_STMT (ref
->vuse
);
2074 if (!gimple_nop_p (def_stmt
)
2075 && ((gimple_bb (def_stmt
) != block
2076 && !dominated_by_p (CDI_DOMINATORS
,
2077 block
, gimple_bb (def_stmt
)))
2078 || (gimple_bb (def_stmt
) == block
2079 && value_dies_in_block_x (expr
, block
))))
2080 bitmap_remove_from_set (set
, expr
);
2083 else if (expr
->kind
== NARY
)
2085 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
2086 /* If the NARY may trap make sure the block does not contain
2087 a possible exit point.
2088 ??? This is overly conservative if we translate AVAIL_OUT
2089 as the available expression might be after the exit point. */
2090 if (BB_MAY_NOTRETURN (block
)
2091 && vn_nary_may_trap (nary
))
2092 bitmap_remove_from_set (set
, expr
);
2097 static sbitmap has_abnormal_preds
;
2099 /* List of blocks that may have changed during ANTIC computation and
2100 thus need to be iterated over. */
2102 static sbitmap changed_blocks
;
2104 /* Decide whether to defer a block for a later iteration, or PHI
2105 translate SOURCE to DEST using phis in PHIBLOCK. Return false if we
2106 should defer the block, and true if we processed it. */
2109 defer_or_phi_translate_block (bitmap_set_t dest
, bitmap_set_t source
,
2110 basic_block block
, basic_block phiblock
)
2112 if (!BB_VISITED (phiblock
))
2114 bitmap_set_bit (changed_blocks
, block
->index
);
2115 BB_VISITED (block
) = 0;
2116 BB_DEFERRED (block
) = 1;
2120 phi_translate_set (dest
, source
, block
, phiblock
);
2124 /* Compute the ANTIC set for BLOCK.
2126 If succs(BLOCK) > 1 then
2127 ANTIC_OUT[BLOCK] = intersection of ANTIC_IN[b] for all succ(BLOCK)
2128 else if succs(BLOCK) == 1 then
2129 ANTIC_OUT[BLOCK] = phi_translate (ANTIC_IN[succ(BLOCK)])
2131 ANTIC_IN[BLOCK] = clean(ANTIC_OUT[BLOCK] U EXP_GEN[BLOCK] - TMP_GEN[BLOCK])
2135 compute_antic_aux (basic_block block
, bool block_has_abnormal_pred_edge
)
2137 bool changed
= false;
2138 bitmap_set_t S
, old
, ANTIC_OUT
;
2144 old
= ANTIC_OUT
= S
= NULL
;
2145 BB_VISITED (block
) = 1;
2147 /* If any edges from predecessors are abnormal, antic_in is empty,
2149 if (block_has_abnormal_pred_edge
)
2150 goto maybe_dump_sets
;
2152 old
= ANTIC_IN (block
);
2153 ANTIC_OUT
= bitmap_set_new ();
2155 /* If the block has no successors, ANTIC_OUT is empty. */
2156 if (EDGE_COUNT (block
->succs
) == 0)
2158 /* If we have one successor, we could have some phi nodes to
2159 translate through. */
2160 else if (single_succ_p (block
))
2162 basic_block succ_bb
= single_succ (block
);
2164 /* We trade iterations of the dataflow equations for having to
2165 phi translate the maximal set, which is incredibly slow
2166 (since the maximal set often has 300+ members, even when you
2167 have a small number of blocks).
2168 Basically, we defer the computation of ANTIC for this block
2169 until we have processed it's successor, which will inevitably
2170 have a *much* smaller set of values to phi translate once
2171 clean has been run on it.
2172 The cost of doing this is that we technically perform more
2173 iterations, however, they are lower cost iterations.
2175 Timings for PRE on tramp3d-v4:
2176 without maximal set fix: 11 seconds
2177 with maximal set fix/without deferring: 26 seconds
2178 with maximal set fix/with deferring: 11 seconds
2181 if (!defer_or_phi_translate_block (ANTIC_OUT
, ANTIC_IN (succ_bb
),
2185 goto maybe_dump_sets
;
2188 /* If we have multiple successors, we take the intersection of all of
2189 them. Note that in the case of loop exit phi nodes, we may have
2190 phis to translate through. */
2193 vec
<basic_block
> worklist
;
2195 basic_block bprime
, first
= NULL
;
2197 worklist
.create (EDGE_COUNT (block
->succs
));
2198 FOR_EACH_EDGE (e
, ei
, block
->succs
)
2201 && BB_VISITED (e
->dest
))
2203 else if (BB_VISITED (e
->dest
))
2204 worklist
.quick_push (e
->dest
);
2207 /* Of multiple successors we have to have visited one already. */
2210 bitmap_set_bit (changed_blocks
, block
->index
);
2211 BB_VISITED (block
) = 0;
2212 BB_DEFERRED (block
) = 1;
2214 worklist
.release ();
2215 goto maybe_dump_sets
;
2218 if (!gimple_seq_empty_p (phi_nodes (first
)))
2219 phi_translate_set (ANTIC_OUT
, ANTIC_IN (first
), block
, first
);
2221 bitmap_set_copy (ANTIC_OUT
, ANTIC_IN (first
));
2223 FOR_EACH_VEC_ELT (worklist
, i
, bprime
)
2225 if (!gimple_seq_empty_p (phi_nodes (bprime
)))
2227 bitmap_set_t tmp
= bitmap_set_new ();
2228 phi_translate_set (tmp
, ANTIC_IN (bprime
), block
, bprime
);
2229 bitmap_set_and (ANTIC_OUT
, tmp
);
2230 bitmap_set_free (tmp
);
2233 bitmap_set_and (ANTIC_OUT
, ANTIC_IN (bprime
));
2235 worklist
.release ();
2238 /* Prune expressions that are clobbered in block and thus become
2239 invalid if translated from ANTIC_OUT to ANTIC_IN. */
2240 prune_clobbered_mems (ANTIC_OUT
, block
);
2242 /* Generate ANTIC_OUT - TMP_GEN. */
2243 S
= bitmap_set_subtract (ANTIC_OUT
, TMP_GEN (block
));
2245 /* Start ANTIC_IN with EXP_GEN - TMP_GEN. */
2246 ANTIC_IN (block
) = bitmap_set_subtract (EXP_GEN (block
),
2249 /* Then union in the ANTIC_OUT - TMP_GEN values,
2250 to get ANTIC_OUT U EXP_GEN - TMP_GEN */
2251 FOR_EACH_EXPR_ID_IN_SET (S
, bii
, bi
)
2252 bitmap_value_insert_into_set (ANTIC_IN (block
),
2253 expression_for_id (bii
));
2255 clean (ANTIC_IN (block
), block
);
2257 if (!bitmap_set_equal (old
, ANTIC_IN (block
)))
2260 bitmap_set_bit (changed_blocks
, block
->index
);
2261 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2262 bitmap_set_bit (changed_blocks
, e
->src
->index
);
2265 bitmap_clear_bit (changed_blocks
, block
->index
);
2268 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2270 if (!BB_DEFERRED (block
) || BB_VISITED (block
))
2273 print_bitmap_set (dump_file
, ANTIC_OUT
, "ANTIC_OUT", block
->index
);
2275 print_bitmap_set (dump_file
, ANTIC_IN (block
), "ANTIC_IN",
2279 print_bitmap_set (dump_file
, S
, "S", block
->index
);
2284 "Block %d was deferred for a future iteration.\n",
2289 bitmap_set_free (old
);
2291 bitmap_set_free (S
);
2293 bitmap_set_free (ANTIC_OUT
);
2297 /* Compute PARTIAL_ANTIC for BLOCK.
2299 If succs(BLOCK) > 1 then
2300 PA_OUT[BLOCK] = value wise union of PA_IN[b] + all ANTIC_IN not
2301 in ANTIC_OUT for all succ(BLOCK)
2302 else if succs(BLOCK) == 1 then
2303 PA_OUT[BLOCK] = phi_translate (PA_IN[succ(BLOCK)])
2305 PA_IN[BLOCK] = dependent_clean(PA_OUT[BLOCK] - TMP_GEN[BLOCK]
2310 compute_partial_antic_aux (basic_block block
,
2311 bool block_has_abnormal_pred_edge
)
2313 bool changed
= false;
2314 bitmap_set_t old_PA_IN
;
2315 bitmap_set_t PA_OUT
;
2318 unsigned long max_pa
= PARAM_VALUE (PARAM_MAX_PARTIAL_ANTIC_LENGTH
);
2320 old_PA_IN
= PA_OUT
= NULL
;
2322 /* If any edges from predecessors are abnormal, antic_in is empty,
2324 if (block_has_abnormal_pred_edge
)
2325 goto maybe_dump_sets
;
2327 /* If there are too many partially anticipatable values in the
2328 block, phi_translate_set can take an exponential time: stop
2329 before the translation starts. */
2331 && single_succ_p (block
)
2332 && bitmap_count_bits (&PA_IN (single_succ (block
))->values
) > max_pa
)
2333 goto maybe_dump_sets
;
2335 old_PA_IN
= PA_IN (block
);
2336 PA_OUT
= bitmap_set_new ();
2338 /* If the block has no successors, ANTIC_OUT is empty. */
2339 if (EDGE_COUNT (block
->succs
) == 0)
2341 /* If we have one successor, we could have some phi nodes to
2342 translate through. Note that we can't phi translate across DFS
2343 back edges in partial antic, because it uses a union operation on
2344 the successors. For recurrences like IV's, we will end up
2345 generating a new value in the set on each go around (i + 3 (VH.1)
2346 VH.1 + 1 (VH.2), VH.2 + 1 (VH.3), etc), forever. */
2347 else if (single_succ_p (block
))
2349 basic_block succ
= single_succ (block
);
2350 if (!(single_succ_edge (block
)->flags
& EDGE_DFS_BACK
))
2351 phi_translate_set (PA_OUT
, PA_IN (succ
), block
, succ
);
2353 /* If we have multiple successors, we take the union of all of
2357 vec
<basic_block
> worklist
;
2361 worklist
.create (EDGE_COUNT (block
->succs
));
2362 FOR_EACH_EDGE (e
, ei
, block
->succs
)
2364 if (e
->flags
& EDGE_DFS_BACK
)
2366 worklist
.quick_push (e
->dest
);
2368 if (worklist
.length () > 0)
2370 FOR_EACH_VEC_ELT (worklist
, i
, bprime
)
2375 FOR_EACH_EXPR_ID_IN_SET (ANTIC_IN (bprime
), i
, bi
)
2376 bitmap_value_insert_into_set (PA_OUT
,
2377 expression_for_id (i
));
2378 if (!gimple_seq_empty_p (phi_nodes (bprime
)))
2380 bitmap_set_t pa_in
= bitmap_set_new ();
2381 phi_translate_set (pa_in
, PA_IN (bprime
), block
, bprime
);
2382 FOR_EACH_EXPR_ID_IN_SET (pa_in
, i
, bi
)
2383 bitmap_value_insert_into_set (PA_OUT
,
2384 expression_for_id (i
));
2385 bitmap_set_free (pa_in
);
2388 FOR_EACH_EXPR_ID_IN_SET (PA_IN (bprime
), i
, bi
)
2389 bitmap_value_insert_into_set (PA_OUT
,
2390 expression_for_id (i
));
2393 worklist
.release ();
2396 /* Prune expressions that are clobbered in block and thus become
2397 invalid if translated from PA_OUT to PA_IN. */
2398 prune_clobbered_mems (PA_OUT
, block
);
2400 /* PA_IN starts with PA_OUT - TMP_GEN.
2401 Then we subtract things from ANTIC_IN. */
2402 PA_IN (block
) = bitmap_set_subtract (PA_OUT
, TMP_GEN (block
));
2404 /* For partial antic, we want to put back in the phi results, since
2405 we will properly avoid making them partially antic over backedges. */
2406 bitmap_ior_into (&PA_IN (block
)->values
, &PHI_GEN (block
)->values
);
2407 bitmap_ior_into (&PA_IN (block
)->expressions
, &PHI_GEN (block
)->expressions
);
2409 /* PA_IN[block] = PA_IN[block] - ANTIC_IN[block] */
2410 bitmap_set_subtract_values (PA_IN (block
), ANTIC_IN (block
));
2412 dependent_clean (PA_IN (block
), ANTIC_IN (block
), block
);
2414 if (!bitmap_set_equal (old_PA_IN
, PA_IN (block
)))
2417 bitmap_set_bit (changed_blocks
, block
->index
);
2418 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2419 bitmap_set_bit (changed_blocks
, e
->src
->index
);
2422 bitmap_clear_bit (changed_blocks
, block
->index
);
2425 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2428 print_bitmap_set (dump_file
, PA_OUT
, "PA_OUT", block
->index
);
2430 print_bitmap_set (dump_file
, PA_IN (block
), "PA_IN", block
->index
);
2433 bitmap_set_free (old_PA_IN
);
2435 bitmap_set_free (PA_OUT
);
2439 /* Compute ANTIC and partial ANTIC sets. */
2442 compute_antic (void)
2444 bool changed
= true;
2445 int num_iterations
= 0;
2449 /* If any predecessor edges are abnormal, we punt, so antic_in is empty.
2450 We pre-build the map of blocks with incoming abnormal edges here. */
2451 has_abnormal_preds
= sbitmap_alloc (last_basic_block
);
2452 bitmap_clear (has_abnormal_preds
);
2459 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2461 e
->flags
&= ~EDGE_DFS_BACK
;
2462 if (e
->flags
& EDGE_ABNORMAL
)
2464 bitmap_set_bit (has_abnormal_preds
, block
->index
);
2469 BB_VISITED (block
) = 0;
2470 BB_DEFERRED (block
) = 0;
2472 /* While we are here, give empty ANTIC_IN sets to each block. */
2473 ANTIC_IN (block
) = bitmap_set_new ();
2474 PA_IN (block
) = bitmap_set_new ();
2477 /* At the exit block we anticipate nothing. */
2478 BB_VISITED (EXIT_BLOCK_PTR
) = 1;
2480 changed_blocks
= sbitmap_alloc (last_basic_block
+ 1);
2481 bitmap_ones (changed_blocks
);
2484 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2485 fprintf (dump_file
, "Starting iteration %d\n", num_iterations
);
2486 /* ??? We need to clear our PHI translation cache here as the
2487 ANTIC sets shrink and we restrict valid translations to
2488 those having operands with leaders in ANTIC. Same below
2489 for PA ANTIC computation. */
2492 for (i
= postorder_num
- 1; i
>= 0; i
--)
2494 if (bitmap_bit_p (changed_blocks
, postorder
[i
]))
2496 basic_block block
= BASIC_BLOCK (postorder
[i
]);
2497 changed
|= compute_antic_aux (block
,
2498 bitmap_bit_p (has_abnormal_preds
,
2502 /* Theoretically possible, but *highly* unlikely. */
2503 gcc_checking_assert (num_iterations
< 500);
2506 statistics_histogram_event (cfun
, "compute_antic iterations",
2509 if (do_partial_partial
)
2511 bitmap_ones (changed_blocks
);
2512 mark_dfs_back_edges ();
2517 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2518 fprintf (dump_file
, "Starting iteration %d\n", num_iterations
);
2521 for (i
= postorder_num
- 1 ; i
>= 0; i
--)
2523 if (bitmap_bit_p (changed_blocks
, postorder
[i
]))
2525 basic_block block
= BASIC_BLOCK (postorder
[i
]);
2527 |= compute_partial_antic_aux (block
,
2528 bitmap_bit_p (has_abnormal_preds
,
2532 /* Theoretically possible, but *highly* unlikely. */
2533 gcc_checking_assert (num_iterations
< 500);
2535 statistics_histogram_event (cfun
, "compute_partial_antic iterations",
2538 sbitmap_free (has_abnormal_preds
);
2539 sbitmap_free (changed_blocks
);
2543 /* Inserted expressions are placed onto this worklist, which is used
2544 for performing quick dead code elimination of insertions we made
2545 that didn't turn out to be necessary. */
2546 static bitmap inserted_exprs
;
2548 /* The actual worker for create_component_ref_by_pieces. */
2551 create_component_ref_by_pieces_1 (basic_block block
, vn_reference_t ref
,
2552 unsigned int *operand
, gimple_seq
*stmts
)
2554 vn_reference_op_t currop
= &ref
->operands
[*operand
];
2557 switch (currop
->opcode
)
2561 tree folded
, sc
= NULL_TREE
;
2562 unsigned int nargs
= 0;
2564 if (TREE_CODE (currop
->op0
) == FUNCTION_DECL
)
2567 fn
= find_or_generate_expression (block
, currop
->op0
, stmts
);
2569 sc
= find_or_generate_expression (block
, currop
->op1
, stmts
);
2570 args
= XNEWVEC (tree
, ref
->operands
.length () - 1);
2571 while (*operand
< ref
->operands
.length ())
2573 args
[nargs
] = create_component_ref_by_pieces_1 (block
, ref
,
2577 folded
= build_call_array (currop
->type
,
2578 (TREE_CODE (fn
) == FUNCTION_DECL
2579 ? build_fold_addr_expr (fn
) : fn
),
2583 CALL_EXPR_STATIC_CHAIN (folded
) = sc
;
2589 tree baseop
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2591 tree offset
= currop
->op0
;
2592 if (TREE_CODE (baseop
) == ADDR_EXPR
2593 && handled_component_p (TREE_OPERAND (baseop
, 0)))
2597 base
= get_addr_base_and_unit_offset (TREE_OPERAND (baseop
, 0),
2600 offset
= int_const_binop (PLUS_EXPR
, offset
,
2601 build_int_cst (TREE_TYPE (offset
),
2603 baseop
= build_fold_addr_expr (base
);
2605 return fold_build2 (MEM_REF
, currop
->type
, baseop
, offset
);
2608 case TARGET_MEM_REF
:
2610 tree genop0
= NULL_TREE
, genop1
= NULL_TREE
;
2611 vn_reference_op_t nextop
= &ref
->operands
[++*operand
];
2612 tree baseop
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2615 genop0
= find_or_generate_expression (block
, currop
->op0
, stmts
);
2617 genop1
= find_or_generate_expression (block
, nextop
->op0
, stmts
);
2618 return build5 (TARGET_MEM_REF
, currop
->type
,
2619 baseop
, currop
->op2
, genop0
, currop
->op1
, genop1
);
2625 gcc_assert (is_gimple_min_invariant (currop
->op0
));
2631 case VIEW_CONVERT_EXPR
:
2633 tree genop0
= create_component_ref_by_pieces_1 (block
, ref
,
2635 return fold_build1 (currop
->opcode
, currop
->type
, genop0
);
2638 case WITH_SIZE_EXPR
:
2640 tree genop0
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2642 tree genop1
= find_or_generate_expression (block
, currop
->op0
, stmts
);
2643 return fold_build2 (currop
->opcode
, currop
->type
, genop0
, genop1
);
2648 tree genop0
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2650 tree op1
= currop
->op0
;
2651 tree op2
= currop
->op1
;
2652 return fold_build3 (BIT_FIELD_REF
, currop
->type
, genop0
, op1
, op2
);
2655 /* For array ref vn_reference_op's, operand 1 of the array ref
2656 is op0 of the reference op and operand 3 of the array ref is
2658 case ARRAY_RANGE_REF
:
2662 tree genop1
= currop
->op0
;
2663 tree genop2
= currop
->op1
;
2664 tree genop3
= currop
->op2
;
2665 genop0
= create_component_ref_by_pieces_1 (block
, ref
, operand
, stmts
);
2666 genop1
= find_or_generate_expression (block
, genop1
, stmts
);
2669 tree domain_type
= TYPE_DOMAIN (TREE_TYPE (genop0
));
2670 /* Drop zero minimum index if redundant. */
2671 if (integer_zerop (genop2
)
2673 || integer_zerop (TYPE_MIN_VALUE (domain_type
))))
2676 genop2
= find_or_generate_expression (block
, genop2
, stmts
);
2680 tree elmt_type
= TREE_TYPE (TREE_TYPE (genop0
));
2681 /* We can't always put a size in units of the element alignment
2682 here as the element alignment may be not visible. See
2683 PR43783. Simply drop the element size for constant
2685 if (tree_int_cst_equal (genop3
, TYPE_SIZE_UNIT (elmt_type
)))
2689 genop3
= size_binop (EXACT_DIV_EXPR
, genop3
,
2690 size_int (TYPE_ALIGN_UNIT (elmt_type
)));
2691 genop3
= find_or_generate_expression (block
, genop3
, stmts
);
2694 return build4 (currop
->opcode
, currop
->type
, genop0
, genop1
,
2701 tree genop2
= currop
->op1
;
2702 op0
= create_component_ref_by_pieces_1 (block
, ref
, operand
, stmts
);
2703 /* op1 should be a FIELD_DECL, which are represented by themselves. */
2706 genop2
= find_or_generate_expression (block
, genop2
, stmts
);
2707 return fold_build3 (COMPONENT_REF
, TREE_TYPE (op1
), op0
, op1
, genop2
);
2712 genop
= find_or_generate_expression (block
, currop
->op0
, stmts
);
2733 /* For COMPONENT_REF's and ARRAY_REF's, we can't have any intermediates for the
2734 COMPONENT_REF or MEM_REF or ARRAY_REF portion, because we'd end up with
2735 trying to rename aggregates into ssa form directly, which is a no no.
2737 Thus, this routine doesn't create temporaries, it just builds a
2738 single access expression for the array, calling
2739 find_or_generate_expression to build the innermost pieces.
2741 This function is a subroutine of create_expression_by_pieces, and
2742 should not be called on it's own unless you really know what you
2746 create_component_ref_by_pieces (basic_block block
, vn_reference_t ref
,
2749 unsigned int op
= 0;
2750 return create_component_ref_by_pieces_1 (block
, ref
, &op
, stmts
);
2753 /* Find a leader for an expression, or generate one using
2754 create_expression_by_pieces if it's ANTIC but
2756 BLOCK is the basic_block we are looking for leaders in.
2757 OP is the tree expression to find a leader for or generate.
2758 STMTS is the statement list to put the inserted expressions on.
2759 Returns the SSA_NAME of the LHS of the generated expression or the
2761 DOMSTMT if non-NULL is a statement that should be dominated by
2762 all uses in the generated expression. If DOMSTMT is non-NULL this
2763 routine can fail and return NULL_TREE. Otherwise it will assert
2767 find_or_generate_expression (basic_block block
, tree op
, gimple_seq
*stmts
)
2769 pre_expr expr
= get_or_alloc_expr_for (op
);
2770 unsigned int lookfor
= get_expr_value_id (expr
);
2771 pre_expr leader
= bitmap_find_leader (AVAIL_OUT (block
), lookfor
);
2774 if (leader
->kind
== NAME
)
2775 return PRE_EXPR_NAME (leader
);
2776 else if (leader
->kind
== CONSTANT
)
2777 return PRE_EXPR_CONSTANT (leader
);
2780 /* It must be a complex expression, so generate it recursively. */
2781 bitmap exprset
= value_expressions
[lookfor
];
2784 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, i
, bi
)
2786 pre_expr temp
= expression_for_id (i
);
2787 if (temp
->kind
!= NAME
)
2788 return create_expression_by_pieces (block
, temp
, stmts
,
2789 get_expr_type (expr
));
2795 #define NECESSARY GF_PLF_1
2797 /* Create an expression in pieces, so that we can handle very complex
2798 expressions that may be ANTIC, but not necessary GIMPLE.
2799 BLOCK is the basic block the expression will be inserted into,
2800 EXPR is the expression to insert (in value form)
2801 STMTS is a statement list to append the necessary insertions into.
2803 This function will die if we hit some value that shouldn't be
2804 ANTIC but is (IE there is no leader for it, or its components).
2805 This function may also generate expressions that are themselves
2806 partially or fully redundant. Those that are will be either made
2807 fully redundant during the next iteration of insert (for partially
2808 redundant ones), or eliminated by eliminate (for fully redundant
2811 If DOMSTMT is non-NULL then we make sure that all uses in the
2812 expressions dominate that statement. In this case the function
2813 can return NULL_TREE to signal failure. */
2816 create_expression_by_pieces (basic_block block
, pre_expr expr
,
2817 gimple_seq
*stmts
, tree type
)
2821 gimple_seq forced_stmts
= NULL
;
2822 unsigned int value_id
;
2823 gimple_stmt_iterator gsi
;
2824 tree exprtype
= type
? type
: get_expr_type (expr
);
2830 /* We may hit the NAME/CONSTANT case if we have to convert types
2831 that value numbering saw through. */
2833 folded
= PRE_EXPR_NAME (expr
);
2836 folded
= PRE_EXPR_CONSTANT (expr
);
2840 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
2841 folded
= create_component_ref_by_pieces (block
, ref
, stmts
);
2846 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
2847 tree
*genop
= XALLOCAVEC (tree
, nary
->length
);
2849 for (i
= 0; i
< nary
->length
; ++i
)
2851 genop
[i
] = find_or_generate_expression (block
, nary
->op
[i
], stmts
);
2852 /* Ensure genop[] is properly typed for POINTER_PLUS_EXPR. It
2853 may have conversions stripped. */
2854 if (nary
->opcode
== POINTER_PLUS_EXPR
)
2857 genop
[i
] = fold_convert (nary
->type
, genop
[i
]);
2859 genop
[i
] = convert_to_ptrofftype (genop
[i
]);
2862 genop
[i
] = fold_convert (TREE_TYPE (nary
->op
[i
]), genop
[i
]);
2864 if (nary
->opcode
== CONSTRUCTOR
)
2866 vec
<constructor_elt
, va_gc
> *elts
= NULL
;
2867 for (i
= 0; i
< nary
->length
; ++i
)
2868 CONSTRUCTOR_APPEND_ELT (elts
, NULL_TREE
, genop
[i
]);
2869 folded
= build_constructor (nary
->type
, elts
);
2873 switch (nary
->length
)
2876 folded
= fold_build1 (nary
->opcode
, nary
->type
,
2880 folded
= fold_build2 (nary
->opcode
, nary
->type
,
2881 genop
[0], genop
[1]);
2884 folded
= fold_build3 (nary
->opcode
, nary
->type
,
2885 genop
[0], genop
[1], genop
[3]);
2897 if (!useless_type_conversion_p (exprtype
, TREE_TYPE (folded
)))
2898 folded
= fold_convert (exprtype
, folded
);
2900 /* Force the generated expression to be a sequence of GIMPLE
2902 We have to call unshare_expr because force_gimple_operand may
2903 modify the tree we pass to it. */
2904 folded
= force_gimple_operand (unshare_expr (folded
), &forced_stmts
,
2907 /* If we have any intermediate expressions to the value sets, add them
2908 to the value sets and chain them in the instruction stream. */
2911 gsi
= gsi_start (forced_stmts
);
2912 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
2914 gimple stmt
= gsi_stmt (gsi
);
2915 tree forcedname
= gimple_get_lhs (stmt
);
2918 if (TREE_CODE (forcedname
) == SSA_NAME
)
2920 bitmap_set_bit (inserted_exprs
, SSA_NAME_VERSION (forcedname
));
2921 VN_INFO_GET (forcedname
)->valnum
= forcedname
;
2922 VN_INFO (forcedname
)->value_id
= get_next_value_id ();
2923 nameexpr
= get_or_alloc_expr_for_name (forcedname
);
2924 add_to_value (VN_INFO (forcedname
)->value_id
, nameexpr
);
2925 bitmap_value_replace_in_set (NEW_SETS (block
), nameexpr
);
2926 bitmap_value_replace_in_set (AVAIL_OUT (block
), nameexpr
);
2929 gimple_seq_add_seq (stmts
, forced_stmts
);
2932 name
= make_temp_ssa_name (exprtype
, NULL
, "pretmp");
2933 newstmt
= gimple_build_assign (name
, folded
);
2934 gimple_set_plf (newstmt
, NECESSARY
, false);
2936 gimple_seq_add_stmt (stmts
, newstmt
);
2937 bitmap_set_bit (inserted_exprs
, SSA_NAME_VERSION (name
));
2939 /* Fold the last statement. */
2940 gsi
= gsi_last (*stmts
);
2941 if (fold_stmt_inplace (&gsi
))
2942 update_stmt (gsi_stmt (gsi
));
2944 /* Add a value number to the temporary.
2945 The value may already exist in either NEW_SETS, or AVAIL_OUT, because
2946 we are creating the expression by pieces, and this particular piece of
2947 the expression may have been represented. There is no harm in replacing
2949 value_id
= get_expr_value_id (expr
);
2950 VN_INFO_GET (name
)->value_id
= value_id
;
2951 VN_INFO (name
)->valnum
= sccvn_valnum_from_value_id (value_id
);
2952 if (VN_INFO (name
)->valnum
== NULL_TREE
)
2953 VN_INFO (name
)->valnum
= name
;
2954 gcc_assert (VN_INFO (name
)->valnum
!= NULL_TREE
);
2955 nameexpr
= get_or_alloc_expr_for_name (name
);
2956 add_to_value (value_id
, nameexpr
);
2957 if (NEW_SETS (block
))
2958 bitmap_value_replace_in_set (NEW_SETS (block
), nameexpr
);
2959 bitmap_value_replace_in_set (AVAIL_OUT (block
), nameexpr
);
2961 pre_stats
.insertions
++;
2962 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2964 fprintf (dump_file
, "Inserted ");
2965 print_gimple_stmt (dump_file
, newstmt
, 0, 0);
2966 fprintf (dump_file
, " in predecessor %d\n", block
->index
);
2973 /* Returns true if we want to inhibit the insertions of PHI nodes
2974 for the given EXPR for basic block BB (a member of a loop).
2975 We want to do this, when we fear that the induction variable we
2976 create might inhibit vectorization. */
2979 inhibit_phi_insertion (basic_block bb
, pre_expr expr
)
2981 vn_reference_t vr
= PRE_EXPR_REFERENCE (expr
);
2982 vec
<vn_reference_op_s
> ops
= vr
->operands
;
2983 vn_reference_op_t op
;
2986 /* If we aren't going to vectorize we don't inhibit anything. */
2987 if (!flag_tree_vectorize
)
2990 /* Otherwise we inhibit the insertion when the address of the
2991 memory reference is a simple induction variable. In other
2992 cases the vectorizer won't do anything anyway (either it's
2993 loop invariant or a complicated expression). */
2994 FOR_EACH_VEC_ELT (ops
, i
, op
)
2999 /* Calls are not a problem. */
3003 case ARRAY_RANGE_REF
:
3004 if (TREE_CODE (op
->op0
) != SSA_NAME
)
3009 basic_block defbb
= gimple_bb (SSA_NAME_DEF_STMT (op
->op0
));
3011 /* Default defs are loop invariant. */
3014 /* Defined outside this loop, also loop invariant. */
3015 if (!flow_bb_inside_loop_p (bb
->loop_father
, defbb
))
3017 /* If it's a simple induction variable inhibit insertion,
3018 the vectorizer might be interested in this one. */
3019 if (simple_iv (bb
->loop_father
, bb
->loop_father
,
3020 op
->op0
, &iv
, true))
3022 /* No simple IV, vectorizer can't do anything, hence no
3023 reason to inhibit the transformation for this operand. */
3033 /* Insert the to-be-made-available values of expression EXPRNUM for each
3034 predecessor, stored in AVAIL, into the predecessors of BLOCK, and
3035 merge the result with a phi node, given the same value number as
3036 NODE. Return true if we have inserted new stuff. */
3039 insert_into_preds_of_block (basic_block block
, unsigned int exprnum
,
3040 vec
<pre_expr
> avail
)
3042 pre_expr expr
= expression_for_id (exprnum
);
3044 unsigned int val
= get_expr_value_id (expr
);
3046 bool insertions
= false;
3051 tree type
= get_expr_type (expr
);
3055 /* Make sure we aren't creating an induction variable. */
3056 if (bb_loop_depth (block
) > 0 && EDGE_COUNT (block
->preds
) == 2)
3058 bool firstinsideloop
= false;
3059 bool secondinsideloop
= false;
3060 firstinsideloop
= flow_bb_inside_loop_p (block
->loop_father
,
3061 EDGE_PRED (block
, 0)->src
);
3062 secondinsideloop
= flow_bb_inside_loop_p (block
->loop_father
,
3063 EDGE_PRED (block
, 1)->src
);
3064 /* Induction variables only have one edge inside the loop. */
3065 if ((firstinsideloop
^ secondinsideloop
)
3066 && (expr
->kind
!= REFERENCE
3067 || inhibit_phi_insertion (block
, expr
)))
3069 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3070 fprintf (dump_file
, "Skipping insertion of phi for partial redundancy: Looks like an induction variable\n");
3075 /* Make the necessary insertions. */
3076 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3078 gimple_seq stmts
= NULL
;
3081 eprime
= avail
[pred
->dest_idx
];
3083 if (eprime
->kind
!= NAME
&& eprime
->kind
!= CONSTANT
)
3085 builtexpr
= create_expression_by_pieces (bprime
, eprime
,
3087 gcc_assert (!(pred
->flags
& EDGE_ABNORMAL
));
3088 gsi_insert_seq_on_edge (pred
, stmts
);
3089 avail
[pred
->dest_idx
] = get_or_alloc_expr_for_name (builtexpr
);
3092 else if (eprime
->kind
== CONSTANT
)
3094 /* Constants may not have the right type, fold_convert
3095 should give us back a constant with the right type. */
3096 tree constant
= PRE_EXPR_CONSTANT (eprime
);
3097 if (!useless_type_conversion_p (type
, TREE_TYPE (constant
)))
3099 tree builtexpr
= fold_convert (type
, constant
);
3100 if (!is_gimple_min_invariant (builtexpr
))
3102 tree forcedexpr
= force_gimple_operand (builtexpr
,
3105 if (!is_gimple_min_invariant (forcedexpr
))
3107 if (forcedexpr
!= builtexpr
)
3109 VN_INFO_GET (forcedexpr
)->valnum
= PRE_EXPR_CONSTANT (eprime
);
3110 VN_INFO (forcedexpr
)->value_id
= get_expr_value_id (eprime
);
3114 gimple_stmt_iterator gsi
;
3115 gsi
= gsi_start (stmts
);
3116 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
3118 gimple stmt
= gsi_stmt (gsi
);
3119 tree lhs
= gimple_get_lhs (stmt
);
3120 if (TREE_CODE (lhs
) == SSA_NAME
)
3121 bitmap_set_bit (inserted_exprs
,
3122 SSA_NAME_VERSION (lhs
));
3123 gimple_set_plf (stmt
, NECESSARY
, false);
3125 gsi_insert_seq_on_edge (pred
, stmts
);
3127 avail
[pred
->dest_idx
]
3128 = get_or_alloc_expr_for_name (forcedexpr
);
3132 avail
[pred
->dest_idx
]
3133 = get_or_alloc_expr_for_constant (builtexpr
);
3136 else if (eprime
->kind
== NAME
)
3138 /* We may have to do a conversion because our value
3139 numbering can look through types in certain cases, but
3140 our IL requires all operands of a phi node have the same
3142 tree name
= PRE_EXPR_NAME (eprime
);
3143 if (!useless_type_conversion_p (type
, TREE_TYPE (name
)))
3147 builtexpr
= fold_convert (type
, name
);
3148 forcedexpr
= force_gimple_operand (builtexpr
,
3152 if (forcedexpr
!= name
)
3154 VN_INFO_GET (forcedexpr
)->valnum
= VN_INFO (name
)->valnum
;
3155 VN_INFO (forcedexpr
)->value_id
= VN_INFO (name
)->value_id
;
3160 gimple_stmt_iterator gsi
;
3161 gsi
= gsi_start (stmts
);
3162 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
3164 gimple stmt
= gsi_stmt (gsi
);
3165 tree lhs
= gimple_get_lhs (stmt
);
3166 if (TREE_CODE (lhs
) == SSA_NAME
)
3167 bitmap_set_bit (inserted_exprs
, SSA_NAME_VERSION (lhs
));
3168 gimple_set_plf (stmt
, NECESSARY
, false);
3170 gsi_insert_seq_on_edge (pred
, stmts
);
3172 avail
[pred
->dest_idx
] = get_or_alloc_expr_for_name (forcedexpr
);
3176 /* If we didn't want a phi node, and we made insertions, we still have
3177 inserted new stuff, and thus return true. If we didn't want a phi node,
3178 and didn't make insertions, we haven't added anything new, so return
3180 if (nophi
&& insertions
)
3182 else if (nophi
&& !insertions
)
3185 /* Now build a phi for the new variable. */
3186 temp
= make_temp_ssa_name (type
, NULL
, "prephitmp");
3187 phi
= create_phi_node (temp
, block
);
3189 gimple_set_plf (phi
, NECESSARY
, false);
3190 VN_INFO_GET (temp
)->value_id
= val
;
3191 VN_INFO (temp
)->valnum
= sccvn_valnum_from_value_id (val
);
3192 if (VN_INFO (temp
)->valnum
== NULL_TREE
)
3193 VN_INFO (temp
)->valnum
= temp
;
3194 bitmap_set_bit (inserted_exprs
, SSA_NAME_VERSION (temp
));
3195 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3197 pre_expr ae
= avail
[pred
->dest_idx
];
3198 gcc_assert (get_expr_type (ae
) == type
3199 || useless_type_conversion_p (type
, get_expr_type (ae
)));
3200 if (ae
->kind
== CONSTANT
)
3201 add_phi_arg (phi
, PRE_EXPR_CONSTANT (ae
), pred
, UNKNOWN_LOCATION
);
3203 add_phi_arg (phi
, PRE_EXPR_NAME (ae
), pred
, UNKNOWN_LOCATION
);
3206 newphi
= get_or_alloc_expr_for_name (temp
);
3207 add_to_value (val
, newphi
);
3209 /* The value should *not* exist in PHI_GEN, or else we wouldn't be doing
3210 this insertion, since we test for the existence of this value in PHI_GEN
3211 before proceeding with the partial redundancy checks in insert_aux.
3213 The value may exist in AVAIL_OUT, in particular, it could be represented
3214 by the expression we are trying to eliminate, in which case we want the
3215 replacement to occur. If it's not existing in AVAIL_OUT, we want it
3218 Similarly, to the PHI_GEN case, the value should not exist in NEW_SETS of
3219 this block, because if it did, it would have existed in our dominator's
3220 AVAIL_OUT, and would have been skipped due to the full redundancy check.
3223 bitmap_insert_into_set (PHI_GEN (block
), newphi
);
3224 bitmap_value_replace_in_set (AVAIL_OUT (block
),
3226 bitmap_insert_into_set (NEW_SETS (block
),
3229 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3231 fprintf (dump_file
, "Created phi ");
3232 print_gimple_stmt (dump_file
, phi
, 0, 0);
3233 fprintf (dump_file
, " in block %d\n", block
->index
);
3241 /* Perform insertion of partially redundant values.
3242 For BLOCK, do the following:
3243 1. Propagate the NEW_SETS of the dominator into the current block.
3244 If the block has multiple predecessors,
3245 2a. Iterate over the ANTIC expressions for the block to see if
3246 any of them are partially redundant.
3247 2b. If so, insert them into the necessary predecessors to make
3248 the expression fully redundant.
3249 2c. Insert a new PHI merging the values of the predecessors.
3250 2d. Insert the new PHI, and the new expressions, into the
3252 3. Recursively call ourselves on the dominator children of BLOCK.
3254 Steps 1, 2a, and 3 are done by insert_aux. 2b, 2c and 2d are done by
3255 do_regular_insertion and do_partial_insertion.
3260 do_regular_insertion (basic_block block
, basic_block dom
)
3262 bool new_stuff
= false;
3263 vec
<pre_expr
> exprs
;
3265 vec
<pre_expr
> avail
= vec
<pre_expr
>();
3268 exprs
= sorted_array_from_bitmap_set (ANTIC_IN (block
));
3269 avail
.safe_grow (EDGE_COUNT (block
->preds
));
3271 FOR_EACH_VEC_ELT (exprs
, i
, expr
)
3273 if (expr
->kind
!= NAME
)
3276 bool by_some
= false;
3277 bool cant_insert
= false;
3278 bool all_same
= true;
3279 pre_expr first_s
= NULL
;
3282 pre_expr eprime
= NULL
;
3284 pre_expr edoubleprime
= NULL
;
3285 bool do_insertion
= false;
3287 val
= get_expr_value_id (expr
);
3288 if (bitmap_set_contains_value (PHI_GEN (block
), val
))
3290 if (bitmap_set_contains_value (AVAIL_OUT (dom
), val
))
3292 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3293 fprintf (dump_file
, "Found fully redundant value\n");
3297 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3299 unsigned int vprime
;
3301 /* We should never run insertion for the exit block
3302 and so not come across fake pred edges. */
3303 gcc_assert (!(pred
->flags
& EDGE_FAKE
));
3305 eprime
= phi_translate (expr
, ANTIC_IN (block
), NULL
,
3308 /* eprime will generally only be NULL if the
3309 value of the expression, translated
3310 through the PHI for this predecessor, is
3311 undefined. If that is the case, we can't
3312 make the expression fully redundant,
3313 because its value is undefined along a
3314 predecessor path. We can thus break out
3315 early because it doesn't matter what the
3316 rest of the results are. */
3319 avail
[pred
->dest_idx
] = NULL
;
3324 eprime
= fully_constant_expression (eprime
);
3325 vprime
= get_expr_value_id (eprime
);
3326 edoubleprime
= bitmap_find_leader (AVAIL_OUT (bprime
),
3328 if (edoubleprime
== NULL
)
3330 avail
[pred
->dest_idx
] = eprime
;
3335 avail
[pred
->dest_idx
] = edoubleprime
;
3337 /* We want to perform insertions to remove a redundancy on
3338 a path in the CFG we want to optimize for speed. */
3339 if (optimize_edge_for_speed_p (pred
))
3340 do_insertion
= true;
3341 if (first_s
== NULL
)
3342 first_s
= edoubleprime
;
3343 else if (!pre_expr_d::equal (first_s
, edoubleprime
))
3347 /* If we can insert it, it's not the same value
3348 already existing along every predecessor, and
3349 it's defined by some predecessor, it is
3350 partially redundant. */
3351 if (!cant_insert
&& !all_same
&& by_some
)
3355 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3357 fprintf (dump_file
, "Skipping partial redundancy for "
3359 print_pre_expr (dump_file
, expr
);
3360 fprintf (dump_file
, " (%04d), no redundancy on to be "
3361 "optimized for speed edge\n", val
);
3364 else if (dbg_cnt (treepre_insert
))
3366 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3368 fprintf (dump_file
, "Found partial redundancy for "
3370 print_pre_expr (dump_file
, expr
);
3371 fprintf (dump_file
, " (%04d)\n",
3372 get_expr_value_id (expr
));
3374 if (insert_into_preds_of_block (block
,
3375 get_expression_id (expr
),
3380 /* If all edges produce the same value and that value is
3381 an invariant, then the PHI has the same value on all
3382 edges. Note this. */
3383 else if (!cant_insert
&& all_same
&& eprime
3384 && (edoubleprime
->kind
== CONSTANT
3385 || edoubleprime
->kind
== NAME
)
3386 && !value_id_constant_p (val
))
3390 bitmap exprset
= value_expressions
[val
];
3392 unsigned int new_val
= get_expr_value_id (edoubleprime
);
3393 EXECUTE_IF_SET_IN_BITMAP (exprset
, 0, j
, bi
)
3395 pre_expr expr
= expression_for_id (j
);
3397 if (expr
->kind
== NAME
)
3399 vn_ssa_aux_t info
= VN_INFO (PRE_EXPR_NAME (expr
));
3400 /* Just reset the value id and valnum so it is
3401 the same as the constant we have discovered. */
3402 if (edoubleprime
->kind
== CONSTANT
)
3404 info
->valnum
= PRE_EXPR_CONSTANT (edoubleprime
);
3405 pre_stats
.constified
++;
3408 info
->valnum
= VN_INFO (PRE_EXPR_NAME (edoubleprime
))->valnum
;
3409 info
->value_id
= new_val
;
3422 /* Perform insertion for partially anticipatable expressions. There
3423 is only one case we will perform insertion for these. This case is
3424 if the expression is partially anticipatable, and fully available.
3425 In this case, we know that putting it earlier will enable us to
3426 remove the later computation. */
3430 do_partial_partial_insertion (basic_block block
, basic_block dom
)
3432 bool new_stuff
= false;
3433 vec
<pre_expr
> exprs
;
3435 vec
<pre_expr
> avail
= vec
<pre_expr
>();
3438 exprs
= sorted_array_from_bitmap_set (PA_IN (block
));
3439 avail
.safe_grow (EDGE_COUNT (block
->preds
));
3441 FOR_EACH_VEC_ELT (exprs
, i
, expr
)
3443 if (expr
->kind
!= NAME
)
3447 bool cant_insert
= false;
3450 pre_expr eprime
= NULL
;
3453 val
= get_expr_value_id (expr
);
3454 if (bitmap_set_contains_value (PHI_GEN (block
), val
))
3456 if (bitmap_set_contains_value (AVAIL_OUT (dom
), val
))
3459 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3461 unsigned int vprime
;
3462 pre_expr edoubleprime
;
3464 /* We should never run insertion for the exit block
3465 and so not come across fake pred edges. */
3466 gcc_assert (!(pred
->flags
& EDGE_FAKE
));
3468 eprime
= phi_translate (expr
, ANTIC_IN (block
),
3472 /* eprime will generally only be NULL if the
3473 value of the expression, translated
3474 through the PHI for this predecessor, is
3475 undefined. If that is the case, we can't
3476 make the expression fully redundant,
3477 because its value is undefined along a
3478 predecessor path. We can thus break out
3479 early because it doesn't matter what the
3480 rest of the results are. */
3483 avail
[pred
->dest_idx
] = NULL
;
3488 eprime
= fully_constant_expression (eprime
);
3489 vprime
= get_expr_value_id (eprime
);
3490 edoubleprime
= bitmap_find_leader (AVAIL_OUT (bprime
), vprime
);
3491 avail
[pred
->dest_idx
] = edoubleprime
;
3492 if (edoubleprime
== NULL
)
3499 /* If we can insert it, it's not the same value
3500 already existing along every predecessor, and
3501 it's defined by some predecessor, it is
3502 partially redundant. */
3503 if (!cant_insert
&& by_all
)
3506 bool do_insertion
= false;
3508 /* Insert only if we can remove a later expression on a path
3509 that we want to optimize for speed.
3510 The phi node that we will be inserting in BLOCK is not free,
3511 and inserting it for the sake of !optimize_for_speed successor
3512 may cause regressions on the speed path. */
3513 FOR_EACH_EDGE (succ
, ei
, block
->succs
)
3515 if (bitmap_set_contains_value (PA_IN (succ
->dest
), val
)
3516 || bitmap_set_contains_value (ANTIC_IN (succ
->dest
), val
))
3518 if (optimize_edge_for_speed_p (succ
))
3519 do_insertion
= true;
3525 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3527 fprintf (dump_file
, "Skipping partial partial redundancy "
3529 print_pre_expr (dump_file
, expr
);
3530 fprintf (dump_file
, " (%04d), not (partially) anticipated "
3531 "on any to be optimized for speed edges\n", val
);
3534 else if (dbg_cnt (treepre_insert
))
3536 pre_stats
.pa_insert
++;
3537 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3539 fprintf (dump_file
, "Found partial partial redundancy "
3541 print_pre_expr (dump_file
, expr
);
3542 fprintf (dump_file
, " (%04d)\n",
3543 get_expr_value_id (expr
));
3545 if (insert_into_preds_of_block (block
,
3546 get_expression_id (expr
),
3560 insert_aux (basic_block block
)
3563 bool new_stuff
= false;
3568 dom
= get_immediate_dominator (CDI_DOMINATORS
, block
);
3573 bitmap_set_t newset
= NEW_SETS (dom
);
3576 /* Note that we need to value_replace both NEW_SETS, and
3577 AVAIL_OUT. For both the case of NEW_SETS, the value may be
3578 represented by some non-simple expression here that we want
3579 to replace it with. */
3580 FOR_EACH_EXPR_ID_IN_SET (newset
, i
, bi
)
3582 pre_expr expr
= expression_for_id (i
);
3583 bitmap_value_replace_in_set (NEW_SETS (block
), expr
);
3584 bitmap_value_replace_in_set (AVAIL_OUT (block
), expr
);
3587 if (!single_pred_p (block
))
3589 new_stuff
|= do_regular_insertion (block
, dom
);
3590 if (do_partial_partial
)
3591 new_stuff
|= do_partial_partial_insertion (block
, dom
);
3595 for (son
= first_dom_son (CDI_DOMINATORS
, block
);
3597 son
= next_dom_son (CDI_DOMINATORS
, son
))
3599 new_stuff
|= insert_aux (son
);
3605 /* Perform insertion of partially redundant values. */
3610 bool new_stuff
= true;
3612 int num_iterations
= 0;
3615 NEW_SETS (bb
) = bitmap_set_new ();
3620 if (dump_file
&& dump_flags
& TDF_DETAILS
)
3621 fprintf (dump_file
, "Starting insert iteration %d\n", num_iterations
);
3622 new_stuff
= insert_aux (ENTRY_BLOCK_PTR
);
3624 statistics_histogram_event (cfun
, "insert iterations", num_iterations
);
3628 /* Add OP to EXP_GEN (block), and possibly to the maximal set. */
3631 add_to_exp_gen (basic_block block
, tree op
)
3635 if (TREE_CODE (op
) == SSA_NAME
&& ssa_undefined_value_p (op
))
3638 result
= get_or_alloc_expr_for_name (op
);
3639 bitmap_value_insert_into_set (EXP_GEN (block
), result
);
3642 /* Create value ids for PHI in BLOCK. */
3645 make_values_for_phi (gimple phi
, basic_block block
)
3647 tree result
= gimple_phi_result (phi
);
3650 /* We have no need for virtual phis, as they don't represent
3651 actual computations. */
3652 if (virtual_operand_p (result
))
3655 pre_expr e
= get_or_alloc_expr_for_name (result
);
3656 add_to_value (get_expr_value_id (e
), e
);
3657 bitmap_value_insert_into_set (AVAIL_OUT (block
), e
);
3658 bitmap_insert_into_set (PHI_GEN (block
), e
);
3659 for (i
= 0; i
< gimple_phi_num_args (phi
); ++i
)
3661 tree arg
= gimple_phi_arg_def (phi
, i
);
3662 if (TREE_CODE (arg
) == SSA_NAME
)
3664 e
= get_or_alloc_expr_for_name (arg
);
3665 add_to_value (get_expr_value_id (e
), e
);
3670 /* Compute the AVAIL set for all basic blocks.
3672 This function performs value numbering of the statements in each basic
3673 block. The AVAIL sets are built from information we glean while doing
3674 this value numbering, since the AVAIL sets contain only one entry per
3677 AVAIL_IN[BLOCK] = AVAIL_OUT[dom(BLOCK)].
3678 AVAIL_OUT[BLOCK] = AVAIL_IN[BLOCK] U PHI_GEN[BLOCK] U TMP_GEN[BLOCK]. */
3681 compute_avail (void)
3684 basic_block block
, son
;
3685 basic_block
*worklist
;
3689 /* We pretend that default definitions are defined in the entry block.
3690 This includes function arguments and the static chain decl. */
3691 for (i
= 1; i
< num_ssa_names
; ++i
)
3693 tree name
= ssa_name (i
);
3696 || !SSA_NAME_IS_DEFAULT_DEF (name
)
3697 || has_zero_uses (name
)
3698 || virtual_operand_p (name
))
3701 e
= get_or_alloc_expr_for_name (name
);
3702 add_to_value (get_expr_value_id (e
), e
);
3703 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR
), e
);
3704 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR
), e
);
3707 /* Allocate the worklist. */
3708 worklist
= XNEWVEC (basic_block
, n_basic_blocks
);
3710 /* Seed the algorithm by putting the dominator children of the entry
3711 block on the worklist. */
3712 for (son
= first_dom_son (CDI_DOMINATORS
, ENTRY_BLOCK_PTR
);
3714 son
= next_dom_son (CDI_DOMINATORS
, son
))
3715 worklist
[sp
++] = son
;
3717 /* Loop until the worklist is empty. */
3720 gimple_stmt_iterator gsi
;
3724 /* Pick a block from the worklist. */
3725 block
= worklist
[--sp
];
3727 /* Initially, the set of available values in BLOCK is that of
3728 its immediate dominator. */
3729 dom
= get_immediate_dominator (CDI_DOMINATORS
, block
);
3731 bitmap_set_copy (AVAIL_OUT (block
), AVAIL_OUT (dom
));
3733 /* Generate values for PHI nodes. */
3734 for (gsi
= gsi_start_phis (block
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3735 make_values_for_phi (gsi_stmt (gsi
), block
);
3737 BB_MAY_NOTRETURN (block
) = 0;
3739 /* Now compute value numbers and populate value sets with all
3740 the expressions computed in BLOCK. */
3741 for (gsi
= gsi_start_bb (block
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3746 stmt
= gsi_stmt (gsi
);
3748 /* Cache whether the basic-block has any non-visible side-effect
3750 If this isn't a call or it is the last stmt in the
3751 basic-block then the CFG represents things correctly. */
3752 if (is_gimple_call (stmt
) && !stmt_ends_bb_p (stmt
))
3754 /* Non-looping const functions always return normally.
3755 Otherwise the call might not return or have side-effects
3756 that forbids hoisting possibly trapping expressions
3758 int flags
= gimple_call_flags (stmt
);
3759 if (!(flags
& ECF_CONST
)
3760 || (flags
& ECF_LOOPING_CONST_OR_PURE
))
3761 BB_MAY_NOTRETURN (block
) = 1;
3764 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_DEF
)
3766 pre_expr e
= get_or_alloc_expr_for_name (op
);
3768 add_to_value (get_expr_value_id (e
), e
);
3769 bitmap_insert_into_set (TMP_GEN (block
), e
);
3770 bitmap_value_insert_into_set (AVAIL_OUT (block
), e
);
3773 if (gimple_has_side_effects (stmt
)
3774 || stmt_could_throw_p (stmt
)
3775 || is_gimple_debug (stmt
))
3778 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
)
3779 add_to_exp_gen (block
, op
);
3781 switch (gimple_code (stmt
))
3789 pre_expr result
= NULL
;
3790 vec
<vn_reference_op_s
> ops
3791 = vec
<vn_reference_op_s
>();
3793 /* We can value number only calls to real functions. */
3794 if (gimple_call_internal_p (stmt
))
3797 copy_reference_ops_from_call (stmt
, &ops
);
3798 vn_reference_lookup_pieces (gimple_vuse (stmt
), 0,
3799 gimple_expr_type (stmt
),
3800 ops
, &ref
, VN_NOWALK
);
3805 /* If the value of the call is not invalidated in
3806 this block until it is computed, add the expression
3808 if (!gimple_vuse (stmt
)
3810 (SSA_NAME_DEF_STMT (gimple_vuse (stmt
))) == GIMPLE_PHI
3811 || gimple_bb (SSA_NAME_DEF_STMT
3812 (gimple_vuse (stmt
))) != block
)
3814 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3815 result
->kind
= REFERENCE
;
3817 PRE_EXPR_REFERENCE (result
) = ref
;
3819 get_or_alloc_expression_id (result
);
3820 add_to_value (get_expr_value_id (result
), result
);
3821 bitmap_value_insert_into_set (EXP_GEN (block
), result
);
3828 pre_expr result
= NULL
;
3829 switch (vn_get_stmt_kind (stmt
))
3833 enum tree_code code
= gimple_assign_rhs_code (stmt
);
3836 /* COND_EXPR and VEC_COND_EXPR are awkward in
3837 that they contain an embedded complex expression.
3838 Don't even try to shove those through PRE. */
3839 if (code
== COND_EXPR
3840 || code
== VEC_COND_EXPR
)
3843 vn_nary_op_lookup_stmt (stmt
, &nary
);
3847 /* If the NARY traps and there was a preceding
3848 point in the block that might not return avoid
3849 adding the nary to EXP_GEN. */
3850 if (BB_MAY_NOTRETURN (block
)
3851 && vn_nary_may_trap (nary
))
3854 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3855 result
->kind
= NARY
;
3857 PRE_EXPR_NARY (result
) = nary
;
3864 vn_reference_lookup (gimple_assign_rhs1 (stmt
),
3870 /* If the value of the reference is not invalidated in
3871 this block until it is computed, add the expression
3873 if (gimple_vuse (stmt
))
3877 def_stmt
= SSA_NAME_DEF_STMT (gimple_vuse (stmt
));
3878 while (!gimple_nop_p (def_stmt
)
3879 && gimple_code (def_stmt
) != GIMPLE_PHI
3880 && gimple_bb (def_stmt
) == block
)
3882 if (stmt_may_clobber_ref_p
3883 (def_stmt
, gimple_assign_rhs1 (stmt
)))
3889 = SSA_NAME_DEF_STMT (gimple_vuse (def_stmt
));
3895 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3896 result
->kind
= REFERENCE
;
3898 PRE_EXPR_REFERENCE (result
) = ref
;
3906 get_or_alloc_expression_id (result
);
3907 add_to_value (get_expr_value_id (result
), result
);
3908 bitmap_value_insert_into_set (EXP_GEN (block
), result
);
3916 /* Put the dominator children of BLOCK on the worklist of blocks
3917 to compute available sets for. */
3918 for (son
= first_dom_son (CDI_DOMINATORS
, block
);
3920 son
= next_dom_son (CDI_DOMINATORS
, son
))
3921 worklist
[sp
++] = son
;
3928 /* Local state for the eliminate domwalk. */
3929 static vec
<gimple
> el_to_remove
;
3930 static vec
<gimple
> el_to_update
;
3931 static unsigned int el_todo
;
3932 static vec
<tree
> el_avail
;
3933 static vec
<tree
> el_avail_stack
;
3935 /* Return a leader for OP that is available at the current point of the
3936 eliminate domwalk. */
3939 eliminate_avail (tree op
)
3941 tree valnum
= VN_INFO (op
)->valnum
;
3942 if (TREE_CODE (valnum
) == SSA_NAME
)
3944 if (SSA_NAME_IS_DEFAULT_DEF (valnum
))
3946 if (el_avail
.length () > SSA_NAME_VERSION (valnum
))
3947 return el_avail
[SSA_NAME_VERSION (valnum
)];
3949 else if (is_gimple_min_invariant (valnum
))
3954 /* At the current point of the eliminate domwalk make OP available. */
3957 eliminate_push_avail (tree op
)
3959 tree valnum
= VN_INFO (op
)->valnum
;
3960 if (TREE_CODE (valnum
) == SSA_NAME
)
3962 if (el_avail
.length () <= SSA_NAME_VERSION (valnum
))
3963 el_avail
.safe_grow_cleared (SSA_NAME_VERSION (valnum
) + 1);
3964 el_avail
[SSA_NAME_VERSION (valnum
)] = op
;
3965 el_avail_stack
.safe_push (op
);
3969 /* Insert the expression recorded by SCCVN for VAL at *GSI. Returns
3970 the leader for the expression if insertion was successful. */
3973 eliminate_insert (gimple_stmt_iterator
*gsi
, tree val
)
3975 tree expr
= vn_get_expr_for (val
);
3976 if (!CONVERT_EXPR_P (expr
)
3977 && TREE_CODE (expr
) != VIEW_CONVERT_EXPR
)
3980 tree op
= TREE_OPERAND (expr
, 0);
3981 tree leader
= TREE_CODE (op
) == SSA_NAME
? eliminate_avail (op
) : op
;
3985 tree res
= make_temp_ssa_name (TREE_TYPE (val
), NULL
, "pretmp");
3986 gimple tem
= gimple_build_assign (res
,
3987 fold_build1 (TREE_CODE (expr
),
3988 TREE_TYPE (expr
), leader
));
3989 gsi_insert_before (gsi
, tem
, GSI_SAME_STMT
);
3990 VN_INFO_GET (res
)->valnum
= val
;
3992 if (TREE_CODE (leader
) == SSA_NAME
)
3993 gimple_set_plf (SSA_NAME_DEF_STMT (leader
), NECESSARY
, true);
3995 pre_stats
.insertions
++;
3996 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3998 fprintf (dump_file
, "Inserted ");
3999 print_gimple_stmt (dump_file
, tem
, 0, 0);
4005 /* Perform elimination for the basic-block B during the domwalk. */
4008 eliminate_bb (dom_walk_data
*, basic_block b
)
4010 gimple_stmt_iterator gsi
;
4014 el_avail_stack
.safe_push (NULL_TREE
);
4016 for (gsi
= gsi_start_phis (b
); !gsi_end_p (gsi
);)
4018 gimple stmt
, phi
= gsi_stmt (gsi
);
4019 tree sprime
= NULL_TREE
, res
= PHI_RESULT (phi
);
4020 gimple_stmt_iterator gsi2
;
4022 /* We want to perform redundant PHI elimination. Do so by
4023 replacing the PHI with a single copy if possible.
4024 Do not touch inserted, single-argument or virtual PHIs. */
4025 if (gimple_phi_num_args (phi
) == 1
4026 || virtual_operand_p (res
))
4032 sprime
= eliminate_avail (res
);
4036 eliminate_push_avail (res
);
4040 else if (is_gimple_min_invariant (sprime
))
4042 if (!useless_type_conversion_p (TREE_TYPE (res
),
4043 TREE_TYPE (sprime
)))
4044 sprime
= fold_convert (TREE_TYPE (res
), sprime
);
4047 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4049 fprintf (dump_file
, "Replaced redundant PHI node defining ");
4050 print_generic_expr (dump_file
, res
, 0);
4051 fprintf (dump_file
, " with ");
4052 print_generic_expr (dump_file
, sprime
, 0);
4053 fprintf (dump_file
, "\n");
4056 remove_phi_node (&gsi
, false);
4059 && !bitmap_bit_p (inserted_exprs
, SSA_NAME_VERSION (res
))
4060 && TREE_CODE (sprime
) == SSA_NAME
)
4061 gimple_set_plf (SSA_NAME_DEF_STMT (sprime
), NECESSARY
, true);
4063 if (!useless_type_conversion_p (TREE_TYPE (res
), TREE_TYPE (sprime
)))
4064 sprime
= fold_convert (TREE_TYPE (res
), sprime
);
4065 stmt
= gimple_build_assign (res
, sprime
);
4066 SSA_NAME_DEF_STMT (res
) = stmt
;
4067 gimple_set_plf (stmt
, NECESSARY
, gimple_plf (phi
, NECESSARY
));
4069 gsi2
= gsi_after_labels (b
);
4070 gsi_insert_before (&gsi2
, stmt
, GSI_NEW_STMT
);
4071 /* Queue the copy for eventual removal. */
4072 el_to_remove
.safe_push (stmt
);
4073 /* If we inserted this PHI node ourself, it's not an elimination. */
4075 && bitmap_bit_p (inserted_exprs
, SSA_NAME_VERSION (res
)))
4078 pre_stats
.eliminations
++;
4081 for (gsi
= gsi_start_bb (b
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4083 tree lhs
= NULL_TREE
;
4084 tree rhs
= NULL_TREE
;
4086 stmt
= gsi_stmt (gsi
);
4088 if (gimple_has_lhs (stmt
))
4089 lhs
= gimple_get_lhs (stmt
);
4091 if (gimple_assign_single_p (stmt
))
4092 rhs
= gimple_assign_rhs1 (stmt
);
4094 /* Lookup the RHS of the expression, see if we have an
4095 available computation for it. If so, replace the RHS with
4096 the available computation.
4099 We don't replace global register variable when it is a the RHS of
4100 a single assign. We do replace local register variable since gcc
4101 does not guarantee local variable will be allocated in register. */
4102 if (gimple_has_lhs (stmt
)
4103 && TREE_CODE (lhs
) == SSA_NAME
4104 && !gimple_assign_ssa_name_copy_p (stmt
)
4105 && (!gimple_assign_single_p (stmt
)
4106 || (!is_gimple_min_invariant (rhs
)
4107 && (gimple_assign_rhs_code (stmt
) != VAR_DECL
4108 || !is_global_var (rhs
)
4109 || !DECL_HARD_REGISTER (rhs
))))
4110 && !gimple_has_volatile_ops (stmt
))
4113 gimple orig_stmt
= stmt
;
4115 sprime
= eliminate_avail (lhs
);
4118 /* If there is no existing usable leader but SCCVN thinks
4119 it has an expression it wants to use as replacement,
4121 tree val
= VN_INFO (lhs
)->valnum
;
4123 && TREE_CODE (val
) == SSA_NAME
4124 && VN_INFO (val
)->needs_insertion
4125 && (sprime
= eliminate_insert (&gsi
, val
)) != NULL_TREE
)
4126 eliminate_push_avail (sprime
);
4128 else if (is_gimple_min_invariant (sprime
))
4130 /* If there is no existing leader but SCCVN knows this
4131 value is constant, use that constant. */
4132 if (!useless_type_conversion_p (TREE_TYPE (lhs
),
4133 TREE_TYPE (sprime
)))
4134 sprime
= fold_convert (TREE_TYPE (lhs
), sprime
);
4136 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4138 fprintf (dump_file
, "Replaced ");
4139 print_gimple_expr (dump_file
, stmt
, 0, 0);
4140 fprintf (dump_file
, " with ");
4141 print_generic_expr (dump_file
, sprime
, 0);
4142 fprintf (dump_file
, " in ");
4143 print_gimple_stmt (dump_file
, stmt
, 0, 0);
4145 pre_stats
.eliminations
++;
4146 propagate_tree_value_into_stmt (&gsi
, sprime
);
4147 stmt
= gsi_stmt (gsi
);
4150 /* If we removed EH side-effects from the statement, clean
4151 its EH information. */
4152 if (maybe_clean_or_replace_eh_stmt (orig_stmt
, stmt
))
4154 bitmap_set_bit (need_eh_cleanup
,
4155 gimple_bb (stmt
)->index
);
4156 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4157 fprintf (dump_file
, " Removed EH side-effects.\n");
4162 /* If there is no usable leader mark lhs as leader for its value. */
4164 eliminate_push_avail (lhs
);
4168 && (rhs
== NULL_TREE
4169 || TREE_CODE (rhs
) != SSA_NAME
4170 || may_propagate_copy (rhs
, sprime
)))
4172 bool can_make_abnormal_goto
4173 = is_gimple_call (stmt
)
4174 && stmt_can_make_abnormal_goto (stmt
);
4176 gcc_assert (sprime
!= rhs
);
4178 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4180 fprintf (dump_file
, "Replaced ");
4181 print_gimple_expr (dump_file
, stmt
, 0, 0);
4182 fprintf (dump_file
, " with ");
4183 print_generic_expr (dump_file
, sprime
, 0);
4184 fprintf (dump_file
, " in ");
4185 print_gimple_stmt (dump_file
, stmt
, 0, 0);
4188 if (TREE_CODE (sprime
) == SSA_NAME
)
4189 gimple_set_plf (SSA_NAME_DEF_STMT (sprime
),
4191 /* We need to make sure the new and old types actually match,
4192 which may require adding a simple cast, which fold_convert
4194 if ((!rhs
|| TREE_CODE (rhs
) != SSA_NAME
)
4195 && !useless_type_conversion_p (gimple_expr_type (stmt
),
4196 TREE_TYPE (sprime
)))
4197 sprime
= fold_convert (gimple_expr_type (stmt
), sprime
);
4199 pre_stats
.eliminations
++;
4200 propagate_tree_value_into_stmt (&gsi
, sprime
);
4201 stmt
= gsi_stmt (gsi
);
4204 /* If we removed EH side-effects from the statement, clean
4205 its EH information. */
4206 if (maybe_clean_or_replace_eh_stmt (orig_stmt
, stmt
))
4208 bitmap_set_bit (need_eh_cleanup
,
4209 gimple_bb (stmt
)->index
);
4210 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4211 fprintf (dump_file
, " Removed EH side-effects.\n");
4214 /* Likewise for AB side-effects. */
4215 if (can_make_abnormal_goto
4216 && !stmt_can_make_abnormal_goto (stmt
))
4218 bitmap_set_bit (need_ab_cleanup
,
4219 gimple_bb (stmt
)->index
);
4220 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4221 fprintf (dump_file
, " Removed AB side-effects.\n");
4225 /* If the statement is a scalar store, see if the expression
4226 has the same value number as its rhs. If so, the store is
4228 else if (gimple_assign_single_p (stmt
)
4229 && !gimple_has_volatile_ops (stmt
)
4230 && !is_gimple_reg (gimple_assign_lhs (stmt
))
4231 && (TREE_CODE (rhs
) == SSA_NAME
4232 || is_gimple_min_invariant (rhs
)))
4235 val
= vn_reference_lookup (gimple_assign_lhs (stmt
),
4236 gimple_vuse (stmt
), VN_WALK
, NULL
);
4237 if (TREE_CODE (rhs
) == SSA_NAME
)
4238 rhs
= VN_INFO (rhs
)->valnum
;
4240 && operand_equal_p (val
, rhs
, 0))
4242 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4244 fprintf (dump_file
, "Deleted redundant store ");
4245 print_gimple_stmt (dump_file
, stmt
, 0, 0);
4248 /* Queue stmt for removal. */
4249 el_to_remove
.safe_push (stmt
);
4252 /* Visit COND_EXPRs and fold the comparison with the
4253 available value-numbers. */
4254 else if (gimple_code (stmt
) == GIMPLE_COND
)
4256 tree op0
= gimple_cond_lhs (stmt
);
4257 tree op1
= gimple_cond_rhs (stmt
);
4260 if (TREE_CODE (op0
) == SSA_NAME
)
4261 op0
= VN_INFO (op0
)->valnum
;
4262 if (TREE_CODE (op1
) == SSA_NAME
)
4263 op1
= VN_INFO (op1
)->valnum
;
4264 result
= fold_binary (gimple_cond_code (stmt
), boolean_type_node
,
4266 if (result
&& TREE_CODE (result
) == INTEGER_CST
)
4268 if (integer_zerop (result
))
4269 gimple_cond_make_false (stmt
);
4271 gimple_cond_make_true (stmt
);
4273 el_todo
= TODO_cleanup_cfg
;
4276 /* Visit indirect calls and turn them into direct calls if
4278 if (is_gimple_call (stmt
))
4280 tree orig_fn
= gimple_call_fn (stmt
);
4284 if (TREE_CODE (orig_fn
) == SSA_NAME
)
4285 fn
= VN_INFO (orig_fn
)->valnum
;
4286 else if (TREE_CODE (orig_fn
) == OBJ_TYPE_REF
4287 && TREE_CODE (OBJ_TYPE_REF_EXPR (orig_fn
)) == SSA_NAME
)
4288 fn
= VN_INFO (OBJ_TYPE_REF_EXPR (orig_fn
))->valnum
;
4291 if (gimple_call_addr_fndecl (fn
) != NULL_TREE
4292 && useless_type_conversion_p (TREE_TYPE (orig_fn
),
4295 bool can_make_abnormal_goto
4296 = stmt_can_make_abnormal_goto (stmt
);
4297 bool was_noreturn
= gimple_call_noreturn_p (stmt
);
4299 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4301 fprintf (dump_file
, "Replacing call target with ");
4302 print_generic_expr (dump_file
, fn
, 0);
4303 fprintf (dump_file
, " in ");
4304 print_gimple_stmt (dump_file
, stmt
, 0, 0);
4307 gimple_call_set_fn (stmt
, fn
);
4308 el_to_update
.safe_push (stmt
);
4310 /* When changing a call into a noreturn call, cfg cleanup
4311 is needed to fix up the noreturn call. */
4312 if (!was_noreturn
&& gimple_call_noreturn_p (stmt
))
4313 el_todo
|= TODO_cleanup_cfg
;
4315 /* If we removed EH side-effects from the statement, clean
4316 its EH information. */
4317 if (maybe_clean_or_replace_eh_stmt (stmt
, stmt
))
4319 bitmap_set_bit (need_eh_cleanup
,
4320 gimple_bb (stmt
)->index
);
4321 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4322 fprintf (dump_file
, " Removed EH side-effects.\n");
4325 /* Likewise for AB side-effects. */
4326 if (can_make_abnormal_goto
4327 && !stmt_can_make_abnormal_goto (stmt
))
4329 bitmap_set_bit (need_ab_cleanup
,
4330 gimple_bb (stmt
)->index
);
4331 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4332 fprintf (dump_file
, " Removed AB side-effects.\n");
4335 /* Changing an indirect call to a direct call may
4336 have exposed different semantics. This may
4337 require an SSA update. */
4338 el_todo
|= TODO_update_ssa_only_virtuals
;
4344 /* Make no longer available leaders no longer available. */
4347 eliminate_leave_block (dom_walk_data
*, basic_block
)
4350 while ((entry
= el_avail_stack
.pop ()) != NULL_TREE
)
4351 el_avail
[SSA_NAME_VERSION (VN_INFO (entry
)->valnum
)] = NULL_TREE
;
4354 /* Eliminate fully redundant computations. */
4359 struct dom_walk_data walk_data
;
4360 gimple_stmt_iterator gsi
;
4364 need_eh_cleanup
= BITMAP_ALLOC (NULL
);
4365 need_ab_cleanup
= BITMAP_ALLOC (NULL
);
4367 el_to_remove
.create (0);
4368 el_to_update
.create (0);
4370 el_avail
.create (0);
4371 el_avail_stack
.create (0);
4373 walk_data
.dom_direction
= CDI_DOMINATORS
;
4374 walk_data
.initialize_block_local_data
= NULL
;
4375 walk_data
.before_dom_children
= eliminate_bb
;
4376 walk_data
.after_dom_children
= eliminate_leave_block
;
4377 walk_data
.global_data
= NULL
;
4378 walk_data
.block_local_data_size
= 0;
4379 init_walk_dominator_tree (&walk_data
);
4380 walk_dominator_tree (&walk_data
, ENTRY_BLOCK_PTR
);
4381 fini_walk_dominator_tree (&walk_data
);
4383 el_avail
.release ();
4384 el_avail_stack
.release ();
4386 /* We cannot remove stmts during BB walk, especially not release SSA
4387 names there as this confuses the VN machinery. The stmts ending
4388 up in el_to_remove are either stores or simple copies. */
4389 FOR_EACH_VEC_ELT (el_to_remove
, i
, stmt
)
4391 tree lhs
= gimple_assign_lhs (stmt
);
4392 tree rhs
= gimple_assign_rhs1 (stmt
);
4393 use_operand_p use_p
;
4396 /* If there is a single use only, propagate the equivalency
4397 instead of keeping the copy. */
4398 if (TREE_CODE (lhs
) == SSA_NAME
4399 && TREE_CODE (rhs
) == SSA_NAME
4400 && single_imm_use (lhs
, &use_p
, &use_stmt
)
4401 && may_propagate_copy (USE_FROM_PTR (use_p
), rhs
))
4403 SET_USE (use_p
, rhs
);
4404 update_stmt (use_stmt
);
4406 && bitmap_bit_p (inserted_exprs
, SSA_NAME_VERSION (lhs
))
4407 && TREE_CODE (rhs
) == SSA_NAME
)
4408 gimple_set_plf (SSA_NAME_DEF_STMT (rhs
), NECESSARY
, true);
4411 /* If this is a store or a now unused copy, remove it. */
4412 if (TREE_CODE (lhs
) != SSA_NAME
4413 || has_zero_uses (lhs
))
4415 basic_block bb
= gimple_bb (stmt
);
4416 gsi
= gsi_for_stmt (stmt
);
4417 unlink_stmt_vdef (stmt
);
4418 if (gsi_remove (&gsi
, true))
4419 bitmap_set_bit (need_eh_cleanup
, bb
->index
);
4421 && TREE_CODE (lhs
) == SSA_NAME
)
4422 bitmap_clear_bit (inserted_exprs
, SSA_NAME_VERSION (lhs
));
4423 release_defs (stmt
);
4426 el_to_remove
.release ();
4428 /* We cannot update call statements with virtual operands during
4429 SSA walk. This might remove them which in turn makes our
4430 VN lattice invalid. */
4431 FOR_EACH_VEC_ELT (el_to_update
, i
, stmt
)
4433 el_to_update
.release ();
4438 /* Perform CFG cleanups made necessary by elimination. */
4441 fini_eliminate (void)
4443 bool do_eh_cleanup
= !bitmap_empty_p (need_eh_cleanup
);
4444 bool do_ab_cleanup
= !bitmap_empty_p (need_ab_cleanup
);
4447 gimple_purge_all_dead_eh_edges (need_eh_cleanup
);
4450 gimple_purge_all_dead_abnormal_call_edges (need_ab_cleanup
);
4452 BITMAP_FREE (need_eh_cleanup
);
4453 BITMAP_FREE (need_ab_cleanup
);
4455 if (do_eh_cleanup
|| do_ab_cleanup
)
4456 return TODO_cleanup_cfg
;
4460 /* Borrow a bit of tree-ssa-dce.c for the moment.
4461 XXX: In 4.1, we should be able to just run a DCE pass after PRE, though
4462 this may be a bit faster, and we may want critical edges kept split. */
4464 /* If OP's defining statement has not already been determined to be necessary,
4465 mark that statement necessary. Return the stmt, if it is newly
4468 static inline gimple
4469 mark_operand_necessary (tree op
)
4475 if (TREE_CODE (op
) != SSA_NAME
)
4478 stmt
= SSA_NAME_DEF_STMT (op
);
4481 if (gimple_plf (stmt
, NECESSARY
)
4482 || gimple_nop_p (stmt
))
4485 gimple_set_plf (stmt
, NECESSARY
, true);
4489 /* Because we don't follow exactly the standard PRE algorithm, and decide not
4490 to insert PHI nodes sometimes, and because value numbering of casts isn't
4491 perfect, we sometimes end up inserting dead code. This simple DCE-like
4492 pass removes any insertions we made that weren't actually used. */
4495 remove_dead_inserted_code (void)
4502 worklist
= BITMAP_ALLOC (NULL
);
4503 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs
, 0, i
, bi
)
4505 t
= SSA_NAME_DEF_STMT (ssa_name (i
));
4506 if (gimple_plf (t
, NECESSARY
))
4507 bitmap_set_bit (worklist
, i
);
4509 while (!bitmap_empty_p (worklist
))
4511 i
= bitmap_first_set_bit (worklist
);
4512 bitmap_clear_bit (worklist
, i
);
4513 t
= SSA_NAME_DEF_STMT (ssa_name (i
));
4515 /* PHI nodes are somewhat special in that each PHI alternative has
4516 data and control dependencies. All the statements feeding the
4517 PHI node's arguments are always necessary. */
4518 if (gimple_code (t
) == GIMPLE_PHI
)
4522 for (k
= 0; k
< gimple_phi_num_args (t
); k
++)
4524 tree arg
= PHI_ARG_DEF (t
, k
);
4525 if (TREE_CODE (arg
) == SSA_NAME
)
4527 gimple n
= mark_operand_necessary (arg
);
4529 bitmap_set_bit (worklist
, SSA_NAME_VERSION (arg
));
4535 /* Propagate through the operands. Examine all the USE, VUSE and
4536 VDEF operands in this statement. Mark all the statements
4537 which feed this statement's uses as necessary. */
4541 /* The operands of VDEF expressions are also needed as they
4542 represent potential definitions that may reach this
4543 statement (VDEF operands allow us to follow def-def
4546 FOR_EACH_SSA_TREE_OPERAND (use
, t
, iter
, SSA_OP_ALL_USES
)
4548 gimple n
= mark_operand_necessary (use
);
4550 bitmap_set_bit (worklist
, SSA_NAME_VERSION (use
));
4555 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs
, 0, i
, bi
)
4557 t
= SSA_NAME_DEF_STMT (ssa_name (i
));
4558 if (!gimple_plf (t
, NECESSARY
))
4560 gimple_stmt_iterator gsi
;
4562 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4564 fprintf (dump_file
, "Removing unnecessary insertion:");
4565 print_gimple_stmt (dump_file
, t
, 0, 0);
4568 gsi
= gsi_for_stmt (t
);
4569 if (gimple_code (t
) == GIMPLE_PHI
)
4570 remove_phi_node (&gsi
, true);
4573 gsi_remove (&gsi
, true);
4578 BITMAP_FREE (worklist
);
4582 /* Initialize data structures used by PRE. */
4589 next_expression_id
= 1;
4590 expressions
.create (0);
4591 expressions
.safe_push (NULL
);
4592 value_expressions
.create (get_max_value_id () + 1);
4593 value_expressions
.safe_grow_cleared (get_max_value_id() + 1);
4594 name_to_id
.create (0);
4596 inserted_exprs
= BITMAP_ALLOC (NULL
);
4598 connect_infinite_loops_to_exit ();
4599 memset (&pre_stats
, 0, sizeof (pre_stats
));
4601 postorder
= XNEWVEC (int, n_basic_blocks
);
4602 postorder_num
= inverted_post_order_compute (postorder
);
4604 alloc_aux_for_blocks (sizeof (struct bb_bitmap_sets
));
4606 calculate_dominance_info (CDI_POST_DOMINATORS
);
4607 calculate_dominance_info (CDI_DOMINATORS
);
4609 bitmap_obstack_initialize (&grand_bitmap_obstack
);
4610 phi_translate_table
.create (5110);
4611 expression_to_id
.create (num_ssa_names
* 3);
4612 bitmap_set_pool
= create_alloc_pool ("Bitmap sets",
4613 sizeof (struct bitmap_set
), 30);
4614 pre_expr_pool
= create_alloc_pool ("pre_expr nodes",
4615 sizeof (struct pre_expr_d
), 30);
4618 EXP_GEN (bb
) = bitmap_set_new ();
4619 PHI_GEN (bb
) = bitmap_set_new ();
4620 TMP_GEN (bb
) = bitmap_set_new ();
4621 AVAIL_OUT (bb
) = bitmap_set_new ();
4626 /* Deallocate data structures used by PRE. */
4632 value_expressions
.release ();
4633 BITMAP_FREE (inserted_exprs
);
4634 bitmap_obstack_release (&grand_bitmap_obstack
);
4635 free_alloc_pool (bitmap_set_pool
);
4636 free_alloc_pool (pre_expr_pool
);
4637 phi_translate_table
.dispose ();
4638 expression_to_id
.dispose ();
4639 name_to_id
.release ();
4641 free_aux_for_blocks ();
4643 free_dominance_info (CDI_POST_DOMINATORS
);
4646 /* Gate and execute functions for PRE. */
4651 unsigned int todo
= 0;
4653 do_partial_partial
=
4654 flag_tree_partial_pre
&& optimize_function_for_speed_p (cfun
);
4656 /* This has to happen before SCCVN runs because
4657 loop_optimizer_init may create new phis, etc. */
4658 loop_optimizer_init (LOOPS_NORMAL
);
4660 if (!run_scc_vn (VN_WALK
))
4662 loop_optimizer_finalize ();
4669 /* Collect and value number expressions computed in each basic block. */
4672 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4677 print_bitmap_set (dump_file
, EXP_GEN (bb
),
4678 "exp_gen", bb
->index
);
4679 print_bitmap_set (dump_file
, PHI_GEN (bb
),
4680 "phi_gen", bb
->index
);
4681 print_bitmap_set (dump_file
, TMP_GEN (bb
),
4682 "tmp_gen", bb
->index
);
4683 print_bitmap_set (dump_file
, AVAIL_OUT (bb
),
4684 "avail_out", bb
->index
);
4688 /* Insert can get quite slow on an incredibly large number of basic
4689 blocks due to some quadratic behavior. Until this behavior is
4690 fixed, don't run it when he have an incredibly large number of
4691 bb's. If we aren't going to run insert, there is no point in
4692 computing ANTIC, either, even though it's plenty fast. */
4693 if (n_basic_blocks
< 4000)
4699 /* Make sure to remove fake edges before committing our inserts.
4700 This makes sure we don't end up with extra critical edges that
4701 we would need to split. */
4702 remove_fake_exit_edges ();
4703 gsi_commit_edge_inserts ();
4705 /* Remove all the redundant expressions. */
4706 todo
|= eliminate ();
4708 statistics_counter_event (cfun
, "Insertions", pre_stats
.insertions
);
4709 statistics_counter_event (cfun
, "PA inserted", pre_stats
.pa_insert
);
4710 statistics_counter_event (cfun
, "New PHIs", pre_stats
.phis
);
4711 statistics_counter_event (cfun
, "Eliminated", pre_stats
.eliminations
);
4712 statistics_counter_event (cfun
, "Constified", pre_stats
.constified
);
4714 clear_expression_ids ();
4715 remove_dead_inserted_code ();
4716 todo
|= TODO_verify_flow
;
4720 todo
|= fini_eliminate ();
4721 loop_optimizer_finalize ();
4723 /* TODO: tail_merge_optimize may merge all predecessors of a block, in which
4724 case we can merge the block with the remaining predecessor of the block.
4726 - call merge_blocks after each tail merge iteration
4727 - call merge_blocks after all tail merge iterations
4728 - mark TODO_cleanup_cfg when necessary
4729 - share the cfg cleanup with fini_pre. */
4730 todo
|= tail_merge_optimize (todo
);
4734 /* Tail merging invalidates the virtual SSA web, together with
4735 cfg-cleanup opportunities exposed by PRE this will wreck the
4736 SSA updating machinery. So make sure to run update-ssa
4737 manually, before eventually scheduling cfg-cleanup as part of
4739 update_ssa (TODO_update_ssa_only_virtuals
);
4747 return flag_tree_pre
!= 0;
4750 struct gimple_opt_pass pass_pre
=
4755 OPTGROUP_NONE
, /* optinfo_flags */
4756 gate_pre
, /* gate */
4757 do_pre
, /* execute */
4760 0, /* static_pass_number */
4761 TV_TREE_PRE
, /* tv_id */
4762 PROP_no_crit_edges
| PROP_cfg
4763 | PROP_ssa
, /* properties_required */
4764 0, /* properties_provided */
4765 0, /* properties_destroyed */
4766 TODO_rebuild_alias
, /* todo_flags_start */
4767 TODO_ggc_collect
| TODO_verify_ssa
/* todo_flags_finish */
4772 /* Gate and execute functions for FRE. */
4777 unsigned int todo
= 0;
4779 if (!run_scc_vn (VN_WALKREWRITE
))
4782 memset (&pre_stats
, 0, sizeof (pre_stats
));
4784 /* Remove all the redundant expressions. */
4785 todo
|= eliminate ();
4787 todo
|= fini_eliminate ();
4791 statistics_counter_event (cfun
, "Insertions", pre_stats
.insertions
);
4792 statistics_counter_event (cfun
, "Eliminated", pre_stats
.eliminations
);
4793 statistics_counter_event (cfun
, "Constified", pre_stats
.constified
);
4801 return flag_tree_fre
!= 0;
4804 struct gimple_opt_pass pass_fre
=
4809 OPTGROUP_NONE
, /* optinfo_flags */
4810 gate_fre
, /* gate */
4811 execute_fre
, /* execute */
4814 0, /* static_pass_number */
4815 TV_TREE_FRE
, /* tv_id */
4816 PROP_cfg
| PROP_ssa
, /* properties_required */
4817 0, /* properties_provided */
4818 0, /* properties_destroyed */
4819 0, /* todo_flags_start */
4820 TODO_ggc_collect
| TODO_verify_ssa
/* todo_flags_finish */