2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
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"
29 #include "basic-block.h"
30 #include "diagnostic.h"
31 #include "tree-inline.h"
32 #include "tree-flow.h"
34 #include "tree-dump.h"
38 #include "tree-iterator.h"
40 #include "alloc-pool.h"
42 #include "tree-pass.h"
45 #include "langhooks.h"
47 #include "tree-ssa-sccvn.h"
53 1. Avail sets can be shared by making an avail_find_leader that
54 walks up the dominator tree and looks in those avail sets.
55 This might affect code optimality, it's unclear right now.
56 2. Strength reduction can be performed by anticipating expressions
57 we can repair later on.
58 3. We can do back-substitution or smarter value numbering to catch
59 commutative expressions split up over multiple statements.
62 /* For ease of terminology, "expression node" in the below refers to
63 every expression node but GIMPLE_ASSIGN, because GIMPLE_ASSIGNs
64 represent the actual statement containing the expressions we care about,
65 and we cache the value number by putting it in the expression. */
69 First we walk the statements to generate the AVAIL sets, the
70 EXP_GEN sets, and the tmp_gen sets. EXP_GEN sets represent the
71 generation of values/expressions by a given block. We use them
72 when computing the ANTIC sets. The AVAIL sets consist of
73 SSA_NAME's that represent values, so we know what values are
74 available in what blocks. AVAIL is a forward dataflow problem. In
75 SSA, values are never killed, so we don't need a kill set, or a
76 fixpoint iteration, in order to calculate the AVAIL sets. In
77 traditional parlance, AVAIL sets tell us the downsafety of the
80 Next, we generate the ANTIC sets. These sets represent the
81 anticipatable expressions. ANTIC is a backwards dataflow
82 problem. An expression is anticipatable in a given block if it could
83 be generated in that block. This means that if we had to perform
84 an insertion in that block, of the value of that expression, we
85 could. Calculating the ANTIC sets requires phi translation of
86 expressions, because the flow goes backwards through phis. We must
87 iterate to a fixpoint of the ANTIC sets, because we have a kill
88 set. Even in SSA form, values are not live over the entire
89 function, only from their definition point onwards. So we have to
90 remove values from the ANTIC set once we go past the definition
91 point of the leaders that make them up.
92 compute_antic/compute_antic_aux performs this computation.
94 Third, we perform insertions to make partially redundant
95 expressions fully redundant.
97 An expression is partially redundant (excluding partial
100 1. It is AVAIL in some, but not all, of the predecessors of a
102 2. It is ANTIC in all the predecessors.
104 In order to make it fully redundant, we insert the expression into
105 the predecessors where it is not available, but is ANTIC.
107 For the partial anticipation case, we only perform insertion if it
108 is partially anticipated in some block, and fully available in all
111 insert/insert_aux/do_regular_insertion/do_partial_partial_insertion
112 performs these steps.
114 Fourth, we eliminate fully redundant expressions.
115 This is a simple statement walk that replaces redundant
116 calculations with the now available values. */
118 /* Representations of value numbers:
120 Value numbers are represented by a representative SSA_NAME. We
121 will create fake SSA_NAME's in situations where we need a
122 representative but do not have one (because it is a complex
123 expression). In order to facilitate storing the value numbers in
124 bitmaps, and keep the number of wasted SSA_NAME's down, we also
125 associate a value_id with each value number, and create full blown
126 ssa_name's only where we actually need them (IE in operands of
127 existing expressions).
129 Theoretically you could replace all the value_id's with
130 SSA_NAME_VERSION, but this would allocate a large number of
131 SSA_NAME's (which are each > 30 bytes) just to get a 4 byte number.
132 It would also require an additional indirection at each point we
135 /* Representation of expressions on value numbers:
137 Expressions consisting of value numbers are represented the same
138 way as our VN internally represents them, with an additional
139 "pre_expr" wrapping around them in order to facilitate storing all
140 of the expressions in the same sets. */
142 /* Representation of sets:
144 The dataflow sets do not need to be sorted in any particular order
145 for the majority of their lifetime, are simply represented as two
146 bitmaps, one that keeps track of values present in the set, and one
147 that keeps track of expressions present in the set.
149 When we need them in topological order, we produce it on demand by
150 transforming the bitmap into an array and sorting it into topo
153 /* Type of expression, used to know which member of the PRE_EXPR union
164 typedef union pre_expr_union_d
169 vn_reference_t reference
;
172 typedef struct pre_expr_d
174 enum pre_expr_kind kind
;
179 #define PRE_EXPR_NAME(e) (e)->u.name
180 #define PRE_EXPR_NARY(e) (e)->u.nary
181 #define PRE_EXPR_REFERENCE(e) (e)->u.reference
182 #define PRE_EXPR_CONSTANT(e) (e)->u.constant
185 pre_expr_eq (const void *p1
, const void *p2
)
187 const struct pre_expr_d
*e1
= (const struct pre_expr_d
*) p1
;
188 const struct pre_expr_d
*e2
= (const struct pre_expr_d
*) p2
;
190 if (e1
->kind
!= e2
->kind
)
196 return vn_constant_eq_with_type (PRE_EXPR_CONSTANT (e1
),
197 PRE_EXPR_CONSTANT (e2
));
199 return PRE_EXPR_NAME (e1
) == PRE_EXPR_NAME (e2
);
201 return vn_nary_op_eq (PRE_EXPR_NARY (e1
), PRE_EXPR_NARY (e2
));
203 return vn_reference_eq (PRE_EXPR_REFERENCE (e1
),
204 PRE_EXPR_REFERENCE (e2
));
211 pre_expr_hash (const void *p1
)
213 const struct pre_expr_d
*e
= (const struct pre_expr_d
*) p1
;
217 return vn_hash_constant_with_type (PRE_EXPR_CONSTANT (e
));
219 return iterative_hash_expr (PRE_EXPR_NAME (e
), 0);
221 return vn_nary_op_compute_hash (PRE_EXPR_NARY (e
));
223 return vn_reference_compute_hash (PRE_EXPR_REFERENCE (e
));
230 /* Next global expression id number. */
231 static unsigned int next_expression_id
;
233 /* Mapping from expression to id number we can use in bitmap sets. */
234 DEF_VEC_P (pre_expr
);
235 DEF_VEC_ALLOC_P (pre_expr
, heap
);
236 static VEC(pre_expr
, heap
) *expressions
;
237 static htab_t expression_to_id
;
239 /* Allocate an expression id for EXPR. */
241 static inline unsigned int
242 alloc_expression_id (pre_expr expr
)
245 /* Make sure we won't overflow. */
246 gcc_assert (next_expression_id
+ 1 > next_expression_id
);
247 expr
->id
= next_expression_id
++;
248 VEC_safe_push (pre_expr
, heap
, expressions
, expr
);
249 slot
= htab_find_slot (expression_to_id
, expr
, INSERT
);
252 return next_expression_id
- 1;
255 /* Return the expression id for tree EXPR. */
257 static inline unsigned int
258 get_expression_id (const pre_expr expr
)
263 static inline unsigned int
264 lookup_expression_id (const pre_expr expr
)
268 slot
= htab_find_slot (expression_to_id
, expr
, NO_INSERT
);
271 return ((pre_expr
)*slot
)->id
;
274 /* Return the existing expression id for EXPR, or create one if one
275 does not exist yet. */
277 static inline unsigned int
278 get_or_alloc_expression_id (pre_expr expr
)
280 unsigned int id
= lookup_expression_id (expr
);
282 return alloc_expression_id (expr
);
283 return expr
->id
= id
;
286 /* Return the expression that has expression id ID */
288 static inline pre_expr
289 expression_for_id (unsigned int id
)
291 return VEC_index (pre_expr
, expressions
, id
);
294 /* Free the expression id field in all of our expressions,
295 and then destroy the expressions array. */
298 clear_expression_ids (void)
300 VEC_free (pre_expr
, heap
, expressions
);
303 static alloc_pool pre_expr_pool
;
305 /* Given an SSA_NAME NAME, get or create a pre_expr to represent it. */
308 get_or_alloc_expr_for_name (tree name
)
310 pre_expr result
= (pre_expr
) pool_alloc (pre_expr_pool
);
311 unsigned int result_id
;
315 PRE_EXPR_NAME (result
) = name
;
316 result_id
= lookup_expression_id (result
);
319 pool_free (pre_expr_pool
, result
);
320 result
= expression_for_id (result_id
);
323 get_or_alloc_expression_id (result
);
327 static bool in_fre
= false;
329 /* An unordered bitmap set. One bitmap tracks values, the other,
331 typedef struct bitmap_set
337 #define FOR_EACH_EXPR_ID_IN_SET(set, id, bi) \
338 EXECUTE_IF_SET_IN_BITMAP((set)->expressions, 0, (id), (bi))
340 /* Mapping from value id to expressions with that value_id. */
341 DEF_VEC_P (bitmap_set_t
);
342 DEF_VEC_ALLOC_P (bitmap_set_t
, heap
);
343 static VEC(bitmap_set_t
, heap
) *value_expressions
;
345 /* Sets that we need to keep track of. */
346 typedef struct bb_bitmap_sets
348 /* The EXP_GEN set, which represents expressions/values generated in
350 bitmap_set_t exp_gen
;
352 /* The PHI_GEN set, which represents PHI results generated in a
354 bitmap_set_t phi_gen
;
356 /* The TMP_GEN set, which represents results/temporaries generated
357 in a basic block. IE the LHS of an expression. */
358 bitmap_set_t tmp_gen
;
360 /* The AVAIL_OUT set, which represents which values are available in
361 a given basic block. */
362 bitmap_set_t avail_out
;
364 /* The ANTIC_IN set, which represents which values are anticipatable
365 in a given basic block. */
366 bitmap_set_t antic_in
;
368 /* The PA_IN set, which represents which values are
369 partially anticipatable in a given basic block. */
372 /* The NEW_SETS set, which is used during insertion to augment the
373 AVAIL_OUT set of blocks with the new insertions performed during
374 the current iteration. */
375 bitmap_set_t new_sets
;
377 /* True if we have visited this block during ANTIC calculation. */
378 unsigned int visited
:1;
380 /* True we have deferred processing this block during ANTIC
381 calculation until its successor is processed. */
382 unsigned int deferred
: 1;
385 #define EXP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->exp_gen
386 #define PHI_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->phi_gen
387 #define TMP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->tmp_gen
388 #define AVAIL_OUT(BB) ((bb_value_sets_t) ((BB)->aux))->avail_out
389 #define ANTIC_IN(BB) ((bb_value_sets_t) ((BB)->aux))->antic_in
390 #define PA_IN(BB) ((bb_value_sets_t) ((BB)->aux))->pa_in
391 #define NEW_SETS(BB) ((bb_value_sets_t) ((BB)->aux))->new_sets
392 #define BB_VISITED(BB) ((bb_value_sets_t) ((BB)->aux))->visited
393 #define BB_DEFERRED(BB) ((bb_value_sets_t) ((BB)->aux))->deferred
396 /* Maximal set of values, used to initialize the ANTIC problem, which
397 is an intersection problem. */
398 static bitmap_set_t maximal_set
;
400 /* Basic block list in postorder. */
401 static int *postorder
;
403 /* This structure is used to keep track of statistics on what
404 optimization PRE was able to perform. */
407 /* The number of RHS computations eliminated by PRE. */
410 /* The number of new expressions/temporaries generated by PRE. */
413 /* The number of inserts found due to partial anticipation */
416 /* The number of new PHI nodes added by PRE. */
419 /* The number of values found constant. */
424 static bool do_partial_partial
;
425 static pre_expr
bitmap_find_leader (bitmap_set_t
, unsigned int, gimple
);
426 static void bitmap_value_insert_into_set (bitmap_set_t
, pre_expr
);
427 static void bitmap_value_replace_in_set (bitmap_set_t
, pre_expr
);
428 static void bitmap_set_copy (bitmap_set_t
, bitmap_set_t
);
429 static bool bitmap_set_contains_value (bitmap_set_t
, unsigned int);
430 static void bitmap_insert_into_set (bitmap_set_t
, pre_expr
);
431 static void bitmap_insert_into_set_1 (bitmap_set_t
, pre_expr
, bool);
432 static bitmap_set_t
bitmap_set_new (void);
433 static tree
create_expression_by_pieces (basic_block
, pre_expr
, gimple_seq
*,
435 static tree
find_or_generate_expression (basic_block
, pre_expr
, gimple_seq
*,
438 /* We can add and remove elements and entries to and from sets
439 and hash tables, so we use alloc pools for them. */
441 static alloc_pool bitmap_set_pool
;
442 static bitmap_obstack grand_bitmap_obstack
;
444 /* To avoid adding 300 temporary variables when we only need one, we
445 only create one temporary variable, on demand, and build ssa names
446 off that. We do have to change the variable if the types don't
447 match the current variable's type. */
449 static tree storetemp
;
450 static tree prephitemp
;
452 /* Set of blocks with statements that have had its EH information
454 static bitmap need_eh_cleanup
;
456 /* Which expressions have been seen during a given phi translation. */
457 static bitmap seen_during_translate
;
459 /* The phi_translate_table caches phi translations for a given
460 expression and predecessor. */
462 static htab_t phi_translate_table
;
464 /* A three tuple {e, pred, v} used to cache phi translations in the
465 phi_translate_table. */
467 typedef struct expr_pred_trans_d
469 /* The expression. */
472 /* The predecessor block along which we translated the expression. */
475 /* The value that resulted from the translation. */
478 /* The hashcode for the expression, pred pair. This is cached for
481 } *expr_pred_trans_t
;
482 typedef const struct expr_pred_trans_d
*const_expr_pred_trans_t
;
484 /* Return the hash value for a phi translation table entry. */
487 expr_pred_trans_hash (const void *p
)
489 const_expr_pred_trans_t
const ve
= (const_expr_pred_trans_t
) p
;
493 /* Return true if two phi translation table entries are the same.
494 P1 and P2 should point to the expr_pred_trans_t's to be compared.*/
497 expr_pred_trans_eq (const void *p1
, const void *p2
)
499 const_expr_pred_trans_t
const ve1
= (const_expr_pred_trans_t
) p1
;
500 const_expr_pred_trans_t
const ve2
= (const_expr_pred_trans_t
) p2
;
501 basic_block b1
= ve1
->pred
;
502 basic_block b2
= ve2
->pred
;
504 /* If they are not translations for the same basic block, they can't
508 return pre_expr_eq (ve1
->e
, ve2
->e
);
511 /* Search in the phi translation table for the translation of
512 expression E in basic block PRED.
513 Return the translated value, if found, NULL otherwise. */
515 static inline pre_expr
516 phi_trans_lookup (pre_expr e
, basic_block pred
)
519 struct expr_pred_trans_d ept
;
523 ept
.hashcode
= iterative_hash_hashval_t (pre_expr_hash (e
), pred
->index
);
524 slot
= htab_find_slot_with_hash (phi_translate_table
, &ept
, ept
.hashcode
,
529 return ((expr_pred_trans_t
) *slot
)->v
;
533 /* Add the tuple mapping from {expression E, basic block PRED} to
534 value V, to the phi translation table. */
537 phi_trans_add (pre_expr e
, pre_expr v
, basic_block pred
)
540 expr_pred_trans_t new_pair
= XNEW (struct expr_pred_trans_d
);
542 new_pair
->pred
= pred
;
544 new_pair
->hashcode
= iterative_hash_hashval_t (pre_expr_hash (e
),
547 slot
= htab_find_slot_with_hash (phi_translate_table
, new_pair
,
548 new_pair
->hashcode
, INSERT
);
551 *slot
= (void *) new_pair
;
555 /* Add expression E to the expression set of value id V. */
558 add_to_value (unsigned int v
, pre_expr e
)
562 if (v
>= VEC_length (bitmap_set_t
, value_expressions
))
564 VEC_safe_grow_cleared (bitmap_set_t
, heap
, value_expressions
,
568 set
= VEC_index (bitmap_set_t
, value_expressions
, v
);
571 set
= bitmap_set_new ();
572 VEC_replace (bitmap_set_t
, value_expressions
, v
, set
);
575 bitmap_insert_into_set_1 (set
, e
, true);
578 /* Create a new bitmap set and return it. */
581 bitmap_set_new (void)
583 bitmap_set_t ret
= (bitmap_set_t
) pool_alloc (bitmap_set_pool
);
584 ret
->expressions
= BITMAP_ALLOC (&grand_bitmap_obstack
);
585 ret
->values
= BITMAP_ALLOC (&grand_bitmap_obstack
);
589 /* Return the value id for a PRE expression EXPR. */
592 get_expr_value_id (pre_expr expr
)
599 id
= get_constant_value_id (PRE_EXPR_CONSTANT (expr
));
602 id
= get_or_alloc_constant_value_id (PRE_EXPR_CONSTANT (expr
));
603 add_to_value (id
, expr
);
608 return VN_INFO (PRE_EXPR_NAME (expr
))->value_id
;
610 return PRE_EXPR_NARY (expr
)->value_id
;
612 return PRE_EXPR_REFERENCE (expr
)->value_id
;
618 /* Remove an expression EXPR from a bitmapped set. */
621 bitmap_remove_from_set (bitmap_set_t set
, pre_expr expr
)
623 unsigned int val
= get_expr_value_id (expr
);
624 if (!value_id_constant_p (val
))
626 bitmap_clear_bit (set
->values
, val
);
627 bitmap_clear_bit (set
->expressions
, get_expression_id (expr
));
632 bitmap_insert_into_set_1 (bitmap_set_t set
, pre_expr expr
,
633 bool allow_constants
)
635 unsigned int val
= get_expr_value_id (expr
);
636 if (allow_constants
|| !value_id_constant_p (val
))
638 /* We specifically expect this and only this function to be able to
639 insert constants into a set. */
640 bitmap_set_bit (set
->values
, val
);
641 bitmap_set_bit (set
->expressions
, get_or_alloc_expression_id (expr
));
645 /* Insert an expression EXPR into a bitmapped set. */
648 bitmap_insert_into_set (bitmap_set_t set
, pre_expr expr
)
650 bitmap_insert_into_set_1 (set
, expr
, false);
653 /* Copy a bitmapped set ORIG, into bitmapped set DEST. */
656 bitmap_set_copy (bitmap_set_t dest
, bitmap_set_t orig
)
658 bitmap_copy (dest
->expressions
, orig
->expressions
);
659 bitmap_copy (dest
->values
, orig
->values
);
663 /* Free memory used up by SET. */
665 bitmap_set_free (bitmap_set_t set
)
667 BITMAP_FREE (set
->expressions
);
668 BITMAP_FREE (set
->values
);
672 /* A comparison function for use in qsort to top sort a bitmap set. Simply
673 subtracts value ids, since they are created with leaves before
674 their parent users (IE topological order). */
677 value_id_compare (const void *pa
, const void *pb
)
679 const unsigned int vha
= get_expr_value_id (*((const pre_expr
*)pa
));
680 const unsigned int vhb
= get_expr_value_id (*((const pre_expr
*)pb
));
685 /* Generate an topological-ordered array of bitmap set SET. */
687 static VEC(pre_expr
, heap
) *
688 sorted_array_from_bitmap_set (bitmap_set_t set
)
692 VEC(pre_expr
, heap
) *result
= NULL
;
694 FOR_EACH_EXPR_ID_IN_SET (set
, i
, bi
)
695 VEC_safe_push (pre_expr
, heap
, result
, expression_for_id (i
));
697 qsort (VEC_address (pre_expr
, result
), VEC_length (pre_expr
, result
),
698 sizeof (pre_expr
), value_id_compare
);
703 /* Perform bitmapped set operation DEST &= ORIG. */
706 bitmap_set_and (bitmap_set_t dest
, bitmap_set_t orig
)
713 bitmap temp
= BITMAP_ALLOC (&grand_bitmap_obstack
);
715 bitmap_and_into (dest
->values
, orig
->values
);
716 bitmap_copy (temp
, dest
->expressions
);
717 EXECUTE_IF_SET_IN_BITMAP (temp
, 0, i
, bi
)
719 pre_expr expr
= expression_for_id (i
);
720 unsigned int value_id
= get_expr_value_id (expr
);
721 if (!bitmap_bit_p (dest
->values
, value_id
))
722 bitmap_clear_bit (dest
->expressions
, i
);
728 /* Subtract all values and expressions contained in ORIG from DEST. */
731 bitmap_set_subtract (bitmap_set_t dest
, bitmap_set_t orig
)
733 bitmap_set_t result
= bitmap_set_new ();
737 bitmap_and_compl (result
->expressions
, dest
->expressions
,
740 FOR_EACH_EXPR_ID_IN_SET (result
, i
, bi
)
742 pre_expr expr
= expression_for_id (i
);
743 unsigned int value_id
= get_expr_value_id (expr
);
744 bitmap_set_bit (result
->values
, value_id
);
750 /* Subtract all the values in bitmap set B from bitmap set A. */
753 bitmap_set_subtract_values (bitmap_set_t a
, bitmap_set_t b
)
757 bitmap temp
= BITMAP_ALLOC (&grand_bitmap_obstack
);
759 bitmap_copy (temp
, a
->expressions
);
760 EXECUTE_IF_SET_IN_BITMAP (temp
, 0, i
, bi
)
762 pre_expr expr
= expression_for_id (i
);
763 if (bitmap_set_contains_value (b
, get_expr_value_id (expr
)))
764 bitmap_remove_from_set (a
, expr
);
770 /* Return true if bitmapped set SET contains the value VALUE_ID. */
773 bitmap_set_contains_value (bitmap_set_t set
, unsigned int value_id
)
775 if (value_id_constant_p (value_id
))
778 if (!set
|| bitmap_empty_p (set
->expressions
))
781 return bitmap_bit_p (set
->values
, value_id
);
785 bitmap_set_contains_expr (bitmap_set_t set
, const pre_expr expr
)
787 return bitmap_bit_p (set
->expressions
, get_expression_id (expr
));
790 /* Replace an instance of value LOOKFOR with expression EXPR in SET. */
793 bitmap_set_replace_value (bitmap_set_t set
, unsigned int lookfor
,
796 bitmap_set_t exprset
;
800 if (value_id_constant_p (lookfor
))
803 if (!bitmap_set_contains_value (set
, lookfor
))
806 /* The number of expressions having a given value is usually
807 significantly less than the total number of expressions in SET.
808 Thus, rather than check, for each expression in SET, whether it
809 has the value LOOKFOR, we walk the reverse mapping that tells us
810 what expressions have a given value, and see if any of those
811 expressions are in our set. For large testcases, this is about
812 5-10x faster than walking the bitmap. If this is somehow a
813 significant lose for some cases, we can choose which set to walk
814 based on the set size. */
815 exprset
= VEC_index (bitmap_set_t
, value_expressions
, lookfor
);
816 FOR_EACH_EXPR_ID_IN_SET (exprset
, i
, bi
)
818 if (bitmap_bit_p (set
->expressions
, i
))
820 bitmap_clear_bit (set
->expressions
, i
);
821 bitmap_set_bit (set
->expressions
, get_expression_id (expr
));
827 /* Return true if two bitmap sets are equal. */
830 bitmap_set_equal (bitmap_set_t a
, bitmap_set_t b
)
832 return bitmap_equal_p (a
->values
, b
->values
);
835 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
836 and add it otherwise. */
839 bitmap_value_replace_in_set (bitmap_set_t set
, pre_expr expr
)
841 unsigned int val
= get_expr_value_id (expr
);
843 if (bitmap_set_contains_value (set
, val
))
844 bitmap_set_replace_value (set
, val
, expr
);
846 bitmap_insert_into_set (set
, expr
);
849 /* Insert EXPR into SET if EXPR's value is not already present in
853 bitmap_value_insert_into_set (bitmap_set_t set
, pre_expr expr
)
855 unsigned int val
= get_expr_value_id (expr
);
857 if (value_id_constant_p (val
))
860 if (!bitmap_set_contains_value (set
, val
))
861 bitmap_insert_into_set (set
, expr
);
864 /* Print out EXPR to outfile. */
867 print_pre_expr (FILE *outfile
, const pre_expr expr
)
872 print_generic_expr (outfile
, PRE_EXPR_CONSTANT (expr
), 0);
875 print_generic_expr (outfile
, PRE_EXPR_NAME (expr
), 0);
880 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
881 fprintf (outfile
, "{%s,", tree_code_name
[nary
->opcode
]);
882 for (i
= 0; i
< nary
->length
; i
++)
884 print_generic_expr (outfile
, nary
->op
[i
], 0);
885 if (i
!= (unsigned) nary
->length
- 1)
886 fprintf (outfile
, ",");
888 fprintf (outfile
, "}");
894 vn_reference_op_t vro
;
896 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
897 fprintf (outfile
, "{");
899 VEC_iterate (vn_reference_op_s
, ref
->operands
, i
, vro
);
902 if (vro
->opcode
!= SSA_NAME
903 && TREE_CODE_CLASS (vro
->opcode
) != tcc_declaration
)
904 fprintf (outfile
, "%s ", tree_code_name
[vro
->opcode
]);
908 fprintf (outfile
, "<");
909 print_generic_expr (outfile
, vro
->op0
, 0);
912 fprintf (outfile
, ",");
913 print_generic_expr (outfile
, vro
->op1
, 0);
916 fprintf (outfile
, ">");
918 if (i
!= VEC_length (vn_reference_op_s
, ref
->operands
) - 1)
919 fprintf (outfile
, ",");
921 fprintf (outfile
, "}");
926 void debug_pre_expr (pre_expr
);
928 /* Like print_pre_expr but always prints to stderr. */
930 debug_pre_expr (pre_expr e
)
932 print_pre_expr (stderr
, e
);
933 fprintf (stderr
, "\n");
936 /* Print out SET to OUTFILE. */
939 print_bitmap_set (FILE *outfile
, bitmap_set_t set
,
940 const char *setname
, int blockindex
)
942 fprintf (outfile
, "%s[%d] := { ", setname
, blockindex
);
949 FOR_EACH_EXPR_ID_IN_SET (set
, i
, bi
)
951 const pre_expr expr
= expression_for_id (i
);
954 fprintf (outfile
, ", ");
956 print_pre_expr (outfile
, expr
);
958 fprintf (outfile
, " (%04d)", get_expr_value_id (expr
));
961 fprintf (outfile
, " }\n");
964 void debug_bitmap_set (bitmap_set_t
);
967 debug_bitmap_set (bitmap_set_t set
)
969 print_bitmap_set (stderr
, set
, "debug", 0);
972 /* Print out the expressions that have VAL to OUTFILE. */
975 print_value_expressions (FILE *outfile
, unsigned int val
)
977 bitmap_set_t set
= VEC_index (bitmap_set_t
, value_expressions
, val
);
981 sprintf (s
, "%04d", val
);
982 print_bitmap_set (outfile
, set
, s
, 0);
988 debug_value_expressions (unsigned int val
)
990 print_value_expressions (stderr
, val
);
993 /* Given a CONSTANT, allocate a new CONSTANT type PRE_EXPR to
997 get_or_alloc_expr_for_constant (tree constant
)
999 unsigned int result_id
;
1000 unsigned int value_id
;
1001 pre_expr newexpr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1002 newexpr
->kind
= CONSTANT
;
1003 PRE_EXPR_CONSTANT (newexpr
) = constant
;
1004 result_id
= lookup_expression_id (newexpr
);
1007 pool_free (pre_expr_pool
, newexpr
);
1008 newexpr
= expression_for_id (result_id
);
1011 value_id
= get_or_alloc_constant_value_id (constant
);
1012 get_or_alloc_expression_id (newexpr
);
1013 add_to_value (value_id
, newexpr
);
1017 /* Given a value id V, find the actual tree representing the constant
1018 value if there is one, and return it. Return NULL if we can't find
1022 get_constant_for_value_id (unsigned int v
)
1024 if (value_id_constant_p (v
))
1028 bitmap_set_t exprset
= VEC_index (bitmap_set_t
, value_expressions
, v
);
1030 FOR_EACH_EXPR_ID_IN_SET (exprset
, i
, bi
)
1032 pre_expr expr
= expression_for_id (i
);
1033 if (expr
->kind
== CONSTANT
)
1034 return PRE_EXPR_CONSTANT (expr
);
1040 /* Get or allocate a pre_expr for a piece of GIMPLE, and return it.
1041 Currently only supports constants and SSA_NAMES. */
1043 get_or_alloc_expr_for (tree t
)
1045 if (TREE_CODE (t
) == SSA_NAME
)
1046 return get_or_alloc_expr_for_name (t
);
1047 else if (is_gimple_min_invariant (t
))
1048 return get_or_alloc_expr_for_constant (t
);
1051 /* More complex expressions can result from SCCVN expression
1052 simplification that inserts values for them. As they all
1053 do not have VOPs the get handled by the nary ops struct. */
1054 vn_nary_op_t result
;
1055 unsigned int result_id
;
1056 vn_nary_op_lookup (t
, &result
);
1059 pre_expr e
= (pre_expr
) pool_alloc (pre_expr_pool
);
1061 PRE_EXPR_NARY (e
) = result
;
1062 result_id
= lookup_expression_id (e
);
1065 pool_free (pre_expr_pool
, e
);
1066 e
= expression_for_id (result_id
);
1069 alloc_expression_id (e
);
1076 /* Return the folded version of T if T, when folded, is a gimple
1077 min_invariant. Otherwise, return T. */
1080 fully_constant_expression (pre_expr e
)
1088 vn_nary_op_t nary
= PRE_EXPR_NARY (e
);
1089 switch (TREE_CODE_CLASS (nary
->opcode
))
1093 /* We have to go from trees to pre exprs to value ids to
1095 tree naryop0
= nary
->op
[0];
1096 tree naryop1
= nary
->op
[1];
1097 tree const0
, const1
, result
;
1098 if (is_gimple_min_invariant (naryop0
))
1102 pre_expr rep0
= get_or_alloc_expr_for (naryop0
);
1103 unsigned int vrep0
= get_expr_value_id (rep0
);
1104 const0
= get_constant_for_value_id (vrep0
);
1106 if (is_gimple_min_invariant (naryop1
))
1110 pre_expr rep1
= get_or_alloc_expr_for (naryop1
);
1111 unsigned int vrep1
= get_expr_value_id (rep1
);
1112 const1
= get_constant_for_value_id (vrep1
);
1115 if (const0
&& const1
)
1117 tree type1
= TREE_TYPE (nary
->op
[0]);
1118 tree type2
= TREE_TYPE (nary
->op
[1]);
1119 const0
= fold_convert (type1
, const0
);
1120 const1
= fold_convert (type2
, const1
);
1121 result
= fold_binary (nary
->opcode
, nary
->type
, const0
,
1124 if (result
&& is_gimple_min_invariant (result
))
1125 return get_or_alloc_expr_for_constant (result
);
1130 /* We have to go from trees to pre exprs to value ids to
1132 tree naryop0
= nary
->op
[0];
1133 tree const0
, result
;
1134 if (is_gimple_min_invariant (naryop0
))
1138 pre_expr rep0
= get_or_alloc_expr_for (naryop0
);
1139 unsigned int vrep0
= get_expr_value_id (rep0
);
1140 const0
= get_constant_for_value_id (vrep0
);
1145 tree type1
= TREE_TYPE (nary
->op
[0]);
1146 const0
= fold_convert (type1
, const0
);
1147 result
= fold_unary (nary
->opcode
, nary
->type
, const0
);
1150 if (result
&& is_gimple_min_invariant (result
))
1151 return get_or_alloc_expr_for_constant (result
);
1160 vn_reference_t ref
= PRE_EXPR_REFERENCE (e
);
1161 VEC (vn_reference_op_s
, heap
) *operands
= ref
->operands
;
1162 vn_reference_op_t op
;
1164 /* Try to simplify the translated expression if it is
1165 a call to a builtin function with at most two arguments. */
1166 op
= VEC_index (vn_reference_op_s
, operands
, 0);
1167 if (op
->opcode
== CALL_EXPR
1168 && TREE_CODE (op
->op0
) == ADDR_EXPR
1169 && TREE_CODE (TREE_OPERAND (op
->op0
, 0)) == FUNCTION_DECL
1170 && DECL_BUILT_IN (TREE_OPERAND (op
->op0
, 0))
1171 && VEC_length (vn_reference_op_s
, operands
) >= 2
1172 && VEC_length (vn_reference_op_s
, operands
) <= 3)
1174 vn_reference_op_t arg0
, arg1
= NULL
;
1175 bool anyconst
= false;
1176 arg0
= VEC_index (vn_reference_op_s
, operands
, 1);
1177 if (VEC_length (vn_reference_op_s
, operands
) > 2)
1178 arg1
= VEC_index (vn_reference_op_s
, operands
, 2);
1179 if (TREE_CODE_CLASS (arg0
->opcode
) == tcc_constant
1180 || (arg0
->opcode
== ADDR_EXPR
1181 && is_gimple_min_invariant (arg0
->op0
)))
1184 && (TREE_CODE_CLASS (arg1
->opcode
) == tcc_constant
1185 || (arg1
->opcode
== ADDR_EXPR
1186 && is_gimple_min_invariant (arg1
->op0
))))
1190 tree folded
= build_call_expr (TREE_OPERAND (op
->op0
, 0),
1193 arg1
? arg1
->op0
: NULL
);
1195 && TREE_CODE (folded
) == NOP_EXPR
)
1196 folded
= TREE_OPERAND (folded
, 0);
1198 && is_gimple_min_invariant (folded
))
1199 return get_or_alloc_expr_for_constant (folded
);
1210 /* Translate the vuses in the VUSES vector backwards through phi nodes
1211 in PHIBLOCK, so that they have the value they would have in
1214 static VEC(tree
, gc
) *
1215 translate_vuses_through_block (VEC (tree
, gc
) *vuses
,
1216 basic_block phiblock
,
1220 VEC(tree
, gc
) *result
= NULL
;
1223 for (i
= 0; VEC_iterate (tree
, vuses
, i
, oldvuse
); i
++)
1225 gimple phi
= SSA_NAME_DEF_STMT (oldvuse
);
1226 if (gimple_code (phi
) == GIMPLE_PHI
1227 && gimple_bb (phi
) == phiblock
)
1229 edge e
= find_edge (block
, gimple_bb (phi
));
1232 tree def
= PHI_ARG_DEF (phi
, e
->dest_idx
);
1236 result
= VEC_copy (tree
, gc
, vuses
);
1237 VEC_replace (tree
, result
, i
, def
);
1243 /* We avoid creating a new copy of the vuses unless something
1244 actually changed, so result can be NULL. */
1247 sort_vuses (result
);
1254 /* Like find_leader, but checks for the value existing in SET1 *or*
1255 SET2. This is used to avoid making a set consisting of the union
1256 of PA_IN and ANTIC_IN during insert. */
1258 static inline pre_expr
1259 find_leader_in_sets (unsigned int val
, bitmap_set_t set1
, bitmap_set_t set2
)
1263 result
= bitmap_find_leader (set1
, val
, NULL
);
1264 if (!result
&& set2
)
1265 result
= bitmap_find_leader (set2
, val
, NULL
);
1269 /* Get the tree type for our PRE expression e. */
1272 get_expr_type (const pre_expr e
)
1277 return TREE_TYPE (PRE_EXPR_NAME (e
));
1279 return TREE_TYPE (PRE_EXPR_CONSTANT (e
));
1282 vn_reference_op_t vro
;
1284 gcc_assert (PRE_EXPR_REFERENCE (e
)->operands
);
1285 vro
= VEC_index (vn_reference_op_s
,
1286 PRE_EXPR_REFERENCE (e
)->operands
,
1288 /* We don't store type along with COMPONENT_REF because it is
1289 always the same as FIELD_DECL's type. */
1292 gcc_assert (vro
->opcode
== COMPONENT_REF
);
1293 return TREE_TYPE (vro
->op0
);
1299 return PRE_EXPR_NARY (e
)->type
;
1304 /* Get a representative SSA_NAME for a given expression.
1305 Since all of our sub-expressions are treated as values, we require
1306 them to be SSA_NAME's for simplicity.
1307 Prior versions of GVNPRE used to use "value handles" here, so that
1308 an expression would be VH.11 + VH.10 instead of d_3 + e_6. In
1309 either case, the operands are really values (IE we do not expect
1310 them to be usable without finding leaders). */
1313 get_representative_for (const pre_expr e
)
1317 unsigned int value_id
= get_expr_value_id (e
);
1322 return PRE_EXPR_NAME (e
);
1324 return PRE_EXPR_CONSTANT (e
);
1328 /* Go through all of the expressions representing this value
1329 and pick out an SSA_NAME. */
1332 bitmap_set_t exprs
= VEC_index (bitmap_set_t
, value_expressions
,
1334 FOR_EACH_EXPR_ID_IN_SET (exprs
, i
, bi
)
1336 pre_expr rep
= expression_for_id (i
);
1337 if (rep
->kind
== NAME
)
1338 return PRE_EXPR_NAME (rep
);
1343 /* If we reached here we couldn't find an SSA_NAME. This can
1344 happen when we've discovered a value that has never appeared in
1345 the program as set to an SSA_NAME, most likely as the result of
1350 "Could not find SSA_NAME representative for expression:");
1351 print_pre_expr (dump_file
, e
);
1352 fprintf (dump_file
, "\n");
1355 exprtype
= get_expr_type (e
);
1357 /* Build and insert the assignment of the end result to the temporary
1358 that we will return. */
1359 if (!pretemp
|| exprtype
!= TREE_TYPE (pretemp
))
1361 pretemp
= create_tmp_var (exprtype
, "pretmp");
1362 get_var_ann (pretemp
);
1365 name
= make_ssa_name (pretemp
, gimple_build_nop ());
1366 VN_INFO_GET (name
)->value_id
= value_id
;
1367 if (e
->kind
== CONSTANT
)
1368 VN_INFO (name
)->valnum
= PRE_EXPR_CONSTANT (e
);
1370 VN_INFO (name
)->valnum
= name
;
1372 add_to_value (value_id
, get_or_alloc_expr_for_name (name
));
1375 fprintf (dump_file
, "Created SSA_NAME representative ");
1376 print_generic_expr (dump_file
, name
, 0);
1377 fprintf (dump_file
, " for expression:");
1378 print_pre_expr (dump_file
, e
);
1379 fprintf (dump_file
, "\n");
1388 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1389 the phis in PRED. SEEN is a bitmap saying which expression we have
1390 translated since we started translation of the toplevel expression.
1391 Return NULL if we can't find a leader for each part of the
1392 translated expression. */
1395 phi_translate_1 (pre_expr expr
, bitmap_set_t set1
, bitmap_set_t set2
,
1396 basic_block pred
, basic_block phiblock
, bitmap seen
)
1398 pre_expr oldexpr
= expr
;
1404 if (value_id_constant_p (get_expr_value_id (expr
)))
1407 phitrans
= phi_trans_lookup (expr
, pred
);
1411 /* Prevent cycles when we have recursively dependent leaders. This
1412 can only happen when phi translating the maximal set. */
1415 unsigned int expr_id
= get_expression_id (expr
);
1416 if (bitmap_bit_p (seen
, expr_id
))
1418 bitmap_set_bit (seen
, expr_id
);
1423 /* Constants contain no values that need translation. */
1430 bool changed
= false;
1431 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
1432 struct vn_nary_op_s newnary
;
1433 /* The NARY structure is only guaranteed to have been
1434 allocated to the nary->length operands. */
1435 memcpy (&newnary
, nary
, (sizeof (struct vn_nary_op_s
)
1436 - sizeof (tree
) * (4 - nary
->length
)));
1438 for (i
= 0; i
< newnary
.length
; i
++)
1440 if (TREE_CODE (newnary
.op
[i
]) != SSA_NAME
)
1444 unsigned int op_val_id
= VN_INFO (newnary
.op
[i
])->value_id
;
1445 pre_expr leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1446 pre_expr result
= phi_translate_1 (leader
, set1
, set2
,
1447 pred
, phiblock
, seen
);
1448 if (result
&& result
!= leader
)
1450 tree name
= get_representative_for (result
);
1453 newnary
.op
[i
] = name
;
1458 changed
|= newnary
.op
[i
] != nary
->op
[i
];
1465 tree result
= vn_nary_op_lookup_pieces (newnary
.length
,
1473 unsigned int new_val_id
;
1475 expr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1478 if (result
&& is_gimple_min_invariant (result
))
1479 return get_or_alloc_expr_for_constant (result
);
1484 PRE_EXPR_NARY (expr
) = nary
;
1485 constant
= fully_constant_expression (expr
);
1486 if (constant
!= expr
)
1489 new_val_id
= nary
->value_id
;
1490 get_or_alloc_expression_id (expr
);
1494 new_val_id
= get_next_value_id ();
1495 VEC_safe_grow_cleared (bitmap_set_t
, heap
,
1497 get_max_value_id() + 1);
1498 nary
= vn_nary_op_insert_pieces (newnary
.length
,
1505 result
, new_val_id
);
1506 PRE_EXPR_NARY (expr
) = nary
;
1507 constant
= fully_constant_expression (expr
);
1508 if (constant
!= expr
)
1510 get_or_alloc_expression_id (expr
);
1512 add_to_value (new_val_id
, expr
);
1514 phi_trans_add (oldexpr
, expr
, pred
);
1521 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
1522 VEC (vn_reference_op_s
, heap
) *operands
= ref
->operands
;
1523 VEC (tree
, gc
) *vuses
= ref
->vuses
;
1524 VEC (tree
, gc
) *newvuses
= vuses
;
1525 VEC (vn_reference_op_s
, heap
) *newoperands
= NULL
;
1526 bool changed
= false;
1528 vn_reference_op_t operand
;
1529 vn_reference_t newref
;
1531 for (i
= 0; VEC_iterate (vn_reference_op_s
, operands
, i
, operand
); i
++)
1535 tree oldop0
= operand
->op0
;
1536 tree oldop1
= operand
->op1
;
1537 tree oldop2
= operand
->op2
;
1541 tree type
= operand
->type
;
1542 vn_reference_op_s newop
= *operand
;
1544 if (op0
&& TREE_CODE (op0
) == SSA_NAME
)
1546 unsigned int op_val_id
= VN_INFO (op0
)->value_id
;
1547 leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1548 opresult
= phi_translate_1 (leader
, set1
, set2
,
1549 pred
, phiblock
, seen
);
1550 if (opresult
&& opresult
!= leader
)
1552 tree name
= get_representative_for (opresult
);
1560 changed
|= op0
!= oldop0
;
1562 if (op1
&& TREE_CODE (op1
) == SSA_NAME
)
1564 unsigned int op_val_id
= VN_INFO (op1
)->value_id
;
1565 leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1566 opresult
= phi_translate_1 (leader
, set1
, set2
,
1567 pred
, phiblock
, seen
);
1568 if (opresult
&& opresult
!= leader
)
1570 tree name
= get_representative_for (opresult
);
1578 changed
|= op1
!= oldop1
;
1579 if (op2
&& TREE_CODE (op2
) == SSA_NAME
)
1581 unsigned int op_val_id
= VN_INFO (op2
)->value_id
;
1582 leader
= find_leader_in_sets (op_val_id
, set1
, set2
);
1583 opresult
= phi_translate_1 (leader
, set1
, set2
,
1584 pred
, phiblock
, seen
);
1585 if (opresult
&& opresult
!= leader
)
1587 tree name
= get_representative_for (opresult
);
1595 changed
|= op2
!= oldop2
;
1598 newoperands
= VEC_copy (vn_reference_op_s
, heap
, operands
);
1599 /* We may have changed from an SSA_NAME to a constant */
1600 if (newop
.opcode
== SSA_NAME
&& TREE_CODE (op0
) != SSA_NAME
)
1601 newop
.opcode
= TREE_CODE (op0
);
1606 VEC_replace (vn_reference_op_s
, newoperands
, i
, &newop
);
1608 if (i
!= VEC_length (vn_reference_op_s
, operands
))
1611 VEC_free (vn_reference_op_s
, heap
, newoperands
);
1615 newvuses
= translate_vuses_through_block (vuses
, phiblock
, pred
);
1616 changed
|= newvuses
!= vuses
;
1620 unsigned int new_val_id
;
1623 tree result
= vn_reference_lookup_pieces (newvuses
,
1627 VEC_free (vn_reference_op_s
, heap
, newoperands
);
1629 if (result
&& is_gimple_min_invariant (result
))
1631 gcc_assert (!newoperands
);
1632 return get_or_alloc_expr_for_constant (result
);
1635 expr
= (pre_expr
) pool_alloc (pre_expr_pool
);
1636 expr
->kind
= REFERENCE
;
1641 PRE_EXPR_REFERENCE (expr
) = newref
;
1642 constant
= fully_constant_expression (expr
);
1643 if (constant
!= expr
)
1646 new_val_id
= newref
->value_id
;
1647 get_or_alloc_expression_id (expr
);
1651 new_val_id
= get_next_value_id ();
1652 VEC_safe_grow_cleared (bitmap_set_t
, heap
, value_expressions
,
1653 get_max_value_id() + 1);
1654 newref
= vn_reference_insert_pieces (newvuses
,
1656 result
, new_val_id
);
1658 PRE_EXPR_REFERENCE (expr
) = newref
;
1659 constant
= fully_constant_expression (expr
);
1660 if (constant
!= expr
)
1662 get_or_alloc_expression_id (expr
);
1664 add_to_value (new_val_id
, expr
);
1666 VEC_free (vn_reference_op_s
, heap
, newoperands
);
1667 phi_trans_add (oldexpr
, expr
, pred
);
1677 tree name
= PRE_EXPR_NAME (expr
);
1679 def_stmt
= SSA_NAME_DEF_STMT (name
);
1680 if (gimple_code (def_stmt
) == GIMPLE_PHI
1681 && gimple_bb (def_stmt
) == phiblock
)
1686 e
= find_edge (pred
, gimple_bb (phi
));
1689 tree def
= PHI_ARG_DEF (phi
, e
->dest_idx
);
1692 /* Handle constant. */
1693 if (is_gimple_min_invariant (def
))
1694 return get_or_alloc_expr_for_constant (def
);
1696 if (TREE_CODE (def
) == SSA_NAME
&& ssa_undefined_value_p (def
))
1699 newexpr
= get_or_alloc_expr_for_name (def
);
1710 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1712 Return NULL if we can't find a leader for each part of the
1713 translated expression. */
1716 phi_translate (pre_expr expr
, bitmap_set_t set1
, bitmap_set_t set2
,
1717 basic_block pred
, basic_block phiblock
)
1719 bitmap_clear (seen_during_translate
);
1720 return phi_translate_1 (expr
, set1
, set2
, pred
, phiblock
,
1721 seen_during_translate
);
1724 /* For each expression in SET, translate the values through phi nodes
1725 in PHIBLOCK using edge PHIBLOCK->PRED, and store the resulting
1726 expressions in DEST. */
1729 phi_translate_set (bitmap_set_t dest
, bitmap_set_t set
, basic_block pred
,
1730 basic_block phiblock
)
1732 VEC (pre_expr
, heap
) *exprs
;
1736 if (!phi_nodes (phiblock
))
1738 bitmap_set_copy (dest
, set
);
1742 exprs
= sorted_array_from_bitmap_set (set
);
1743 for (i
= 0; VEC_iterate (pre_expr
, exprs
, i
, expr
); i
++)
1745 pre_expr translated
;
1746 translated
= phi_translate (expr
, set
, NULL
, pred
, phiblock
);
1748 /* Don't add empty translations to the cache */
1750 phi_trans_add (expr
, translated
, pred
);
1752 if (translated
!= NULL
)
1753 bitmap_value_insert_into_set (dest
, translated
);
1755 VEC_free (pre_expr
, heap
, exprs
);
1758 /* Find the leader for a value (i.e., the name representing that
1759 value) in a given set, and return it. If STMT is non-NULL it
1760 makes sure the defining statement for the leader dominates it.
1761 Return NULL if no leader is found. */
1764 bitmap_find_leader (bitmap_set_t set
, unsigned int val
, gimple stmt
)
1766 if (value_id_constant_p (val
))
1770 bitmap_set_t exprset
= VEC_index (bitmap_set_t
, value_expressions
, val
);
1772 FOR_EACH_EXPR_ID_IN_SET (exprset
, i
, bi
)
1774 pre_expr expr
= expression_for_id (i
);
1775 if (expr
->kind
== CONSTANT
)
1779 if (bitmap_set_contains_value (set
, val
))
1781 /* Rather than walk the entire bitmap of expressions, and see
1782 whether any of them has the value we are looking for, we look
1783 at the reverse mapping, which tells us the set of expressions
1784 that have a given value (IE value->expressions with that
1785 value) and see if any of those expressions are in our set.
1786 The number of expressions per value is usually significantly
1787 less than the number of expressions in the set. In fact, for
1788 large testcases, doing it this way is roughly 5-10x faster
1789 than walking the bitmap.
1790 If this is somehow a significant lose for some cases, we can
1791 choose which set to walk based on which set is smaller. */
1794 bitmap_set_t exprset
= VEC_index (bitmap_set_t
, value_expressions
, val
);
1796 EXECUTE_IF_AND_IN_BITMAP (exprset
->expressions
,
1797 set
->expressions
, 0, i
, bi
)
1799 pre_expr val
= expression_for_id (i
);
1800 /* At the point where stmt is not null, there should always
1801 be an SSA_NAME first in the list of expressions. */
1804 gimple def_stmt
= SSA_NAME_DEF_STMT (PRE_EXPR_NAME (val
));
1805 if (gimple_code (def_stmt
) != GIMPLE_PHI
1806 && gimple_bb (def_stmt
) == gimple_bb (stmt
)
1807 && gimple_uid (def_stmt
) >= gimple_uid (stmt
))
1816 /* Determine if EXPR, a memory expression, is ANTIC_IN at the top of
1817 BLOCK by seeing if it is not killed in the block. Note that we are
1818 only determining whether there is a store that kills it. Because
1819 of the order in which clean iterates over values, we are guaranteed
1820 that altered operands will have caused us to be eliminated from the
1821 ANTIC_IN set already. */
1824 value_dies_in_block_x (pre_expr expr
, basic_block block
)
1828 VEC (tree
, gc
) *vuses
= PRE_EXPR_REFERENCE (expr
)->vuses
;
1830 /* Conservatively, a value dies if it's vuses are defined in this
1831 block, unless they come from phi nodes (which are merge operations,
1832 rather than stores. */
1833 for (i
= 0; VEC_iterate (tree
, vuses
, i
, vuse
); i
++)
1835 gimple def
= SSA_NAME_DEF_STMT (vuse
);
1837 if (gimple_bb (def
) != block
)
1839 if (gimple_code (def
) == GIMPLE_PHI
)
1847 #define union_contains_value(SET1, SET2, VAL) \
1848 (bitmap_set_contains_value ((SET1), (VAL)) \
1849 || ((SET2) && bitmap_set_contains_value ((SET2), (VAL))))
1851 /* Determine if vn_reference_op_t VRO is legal in SET1 U SET2.
1854 vro_valid_in_sets (bitmap_set_t set1
, bitmap_set_t set2
,
1855 vn_reference_op_t vro
)
1857 if (vro
->op0
&& TREE_CODE (vro
->op0
) == SSA_NAME
)
1859 struct pre_expr_d temp
;
1862 PRE_EXPR_NAME (&temp
) = vro
->op0
;
1863 temp
.id
= lookup_expression_id (&temp
);
1866 if (!union_contains_value (set1
, set2
,
1867 get_expr_value_id (&temp
)))
1870 if (vro
->op1
&& TREE_CODE (vro
->op1
) == SSA_NAME
)
1872 struct pre_expr_d temp
;
1875 PRE_EXPR_NAME (&temp
) = vro
->op1
;
1876 temp
.id
= lookup_expression_id (&temp
);
1879 if (!union_contains_value (set1
, set2
,
1880 get_expr_value_id (&temp
)))
1884 if (vro
->op2
&& TREE_CODE (vro
->op2
) == SSA_NAME
)
1886 struct pre_expr_d temp
;
1889 PRE_EXPR_NAME (&temp
) = vro
->op2
;
1890 temp
.id
= lookup_expression_id (&temp
);
1893 if (!union_contains_value (set1
, set2
,
1894 get_expr_value_id (&temp
)))
1901 /* Determine if the expression EXPR is valid in SET1 U SET2.
1902 ONLY SET2 CAN BE NULL.
1903 This means that we have a leader for each part of the expression
1904 (if it consists of values), or the expression is an SSA_NAME.
1905 For loads/calls, we also see if the vuses are killed in this block.
1909 valid_in_sets (bitmap_set_t set1
, bitmap_set_t set2
, pre_expr expr
,
1915 return bitmap_set_contains_expr (AVAIL_OUT (block
), expr
);
1919 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
1920 for (i
= 0; i
< nary
->length
; i
++)
1922 if (TREE_CODE (nary
->op
[i
]) == SSA_NAME
)
1924 struct pre_expr_d temp
;
1927 PRE_EXPR_NAME (&temp
) = nary
->op
[i
];
1928 temp
.id
= lookup_expression_id (&temp
);
1931 if (!union_contains_value (set1
, set2
,
1932 get_expr_value_id (&temp
)))
1941 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
1942 vn_reference_op_t vro
;
1945 for (i
= 0; VEC_iterate (vn_reference_op_s
, ref
->operands
, i
, vro
); i
++)
1947 if (!vro_valid_in_sets (set1
, set2
, vro
))
1950 return !value_dies_in_block_x (expr
, block
);
1957 /* Clean the set of expressions that are no longer valid in SET1 or
1958 SET2. This means expressions that are made up of values we have no
1959 leaders for in SET1 or SET2. This version is used for partial
1960 anticipation, which means it is not valid in either ANTIC_IN or
1964 dependent_clean (bitmap_set_t set1
, bitmap_set_t set2
, basic_block block
)
1966 VEC (pre_expr
, heap
) *exprs
= sorted_array_from_bitmap_set (set1
);
1970 for (i
= 0; VEC_iterate (pre_expr
, exprs
, i
, expr
); i
++)
1972 if (!valid_in_sets (set1
, set2
, expr
, block
))
1973 bitmap_remove_from_set (set1
, expr
);
1975 VEC_free (pre_expr
, heap
, exprs
);
1978 /* Clean the set of expressions that are no longer valid in SET. This
1979 means expressions that are made up of values we have no leaders for
1983 clean (bitmap_set_t set
, basic_block block
)
1985 VEC (pre_expr
, heap
) *exprs
= sorted_array_from_bitmap_set (set
);
1989 for (i
= 0; VEC_iterate (pre_expr
, exprs
, i
, expr
); i
++)
1991 if (!valid_in_sets (set
, NULL
, expr
, block
))
1992 bitmap_remove_from_set (set
, expr
);
1994 VEC_free (pre_expr
, heap
, exprs
);
1997 static sbitmap has_abnormal_preds
;
1999 /* List of blocks that may have changed during ANTIC computation and
2000 thus need to be iterated over. */
2002 static sbitmap changed_blocks
;
2004 /* Decide whether to defer a block for a later iteration, or PHI
2005 translate SOURCE to DEST using phis in PHIBLOCK. Return false if we
2006 should defer the block, and true if we processed it. */
2009 defer_or_phi_translate_block (bitmap_set_t dest
, bitmap_set_t source
,
2010 basic_block block
, basic_block phiblock
)
2012 if (!BB_VISITED (phiblock
))
2014 SET_BIT (changed_blocks
, block
->index
);
2015 BB_VISITED (block
) = 0;
2016 BB_DEFERRED (block
) = 1;
2020 phi_translate_set (dest
, source
, block
, phiblock
);
2024 /* Compute the ANTIC set for BLOCK.
2026 If succs(BLOCK) > 1 then
2027 ANTIC_OUT[BLOCK] = intersection of ANTIC_IN[b] for all succ(BLOCK)
2028 else if succs(BLOCK) == 1 then
2029 ANTIC_OUT[BLOCK] = phi_translate (ANTIC_IN[succ(BLOCK)])
2031 ANTIC_IN[BLOCK] = clean(ANTIC_OUT[BLOCK] U EXP_GEN[BLOCK] - TMP_GEN[BLOCK])
2035 compute_antic_aux (basic_block block
, bool block_has_abnormal_pred_edge
)
2037 bool changed
= false;
2038 bitmap_set_t S
, old
, ANTIC_OUT
;
2044 old
= ANTIC_OUT
= S
= NULL
;
2045 BB_VISITED (block
) = 1;
2047 /* If any edges from predecessors are abnormal, antic_in is empty,
2049 if (block_has_abnormal_pred_edge
)
2050 goto maybe_dump_sets
;
2052 old
= ANTIC_IN (block
);
2053 ANTIC_OUT
= bitmap_set_new ();
2055 /* If the block has no successors, ANTIC_OUT is empty. */
2056 if (EDGE_COUNT (block
->succs
) == 0)
2058 /* If we have one successor, we could have some phi nodes to
2059 translate through. */
2060 else if (single_succ_p (block
))
2062 basic_block succ_bb
= single_succ (block
);
2064 /* We trade iterations of the dataflow equations for having to
2065 phi translate the maximal set, which is incredibly slow
2066 (since the maximal set often has 300+ members, even when you
2067 have a small number of blocks).
2068 Basically, we defer the computation of ANTIC for this block
2069 until we have processed it's successor, which will inevitably
2070 have a *much* smaller set of values to phi translate once
2071 clean has been run on it.
2072 The cost of doing this is that we technically perform more
2073 iterations, however, they are lower cost iterations.
2075 Timings for PRE on tramp3d-v4:
2076 without maximal set fix: 11 seconds
2077 with maximal set fix/without deferring: 26 seconds
2078 with maximal set fix/with deferring: 11 seconds
2081 if (!defer_or_phi_translate_block (ANTIC_OUT
, ANTIC_IN (succ_bb
),
2085 goto maybe_dump_sets
;
2088 /* If we have multiple successors, we take the intersection of all of
2089 them. Note that in the case of loop exit phi nodes, we may have
2090 phis to translate through. */
2093 VEC(basic_block
, heap
) * worklist
;
2095 basic_block bprime
, first
;
2097 worklist
= VEC_alloc (basic_block
, heap
, EDGE_COUNT (block
->succs
));
2098 FOR_EACH_EDGE (e
, ei
, block
->succs
)
2099 VEC_quick_push (basic_block
, worklist
, e
->dest
);
2100 first
= VEC_index (basic_block
, worklist
, 0);
2102 if (phi_nodes (first
))
2104 bitmap_set_t from
= ANTIC_IN (first
);
2106 if (!BB_VISITED (first
))
2108 phi_translate_set (ANTIC_OUT
, from
, block
, first
);
2112 if (!BB_VISITED (first
))
2113 bitmap_set_copy (ANTIC_OUT
, maximal_set
);
2115 bitmap_set_copy (ANTIC_OUT
, ANTIC_IN (first
));
2118 for (i
= 1; VEC_iterate (basic_block
, worklist
, i
, bprime
); i
++)
2120 if (phi_nodes (bprime
))
2122 bitmap_set_t tmp
= bitmap_set_new ();
2123 bitmap_set_t from
= ANTIC_IN (bprime
);
2125 if (!BB_VISITED (bprime
))
2127 phi_translate_set (tmp
, from
, block
, bprime
);
2128 bitmap_set_and (ANTIC_OUT
, tmp
);
2129 bitmap_set_free (tmp
);
2133 if (!BB_VISITED (bprime
))
2134 bitmap_set_and (ANTIC_OUT
, maximal_set
);
2136 bitmap_set_and (ANTIC_OUT
, ANTIC_IN (bprime
));
2139 VEC_free (basic_block
, heap
, worklist
);
2142 /* Generate ANTIC_OUT - TMP_GEN. */
2143 S
= bitmap_set_subtract (ANTIC_OUT
, TMP_GEN (block
));
2145 /* Start ANTIC_IN with EXP_GEN - TMP_GEN. */
2146 ANTIC_IN (block
) = bitmap_set_subtract (EXP_GEN (block
),
2149 /* Then union in the ANTIC_OUT - TMP_GEN values,
2150 to get ANTIC_OUT U EXP_GEN - TMP_GEN */
2151 FOR_EACH_EXPR_ID_IN_SET (S
, bii
, bi
)
2152 bitmap_value_insert_into_set (ANTIC_IN (block
),
2153 expression_for_id (bii
));
2155 clean (ANTIC_IN (block
), block
);
2157 /* !old->expressions can happen when we deferred a block. */
2158 if (!old
->expressions
|| !bitmap_set_equal (old
, ANTIC_IN (block
)))
2161 SET_BIT (changed_blocks
, block
->index
);
2162 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2163 SET_BIT (changed_blocks
, e
->src
->index
);
2166 RESET_BIT (changed_blocks
, block
->index
);
2169 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2171 if (!BB_DEFERRED (block
) || BB_VISITED (block
))
2174 print_bitmap_set (dump_file
, ANTIC_OUT
, "ANTIC_OUT", block
->index
);
2176 print_bitmap_set (dump_file
, ANTIC_IN (block
), "ANTIC_IN",
2180 print_bitmap_set (dump_file
, S
, "S", block
->index
);
2185 "Block %d was deferred for a future iteration.\n",
2190 bitmap_set_free (old
);
2192 bitmap_set_free (S
);
2194 bitmap_set_free (ANTIC_OUT
);
2198 /* Compute PARTIAL_ANTIC for BLOCK.
2200 If succs(BLOCK) > 1 then
2201 PA_OUT[BLOCK] = value wise union of PA_IN[b] + all ANTIC_IN not
2202 in ANTIC_OUT for all succ(BLOCK)
2203 else if succs(BLOCK) == 1 then
2204 PA_OUT[BLOCK] = phi_translate (PA_IN[succ(BLOCK)])
2206 PA_IN[BLOCK] = dependent_clean(PA_OUT[BLOCK] - TMP_GEN[BLOCK]
2211 compute_partial_antic_aux (basic_block block
,
2212 bool block_has_abnormal_pred_edge
)
2214 bool changed
= false;
2215 bitmap_set_t old_PA_IN
;
2216 bitmap_set_t PA_OUT
;
2219 unsigned long max_pa
= PARAM_VALUE (PARAM_MAX_PARTIAL_ANTIC_LENGTH
);
2221 old_PA_IN
= PA_OUT
= NULL
;
2223 /* If any edges from predecessors are abnormal, antic_in is empty,
2225 if (block_has_abnormal_pred_edge
)
2226 goto maybe_dump_sets
;
2228 /* If there are too many partially anticipatable values in the
2229 block, phi_translate_set can take an exponential time: stop
2230 before the translation starts. */
2232 && single_succ_p (block
)
2233 && bitmap_count_bits (PA_IN (single_succ (block
))->values
) > max_pa
)
2234 goto maybe_dump_sets
;
2236 old_PA_IN
= PA_IN (block
);
2237 PA_OUT
= bitmap_set_new ();
2239 /* If the block has no successors, ANTIC_OUT is empty. */
2240 if (EDGE_COUNT (block
->succs
) == 0)
2242 /* If we have one successor, we could have some phi nodes to
2243 translate through. Note that we can't phi translate across DFS
2244 back edges in partial antic, because it uses a union operation on
2245 the successors. For recurrences like IV's, we will end up
2246 generating a new value in the set on each go around (i + 3 (VH.1)
2247 VH.1 + 1 (VH.2), VH.2 + 1 (VH.3), etc), forever. */
2248 else if (single_succ_p (block
))
2250 basic_block succ
= single_succ (block
);
2251 if (!(single_succ_edge (block
)->flags
& EDGE_DFS_BACK
))
2252 phi_translate_set (PA_OUT
, PA_IN (succ
), block
, succ
);
2254 /* If we have multiple successors, we take the union of all of
2258 VEC(basic_block
, heap
) * worklist
;
2262 worklist
= VEC_alloc (basic_block
, heap
, EDGE_COUNT (block
->succs
));
2263 FOR_EACH_EDGE (e
, ei
, block
->succs
)
2265 if (e
->flags
& EDGE_DFS_BACK
)
2267 VEC_quick_push (basic_block
, worklist
, e
->dest
);
2269 if (VEC_length (basic_block
, worklist
) > 0)
2271 for (i
= 0; VEC_iterate (basic_block
, worklist
, i
, bprime
); i
++)
2276 FOR_EACH_EXPR_ID_IN_SET (ANTIC_IN (bprime
), i
, bi
)
2277 bitmap_value_insert_into_set (PA_OUT
,
2278 expression_for_id (i
));
2279 if (phi_nodes (bprime
))
2281 bitmap_set_t pa_in
= bitmap_set_new ();
2282 phi_translate_set (pa_in
, PA_IN (bprime
), block
, bprime
);
2283 FOR_EACH_EXPR_ID_IN_SET (pa_in
, i
, bi
)
2284 bitmap_value_insert_into_set (PA_OUT
,
2285 expression_for_id (i
));
2286 bitmap_set_free (pa_in
);
2289 FOR_EACH_EXPR_ID_IN_SET (PA_IN (bprime
), i
, bi
)
2290 bitmap_value_insert_into_set (PA_OUT
,
2291 expression_for_id (i
));
2294 VEC_free (basic_block
, heap
, worklist
);
2297 /* PA_IN starts with PA_OUT - TMP_GEN.
2298 Then we subtract things from ANTIC_IN. */
2299 PA_IN (block
) = bitmap_set_subtract (PA_OUT
, TMP_GEN (block
));
2301 /* For partial antic, we want to put back in the phi results, since
2302 we will properly avoid making them partially antic over backedges. */
2303 bitmap_ior_into (PA_IN (block
)->values
, PHI_GEN (block
)->values
);
2304 bitmap_ior_into (PA_IN (block
)->expressions
, PHI_GEN (block
)->expressions
);
2306 /* PA_IN[block] = PA_IN[block] - ANTIC_IN[block] */
2307 bitmap_set_subtract_values (PA_IN (block
), ANTIC_IN (block
));
2309 dependent_clean (PA_IN (block
), ANTIC_IN (block
), block
);
2311 if (!bitmap_set_equal (old_PA_IN
, PA_IN (block
)))
2314 SET_BIT (changed_blocks
, block
->index
);
2315 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2316 SET_BIT (changed_blocks
, e
->src
->index
);
2319 RESET_BIT (changed_blocks
, block
->index
);
2322 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2325 print_bitmap_set (dump_file
, PA_OUT
, "PA_OUT", block
->index
);
2327 print_bitmap_set (dump_file
, PA_IN (block
), "PA_IN", block
->index
);
2330 bitmap_set_free (old_PA_IN
);
2332 bitmap_set_free (PA_OUT
);
2336 /* Compute ANTIC and partial ANTIC sets. */
2339 compute_antic (void)
2341 bool changed
= true;
2342 int num_iterations
= 0;
2346 /* If any predecessor edges are abnormal, we punt, so antic_in is empty.
2347 We pre-build the map of blocks with incoming abnormal edges here. */
2348 has_abnormal_preds
= sbitmap_alloc (last_basic_block
);
2349 sbitmap_zero (has_abnormal_preds
);
2356 FOR_EACH_EDGE (e
, ei
, block
->preds
)
2358 e
->flags
&= ~EDGE_DFS_BACK
;
2359 if (e
->flags
& EDGE_ABNORMAL
)
2361 SET_BIT (has_abnormal_preds
, block
->index
);
2366 BB_VISITED (block
) = 0;
2367 BB_DEFERRED (block
) = 0;
2368 /* While we are here, give empty ANTIC_IN sets to each block. */
2369 ANTIC_IN (block
) = bitmap_set_new ();
2370 PA_IN (block
) = bitmap_set_new ();
2373 /* At the exit block we anticipate nothing. */
2374 ANTIC_IN (EXIT_BLOCK_PTR
) = bitmap_set_new ();
2375 BB_VISITED (EXIT_BLOCK_PTR
) = 1;
2376 PA_IN (EXIT_BLOCK_PTR
) = bitmap_set_new ();
2378 changed_blocks
= sbitmap_alloc (last_basic_block
+ 1);
2379 sbitmap_ones (changed_blocks
);
2382 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2383 fprintf (dump_file
, "Starting iteration %d\n", num_iterations
);
2386 for (i
= 0; i
< last_basic_block
- NUM_FIXED_BLOCKS
; i
++)
2388 if (TEST_BIT (changed_blocks
, postorder
[i
]))
2390 basic_block block
= BASIC_BLOCK (postorder
[i
]);
2391 changed
|= compute_antic_aux (block
,
2392 TEST_BIT (has_abnormal_preds
,
2396 #ifdef ENABLE_CHECKING
2397 /* Theoretically possible, but *highly* unlikely. */
2398 gcc_assert (num_iterations
< 500);
2402 statistics_histogram_event (cfun
, "compute_antic iterations",
2405 if (do_partial_partial
)
2407 sbitmap_ones (changed_blocks
);
2408 mark_dfs_back_edges ();
2413 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2414 fprintf (dump_file
, "Starting iteration %d\n", num_iterations
);
2417 for (i
= 0; i
< last_basic_block
- NUM_FIXED_BLOCKS
; i
++)
2419 if (TEST_BIT (changed_blocks
, postorder
[i
]))
2421 basic_block block
= BASIC_BLOCK (postorder
[i
]);
2423 |= compute_partial_antic_aux (block
,
2424 TEST_BIT (has_abnormal_preds
,
2428 #ifdef ENABLE_CHECKING
2429 /* Theoretically possible, but *highly* unlikely. */
2430 gcc_assert (num_iterations
< 500);
2433 statistics_histogram_event (cfun
, "compute_partial_antic iterations",
2436 sbitmap_free (has_abnormal_preds
);
2437 sbitmap_free (changed_blocks
);
2440 /* Return true if we can value number the call in STMT. This is true
2441 if we have a pure or constant call. */
2444 can_value_number_call (gimple stmt
)
2446 if (gimple_call_flags (stmt
) & (ECF_PURE
| ECF_CONST
))
2451 /* Return true if OP is an exception handler related operation, such as
2452 FILTER_EXPR or EXC_PTR_EXPR. */
2455 is_exception_related (gimple stmt
)
2457 return (is_gimple_assign (stmt
)
2458 && (gimple_assign_rhs_code (stmt
) == FILTER_EXPR
2459 || gimple_assign_rhs_code (stmt
) == EXC_PTR_EXPR
));
2462 /* Return true if OP is a tree which we can perform PRE on
2463 on. This may not match the operations we can value number, but in
2464 a perfect world would. */
2467 can_PRE_operation (tree op
)
2469 return UNARY_CLASS_P (op
)
2470 || BINARY_CLASS_P (op
)
2471 || COMPARISON_CLASS_P (op
)
2472 || TREE_CODE (op
) == INDIRECT_REF
2473 || TREE_CODE (op
) == COMPONENT_REF
2474 || TREE_CODE (op
) == VIEW_CONVERT_EXPR
2475 || TREE_CODE (op
) == CALL_EXPR
2476 || TREE_CODE (op
) == ARRAY_REF
;
2480 /* Inserted expressions are placed onto this worklist, which is used
2481 for performing quick dead code elimination of insertions we made
2482 that didn't turn out to be necessary. */
2483 static VEC(gimple
,heap
) *inserted_exprs
;
2485 /* Pool allocated fake store expressions are placed onto this
2486 worklist, which, after performing dead code elimination, is walked
2487 to see which expressions need to be put into GC'able memory */
2488 static VEC(gimple
, heap
) *need_creation
;
2490 /* The actual worker for create_component_ref_by_pieces. */
2493 create_component_ref_by_pieces_1 (basic_block block
, vn_reference_t ref
,
2494 unsigned int *operand
, gimple_seq
*stmts
,
2497 vn_reference_op_t currop
= VEC_index (vn_reference_op_s
, ref
->operands
,
2501 switch (currop
->opcode
)
2505 tree folded
, sc
= currop
->op1
;
2506 unsigned int nargs
= 0;
2507 tree
*args
= XNEWVEC (tree
, VEC_length (vn_reference_op_s
,
2508 ref
->operands
) - 1);
2509 while (*operand
< VEC_length (vn_reference_op_s
, ref
->operands
))
2511 args
[nargs
] = create_component_ref_by_pieces_1 (block
, ref
,
2516 folded
= build_call_array (currop
->type
,
2517 TREE_CODE (currop
->op0
) == FUNCTION_DECL
2518 ? build_fold_addr_expr (currop
->op0
)
2524 pre_expr scexpr
= get_or_alloc_expr_for (sc
);
2525 sc
= find_or_generate_expression (block
, scexpr
, stmts
, domstmt
);
2528 CALL_EXPR_STATIC_CHAIN (folded
) = sc
;
2536 gcc_assert (is_gimple_min_invariant (currop
->op0
));
2542 case VIEW_CONVERT_EXPR
:
2545 tree genop0
= create_component_ref_by_pieces_1 (block
, ref
,
2550 folded
= fold_build1 (currop
->opcode
, currop
->type
,
2555 case ALIGN_INDIRECT_REF
:
2556 case MISALIGNED_INDIRECT_REF
:
2560 tree genop1
= create_component_ref_by_pieces_1 (block
, ref
,
2565 genop1
= fold_convert (build_pointer_type (currop
->type
),
2568 if (currop
->opcode
== MISALIGNED_INDIRECT_REF
)
2569 folded
= fold_build2 (currop
->opcode
, currop
->type
,
2570 genop1
, currop
->op1
);
2572 folded
= fold_build1 (currop
->opcode
, currop
->type
,
2580 tree genop0
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2582 pre_expr op1expr
= get_or_alloc_expr_for (currop
->op0
);
2583 pre_expr op2expr
= get_or_alloc_expr_for (currop
->op1
);
2589 genop1
= find_or_generate_expression (block
, op1expr
, stmts
, domstmt
);
2592 genop2
= find_or_generate_expression (block
, op2expr
, stmts
, domstmt
);
2595 folded
= fold_build3 (BIT_FIELD_REF
, currop
->type
, genop0
, genop1
,
2600 /* For array ref vn_reference_op's, operand 1 of the array ref
2601 is op0 of the reference op and operand 3 of the array ref is
2603 case ARRAY_RANGE_REF
:
2607 tree genop1
= currop
->op0
;
2609 tree genop2
= currop
->op1
;
2612 genop0
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2616 op1expr
= get_or_alloc_expr_for (genop1
);
2617 genop1
= find_or_generate_expression (block
, op1expr
, stmts
, domstmt
);
2622 op2expr
= get_or_alloc_expr_for (genop2
);
2623 genop2
= find_or_generate_expression (block
, op2expr
, stmts
,
2629 genop3
= currop
->op2
;
2630 return build4 (currop
->opcode
, currop
->type
, genop0
, genop1
,
2637 tree genop2
= currop
->op1
;
2639 op0
= create_component_ref_by_pieces_1 (block
, ref
, operand
,
2643 /* op1 should be a FIELD_DECL, which are represented by
2648 op2expr
= get_or_alloc_expr_for (genop2
);
2649 genop2
= find_or_generate_expression (block
, op2expr
, stmts
,
2655 return fold_build3 (COMPONENT_REF
, TREE_TYPE (op1
), op0
, op1
,
2661 pre_expr op0expr
= get_or_alloc_expr_for (currop
->op0
);
2662 genop
= find_or_generate_expression (block
, op0expr
, stmts
, domstmt
);
2683 /* For COMPONENT_REF's and ARRAY_REF's, we can't have any intermediates for the
2684 COMPONENT_REF or INDIRECT_REF or ARRAY_REF portion, because we'd end up with
2685 trying to rename aggregates into ssa form directly, which is a no no.
2687 Thus, this routine doesn't create temporaries, it just builds a
2688 single access expression for the array, calling
2689 find_or_generate_expression to build the innermost pieces.
2691 This function is a subroutine of create_expression_by_pieces, and
2692 should not be called on it's own unless you really know what you
2696 create_component_ref_by_pieces (basic_block block
, vn_reference_t ref
,
2697 gimple_seq
*stmts
, gimple domstmt
)
2699 unsigned int op
= 0;
2700 return create_component_ref_by_pieces_1 (block
, ref
, &op
, stmts
, domstmt
);
2703 /* Find a leader for an expression, or generate one using
2704 create_expression_by_pieces if it's ANTIC but
2706 BLOCK is the basic_block we are looking for leaders in.
2707 EXPR is the expression to find a leader or generate for.
2708 STMTS is the statement list to put the inserted expressions on.
2709 Returns the SSA_NAME of the LHS of the generated expression or the
2711 DOMSTMT if non-NULL is a statement that should be dominated by
2712 all uses in the generated expression. If DOMSTMT is non-NULL this
2713 routine can fail and return NULL_TREE. Otherwise it will assert
2717 find_or_generate_expression (basic_block block
, pre_expr expr
,
2718 gimple_seq
*stmts
, gimple domstmt
)
2720 pre_expr leader
= bitmap_find_leader (AVAIL_OUT (block
),
2721 get_expr_value_id (expr
), domstmt
);
2725 if (leader
->kind
== NAME
)
2726 genop
= PRE_EXPR_NAME (leader
);
2727 else if (leader
->kind
== CONSTANT
)
2728 genop
= PRE_EXPR_CONSTANT (leader
);
2731 /* If it's still NULL, it must be a complex expression, so generate
2732 it recursively. Not so for FRE though. */
2736 bitmap_set_t exprset
;
2737 unsigned int lookfor
= get_expr_value_id (expr
);
2738 bool handled
= false;
2742 exprset
= VEC_index (bitmap_set_t
, value_expressions
, lookfor
);
2743 FOR_EACH_EXPR_ID_IN_SET (exprset
, i
, bi
)
2745 pre_expr temp
= expression_for_id (i
);
2746 if (temp
->kind
!= NAME
)
2749 genop
= create_expression_by_pieces (block
, temp
, stmts
,
2751 get_expr_type (expr
));
2755 if (!handled
&& domstmt
)
2758 gcc_assert (handled
);
2763 #define NECESSARY GF_PLF_1
2765 /* Create an expression in pieces, so that we can handle very complex
2766 expressions that may be ANTIC, but not necessary GIMPLE.
2767 BLOCK is the basic block the expression will be inserted into,
2768 EXPR is the expression to insert (in value form)
2769 STMTS is a statement list to append the necessary insertions into.
2771 This function will die if we hit some value that shouldn't be
2772 ANTIC but is (IE there is no leader for it, or its components).
2773 This function may also generate expressions that are themselves
2774 partially or fully redundant. Those that are will be either made
2775 fully redundant during the next iteration of insert (for partially
2776 redundant ones), or eliminated by eliminate (for fully redundant
2779 If DOMSTMT is non-NULL then we make sure that all uses in the
2780 expressions dominate that statement. In this case the function
2781 can return NULL_TREE to signal failure. */
2784 create_expression_by_pieces (basic_block block
, pre_expr expr
,
2785 gimple_seq
*stmts
, gimple domstmt
, tree type
)
2788 tree folded
, newexpr
;
2789 gimple_seq forced_stmts
;
2790 unsigned int value_id
;
2791 gimple_stmt_iterator gsi
;
2792 tree exprtype
= type
? type
: get_expr_type (expr
);
2798 /* We may hit the NAME/CONSTANT case if we have to convert types
2799 that value numbering saw through. */
2801 folded
= PRE_EXPR_NAME (expr
);
2804 folded
= PRE_EXPR_CONSTANT (expr
);
2808 vn_reference_t ref
= PRE_EXPR_REFERENCE (expr
);
2809 folded
= create_component_ref_by_pieces (block
, ref
, stmts
, domstmt
);
2814 vn_nary_op_t nary
= PRE_EXPR_NARY (expr
);
2815 switch (nary
->length
)
2819 pre_expr op1
= get_or_alloc_expr_for (nary
->op
[0]);
2820 pre_expr op2
= get_or_alloc_expr_for (nary
->op
[1]);
2821 tree genop1
= find_or_generate_expression (block
, op1
,
2823 tree genop2
= find_or_generate_expression (block
, op2
,
2825 if (!genop1
|| !genop2
)
2827 genop1
= fold_convert (TREE_TYPE (nary
->op
[0]),
2829 /* Ensure op2 is a sizetype for POINTER_PLUS_EXPR. It
2830 may be a constant with the wrong type. */
2831 if (nary
->opcode
== POINTER_PLUS_EXPR
)
2832 genop2
= fold_convert (sizetype
, genop2
);
2834 genop2
= fold_convert (TREE_TYPE (nary
->op
[1]), genop2
);
2836 folded
= fold_build2 (nary
->opcode
, nary
->type
,
2842 pre_expr op1
= get_or_alloc_expr_for (nary
->op
[0]);
2843 tree genop1
= find_or_generate_expression (block
, op1
,
2847 genop1
= fold_convert (TREE_TYPE (nary
->op
[0]), genop1
);
2849 folded
= fold_build1 (nary
->opcode
, nary
->type
,
2861 folded
= fold_convert (exprtype
, folded
);
2862 /* Force the generated expression to be a sequence of GIMPLE
2864 We have to call unshare_expr because force_gimple_operand may
2865 modify the tree we pass to it. */
2866 newexpr
= force_gimple_operand (unshare_expr (folded
), &forced_stmts
,
2869 /* If we have any intermediate expressions to the value sets, add them
2870 to the value sets and chain them in the instruction stream. */
2873 gsi
= gsi_start (forced_stmts
);
2874 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
2876 gimple stmt
= gsi_stmt (gsi
);
2877 tree forcedname
= gimple_get_lhs (stmt
);
2880 VEC_safe_push (gimple
, heap
, inserted_exprs
, stmt
);
2881 if (TREE_CODE (forcedname
) == SSA_NAME
)
2883 VN_INFO_GET (forcedname
)->valnum
= forcedname
;
2884 VN_INFO (forcedname
)->value_id
= get_next_value_id ();
2885 nameexpr
= get_or_alloc_expr_for_name (forcedname
);
2886 add_to_value (VN_INFO (forcedname
)->value_id
, nameexpr
);
2888 bitmap_value_replace_in_set (NEW_SETS (block
), nameexpr
);
2889 bitmap_value_replace_in_set (AVAIL_OUT (block
), nameexpr
);
2891 mark_symbols_for_renaming (stmt
);
2893 gimple_seq_add_seq (stmts
, forced_stmts
);
2896 /* Build and insert the assignment of the end result to the temporary
2897 that we will return. */
2898 if (!pretemp
|| exprtype
!= TREE_TYPE (pretemp
))
2900 pretemp
= create_tmp_var (exprtype
, "pretmp");
2901 get_var_ann (pretemp
);
2905 add_referenced_var (temp
);
2907 if (TREE_CODE (exprtype
) == COMPLEX_TYPE
2908 || TREE_CODE (exprtype
) == VECTOR_TYPE
)
2909 DECL_GIMPLE_REG_P (temp
) = 1;
2911 newstmt
= gimple_build_assign (temp
, newexpr
);
2912 name
= make_ssa_name (temp
, newstmt
);
2913 gimple_assign_set_lhs (newstmt
, name
);
2914 gimple_set_plf (newstmt
, NECESSARY
, false);
2916 gimple_seq_add_stmt (stmts
, newstmt
);
2917 VEC_safe_push (gimple
, heap
, inserted_exprs
, newstmt
);
2919 /* All the symbols in NEWEXPR should be put into SSA form. */
2920 mark_symbols_for_renaming (newstmt
);
2922 /* Add a value number to the temporary.
2923 The value may already exist in either NEW_SETS, or AVAIL_OUT, because
2924 we are creating the expression by pieces, and this particular piece of
2925 the expression may have been represented. There is no harm in replacing
2927 VN_INFO_GET (name
)->valnum
= name
;
2928 value_id
= get_expr_value_id (expr
);
2929 VN_INFO (name
)->value_id
= value_id
;
2930 nameexpr
= get_or_alloc_expr_for_name (name
);
2931 add_to_value (value_id
, nameexpr
);
2933 bitmap_value_replace_in_set (NEW_SETS (block
), nameexpr
);
2934 bitmap_value_replace_in_set (AVAIL_OUT (block
), nameexpr
);
2936 pre_stats
.insertions
++;
2937 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2939 fprintf (dump_file
, "Inserted ");
2940 print_gimple_stmt (dump_file
, newstmt
, 0, 0);
2941 fprintf (dump_file
, " in predecessor %d\n", block
->index
);
2948 /* Insert the to-be-made-available values of expression EXPRNUM for each
2949 predecessor, stored in AVAIL, into the predecessors of BLOCK, and
2950 merge the result with a phi node, given the same value number as
2951 NODE. Return true if we have inserted new stuff. */
2954 insert_into_preds_of_block (basic_block block
, unsigned int exprnum
,
2957 pre_expr expr
= expression_for_id (exprnum
);
2959 unsigned int val
= get_expr_value_id (expr
);
2961 bool insertions
= false;
2966 tree type
= get_expr_type (expr
);
2970 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2972 fprintf (dump_file
, "Found partial redundancy for expression ");
2973 print_pre_expr (dump_file
, expr
);
2974 fprintf (dump_file
, " (%04d)\n", val
);
2977 /* Make sure we aren't creating an induction variable. */
2978 if (block
->loop_depth
> 0 && EDGE_COUNT (block
->preds
) == 2
2979 && expr
->kind
!= REFERENCE
)
2981 bool firstinsideloop
= false;
2982 bool secondinsideloop
= false;
2983 firstinsideloop
= flow_bb_inside_loop_p (block
->loop_father
,
2984 EDGE_PRED (block
, 0)->src
);
2985 secondinsideloop
= flow_bb_inside_loop_p (block
->loop_father
,
2986 EDGE_PRED (block
, 1)->src
);
2987 /* Induction variables only have one edge inside the loop. */
2988 if (firstinsideloop
^ secondinsideloop
)
2990 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2991 fprintf (dump_file
, "Skipping insertion of phi for partial redundancy: Looks like an induction variable\n");
2997 /* Make the necessary insertions. */
2998 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3000 gimple_seq stmts
= NULL
;
3003 eprime
= avail
[bprime
->index
];
3005 if (eprime
->kind
!= NAME
&& eprime
->kind
!= CONSTANT
)
3007 builtexpr
= create_expression_by_pieces (bprime
,
3011 gcc_assert (!(pred
->flags
& EDGE_ABNORMAL
));
3012 gsi_insert_seq_on_edge (pred
, stmts
);
3013 avail
[bprime
->index
] = get_or_alloc_expr_for_name (builtexpr
);
3016 else if (eprime
->kind
== CONSTANT
)
3018 /* Constants may not have the right type, fold_convert
3019 should give us back a constant with the right type.
3021 tree constant
= PRE_EXPR_CONSTANT (eprime
);
3022 if (!useless_type_conversion_p (type
, TREE_TYPE (constant
)))
3024 tree builtexpr
= fold_convert (type
, constant
);
3025 if (!is_gimple_min_invariant (builtexpr
))
3027 tree forcedexpr
= force_gimple_operand (builtexpr
,
3030 if (!is_gimple_min_invariant (forcedexpr
))
3032 if (forcedexpr
!= builtexpr
)
3034 VN_INFO_GET (forcedexpr
)->valnum
= PRE_EXPR_CONSTANT (eprime
);
3035 VN_INFO (forcedexpr
)->value_id
= get_expr_value_id (eprime
);
3039 gimple_stmt_iterator gsi
;
3040 gsi
= gsi_start (stmts
);
3041 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
3043 gimple stmt
= gsi_stmt (gsi
);
3044 VEC_safe_push (gimple
, heap
, inserted_exprs
, stmt
);
3045 gimple_set_plf (stmt
, NECESSARY
, false);
3047 gsi_insert_seq_on_edge (pred
, stmts
);
3049 avail
[bprime
->index
] = get_or_alloc_expr_for_name (forcedexpr
);
3054 else if (eprime
->kind
== NAME
)
3056 /* We may have to do a conversion because our value
3057 numbering can look through types in certain cases, but
3058 our IL requires all operands of a phi node have the same
3060 tree name
= PRE_EXPR_NAME (eprime
);
3061 if (!useless_type_conversion_p (type
, TREE_TYPE (name
)))
3065 builtexpr
= fold_convert (type
, name
);
3066 forcedexpr
= force_gimple_operand (builtexpr
,
3070 if (forcedexpr
!= name
)
3072 VN_INFO_GET (forcedexpr
)->valnum
= VN_INFO (name
)->valnum
;
3073 VN_INFO (forcedexpr
)->value_id
= VN_INFO (name
)->value_id
;
3078 gimple_stmt_iterator gsi
;
3079 gsi
= gsi_start (stmts
);
3080 for (; !gsi_end_p (gsi
); gsi_next (&gsi
))
3082 gimple stmt
= gsi_stmt (gsi
);
3083 VEC_safe_push (gimple
, heap
, inserted_exprs
, stmt
);
3084 gimple_set_plf (stmt
, NECESSARY
, false);
3086 gsi_insert_seq_on_edge (pred
, stmts
);
3088 avail
[bprime
->index
] = get_or_alloc_expr_for_name (forcedexpr
);
3092 /* If we didn't want a phi node, and we made insertions, we still have
3093 inserted new stuff, and thus return true. If we didn't want a phi node,
3094 and didn't make insertions, we haven't added anything new, so return
3096 if (nophi
&& insertions
)
3098 else if (nophi
&& !insertions
)
3101 /* Now build a phi for the new variable. */
3102 if (!prephitemp
|| TREE_TYPE (prephitemp
) != type
)
3104 prephitemp
= create_tmp_var (type
, "prephitmp");
3105 get_var_ann (prephitemp
);
3109 add_referenced_var (temp
);
3111 if (TREE_CODE (type
) == COMPLEX_TYPE
3112 || TREE_CODE (type
) == VECTOR_TYPE
)
3113 DECL_GIMPLE_REG_P (temp
) = 1;
3115 phi
= create_phi_node (temp
, block
);
3116 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3118 pre_expr ae
= avail
[pred
->src
->index
];
3119 gcc_assert (get_expr_type (ae
) == type
3120 || useless_type_conversion_p (type
, get_expr_type (ae
)));
3121 if (ae
->kind
== CONSTANT
)
3122 add_phi_arg (phi
, PRE_EXPR_CONSTANT (ae
), pred
);
3124 add_phi_arg (phi
, PRE_EXPR_NAME (avail
[pred
->src
->index
]), pred
);
3126 /* If the PHI node is already available, use it. */
3127 if ((res
= vn_phi_lookup (phi
)) != NULL_TREE
)
3129 gimple_stmt_iterator gsi
= gsi_for_stmt (phi
);
3130 remove_phi_node (&gsi
, true);
3132 add_to_value (val
, get_or_alloc_expr_for_name (res
));
3136 gimple_set_plf (phi
, NECESSARY
, false);
3137 VN_INFO_GET (gimple_phi_result (phi
))->valnum
= gimple_phi_result (phi
);
3138 VN_INFO (gimple_phi_result (phi
))->value_id
= val
;
3139 VEC_safe_push (gimple
, heap
, inserted_exprs
, phi
);
3141 newphi
= get_or_alloc_expr_for_name (gimple_phi_result (phi
));
3142 add_to_value (val
, newphi
);
3144 /* The value should *not* exist in PHI_GEN, or else we wouldn't be doing
3145 this insertion, since we test for the existence of this value in PHI_GEN
3146 before proceeding with the partial redundancy checks in insert_aux.
3148 The value may exist in AVAIL_OUT, in particular, it could be represented
3149 by the expression we are trying to eliminate, in which case we want the
3150 replacement to occur. If it's not existing in AVAIL_OUT, we want it
3153 Similarly, to the PHI_GEN case, the value should not exist in NEW_SETS of
3154 this block, because if it did, it would have existed in our dominator's
3155 AVAIL_OUT, and would have been skipped due to the full redundancy check.
3158 bitmap_insert_into_set (PHI_GEN (block
), newphi
);
3159 bitmap_value_replace_in_set (AVAIL_OUT (block
),
3161 bitmap_insert_into_set (NEW_SETS (block
),
3164 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3166 fprintf (dump_file
, "Created phi ");
3167 print_gimple_stmt (dump_file
, phi
, 0, 0);
3168 fprintf (dump_file
, " in block %d\n", block
->index
);
3176 /* Perform insertion of partially redundant values.
3177 For BLOCK, do the following:
3178 1. Propagate the NEW_SETS of the dominator into the current block.
3179 If the block has multiple predecessors,
3180 2a. Iterate over the ANTIC expressions for the block to see if
3181 any of them are partially redundant.
3182 2b. If so, insert them into the necessary predecessors to make
3183 the expression fully redundant.
3184 2c. Insert a new PHI merging the values of the predecessors.
3185 2d. Insert the new PHI, and the new expressions, into the
3187 3. Recursively call ourselves on the dominator children of BLOCK.
3189 Steps 1, 2a, and 3 are done by insert_aux. 2b, 2c and 2d are done by
3190 do_regular_insertion and do_partial_insertion.
3195 do_regular_insertion (basic_block block
, basic_block dom
)
3197 bool new_stuff
= false;
3198 VEC (pre_expr
, heap
) *exprs
= sorted_array_from_bitmap_set (ANTIC_IN (block
));
3202 for (i
= 0; VEC_iterate (pre_expr
, exprs
, i
, expr
); i
++)
3204 if (expr
->kind
!= NAME
)
3208 bool by_some
= false;
3209 bool cant_insert
= false;
3210 bool all_same
= true;
3211 pre_expr first_s
= NULL
;
3214 pre_expr eprime
= NULL
;
3216 pre_expr edoubleprime
;
3218 val
= get_expr_value_id (expr
);
3219 if (bitmap_set_contains_value (PHI_GEN (block
), val
))
3221 if (bitmap_set_contains_value (AVAIL_OUT (dom
), val
))
3223 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3224 fprintf (dump_file
, "Found fully redundant value\n");
3228 avail
= XCNEWVEC (pre_expr
, last_basic_block
);
3229 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3231 unsigned int vprime
;
3233 /* We should never run insertion for the exit block
3234 and so not come across fake pred edges. */
3235 gcc_assert (!(pred
->flags
& EDGE_FAKE
));
3237 eprime
= phi_translate (expr
, ANTIC_IN (block
), NULL
,
3240 /* eprime will generally only be NULL if the
3241 value of the expression, translated
3242 through the PHI for this predecessor, is
3243 undefined. If that is the case, we can't
3244 make the expression fully redundant,
3245 because its value is undefined along a
3246 predecessor path. We can thus break out
3247 early because it doesn't matter what the
3248 rest of the results are. */
3255 eprime
= fully_constant_expression (eprime
);
3256 vprime
= get_expr_value_id (eprime
);
3257 edoubleprime
= bitmap_find_leader (AVAIL_OUT (bprime
),
3259 if (edoubleprime
== NULL
)
3261 avail
[bprime
->index
] = eprime
;
3266 avail
[bprime
->index
] = edoubleprime
;
3268 if (first_s
== NULL
)
3269 first_s
= edoubleprime
;
3270 else if (!pre_expr_eq (first_s
, edoubleprime
))
3274 /* If we can insert it, it's not the same value
3275 already existing along every predecessor, and
3276 it's defined by some predecessor, it is
3277 partially redundant. */
3278 if (!cant_insert
&& !all_same
&& by_some
&& dbg_cnt (treepre_insert
))
3280 if (insert_into_preds_of_block (block
, get_expression_id (expr
),
3284 /* If all edges produce the same value and that value is
3285 an invariant, then the PHI has the same value on all
3286 edges. Note this. */
3287 else if (!cant_insert
&& all_same
&& eprime
3288 && (edoubleprime
->kind
== CONSTANT
3289 || edoubleprime
->kind
== NAME
)
3290 && !value_id_constant_p (val
))
3294 bitmap_set_t exprset
= VEC_index (bitmap_set_t
,
3295 value_expressions
, val
);
3297 unsigned int new_val
= get_expr_value_id (edoubleprime
);
3298 FOR_EACH_EXPR_ID_IN_SET (exprset
, j
, bi
)
3300 pre_expr expr
= expression_for_id (j
);
3302 if (expr
->kind
== NAME
)
3304 vn_ssa_aux_t info
= VN_INFO (PRE_EXPR_NAME (expr
));
3305 /* Just reset the value id and valnum so it is
3306 the same as the constant we have discovered. */
3307 if (edoubleprime
->kind
== CONSTANT
)
3309 info
->valnum
= PRE_EXPR_CONSTANT (edoubleprime
);
3310 pre_stats
.constified
++;
3313 info
->valnum
= PRE_EXPR_NAME (edoubleprime
);
3314 info
->value_id
= new_val
;
3322 VEC_free (pre_expr
, heap
, exprs
);
3327 /* Perform insertion for partially anticipatable expressions. There
3328 is only one case we will perform insertion for these. This case is
3329 if the expression is partially anticipatable, and fully available.
3330 In this case, we know that putting it earlier will enable us to
3331 remove the later computation. */
3335 do_partial_partial_insertion (basic_block block
, basic_block dom
)
3337 bool new_stuff
= false;
3338 VEC (pre_expr
, heap
) *exprs
= sorted_array_from_bitmap_set (PA_IN (block
));
3342 for (i
= 0; VEC_iterate (pre_expr
, exprs
, i
, expr
); i
++)
3344 if (expr
->kind
!= NAME
)
3349 bool cant_insert
= false;
3352 pre_expr eprime
= NULL
;
3355 val
= get_expr_value_id (expr
);
3356 if (bitmap_set_contains_value (PHI_GEN (block
), val
))
3358 if (bitmap_set_contains_value (AVAIL_OUT (dom
), val
))
3361 avail
= XCNEWVEC (pre_expr
, last_basic_block
);
3362 FOR_EACH_EDGE (pred
, ei
, block
->preds
)
3364 unsigned int vprime
;
3365 pre_expr edoubleprime
;
3367 /* We should never run insertion for the exit block
3368 and so not come across fake pred edges. */
3369 gcc_assert (!(pred
->flags
& EDGE_FAKE
));
3371 eprime
= phi_translate (expr
, ANTIC_IN (block
),
3375 /* eprime will generally only be NULL if the
3376 value of the expression, translated
3377 through the PHI for this predecessor, is
3378 undefined. If that is the case, we can't
3379 make the expression fully redundant,
3380 because its value is undefined along a
3381 predecessor path. We can thus break out
3382 early because it doesn't matter what the
3383 rest of the results are. */
3390 eprime
= fully_constant_expression (eprime
);
3391 vprime
= get_expr_value_id (eprime
);
3392 edoubleprime
= bitmap_find_leader (AVAIL_OUT (bprime
),
3394 if (edoubleprime
== NULL
)
3400 avail
[bprime
->index
] = edoubleprime
;
3404 /* If we can insert it, it's not the same value
3405 already existing along every predecessor, and
3406 it's defined by some predecessor, it is
3407 partially redundant. */
3408 if (!cant_insert
&& by_all
&& dbg_cnt (treepre_insert
))
3410 pre_stats
.pa_insert
++;
3411 if (insert_into_preds_of_block (block
, get_expression_id (expr
),
3419 VEC_free (pre_expr
, heap
, exprs
);
3424 insert_aux (basic_block block
)
3427 bool new_stuff
= false;
3432 dom
= get_immediate_dominator (CDI_DOMINATORS
, block
);
3437 bitmap_set_t newset
= NEW_SETS (dom
);
3440 /* Note that we need to value_replace both NEW_SETS, and
3441 AVAIL_OUT. For both the case of NEW_SETS, the value may be
3442 represented by some non-simple expression here that we want
3443 to replace it with. */
3444 FOR_EACH_EXPR_ID_IN_SET (newset
, i
, bi
)
3446 pre_expr expr
= expression_for_id (i
);
3447 bitmap_value_replace_in_set (NEW_SETS (block
), expr
);
3448 bitmap_value_replace_in_set (AVAIL_OUT (block
), expr
);
3451 if (!single_pred_p (block
))
3453 new_stuff
|= do_regular_insertion (block
, dom
);
3454 if (do_partial_partial
)
3455 new_stuff
|= do_partial_partial_insertion (block
, dom
);
3459 for (son
= first_dom_son (CDI_DOMINATORS
, block
);
3461 son
= next_dom_son (CDI_DOMINATORS
, son
))
3463 new_stuff
|= insert_aux (son
);
3469 /* Perform insertion of partially redundant values. */
3474 bool new_stuff
= true;
3476 int num_iterations
= 0;
3479 NEW_SETS (bb
) = bitmap_set_new ();
3484 new_stuff
= insert_aux (ENTRY_BLOCK_PTR
);
3486 statistics_histogram_event (cfun
, "insert iterations", num_iterations
);
3490 /* Add OP to EXP_GEN (block), and possibly to the maximal set if it is
3491 not defined by a phi node.
3492 PHI nodes can't go in the maximal sets because they are not in
3493 TMP_GEN, so it is possible to get into non-monotonic situations
3494 during ANTIC calculation, because it will *add* bits. */
3497 add_to_exp_gen (basic_block block
, tree op
)
3502 if (TREE_CODE (op
) == SSA_NAME
&& ssa_undefined_value_p (op
))
3504 result
= get_or_alloc_expr_for_name (op
);
3505 bitmap_value_insert_into_set (EXP_GEN (block
), result
);
3506 if (TREE_CODE (op
) != SSA_NAME
3507 || gimple_code (SSA_NAME_DEF_STMT (op
)) != GIMPLE_PHI
)
3508 bitmap_value_insert_into_set (maximal_set
, result
);
3512 /* Create value ids for PHI in BLOCK. */
3515 make_values_for_phi (gimple phi
, basic_block block
)
3517 tree result
= gimple_phi_result (phi
);
3519 /* We have no need for virtual phis, as they don't represent
3520 actual computations. */
3521 if (is_gimple_reg (result
))
3523 pre_expr e
= get_or_alloc_expr_for_name (result
);
3524 add_to_value (get_expr_value_id (e
), e
);
3525 bitmap_insert_into_set (PHI_GEN (block
), e
);
3526 bitmap_value_insert_into_set (AVAIL_OUT (block
), e
);
3530 /* Compute the AVAIL set for all basic blocks.
3532 This function performs value numbering of the statements in each basic
3533 block. The AVAIL sets are built from information we glean while doing
3534 this value numbering, since the AVAIL sets contain only one entry per
3537 AVAIL_IN[BLOCK] = AVAIL_OUT[dom(BLOCK)].
3538 AVAIL_OUT[BLOCK] = AVAIL_IN[BLOCK] U PHI_GEN[BLOCK] U TMP_GEN[BLOCK]. */
3541 compute_avail (void)
3544 basic_block block
, son
;
3545 basic_block
*worklist
;
3549 /* For arguments with default definitions, we pretend they are
3550 defined in the entry block. */
3551 for (param
= DECL_ARGUMENTS (current_function_decl
);
3553 param
= TREE_CHAIN (param
))
3555 if (gimple_default_def (cfun
, param
) != NULL
)
3557 tree def
= gimple_default_def (cfun
, param
);
3558 pre_expr e
= get_or_alloc_expr_for_name (def
);
3560 add_to_value (get_expr_value_id (e
), e
);
3563 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR
), e
);
3564 bitmap_value_insert_into_set (maximal_set
, e
);
3566 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR
), e
);
3570 /* Likewise for the static chain decl. */
3571 if (cfun
->static_chain_decl
)
3573 param
= cfun
->static_chain_decl
;
3574 if (gimple_default_def (cfun
, param
) != NULL
)
3576 tree def
= gimple_default_def (cfun
, param
);
3577 pre_expr e
= get_or_alloc_expr_for_name (def
);
3579 add_to_value (get_expr_value_id (e
), e
);
3582 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR
), e
);
3583 bitmap_value_insert_into_set (maximal_set
, e
);
3585 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR
), e
);
3589 /* Allocate the worklist. */
3590 worklist
= XNEWVEC (basic_block
, n_basic_blocks
);
3592 /* Seed the algorithm by putting the dominator children of the entry
3593 block on the worklist. */
3594 for (son
= first_dom_son (CDI_DOMINATORS
, ENTRY_BLOCK_PTR
);
3596 son
= next_dom_son (CDI_DOMINATORS
, son
))
3597 worklist
[sp
++] = son
;
3599 /* Loop until the worklist is empty. */
3602 gimple_stmt_iterator gsi
;
3605 unsigned int stmt_uid
= 1;
3607 /* Pick a block from the worklist. */
3608 block
= worklist
[--sp
];
3610 /* Initially, the set of available values in BLOCK is that of
3611 its immediate dominator. */
3612 dom
= get_immediate_dominator (CDI_DOMINATORS
, block
);
3614 bitmap_set_copy (AVAIL_OUT (block
), AVAIL_OUT (dom
));
3616 /* Generate values for PHI nodes. */
3617 for (gsi
= gsi_start_phis (block
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3618 make_values_for_phi (gsi_stmt (gsi
), block
);
3620 /* Now compute value numbers and populate value sets with all
3621 the expressions computed in BLOCK. */
3622 for (gsi
= gsi_start_bb (block
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3627 stmt
= gsi_stmt (gsi
);
3628 gimple_set_uid (stmt
, stmt_uid
++);
3630 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_DEF
)
3632 pre_expr e
= get_or_alloc_expr_for_name (op
);
3634 add_to_value (get_expr_value_id (e
), e
);
3637 bitmap_insert_into_set (TMP_GEN (block
), e
);
3638 bitmap_value_insert_into_set (maximal_set
, e
);
3640 bitmap_value_insert_into_set (AVAIL_OUT (block
), e
);
3643 if (gimple_has_volatile_ops (stmt
)
3644 || stmt_could_throw_p (stmt
))
3647 switch (gimple_code (stmt
))
3650 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
)
3651 add_to_exp_gen (block
, op
);
3658 vn_reference_op_t vro
;
3659 pre_expr result
= NULL
;
3660 VEC(vn_reference_op_s
, heap
) *ops
= NULL
;
3662 if (!can_value_number_call (stmt
))
3665 copy_reference_ops_from_call (stmt
, &ops
);
3666 vn_reference_lookup_pieces (shared_vuses_from_stmt (stmt
),
3668 VEC_free (vn_reference_op_s
, heap
, ops
);
3672 for (i
= 0; VEC_iterate (vn_reference_op_s
,
3676 if (vro
->op0
&& TREE_CODE (vro
->op0
) == SSA_NAME
)
3677 add_to_exp_gen (block
, vro
->op0
);
3678 if (vro
->op1
&& TREE_CODE (vro
->op1
) == SSA_NAME
)
3679 add_to_exp_gen (block
, vro
->op1
);
3680 if (vro
->op2
&& TREE_CODE (vro
->op2
) == SSA_NAME
)
3681 add_to_exp_gen (block
, vro
->op2
);
3683 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3684 result
->kind
= REFERENCE
;
3686 PRE_EXPR_REFERENCE (result
) = ref
;
3688 get_or_alloc_expression_id (result
);
3689 add_to_value (get_expr_value_id (result
), result
);
3692 bitmap_value_insert_into_set (EXP_GEN (block
),
3694 bitmap_value_insert_into_set (maximal_set
, result
);
3701 pre_expr result
= NULL
;
3702 switch (TREE_CODE_CLASS (gimple_assign_rhs_code (stmt
)))
3705 if (is_exception_related (stmt
))
3712 vn_nary_op_lookup_pieces (gimple_num_ops (stmt
) - 1,
3713 gimple_assign_rhs_code (stmt
),
3714 gimple_expr_type (stmt
),
3715 gimple_assign_rhs1 (stmt
),
3716 gimple_assign_rhs2 (stmt
),
3717 NULL_TREE
, NULL_TREE
, &nary
);
3722 for (i
= 0; i
< nary
->length
; i
++)
3723 if (TREE_CODE (nary
->op
[i
]) == SSA_NAME
)
3724 add_to_exp_gen (block
, nary
->op
[i
]);
3726 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3727 result
->kind
= NARY
;
3729 PRE_EXPR_NARY (result
) = nary
;
3733 case tcc_declaration
:
3738 vn_reference_op_t vro
;
3740 vn_reference_lookup (gimple_assign_rhs1 (stmt
),
3741 shared_vuses_from_stmt (stmt
),
3746 for (i
= 0; VEC_iterate (vn_reference_op_s
,
3750 if (vro
->op0
&& TREE_CODE (vro
->op0
) == SSA_NAME
)
3751 add_to_exp_gen (block
, vro
->op0
);
3752 if (vro
->op1
&& TREE_CODE (vro
->op1
) == SSA_NAME
)
3753 add_to_exp_gen (block
, vro
->op1
);
3754 if (vro
->op2
&& TREE_CODE (vro
->op2
) == SSA_NAME
)
3755 add_to_exp_gen (block
, vro
->op2
);
3757 result
= (pre_expr
) pool_alloc (pre_expr_pool
);
3758 result
->kind
= REFERENCE
;
3760 PRE_EXPR_REFERENCE (result
) = ref
;
3765 /* For any other statement that we don't
3766 recognize, simply add all referenced
3767 SSA_NAMEs to EXP_GEN. */
3768 FOR_EACH_SSA_TREE_OPERAND (op
, stmt
, iter
, SSA_OP_USE
)
3769 add_to_exp_gen (block
, op
);
3773 get_or_alloc_expression_id (result
);
3774 add_to_value (get_expr_value_id (result
), result
);
3777 bitmap_value_insert_into_set (EXP_GEN (block
), result
);
3778 bitmap_value_insert_into_set (maximal_set
, result
);
3788 /* Put the dominator children of BLOCK on the worklist of blocks
3789 to compute available sets for. */
3790 for (son
= first_dom_son (CDI_DOMINATORS
, block
);
3792 son
= next_dom_son (CDI_DOMINATORS
, son
))
3793 worklist
[sp
++] = son
;
3799 /* Insert the expression for SSA_VN that SCCVN thought would be simpler
3800 than the available expressions for it. The insertion point is
3801 right before the first use in STMT. Returns the SSA_NAME that should
3802 be used for replacement. */
3805 do_SCCVN_insertion (gimple stmt
, tree ssa_vn
)
3807 basic_block bb
= gimple_bb (stmt
);
3808 gimple_stmt_iterator gsi
;
3809 gimple_seq stmts
= NULL
;
3813 /* First create a value expression from the expression we want
3814 to insert and associate it with the value handle for SSA_VN. */
3815 e
= get_or_alloc_expr_for (vn_get_expr_for (ssa_vn
));
3819 /* Then use create_expression_by_pieces to generate a valid
3820 expression to insert at this point of the IL stream. */
3821 expr
= create_expression_by_pieces (bb
, e
, &stmts
, stmt
, NULL
);
3822 if (expr
== NULL_TREE
)
3824 gsi
= gsi_for_stmt (stmt
);
3825 gsi_insert_seq_before (&gsi
, stmts
, GSI_SAME_STMT
);
3830 /* Eliminate fully redundant computations. */
3836 unsigned int todo
= 0;
3840 gimple_stmt_iterator i
;
3842 for (i
= gsi_start_bb (b
); !gsi_end_p (i
); gsi_next (&i
))
3844 gimple stmt
= gsi_stmt (i
);
3846 /* Lookup the RHS of the expression, see if we have an
3847 available computation for it. If so, replace the RHS with
3848 the available computation. */
3849 if (gimple_has_lhs (stmt
)
3850 && TREE_CODE (gimple_get_lhs (stmt
)) == SSA_NAME
3851 && !gimple_assign_ssa_name_copy_p (stmt
)
3852 && (!gimple_assign_single_p (stmt
)
3853 || !is_gimple_min_invariant (gimple_assign_rhs1 (stmt
)))
3854 && !gimple_has_volatile_ops (stmt
)
3855 && !has_zero_uses (gimple_get_lhs (stmt
)))
3857 tree lhs
= gimple_get_lhs (stmt
);
3858 tree rhs
= NULL_TREE
;
3860 pre_expr lhsexpr
= get_or_alloc_expr_for_name (lhs
);
3861 pre_expr sprimeexpr
;
3863 if (gimple_assign_single_p (stmt
))
3864 rhs
= gimple_assign_rhs1 (stmt
);
3866 sprimeexpr
= bitmap_find_leader (AVAIL_OUT (b
),
3867 get_expr_value_id (lhsexpr
),
3872 if (sprimeexpr
->kind
== CONSTANT
)
3873 sprime
= PRE_EXPR_CONSTANT (sprimeexpr
);
3874 else if (sprimeexpr
->kind
== NAME
)
3875 sprime
= PRE_EXPR_NAME (sprimeexpr
);
3880 /* If there is no existing leader but SCCVN knows this
3881 value is constant, use that constant. */
3882 if (!sprime
&& is_gimple_min_invariant (VN_INFO (lhs
)->valnum
))
3884 sprime
= fold_convert (TREE_TYPE (lhs
),
3885 VN_INFO (lhs
)->valnum
);
3887 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3889 fprintf (dump_file
, "Replaced ");
3890 print_gimple_expr (dump_file
, stmt
, 0, 0);
3891 fprintf (dump_file
, " with ");
3892 print_generic_expr (dump_file
, sprime
, 0);
3893 fprintf (dump_file
, " in ");
3894 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3896 pre_stats
.eliminations
++;
3897 propagate_tree_value_into_stmt (&i
, sprime
);
3898 stmt
= gsi_stmt (i
);
3903 /* If there is no existing usable leader but SCCVN thinks
3904 it has an expression it wants to use as replacement,
3906 if (!sprime
|| sprime
== lhs
)
3908 tree val
= VN_INFO (lhs
)->valnum
;
3910 && TREE_CODE (val
) == SSA_NAME
3911 && VN_INFO (val
)->needs_insertion
3912 && can_PRE_operation (vn_get_expr_for (val
)))
3913 sprime
= do_SCCVN_insertion (stmt
, val
);
3917 && (rhs
== NULL_TREE
3918 || TREE_CODE (rhs
) != SSA_NAME
3919 || may_propagate_copy (rhs
, sprime
)))
3921 gcc_assert (sprime
!= rhs
);
3923 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3925 fprintf (dump_file
, "Replaced ");
3926 print_gimple_expr (dump_file
, stmt
, 0, 0);
3927 fprintf (dump_file
, " with ");
3928 print_generic_expr (dump_file
, sprime
, 0);
3929 fprintf (dump_file
, " in ");
3930 print_gimple_stmt (dump_file
, stmt
, 0, 0);
3933 if (TREE_CODE (sprime
) == SSA_NAME
)
3934 gimple_set_plf (SSA_NAME_DEF_STMT (sprime
),
3936 /* We need to make sure the new and old types actually match,
3937 which may require adding a simple cast, which fold_convert
3939 if ((!rhs
|| TREE_CODE (rhs
) != SSA_NAME
)
3940 && !useless_type_conversion_p (gimple_expr_type (stmt
),
3941 TREE_TYPE (sprime
)))
3942 sprime
= fold_convert (gimple_expr_type (stmt
), sprime
);
3944 pre_stats
.eliminations
++;
3945 propagate_tree_value_into_stmt (&i
, sprime
);
3946 stmt
= gsi_stmt (i
);
3949 /* If we removed EH side effects from the statement, clean
3950 its EH information. */
3951 if (maybe_clean_or_replace_eh_stmt (stmt
, stmt
))
3953 bitmap_set_bit (need_eh_cleanup
,
3954 gimple_bb (stmt
)->index
);
3955 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3956 fprintf (dump_file
, " Removed EH side effects.\n");
3960 /* Visit COND_EXPRs and fold the comparison with the
3961 available value-numbers. */
3962 else if (gimple_code (stmt
) == GIMPLE_COND
)
3964 tree op0
= gimple_cond_lhs (stmt
);
3965 tree op1
= gimple_cond_rhs (stmt
);
3968 if (TREE_CODE (op0
) == SSA_NAME
)
3969 op0
= VN_INFO (op0
)->valnum
;
3970 if (TREE_CODE (op1
) == SSA_NAME
)
3971 op1
= VN_INFO (op1
)->valnum
;
3972 result
= fold_binary (gimple_cond_code (stmt
), boolean_type_node
,
3974 if (result
&& TREE_CODE (result
) == INTEGER_CST
)
3976 if (integer_zerop (result
))
3977 gimple_cond_make_false (stmt
);
3979 gimple_cond_make_true (stmt
);
3981 todo
= TODO_cleanup_cfg
;
3990 /* Borrow a bit of tree-ssa-dce.c for the moment.
3991 XXX: In 4.1, we should be able to just run a DCE pass after PRE, though
3992 this may be a bit faster, and we may want critical edges kept split. */
3994 /* If OP's defining statement has not already been determined to be necessary,
3995 mark that statement necessary. Return the stmt, if it is newly
3998 static inline gimple
3999 mark_operand_necessary (tree op
)
4005 if (TREE_CODE (op
) != SSA_NAME
)
4008 stmt
= SSA_NAME_DEF_STMT (op
);
4011 if (gimple_plf (stmt
, NECESSARY
)
4012 || gimple_nop_p (stmt
))
4015 gimple_set_plf (stmt
, NECESSARY
, true);
4019 /* Because we don't follow exactly the standard PRE algorithm, and decide not
4020 to insert PHI nodes sometimes, and because value numbering of casts isn't
4021 perfect, we sometimes end up inserting dead code. This simple DCE-like
4022 pass removes any insertions we made that weren't actually used. */
4025 remove_dead_inserted_code (void)
4027 VEC(gimple
,heap
) *worklist
= NULL
;
4031 worklist
= VEC_alloc (gimple
, heap
, VEC_length (gimple
, inserted_exprs
));
4032 for (i
= 0; VEC_iterate (gimple
, inserted_exprs
, i
, t
); i
++)
4034 if (gimple_plf (t
, NECESSARY
))
4035 VEC_quick_push (gimple
, worklist
, t
);
4037 while (VEC_length (gimple
, worklist
) > 0)
4039 t
= VEC_pop (gimple
, worklist
);
4041 /* PHI nodes are somewhat special in that each PHI alternative has
4042 data and control dependencies. All the statements feeding the
4043 PHI node's arguments are always necessary. */
4044 if (gimple_code (t
) == GIMPLE_PHI
)
4048 VEC_reserve (gimple
, heap
, worklist
, gimple_phi_num_args (t
));
4049 for (k
= 0; k
< gimple_phi_num_args (t
); k
++)
4051 tree arg
= PHI_ARG_DEF (t
, k
);
4052 if (TREE_CODE (arg
) == SSA_NAME
)
4054 gimple n
= mark_operand_necessary (arg
);
4056 VEC_quick_push (gimple
, worklist
, n
);
4062 /* Propagate through the operands. Examine all the USE, VUSE and
4063 VDEF operands in this statement. Mark all the statements
4064 which feed this statement's uses as necessary. */
4068 /* The operands of VDEF expressions are also needed as they
4069 represent potential definitions that may reach this
4070 statement (VDEF operands allow us to follow def-def
4073 FOR_EACH_SSA_TREE_OPERAND (use
, t
, iter
, SSA_OP_ALL_USES
)
4075 gimple n
= mark_operand_necessary (use
);
4077 VEC_safe_push (gimple
, heap
, worklist
, n
);
4082 for (i
= 0; VEC_iterate (gimple
, inserted_exprs
, i
, t
); i
++)
4084 if (!gimple_plf (t
, NECESSARY
))
4086 gimple_stmt_iterator gsi
;
4088 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4090 fprintf (dump_file
, "Removing unnecessary insertion:");
4091 print_gimple_stmt (dump_file
, t
, 0, 0);
4094 gsi
= gsi_for_stmt (t
);
4095 if (gimple_code (t
) == GIMPLE_PHI
)
4096 remove_phi_node (&gsi
, true);
4098 gsi_remove (&gsi
, true);
4102 VEC_free (gimple
, heap
, worklist
);
4105 /* Initialize data structures used by PRE. */
4108 init_pre (bool do_fre
)
4112 next_expression_id
= 1;
4114 VEC_safe_push (pre_expr
, heap
, expressions
, NULL
);
4115 value_expressions
= VEC_alloc (bitmap_set_t
, heap
, get_max_value_id () + 1);
4116 VEC_safe_grow_cleared (bitmap_set_t
, heap
, value_expressions
,
4117 get_max_value_id() + 1);
4121 inserted_exprs
= NULL
;
4122 need_creation
= NULL
;
4123 pretemp
= NULL_TREE
;
4124 storetemp
= NULL_TREE
;
4125 prephitemp
= NULL_TREE
;
4127 connect_infinite_loops_to_exit ();
4128 memset (&pre_stats
, 0, sizeof (pre_stats
));
4131 postorder
= XNEWVEC (int, n_basic_blocks
- NUM_FIXED_BLOCKS
);
4132 post_order_compute (postorder
, false, false);
4135 bb
->aux
= XCNEWVEC (struct bb_bitmap_sets
, 1);
4137 calculate_dominance_info (CDI_POST_DOMINATORS
);
4138 calculate_dominance_info (CDI_DOMINATORS
);
4140 bitmap_obstack_initialize (&grand_bitmap_obstack
);
4141 phi_translate_table
= htab_create (5110, expr_pred_trans_hash
,
4142 expr_pred_trans_eq
, free
);
4143 expression_to_id
= htab_create (num_ssa_names
* 3,
4146 seen_during_translate
= BITMAP_ALLOC (&grand_bitmap_obstack
);
4147 bitmap_set_pool
= create_alloc_pool ("Bitmap sets",
4148 sizeof (struct bitmap_set
), 30);
4149 pre_expr_pool
= create_alloc_pool ("pre_expr nodes",
4150 sizeof (struct pre_expr_d
), 30);
4153 EXP_GEN (bb
) = bitmap_set_new ();
4154 PHI_GEN (bb
) = bitmap_set_new ();
4155 TMP_GEN (bb
) = bitmap_set_new ();
4156 AVAIL_OUT (bb
) = bitmap_set_new ();
4158 maximal_set
= in_fre
? NULL
: bitmap_set_new ();
4160 need_eh_cleanup
= BITMAP_ALLOC (NULL
);
4164 /* Deallocate data structures used by PRE. */
4167 fini_pre (bool do_fre
)
4172 VEC_free (bitmap_set_t
, heap
, value_expressions
);
4173 VEC_free (gimple
, heap
, inserted_exprs
);
4174 VEC_free (gimple
, heap
, need_creation
);
4175 bitmap_obstack_release (&grand_bitmap_obstack
);
4176 free_alloc_pool (bitmap_set_pool
);
4177 free_alloc_pool (pre_expr_pool
);
4178 htab_delete (phi_translate_table
);
4179 htab_delete (expression_to_id
);
4187 free_dominance_info (CDI_POST_DOMINATORS
);
4189 if (!bitmap_empty_p (need_eh_cleanup
))
4191 gimple_purge_all_dead_eh_edges (need_eh_cleanup
);
4192 cleanup_tree_cfg ();
4195 BITMAP_FREE (need_eh_cleanup
);
4198 loop_optimizer_finalize ();
4201 /* Main entry point to the SSA-PRE pass. DO_FRE is true if the caller
4202 only wants to do full redundancy elimination. */
4205 execute_pre (bool do_fre ATTRIBUTE_UNUSED
)
4207 unsigned int todo
= 0;
4209 do_partial_partial
= optimize
> 2;
4211 /* This has to happen before SCCVN runs because
4212 loop_optimizer_init may create new phis, etc. */
4214 loop_optimizer_init (LOOPS_NORMAL
);
4216 if (!run_scc_vn (do_fre
))
4220 remove_dead_inserted_code ();
4221 loop_optimizer_finalize ();
4229 /* Collect and value number expressions computed in each basic block. */
4232 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
4238 print_bitmap_set (dump_file
, EXP_GEN (bb
), "exp_gen", bb
->index
);
4239 print_bitmap_set (dump_file
, TMP_GEN (bb
), "tmp_gen",
4241 print_bitmap_set (dump_file
, AVAIL_OUT (bb
), "avail_out",
4246 /* Insert can get quite slow on an incredibly large number of basic
4247 blocks due to some quadratic behavior. Until this behavior is
4248 fixed, don't run it when he have an incredibly large number of
4249 bb's. If we aren't going to run insert, there is no point in
4250 computing ANTIC, either, even though it's plenty fast. */
4251 if (!do_fre
&& n_basic_blocks
< 4000)
4257 /* Remove all the redundant expressions. */
4258 todo
|= eliminate ();
4260 statistics_counter_event (cfun
, "Insertions", pre_stats
.insertions
);
4261 statistics_counter_event (cfun
, "PA inserted", pre_stats
.pa_insert
);
4262 statistics_counter_event (cfun
, "New PHIs", pre_stats
.phis
);
4263 statistics_counter_event (cfun
, "Eliminated", pre_stats
.eliminations
);
4264 statistics_counter_event (cfun
, "Constified", pre_stats
.constified
);
4266 /* Make sure to remove fake edges before committing our inserts.
4267 This makes sure we don't end up with extra critical edges that
4268 we would need to split. */
4269 remove_fake_exit_edges ();
4270 gsi_commit_edge_inserts ();
4272 clear_expression_ids ();
4275 remove_dead_inserted_code ();
4282 /* Gate and execute functions for PRE. */
4287 return TODO_rebuild_alias
| execute_pre (false);
4293 /* PRE tends to generate bigger code. */
4294 return flag_tree_pre
!= 0 && optimize_function_for_speed_p (cfun
);
4297 struct gimple_opt_pass pass_pre
=
4302 gate_pre
, /* gate */
4303 do_pre
, /* execute */
4306 0, /* static_pass_number */
4307 TV_TREE_PRE
, /* tv_id */
4308 PROP_no_crit_edges
| PROP_cfg
4309 | PROP_ssa
| PROP_alias
, /* properties_required */
4310 0, /* properties_provided */
4311 0, /* properties_destroyed */
4312 0, /* todo_flags_start */
4313 TODO_update_ssa_only_virtuals
| TODO_dump_func
| TODO_ggc_collect
4314 | TODO_verify_ssa
/* todo_flags_finish */
4319 /* Gate and execute functions for FRE. */
4324 return execute_pre (true);
4330 return flag_tree_fre
!= 0;
4333 struct gimple_opt_pass pass_fre
=
4338 gate_fre
, /* gate */
4339 execute_fre
, /* execute */
4342 0, /* static_pass_number */
4343 TV_TREE_FRE
, /* tv_id */
4344 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
4345 0, /* properties_provided */
4346 0, /* properties_destroyed */
4347 0, /* todo_flags_start */
4348 TODO_dump_func
| TODO_ggc_collect
| TODO_verify_ssa
/* todo_flags_finish */