New syntax for -fsanitize-recover.
[gcc.git] / gcc / tree-ssa-pre.c
1 /* SSA-PRE for trees.
2 Copyright (C) 2001-2014 Free Software Foundation, Inc.
3 Contributed by Daniel Berlin <dan@dberlin.org> and Steven Bosscher
4 <stevenb@suse.de>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "basic-block.h"
28 #include "gimple-pretty-print.h"
29 #include "tree-inline.h"
30 #include "inchash.h"
31 #include "hash-table.h"
32 #include "tree-ssa-alias.h"
33 #include "internal-fn.h"
34 #include "gimple-fold.h"
35 #include "tree-eh.h"
36 #include "gimple-expr.h"
37 #include "is-a.h"
38 #include "gimple.h"
39 #include "gimplify.h"
40 #include "gimple-iterator.h"
41 #include "gimplify-me.h"
42 #include "gimple-ssa.h"
43 #include "tree-cfg.h"
44 #include "tree-phinodes.h"
45 #include "ssa-iterators.h"
46 #include "stringpool.h"
47 #include "tree-ssanames.h"
48 #include "tree-ssa-loop.h"
49 #include "tree-into-ssa.h"
50 #include "expr.h"
51 #include "tree-dfa.h"
52 #include "tree-ssa.h"
53 #include "tree-iterator.h"
54 #include "alloc-pool.h"
55 #include "obstack.h"
56 #include "tree-pass.h"
57 #include "flags.h"
58 #include "langhooks.h"
59 #include "cfgloop.h"
60 #include "tree-ssa-sccvn.h"
61 #include "tree-scalar-evolution.h"
62 #include "params.h"
63 #include "dbgcnt.h"
64 #include "domwalk.h"
65 #include "ipa-prop.h"
66 #include "tree-ssa-propagate.h"
67 #include "ipa-utils.h"
68
69 /* TODO:
70
71 1. Avail sets can be shared by making an avail_find_leader that
72 walks up the dominator tree and looks in those avail sets.
73 This might affect code optimality, it's unclear right now.
74 2. Strength reduction can be performed by anticipating expressions
75 we can repair later on.
76 3. We can do back-substitution or smarter value numbering to catch
77 commutative expressions split up over multiple statements.
78 */
79
80 /* For ease of terminology, "expression node" in the below refers to
81 every expression node but GIMPLE_ASSIGN, because GIMPLE_ASSIGNs
82 represent the actual statement containing the expressions we care about,
83 and we cache the value number by putting it in the expression. */
84
85 /* Basic algorithm
86
87 First we walk the statements to generate the AVAIL sets, the
88 EXP_GEN sets, and the tmp_gen sets. EXP_GEN sets represent the
89 generation of values/expressions by a given block. We use them
90 when computing the ANTIC sets. The AVAIL sets consist of
91 SSA_NAME's that represent values, so we know what values are
92 available in what blocks. AVAIL is a forward dataflow problem. In
93 SSA, values are never killed, so we don't need a kill set, or a
94 fixpoint iteration, in order to calculate the AVAIL sets. In
95 traditional parlance, AVAIL sets tell us the downsafety of the
96 expressions/values.
97
98 Next, we generate the ANTIC sets. These sets represent the
99 anticipatable expressions. ANTIC is a backwards dataflow
100 problem. An expression is anticipatable in a given block if it could
101 be generated in that block. This means that if we had to perform
102 an insertion in that block, of the value of that expression, we
103 could. Calculating the ANTIC sets requires phi translation of
104 expressions, because the flow goes backwards through phis. We must
105 iterate to a fixpoint of the ANTIC sets, because we have a kill
106 set. Even in SSA form, values are not live over the entire
107 function, only from their definition point onwards. So we have to
108 remove values from the ANTIC set once we go past the definition
109 point of the leaders that make them up.
110 compute_antic/compute_antic_aux performs this computation.
111
112 Third, we perform insertions to make partially redundant
113 expressions fully redundant.
114
115 An expression is partially redundant (excluding partial
116 anticipation) if:
117
118 1. It is AVAIL in some, but not all, of the predecessors of a
119 given block.
120 2. It is ANTIC in all the predecessors.
121
122 In order to make it fully redundant, we insert the expression into
123 the predecessors where it is not available, but is ANTIC.
124
125 For the partial anticipation case, we only perform insertion if it
126 is partially anticipated in some block, and fully available in all
127 of the predecessors.
128
129 insert/insert_aux/do_regular_insertion/do_partial_partial_insertion
130 performs these steps.
131
132 Fourth, we eliminate fully redundant expressions.
133 This is a simple statement walk that replaces redundant
134 calculations with the now available values. */
135
136 /* Representations of value numbers:
137
138 Value numbers are represented by a representative SSA_NAME. We
139 will create fake SSA_NAME's in situations where we need a
140 representative but do not have one (because it is a complex
141 expression). In order to facilitate storing the value numbers in
142 bitmaps, and keep the number of wasted SSA_NAME's down, we also
143 associate a value_id with each value number, and create full blown
144 ssa_name's only where we actually need them (IE in operands of
145 existing expressions).
146
147 Theoretically you could replace all the value_id's with
148 SSA_NAME_VERSION, but this would allocate a large number of
149 SSA_NAME's (which are each > 30 bytes) just to get a 4 byte number.
150 It would also require an additional indirection at each point we
151 use the value id. */
152
153 /* Representation of expressions on value numbers:
154
155 Expressions consisting of value numbers are represented the same
156 way as our VN internally represents them, with an additional
157 "pre_expr" wrapping around them in order to facilitate storing all
158 of the expressions in the same sets. */
159
160 /* Representation of sets:
161
162 The dataflow sets do not need to be sorted in any particular order
163 for the majority of their lifetime, are simply represented as two
164 bitmaps, one that keeps track of values present in the set, and one
165 that keeps track of expressions present in the set.
166
167 When we need them in topological order, we produce it on demand by
168 transforming the bitmap into an array and sorting it into topo
169 order. */
170
171 /* Type of expression, used to know which member of the PRE_EXPR union
172 is valid. */
173
174 enum pre_expr_kind
175 {
176 NAME,
177 NARY,
178 REFERENCE,
179 CONSTANT
180 };
181
182 typedef union pre_expr_union_d
183 {
184 tree name;
185 tree constant;
186 vn_nary_op_t nary;
187 vn_reference_t reference;
188 } pre_expr_union;
189
190 typedef struct pre_expr_d : typed_noop_remove <pre_expr_d>
191 {
192 enum pre_expr_kind kind;
193 unsigned int id;
194 pre_expr_union u;
195
196 /* hash_table support. */
197 typedef pre_expr_d value_type;
198 typedef pre_expr_d compare_type;
199 static inline hashval_t hash (const pre_expr_d *);
200 static inline int equal (const pre_expr_d *, const pre_expr_d *);
201 } *pre_expr;
202
203 #define PRE_EXPR_NAME(e) (e)->u.name
204 #define PRE_EXPR_NARY(e) (e)->u.nary
205 #define PRE_EXPR_REFERENCE(e) (e)->u.reference
206 #define PRE_EXPR_CONSTANT(e) (e)->u.constant
207
208 /* Compare E1 and E1 for equality. */
209
210 inline int
211 pre_expr_d::equal (const value_type *e1, const compare_type *e2)
212 {
213 if (e1->kind != e2->kind)
214 return false;
215
216 switch (e1->kind)
217 {
218 case CONSTANT:
219 return vn_constant_eq_with_type (PRE_EXPR_CONSTANT (e1),
220 PRE_EXPR_CONSTANT (e2));
221 case NAME:
222 return PRE_EXPR_NAME (e1) == PRE_EXPR_NAME (e2);
223 case NARY:
224 return vn_nary_op_eq (PRE_EXPR_NARY (e1), PRE_EXPR_NARY (e2));
225 case REFERENCE:
226 return vn_reference_eq (PRE_EXPR_REFERENCE (e1),
227 PRE_EXPR_REFERENCE (e2));
228 default:
229 gcc_unreachable ();
230 }
231 }
232
233 /* Hash E. */
234
235 inline hashval_t
236 pre_expr_d::hash (const value_type *e)
237 {
238 switch (e->kind)
239 {
240 case CONSTANT:
241 return vn_hash_constant_with_type (PRE_EXPR_CONSTANT (e));
242 case NAME:
243 return SSA_NAME_VERSION (PRE_EXPR_NAME (e));
244 case NARY:
245 return PRE_EXPR_NARY (e)->hashcode;
246 case REFERENCE:
247 return PRE_EXPR_REFERENCE (e)->hashcode;
248 default:
249 gcc_unreachable ();
250 }
251 }
252
253 /* Next global expression id number. */
254 static unsigned int next_expression_id;
255
256 /* Mapping from expression to id number we can use in bitmap sets. */
257 static vec<pre_expr> expressions;
258 static hash_table<pre_expr_d> *expression_to_id;
259 static vec<unsigned> name_to_id;
260
261 /* Allocate an expression id for EXPR. */
262
263 static inline unsigned int
264 alloc_expression_id (pre_expr expr)
265 {
266 struct pre_expr_d **slot;
267 /* Make sure we won't overflow. */
268 gcc_assert (next_expression_id + 1 > next_expression_id);
269 expr->id = next_expression_id++;
270 expressions.safe_push (expr);
271 if (expr->kind == NAME)
272 {
273 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
274 /* vec::safe_grow_cleared allocates no headroom. Avoid frequent
275 re-allocations by using vec::reserve upfront. */
276 unsigned old_len = name_to_id.length ();
277 name_to_id.reserve (num_ssa_names - old_len);
278 name_to_id.quick_grow_cleared (num_ssa_names);
279 gcc_assert (name_to_id[version] == 0);
280 name_to_id[version] = expr->id;
281 }
282 else
283 {
284 slot = expression_to_id->find_slot (expr, INSERT);
285 gcc_assert (!*slot);
286 *slot = expr;
287 }
288 return next_expression_id - 1;
289 }
290
291 /* Return the expression id for tree EXPR. */
292
293 static inline unsigned int
294 get_expression_id (const pre_expr expr)
295 {
296 return expr->id;
297 }
298
299 static inline unsigned int
300 lookup_expression_id (const pre_expr expr)
301 {
302 struct pre_expr_d **slot;
303
304 if (expr->kind == NAME)
305 {
306 unsigned version = SSA_NAME_VERSION (PRE_EXPR_NAME (expr));
307 if (name_to_id.length () <= version)
308 return 0;
309 return name_to_id[version];
310 }
311 else
312 {
313 slot = expression_to_id->find_slot (expr, NO_INSERT);
314 if (!slot)
315 return 0;
316 return ((pre_expr)*slot)->id;
317 }
318 }
319
320 /* Return the existing expression id for EXPR, or create one if one
321 does not exist yet. */
322
323 static inline unsigned int
324 get_or_alloc_expression_id (pre_expr expr)
325 {
326 unsigned int id = lookup_expression_id (expr);
327 if (id == 0)
328 return alloc_expression_id (expr);
329 return expr->id = id;
330 }
331
332 /* Return the expression that has expression id ID */
333
334 static inline pre_expr
335 expression_for_id (unsigned int id)
336 {
337 return expressions[id];
338 }
339
340 /* Free the expression id field in all of our expressions,
341 and then destroy the expressions array. */
342
343 static void
344 clear_expression_ids (void)
345 {
346 expressions.release ();
347 }
348
349 static alloc_pool pre_expr_pool;
350
351 /* Given an SSA_NAME NAME, get or create a pre_expr to represent it. */
352
353 static pre_expr
354 get_or_alloc_expr_for_name (tree name)
355 {
356 struct pre_expr_d expr;
357 pre_expr result;
358 unsigned int result_id;
359
360 expr.kind = NAME;
361 expr.id = 0;
362 PRE_EXPR_NAME (&expr) = name;
363 result_id = lookup_expression_id (&expr);
364 if (result_id != 0)
365 return expression_for_id (result_id);
366
367 result = (pre_expr) pool_alloc (pre_expr_pool);
368 result->kind = NAME;
369 PRE_EXPR_NAME (result) = name;
370 alloc_expression_id (result);
371 return result;
372 }
373
374 /* An unordered bitmap set. One bitmap tracks values, the other,
375 expressions. */
376 typedef struct bitmap_set
377 {
378 bitmap_head expressions;
379 bitmap_head values;
380 } *bitmap_set_t;
381
382 #define FOR_EACH_EXPR_ID_IN_SET(set, id, bi) \
383 EXECUTE_IF_SET_IN_BITMAP (&(set)->expressions, 0, (id), (bi))
384
385 #define FOR_EACH_VALUE_ID_IN_SET(set, id, bi) \
386 EXECUTE_IF_SET_IN_BITMAP (&(set)->values, 0, (id), (bi))
387
388 /* Mapping from value id to expressions with that value_id. */
389 static vec<bitmap> value_expressions;
390
391 /* Sets that we need to keep track of. */
392 typedef struct bb_bitmap_sets
393 {
394 /* The EXP_GEN set, which represents expressions/values generated in
395 a basic block. */
396 bitmap_set_t exp_gen;
397
398 /* The PHI_GEN set, which represents PHI results generated in a
399 basic block. */
400 bitmap_set_t phi_gen;
401
402 /* The TMP_GEN set, which represents results/temporaries generated
403 in a basic block. IE the LHS of an expression. */
404 bitmap_set_t tmp_gen;
405
406 /* The AVAIL_OUT set, which represents which values are available in
407 a given basic block. */
408 bitmap_set_t avail_out;
409
410 /* The ANTIC_IN set, which represents which values are anticipatable
411 in a given basic block. */
412 bitmap_set_t antic_in;
413
414 /* The PA_IN set, which represents which values are
415 partially anticipatable in a given basic block. */
416 bitmap_set_t pa_in;
417
418 /* The NEW_SETS set, which is used during insertion to augment the
419 AVAIL_OUT set of blocks with the new insertions performed during
420 the current iteration. */
421 bitmap_set_t new_sets;
422
423 /* A cache for value_dies_in_block_x. */
424 bitmap expr_dies;
425
426 /* The live virtual operand on successor edges. */
427 tree vop_on_exit;
428
429 /* True if we have visited this block during ANTIC calculation. */
430 unsigned int visited : 1;
431
432 /* True when the block contains a call that might not return. */
433 unsigned int contains_may_not_return_call : 1;
434 } *bb_value_sets_t;
435
436 #define EXP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->exp_gen
437 #define PHI_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->phi_gen
438 #define TMP_GEN(BB) ((bb_value_sets_t) ((BB)->aux))->tmp_gen
439 #define AVAIL_OUT(BB) ((bb_value_sets_t) ((BB)->aux))->avail_out
440 #define ANTIC_IN(BB) ((bb_value_sets_t) ((BB)->aux))->antic_in
441 #define PA_IN(BB) ((bb_value_sets_t) ((BB)->aux))->pa_in
442 #define NEW_SETS(BB) ((bb_value_sets_t) ((BB)->aux))->new_sets
443 #define EXPR_DIES(BB) ((bb_value_sets_t) ((BB)->aux))->expr_dies
444 #define BB_VISITED(BB) ((bb_value_sets_t) ((BB)->aux))->visited
445 #define BB_MAY_NOTRETURN(BB) ((bb_value_sets_t) ((BB)->aux))->contains_may_not_return_call
446 #define BB_LIVE_VOP_ON_EXIT(BB) ((bb_value_sets_t) ((BB)->aux))->vop_on_exit
447
448
449 /* Basic block list in postorder. */
450 static int *postorder;
451 static int postorder_num;
452
453 /* This structure is used to keep track of statistics on what
454 optimization PRE was able to perform. */
455 static struct
456 {
457 /* The number of RHS computations eliminated by PRE. */
458 int eliminations;
459
460 /* The number of new expressions/temporaries generated by PRE. */
461 int insertions;
462
463 /* The number of inserts found due to partial anticipation */
464 int pa_insert;
465
466 /* The number of new PHI nodes added by PRE. */
467 int phis;
468 } pre_stats;
469
470 static bool do_partial_partial;
471 static pre_expr bitmap_find_leader (bitmap_set_t, unsigned int);
472 static void bitmap_value_insert_into_set (bitmap_set_t, pre_expr);
473 static void bitmap_value_replace_in_set (bitmap_set_t, pre_expr);
474 static void bitmap_set_copy (bitmap_set_t, bitmap_set_t);
475 static bool bitmap_set_contains_value (bitmap_set_t, unsigned int);
476 static void bitmap_insert_into_set (bitmap_set_t, pre_expr);
477 static void bitmap_insert_into_set_1 (bitmap_set_t, pre_expr,
478 unsigned int, bool);
479 static bitmap_set_t bitmap_set_new (void);
480 static tree create_expression_by_pieces (basic_block, pre_expr, gimple_seq *,
481 tree);
482 static tree find_or_generate_expression (basic_block, tree, gimple_seq *);
483 static unsigned int get_expr_value_id (pre_expr);
484
485 /* We can add and remove elements and entries to and from sets
486 and hash tables, so we use alloc pools for them. */
487
488 static alloc_pool bitmap_set_pool;
489 static bitmap_obstack grand_bitmap_obstack;
490
491 /* Set of blocks with statements that have had their EH properties changed. */
492 static bitmap need_eh_cleanup;
493
494 /* Set of blocks with statements that have had their AB properties changed. */
495 static bitmap need_ab_cleanup;
496
497 /* A three tuple {e, pred, v} used to cache phi translations in the
498 phi_translate_table. */
499
500 typedef struct expr_pred_trans_d : typed_free_remove<expr_pred_trans_d>
501 {
502 /* The expression. */
503 pre_expr e;
504
505 /* The predecessor block along which we translated the expression. */
506 basic_block pred;
507
508 /* The value that resulted from the translation. */
509 pre_expr v;
510
511 /* The hashcode for the expression, pred pair. This is cached for
512 speed reasons. */
513 hashval_t hashcode;
514
515 /* hash_table support. */
516 typedef expr_pred_trans_d value_type;
517 typedef expr_pred_trans_d compare_type;
518 static inline hashval_t hash (const value_type *);
519 static inline int equal (const value_type *, const compare_type *);
520 } *expr_pred_trans_t;
521 typedef const struct expr_pred_trans_d *const_expr_pred_trans_t;
522
523 inline hashval_t
524 expr_pred_trans_d::hash (const expr_pred_trans_d *e)
525 {
526 return e->hashcode;
527 }
528
529 inline int
530 expr_pred_trans_d::equal (const value_type *ve1,
531 const compare_type *ve2)
532 {
533 basic_block b1 = ve1->pred;
534 basic_block b2 = ve2->pred;
535
536 /* If they are not translations for the same basic block, they can't
537 be equal. */
538 if (b1 != b2)
539 return false;
540 return pre_expr_d::equal (ve1->e, ve2->e);
541 }
542
543 /* The phi_translate_table caches phi translations for a given
544 expression and predecessor. */
545 static hash_table<expr_pred_trans_d> *phi_translate_table;
546
547 /* Add the tuple mapping from {expression E, basic block PRED} to
548 the phi translation table and return whether it pre-existed. */
549
550 static inline bool
551 phi_trans_add (expr_pred_trans_t *entry, pre_expr e, basic_block pred)
552 {
553 expr_pred_trans_t *slot;
554 expr_pred_trans_d tem;
555 hashval_t hash = iterative_hash_hashval_t (pre_expr_d::hash (e),
556 pred->index);
557 tem.e = e;
558 tem.pred = pred;
559 tem.hashcode = hash;
560 slot = phi_translate_table->find_slot_with_hash (&tem, hash, INSERT);
561 if (*slot)
562 {
563 *entry = *slot;
564 return true;
565 }
566
567 *entry = *slot = XNEW (struct expr_pred_trans_d);
568 (*entry)->e = e;
569 (*entry)->pred = pred;
570 (*entry)->hashcode = hash;
571 return false;
572 }
573
574
575 /* Add expression E to the expression set of value id V. */
576
577 static void
578 add_to_value (unsigned int v, pre_expr e)
579 {
580 bitmap set;
581
582 gcc_checking_assert (get_expr_value_id (e) == v);
583
584 if (v >= value_expressions.length ())
585 {
586 value_expressions.safe_grow_cleared (v + 1);
587 }
588
589 set = value_expressions[v];
590 if (!set)
591 {
592 set = BITMAP_ALLOC (&grand_bitmap_obstack);
593 value_expressions[v] = set;
594 }
595
596 bitmap_set_bit (set, get_or_alloc_expression_id (e));
597 }
598
599 /* Create a new bitmap set and return it. */
600
601 static bitmap_set_t
602 bitmap_set_new (void)
603 {
604 bitmap_set_t ret = (bitmap_set_t) pool_alloc (bitmap_set_pool);
605 bitmap_initialize (&ret->expressions, &grand_bitmap_obstack);
606 bitmap_initialize (&ret->values, &grand_bitmap_obstack);
607 return ret;
608 }
609
610 /* Return the value id for a PRE expression EXPR. */
611
612 static unsigned int
613 get_expr_value_id (pre_expr expr)
614 {
615 unsigned int id;
616 switch (expr->kind)
617 {
618 case CONSTANT:
619 id = get_constant_value_id (PRE_EXPR_CONSTANT (expr));
620 break;
621 case NAME:
622 id = VN_INFO (PRE_EXPR_NAME (expr))->value_id;
623 break;
624 case NARY:
625 id = PRE_EXPR_NARY (expr)->value_id;
626 break;
627 case REFERENCE:
628 id = PRE_EXPR_REFERENCE (expr)->value_id;
629 break;
630 default:
631 gcc_unreachable ();
632 }
633 /* ??? We cannot assert that expr has a value-id (it can be 0), because
634 we assign value-ids only to expressions that have a result
635 in set_hashtable_value_ids. */
636 return id;
637 }
638
639 /* Return a SCCVN valnum (SSA name or constant) for the PRE value-id VAL. */
640
641 static tree
642 sccvn_valnum_from_value_id (unsigned int val)
643 {
644 bitmap_iterator bi;
645 unsigned int i;
646 bitmap exprset = value_expressions[val];
647 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
648 {
649 pre_expr vexpr = expression_for_id (i);
650 if (vexpr->kind == NAME)
651 return VN_INFO (PRE_EXPR_NAME (vexpr))->valnum;
652 else if (vexpr->kind == CONSTANT)
653 return PRE_EXPR_CONSTANT (vexpr);
654 }
655 return NULL_TREE;
656 }
657
658 /* Remove an expression EXPR from a bitmapped set. */
659
660 static void
661 bitmap_remove_from_set (bitmap_set_t set, pre_expr expr)
662 {
663 unsigned int val = get_expr_value_id (expr);
664 if (!value_id_constant_p (val))
665 {
666 bitmap_clear_bit (&set->values, val);
667 bitmap_clear_bit (&set->expressions, get_expression_id (expr));
668 }
669 }
670
671 static void
672 bitmap_insert_into_set_1 (bitmap_set_t set, pre_expr expr,
673 unsigned int val, bool allow_constants)
674 {
675 if (allow_constants || !value_id_constant_p (val))
676 {
677 /* We specifically expect this and only this function to be able to
678 insert constants into a set. */
679 bitmap_set_bit (&set->values, val);
680 bitmap_set_bit (&set->expressions, get_or_alloc_expression_id (expr));
681 }
682 }
683
684 /* Insert an expression EXPR into a bitmapped set. */
685
686 static void
687 bitmap_insert_into_set (bitmap_set_t set, pre_expr expr)
688 {
689 bitmap_insert_into_set_1 (set, expr, get_expr_value_id (expr), false);
690 }
691
692 /* Copy a bitmapped set ORIG, into bitmapped set DEST. */
693
694 static void
695 bitmap_set_copy (bitmap_set_t dest, bitmap_set_t orig)
696 {
697 bitmap_copy (&dest->expressions, &orig->expressions);
698 bitmap_copy (&dest->values, &orig->values);
699 }
700
701
702 /* Free memory used up by SET. */
703 static void
704 bitmap_set_free (bitmap_set_t set)
705 {
706 bitmap_clear (&set->expressions);
707 bitmap_clear (&set->values);
708 }
709
710
711 /* Generate an topological-ordered array of bitmap set SET. */
712
713 static vec<pre_expr>
714 sorted_array_from_bitmap_set (bitmap_set_t set)
715 {
716 unsigned int i, j;
717 bitmap_iterator bi, bj;
718 vec<pre_expr> result;
719
720 /* Pre-allocate enough space for the array. */
721 result.create (bitmap_count_bits (&set->expressions));
722
723 FOR_EACH_VALUE_ID_IN_SET (set, i, bi)
724 {
725 /* The number of expressions having a given value is usually
726 relatively small. Thus, rather than making a vector of all
727 the expressions and sorting it by value-id, we walk the values
728 and check in the reverse mapping that tells us what expressions
729 have a given value, to filter those in our set. As a result,
730 the expressions are inserted in value-id order, which means
731 topological order.
732
733 If this is somehow a significant lose for some cases, we can
734 choose which set to walk based on the set size. */
735 bitmap exprset = value_expressions[i];
736 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, j, bj)
737 {
738 if (bitmap_bit_p (&set->expressions, j))
739 result.quick_push (expression_for_id (j));
740 }
741 }
742
743 return result;
744 }
745
746 /* Perform bitmapped set operation DEST &= ORIG. */
747
748 static void
749 bitmap_set_and (bitmap_set_t dest, bitmap_set_t orig)
750 {
751 bitmap_iterator bi;
752 unsigned int i;
753
754 if (dest != orig)
755 {
756 bitmap_head temp;
757 bitmap_initialize (&temp, &grand_bitmap_obstack);
758
759 bitmap_and_into (&dest->values, &orig->values);
760 bitmap_copy (&temp, &dest->expressions);
761 EXECUTE_IF_SET_IN_BITMAP (&temp, 0, i, bi)
762 {
763 pre_expr expr = expression_for_id (i);
764 unsigned int value_id = get_expr_value_id (expr);
765 if (!bitmap_bit_p (&dest->values, value_id))
766 bitmap_clear_bit (&dest->expressions, i);
767 }
768 bitmap_clear (&temp);
769 }
770 }
771
772 /* Subtract all values and expressions contained in ORIG from DEST. */
773
774 static bitmap_set_t
775 bitmap_set_subtract (bitmap_set_t dest, bitmap_set_t orig)
776 {
777 bitmap_set_t result = bitmap_set_new ();
778 bitmap_iterator bi;
779 unsigned int i;
780
781 bitmap_and_compl (&result->expressions, &dest->expressions,
782 &orig->expressions);
783
784 FOR_EACH_EXPR_ID_IN_SET (result, i, bi)
785 {
786 pre_expr expr = expression_for_id (i);
787 unsigned int value_id = get_expr_value_id (expr);
788 bitmap_set_bit (&result->values, value_id);
789 }
790
791 return result;
792 }
793
794 /* Subtract all the values in bitmap set B from bitmap set A. */
795
796 static void
797 bitmap_set_subtract_values (bitmap_set_t a, bitmap_set_t b)
798 {
799 unsigned int i;
800 bitmap_iterator bi;
801 bitmap_head temp;
802
803 bitmap_initialize (&temp, &grand_bitmap_obstack);
804
805 bitmap_copy (&temp, &a->expressions);
806 EXECUTE_IF_SET_IN_BITMAP (&temp, 0, i, bi)
807 {
808 pre_expr expr = expression_for_id (i);
809 if (bitmap_set_contains_value (b, get_expr_value_id (expr)))
810 bitmap_remove_from_set (a, expr);
811 }
812 bitmap_clear (&temp);
813 }
814
815
816 /* Return true if bitmapped set SET contains the value VALUE_ID. */
817
818 static bool
819 bitmap_set_contains_value (bitmap_set_t set, unsigned int value_id)
820 {
821 if (value_id_constant_p (value_id))
822 return true;
823
824 if (!set || bitmap_empty_p (&set->expressions))
825 return false;
826
827 return bitmap_bit_p (&set->values, value_id);
828 }
829
830 static inline bool
831 bitmap_set_contains_expr (bitmap_set_t set, const pre_expr expr)
832 {
833 return bitmap_bit_p (&set->expressions, get_expression_id (expr));
834 }
835
836 /* Replace an instance of value LOOKFOR with expression EXPR in SET. */
837
838 static void
839 bitmap_set_replace_value (bitmap_set_t set, unsigned int lookfor,
840 const pre_expr expr)
841 {
842 bitmap exprset;
843 unsigned int i;
844 bitmap_iterator bi;
845
846 if (value_id_constant_p (lookfor))
847 return;
848
849 if (!bitmap_set_contains_value (set, lookfor))
850 return;
851
852 /* The number of expressions having a given value is usually
853 significantly less than the total number of expressions in SET.
854 Thus, rather than check, for each expression in SET, whether it
855 has the value LOOKFOR, we walk the reverse mapping that tells us
856 what expressions have a given value, and see if any of those
857 expressions are in our set. For large testcases, this is about
858 5-10x faster than walking the bitmap. If this is somehow a
859 significant lose for some cases, we can choose which set to walk
860 based on the set size. */
861 exprset = value_expressions[lookfor];
862 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
863 {
864 if (bitmap_clear_bit (&set->expressions, i))
865 {
866 bitmap_set_bit (&set->expressions, get_expression_id (expr));
867 return;
868 }
869 }
870
871 gcc_unreachable ();
872 }
873
874 /* Return true if two bitmap sets are equal. */
875
876 static bool
877 bitmap_set_equal (bitmap_set_t a, bitmap_set_t b)
878 {
879 return bitmap_equal_p (&a->values, &b->values);
880 }
881
882 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
883 and add it otherwise. */
884
885 static void
886 bitmap_value_replace_in_set (bitmap_set_t set, pre_expr expr)
887 {
888 unsigned int val = get_expr_value_id (expr);
889
890 if (bitmap_set_contains_value (set, val))
891 bitmap_set_replace_value (set, val, expr);
892 else
893 bitmap_insert_into_set (set, expr);
894 }
895
896 /* Insert EXPR into SET if EXPR's value is not already present in
897 SET. */
898
899 static void
900 bitmap_value_insert_into_set (bitmap_set_t set, pre_expr expr)
901 {
902 unsigned int val = get_expr_value_id (expr);
903
904 gcc_checking_assert (expr->id == get_or_alloc_expression_id (expr));
905
906 /* Constant values are always considered to be part of the set. */
907 if (value_id_constant_p (val))
908 return;
909
910 /* If the value membership changed, add the expression. */
911 if (bitmap_set_bit (&set->values, val))
912 bitmap_set_bit (&set->expressions, expr->id);
913 }
914
915 /* Print out EXPR to outfile. */
916
917 static void
918 print_pre_expr (FILE *outfile, const pre_expr expr)
919 {
920 switch (expr->kind)
921 {
922 case CONSTANT:
923 print_generic_expr (outfile, PRE_EXPR_CONSTANT (expr), 0);
924 break;
925 case NAME:
926 print_generic_expr (outfile, PRE_EXPR_NAME (expr), 0);
927 break;
928 case NARY:
929 {
930 unsigned int i;
931 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
932 fprintf (outfile, "{%s,", get_tree_code_name (nary->opcode));
933 for (i = 0; i < nary->length; i++)
934 {
935 print_generic_expr (outfile, nary->op[i], 0);
936 if (i != (unsigned) nary->length - 1)
937 fprintf (outfile, ",");
938 }
939 fprintf (outfile, "}");
940 }
941 break;
942
943 case REFERENCE:
944 {
945 vn_reference_op_t vro;
946 unsigned int i;
947 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
948 fprintf (outfile, "{");
949 for (i = 0;
950 ref->operands.iterate (i, &vro);
951 i++)
952 {
953 bool closebrace = false;
954 if (vro->opcode != SSA_NAME
955 && TREE_CODE_CLASS (vro->opcode) != tcc_declaration)
956 {
957 fprintf (outfile, "%s", get_tree_code_name (vro->opcode));
958 if (vro->op0)
959 {
960 fprintf (outfile, "<");
961 closebrace = true;
962 }
963 }
964 if (vro->op0)
965 {
966 print_generic_expr (outfile, vro->op0, 0);
967 if (vro->op1)
968 {
969 fprintf (outfile, ",");
970 print_generic_expr (outfile, vro->op1, 0);
971 }
972 if (vro->op2)
973 {
974 fprintf (outfile, ",");
975 print_generic_expr (outfile, vro->op2, 0);
976 }
977 }
978 if (closebrace)
979 fprintf (outfile, ">");
980 if (i != ref->operands.length () - 1)
981 fprintf (outfile, ",");
982 }
983 fprintf (outfile, "}");
984 if (ref->vuse)
985 {
986 fprintf (outfile, "@");
987 print_generic_expr (outfile, ref->vuse, 0);
988 }
989 }
990 break;
991 }
992 }
993 void debug_pre_expr (pre_expr);
994
995 /* Like print_pre_expr but always prints to stderr. */
996 DEBUG_FUNCTION void
997 debug_pre_expr (pre_expr e)
998 {
999 print_pre_expr (stderr, e);
1000 fprintf (stderr, "\n");
1001 }
1002
1003 /* Print out SET to OUTFILE. */
1004
1005 static void
1006 print_bitmap_set (FILE *outfile, bitmap_set_t set,
1007 const char *setname, int blockindex)
1008 {
1009 fprintf (outfile, "%s[%d] := { ", setname, blockindex);
1010 if (set)
1011 {
1012 bool first = true;
1013 unsigned i;
1014 bitmap_iterator bi;
1015
1016 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
1017 {
1018 const pre_expr expr = expression_for_id (i);
1019
1020 if (!first)
1021 fprintf (outfile, ", ");
1022 first = false;
1023 print_pre_expr (outfile, expr);
1024
1025 fprintf (outfile, " (%04d)", get_expr_value_id (expr));
1026 }
1027 }
1028 fprintf (outfile, " }\n");
1029 }
1030
1031 void debug_bitmap_set (bitmap_set_t);
1032
1033 DEBUG_FUNCTION void
1034 debug_bitmap_set (bitmap_set_t set)
1035 {
1036 print_bitmap_set (stderr, set, "debug", 0);
1037 }
1038
1039 void debug_bitmap_sets_for (basic_block);
1040
1041 DEBUG_FUNCTION void
1042 debug_bitmap_sets_for (basic_block bb)
1043 {
1044 print_bitmap_set (stderr, AVAIL_OUT (bb), "avail_out", bb->index);
1045 print_bitmap_set (stderr, EXP_GEN (bb), "exp_gen", bb->index);
1046 print_bitmap_set (stderr, PHI_GEN (bb), "phi_gen", bb->index);
1047 print_bitmap_set (stderr, TMP_GEN (bb), "tmp_gen", bb->index);
1048 print_bitmap_set (stderr, ANTIC_IN (bb), "antic_in", bb->index);
1049 if (do_partial_partial)
1050 print_bitmap_set (stderr, PA_IN (bb), "pa_in", bb->index);
1051 print_bitmap_set (stderr, NEW_SETS (bb), "new_sets", bb->index);
1052 }
1053
1054 /* Print out the expressions that have VAL to OUTFILE. */
1055
1056 static void
1057 print_value_expressions (FILE *outfile, unsigned int val)
1058 {
1059 bitmap set = value_expressions[val];
1060 if (set)
1061 {
1062 bitmap_set x;
1063 char s[10];
1064 sprintf (s, "%04d", val);
1065 x.expressions = *set;
1066 print_bitmap_set (outfile, &x, s, 0);
1067 }
1068 }
1069
1070
1071 DEBUG_FUNCTION void
1072 debug_value_expressions (unsigned int val)
1073 {
1074 print_value_expressions (stderr, val);
1075 }
1076
1077 /* Given a CONSTANT, allocate a new CONSTANT type PRE_EXPR to
1078 represent it. */
1079
1080 static pre_expr
1081 get_or_alloc_expr_for_constant (tree constant)
1082 {
1083 unsigned int result_id;
1084 unsigned int value_id;
1085 struct pre_expr_d expr;
1086 pre_expr newexpr;
1087
1088 expr.kind = CONSTANT;
1089 PRE_EXPR_CONSTANT (&expr) = constant;
1090 result_id = lookup_expression_id (&expr);
1091 if (result_id != 0)
1092 return expression_for_id (result_id);
1093
1094 newexpr = (pre_expr) pool_alloc (pre_expr_pool);
1095 newexpr->kind = CONSTANT;
1096 PRE_EXPR_CONSTANT (newexpr) = constant;
1097 alloc_expression_id (newexpr);
1098 value_id = get_or_alloc_constant_value_id (constant);
1099 add_to_value (value_id, newexpr);
1100 return newexpr;
1101 }
1102
1103 /* Given a value id V, find the actual tree representing the constant
1104 value if there is one, and return it. Return NULL if we can't find
1105 a constant. */
1106
1107 static tree
1108 get_constant_for_value_id (unsigned int v)
1109 {
1110 if (value_id_constant_p (v))
1111 {
1112 unsigned int i;
1113 bitmap_iterator bi;
1114 bitmap exprset = value_expressions[v];
1115
1116 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
1117 {
1118 pre_expr expr = expression_for_id (i);
1119 if (expr->kind == CONSTANT)
1120 return PRE_EXPR_CONSTANT (expr);
1121 }
1122 }
1123 return NULL;
1124 }
1125
1126 /* Get or allocate a pre_expr for a piece of GIMPLE, and return it.
1127 Currently only supports constants and SSA_NAMES. */
1128 static pre_expr
1129 get_or_alloc_expr_for (tree t)
1130 {
1131 if (TREE_CODE (t) == SSA_NAME)
1132 return get_or_alloc_expr_for_name (t);
1133 else if (is_gimple_min_invariant (t))
1134 return get_or_alloc_expr_for_constant (t);
1135 else
1136 {
1137 /* More complex expressions can result from SCCVN expression
1138 simplification that inserts values for them. As they all
1139 do not have VOPs the get handled by the nary ops struct. */
1140 vn_nary_op_t result;
1141 unsigned int result_id;
1142 vn_nary_op_lookup (t, &result);
1143 if (result != NULL)
1144 {
1145 pre_expr e = (pre_expr) pool_alloc (pre_expr_pool);
1146 e->kind = NARY;
1147 PRE_EXPR_NARY (e) = result;
1148 result_id = lookup_expression_id (e);
1149 if (result_id != 0)
1150 {
1151 pool_free (pre_expr_pool, e);
1152 e = expression_for_id (result_id);
1153 return e;
1154 }
1155 alloc_expression_id (e);
1156 return e;
1157 }
1158 }
1159 return NULL;
1160 }
1161
1162 /* Return the folded version of T if T, when folded, is a gimple
1163 min_invariant. Otherwise, return T. */
1164
1165 static pre_expr
1166 fully_constant_expression (pre_expr e)
1167 {
1168 switch (e->kind)
1169 {
1170 case CONSTANT:
1171 return e;
1172 case NARY:
1173 {
1174 vn_nary_op_t nary = PRE_EXPR_NARY (e);
1175 switch (TREE_CODE_CLASS (nary->opcode))
1176 {
1177 case tcc_binary:
1178 case tcc_comparison:
1179 {
1180 /* We have to go from trees to pre exprs to value ids to
1181 constants. */
1182 tree naryop0 = nary->op[0];
1183 tree naryop1 = nary->op[1];
1184 tree result;
1185 if (!is_gimple_min_invariant (naryop0))
1186 {
1187 pre_expr rep0 = get_or_alloc_expr_for (naryop0);
1188 unsigned int vrep0 = get_expr_value_id (rep0);
1189 tree const0 = get_constant_for_value_id (vrep0);
1190 if (const0)
1191 naryop0 = fold_convert (TREE_TYPE (naryop0), const0);
1192 }
1193 if (!is_gimple_min_invariant (naryop1))
1194 {
1195 pre_expr rep1 = get_or_alloc_expr_for (naryop1);
1196 unsigned int vrep1 = get_expr_value_id (rep1);
1197 tree const1 = get_constant_for_value_id (vrep1);
1198 if (const1)
1199 naryop1 = fold_convert (TREE_TYPE (naryop1), const1);
1200 }
1201 result = fold_binary (nary->opcode, nary->type,
1202 naryop0, naryop1);
1203 if (result && is_gimple_min_invariant (result))
1204 return get_or_alloc_expr_for_constant (result);
1205 /* We might have simplified the expression to a
1206 SSA_NAME for example from x_1 * 1. But we cannot
1207 insert a PHI for x_1 unconditionally as x_1 might
1208 not be available readily. */
1209 return e;
1210 }
1211 case tcc_reference:
1212 if (nary->opcode != REALPART_EXPR
1213 && nary->opcode != IMAGPART_EXPR
1214 && nary->opcode != VIEW_CONVERT_EXPR)
1215 return e;
1216 /* Fallthrough. */
1217 case tcc_unary:
1218 {
1219 /* We have to go from trees to pre exprs to value ids to
1220 constants. */
1221 tree naryop0 = nary->op[0];
1222 tree const0, result;
1223 if (is_gimple_min_invariant (naryop0))
1224 const0 = naryop0;
1225 else
1226 {
1227 pre_expr rep0 = get_or_alloc_expr_for (naryop0);
1228 unsigned int vrep0 = get_expr_value_id (rep0);
1229 const0 = get_constant_for_value_id (vrep0);
1230 }
1231 result = NULL;
1232 if (const0)
1233 {
1234 tree type1 = TREE_TYPE (nary->op[0]);
1235 const0 = fold_convert (type1, const0);
1236 result = fold_unary (nary->opcode, nary->type, const0);
1237 }
1238 if (result && is_gimple_min_invariant (result))
1239 return get_or_alloc_expr_for_constant (result);
1240 return e;
1241 }
1242 default:
1243 return e;
1244 }
1245 }
1246 case REFERENCE:
1247 {
1248 vn_reference_t ref = PRE_EXPR_REFERENCE (e);
1249 tree folded;
1250 if ((folded = fully_constant_vn_reference_p (ref)))
1251 return get_or_alloc_expr_for_constant (folded);
1252 return e;
1253 }
1254 default:
1255 return e;
1256 }
1257 return e;
1258 }
1259
1260 /* Translate the VUSE backwards through phi nodes in PHIBLOCK, so that
1261 it has the value it would have in BLOCK. Set *SAME_VALID to true
1262 in case the new vuse doesn't change the value id of the OPERANDS. */
1263
1264 static tree
1265 translate_vuse_through_block (vec<vn_reference_op_s> operands,
1266 alias_set_type set, tree type, tree vuse,
1267 basic_block phiblock,
1268 basic_block block, bool *same_valid)
1269 {
1270 gimple phi = SSA_NAME_DEF_STMT (vuse);
1271 ao_ref ref;
1272 edge e = NULL;
1273 bool use_oracle;
1274
1275 *same_valid = true;
1276
1277 if (gimple_bb (phi) != phiblock)
1278 return vuse;
1279
1280 use_oracle = ao_ref_init_from_vn_reference (&ref, set, type, operands);
1281
1282 /* Use the alias-oracle to find either the PHI node in this block,
1283 the first VUSE used in this block that is equivalent to vuse or
1284 the first VUSE which definition in this block kills the value. */
1285 if (gimple_code (phi) == GIMPLE_PHI)
1286 e = find_edge (block, phiblock);
1287 else if (use_oracle)
1288 while (!stmt_may_clobber_ref_p_1 (phi, &ref))
1289 {
1290 vuse = gimple_vuse (phi);
1291 phi = SSA_NAME_DEF_STMT (vuse);
1292 if (gimple_bb (phi) != phiblock)
1293 return vuse;
1294 if (gimple_code (phi) == GIMPLE_PHI)
1295 {
1296 e = find_edge (block, phiblock);
1297 break;
1298 }
1299 }
1300 else
1301 return NULL_TREE;
1302
1303 if (e)
1304 {
1305 if (use_oracle)
1306 {
1307 bitmap visited = NULL;
1308 unsigned int cnt;
1309 /* Try to find a vuse that dominates this phi node by skipping
1310 non-clobbering statements. */
1311 vuse = get_continuation_for_phi (phi, &ref, &cnt, &visited, false,
1312 NULL, NULL);
1313 if (visited)
1314 BITMAP_FREE (visited);
1315 }
1316 else
1317 vuse = NULL_TREE;
1318 if (!vuse)
1319 {
1320 /* If we didn't find any, the value ID can't stay the same,
1321 but return the translated vuse. */
1322 *same_valid = false;
1323 vuse = PHI_ARG_DEF (phi, e->dest_idx);
1324 }
1325 /* ??? We would like to return vuse here as this is the canonical
1326 upmost vdef that this reference is associated with. But during
1327 insertion of the references into the hash tables we only ever
1328 directly insert with their direct gimple_vuse, hence returning
1329 something else would make us not find the other expression. */
1330 return PHI_ARG_DEF (phi, e->dest_idx);
1331 }
1332
1333 return NULL_TREE;
1334 }
1335
1336 /* Like bitmap_find_leader, but checks for the value existing in SET1 *or*
1337 SET2. This is used to avoid making a set consisting of the union
1338 of PA_IN and ANTIC_IN during insert. */
1339
1340 static inline pre_expr
1341 find_leader_in_sets (unsigned int val, bitmap_set_t set1, bitmap_set_t set2)
1342 {
1343 pre_expr result;
1344
1345 result = bitmap_find_leader (set1, val);
1346 if (!result && set2)
1347 result = bitmap_find_leader (set2, val);
1348 return result;
1349 }
1350
1351 /* Get the tree type for our PRE expression e. */
1352
1353 static tree
1354 get_expr_type (const pre_expr e)
1355 {
1356 switch (e->kind)
1357 {
1358 case NAME:
1359 return TREE_TYPE (PRE_EXPR_NAME (e));
1360 case CONSTANT:
1361 return TREE_TYPE (PRE_EXPR_CONSTANT (e));
1362 case REFERENCE:
1363 return PRE_EXPR_REFERENCE (e)->type;
1364 case NARY:
1365 return PRE_EXPR_NARY (e)->type;
1366 }
1367 gcc_unreachable ();
1368 }
1369
1370 /* Get a representative SSA_NAME for a given expression.
1371 Since all of our sub-expressions are treated as values, we require
1372 them to be SSA_NAME's for simplicity.
1373 Prior versions of GVNPRE used to use "value handles" here, so that
1374 an expression would be VH.11 + VH.10 instead of d_3 + e_6. In
1375 either case, the operands are really values (IE we do not expect
1376 them to be usable without finding leaders). */
1377
1378 static tree
1379 get_representative_for (const pre_expr e)
1380 {
1381 tree name;
1382 unsigned int value_id = get_expr_value_id (e);
1383
1384 switch (e->kind)
1385 {
1386 case NAME:
1387 return PRE_EXPR_NAME (e);
1388 case CONSTANT:
1389 return PRE_EXPR_CONSTANT (e);
1390 case NARY:
1391 case REFERENCE:
1392 {
1393 /* Go through all of the expressions representing this value
1394 and pick out an SSA_NAME. */
1395 unsigned int i;
1396 bitmap_iterator bi;
1397 bitmap exprs = value_expressions[value_id];
1398 EXECUTE_IF_SET_IN_BITMAP (exprs, 0, i, bi)
1399 {
1400 pre_expr rep = expression_for_id (i);
1401 if (rep->kind == NAME)
1402 return PRE_EXPR_NAME (rep);
1403 else if (rep->kind == CONSTANT)
1404 return PRE_EXPR_CONSTANT (rep);
1405 }
1406 }
1407 break;
1408 }
1409
1410 /* If we reached here we couldn't find an SSA_NAME. This can
1411 happen when we've discovered a value that has never appeared in
1412 the program as set to an SSA_NAME, as the result of phi translation.
1413 Create one here.
1414 ??? We should be able to re-use this when we insert the statement
1415 to compute it. */
1416 name = make_temp_ssa_name (get_expr_type (e), gimple_build_nop (), "pretmp");
1417 VN_INFO_GET (name)->value_id = value_id;
1418 VN_INFO (name)->valnum = name;
1419 /* ??? For now mark this SSA name for release by SCCVN. */
1420 VN_INFO (name)->needs_insertion = true;
1421 add_to_value (value_id, get_or_alloc_expr_for_name (name));
1422 if (dump_file && (dump_flags & TDF_DETAILS))
1423 {
1424 fprintf (dump_file, "Created SSA_NAME representative ");
1425 print_generic_expr (dump_file, name, 0);
1426 fprintf (dump_file, " for expression:");
1427 print_pre_expr (dump_file, e);
1428 fprintf (dump_file, " (%04d)\n", value_id);
1429 }
1430
1431 return name;
1432 }
1433
1434
1435
1436 static pre_expr
1437 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1438 basic_block pred, basic_block phiblock);
1439
1440 /* Translate EXPR using phis in PHIBLOCK, so that it has the values of
1441 the phis in PRED. Return NULL if we can't find a leader for each part
1442 of the translated expression. */
1443
1444 static pre_expr
1445 phi_translate_1 (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1446 basic_block pred, basic_block phiblock)
1447 {
1448 switch (expr->kind)
1449 {
1450 case NARY:
1451 {
1452 unsigned int i;
1453 bool changed = false;
1454 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1455 vn_nary_op_t newnary = XALLOCAVAR (struct vn_nary_op_s,
1456 sizeof_vn_nary_op (nary->length));
1457 memcpy (newnary, nary, sizeof_vn_nary_op (nary->length));
1458
1459 for (i = 0; i < newnary->length; i++)
1460 {
1461 if (TREE_CODE (newnary->op[i]) != SSA_NAME)
1462 continue;
1463 else
1464 {
1465 pre_expr leader, result;
1466 unsigned int op_val_id = VN_INFO (newnary->op[i])->value_id;
1467 leader = find_leader_in_sets (op_val_id, set1, set2);
1468 result = phi_translate (leader, set1, set2, pred, phiblock);
1469 if (result && result != leader)
1470 {
1471 tree name = get_representative_for (result);
1472 if (!name)
1473 return NULL;
1474 newnary->op[i] = name;
1475 }
1476 else if (!result)
1477 return NULL;
1478
1479 changed |= newnary->op[i] != nary->op[i];
1480 }
1481 }
1482 if (changed)
1483 {
1484 pre_expr constant;
1485 unsigned int new_val_id;
1486
1487 tree result = vn_nary_op_lookup_pieces (newnary->length,
1488 newnary->opcode,
1489 newnary->type,
1490 &newnary->op[0],
1491 &nary);
1492 if (result && is_gimple_min_invariant (result))
1493 return get_or_alloc_expr_for_constant (result);
1494
1495 expr = (pre_expr) pool_alloc (pre_expr_pool);
1496 expr->kind = NARY;
1497 expr->id = 0;
1498 if (nary)
1499 {
1500 PRE_EXPR_NARY (expr) = nary;
1501 constant = fully_constant_expression (expr);
1502 if (constant != expr)
1503 return constant;
1504
1505 new_val_id = nary->value_id;
1506 get_or_alloc_expression_id (expr);
1507 }
1508 else
1509 {
1510 new_val_id = get_next_value_id ();
1511 value_expressions.safe_grow_cleared (get_max_value_id () + 1);
1512 nary = vn_nary_op_insert_pieces (newnary->length,
1513 newnary->opcode,
1514 newnary->type,
1515 &newnary->op[0],
1516 result, new_val_id);
1517 PRE_EXPR_NARY (expr) = nary;
1518 constant = fully_constant_expression (expr);
1519 if (constant != expr)
1520 return constant;
1521 get_or_alloc_expression_id (expr);
1522 }
1523 add_to_value (new_val_id, expr);
1524 }
1525 return expr;
1526 }
1527 break;
1528
1529 case REFERENCE:
1530 {
1531 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1532 vec<vn_reference_op_s> operands = ref->operands;
1533 tree vuse = ref->vuse;
1534 tree newvuse = vuse;
1535 vec<vn_reference_op_s> newoperands = vNULL;
1536 bool changed = false, same_valid = true;
1537 unsigned int i, n;
1538 vn_reference_op_t operand;
1539 vn_reference_t newref;
1540
1541 for (i = 0; operands.iterate (i, &operand); i++)
1542 {
1543 pre_expr opresult;
1544 pre_expr leader;
1545 tree op[3];
1546 tree type = operand->type;
1547 vn_reference_op_s newop = *operand;
1548 op[0] = operand->op0;
1549 op[1] = operand->op1;
1550 op[2] = operand->op2;
1551 for (n = 0; n < 3; ++n)
1552 {
1553 unsigned int op_val_id;
1554 if (!op[n])
1555 continue;
1556 if (TREE_CODE (op[n]) != SSA_NAME)
1557 {
1558 /* We can't possibly insert these. */
1559 if (n != 0
1560 && !is_gimple_min_invariant (op[n]))
1561 break;
1562 continue;
1563 }
1564 op_val_id = VN_INFO (op[n])->value_id;
1565 leader = find_leader_in_sets (op_val_id, set1, set2);
1566 if (!leader)
1567 break;
1568 opresult = phi_translate (leader, set1, set2, pred, phiblock);
1569 if (!opresult)
1570 break;
1571 if (opresult != leader)
1572 {
1573 tree name = get_representative_for (opresult);
1574 if (!name)
1575 break;
1576 changed |= name != op[n];
1577 op[n] = name;
1578 }
1579 }
1580 if (n != 3)
1581 {
1582 newoperands.release ();
1583 return NULL;
1584 }
1585 if (!changed)
1586 continue;
1587 if (!newoperands.exists ())
1588 newoperands = operands.copy ();
1589 /* We may have changed from an SSA_NAME to a constant */
1590 if (newop.opcode == SSA_NAME && TREE_CODE (op[0]) != SSA_NAME)
1591 newop.opcode = TREE_CODE (op[0]);
1592 newop.type = type;
1593 newop.op0 = op[0];
1594 newop.op1 = op[1];
1595 newop.op2 = op[2];
1596 newoperands[i] = newop;
1597 }
1598 gcc_checking_assert (i == operands.length ());
1599
1600 if (vuse)
1601 {
1602 newvuse = translate_vuse_through_block (newoperands.exists ()
1603 ? newoperands : operands,
1604 ref->set, ref->type,
1605 vuse, phiblock, pred,
1606 &same_valid);
1607 if (newvuse == NULL_TREE)
1608 {
1609 newoperands.release ();
1610 return NULL;
1611 }
1612 }
1613
1614 if (changed || newvuse != vuse)
1615 {
1616 unsigned int new_val_id;
1617 pre_expr constant;
1618
1619 tree result = vn_reference_lookup_pieces (newvuse, ref->set,
1620 ref->type,
1621 newoperands.exists ()
1622 ? newoperands : operands,
1623 &newref, VN_WALK);
1624 if (result)
1625 newoperands.release ();
1626
1627 /* We can always insert constants, so if we have a partial
1628 redundant constant load of another type try to translate it
1629 to a constant of appropriate type. */
1630 if (result && is_gimple_min_invariant (result))
1631 {
1632 tree tem = result;
1633 if (!useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1634 {
1635 tem = fold_unary (VIEW_CONVERT_EXPR, ref->type, result);
1636 if (tem && !is_gimple_min_invariant (tem))
1637 tem = NULL_TREE;
1638 }
1639 if (tem)
1640 return get_or_alloc_expr_for_constant (tem);
1641 }
1642
1643 /* If we'd have to convert things we would need to validate
1644 if we can insert the translated expression. So fail
1645 here for now - we cannot insert an alias with a different
1646 type in the VN tables either, as that would assert. */
1647 if (result
1648 && !useless_type_conversion_p (ref->type, TREE_TYPE (result)))
1649 return NULL;
1650 else if (!result && newref
1651 && !useless_type_conversion_p (ref->type, newref->type))
1652 {
1653 newoperands.release ();
1654 return NULL;
1655 }
1656
1657 expr = (pre_expr) pool_alloc (pre_expr_pool);
1658 expr->kind = REFERENCE;
1659 expr->id = 0;
1660
1661 if (newref)
1662 {
1663 PRE_EXPR_REFERENCE (expr) = newref;
1664 constant = fully_constant_expression (expr);
1665 if (constant != expr)
1666 return constant;
1667
1668 new_val_id = newref->value_id;
1669 get_or_alloc_expression_id (expr);
1670 }
1671 else
1672 {
1673 if (changed || !same_valid)
1674 {
1675 new_val_id = get_next_value_id ();
1676 value_expressions.safe_grow_cleared
1677 (get_max_value_id () + 1);
1678 }
1679 else
1680 new_val_id = ref->value_id;
1681 if (!newoperands.exists ())
1682 newoperands = operands.copy ();
1683 newref = vn_reference_insert_pieces (newvuse, ref->set,
1684 ref->type,
1685 newoperands,
1686 result, new_val_id);
1687 newoperands = vNULL;
1688 PRE_EXPR_REFERENCE (expr) = newref;
1689 constant = fully_constant_expression (expr);
1690 if (constant != expr)
1691 return constant;
1692 get_or_alloc_expression_id (expr);
1693 }
1694 add_to_value (new_val_id, expr);
1695 }
1696 newoperands.release ();
1697 return expr;
1698 }
1699 break;
1700
1701 case NAME:
1702 {
1703 tree name = PRE_EXPR_NAME (expr);
1704 gimple def_stmt = SSA_NAME_DEF_STMT (name);
1705 /* If the SSA name is defined by a PHI node in this block,
1706 translate it. */
1707 if (gimple_code (def_stmt) == GIMPLE_PHI
1708 && gimple_bb (def_stmt) == phiblock)
1709 {
1710 edge e = find_edge (pred, gimple_bb (def_stmt));
1711 tree def = PHI_ARG_DEF (def_stmt, e->dest_idx);
1712
1713 /* Handle constant. */
1714 if (is_gimple_min_invariant (def))
1715 return get_or_alloc_expr_for_constant (def);
1716
1717 return get_or_alloc_expr_for_name (def);
1718 }
1719 /* Otherwise return it unchanged - it will get removed if its
1720 value is not available in PREDs AVAIL_OUT set of expressions
1721 by the subtraction of TMP_GEN. */
1722 return expr;
1723 }
1724
1725 default:
1726 gcc_unreachable ();
1727 }
1728 }
1729
1730 /* Wrapper around phi_translate_1 providing caching functionality. */
1731
1732 static pre_expr
1733 phi_translate (pre_expr expr, bitmap_set_t set1, bitmap_set_t set2,
1734 basic_block pred, basic_block phiblock)
1735 {
1736 expr_pred_trans_t slot = NULL;
1737 pre_expr phitrans;
1738
1739 if (!expr)
1740 return NULL;
1741
1742 /* Constants contain no values that need translation. */
1743 if (expr->kind == CONSTANT)
1744 return expr;
1745
1746 if (value_id_constant_p (get_expr_value_id (expr)))
1747 return expr;
1748
1749 /* Don't add translations of NAMEs as those are cheap to translate. */
1750 if (expr->kind != NAME)
1751 {
1752 if (phi_trans_add (&slot, expr, pred))
1753 return slot->v;
1754 /* Store NULL for the value we want to return in the case of
1755 recursing. */
1756 slot->v = NULL;
1757 }
1758
1759 /* Translate. */
1760 phitrans = phi_translate_1 (expr, set1, set2, pred, phiblock);
1761
1762 if (slot)
1763 {
1764 if (phitrans)
1765 slot->v = phitrans;
1766 else
1767 /* Remove failed translations again, they cause insert
1768 iteration to not pick up new opportunities reliably. */
1769 phi_translate_table->remove_elt_with_hash (slot, slot->hashcode);
1770 }
1771
1772 return phitrans;
1773 }
1774
1775
1776 /* For each expression in SET, translate the values through phi nodes
1777 in PHIBLOCK using edge PHIBLOCK->PRED, and store the resulting
1778 expressions in DEST. */
1779
1780 static void
1781 phi_translate_set (bitmap_set_t dest, bitmap_set_t set, basic_block pred,
1782 basic_block phiblock)
1783 {
1784 vec<pre_expr> exprs;
1785 pre_expr expr;
1786 int i;
1787
1788 if (gimple_seq_empty_p (phi_nodes (phiblock)))
1789 {
1790 bitmap_set_copy (dest, set);
1791 return;
1792 }
1793
1794 exprs = sorted_array_from_bitmap_set (set);
1795 FOR_EACH_VEC_ELT (exprs, i, expr)
1796 {
1797 pre_expr translated;
1798 translated = phi_translate (expr, set, NULL, pred, phiblock);
1799 if (!translated)
1800 continue;
1801
1802 /* We might end up with multiple expressions from SET being
1803 translated to the same value. In this case we do not want
1804 to retain the NARY or REFERENCE expression but prefer a NAME
1805 which would be the leader. */
1806 if (translated->kind == NAME)
1807 bitmap_value_replace_in_set (dest, translated);
1808 else
1809 bitmap_value_insert_into_set (dest, translated);
1810 }
1811 exprs.release ();
1812 }
1813
1814 /* Find the leader for a value (i.e., the name representing that
1815 value) in a given set, and return it. Return NULL if no leader
1816 is found. */
1817
1818 static pre_expr
1819 bitmap_find_leader (bitmap_set_t set, unsigned int val)
1820 {
1821 if (value_id_constant_p (val))
1822 {
1823 unsigned int i;
1824 bitmap_iterator bi;
1825 bitmap exprset = value_expressions[val];
1826
1827 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
1828 {
1829 pre_expr expr = expression_for_id (i);
1830 if (expr->kind == CONSTANT)
1831 return expr;
1832 }
1833 }
1834 if (bitmap_set_contains_value (set, val))
1835 {
1836 /* Rather than walk the entire bitmap of expressions, and see
1837 whether any of them has the value we are looking for, we look
1838 at the reverse mapping, which tells us the set of expressions
1839 that have a given value (IE value->expressions with that
1840 value) and see if any of those expressions are in our set.
1841 The number of expressions per value is usually significantly
1842 less than the number of expressions in the set. In fact, for
1843 large testcases, doing it this way is roughly 5-10x faster
1844 than walking the bitmap.
1845 If this is somehow a significant lose for some cases, we can
1846 choose which set to walk based on which set is smaller. */
1847 unsigned int i;
1848 bitmap_iterator bi;
1849 bitmap exprset = value_expressions[val];
1850
1851 EXECUTE_IF_AND_IN_BITMAP (exprset, &set->expressions, 0, i, bi)
1852 return expression_for_id (i);
1853 }
1854 return NULL;
1855 }
1856
1857 /* Determine if EXPR, a memory expression, is ANTIC_IN at the top of
1858 BLOCK by seeing if it is not killed in the block. Note that we are
1859 only determining whether there is a store that kills it. Because
1860 of the order in which clean iterates over values, we are guaranteed
1861 that altered operands will have caused us to be eliminated from the
1862 ANTIC_IN set already. */
1863
1864 static bool
1865 value_dies_in_block_x (pre_expr expr, basic_block block)
1866 {
1867 tree vuse = PRE_EXPR_REFERENCE (expr)->vuse;
1868 vn_reference_t refx = PRE_EXPR_REFERENCE (expr);
1869 gimple def;
1870 gimple_stmt_iterator gsi;
1871 unsigned id = get_expression_id (expr);
1872 bool res = false;
1873 ao_ref ref;
1874
1875 if (!vuse)
1876 return false;
1877
1878 /* Lookup a previously calculated result. */
1879 if (EXPR_DIES (block)
1880 && bitmap_bit_p (EXPR_DIES (block), id * 2))
1881 return bitmap_bit_p (EXPR_DIES (block), id * 2 + 1);
1882
1883 /* A memory expression {e, VUSE} dies in the block if there is a
1884 statement that may clobber e. If, starting statement walk from the
1885 top of the basic block, a statement uses VUSE there can be no kill
1886 inbetween that use and the original statement that loaded {e, VUSE},
1887 so we can stop walking. */
1888 ref.base = NULL_TREE;
1889 for (gsi = gsi_start_bb (block); !gsi_end_p (gsi); gsi_next (&gsi))
1890 {
1891 tree def_vuse, def_vdef;
1892 def = gsi_stmt (gsi);
1893 def_vuse = gimple_vuse (def);
1894 def_vdef = gimple_vdef (def);
1895
1896 /* Not a memory statement. */
1897 if (!def_vuse)
1898 continue;
1899
1900 /* Not a may-def. */
1901 if (!def_vdef)
1902 {
1903 /* A load with the same VUSE, we're done. */
1904 if (def_vuse == vuse)
1905 break;
1906
1907 continue;
1908 }
1909
1910 /* Init ref only if we really need it. */
1911 if (ref.base == NULL_TREE
1912 && !ao_ref_init_from_vn_reference (&ref, refx->set, refx->type,
1913 refx->operands))
1914 {
1915 res = true;
1916 break;
1917 }
1918 /* If the statement may clobber expr, it dies. */
1919 if (stmt_may_clobber_ref_p_1 (def, &ref))
1920 {
1921 res = true;
1922 break;
1923 }
1924 }
1925
1926 /* Remember the result. */
1927 if (!EXPR_DIES (block))
1928 EXPR_DIES (block) = BITMAP_ALLOC (&grand_bitmap_obstack);
1929 bitmap_set_bit (EXPR_DIES (block), id * 2);
1930 if (res)
1931 bitmap_set_bit (EXPR_DIES (block), id * 2 + 1);
1932
1933 return res;
1934 }
1935
1936
1937 /* Determine if OP is valid in SET1 U SET2, which it is when the union
1938 contains its value-id. */
1939
1940 static bool
1941 op_valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, tree op)
1942 {
1943 if (op && TREE_CODE (op) == SSA_NAME)
1944 {
1945 unsigned int value_id = VN_INFO (op)->value_id;
1946 if (!(bitmap_set_contains_value (set1, value_id)
1947 || (set2 && bitmap_set_contains_value (set2, value_id))))
1948 return false;
1949 }
1950 return true;
1951 }
1952
1953 /* Determine if the expression EXPR is valid in SET1 U SET2.
1954 ONLY SET2 CAN BE NULL.
1955 This means that we have a leader for each part of the expression
1956 (if it consists of values), or the expression is an SSA_NAME.
1957 For loads/calls, we also see if the vuse is killed in this block. */
1958
1959 static bool
1960 valid_in_sets (bitmap_set_t set1, bitmap_set_t set2, pre_expr expr)
1961 {
1962 switch (expr->kind)
1963 {
1964 case NAME:
1965 /* By construction all NAMEs are available. Non-available
1966 NAMEs are removed by subtracting TMP_GEN from the sets. */
1967 return true;
1968 case NARY:
1969 {
1970 unsigned int i;
1971 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
1972 for (i = 0; i < nary->length; i++)
1973 if (!op_valid_in_sets (set1, set2, nary->op[i]))
1974 return false;
1975 return true;
1976 }
1977 break;
1978 case REFERENCE:
1979 {
1980 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
1981 vn_reference_op_t vro;
1982 unsigned int i;
1983
1984 FOR_EACH_VEC_ELT (ref->operands, i, vro)
1985 {
1986 if (!op_valid_in_sets (set1, set2, vro->op0)
1987 || !op_valid_in_sets (set1, set2, vro->op1)
1988 || !op_valid_in_sets (set1, set2, vro->op2))
1989 return false;
1990 }
1991 return true;
1992 }
1993 default:
1994 gcc_unreachable ();
1995 }
1996 }
1997
1998 /* Clean the set of expressions that are no longer valid in SET1 or
1999 SET2. This means expressions that are made up of values we have no
2000 leaders for in SET1 or SET2. This version is used for partial
2001 anticipation, which means it is not valid in either ANTIC_IN or
2002 PA_IN. */
2003
2004 static void
2005 dependent_clean (bitmap_set_t set1, bitmap_set_t set2)
2006 {
2007 vec<pre_expr> exprs = sorted_array_from_bitmap_set (set1);
2008 pre_expr expr;
2009 int i;
2010
2011 FOR_EACH_VEC_ELT (exprs, i, expr)
2012 {
2013 if (!valid_in_sets (set1, set2, expr))
2014 bitmap_remove_from_set (set1, expr);
2015 }
2016 exprs.release ();
2017 }
2018
2019 /* Clean the set of expressions that are no longer valid in SET. This
2020 means expressions that are made up of values we have no leaders for
2021 in SET. */
2022
2023 static void
2024 clean (bitmap_set_t set)
2025 {
2026 vec<pre_expr> exprs = sorted_array_from_bitmap_set (set);
2027 pre_expr expr;
2028 int i;
2029
2030 FOR_EACH_VEC_ELT (exprs, i, expr)
2031 {
2032 if (!valid_in_sets (set, NULL, expr))
2033 bitmap_remove_from_set (set, expr);
2034 }
2035 exprs.release ();
2036 }
2037
2038 /* Clean the set of expressions that are no longer valid in SET because
2039 they are clobbered in BLOCK or because they trap and may not be executed. */
2040
2041 static void
2042 prune_clobbered_mems (bitmap_set_t set, basic_block block)
2043 {
2044 bitmap_iterator bi;
2045 unsigned i;
2046
2047 FOR_EACH_EXPR_ID_IN_SET (set, i, bi)
2048 {
2049 pre_expr expr = expression_for_id (i);
2050 if (expr->kind == REFERENCE)
2051 {
2052 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2053 if (ref->vuse)
2054 {
2055 gimple def_stmt = SSA_NAME_DEF_STMT (ref->vuse);
2056 if (!gimple_nop_p (def_stmt)
2057 && ((gimple_bb (def_stmt) != block
2058 && !dominated_by_p (CDI_DOMINATORS,
2059 block, gimple_bb (def_stmt)))
2060 || (gimple_bb (def_stmt) == block
2061 && value_dies_in_block_x (expr, block))))
2062 bitmap_remove_from_set (set, expr);
2063 }
2064 }
2065 else if (expr->kind == NARY)
2066 {
2067 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2068 /* If the NARY may trap make sure the block does not contain
2069 a possible exit point.
2070 ??? This is overly conservative if we translate AVAIL_OUT
2071 as the available expression might be after the exit point. */
2072 if (BB_MAY_NOTRETURN (block)
2073 && vn_nary_may_trap (nary))
2074 bitmap_remove_from_set (set, expr);
2075 }
2076 }
2077 }
2078
2079 static sbitmap has_abnormal_preds;
2080
2081 /* List of blocks that may have changed during ANTIC computation and
2082 thus need to be iterated over. */
2083
2084 static sbitmap changed_blocks;
2085
2086 /* Compute the ANTIC set for BLOCK.
2087
2088 If succs(BLOCK) > 1 then
2089 ANTIC_OUT[BLOCK] = intersection of ANTIC_IN[b] for all succ(BLOCK)
2090 else if succs(BLOCK) == 1 then
2091 ANTIC_OUT[BLOCK] = phi_translate (ANTIC_IN[succ(BLOCK)])
2092
2093 ANTIC_IN[BLOCK] = clean(ANTIC_OUT[BLOCK] U EXP_GEN[BLOCK] - TMP_GEN[BLOCK])
2094 */
2095
2096 static bool
2097 compute_antic_aux (basic_block block, bool block_has_abnormal_pred_edge)
2098 {
2099 bool changed = false;
2100 bitmap_set_t S, old, ANTIC_OUT;
2101 bitmap_iterator bi;
2102 unsigned int bii;
2103 edge e;
2104 edge_iterator ei;
2105
2106 old = ANTIC_OUT = S = NULL;
2107 BB_VISITED (block) = 1;
2108
2109 /* If any edges from predecessors are abnormal, antic_in is empty,
2110 so do nothing. */
2111 if (block_has_abnormal_pred_edge)
2112 goto maybe_dump_sets;
2113
2114 old = ANTIC_IN (block);
2115 ANTIC_OUT = bitmap_set_new ();
2116
2117 /* If the block has no successors, ANTIC_OUT is empty. */
2118 if (EDGE_COUNT (block->succs) == 0)
2119 ;
2120 /* If we have one successor, we could have some phi nodes to
2121 translate through. */
2122 else if (single_succ_p (block))
2123 {
2124 basic_block succ_bb = single_succ (block);
2125 gcc_assert (BB_VISITED (succ_bb));
2126 phi_translate_set (ANTIC_OUT, ANTIC_IN (succ_bb), block, succ_bb);
2127 }
2128 /* If we have multiple successors, we take the intersection of all of
2129 them. Note that in the case of loop exit phi nodes, we may have
2130 phis to translate through. */
2131 else
2132 {
2133 size_t i;
2134 basic_block bprime, first = NULL;
2135
2136 auto_vec<basic_block> worklist (EDGE_COUNT (block->succs));
2137 FOR_EACH_EDGE (e, ei, block->succs)
2138 {
2139 if (!first
2140 && BB_VISITED (e->dest))
2141 first = e->dest;
2142 else if (BB_VISITED (e->dest))
2143 worklist.quick_push (e->dest);
2144 }
2145
2146 /* Of multiple successors we have to have visited one already
2147 which is guaranteed by iteration order. */
2148 gcc_assert (first != NULL);
2149
2150 phi_translate_set (ANTIC_OUT, ANTIC_IN (first), block, first);
2151
2152 FOR_EACH_VEC_ELT (worklist, i, bprime)
2153 {
2154 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2155 {
2156 bitmap_set_t tmp = bitmap_set_new ();
2157 phi_translate_set (tmp, ANTIC_IN (bprime), block, bprime);
2158 bitmap_set_and (ANTIC_OUT, tmp);
2159 bitmap_set_free (tmp);
2160 }
2161 else
2162 bitmap_set_and (ANTIC_OUT, ANTIC_IN (bprime));
2163 }
2164 }
2165
2166 /* Prune expressions that are clobbered in block and thus become
2167 invalid if translated from ANTIC_OUT to ANTIC_IN. */
2168 prune_clobbered_mems (ANTIC_OUT, block);
2169
2170 /* Generate ANTIC_OUT - TMP_GEN. */
2171 S = bitmap_set_subtract (ANTIC_OUT, TMP_GEN (block));
2172
2173 /* Start ANTIC_IN with EXP_GEN - TMP_GEN. */
2174 ANTIC_IN (block) = bitmap_set_subtract (EXP_GEN (block),
2175 TMP_GEN (block));
2176
2177 /* Then union in the ANTIC_OUT - TMP_GEN values,
2178 to get ANTIC_OUT U EXP_GEN - TMP_GEN */
2179 FOR_EACH_EXPR_ID_IN_SET (S, bii, bi)
2180 bitmap_value_insert_into_set (ANTIC_IN (block),
2181 expression_for_id (bii));
2182
2183 clean (ANTIC_IN (block));
2184
2185 if (!bitmap_set_equal (old, ANTIC_IN (block)))
2186 {
2187 changed = true;
2188 bitmap_set_bit (changed_blocks, block->index);
2189 FOR_EACH_EDGE (e, ei, block->preds)
2190 bitmap_set_bit (changed_blocks, e->src->index);
2191 }
2192 else
2193 bitmap_clear_bit (changed_blocks, block->index);
2194
2195 maybe_dump_sets:
2196 if (dump_file && (dump_flags & TDF_DETAILS))
2197 {
2198 if (ANTIC_OUT)
2199 print_bitmap_set (dump_file, ANTIC_OUT, "ANTIC_OUT", block->index);
2200
2201 print_bitmap_set (dump_file, ANTIC_IN (block), "ANTIC_IN",
2202 block->index);
2203
2204 if (S)
2205 print_bitmap_set (dump_file, S, "S", block->index);
2206 }
2207 if (old)
2208 bitmap_set_free (old);
2209 if (S)
2210 bitmap_set_free (S);
2211 if (ANTIC_OUT)
2212 bitmap_set_free (ANTIC_OUT);
2213 return changed;
2214 }
2215
2216 /* Compute PARTIAL_ANTIC for BLOCK.
2217
2218 If succs(BLOCK) > 1 then
2219 PA_OUT[BLOCK] = value wise union of PA_IN[b] + all ANTIC_IN not
2220 in ANTIC_OUT for all succ(BLOCK)
2221 else if succs(BLOCK) == 1 then
2222 PA_OUT[BLOCK] = phi_translate (PA_IN[succ(BLOCK)])
2223
2224 PA_IN[BLOCK] = dependent_clean(PA_OUT[BLOCK] - TMP_GEN[BLOCK]
2225 - ANTIC_IN[BLOCK])
2226
2227 */
2228 static bool
2229 compute_partial_antic_aux (basic_block block,
2230 bool block_has_abnormal_pred_edge)
2231 {
2232 bool changed = false;
2233 bitmap_set_t old_PA_IN;
2234 bitmap_set_t PA_OUT;
2235 edge e;
2236 edge_iterator ei;
2237 unsigned long max_pa = PARAM_VALUE (PARAM_MAX_PARTIAL_ANTIC_LENGTH);
2238
2239 old_PA_IN = PA_OUT = NULL;
2240
2241 /* If any edges from predecessors are abnormal, antic_in is empty,
2242 so do nothing. */
2243 if (block_has_abnormal_pred_edge)
2244 goto maybe_dump_sets;
2245
2246 /* If there are too many partially anticipatable values in the
2247 block, phi_translate_set can take an exponential time: stop
2248 before the translation starts. */
2249 if (max_pa
2250 && single_succ_p (block)
2251 && bitmap_count_bits (&PA_IN (single_succ (block))->values) > max_pa)
2252 goto maybe_dump_sets;
2253
2254 old_PA_IN = PA_IN (block);
2255 PA_OUT = bitmap_set_new ();
2256
2257 /* If the block has no successors, ANTIC_OUT is empty. */
2258 if (EDGE_COUNT (block->succs) == 0)
2259 ;
2260 /* If we have one successor, we could have some phi nodes to
2261 translate through. Note that we can't phi translate across DFS
2262 back edges in partial antic, because it uses a union operation on
2263 the successors. For recurrences like IV's, we will end up
2264 generating a new value in the set on each go around (i + 3 (VH.1)
2265 VH.1 + 1 (VH.2), VH.2 + 1 (VH.3), etc), forever. */
2266 else if (single_succ_p (block))
2267 {
2268 basic_block succ = single_succ (block);
2269 if (!(single_succ_edge (block)->flags & EDGE_DFS_BACK))
2270 phi_translate_set (PA_OUT, PA_IN (succ), block, succ);
2271 }
2272 /* If we have multiple successors, we take the union of all of
2273 them. */
2274 else
2275 {
2276 size_t i;
2277 basic_block bprime;
2278
2279 auto_vec<basic_block> worklist (EDGE_COUNT (block->succs));
2280 FOR_EACH_EDGE (e, ei, block->succs)
2281 {
2282 if (e->flags & EDGE_DFS_BACK)
2283 continue;
2284 worklist.quick_push (e->dest);
2285 }
2286 if (worklist.length () > 0)
2287 {
2288 FOR_EACH_VEC_ELT (worklist, i, bprime)
2289 {
2290 unsigned int i;
2291 bitmap_iterator bi;
2292
2293 FOR_EACH_EXPR_ID_IN_SET (ANTIC_IN (bprime), i, bi)
2294 bitmap_value_insert_into_set (PA_OUT,
2295 expression_for_id (i));
2296 if (!gimple_seq_empty_p (phi_nodes (bprime)))
2297 {
2298 bitmap_set_t pa_in = bitmap_set_new ();
2299 phi_translate_set (pa_in, PA_IN (bprime), block, bprime);
2300 FOR_EACH_EXPR_ID_IN_SET (pa_in, i, bi)
2301 bitmap_value_insert_into_set (PA_OUT,
2302 expression_for_id (i));
2303 bitmap_set_free (pa_in);
2304 }
2305 else
2306 FOR_EACH_EXPR_ID_IN_SET (PA_IN (bprime), i, bi)
2307 bitmap_value_insert_into_set (PA_OUT,
2308 expression_for_id (i));
2309 }
2310 }
2311 }
2312
2313 /* Prune expressions that are clobbered in block and thus become
2314 invalid if translated from PA_OUT to PA_IN. */
2315 prune_clobbered_mems (PA_OUT, block);
2316
2317 /* PA_IN starts with PA_OUT - TMP_GEN.
2318 Then we subtract things from ANTIC_IN. */
2319 PA_IN (block) = bitmap_set_subtract (PA_OUT, TMP_GEN (block));
2320
2321 /* For partial antic, we want to put back in the phi results, since
2322 we will properly avoid making them partially antic over backedges. */
2323 bitmap_ior_into (&PA_IN (block)->values, &PHI_GEN (block)->values);
2324 bitmap_ior_into (&PA_IN (block)->expressions, &PHI_GEN (block)->expressions);
2325
2326 /* PA_IN[block] = PA_IN[block] - ANTIC_IN[block] */
2327 bitmap_set_subtract_values (PA_IN (block), ANTIC_IN (block));
2328
2329 dependent_clean (PA_IN (block), ANTIC_IN (block));
2330
2331 if (!bitmap_set_equal (old_PA_IN, PA_IN (block)))
2332 {
2333 changed = true;
2334 bitmap_set_bit (changed_blocks, block->index);
2335 FOR_EACH_EDGE (e, ei, block->preds)
2336 bitmap_set_bit (changed_blocks, e->src->index);
2337 }
2338 else
2339 bitmap_clear_bit (changed_blocks, block->index);
2340
2341 maybe_dump_sets:
2342 if (dump_file && (dump_flags & TDF_DETAILS))
2343 {
2344 if (PA_OUT)
2345 print_bitmap_set (dump_file, PA_OUT, "PA_OUT", block->index);
2346
2347 print_bitmap_set (dump_file, PA_IN (block), "PA_IN", block->index);
2348 }
2349 if (old_PA_IN)
2350 bitmap_set_free (old_PA_IN);
2351 if (PA_OUT)
2352 bitmap_set_free (PA_OUT);
2353 return changed;
2354 }
2355
2356 /* Compute ANTIC and partial ANTIC sets. */
2357
2358 static void
2359 compute_antic (void)
2360 {
2361 bool changed = true;
2362 int num_iterations = 0;
2363 basic_block block;
2364 int i;
2365
2366 /* If any predecessor edges are abnormal, we punt, so antic_in is empty.
2367 We pre-build the map of blocks with incoming abnormal edges here. */
2368 has_abnormal_preds = sbitmap_alloc (last_basic_block_for_fn (cfun));
2369 bitmap_clear (has_abnormal_preds);
2370
2371 FOR_ALL_BB_FN (block, cfun)
2372 {
2373 edge_iterator ei;
2374 edge e;
2375
2376 FOR_EACH_EDGE (e, ei, block->preds)
2377 {
2378 e->flags &= ~EDGE_DFS_BACK;
2379 if (e->flags & EDGE_ABNORMAL)
2380 {
2381 bitmap_set_bit (has_abnormal_preds, block->index);
2382 break;
2383 }
2384 }
2385
2386 BB_VISITED (block) = 0;
2387
2388 /* While we are here, give empty ANTIC_IN sets to each block. */
2389 ANTIC_IN (block) = bitmap_set_new ();
2390 PA_IN (block) = bitmap_set_new ();
2391 }
2392
2393 /* At the exit block we anticipate nothing. */
2394 BB_VISITED (EXIT_BLOCK_PTR_FOR_FN (cfun)) = 1;
2395
2396 changed_blocks = sbitmap_alloc (last_basic_block_for_fn (cfun) + 1);
2397 bitmap_ones (changed_blocks);
2398 while (changed)
2399 {
2400 if (dump_file && (dump_flags & TDF_DETAILS))
2401 fprintf (dump_file, "Starting iteration %d\n", num_iterations);
2402 /* ??? We need to clear our PHI translation cache here as the
2403 ANTIC sets shrink and we restrict valid translations to
2404 those having operands with leaders in ANTIC. Same below
2405 for PA ANTIC computation. */
2406 num_iterations++;
2407 changed = false;
2408 for (i = postorder_num - 1; i >= 0; i--)
2409 {
2410 if (bitmap_bit_p (changed_blocks, postorder[i]))
2411 {
2412 basic_block block = BASIC_BLOCK_FOR_FN (cfun, postorder[i]);
2413 changed |= compute_antic_aux (block,
2414 bitmap_bit_p (has_abnormal_preds,
2415 block->index));
2416 }
2417 }
2418 /* Theoretically possible, but *highly* unlikely. */
2419 gcc_checking_assert (num_iterations < 500);
2420 }
2421
2422 statistics_histogram_event (cfun, "compute_antic iterations",
2423 num_iterations);
2424
2425 if (do_partial_partial)
2426 {
2427 bitmap_ones (changed_blocks);
2428 mark_dfs_back_edges ();
2429 num_iterations = 0;
2430 changed = true;
2431 while (changed)
2432 {
2433 if (dump_file && (dump_flags & TDF_DETAILS))
2434 fprintf (dump_file, "Starting iteration %d\n", num_iterations);
2435 num_iterations++;
2436 changed = false;
2437 for (i = postorder_num - 1 ; i >= 0; i--)
2438 {
2439 if (bitmap_bit_p (changed_blocks, postorder[i]))
2440 {
2441 basic_block block = BASIC_BLOCK_FOR_FN (cfun, postorder[i]);
2442 changed
2443 |= compute_partial_antic_aux (block,
2444 bitmap_bit_p (has_abnormal_preds,
2445 block->index));
2446 }
2447 }
2448 /* Theoretically possible, but *highly* unlikely. */
2449 gcc_checking_assert (num_iterations < 500);
2450 }
2451 statistics_histogram_event (cfun, "compute_partial_antic iterations",
2452 num_iterations);
2453 }
2454 sbitmap_free (has_abnormal_preds);
2455 sbitmap_free (changed_blocks);
2456 }
2457
2458
2459 /* Inserted expressions are placed onto this worklist, which is used
2460 for performing quick dead code elimination of insertions we made
2461 that didn't turn out to be necessary. */
2462 static bitmap inserted_exprs;
2463
2464 /* The actual worker for create_component_ref_by_pieces. */
2465
2466 static tree
2467 create_component_ref_by_pieces_1 (basic_block block, vn_reference_t ref,
2468 unsigned int *operand, gimple_seq *stmts)
2469 {
2470 vn_reference_op_t currop = &ref->operands[*operand];
2471 tree genop;
2472 ++*operand;
2473 switch (currop->opcode)
2474 {
2475 case CALL_EXPR:
2476 {
2477 tree folded, sc = NULL_TREE;
2478 unsigned int nargs = 0;
2479 tree fn, *args;
2480 if (TREE_CODE (currop->op0) == FUNCTION_DECL)
2481 fn = currop->op0;
2482 else
2483 fn = find_or_generate_expression (block, currop->op0, stmts);
2484 if (!fn)
2485 return NULL_TREE;
2486 if (currop->op1)
2487 {
2488 sc = find_or_generate_expression (block, currop->op1, stmts);
2489 if (!sc)
2490 return NULL_TREE;
2491 }
2492 args = XNEWVEC (tree, ref->operands.length () - 1);
2493 while (*operand < ref->operands.length ())
2494 {
2495 args[nargs] = create_component_ref_by_pieces_1 (block, ref,
2496 operand, stmts);
2497 if (!args[nargs])
2498 return NULL_TREE;
2499 nargs++;
2500 }
2501 folded = build_call_array (currop->type,
2502 (TREE_CODE (fn) == FUNCTION_DECL
2503 ? build_fold_addr_expr (fn) : fn),
2504 nargs, args);
2505 free (args);
2506 if (sc)
2507 CALL_EXPR_STATIC_CHAIN (folded) = sc;
2508 return folded;
2509 }
2510
2511 case MEM_REF:
2512 {
2513 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2514 stmts);
2515 if (!baseop)
2516 return NULL_TREE;
2517 tree offset = currop->op0;
2518 if (TREE_CODE (baseop) == ADDR_EXPR
2519 && handled_component_p (TREE_OPERAND (baseop, 0)))
2520 {
2521 HOST_WIDE_INT off;
2522 tree base;
2523 base = get_addr_base_and_unit_offset (TREE_OPERAND (baseop, 0),
2524 &off);
2525 gcc_assert (base);
2526 offset = int_const_binop (PLUS_EXPR, offset,
2527 build_int_cst (TREE_TYPE (offset),
2528 off));
2529 baseop = build_fold_addr_expr (base);
2530 }
2531 return fold_build2 (MEM_REF, currop->type, baseop, offset);
2532 }
2533
2534 case TARGET_MEM_REF:
2535 {
2536 tree genop0 = NULL_TREE, genop1 = NULL_TREE;
2537 vn_reference_op_t nextop = &ref->operands[++*operand];
2538 tree baseop = create_component_ref_by_pieces_1 (block, ref, operand,
2539 stmts);
2540 if (!baseop)
2541 return NULL_TREE;
2542 if (currop->op0)
2543 {
2544 genop0 = find_or_generate_expression (block, currop->op0, stmts);
2545 if (!genop0)
2546 return NULL_TREE;
2547 }
2548 if (nextop->op0)
2549 {
2550 genop1 = find_or_generate_expression (block, nextop->op0, stmts);
2551 if (!genop1)
2552 return NULL_TREE;
2553 }
2554 return build5 (TARGET_MEM_REF, currop->type,
2555 baseop, currop->op2, genop0, currop->op1, genop1);
2556 }
2557
2558 case ADDR_EXPR:
2559 if (currop->op0)
2560 {
2561 gcc_assert (is_gimple_min_invariant (currop->op0));
2562 return currop->op0;
2563 }
2564 /* Fallthrough. */
2565 case REALPART_EXPR:
2566 case IMAGPART_EXPR:
2567 case VIEW_CONVERT_EXPR:
2568 {
2569 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2570 stmts);
2571 if (!genop0)
2572 return NULL_TREE;
2573 return fold_build1 (currop->opcode, currop->type, genop0);
2574 }
2575
2576 case WITH_SIZE_EXPR:
2577 {
2578 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2579 stmts);
2580 if (!genop0)
2581 return NULL_TREE;
2582 tree genop1 = find_or_generate_expression (block, currop->op0, stmts);
2583 if (!genop1)
2584 return NULL_TREE;
2585 return fold_build2 (currop->opcode, currop->type, genop0, genop1);
2586 }
2587
2588 case BIT_FIELD_REF:
2589 {
2590 tree genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2591 stmts);
2592 if (!genop0)
2593 return NULL_TREE;
2594 tree op1 = currop->op0;
2595 tree op2 = currop->op1;
2596 return fold_build3 (BIT_FIELD_REF, currop->type, genop0, op1, op2);
2597 }
2598
2599 /* For array ref vn_reference_op's, operand 1 of the array ref
2600 is op0 of the reference op and operand 3 of the array ref is
2601 op1. */
2602 case ARRAY_RANGE_REF:
2603 case ARRAY_REF:
2604 {
2605 tree genop0;
2606 tree genop1 = currop->op0;
2607 tree genop2 = currop->op1;
2608 tree genop3 = currop->op2;
2609 genop0 = create_component_ref_by_pieces_1 (block, ref, operand,
2610 stmts);
2611 if (!genop0)
2612 return NULL_TREE;
2613 genop1 = find_or_generate_expression (block, genop1, stmts);
2614 if (!genop1)
2615 return NULL_TREE;
2616 if (genop2)
2617 {
2618 tree domain_type = TYPE_DOMAIN (TREE_TYPE (genop0));
2619 /* Drop zero minimum index if redundant. */
2620 if (integer_zerop (genop2)
2621 && (!domain_type
2622 || integer_zerop (TYPE_MIN_VALUE (domain_type))))
2623 genop2 = NULL_TREE;
2624 else
2625 {
2626 genop2 = find_or_generate_expression (block, genop2, stmts);
2627 if (!genop2)
2628 return NULL_TREE;
2629 }
2630 }
2631 if (genop3)
2632 {
2633 tree elmt_type = TREE_TYPE (TREE_TYPE (genop0));
2634 /* We can't always put a size in units of the element alignment
2635 here as the element alignment may be not visible. See
2636 PR43783. Simply drop the element size for constant
2637 sizes. */
2638 if (tree_int_cst_equal (genop3, TYPE_SIZE_UNIT (elmt_type)))
2639 genop3 = NULL_TREE;
2640 else
2641 {
2642 genop3 = size_binop (EXACT_DIV_EXPR, genop3,
2643 size_int (TYPE_ALIGN_UNIT (elmt_type)));
2644 genop3 = find_or_generate_expression (block, genop3, stmts);
2645 if (!genop3)
2646 return NULL_TREE;
2647 }
2648 }
2649 return build4 (currop->opcode, currop->type, genop0, genop1,
2650 genop2, genop3);
2651 }
2652 case COMPONENT_REF:
2653 {
2654 tree op0;
2655 tree op1;
2656 tree genop2 = currop->op1;
2657 op0 = create_component_ref_by_pieces_1 (block, ref, operand, stmts);
2658 if (!op0)
2659 return NULL_TREE;
2660 /* op1 should be a FIELD_DECL, which are represented by themselves. */
2661 op1 = currop->op0;
2662 if (genop2)
2663 {
2664 genop2 = find_or_generate_expression (block, genop2, stmts);
2665 if (!genop2)
2666 return NULL_TREE;
2667 }
2668 return fold_build3 (COMPONENT_REF, TREE_TYPE (op1), op0, op1, genop2);
2669 }
2670
2671 case SSA_NAME:
2672 {
2673 genop = find_or_generate_expression (block, currop->op0, stmts);
2674 return genop;
2675 }
2676 case STRING_CST:
2677 case INTEGER_CST:
2678 case COMPLEX_CST:
2679 case VECTOR_CST:
2680 case REAL_CST:
2681 case CONSTRUCTOR:
2682 case VAR_DECL:
2683 case PARM_DECL:
2684 case CONST_DECL:
2685 case RESULT_DECL:
2686 case FUNCTION_DECL:
2687 return currop->op0;
2688
2689 default:
2690 gcc_unreachable ();
2691 }
2692 }
2693
2694 /* For COMPONENT_REF's and ARRAY_REF's, we can't have any intermediates for the
2695 COMPONENT_REF or MEM_REF or ARRAY_REF portion, because we'd end up with
2696 trying to rename aggregates into ssa form directly, which is a no no.
2697
2698 Thus, this routine doesn't create temporaries, it just builds a
2699 single access expression for the array, calling
2700 find_or_generate_expression to build the innermost pieces.
2701
2702 This function is a subroutine of create_expression_by_pieces, and
2703 should not be called on it's own unless you really know what you
2704 are doing. */
2705
2706 static tree
2707 create_component_ref_by_pieces (basic_block block, vn_reference_t ref,
2708 gimple_seq *stmts)
2709 {
2710 unsigned int op = 0;
2711 return create_component_ref_by_pieces_1 (block, ref, &op, stmts);
2712 }
2713
2714 /* Find a simple leader for an expression, or generate one using
2715 create_expression_by_pieces from a NARY expression for the value.
2716 BLOCK is the basic_block we are looking for leaders in.
2717 OP is the tree expression to find a leader for or generate.
2718 Returns the leader or NULL_TREE on failure. */
2719
2720 static tree
2721 find_or_generate_expression (basic_block block, tree op, gimple_seq *stmts)
2722 {
2723 pre_expr expr = get_or_alloc_expr_for (op);
2724 unsigned int lookfor = get_expr_value_id (expr);
2725 pre_expr leader = bitmap_find_leader (AVAIL_OUT (block), lookfor);
2726 if (leader)
2727 {
2728 if (leader->kind == NAME)
2729 return PRE_EXPR_NAME (leader);
2730 else if (leader->kind == CONSTANT)
2731 return PRE_EXPR_CONSTANT (leader);
2732
2733 /* Defer. */
2734 return NULL_TREE;
2735 }
2736
2737 /* It must be a complex expression, so generate it recursively. Note
2738 that this is only necessary to handle gcc.dg/tree-ssa/ssa-pre28.c
2739 where the insert algorithm fails to insert a required expression. */
2740 bitmap exprset = value_expressions[lookfor];
2741 bitmap_iterator bi;
2742 unsigned int i;
2743 EXECUTE_IF_SET_IN_BITMAP (exprset, 0, i, bi)
2744 {
2745 pre_expr temp = expression_for_id (i);
2746 /* We cannot insert random REFERENCE expressions at arbitrary
2747 places. We can insert NARYs which eventually re-materializes
2748 its operand values. */
2749 if (temp->kind == NARY)
2750 return create_expression_by_pieces (block, temp, stmts,
2751 get_expr_type (expr));
2752 }
2753
2754 /* Defer. */
2755 return NULL_TREE;
2756 }
2757
2758 #define NECESSARY GF_PLF_1
2759
2760 /* Create an expression in pieces, so that we can handle very complex
2761 expressions that may be ANTIC, but not necessary GIMPLE.
2762 BLOCK is the basic block the expression will be inserted into,
2763 EXPR is the expression to insert (in value form)
2764 STMTS is a statement list to append the necessary insertions into.
2765
2766 This function will die if we hit some value that shouldn't be
2767 ANTIC but is (IE there is no leader for it, or its components).
2768 The function returns NULL_TREE in case a different antic expression
2769 has to be inserted first.
2770 This function may also generate expressions that are themselves
2771 partially or fully redundant. Those that are will be either made
2772 fully redundant during the next iteration of insert (for partially
2773 redundant ones), or eliminated by eliminate (for fully redundant
2774 ones). */
2775
2776 static tree
2777 create_expression_by_pieces (basic_block block, pre_expr expr,
2778 gimple_seq *stmts, tree type)
2779 {
2780 tree name;
2781 tree folded;
2782 gimple_seq forced_stmts = NULL;
2783 unsigned int value_id;
2784 gimple_stmt_iterator gsi;
2785 tree exprtype = type ? type : get_expr_type (expr);
2786 pre_expr nameexpr;
2787 gimple newstmt;
2788
2789 switch (expr->kind)
2790 {
2791 /* We may hit the NAME/CONSTANT case if we have to convert types
2792 that value numbering saw through. */
2793 case NAME:
2794 folded = PRE_EXPR_NAME (expr);
2795 break;
2796 case CONSTANT:
2797 folded = PRE_EXPR_CONSTANT (expr);
2798 break;
2799 case REFERENCE:
2800 {
2801 vn_reference_t ref = PRE_EXPR_REFERENCE (expr);
2802 folded = create_component_ref_by_pieces (block, ref, stmts);
2803 if (!folded)
2804 return NULL_TREE;
2805 }
2806 break;
2807 case NARY:
2808 {
2809 vn_nary_op_t nary = PRE_EXPR_NARY (expr);
2810 tree *genop = XALLOCAVEC (tree, nary->length);
2811 unsigned i;
2812 for (i = 0; i < nary->length; ++i)
2813 {
2814 genop[i] = find_or_generate_expression (block, nary->op[i], stmts);
2815 if (!genop[i])
2816 return NULL_TREE;
2817 /* Ensure genop[] is properly typed for POINTER_PLUS_EXPR. It
2818 may have conversions stripped. */
2819 if (nary->opcode == POINTER_PLUS_EXPR)
2820 {
2821 if (i == 0)
2822 genop[i] = gimple_convert (&forced_stmts,
2823 nary->type, genop[i]);
2824 else if (i == 1)
2825 genop[i] = gimple_convert (&forced_stmts,
2826 sizetype, genop[i]);
2827 }
2828 else
2829 genop[i] = gimple_convert (&forced_stmts,
2830 TREE_TYPE (nary->op[i]), genop[i]);
2831 }
2832 if (nary->opcode == CONSTRUCTOR)
2833 {
2834 vec<constructor_elt, va_gc> *elts = NULL;
2835 for (i = 0; i < nary->length; ++i)
2836 CONSTRUCTOR_APPEND_ELT (elts, NULL_TREE, genop[i]);
2837 folded = build_constructor (nary->type, elts);
2838 }
2839 else
2840 {
2841 switch (nary->length)
2842 {
2843 case 1:
2844 folded = fold_build1 (nary->opcode, nary->type,
2845 genop[0]);
2846 break;
2847 case 2:
2848 folded = fold_build2 (nary->opcode, nary->type,
2849 genop[0], genop[1]);
2850 break;
2851 case 3:
2852 folded = fold_build3 (nary->opcode, nary->type,
2853 genop[0], genop[1], genop[2]);
2854 break;
2855 default:
2856 gcc_unreachable ();
2857 }
2858 }
2859 }
2860 break;
2861 default:
2862 gcc_unreachable ();
2863 }
2864
2865 if (!useless_type_conversion_p (exprtype, TREE_TYPE (folded)))
2866 folded = fold_convert (exprtype, folded);
2867
2868 /* Force the generated expression to be a sequence of GIMPLE
2869 statements.
2870 We have to call unshare_expr because force_gimple_operand may
2871 modify the tree we pass to it. */
2872 gimple_seq tem = NULL;
2873 folded = force_gimple_operand (unshare_expr (folded), &tem,
2874 false, NULL);
2875 gimple_seq_add_seq_without_update (&forced_stmts, tem);
2876
2877 /* If we have any intermediate expressions to the value sets, add them
2878 to the value sets and chain them in the instruction stream. */
2879 if (forced_stmts)
2880 {
2881 gsi = gsi_start (forced_stmts);
2882 for (; !gsi_end_p (gsi); gsi_next (&gsi))
2883 {
2884 gimple stmt = gsi_stmt (gsi);
2885 tree forcedname = gimple_get_lhs (stmt);
2886 pre_expr nameexpr;
2887
2888 if (TREE_CODE (forcedname) == SSA_NAME)
2889 {
2890 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (forcedname));
2891 VN_INFO_GET (forcedname)->valnum = forcedname;
2892 VN_INFO (forcedname)->value_id = get_next_value_id ();
2893 nameexpr = get_or_alloc_expr_for_name (forcedname);
2894 add_to_value (VN_INFO (forcedname)->value_id, nameexpr);
2895 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
2896 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
2897 }
2898
2899 gimple_set_vuse (stmt, BB_LIVE_VOP_ON_EXIT (block));
2900 gimple_set_modified (stmt, true);
2901 }
2902 gimple_seq_add_seq (stmts, forced_stmts);
2903 }
2904
2905 name = make_temp_ssa_name (exprtype, NULL, "pretmp");
2906 newstmt = gimple_build_assign (name, folded);
2907 gimple_set_vuse (newstmt, BB_LIVE_VOP_ON_EXIT (block));
2908 gimple_set_modified (newstmt, true);
2909 gimple_set_plf (newstmt, NECESSARY, false);
2910
2911 gimple_seq_add_stmt (stmts, newstmt);
2912 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (name));
2913
2914 /* Fold the last statement. */
2915 gsi = gsi_last (*stmts);
2916 if (fold_stmt_inplace (&gsi))
2917 update_stmt (gsi_stmt (gsi));
2918
2919 /* Add a value number to the temporary.
2920 The value may already exist in either NEW_SETS, or AVAIL_OUT, because
2921 we are creating the expression by pieces, and this particular piece of
2922 the expression may have been represented. There is no harm in replacing
2923 here. */
2924 value_id = get_expr_value_id (expr);
2925 VN_INFO_GET (name)->value_id = value_id;
2926 VN_INFO (name)->valnum = sccvn_valnum_from_value_id (value_id);
2927 if (VN_INFO (name)->valnum == NULL_TREE)
2928 VN_INFO (name)->valnum = name;
2929 gcc_assert (VN_INFO (name)->valnum != NULL_TREE);
2930 nameexpr = get_or_alloc_expr_for_name (name);
2931 add_to_value (value_id, nameexpr);
2932 if (NEW_SETS (block))
2933 bitmap_value_replace_in_set (NEW_SETS (block), nameexpr);
2934 bitmap_value_replace_in_set (AVAIL_OUT (block), nameexpr);
2935
2936 pre_stats.insertions++;
2937 if (dump_file && (dump_flags & TDF_DETAILS))
2938 {
2939 fprintf (dump_file, "Inserted ");
2940 print_gimple_stmt (dump_file, newstmt, 0, 0);
2941 fprintf (dump_file, " in predecessor %d (%04d)\n",
2942 block->index, value_id);
2943 }
2944
2945 return name;
2946 }
2947
2948
2949 /* Insert the to-be-made-available values of expression EXPRNUM for each
2950 predecessor, stored in AVAIL, into the predecessors of BLOCK, and
2951 merge the result with a phi node, given the same value number as
2952 NODE. Return true if we have inserted new stuff. */
2953
2954 static bool
2955 insert_into_preds_of_block (basic_block block, unsigned int exprnum,
2956 vec<pre_expr> avail)
2957 {
2958 pre_expr expr = expression_for_id (exprnum);
2959 pre_expr newphi;
2960 unsigned int val = get_expr_value_id (expr);
2961 edge pred;
2962 bool insertions = false;
2963 bool nophi = false;
2964 basic_block bprime;
2965 pre_expr eprime;
2966 edge_iterator ei;
2967 tree type = get_expr_type (expr);
2968 tree temp;
2969 gimple phi;
2970
2971 /* Make sure we aren't creating an induction variable. */
2972 if (bb_loop_depth (block) > 0 && EDGE_COUNT (block->preds) == 2)
2973 {
2974 bool firstinsideloop = false;
2975 bool secondinsideloop = false;
2976 firstinsideloop = flow_bb_inside_loop_p (block->loop_father,
2977 EDGE_PRED (block, 0)->src);
2978 secondinsideloop = flow_bb_inside_loop_p (block->loop_father,
2979 EDGE_PRED (block, 1)->src);
2980 /* Induction variables only have one edge inside the loop. */
2981 if ((firstinsideloop ^ secondinsideloop)
2982 && expr->kind != REFERENCE)
2983 {
2984 if (dump_file && (dump_flags & TDF_DETAILS))
2985 fprintf (dump_file, "Skipping insertion of phi for partial redundancy: Looks like an induction variable\n");
2986 nophi = true;
2987 }
2988 }
2989
2990 /* Make the necessary insertions. */
2991 FOR_EACH_EDGE (pred, ei, block->preds)
2992 {
2993 gimple_seq stmts = NULL;
2994 tree builtexpr;
2995 bprime = pred->src;
2996 eprime = avail[pred->dest_idx];
2997
2998 if (eprime->kind != NAME && eprime->kind != CONSTANT)
2999 {
3000 builtexpr = create_expression_by_pieces (bprime, eprime,
3001 &stmts, type);
3002 gcc_assert (!(pred->flags & EDGE_ABNORMAL));
3003 gsi_insert_seq_on_edge (pred, stmts);
3004 if (!builtexpr)
3005 {
3006 /* We cannot insert a PHI node if we failed to insert
3007 on one edge. */
3008 nophi = true;
3009 continue;
3010 }
3011 avail[pred->dest_idx] = get_or_alloc_expr_for_name (builtexpr);
3012 insertions = true;
3013 }
3014 else if (eprime->kind == CONSTANT)
3015 {
3016 /* Constants may not have the right type, fold_convert
3017 should give us back a constant with the right type. */
3018 tree constant = PRE_EXPR_CONSTANT (eprime);
3019 if (!useless_type_conversion_p (type, TREE_TYPE (constant)))
3020 {
3021 tree builtexpr = fold_convert (type, constant);
3022 if (!is_gimple_min_invariant (builtexpr))
3023 {
3024 tree forcedexpr = force_gimple_operand (builtexpr,
3025 &stmts, true,
3026 NULL);
3027 if (!is_gimple_min_invariant (forcedexpr))
3028 {
3029 if (forcedexpr != builtexpr)
3030 {
3031 VN_INFO_GET (forcedexpr)->valnum = PRE_EXPR_CONSTANT (eprime);
3032 VN_INFO (forcedexpr)->value_id = get_expr_value_id (eprime);
3033 }
3034 if (stmts)
3035 {
3036 gimple_stmt_iterator gsi;
3037 gsi = gsi_start (stmts);
3038 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3039 {
3040 gimple stmt = gsi_stmt (gsi);
3041 tree lhs = gimple_get_lhs (stmt);
3042 if (TREE_CODE (lhs) == SSA_NAME)
3043 bitmap_set_bit (inserted_exprs,
3044 SSA_NAME_VERSION (lhs));
3045 gimple_set_plf (stmt, NECESSARY, false);
3046 }
3047 gsi_insert_seq_on_edge (pred, stmts);
3048 }
3049 avail[pred->dest_idx]
3050 = get_or_alloc_expr_for_name (forcedexpr);
3051 }
3052 }
3053 else
3054 avail[pred->dest_idx]
3055 = get_or_alloc_expr_for_constant (builtexpr);
3056 }
3057 }
3058 else if (eprime->kind == NAME)
3059 {
3060 /* We may have to do a conversion because our value
3061 numbering can look through types in certain cases, but
3062 our IL requires all operands of a phi node have the same
3063 type. */
3064 tree name = PRE_EXPR_NAME (eprime);
3065 if (!useless_type_conversion_p (type, TREE_TYPE (name)))
3066 {
3067 tree builtexpr;
3068 tree forcedexpr;
3069 builtexpr = fold_convert (type, name);
3070 forcedexpr = force_gimple_operand (builtexpr,
3071 &stmts, true,
3072 NULL);
3073
3074 if (forcedexpr != name)
3075 {
3076 VN_INFO_GET (forcedexpr)->valnum = VN_INFO (name)->valnum;
3077 VN_INFO (forcedexpr)->value_id = VN_INFO (name)->value_id;
3078 }
3079
3080 if (stmts)
3081 {
3082 gimple_stmt_iterator gsi;
3083 gsi = gsi_start (stmts);
3084 for (; !gsi_end_p (gsi); gsi_next (&gsi))
3085 {
3086 gimple stmt = gsi_stmt (gsi);
3087 tree lhs = gimple_get_lhs (stmt);
3088 if (TREE_CODE (lhs) == SSA_NAME)
3089 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (lhs));
3090 gimple_set_plf (stmt, NECESSARY, false);
3091 }
3092 gsi_insert_seq_on_edge (pred, stmts);
3093 }
3094 avail[pred->dest_idx] = get_or_alloc_expr_for_name (forcedexpr);
3095 }
3096 }
3097 }
3098 /* If we didn't want a phi node, and we made insertions, we still have
3099 inserted new stuff, and thus return true. If we didn't want a phi node,
3100 and didn't make insertions, we haven't added anything new, so return
3101 false. */
3102 if (nophi && insertions)
3103 return true;
3104 else if (nophi && !insertions)
3105 return false;
3106
3107 /* Now build a phi for the new variable. */
3108 temp = make_temp_ssa_name (type, NULL, "prephitmp");
3109 phi = create_phi_node (temp, block);
3110
3111 gimple_set_plf (phi, NECESSARY, false);
3112 VN_INFO_GET (temp)->value_id = val;
3113 VN_INFO (temp)->valnum = sccvn_valnum_from_value_id (val);
3114 if (VN_INFO (temp)->valnum == NULL_TREE)
3115 VN_INFO (temp)->valnum = temp;
3116 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (temp));
3117 FOR_EACH_EDGE (pred, ei, block->preds)
3118 {
3119 pre_expr ae = avail[pred->dest_idx];
3120 gcc_assert (get_expr_type (ae) == type
3121 || useless_type_conversion_p (type, get_expr_type (ae)));
3122 if (ae->kind == CONSTANT)
3123 add_phi_arg (phi, unshare_expr (PRE_EXPR_CONSTANT (ae)),
3124 pred, UNKNOWN_LOCATION);
3125 else
3126 add_phi_arg (phi, PRE_EXPR_NAME (ae), pred, UNKNOWN_LOCATION);
3127 }
3128
3129 newphi = get_or_alloc_expr_for_name (temp);
3130 add_to_value (val, newphi);
3131
3132 /* The value should *not* exist in PHI_GEN, or else we wouldn't be doing
3133 this insertion, since we test for the existence of this value in PHI_GEN
3134 before proceeding with the partial redundancy checks in insert_aux.
3135
3136 The value may exist in AVAIL_OUT, in particular, it could be represented
3137 by the expression we are trying to eliminate, in which case we want the
3138 replacement to occur. If it's not existing in AVAIL_OUT, we want it
3139 inserted there.
3140
3141 Similarly, to the PHI_GEN case, the value should not exist in NEW_SETS of
3142 this block, because if it did, it would have existed in our dominator's
3143 AVAIL_OUT, and would have been skipped due to the full redundancy check.
3144 */
3145
3146 bitmap_insert_into_set (PHI_GEN (block), newphi);
3147 bitmap_value_replace_in_set (AVAIL_OUT (block),
3148 newphi);
3149 bitmap_insert_into_set (NEW_SETS (block),
3150 newphi);
3151
3152 if (dump_file && (dump_flags & TDF_DETAILS))
3153 {
3154 fprintf (dump_file, "Created phi ");
3155 print_gimple_stmt (dump_file, phi, 0, 0);
3156 fprintf (dump_file, " in block %d (%04d)\n", block->index, val);
3157 }
3158 pre_stats.phis++;
3159 return true;
3160 }
3161
3162
3163
3164 /* Perform insertion of partially redundant values.
3165 For BLOCK, do the following:
3166 1. Propagate the NEW_SETS of the dominator into the current block.
3167 If the block has multiple predecessors,
3168 2a. Iterate over the ANTIC expressions for the block to see if
3169 any of them are partially redundant.
3170 2b. If so, insert them into the necessary predecessors to make
3171 the expression fully redundant.
3172 2c. Insert a new PHI merging the values of the predecessors.
3173 2d. Insert the new PHI, and the new expressions, into the
3174 NEW_SETS set.
3175 3. Recursively call ourselves on the dominator children of BLOCK.
3176
3177 Steps 1, 2a, and 3 are done by insert_aux. 2b, 2c and 2d are done by
3178 do_regular_insertion and do_partial_insertion.
3179
3180 */
3181
3182 static bool
3183 do_regular_insertion (basic_block block, basic_block dom)
3184 {
3185 bool new_stuff = false;
3186 vec<pre_expr> exprs;
3187 pre_expr expr;
3188 vec<pre_expr> avail = vNULL;
3189 int i;
3190
3191 exprs = sorted_array_from_bitmap_set (ANTIC_IN (block));
3192 avail.safe_grow (EDGE_COUNT (block->preds));
3193
3194 FOR_EACH_VEC_ELT (exprs, i, expr)
3195 {
3196 if (expr->kind == NARY
3197 || expr->kind == REFERENCE)
3198 {
3199 unsigned int val;
3200 bool by_some = false;
3201 bool cant_insert = false;
3202 bool all_same = true;
3203 pre_expr first_s = NULL;
3204 edge pred;
3205 basic_block bprime;
3206 pre_expr eprime = NULL;
3207 edge_iterator ei;
3208 pre_expr edoubleprime = NULL;
3209 bool do_insertion = false;
3210
3211 val = get_expr_value_id (expr);
3212 if (bitmap_set_contains_value (PHI_GEN (block), val))
3213 continue;
3214 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3215 {
3216 if (dump_file && (dump_flags & TDF_DETAILS))
3217 {
3218 fprintf (dump_file, "Found fully redundant value: ");
3219 print_pre_expr (dump_file, expr);
3220 fprintf (dump_file, "\n");
3221 }
3222 continue;
3223 }
3224
3225 FOR_EACH_EDGE (pred, ei, block->preds)
3226 {
3227 unsigned int vprime;
3228
3229 /* We should never run insertion for the exit block
3230 and so not come across fake pred edges. */
3231 gcc_assert (!(pred->flags & EDGE_FAKE));
3232 bprime = pred->src;
3233 eprime = phi_translate (expr, ANTIC_IN (block), NULL,
3234 bprime, block);
3235
3236 /* eprime will generally only be NULL if the
3237 value of the expression, translated
3238 through the PHI for this predecessor, is
3239 undefined. If that is the case, we can't
3240 make the expression fully redundant,
3241 because its value is undefined along a
3242 predecessor path. We can thus break out
3243 early because it doesn't matter what the
3244 rest of the results are. */
3245 if (eprime == NULL)
3246 {
3247 avail[pred->dest_idx] = NULL;
3248 cant_insert = true;
3249 break;
3250 }
3251
3252 eprime = fully_constant_expression (eprime);
3253 vprime = get_expr_value_id (eprime);
3254 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime),
3255 vprime);
3256 if (edoubleprime == NULL)
3257 {
3258 avail[pred->dest_idx] = eprime;
3259 all_same = false;
3260 }
3261 else
3262 {
3263 avail[pred->dest_idx] = edoubleprime;
3264 by_some = true;
3265 /* We want to perform insertions to remove a redundancy on
3266 a path in the CFG we want to optimize for speed. */
3267 if (optimize_edge_for_speed_p (pred))
3268 do_insertion = true;
3269 if (first_s == NULL)
3270 first_s = edoubleprime;
3271 else if (!pre_expr_d::equal (first_s, edoubleprime))
3272 all_same = false;
3273 }
3274 }
3275 /* If we can insert it, it's not the same value
3276 already existing along every predecessor, and
3277 it's defined by some predecessor, it is
3278 partially redundant. */
3279 if (!cant_insert && !all_same && by_some)
3280 {
3281 if (!do_insertion)
3282 {
3283 if (dump_file && (dump_flags & TDF_DETAILS))
3284 {
3285 fprintf (dump_file, "Skipping partial redundancy for "
3286 "expression ");
3287 print_pre_expr (dump_file, expr);
3288 fprintf (dump_file, " (%04d), no redundancy on to be "
3289 "optimized for speed edge\n", val);
3290 }
3291 }
3292 else if (dbg_cnt (treepre_insert))
3293 {
3294 if (dump_file && (dump_flags & TDF_DETAILS))
3295 {
3296 fprintf (dump_file, "Found partial redundancy for "
3297 "expression ");
3298 print_pre_expr (dump_file, expr);
3299 fprintf (dump_file, " (%04d)\n",
3300 get_expr_value_id (expr));
3301 }
3302 if (insert_into_preds_of_block (block,
3303 get_expression_id (expr),
3304 avail))
3305 new_stuff = true;
3306 }
3307 }
3308 /* If all edges produce the same value and that value is
3309 an invariant, then the PHI has the same value on all
3310 edges. Note this. */
3311 else if (!cant_insert && all_same)
3312 {
3313 gcc_assert (edoubleprime->kind == CONSTANT
3314 || edoubleprime->kind == NAME);
3315
3316 tree temp = make_temp_ssa_name (get_expr_type (expr),
3317 NULL, "pretmp");
3318 gimple assign = gimple_build_assign (temp,
3319 edoubleprime->kind == CONSTANT ? PRE_EXPR_CONSTANT (edoubleprime) : PRE_EXPR_NAME (edoubleprime));
3320 gimple_stmt_iterator gsi = gsi_after_labels (block);
3321 gsi_insert_before (&gsi, assign, GSI_NEW_STMT);
3322
3323 gimple_set_plf (assign, NECESSARY, false);
3324 VN_INFO_GET (temp)->value_id = val;
3325 VN_INFO (temp)->valnum = sccvn_valnum_from_value_id (val);
3326 if (VN_INFO (temp)->valnum == NULL_TREE)
3327 VN_INFO (temp)->valnum = temp;
3328 bitmap_set_bit (inserted_exprs, SSA_NAME_VERSION (temp));
3329 pre_expr newe = get_or_alloc_expr_for_name (temp);
3330 add_to_value (val, newe);
3331 bitmap_value_replace_in_set (AVAIL_OUT (block), newe);
3332 bitmap_insert_into_set (NEW_SETS (block), newe);
3333 }
3334 }
3335 }
3336
3337 exprs.release ();
3338 return new_stuff;
3339 }
3340
3341
3342 /* Perform insertion for partially anticipatable expressions. There
3343 is only one case we will perform insertion for these. This case is
3344 if the expression is partially anticipatable, and fully available.
3345 In this case, we know that putting it earlier will enable us to
3346 remove the later computation. */
3347
3348
3349 static bool
3350 do_partial_partial_insertion (basic_block block, basic_block dom)
3351 {
3352 bool new_stuff = false;
3353 vec<pre_expr> exprs;
3354 pre_expr expr;
3355 auto_vec<pre_expr> avail;
3356 int i;
3357
3358 exprs = sorted_array_from_bitmap_set (PA_IN (block));
3359 avail.safe_grow (EDGE_COUNT (block->preds));
3360
3361 FOR_EACH_VEC_ELT (exprs, i, expr)
3362 {
3363 if (expr->kind == NARY
3364 || expr->kind == REFERENCE)
3365 {
3366 unsigned int val;
3367 bool by_all = true;
3368 bool cant_insert = false;
3369 edge pred;
3370 basic_block bprime;
3371 pre_expr eprime = NULL;
3372 edge_iterator ei;
3373
3374 val = get_expr_value_id (expr);
3375 if (bitmap_set_contains_value (PHI_GEN (block), val))
3376 continue;
3377 if (bitmap_set_contains_value (AVAIL_OUT (dom), val))
3378 continue;
3379
3380 FOR_EACH_EDGE (pred, ei, block->preds)
3381 {
3382 unsigned int vprime;
3383 pre_expr edoubleprime;
3384
3385 /* We should never run insertion for the exit block
3386 and so not come across fake pred edges. */
3387 gcc_assert (!(pred->flags & EDGE_FAKE));
3388 bprime = pred->src;
3389 eprime = phi_translate (expr, ANTIC_IN (block),
3390 PA_IN (block),
3391 bprime, block);
3392
3393 /* eprime will generally only be NULL if the
3394 value of the expression, translated
3395 through the PHI for this predecessor, is
3396 undefined. If that is the case, we can't
3397 make the expression fully redundant,
3398 because its value is undefined along a
3399 predecessor path. We can thus break out
3400 early because it doesn't matter what the
3401 rest of the results are. */
3402 if (eprime == NULL)
3403 {
3404 avail[pred->dest_idx] = NULL;
3405 cant_insert = true;
3406 break;
3407 }
3408
3409 eprime = fully_constant_expression (eprime);
3410 vprime = get_expr_value_id (eprime);
3411 edoubleprime = bitmap_find_leader (AVAIL_OUT (bprime), vprime);
3412 avail[pred->dest_idx] = edoubleprime;
3413 if (edoubleprime == NULL)
3414 {
3415 by_all = false;
3416 break;
3417 }
3418 }
3419
3420 /* If we can insert it, it's not the same value
3421 already existing along every predecessor, and
3422 it's defined by some predecessor, it is
3423 partially redundant. */
3424 if (!cant_insert && by_all)
3425 {
3426 edge succ;
3427 bool do_insertion = false;
3428
3429 /* Insert only if we can remove a later expression on a path
3430 that we want to optimize for speed.
3431 The phi node that we will be inserting in BLOCK is not free,
3432 and inserting it for the sake of !optimize_for_speed successor
3433 may cause regressions on the speed path. */
3434 FOR_EACH_EDGE (succ, ei, block->succs)
3435 {
3436 if (bitmap_set_contains_value (PA_IN (succ->dest), val)
3437 || bitmap_set_contains_value (ANTIC_IN (succ->dest), val))
3438 {
3439 if (optimize_edge_for_speed_p (succ))
3440 do_insertion = true;
3441 }
3442 }
3443
3444 if (!do_insertion)
3445 {
3446 if (dump_file && (dump_flags & TDF_DETAILS))
3447 {
3448 fprintf (dump_file, "Skipping partial partial redundancy "
3449 "for expression ");
3450 print_pre_expr (dump_file, expr);
3451 fprintf (dump_file, " (%04d), not (partially) anticipated "
3452 "on any to be optimized for speed edges\n", val);
3453 }
3454 }
3455 else if (dbg_cnt (treepre_insert))
3456 {
3457 pre_stats.pa_insert++;
3458 if (dump_file && (dump_flags & TDF_DETAILS))
3459 {
3460 fprintf (dump_file, "Found partial partial redundancy "
3461 "for expression ");
3462 print_pre_expr (dump_file, expr);
3463 fprintf (dump_file, " (%04d)\n",
3464 get_expr_value_id (expr));
3465 }
3466 if (insert_into_preds_of_block (block,
3467 get_expression_id (expr),
3468 avail))
3469 new_stuff = true;
3470 }
3471 }
3472 }
3473 }
3474
3475 exprs.release ();
3476 return new_stuff;
3477 }
3478
3479 static bool
3480 insert_aux (basic_block block)
3481 {
3482 basic_block son;
3483 bool new_stuff = false;
3484
3485 if (block)
3486 {
3487 basic_block dom;
3488 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3489 if (dom)
3490 {
3491 unsigned i;
3492 bitmap_iterator bi;
3493 bitmap_set_t newset = NEW_SETS (dom);
3494 if (newset)
3495 {
3496 /* Note that we need to value_replace both NEW_SETS, and
3497 AVAIL_OUT. For both the case of NEW_SETS, the value may be
3498 represented by some non-simple expression here that we want
3499 to replace it with. */
3500 FOR_EACH_EXPR_ID_IN_SET (newset, i, bi)
3501 {
3502 pre_expr expr = expression_for_id (i);
3503 bitmap_value_replace_in_set (NEW_SETS (block), expr);
3504 bitmap_value_replace_in_set (AVAIL_OUT (block), expr);
3505 }
3506 }
3507 if (!single_pred_p (block))
3508 {
3509 new_stuff |= do_regular_insertion (block, dom);
3510 if (do_partial_partial)
3511 new_stuff |= do_partial_partial_insertion (block, dom);
3512 }
3513 }
3514 }
3515 for (son = first_dom_son (CDI_DOMINATORS, block);
3516 son;
3517 son = next_dom_son (CDI_DOMINATORS, son))
3518 {
3519 new_stuff |= insert_aux (son);
3520 }
3521
3522 return new_stuff;
3523 }
3524
3525 /* Perform insertion of partially redundant values. */
3526
3527 static void
3528 insert (void)
3529 {
3530 bool new_stuff = true;
3531 basic_block bb;
3532 int num_iterations = 0;
3533
3534 FOR_ALL_BB_FN (bb, cfun)
3535 NEW_SETS (bb) = bitmap_set_new ();
3536
3537 while (new_stuff)
3538 {
3539 num_iterations++;
3540 if (dump_file && dump_flags & TDF_DETAILS)
3541 fprintf (dump_file, "Starting insert iteration %d\n", num_iterations);
3542 new_stuff = insert_aux (ENTRY_BLOCK_PTR_FOR_FN (cfun));
3543
3544 /* Clear the NEW sets before the next iteration. We have already
3545 fully propagated its contents. */
3546 if (new_stuff)
3547 FOR_ALL_BB_FN (bb, cfun)
3548 bitmap_set_free (NEW_SETS (bb));
3549 }
3550 statistics_histogram_event (cfun, "insert iterations", num_iterations);
3551 }
3552
3553
3554 /* Compute the AVAIL set for all basic blocks.
3555
3556 This function performs value numbering of the statements in each basic
3557 block. The AVAIL sets are built from information we glean while doing
3558 this value numbering, since the AVAIL sets contain only one entry per
3559 value.
3560
3561 AVAIL_IN[BLOCK] = AVAIL_OUT[dom(BLOCK)].
3562 AVAIL_OUT[BLOCK] = AVAIL_IN[BLOCK] U PHI_GEN[BLOCK] U TMP_GEN[BLOCK]. */
3563
3564 static void
3565 compute_avail (void)
3566 {
3567
3568 basic_block block, son;
3569 basic_block *worklist;
3570 size_t sp = 0;
3571 unsigned i;
3572
3573 /* We pretend that default definitions are defined in the entry block.
3574 This includes function arguments and the static chain decl. */
3575 for (i = 1; i < num_ssa_names; ++i)
3576 {
3577 tree name = ssa_name (i);
3578 pre_expr e;
3579 if (!name
3580 || !SSA_NAME_IS_DEFAULT_DEF (name)
3581 || has_zero_uses (name)
3582 || virtual_operand_p (name))
3583 continue;
3584
3585 e = get_or_alloc_expr_for_name (name);
3586 add_to_value (get_expr_value_id (e), e);
3587 bitmap_insert_into_set (TMP_GEN (ENTRY_BLOCK_PTR_FOR_FN (cfun)), e);
3588 bitmap_value_insert_into_set (AVAIL_OUT (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3589 e);
3590 }
3591
3592 if (dump_file && (dump_flags & TDF_DETAILS))
3593 {
3594 print_bitmap_set (dump_file, TMP_GEN (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3595 "tmp_gen", ENTRY_BLOCK);
3596 print_bitmap_set (dump_file, AVAIL_OUT (ENTRY_BLOCK_PTR_FOR_FN (cfun)),
3597 "avail_out", ENTRY_BLOCK);
3598 }
3599
3600 /* Allocate the worklist. */
3601 worklist = XNEWVEC (basic_block, n_basic_blocks_for_fn (cfun));
3602
3603 /* Seed the algorithm by putting the dominator children of the entry
3604 block on the worklist. */
3605 for (son = first_dom_son (CDI_DOMINATORS, ENTRY_BLOCK_PTR_FOR_FN (cfun));
3606 son;
3607 son = next_dom_son (CDI_DOMINATORS, son))
3608 worklist[sp++] = son;
3609
3610 BB_LIVE_VOP_ON_EXIT (ENTRY_BLOCK_PTR_FOR_FN (cfun))
3611 = ssa_default_def (cfun, gimple_vop (cfun));
3612
3613 /* Loop until the worklist is empty. */
3614 while (sp)
3615 {
3616 gimple_stmt_iterator gsi;
3617 gimple stmt;
3618 basic_block dom;
3619
3620 /* Pick a block from the worklist. */
3621 block = worklist[--sp];
3622
3623 /* Initially, the set of available values in BLOCK is that of
3624 its immediate dominator. */
3625 dom = get_immediate_dominator (CDI_DOMINATORS, block);
3626 if (dom)
3627 {
3628 bitmap_set_copy (AVAIL_OUT (block), AVAIL_OUT (dom));
3629 BB_LIVE_VOP_ON_EXIT (block) = BB_LIVE_VOP_ON_EXIT (dom);
3630 }
3631
3632 /* Generate values for PHI nodes. */
3633 for (gsi = gsi_start_phis (block); !gsi_end_p (gsi); gsi_next (&gsi))
3634 {
3635 tree result = gimple_phi_result (gsi_stmt (gsi));
3636
3637 /* We have no need for virtual phis, as they don't represent
3638 actual computations. */
3639 if (virtual_operand_p (result))
3640 {
3641 BB_LIVE_VOP_ON_EXIT (block) = result;
3642 continue;
3643 }
3644
3645 pre_expr e = get_or_alloc_expr_for_name (result);
3646 add_to_value (get_expr_value_id (e), e);
3647 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3648 bitmap_insert_into_set (PHI_GEN (block), e);
3649 }
3650
3651 BB_MAY_NOTRETURN (block) = 0;
3652
3653 /* Now compute value numbers and populate value sets with all
3654 the expressions computed in BLOCK. */
3655 for (gsi = gsi_start_bb (block); !gsi_end_p (gsi); gsi_next (&gsi))
3656 {
3657 ssa_op_iter iter;
3658 tree op;
3659
3660 stmt = gsi_stmt (gsi);
3661
3662 /* Cache whether the basic-block has any non-visible side-effect
3663 or control flow.
3664 If this isn't a call or it is the last stmt in the
3665 basic-block then the CFG represents things correctly. */
3666 if (is_gimple_call (stmt) && !stmt_ends_bb_p (stmt))
3667 {
3668 /* Non-looping const functions always return normally.
3669 Otherwise the call might not return or have side-effects
3670 that forbids hoisting possibly trapping expressions
3671 before it. */
3672 int flags = gimple_call_flags (stmt);
3673 if (!(flags & ECF_CONST)
3674 || (flags & ECF_LOOPING_CONST_OR_PURE))
3675 BB_MAY_NOTRETURN (block) = 1;
3676 }
3677
3678 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
3679 {
3680 pre_expr e = get_or_alloc_expr_for_name (op);
3681
3682 add_to_value (get_expr_value_id (e), e);
3683 bitmap_insert_into_set (TMP_GEN (block), e);
3684 bitmap_value_insert_into_set (AVAIL_OUT (block), e);
3685 }
3686
3687 if (gimple_vdef (stmt))
3688 BB_LIVE_VOP_ON_EXIT (block) = gimple_vdef (stmt);
3689
3690 if (gimple_has_side_effects (stmt)
3691 || stmt_could_throw_p (stmt)
3692 || is_gimple_debug (stmt))
3693 continue;
3694
3695 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
3696 {
3697 if (ssa_undefined_value_p (op))
3698 continue;
3699 pre_expr e = get_or_alloc_expr_for_name (op);
3700 bitmap_value_insert_into_set (EXP_GEN (block), e);
3701 }
3702
3703 switch (gimple_code (stmt))
3704 {
3705 case GIMPLE_RETURN:
3706 continue;
3707
3708 case GIMPLE_CALL:
3709 {
3710 vn_reference_t ref;
3711 vn_reference_s ref1;
3712 pre_expr result = NULL;
3713
3714 /* We can value number only calls to real functions. */
3715 if (gimple_call_internal_p (stmt))
3716 continue;
3717
3718 vn_reference_lookup_call (stmt, &ref, &ref1);
3719 if (!ref)
3720 continue;
3721
3722 /* If the value of the call is not invalidated in
3723 this block until it is computed, add the expression
3724 to EXP_GEN. */
3725 if (!gimple_vuse (stmt)
3726 || gimple_code
3727 (SSA_NAME_DEF_STMT (gimple_vuse (stmt))) == GIMPLE_PHI
3728 || gimple_bb (SSA_NAME_DEF_STMT
3729 (gimple_vuse (stmt))) != block)
3730 {
3731 result = (pre_expr) pool_alloc (pre_expr_pool);
3732 result->kind = REFERENCE;
3733 result->id = 0;
3734 PRE_EXPR_REFERENCE (result) = ref;
3735
3736 get_or_alloc_expression_id (result);
3737 add_to_value (get_expr_value_id (result), result);
3738 bitmap_value_insert_into_set (EXP_GEN (block), result);
3739 }
3740 continue;
3741 }
3742
3743 case GIMPLE_ASSIGN:
3744 {
3745 pre_expr result = NULL;
3746 switch (vn_get_stmt_kind (stmt))
3747 {
3748 case VN_NARY:
3749 {
3750 enum tree_code code = gimple_assign_rhs_code (stmt);
3751 vn_nary_op_t nary;
3752
3753 /* COND_EXPR and VEC_COND_EXPR are awkward in
3754 that they contain an embedded complex expression.
3755 Don't even try to shove those through PRE. */
3756 if (code == COND_EXPR
3757 || code == VEC_COND_EXPR)
3758 continue;
3759
3760 vn_nary_op_lookup_stmt (stmt, &nary);
3761 if (!nary)
3762 continue;
3763
3764 /* If the NARY traps and there was a preceding
3765 point in the block that might not return avoid
3766 adding the nary to EXP_GEN. */
3767 if (BB_MAY_NOTRETURN (block)
3768 && vn_nary_may_trap (nary))
3769 continue;
3770
3771 result = (pre_expr) pool_alloc (pre_expr_pool);
3772 result->kind = NARY;
3773 result->id = 0;
3774 PRE_EXPR_NARY (result) = nary;
3775 break;
3776 }
3777
3778 case VN_REFERENCE:
3779 {
3780 vn_reference_t ref;
3781 vn_reference_lookup (gimple_assign_rhs1 (stmt),
3782 gimple_vuse (stmt),
3783 VN_WALK, &ref);
3784 if (!ref)
3785 continue;
3786
3787 /* If the value of the reference is not invalidated in
3788 this block until it is computed, add the expression
3789 to EXP_GEN. */
3790 if (gimple_vuse (stmt))
3791 {
3792 gimple def_stmt;
3793 bool ok = true;
3794 def_stmt = SSA_NAME_DEF_STMT (gimple_vuse (stmt));
3795 while (!gimple_nop_p (def_stmt)
3796 && gimple_code (def_stmt) != GIMPLE_PHI
3797 && gimple_bb (def_stmt) == block)
3798 {
3799 if (stmt_may_clobber_ref_p
3800 (def_stmt, gimple_assign_rhs1 (stmt)))
3801 {
3802 ok = false;
3803 break;
3804 }
3805 def_stmt
3806 = SSA_NAME_DEF_STMT (gimple_vuse (def_stmt));
3807 }
3808 if (!ok)
3809 continue;
3810 }
3811
3812 result = (pre_expr) pool_alloc (pre_expr_pool);
3813 result->kind = REFERENCE;
3814 result->id = 0;
3815 PRE_EXPR_REFERENCE (result) = ref;
3816 break;
3817 }
3818
3819 default:
3820 continue;
3821 }
3822
3823 get_or_alloc_expression_id (result);
3824 add_to_value (get_expr_value_id (result), result);
3825 bitmap_value_insert_into_set (EXP_GEN (block), result);
3826 continue;
3827 }
3828 default:
3829 break;
3830 }
3831 }
3832
3833 if (dump_file && (dump_flags & TDF_DETAILS))
3834 {
3835 print_bitmap_set (dump_file, EXP_GEN (block),
3836 "exp_gen", block->index);
3837 print_bitmap_set (dump_file, PHI_GEN (block),
3838 "phi_gen", block->index);
3839 print_bitmap_set (dump_file, TMP_GEN (block),
3840 "tmp_gen", block->index);
3841 print_bitmap_set (dump_file, AVAIL_OUT (block),
3842 "avail_out", block->index);
3843 }
3844
3845 /* Put the dominator children of BLOCK on the worklist of blocks
3846 to compute available sets for. */
3847 for (son = first_dom_son (CDI_DOMINATORS, block);
3848 son;
3849 son = next_dom_son (CDI_DOMINATORS, son))
3850 worklist[sp++] = son;
3851 }
3852
3853 free (worklist);
3854 }
3855
3856
3857 /* Local state for the eliminate domwalk. */
3858 static vec<gimple> el_to_remove;
3859 static unsigned int el_todo;
3860 static vec<tree> el_avail;
3861 static vec<tree> el_avail_stack;
3862
3863 /* Return a leader for OP that is available at the current point of the
3864 eliminate domwalk. */
3865
3866 static tree
3867 eliminate_avail (tree op)
3868 {
3869 tree valnum = VN_INFO (op)->valnum;
3870 if (TREE_CODE (valnum) == SSA_NAME)
3871 {
3872 if (SSA_NAME_IS_DEFAULT_DEF (valnum))
3873 return valnum;
3874 if (el_avail.length () > SSA_NAME_VERSION (valnum))
3875 return el_avail[SSA_NAME_VERSION (valnum)];
3876 }
3877 else if (is_gimple_min_invariant (valnum))
3878 return valnum;
3879 return NULL_TREE;
3880 }
3881
3882 /* At the current point of the eliminate domwalk make OP available. */
3883
3884 static void
3885 eliminate_push_avail (tree op)
3886 {
3887 tree valnum = VN_INFO (op)->valnum;
3888 if (TREE_CODE (valnum) == SSA_NAME)
3889 {
3890 if (el_avail.length () <= SSA_NAME_VERSION (valnum))
3891 el_avail.safe_grow_cleared (SSA_NAME_VERSION (valnum) + 1);
3892 el_avail[SSA_NAME_VERSION (valnum)] = op;
3893 el_avail_stack.safe_push (op);
3894 }
3895 }
3896
3897 /* Insert the expression recorded by SCCVN for VAL at *GSI. Returns
3898 the leader for the expression if insertion was successful. */
3899
3900 static tree
3901 eliminate_insert (gimple_stmt_iterator *gsi, tree val)
3902 {
3903 tree expr = vn_get_expr_for (val);
3904 if (!CONVERT_EXPR_P (expr)
3905 && TREE_CODE (expr) != VIEW_CONVERT_EXPR)
3906 return NULL_TREE;
3907
3908 tree op = TREE_OPERAND (expr, 0);
3909 tree leader = TREE_CODE (op) == SSA_NAME ? eliminate_avail (op) : op;
3910 if (!leader)
3911 return NULL_TREE;
3912
3913 tree res = make_temp_ssa_name (TREE_TYPE (val), NULL, "pretmp");
3914 gimple tem = gimple_build_assign (res,
3915 fold_build1 (TREE_CODE (expr),
3916 TREE_TYPE (expr), leader));
3917 gsi_insert_before (gsi, tem, GSI_SAME_STMT);
3918 VN_INFO_GET (res)->valnum = val;
3919
3920 if (TREE_CODE (leader) == SSA_NAME)
3921 gimple_set_plf (SSA_NAME_DEF_STMT (leader), NECESSARY, true);
3922
3923 pre_stats.insertions++;
3924 if (dump_file && (dump_flags & TDF_DETAILS))
3925 {
3926 fprintf (dump_file, "Inserted ");
3927 print_gimple_stmt (dump_file, tem, 0, 0);
3928 }
3929
3930 return res;
3931 }
3932
3933 class eliminate_dom_walker : public dom_walker
3934 {
3935 public:
3936 eliminate_dom_walker (cdi_direction direction, bool do_pre_)
3937 : dom_walker (direction), do_pre (do_pre_) {}
3938
3939 virtual void before_dom_children (basic_block);
3940 virtual void after_dom_children (basic_block);
3941
3942 bool do_pre;
3943 };
3944
3945 /* Perform elimination for the basic-block B during the domwalk. */
3946
3947 void
3948 eliminate_dom_walker::before_dom_children (basic_block b)
3949 {
3950 gimple_stmt_iterator gsi;
3951 gimple stmt;
3952
3953 /* Mark new bb. */
3954 el_avail_stack.safe_push (NULL_TREE);
3955
3956 /* ??? If we do nothing for unreachable blocks then this will confuse
3957 tailmerging. Eventually we can reduce its reliance on SCCVN now
3958 that we fully copy/constant-propagate (most) things. */
3959
3960 for (gsi = gsi_start_phis (b); !gsi_end_p (gsi);)
3961 {
3962 gimple phi = gsi_stmt (gsi);
3963 tree res = PHI_RESULT (phi);
3964
3965 if (virtual_operand_p (res))
3966 {
3967 gsi_next (&gsi);
3968 continue;
3969 }
3970
3971 tree sprime = eliminate_avail (res);
3972 if (sprime
3973 && sprime != res)
3974 {
3975 if (dump_file && (dump_flags & TDF_DETAILS))
3976 {
3977 fprintf (dump_file, "Replaced redundant PHI node defining ");
3978 print_generic_expr (dump_file, res, 0);
3979 fprintf (dump_file, " with ");
3980 print_generic_expr (dump_file, sprime, 0);
3981 fprintf (dump_file, "\n");
3982 }
3983
3984 /* If we inserted this PHI node ourself, it's not an elimination. */
3985 if (inserted_exprs
3986 && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res)))
3987 pre_stats.phis--;
3988 else
3989 pre_stats.eliminations++;
3990
3991 /* If we will propagate into all uses don't bother to do
3992 anything. */
3993 if (may_propagate_copy (res, sprime))
3994 {
3995 /* Mark the PHI for removal. */
3996 el_to_remove.safe_push (phi);
3997 gsi_next (&gsi);
3998 continue;
3999 }
4000
4001 remove_phi_node (&gsi, false);
4002
4003 if (inserted_exprs
4004 && !bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (res))
4005 && TREE_CODE (sprime) == SSA_NAME)
4006 gimple_set_plf (SSA_NAME_DEF_STMT (sprime), NECESSARY, true);
4007
4008 if (!useless_type_conversion_p (TREE_TYPE (res), TREE_TYPE (sprime)))
4009 sprime = fold_convert (TREE_TYPE (res), sprime);
4010 gimple stmt = gimple_build_assign (res, sprime);
4011 /* ??? It cannot yet be necessary (DOM walk). */
4012 gimple_set_plf (stmt, NECESSARY, gimple_plf (phi, NECESSARY));
4013
4014 gimple_stmt_iterator gsi2 = gsi_after_labels (b);
4015 gsi_insert_before (&gsi2, stmt, GSI_NEW_STMT);
4016 continue;
4017 }
4018
4019 eliminate_push_avail (res);
4020 gsi_next (&gsi);
4021 }
4022
4023 for (gsi = gsi_start_bb (b); !gsi_end_p (gsi); gsi_next (&gsi))
4024 {
4025 tree sprime = NULL_TREE;
4026 stmt = gsi_stmt (gsi);
4027 tree lhs = gimple_get_lhs (stmt);
4028 if (lhs && TREE_CODE (lhs) == SSA_NAME
4029 && !gimple_has_volatile_ops (stmt)
4030 /* See PR43491. Do not replace a global register variable when
4031 it is a the RHS of an assignment. Do replace local register
4032 variables since gcc does not guarantee a local variable will
4033 be allocated in register.
4034 ??? The fix isn't effective here. This should instead
4035 be ensured by not value-numbering them the same but treating
4036 them like volatiles? */
4037 && !(gimple_assign_single_p (stmt)
4038 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == VAR_DECL
4039 && DECL_HARD_REGISTER (gimple_assign_rhs1 (stmt))
4040 && is_global_var (gimple_assign_rhs1 (stmt)))))
4041 {
4042 sprime = eliminate_avail (lhs);
4043 if (!sprime)
4044 {
4045 /* If there is no existing usable leader but SCCVN thinks
4046 it has an expression it wants to use as replacement,
4047 insert that. */
4048 tree val = VN_INFO (lhs)->valnum;
4049 if (val != VN_TOP
4050 && TREE_CODE (val) == SSA_NAME
4051 && VN_INFO (val)->needs_insertion
4052 && VN_INFO (val)->expr != NULL_TREE
4053 && (sprime = eliminate_insert (&gsi, val)) != NULL_TREE)
4054 eliminate_push_avail (sprime);
4055 }
4056
4057 /* If this now constitutes a copy duplicate points-to
4058 and range info appropriately. This is especially
4059 important for inserted code. See tree-ssa-copy.c
4060 for similar code. */
4061 if (sprime
4062 && TREE_CODE (sprime) == SSA_NAME)
4063 {
4064 basic_block sprime_b = gimple_bb (SSA_NAME_DEF_STMT (sprime));
4065 if (POINTER_TYPE_P (TREE_TYPE (lhs))
4066 && SSA_NAME_PTR_INFO (lhs)
4067 && !SSA_NAME_PTR_INFO (sprime))
4068 {
4069 duplicate_ssa_name_ptr_info (sprime,
4070 SSA_NAME_PTR_INFO (lhs));
4071 if (b != sprime_b)
4072 mark_ptr_info_alignment_unknown
4073 (SSA_NAME_PTR_INFO (sprime));
4074 }
4075 else if (!POINTER_TYPE_P (TREE_TYPE (lhs))
4076 && SSA_NAME_RANGE_INFO (lhs)
4077 && !SSA_NAME_RANGE_INFO (sprime)
4078 && b == sprime_b)
4079 duplicate_ssa_name_range_info (sprime,
4080 SSA_NAME_RANGE_TYPE (lhs),
4081 SSA_NAME_RANGE_INFO (lhs));
4082 }
4083
4084 /* Inhibit the use of an inserted PHI on a loop header when
4085 the address of the memory reference is a simple induction
4086 variable. In other cases the vectorizer won't do anything
4087 anyway (either it's loop invariant or a complicated
4088 expression). */
4089 if (sprime
4090 && TREE_CODE (sprime) == SSA_NAME
4091 && do_pre
4092 && flag_tree_loop_vectorize
4093 && loop_outer (b->loop_father)
4094 && has_zero_uses (sprime)
4095 && bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (sprime))
4096 && gimple_assign_load_p (stmt))
4097 {
4098 gimple def_stmt = SSA_NAME_DEF_STMT (sprime);
4099 basic_block def_bb = gimple_bb (def_stmt);
4100 if (gimple_code (def_stmt) == GIMPLE_PHI
4101 && b->loop_father->header == def_bb)
4102 {
4103 ssa_op_iter iter;
4104 tree op;
4105 bool found = false;
4106 FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE)
4107 {
4108 affine_iv iv;
4109 def_bb = gimple_bb (SSA_NAME_DEF_STMT (op));
4110 if (def_bb
4111 && flow_bb_inside_loop_p (b->loop_father, def_bb)
4112 && simple_iv (b->loop_father,
4113 b->loop_father, op, &iv, true))
4114 {
4115 found = true;
4116 break;
4117 }
4118 }
4119 if (found)
4120 {
4121 if (dump_file && (dump_flags & TDF_DETAILS))
4122 {
4123 fprintf (dump_file, "Not replacing ");
4124 print_gimple_expr (dump_file, stmt, 0, 0);
4125 fprintf (dump_file, " with ");
4126 print_generic_expr (dump_file, sprime, 0);
4127 fprintf (dump_file, " which would add a loop"
4128 " carried dependence to loop %d\n",
4129 b->loop_father->num);
4130 }
4131 /* Don't keep sprime available. */
4132 sprime = NULL_TREE;
4133 }
4134 }
4135 }
4136
4137 if (sprime)
4138 {
4139 /* If we can propagate the value computed for LHS into
4140 all uses don't bother doing anything with this stmt. */
4141 if (may_propagate_copy (lhs, sprime))
4142 {
4143 /* Mark it for removal. */
4144 el_to_remove.safe_push (stmt);
4145
4146 /* ??? Don't count copy/constant propagations. */
4147 if (gimple_assign_single_p (stmt)
4148 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
4149 || gimple_assign_rhs1 (stmt) == sprime))
4150 continue;
4151
4152 if (dump_file && (dump_flags & TDF_DETAILS))
4153 {
4154 fprintf (dump_file, "Replaced ");
4155 print_gimple_expr (dump_file, stmt, 0, 0);
4156 fprintf (dump_file, " with ");
4157 print_generic_expr (dump_file, sprime, 0);
4158 fprintf (dump_file, " in all uses of ");
4159 print_gimple_stmt (dump_file, stmt, 0, 0);
4160 }
4161
4162 pre_stats.eliminations++;
4163 continue;
4164 }
4165
4166 /* If this is an assignment from our leader (which
4167 happens in the case the value-number is a constant)
4168 then there is nothing to do. */
4169 if (gimple_assign_single_p (stmt)
4170 && sprime == gimple_assign_rhs1 (stmt))
4171 continue;
4172
4173 /* Else replace its RHS. */
4174 bool can_make_abnormal_goto
4175 = is_gimple_call (stmt)
4176 && stmt_can_make_abnormal_goto (stmt);
4177
4178 if (dump_file && (dump_flags & TDF_DETAILS))
4179 {
4180 fprintf (dump_file, "Replaced ");
4181 print_gimple_expr (dump_file, stmt, 0, 0);
4182 fprintf (dump_file, " with ");
4183 print_generic_expr (dump_file, sprime, 0);
4184 fprintf (dump_file, " in ");
4185 print_gimple_stmt (dump_file, stmt, 0, 0);
4186 }
4187
4188 if (TREE_CODE (sprime) == SSA_NAME)
4189 gimple_set_plf (SSA_NAME_DEF_STMT (sprime),
4190 NECESSARY, true);
4191
4192 pre_stats.eliminations++;
4193 gimple orig_stmt = stmt;
4194 if (!useless_type_conversion_p (TREE_TYPE (lhs),
4195 TREE_TYPE (sprime)))
4196 sprime = fold_convert (TREE_TYPE (lhs), sprime);
4197 tree vdef = gimple_vdef (stmt);
4198 tree vuse = gimple_vuse (stmt);
4199 propagate_tree_value_into_stmt (&gsi, sprime);
4200 stmt = gsi_stmt (gsi);
4201 update_stmt (stmt);
4202 if (vdef != gimple_vdef (stmt))
4203 VN_INFO (vdef)->valnum = vuse;
4204
4205 /* If we removed EH side-effects from the statement, clean
4206 its EH information. */
4207 if (maybe_clean_or_replace_eh_stmt (orig_stmt, stmt))
4208 {
4209 bitmap_set_bit (need_eh_cleanup,
4210 gimple_bb (stmt)->index);
4211 if (dump_file && (dump_flags & TDF_DETAILS))
4212 fprintf (dump_file, " Removed EH side-effects.\n");
4213 }
4214
4215 /* Likewise for AB side-effects. */
4216 if (can_make_abnormal_goto
4217 && !stmt_can_make_abnormal_goto (stmt))
4218 {
4219 bitmap_set_bit (need_ab_cleanup,
4220 gimple_bb (stmt)->index);
4221 if (dump_file && (dump_flags & TDF_DETAILS))
4222 fprintf (dump_file, " Removed AB side-effects.\n");
4223 }
4224
4225 continue;
4226 }
4227 }
4228
4229 /* If the statement is a scalar store, see if the expression
4230 has the same value number as its rhs. If so, the store is
4231 dead. */
4232 if (gimple_assign_single_p (stmt)
4233 && !gimple_has_volatile_ops (stmt)
4234 && !is_gimple_reg (gimple_assign_lhs (stmt))
4235 && (TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
4236 || is_gimple_min_invariant (gimple_assign_rhs1 (stmt))))
4237 {
4238 tree val;
4239 tree rhs = gimple_assign_rhs1 (stmt);
4240 val = vn_reference_lookup (gimple_assign_lhs (stmt),
4241 gimple_vuse (stmt), VN_WALK, NULL);
4242 if (TREE_CODE (rhs) == SSA_NAME)
4243 rhs = VN_INFO (rhs)->valnum;
4244 if (val
4245 && operand_equal_p (val, rhs, 0))
4246 {
4247 if (dump_file && (dump_flags & TDF_DETAILS))
4248 {
4249 fprintf (dump_file, "Deleted redundant store ");
4250 print_gimple_stmt (dump_file, stmt, 0, 0);
4251 }
4252
4253 /* Queue stmt for removal. */
4254 el_to_remove.safe_push (stmt);
4255 continue;
4256 }
4257 }
4258
4259 bool can_make_abnormal_goto = stmt_can_make_abnormal_goto (stmt);
4260 bool was_noreturn = (is_gimple_call (stmt)
4261 && gimple_call_noreturn_p (stmt));
4262 tree vdef = gimple_vdef (stmt);
4263 tree vuse = gimple_vuse (stmt);
4264
4265 /* If we didn't replace the whole stmt (or propagate the result
4266 into all uses), replace all uses on this stmt with their
4267 leaders. */
4268 use_operand_p use_p;
4269 ssa_op_iter iter;
4270 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
4271 {
4272 tree use = USE_FROM_PTR (use_p);
4273 /* ??? The call code above leaves stmt operands un-updated. */
4274 if (TREE_CODE (use) != SSA_NAME)
4275 continue;
4276 tree sprime = eliminate_avail (use);
4277 if (sprime && sprime != use
4278 && may_propagate_copy (use, sprime)
4279 /* We substitute into debug stmts to avoid excessive
4280 debug temporaries created by removed stmts, but we need
4281 to avoid doing so for inserted sprimes as we never want
4282 to create debug temporaries for them. */
4283 && (!inserted_exprs
4284 || TREE_CODE (sprime) != SSA_NAME
4285 || !is_gimple_debug (stmt)
4286 || !bitmap_bit_p (inserted_exprs, SSA_NAME_VERSION (sprime))))
4287 {
4288 propagate_value (use_p, sprime);
4289 gimple_set_modified (stmt, true);
4290 if (TREE_CODE (sprime) == SSA_NAME
4291 && !is_gimple_debug (stmt))
4292 gimple_set_plf (SSA_NAME_DEF_STMT (sprime),
4293 NECESSARY, true);
4294 }
4295 }
4296
4297 /* Visit indirect calls and turn them into direct calls if
4298 possible using the devirtualization machinery. */
4299 if (is_gimple_call (stmt))
4300 {
4301 tree fn = gimple_call_fn (stmt);
4302 if (fn
4303 && flag_devirtualize
4304 && virtual_method_call_p (fn))
4305 {
4306 tree otr_type = obj_type_ref_class (fn);
4307 tree instance;
4308 ipa_polymorphic_call_context context (current_function_decl, fn, stmt, &instance);
4309 bool final;
4310
4311 context.get_dynamic_type (instance, OBJ_TYPE_REF_OBJECT (fn), otr_type, stmt);
4312
4313 vec <cgraph_node *>targets
4314 = possible_polymorphic_call_targets (obj_type_ref_class (fn),
4315 tree_to_uhwi
4316 (OBJ_TYPE_REF_TOKEN (fn)),
4317 context,
4318 &final);
4319 if (dump_enabled_p ())
4320 dump_possible_polymorphic_call_targets (dump_file,
4321 obj_type_ref_class (fn),
4322 tree_to_uhwi
4323 (OBJ_TYPE_REF_TOKEN (fn)),
4324 context);
4325 if (final && targets.length () <= 1 && dbg_cnt (devirt))
4326 {
4327 tree fn;
4328 if (targets.length () == 1)
4329 fn = targets[0]->decl;
4330 else
4331 fn = builtin_decl_implicit (BUILT_IN_UNREACHABLE);
4332 if (dump_enabled_p ())
4333 {
4334 location_t loc = gimple_location_safe (stmt);
4335 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, loc,
4336 "converting indirect call to "
4337 "function %s\n",
4338 cgraph_node::get (fn)->name ());
4339 }
4340 gimple_call_set_fndecl (stmt, fn);
4341 gimple_set_modified (stmt, true);
4342 }
4343 }
4344 }
4345
4346 if (gimple_modified_p (stmt))
4347 {
4348 /* If a formerly non-invariant ADDR_EXPR is turned into an
4349 invariant one it was on a separate stmt. */
4350 if (gimple_assign_single_p (stmt)
4351 && TREE_CODE (gimple_assign_rhs1 (stmt)) == ADDR_EXPR)
4352 recompute_tree_invariant_for_addr_expr (gimple_assign_rhs1 (stmt));
4353 gimple old_stmt = stmt;
4354 if (is_gimple_call (stmt))
4355 {
4356 /* ??? Only fold calls inplace for now, this may create new
4357 SSA names which in turn will confuse free_scc_vn SSA name
4358 release code. */
4359 fold_stmt_inplace (&gsi);
4360 /* When changing a call into a noreturn call, cfg cleanup
4361 is needed to fix up the noreturn call. */
4362 if (!was_noreturn && gimple_call_noreturn_p (stmt))
4363 el_todo |= TODO_cleanup_cfg;
4364 }
4365 else
4366 {
4367 fold_stmt (&gsi);
4368 stmt = gsi_stmt (gsi);
4369 if ((gimple_code (stmt) == GIMPLE_COND
4370 && (gimple_cond_true_p (stmt)
4371 || gimple_cond_false_p (stmt)))
4372 || (gimple_code (stmt) == GIMPLE_SWITCH
4373 && TREE_CODE (gimple_switch_index (stmt)) == INTEGER_CST))
4374 el_todo |= TODO_cleanup_cfg;
4375 }
4376 /* If we removed EH side-effects from the statement, clean
4377 its EH information. */
4378 if (maybe_clean_or_replace_eh_stmt (old_stmt, stmt))
4379 {
4380 bitmap_set_bit (need_eh_cleanup,
4381 gimple_bb (stmt)->index);
4382 if (dump_file && (dump_flags & TDF_DETAILS))
4383 fprintf (dump_file, " Removed EH side-effects.\n");
4384 }
4385 /* Likewise for AB side-effects. */
4386 if (can_make_abnormal_goto
4387 && !stmt_can_make_abnormal_goto (stmt))
4388 {
4389 bitmap_set_bit (need_ab_cleanup,
4390 gimple_bb (stmt)->index);
4391 if (dump_file && (dump_flags & TDF_DETAILS))
4392 fprintf (dump_file, " Removed AB side-effects.\n");
4393 }
4394 update_stmt (stmt);
4395 if (vdef != gimple_vdef (stmt))
4396 VN_INFO (vdef)->valnum = vuse;
4397 }
4398
4399 /* Make new values available - for fully redundant LHS we
4400 continue with the next stmt above and skip this. */
4401 def_operand_p defp;
4402 FOR_EACH_SSA_DEF_OPERAND (defp, stmt, iter, SSA_OP_DEF)
4403 eliminate_push_avail (DEF_FROM_PTR (defp));
4404 }
4405
4406 /* Replace destination PHI arguments. */
4407 edge_iterator ei;
4408 edge e;
4409 FOR_EACH_EDGE (e, ei, b->succs)
4410 {
4411 for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4412 {
4413 gimple phi = gsi_stmt (gsi);
4414 use_operand_p use_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, e);
4415 tree arg = USE_FROM_PTR (use_p);
4416 if (TREE_CODE (arg) != SSA_NAME
4417 || virtual_operand_p (arg))
4418 continue;
4419 tree sprime = eliminate_avail (arg);
4420 if (sprime && may_propagate_copy (arg, sprime))
4421 {
4422 propagate_value (use_p, sprime);
4423 if (TREE_CODE (sprime) == SSA_NAME)
4424 gimple_set_plf (SSA_NAME_DEF_STMT (sprime), NECESSARY, true);
4425 }
4426 }
4427 }
4428 }
4429
4430 /* Make no longer available leaders no longer available. */
4431
4432 void
4433 eliminate_dom_walker::after_dom_children (basic_block)
4434 {
4435 tree entry;
4436 while ((entry = el_avail_stack.pop ()) != NULL_TREE)
4437 el_avail[SSA_NAME_VERSION (VN_INFO (entry)->valnum)] = NULL_TREE;
4438 }
4439
4440 /* Eliminate fully redundant computations. */
4441
4442 static unsigned int
4443 eliminate (bool do_pre)
4444 {
4445 gimple_stmt_iterator gsi;
4446 gimple stmt;
4447
4448 need_eh_cleanup = BITMAP_ALLOC (NULL);
4449 need_ab_cleanup = BITMAP_ALLOC (NULL);
4450
4451 el_to_remove.create (0);
4452 el_todo = 0;
4453 el_avail.create (num_ssa_names);
4454 el_avail_stack.create (0);
4455
4456 eliminate_dom_walker (CDI_DOMINATORS,
4457 do_pre).walk (cfun->cfg->x_entry_block_ptr);
4458
4459 el_avail.release ();
4460 el_avail_stack.release ();
4461
4462 /* We cannot remove stmts during BB walk, especially not release SSA
4463 names there as this confuses the VN machinery. The stmts ending
4464 up in el_to_remove are either stores or simple copies.
4465 Remove stmts in reverse order to make debug stmt creation possible. */
4466 while (!el_to_remove.is_empty ())
4467 {
4468 stmt = el_to_remove.pop ();
4469
4470 if (dump_file && (dump_flags & TDF_DETAILS))
4471 {
4472 fprintf (dump_file, "Removing dead stmt ");
4473 print_gimple_stmt (dump_file, stmt, 0, 0);
4474 }
4475
4476 tree lhs;
4477 if (gimple_code (stmt) == GIMPLE_PHI)
4478 lhs = gimple_phi_result (stmt);
4479 else
4480 lhs = gimple_get_lhs (stmt);
4481
4482 if (inserted_exprs
4483 && TREE_CODE (lhs) == SSA_NAME)
4484 bitmap_clear_bit (inserted_exprs, SSA_NAME_VERSION (lhs));
4485
4486 gsi = gsi_for_stmt (stmt);
4487 if (gimple_code (stmt) == GIMPLE_PHI)
4488 remove_phi_node (&gsi, true);
4489 else
4490 {
4491 basic_block bb = gimple_bb (stmt);
4492 unlink_stmt_vdef (stmt);
4493 if (gsi_remove (&gsi, true))
4494 bitmap_set_bit (need_eh_cleanup, bb->index);
4495 release_defs (stmt);
4496 }
4497
4498 /* Removing a stmt may expose a forwarder block. */
4499 el_todo |= TODO_cleanup_cfg;
4500 }
4501 el_to_remove.release ();
4502
4503 return el_todo;
4504 }
4505
4506 /* Perform CFG cleanups made necessary by elimination. */
4507
4508 static unsigned
4509 fini_eliminate (void)
4510 {
4511 bool do_eh_cleanup = !bitmap_empty_p (need_eh_cleanup);
4512 bool do_ab_cleanup = !bitmap_empty_p (need_ab_cleanup);
4513
4514 if (do_eh_cleanup)
4515 gimple_purge_all_dead_eh_edges (need_eh_cleanup);
4516
4517 if (do_ab_cleanup)
4518 gimple_purge_all_dead_abnormal_call_edges (need_ab_cleanup);
4519
4520 BITMAP_FREE (need_eh_cleanup);
4521 BITMAP_FREE (need_ab_cleanup);
4522
4523 if (do_eh_cleanup || do_ab_cleanup)
4524 return TODO_cleanup_cfg;
4525 return 0;
4526 }
4527
4528 /* Borrow a bit of tree-ssa-dce.c for the moment.
4529 XXX: In 4.1, we should be able to just run a DCE pass after PRE, though
4530 this may be a bit faster, and we may want critical edges kept split. */
4531
4532 /* If OP's defining statement has not already been determined to be necessary,
4533 mark that statement necessary. Return the stmt, if it is newly
4534 necessary. */
4535
4536 static inline gimple
4537 mark_operand_necessary (tree op)
4538 {
4539 gimple stmt;
4540
4541 gcc_assert (op);
4542
4543 if (TREE_CODE (op) != SSA_NAME)
4544 return NULL;
4545
4546 stmt = SSA_NAME_DEF_STMT (op);
4547 gcc_assert (stmt);
4548
4549 if (gimple_plf (stmt, NECESSARY)
4550 || gimple_nop_p (stmt))
4551 return NULL;
4552
4553 gimple_set_plf (stmt, NECESSARY, true);
4554 return stmt;
4555 }
4556
4557 /* Because we don't follow exactly the standard PRE algorithm, and decide not
4558 to insert PHI nodes sometimes, and because value numbering of casts isn't
4559 perfect, we sometimes end up inserting dead code. This simple DCE-like
4560 pass removes any insertions we made that weren't actually used. */
4561
4562 static void
4563 remove_dead_inserted_code (void)
4564 {
4565 bitmap worklist;
4566 unsigned i;
4567 bitmap_iterator bi;
4568 gimple t;
4569
4570 worklist = BITMAP_ALLOC (NULL);
4571 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4572 {
4573 t = SSA_NAME_DEF_STMT (ssa_name (i));
4574 if (gimple_plf (t, NECESSARY))
4575 bitmap_set_bit (worklist, i);
4576 }
4577 while (!bitmap_empty_p (worklist))
4578 {
4579 i = bitmap_first_set_bit (worklist);
4580 bitmap_clear_bit (worklist, i);
4581 t = SSA_NAME_DEF_STMT (ssa_name (i));
4582
4583 /* PHI nodes are somewhat special in that each PHI alternative has
4584 data and control dependencies. All the statements feeding the
4585 PHI node's arguments are always necessary. */
4586 if (gimple_code (t) == GIMPLE_PHI)
4587 {
4588 unsigned k;
4589
4590 for (k = 0; k < gimple_phi_num_args (t); k++)
4591 {
4592 tree arg = PHI_ARG_DEF (t, k);
4593 if (TREE_CODE (arg) == SSA_NAME)
4594 {
4595 gimple n = mark_operand_necessary (arg);
4596 if (n)
4597 bitmap_set_bit (worklist, SSA_NAME_VERSION (arg));
4598 }
4599 }
4600 }
4601 else
4602 {
4603 /* Propagate through the operands. Examine all the USE, VUSE and
4604 VDEF operands in this statement. Mark all the statements
4605 which feed this statement's uses as necessary. */
4606 ssa_op_iter iter;
4607 tree use;
4608
4609 /* The operands of VDEF expressions are also needed as they
4610 represent potential definitions that may reach this
4611 statement (VDEF operands allow us to follow def-def
4612 links). */
4613
4614 FOR_EACH_SSA_TREE_OPERAND (use, t, iter, SSA_OP_ALL_USES)
4615 {
4616 gimple n = mark_operand_necessary (use);
4617 if (n)
4618 bitmap_set_bit (worklist, SSA_NAME_VERSION (use));
4619 }
4620 }
4621 }
4622
4623 EXECUTE_IF_SET_IN_BITMAP (inserted_exprs, 0, i, bi)
4624 {
4625 t = SSA_NAME_DEF_STMT (ssa_name (i));
4626 if (!gimple_plf (t, NECESSARY))
4627 {
4628 gimple_stmt_iterator gsi;
4629
4630 if (dump_file && (dump_flags & TDF_DETAILS))
4631 {
4632 fprintf (dump_file, "Removing unnecessary insertion:");
4633 print_gimple_stmt (dump_file, t, 0, 0);
4634 }
4635
4636 gsi = gsi_for_stmt (t);
4637 if (gimple_code (t) == GIMPLE_PHI)
4638 remove_phi_node (&gsi, true);
4639 else
4640 {
4641 gsi_remove (&gsi, true);
4642 release_defs (t);
4643 }
4644 }
4645 }
4646 BITMAP_FREE (worklist);
4647 }
4648
4649
4650 /* Initialize data structures used by PRE. */
4651
4652 static void
4653 init_pre (void)
4654 {
4655 basic_block bb;
4656
4657 next_expression_id = 1;
4658 expressions.create (0);
4659 expressions.safe_push (NULL);
4660 value_expressions.create (get_max_value_id () + 1);
4661 value_expressions.safe_grow_cleared (get_max_value_id () + 1);
4662 name_to_id.create (0);
4663
4664 inserted_exprs = BITMAP_ALLOC (NULL);
4665
4666 connect_infinite_loops_to_exit ();
4667 memset (&pre_stats, 0, sizeof (pre_stats));
4668
4669 postorder = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
4670 postorder_num = inverted_post_order_compute (postorder);
4671
4672 alloc_aux_for_blocks (sizeof (struct bb_bitmap_sets));
4673
4674 calculate_dominance_info (CDI_POST_DOMINATORS);
4675 calculate_dominance_info (CDI_DOMINATORS);
4676
4677 bitmap_obstack_initialize (&grand_bitmap_obstack);
4678 phi_translate_table = new hash_table<expr_pred_trans_d> (5110);
4679 expression_to_id = new hash_table<pre_expr_d> (num_ssa_names * 3);
4680 bitmap_set_pool = create_alloc_pool ("Bitmap sets",
4681 sizeof (struct bitmap_set), 30);
4682 pre_expr_pool = create_alloc_pool ("pre_expr nodes",
4683 sizeof (struct pre_expr_d), 30);
4684 FOR_ALL_BB_FN (bb, cfun)
4685 {
4686 EXP_GEN (bb) = bitmap_set_new ();
4687 PHI_GEN (bb) = bitmap_set_new ();
4688 TMP_GEN (bb) = bitmap_set_new ();
4689 AVAIL_OUT (bb) = bitmap_set_new ();
4690 }
4691 }
4692
4693
4694 /* Deallocate data structures used by PRE. */
4695
4696 static void
4697 fini_pre ()
4698 {
4699 free (postorder);
4700 value_expressions.release ();
4701 BITMAP_FREE (inserted_exprs);
4702 bitmap_obstack_release (&grand_bitmap_obstack);
4703 free_alloc_pool (bitmap_set_pool);
4704 free_alloc_pool (pre_expr_pool);
4705 delete phi_translate_table;
4706 phi_translate_table = NULL;
4707 delete expression_to_id;
4708 expression_to_id = NULL;
4709 name_to_id.release ();
4710
4711 free_aux_for_blocks ();
4712
4713 free_dominance_info (CDI_POST_DOMINATORS);
4714 }
4715
4716 namespace {
4717
4718 const pass_data pass_data_pre =
4719 {
4720 GIMPLE_PASS, /* type */
4721 "pre", /* name */
4722 OPTGROUP_NONE, /* optinfo_flags */
4723 TV_TREE_PRE, /* tv_id */
4724 /* PROP_no_crit_edges is ensured by placing pass_split_crit_edges before
4725 pass_pre. */
4726 ( PROP_no_crit_edges | PROP_cfg | PROP_ssa ), /* properties_required */
4727 0, /* properties_provided */
4728 PROP_no_crit_edges, /* properties_destroyed */
4729 TODO_rebuild_alias, /* todo_flags_start */
4730 0, /* todo_flags_finish */
4731 };
4732
4733 class pass_pre : public gimple_opt_pass
4734 {
4735 public:
4736 pass_pre (gcc::context *ctxt)
4737 : gimple_opt_pass (pass_data_pre, ctxt)
4738 {}
4739
4740 /* opt_pass methods: */
4741 virtual bool gate (function *) { return flag_tree_pre != 0; }
4742 virtual unsigned int execute (function *);
4743
4744 }; // class pass_pre
4745
4746 unsigned int
4747 pass_pre::execute (function *fun)
4748 {
4749 unsigned int todo = 0;
4750
4751 do_partial_partial =
4752 flag_tree_partial_pre && optimize_function_for_speed_p (fun);
4753
4754 /* This has to happen before SCCVN runs because
4755 loop_optimizer_init may create new phis, etc. */
4756 loop_optimizer_init (LOOPS_NORMAL);
4757
4758 if (!run_scc_vn (VN_WALK))
4759 {
4760 loop_optimizer_finalize ();
4761 return 0;
4762 }
4763
4764 init_pre ();
4765 scev_initialize ();
4766
4767 /* Collect and value number expressions computed in each basic block. */
4768 compute_avail ();
4769
4770 /* Insert can get quite slow on an incredibly large number of basic
4771 blocks due to some quadratic behavior. Until this behavior is
4772 fixed, don't run it when he have an incredibly large number of
4773 bb's. If we aren't going to run insert, there is no point in
4774 computing ANTIC, either, even though it's plenty fast. */
4775 if (n_basic_blocks_for_fn (fun) < 4000)
4776 {
4777 compute_antic ();
4778 insert ();
4779 }
4780
4781 /* Make sure to remove fake edges before committing our inserts.
4782 This makes sure we don't end up with extra critical edges that
4783 we would need to split. */
4784 remove_fake_exit_edges ();
4785 gsi_commit_edge_inserts ();
4786
4787 /* Eliminate folds statements which might (should not...) end up
4788 not keeping virtual operands up-to-date. */
4789 gcc_assert (!need_ssa_update_p (fun));
4790
4791 /* Remove all the redundant expressions. */
4792 todo |= eliminate (true);
4793
4794 statistics_counter_event (fun, "Insertions", pre_stats.insertions);
4795 statistics_counter_event (fun, "PA inserted", pre_stats.pa_insert);
4796 statistics_counter_event (fun, "New PHIs", pre_stats.phis);
4797 statistics_counter_event (fun, "Eliminated", pre_stats.eliminations);
4798
4799 clear_expression_ids ();
4800 remove_dead_inserted_code ();
4801
4802 scev_finalize ();
4803 fini_pre ();
4804 todo |= fini_eliminate ();
4805 loop_optimizer_finalize ();
4806
4807 /* TODO: tail_merge_optimize may merge all predecessors of a block, in which
4808 case we can merge the block with the remaining predecessor of the block.
4809 It should either:
4810 - call merge_blocks after each tail merge iteration
4811 - call merge_blocks after all tail merge iterations
4812 - mark TODO_cleanup_cfg when necessary
4813 - share the cfg cleanup with fini_pre. */
4814 todo |= tail_merge_optimize (todo);
4815
4816 free_scc_vn ();
4817
4818 /* Tail merging invalidates the virtual SSA web, together with
4819 cfg-cleanup opportunities exposed by PRE this will wreck the
4820 SSA updating machinery. So make sure to run update-ssa
4821 manually, before eventually scheduling cfg-cleanup as part of
4822 the todo. */
4823 update_ssa (TODO_update_ssa_only_virtuals);
4824
4825 return todo;
4826 }
4827
4828 } // anon namespace
4829
4830 gimple_opt_pass *
4831 make_pass_pre (gcc::context *ctxt)
4832 {
4833 return new pass_pre (ctxt);
4834 }
4835
4836 namespace {
4837
4838 const pass_data pass_data_fre =
4839 {
4840 GIMPLE_PASS, /* type */
4841 "fre", /* name */
4842 OPTGROUP_NONE, /* optinfo_flags */
4843 TV_TREE_FRE, /* tv_id */
4844 ( PROP_cfg | PROP_ssa ), /* properties_required */
4845 0, /* properties_provided */
4846 0, /* properties_destroyed */
4847 0, /* todo_flags_start */
4848 0, /* todo_flags_finish */
4849 };
4850
4851 class pass_fre : public gimple_opt_pass
4852 {
4853 public:
4854 pass_fre (gcc::context *ctxt)
4855 : gimple_opt_pass (pass_data_fre, ctxt)
4856 {}
4857
4858 /* opt_pass methods: */
4859 opt_pass * clone () { return new pass_fre (m_ctxt); }
4860 virtual bool gate (function *) { return flag_tree_fre != 0; }
4861 virtual unsigned int execute (function *);
4862
4863 }; // class pass_fre
4864
4865 unsigned int
4866 pass_fre::execute (function *fun)
4867 {
4868 unsigned int todo = 0;
4869
4870 if (!run_scc_vn (VN_WALKREWRITE))
4871 return 0;
4872
4873 memset (&pre_stats, 0, sizeof (pre_stats));
4874
4875 /* Remove all the redundant expressions. */
4876 todo |= eliminate (false);
4877
4878 todo |= fini_eliminate ();
4879
4880 free_scc_vn ();
4881
4882 statistics_counter_event (fun, "Insertions", pre_stats.insertions);
4883 statistics_counter_event (fun, "Eliminated", pre_stats.eliminations);
4884
4885 return todo;
4886 }
4887
4888 } // anon namespace
4889
4890 gimple_opt_pass *
4891 make_pass_fre (gcc::context *ctxt)
4892 {
4893 return new pass_fre (ctxt);
4894 }