OSDN Git Service

* lib/obj-c++.exp (obj-c++_target_compile): Declare global variable,
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-copy.c
1 /* Copy propagation and SSA_NAME replacement support routines.
2    Copyright (C) 2004, 2005 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "flags.h"
27 #include "rtl.h"
28 #include "tm_p.h"
29 #include "ggc.h"
30 #include "basic-block.h"
31 #include "output.h"
32 #include "errors.h"
33 #include "expr.h"
34 #include "function.h"
35 #include "diagnostic.h"
36 #include "timevar.h"
37 #include "tree-dump.h"
38 #include "tree-flow.h"
39 #include "tree-pass.h"
40 #include "tree-ssa-propagate.h"
41 #include "langhooks.h"
42
43 /* This file implements the copy propagation pass and provides a
44    handful of interfaces for performing const/copy propagation and
45    simple expression replacement which keep variable annotations
46    up-to-date.
47
48    We require that for any copy operation where the RHS and LHS have
49    a non-null memory tag the memory tag be the same.   It is OK
50    for one or both of the memory tags to be NULL.
51
52    We also require tracking if a variable is dereferenced in a load or
53    store operation.
54
55    We enforce these requirements by having all copy propagation and
56    replacements of one SSA_NAME with a different SSA_NAME to use the
57    APIs defined in this file.  */
58
59 /* Return true if we may propagate ORIG into DEST, false otherwise.  */
60
61 bool
62 may_propagate_copy (tree dest, tree orig)
63 {
64   tree type_d = TREE_TYPE (dest);
65   tree type_o = TREE_TYPE (orig);
66
67   /* Do not copy between types for which we *do* need a conversion.  */
68   if (!tree_ssa_useless_type_conversion_1 (type_d, type_o))
69     return false;
70
71   /* FIXME.  GIMPLE is allowing pointer assignments and comparisons of
72      pointers that have different alias sets.  This means that these
73      pointers will have different memory tags associated to them.
74
75      If we allow copy propagation in these cases, statements de-referencing
76      the new pointer will now have a reference to a different memory tag
77      with potentially incorrect SSA information.
78
79      This was showing up in libjava/java/util/zip/ZipFile.java with code
80      like:
81
82         struct java.io.BufferedInputStream *T.660;
83         struct java.io.BufferedInputStream *T.647;
84         struct java.io.InputStream *is;
85         struct java.io.InputStream *is.662;
86         [ ... ]
87         T.660 = T.647;
88         is = T.660;     <-- This ought to be type-casted
89         is.662 = is;
90
91      Also, f/name.c exposed a similar problem with a COND_EXPR predicate
92      that was causing DOM to generate and equivalence with two pointers of
93      alias-incompatible types:
94
95         struct _ffename_space *n;
96         struct _ffename *ns;
97         [ ... ]
98         if (n == ns)
99           goto lab;
100         ...
101         lab:
102         return n;
103
104      I think that GIMPLE should emit the appropriate type-casts.  For the
105      time being, blocking copy-propagation in these cases is the safe thing
106      to do.  */
107   if (TREE_CODE (dest) == SSA_NAME
108       && TREE_CODE (orig) == SSA_NAME
109       && POINTER_TYPE_P (type_d)
110       && POINTER_TYPE_P (type_o))
111     {
112       tree mt_dest = var_ann (SSA_NAME_VAR (dest))->type_mem_tag;
113       tree mt_orig = var_ann (SSA_NAME_VAR (orig))->type_mem_tag;
114       if (mt_dest && mt_orig && mt_dest != mt_orig)
115         return false;
116       else if (!lang_hooks.types_compatible_p (type_d, type_o))
117         return false;
118       else if (get_alias_set (TREE_TYPE (type_d)) != 
119                get_alias_set (TREE_TYPE (type_o)))
120         return false;
121     }
122
123   /* If the destination is a SSA_NAME for a virtual operand, then we have
124      some special cases to handle.  */
125   if (TREE_CODE (dest) == SSA_NAME && !is_gimple_reg (dest))
126     {
127       /* If both operands are SSA_NAMEs referring to virtual operands, then
128          we can always propagate.  */
129       if (TREE_CODE (orig) == SSA_NAME
130           && !is_gimple_reg (orig))
131         return true;
132
133       /* We have a "copy" from something like a constant into a virtual
134          operand.  Reject these.  */
135       return false;
136     }
137
138   /* If ORIG flows in from an abnormal edge, it cannot be propagated.  */
139   if (TREE_CODE (orig) == SSA_NAME
140       && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (orig))
141     return false;
142
143   /* If DEST is an SSA_NAME that flows from an abnormal edge, then it
144      cannot be replaced.  */
145   if (TREE_CODE (dest) == SSA_NAME
146       && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (dest))
147     return false;
148
149   /* Anything else is OK.  */
150   return true;
151 }
152
153 /* Similarly, but we know that we're propagating into an ASM_EXPR.  */
154
155 bool
156 may_propagate_copy_into_asm (tree dest)
157 {
158   /* Hard register operands of asms are special.  Do not bypass.  */
159   return !(TREE_CODE (dest) == SSA_NAME
160            && TREE_CODE (SSA_NAME_VAR (dest)) == VAR_DECL
161            && DECL_HARD_REGISTER (SSA_NAME_VAR (dest)));
162 }
163
164
165 /* Given two SSA_NAMEs pointers ORIG and NEW such that we are copy
166    propagating NEW into ORIG, consolidate aliasing information so that
167    they both share the same memory tags.  */
168
169 static void
170 merge_alias_info (tree orig, tree new)
171 {
172   tree new_sym = SSA_NAME_VAR (new);
173   tree orig_sym = SSA_NAME_VAR (orig);
174   var_ann_t new_ann = var_ann (new_sym);
175   var_ann_t orig_ann = var_ann (orig_sym);
176
177   gcc_assert (POINTER_TYPE_P (TREE_TYPE (orig)));
178   gcc_assert (POINTER_TYPE_P (TREE_TYPE (new)));
179
180 #if defined ENABLE_CHECKING
181   gcc_assert (lang_hooks.types_compatible_p (TREE_TYPE (orig),
182                                              TREE_TYPE (new)));
183
184   /* If the pointed-to alias sets are different, these two pointers
185      would never have the same memory tag.  In this case, NEW should
186      not have been propagated into ORIG.  */
187   gcc_assert (get_alias_set (TREE_TYPE (TREE_TYPE (new_sym)))
188               == get_alias_set (TREE_TYPE (TREE_TYPE (orig_sym))));
189 #endif
190
191   /* Synchronize the type tags.  If both pointers had a tag and they
192      are different, then something has gone wrong.  */
193   if (new_ann->type_mem_tag == NULL_TREE)
194     new_ann->type_mem_tag = orig_ann->type_mem_tag;
195   else if (orig_ann->type_mem_tag == NULL_TREE)
196     orig_ann->type_mem_tag = new_ann->type_mem_tag;
197   else
198     gcc_assert (new_ann->type_mem_tag == orig_ann->type_mem_tag);
199
200   /* Synchronize the name tags.  If NEW did not have a name tag, get
201      it from ORIG.  This happens when NEW is a compiler generated
202      temporary which still hasn't had its points-to information filled
203      in.  */
204   if (SSA_NAME_PTR_INFO (orig))
205     {
206       struct ptr_info_def *orig_ptr_info = SSA_NAME_PTR_INFO (orig);
207       struct ptr_info_def *new_ptr_info = SSA_NAME_PTR_INFO (new);
208
209       if (new_ptr_info == NULL)
210         duplicate_ssa_name_ptr_info (new, orig_ptr_info);
211       else if (orig_ptr_info->name_mem_tag
212                && new_ptr_info->name_mem_tag
213                && orig_ptr_info->pt_vars
214                && new_ptr_info->pt_vars)
215         {
216           /* Note that pointer NEW may actually have a different set
217              of pointed-to variables.  However, since NEW is being
218              copy-propagated into ORIG, it must always be true that
219              the pointed-to set for pointer NEW is the same, or a
220              subset, of the pointed-to set for pointer ORIG.  If this
221              isn't the case, we shouldn't have been able to do the
222              propagation of NEW into ORIG.  */
223           gcc_assert (bitmap_intersect_p (new_ptr_info->pt_vars,
224                 orig_ptr_info->pt_vars));
225         }
226     }
227 }   
228
229
230 /* Common code for propagate_value and replace_exp.
231
232    Replace use operand OP_P with VAL.  FOR_PROPAGATION indicates if the
233    replacement is done to propagate a value or not.  */
234
235 static void
236 replace_exp_1 (use_operand_p op_p, tree val,
237                bool for_propagation ATTRIBUTE_UNUSED)
238 {
239   tree op = USE_FROM_PTR (op_p);
240
241 #if defined ENABLE_CHECKING
242   gcc_assert (!(for_propagation
243                 && TREE_CODE (op) == SSA_NAME
244                 && TREE_CODE (val) == SSA_NAME
245                 && !may_propagate_copy (op, val)));
246 #endif
247
248   if (TREE_CODE (val) == SSA_NAME)
249     {
250       if (TREE_CODE (op) == SSA_NAME && POINTER_TYPE_P (TREE_TYPE (op)))
251         merge_alias_info (op, val);
252       SET_USE (op_p, val);
253     }
254   else
255     SET_USE (op_p, unsave_expr_now (val));
256 }
257
258
259 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
260    into the operand pointed by OP_P.
261
262    Use this version for const/copy propagation as it will perform additional
263    checks to ensure validity of the const/copy propagation.  */
264
265 void
266 propagate_value (use_operand_p op_p, tree val)
267 {
268   replace_exp_1 (op_p, val, true);
269 }
270
271
272 /* Propagate the value VAL (assumed to be a constant or another SSA_NAME)
273    into the tree pointed by OP_P.
274
275    Use this version for const/copy propagation when SSA operands are not
276    available.  It will perform the additional checks to ensure validity of
277    the const/copy propagation, but will not update any operand information.
278    Be sure to mark the stmt as modified.  */
279
280 void
281 propagate_tree_value (tree *op_p, tree val)
282 {
283 #if defined ENABLE_CHECKING
284   gcc_assert (!(TREE_CODE (val) == SSA_NAME
285                 && TREE_CODE (*op_p) == SSA_NAME
286                 && !may_propagate_copy (*op_p, val)));
287 #endif
288
289   if (TREE_CODE (val) == SSA_NAME)
290     {
291       if (TREE_CODE (*op_p) == SSA_NAME && POINTER_TYPE_P (TREE_TYPE (*op_p)))
292         merge_alias_info (*op_p, val);
293       *op_p = val;
294     }
295   else
296     *op_p = unsave_expr_now (val);
297 }
298
299
300 /* Replace *OP_P with value VAL (assumed to be a constant or another SSA_NAME).
301
302    Use this version when not const/copy propagating values.  For example,
303    PRE uses this version when building expressions as they would appear
304    in specific blocks taking into account actions of PHI nodes.  */
305
306 void
307 replace_exp (use_operand_p op_p, tree val)
308 {
309   replace_exp_1 (op_p, val, false);
310 }
311
312
313 /*---------------------------------------------------------------------------
314                                 Copy propagation
315 ---------------------------------------------------------------------------*/
316 /* During propagation, we keep chains of variables that are copies of
317    one another.  If variable X_i is a copy of X_j and X_j is a copy of
318    X_k, COPY_OF will contain:
319
320         COPY_OF[i].VALUE = X_j
321         COPY_OF[j].VALUE = X_k
322         COPY_OF[k].VALUE = X_k
323
324    After propagation, the copy-of value for each variable X_i is
325    converted into the final value by walking the copy-of chains and
326    updating COPY_OF[i].VALUE to be the last element of the chain.  */
327 static prop_value_t *copy_of;
328
329 /* Used in set_copy_of_val to determine if the last link of a copy-of
330    chain has changed.  */
331 static tree *cached_last_copy_of;
332
333 /* True if we are doing copy propagation on loads and stores.  */
334 static bool do_store_copy_prop;
335
336
337 /* Return true if this statement may generate a useful copy.  */
338
339 static bool
340 stmt_may_generate_copy (tree stmt)
341 {
342   tree lhs, rhs;
343   stmt_ann_t ann;
344
345   if (TREE_CODE (stmt) == PHI_NODE)
346     return !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (stmt));
347
348   if (TREE_CODE (stmt) != MODIFY_EXPR)
349     return false;
350
351   lhs = TREE_OPERAND (stmt, 0);
352   rhs = TREE_OPERAND (stmt, 1);
353   ann = stmt_ann (stmt);
354
355   /* If the statement has volatile operands, it won't generate a
356      useful copy.  */
357   if (ann->has_volatile_ops)
358     return false;
359
360   /* If we are not doing store copy-prop, statements with loads and/or
361      stores will never generate a useful copy.  */
362   if (!do_store_copy_prop
363       && !ZERO_SSA_OPERANDS (stmt, SSA_OP_ALL_VIRTUALS))
364     return false;
365
366   /* Otherwise, the only statements that generate useful copies are
367      assignments whose RHS is just an SSA name that doesn't flow
368      through abnormal edges.  */
369   return TREE_CODE (rhs) == SSA_NAME && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs);
370 }
371
372
373 /* Return the copy-of value for VAR.  */
374
375 static inline prop_value_t *
376 get_copy_of_val (tree var)
377 {
378   prop_value_t *val = &copy_of[SSA_NAME_VERSION (var)];
379
380   if (val->value == NULL_TREE
381       && !stmt_may_generate_copy (SSA_NAME_DEF_STMT (var)))
382     {
383       /* If the variable will never generate a useful copy relation,
384          make it its own copy.  */
385       val->value = var;
386       val->mem_ref = NULL_TREE;
387     }
388
389   return val;
390 }
391
392
393 /* Return last link in the copy-of chain for VAR.  */
394
395 static tree
396 get_last_copy_of (tree var)
397 {
398   tree last;
399   int i;
400
401   /* Traverse COPY_OF starting at VAR until we get to the last
402      link in the chain.  Since it is possible to have cycles in PHI
403      nodes, the copy-of chain may also contain cycles.
404      
405      To avoid infinite loops and to avoid traversing lengthy copy-of
406      chains, we artificially limit the maximum number of chains we are
407      willing to traverse.
408
409      The value 5 was taken from a compiler and runtime library
410      bootstrap and a mixture of C and C++ code from various sources.
411      More than 82% of all copy-of chains were shorter than 5 links.  */
412 #define LIMIT   5
413
414   last = var;
415   for (i = 0; i < LIMIT; i++)
416     {
417       tree copy = copy_of[SSA_NAME_VERSION (last)].value;
418       if (copy == NULL_TREE || copy == last)
419         break;
420       last = copy;
421     }
422
423   /* If we have reached the limit, then we are either in a copy-of
424      cycle or the copy-of chain is too long.  In this case, just
425      return VAR so that it is not considered a copy of anything.  */
426   return (i < LIMIT ? last : var);
427 }
428
429
430 /* Set FIRST to be the first variable in the copy-of chain for DEST.
431    If DEST's copy-of value or its copy-of chain has changed, return
432    true.
433
434    MEM_REF is the memory reference where FIRST is stored.  This is
435    used when DEST is a non-register and we are copy propagating loads
436    and stores.  */
437
438 static inline bool
439 set_copy_of_val (tree dest, tree first, tree mem_ref)
440 {
441   unsigned int dest_ver = SSA_NAME_VERSION (dest);
442   tree old_first, old_last, new_last;
443   
444   /* Set FIRST to be the first link in COPY_OF[DEST].  If that
445      changed, return true.  */
446   old_first = copy_of[dest_ver].value;
447   copy_of[dest_ver].value = first;
448   copy_of[dest_ver].mem_ref = mem_ref;
449
450   if (old_first != first)
451     return true;
452
453   /* If FIRST and OLD_FIRST are the same, we need to check whether the
454      copy-of chain starting at FIRST ends in a different variable.  If
455      the copy-of chain starting at FIRST ends up in a different
456      variable than the last cached value we had for DEST, then return
457      true because DEST is now a copy of a different variable.
458
459      This test is necessary because even though the first link in the
460      copy-of chain may not have changed, if any of the variables in
461      the copy-of chain changed its final value, DEST will now be the
462      copy of a different variable, so we have to do another round of
463      propagation for everything that depends on DEST.  */
464   old_last = cached_last_copy_of[dest_ver];
465   new_last = get_last_copy_of (dest);
466   cached_last_copy_of[dest_ver] = new_last;
467
468   return (old_last != new_last);
469 }
470
471
472 /* Dump the copy-of value for variable VAR to DUMP_FILE.  */
473
474 static void
475 dump_copy_of (FILE *dump_file, tree var)
476 {
477   tree val;
478
479   print_generic_expr (dump_file, var, dump_flags);
480
481   if (TREE_CODE (var) != SSA_NAME)
482     return;
483
484   fprintf (dump_file, " copy-of chain: ");
485
486   val = var;
487   print_generic_expr (dump_file, val, 0);
488   fprintf (dump_file, " ");
489   while (copy_of[SSA_NAME_VERSION (val)].value
490          && copy_of[SSA_NAME_VERSION (val)].value != val)
491     {
492       fprintf (dump_file, "-> ");
493       val = copy_of[SSA_NAME_VERSION (val)].value;
494       print_generic_expr (dump_file, val, 0);
495       fprintf (dump_file, " ");
496     }
497
498   val = get_copy_of_val (var)->value;
499   if (val == NULL_TREE)
500     fprintf (dump_file, "[UNDEFINED]");
501   else if (val != var)
502     fprintf (dump_file, "[COPY]");
503   else
504     fprintf (dump_file, "[NOT A COPY]");
505 }
506
507
508 /* Evaluate the RHS of STMT.  If it produces a valid copy, set the LHS
509    value and store the LHS into *RESULT_P.  If STMT generates more
510    than one name (i.e., STMT is an aliased store), it is enough to
511    store the first name in the V_MAY_DEF list into *RESULT_P.  After
512    all, the names generated will be VUSEd in the same statements.  */
513
514 static enum ssa_prop_result
515 copy_prop_visit_assignment (tree stmt, tree *result_p)
516 {
517   tree lhs, rhs;
518   prop_value_t *rhs_val;
519
520   lhs = TREE_OPERAND (stmt, 0);
521   rhs = TREE_OPERAND (stmt, 1);
522
523   gcc_assert (TREE_CODE (rhs) == SSA_NAME);
524
525   rhs_val = get_copy_of_val (rhs);
526
527   if (TREE_CODE (lhs) == SSA_NAME)
528     {
529       /* Straight copy between two SSA names.  First, make sure that
530          we can propagate the RHS into uses of LHS.  */
531       if (!may_propagate_copy (lhs, rhs))
532         return SSA_PROP_VARYING;
533
534       /* Avoid copy propagation from an inner into an outer loop.
535          Otherwise, this may move loop variant variables outside of
536          their loops and prevent coalescing opportunities.  If the
537          value was loop invariant, it will be hoisted by LICM and
538          exposed for copy propagation.  */
539       if (loop_depth_of_name (rhs) > loop_depth_of_name (lhs))
540         return SSA_PROP_VARYING;
541
542       /* Notice that in the case of assignments, we make the LHS be a
543          copy of RHS's value, not of RHS itself.  This avoids keeping
544          unnecessary copy-of chains (assignments cannot be in a cycle
545          like PHI nodes), speeding up the propagation process.
546          This is different from what we do in copy_prop_visit_phi_node. 
547          In those cases, we are interested in the copy-of chains.  */
548       *result_p = lhs;
549       if (set_copy_of_val (*result_p, rhs_val->value, rhs_val->mem_ref))
550         return SSA_PROP_INTERESTING;
551       else
552         return SSA_PROP_NOT_INTERESTING;
553     }
554   else if (stmt_makes_single_store (stmt))
555     {
556       /* Otherwise, set the names in V_MAY_DEF/V_MUST_DEF operands
557          to be a copy of RHS.  */
558       ssa_op_iter i;
559       tree vdef;
560       bool changed;
561
562       /* This should only be executed when doing store copy-prop.  */
563       gcc_assert (do_store_copy_prop);
564
565       /* Set the value of every VDEF to RHS_VAL.  */
566       changed = false;
567       FOR_EACH_SSA_TREE_OPERAND (vdef, stmt, i, SSA_OP_VIRTUAL_DEFS)
568         changed |= set_copy_of_val (vdef, rhs_val->value, lhs);
569       
570       /* Note that for propagation purposes, we are only interested in
571          visiting statements that load the exact same memory reference
572          stored here.  Those statements will have the exact same list
573          of virtual uses, so it is enough to set the output of this
574          statement to be its first virtual definition.  */
575       *result_p = first_vdef (stmt);
576
577       if (changed)
578         return SSA_PROP_INTERESTING;
579       else
580         return SSA_PROP_NOT_INTERESTING;
581     }
582
583
584   return SSA_PROP_VARYING;
585 }
586
587
588 /* Visit the COND_EXPR STMT.  Return SSA_PROP_INTERESTING
589    if it can determine which edge will be taken.  Otherwise, return
590    SSA_PROP_VARYING.  */
591
592 static enum ssa_prop_result
593 copy_prop_visit_cond_stmt (tree stmt, edge *taken_edge_p)
594 {
595   enum ssa_prop_result retval;
596   tree cond;
597
598   cond = COND_EXPR_COND (stmt);
599   retval = SSA_PROP_VARYING;
600
601   /* The only conditionals that we may be able to compute statically
602      are predicates involving two SSA_NAMEs.  */
603   if (COMPARISON_CLASS_P (cond)
604       && TREE_CODE (TREE_OPERAND (cond, 0)) == SSA_NAME
605       && TREE_CODE (TREE_OPERAND (cond, 1)) == SSA_NAME)
606     {
607       tree op0 = get_last_copy_of (TREE_OPERAND (cond, 0));
608       tree op1 = get_last_copy_of (TREE_OPERAND (cond, 1));
609
610       /* See if we can determine the predicate's value.  */
611       if (dump_file && (dump_flags & TDF_DETAILS))
612         {
613           fprintf (dump_file, "Trying to determine truth value of ");
614           fprintf (dump_file, "predicate ");
615           print_generic_stmt (dump_file, cond, 0);
616         }
617
618       /* We can fold COND and get a useful result only when we have
619          the same SSA_NAME on both sides of a comparison operator.  */
620       if (op0 == op1)
621         {
622           tree folded_cond = fold_binary (TREE_CODE (cond), boolean_type_node,
623                                           op0, op1);
624           if (folded_cond)
625             {
626               basic_block bb = bb_for_stmt (stmt);
627               *taken_edge_p = find_taken_edge (bb, folded_cond);
628               if (*taken_edge_p)
629                 retval = SSA_PROP_INTERESTING;
630             }
631         }
632     }
633
634   if (dump_file && (dump_flags & TDF_DETAILS) && *taken_edge_p)
635     fprintf (dump_file, "\nConditional will always take edge %d->%d\n",
636              (*taken_edge_p)->src->index, (*taken_edge_p)->dest->index);
637
638   return retval;
639 }
640
641
642 /* Evaluate statement STMT.  If the statement produces a new output
643    value, return SSA_PROP_INTERESTING and store the SSA_NAME holding
644    the new value in *RESULT_P.
645
646    If STMT is a conditional branch and we can determine its truth
647    value, set *TAKEN_EDGE_P accordingly.
648
649    If the new value produced by STMT is varying, return
650    SSA_PROP_VARYING.  */
651
652 static enum ssa_prop_result
653 copy_prop_visit_stmt (tree stmt, edge *taken_edge_p, tree *result_p)
654 {
655   stmt_ann_t ann;
656   enum ssa_prop_result retval;
657
658   if (dump_file && (dump_flags & TDF_DETAILS))
659     {
660       fprintf (dump_file, "\nVisiting statement:\n");
661       print_generic_stmt (dump_file, stmt, dump_flags);
662       fprintf (dump_file, "\n");
663     }
664
665   ann = stmt_ann (stmt);
666
667   if (TREE_CODE (stmt) == MODIFY_EXPR
668       && TREE_CODE (TREE_OPERAND (stmt, 1)) == SSA_NAME
669       && (do_store_copy_prop
670           || TREE_CODE (TREE_OPERAND (stmt, 0)) == SSA_NAME))
671     {
672       /* If the statement is a copy assignment, evaluate its RHS to
673          see if the lattice value of its output has changed.  */
674       retval = copy_prop_visit_assignment (stmt, result_p);
675     }
676   else if (TREE_CODE (stmt) == COND_EXPR)
677     {
678       /* See if we can determine which edge goes out of a conditional
679          jump.  */
680       retval = copy_prop_visit_cond_stmt (stmt, taken_edge_p);
681     }
682   else
683     retval = SSA_PROP_VARYING;
684
685   if (retval == SSA_PROP_VARYING)
686     {
687       tree def;
688       ssa_op_iter i;
689
690       /* Any other kind of statement is not interesting for constant
691          propagation and, therefore, not worth simulating.  */
692       if (dump_file && (dump_flags & TDF_DETAILS))
693         fprintf (dump_file, "No interesting values produced.\n");
694
695       /* The assignment is not a copy operation.  Don't visit this
696          statement again and mark all the definitions in the statement
697          to be copies of nothing.  */
698       FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_ALL_DEFS)
699         set_copy_of_val (def, def, NULL_TREE);
700     }
701
702   return retval;
703 }
704
705
706 /* Visit PHI node PHI.  If all the arguments produce the same value,
707    set it to be the value of the LHS of PHI.  */
708
709 static enum ssa_prop_result
710 copy_prop_visit_phi_node (tree phi)
711 {
712   enum ssa_prop_result retval;
713   int i;
714   tree lhs;
715   prop_value_t phi_val = { 0, NULL_TREE, NULL_TREE };
716
717   lhs = PHI_RESULT (phi);
718
719   if (dump_file && (dump_flags & TDF_DETAILS))
720     {
721       fprintf (dump_file, "\nVisiting PHI node: ");
722       print_generic_expr (dump_file, phi, dump_flags);
723       fprintf (dump_file, "\n\n");
724     }
725
726   for (i = 0; i < PHI_NUM_ARGS (phi); i++)
727     {
728       prop_value_t *arg_val;
729       tree arg = PHI_ARG_DEF (phi, i);
730       edge e = PHI_ARG_EDGE (phi, i);
731
732       /* We don't care about values flowing through non-executable
733          edges.  */
734       if (!(e->flags & EDGE_EXECUTABLE))
735         continue;
736
737       /* Constants in the argument list never generate a useful copy.
738          Similarly, names that flow through abnormal edges cannot be
739          used to derive copies.  */
740       if (TREE_CODE (arg) != SSA_NAME || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (arg))
741         {
742           phi_val.value = lhs;
743           break;
744         }
745
746       /* Avoid copy propagation from an inner into an outer loop.
747          Otherwise, this may move loop variant variables outside of
748          their loops and prevent coalescing opportunities.  If the
749          value was loop invariant, it will be hoisted by LICM and
750          exposed for copy propagation.  */
751       if (loop_depth_of_name (arg) > loop_depth_of_name (lhs))
752         {
753           phi_val.value = lhs;
754           break;
755         }
756
757       /* If the LHS appears in the argument list, ignore it.  It is
758          irrelevant as a copy.  */
759       if (arg == lhs || get_last_copy_of (arg) == lhs)
760         continue;
761
762       if (dump_file && (dump_flags & TDF_DETAILS))
763         {
764           fprintf (dump_file, "\tArgument #%d: ", i);
765           dump_copy_of (dump_file, arg);
766           fprintf (dump_file, "\n");
767         }
768
769       arg_val = get_copy_of_val (arg);
770
771       /* If the LHS didn't have a value yet, make it a copy of the
772          first argument we find.  Notice that while we make the LHS be
773          a copy of the argument itself, we take the memory reference
774          from the argument's value so that we can compare it to the
775          memory reference of all the other arguments.  */
776       if (phi_val.value == NULL_TREE)
777         {
778           phi_val.value = arg;
779           phi_val.mem_ref = arg_val->mem_ref;
780           continue;
781         }
782
783       /* If PHI_VAL and ARG don't have a common copy-of chain, then
784          this PHI node cannot be a copy operation.  Also, if we are
785          copy propagating stores and these two arguments came from
786          different memory references, they cannot be considered
787          copies.  */
788       if (get_last_copy_of (phi_val.value) != get_last_copy_of (arg)
789           || (do_store_copy_prop
790               && phi_val.mem_ref
791               && arg_val->mem_ref
792               && simple_cst_equal (phi_val.mem_ref, arg_val->mem_ref) != 1))
793         {
794           phi_val.value = lhs;
795           break;
796         }
797     }
798
799   if (phi_val.value && set_copy_of_val (lhs, phi_val.value, phi_val.mem_ref))
800     retval = (phi_val.value != lhs) ? SSA_PROP_INTERESTING : SSA_PROP_VARYING;
801   else
802     retval = SSA_PROP_NOT_INTERESTING;
803
804   if (dump_file && (dump_flags & TDF_DETAILS))
805     {
806       fprintf (dump_file, "\nPHI node ");
807       dump_copy_of (dump_file, lhs);
808       fprintf (dump_file, "\nTelling the propagator to ");
809       if (retval == SSA_PROP_INTERESTING)
810         fprintf (dump_file, "add SSA edges out of this PHI and continue.");
811       else if (retval == SSA_PROP_VARYING)
812         fprintf (dump_file, "add SSA edges out of this PHI and never visit again.");
813       else
814         fprintf (dump_file, "do nothing with SSA edges and keep iterating.");
815       fprintf (dump_file, "\n\n");
816     }
817
818   return retval;
819 }
820
821
822 /* Initialize structures used for copy propagation.  */
823
824 static void
825 init_copy_prop (void)
826 {
827   basic_block bb;
828
829   copy_of = xmalloc (num_ssa_names * sizeof (*copy_of));
830   memset (copy_of, 0, num_ssa_names * sizeof (*copy_of));
831
832   cached_last_copy_of = xmalloc (num_ssa_names * sizeof (*cached_last_copy_of));
833   memset (cached_last_copy_of, 0, num_ssa_names * sizeof (*cached_last_copy_of));
834
835   FOR_EACH_BB (bb)
836     {
837       block_stmt_iterator si;
838       tree phi;
839
840       for (si = bsi_start (bb); !bsi_end_p (si); bsi_next (&si))
841         {
842           tree stmt = bsi_stmt (si);
843
844           /* The only statements that we care about are those that may
845              generate useful copies.  We also need to mark conditional
846              jumps so that their outgoing edges are added to the work
847              lists of the propagator.  */
848           if (stmt_ends_bb_p (stmt))
849             DONT_SIMULATE_AGAIN (stmt) = false;
850           else if (stmt_may_generate_copy (stmt))
851             DONT_SIMULATE_AGAIN (stmt) = false;
852           else
853             {
854               tree def;
855               ssa_op_iter iter;
856
857               /* No need to simulate this statement anymore.  */
858               DONT_SIMULATE_AGAIN (stmt) = true;
859
860               /* Mark all the outputs of this statement as not being
861                  the copy of anything.  */
862               FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_ALL_DEFS)
863                 set_copy_of_val (def, def, NULL_TREE);
864             }
865         }
866
867       for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
868         DONT_SIMULATE_AGAIN (phi) = false;
869     }
870 }
871
872
873 /* Deallocate memory used in copy propagation and do final
874    substitution.  */
875
876 static void
877 fini_copy_prop (void)
878 {
879   size_t i;
880   
881   /* Set the final copy-of value for each variable by traversing the
882      copy-of chains.  */
883   for (i = 1; i < num_ssa_names; i++)
884     {
885       tree var = ssa_name (i);
886       if (var && copy_of[i].value && copy_of[i].value != var)
887         copy_of[i].value = get_last_copy_of (var);
888     }
889
890   substitute_and_fold (copy_of);
891
892   free (cached_last_copy_of);
893   free (copy_of);
894 }
895
896
897 /* Main entry point to the copy propagator.  The algorithm propagates
898    the value COPY-OF using ssa_propagate.  For every variable X_i,
899    COPY-OF(X_i) indicates which variable is X_i created from.  The
900    following example shows how the algorithm proceeds at a high level:
901
902             1   a_24 = x_1
903             2   a_2 = PHI <a_24, x_1>
904             3   a_5 = PHI <a_2>
905             4   x_1 = PHI <x_298, a_5, a_2>
906
907    The end result should be that a_2, a_5, a_24 and x_1 are a copy of
908    x_298.  Propagation proceeds as follows.
909
910    Visit #1: a_24 is copy-of x_1.  Value changed.
911    Visit #2: a_2 is copy-of x_1.  Value changed.
912    Visit #3: a_5 is copy-of x_1.  Value changed.
913    Visit #4: x_1 is copy-of x_298.  Value changed.
914    Visit #1: a_24 is copy-of x_298.  Value changed.
915    Visit #2: a_2 is copy-of x_298.  Value changed.
916    Visit #3: a_5 is copy-of x_298.  Value changed.
917    Visit #4: x_1 is copy-of x_298.  Stable state reached.
918    
919    When visiting PHI nodes, we only consider arguments that flow
920    through edges marked executable by the propagation engine.  So,
921    when visiting statement #2 for the first time, we will only look at
922    the first argument (a_24) and optimistically assume that its value
923    is the copy of a_24 (x_1).
924
925    The problem with this approach is that it may fail to discover copy
926    relations in PHI cycles.  Instead of propagating copy-of
927    values, we actually propagate copy-of chains.  For instance:
928
929                 A_3 = B_1;
930                 C_9 = A_3;
931                 D_4 = C_9;
932                 X_i = D_4;
933
934    In this code fragment, COPY-OF (X_i) = { D_4, C_9, A_3, B_1 }.
935    Obviously, we are only really interested in the last value of the
936    chain, however the propagator needs to access the copy-of chain
937    when visiting PHI nodes.
938
939    To represent the copy-of chain, we use the array COPY_CHAINS, which
940    holds the first link in the copy-of chain for every variable.
941    If variable X_i is a copy of X_j, which in turn is a copy of X_k,
942    the array will contain:
943
944                 COPY_CHAINS[i] = X_j
945                 COPY_CHAINS[j] = X_k
946                 COPY_CHAINS[k] = X_k
947
948    Keeping copy-of chains instead of copy-of values directly becomes
949    important when visiting PHI nodes.  Suppose that we had the
950    following PHI cycle, such that x_52 is already considered a copy of
951    x_53:
952
953             1   x_54 = PHI <x_53, x_52>
954             2   x_53 = PHI <x_898, x_54>
955    
956    Visit #1: x_54 is copy-of x_53 (because x_52 is copy-of x_53)
957    Visit #2: x_53 is copy-of x_898 (because x_54 is a copy of x_53,
958                                     so it is considered irrelevant
959                                     as a copy).
960    Visit #1: x_54 is copy-of nothing (x_53 is a copy-of x_898 and
961                                       x_52 is a copy of x_53, so
962                                       they don't match)
963    Visit #2: x_53 is copy-of nothing
964
965    This problem is avoided by keeping a chain of copies, instead of
966    the final copy-of value.  Propagation will now only keep the first
967    element of a variable's copy-of chain.  When visiting PHI nodes,
968    arguments are considered equal if their copy-of chains end in the
969    same variable.  So, as long as their copy-of chains overlap, we
970    know that they will be a copy of the same variable, regardless of
971    which variable that may be).
972    
973    Propagation would then proceed as follows (the notation a -> b
974    means that a is a copy-of b):
975
976    Visit #1: x_54 = PHI <x_53, x_52>
977                 x_53 -> x_53
978                 x_52 -> x_53
979                 Result: x_54 -> x_53.  Value changed.  Add SSA edges.
980
981    Visit #1: x_53 = PHI <x_898, x_54>
982                 x_898 -> x_898
983                 x_54 -> x_53
984                 Result: x_53 -> x_898.  Value changed.  Add SSA edges.
985
986    Visit #2: x_54 = PHI <x_53, x_52>
987                 x_53 -> x_898
988                 x_52 -> x_53 -> x_898
989                 Result: x_54 -> x_898.  Value changed.  Add SSA edges.
990
991    Visit #2: x_53 = PHI <x_898, x_54>
992                 x_898 -> x_898
993                 x_54 -> x_898
994                 Result: x_53 -> x_898.  Value didn't change.  Stable state
995
996    Once the propagator stabilizes, we end up with the desired result
997    x_53 and x_54 are both copies of x_898.  */
998
999 static void
1000 execute_copy_prop (bool store_copy_prop)
1001 {
1002   do_store_copy_prop = store_copy_prop;
1003   init_copy_prop ();
1004   ssa_propagate (copy_prop_visit_stmt, copy_prop_visit_phi_node);
1005   fini_copy_prop ();
1006 }
1007
1008
1009 static bool
1010 gate_copy_prop (void)
1011 {
1012   return flag_tree_copy_prop != 0;
1013 }
1014
1015 static void
1016 do_copy_prop (void)
1017 {
1018   execute_copy_prop (false);
1019 }
1020
1021 struct tree_opt_pass pass_copy_prop =
1022 {
1023   "copyprop",                           /* name */
1024   gate_copy_prop,                       /* gate */
1025   do_copy_prop,                         /* execute */
1026   NULL,                                 /* sub */
1027   NULL,                                 /* next */
1028   0,                                    /* static_pass_number */
1029   TV_TREE_COPY_PROP,                    /* tv_id */
1030   PROP_ssa | PROP_alias | PROP_cfg,     /* properties_required */
1031   0,                                    /* properties_provided */
1032   0,                                    /* properties_destroyed */
1033   0,                                    /* todo_flags_start */
1034   TODO_cleanup_cfg
1035     | TODO_dump_func
1036     | TODO_ggc_collect
1037     | TODO_verify_ssa
1038     | TODO_update_ssa,                  /* todo_flags_finish */
1039   0                                     /* letter */
1040 };
1041
1042
1043 static bool
1044 gate_store_copy_prop (void)
1045 {
1046   /* STORE-COPY-PROP is enabled only with -ftree-store-copy-prop, but
1047      when -fno-tree-store-copy-prop is specified, we should run
1048      regular COPY-PROP. That's why the pass is enabled with either
1049      flag.  */
1050   return flag_tree_store_copy_prop != 0 || flag_tree_copy_prop != 0;
1051 }
1052
1053 static void
1054 store_copy_prop (void)
1055 {
1056   /* If STORE-COPY-PROP is not enabled, we just run regular COPY-PROP.  */
1057   execute_copy_prop (flag_tree_store_copy_prop != 0);
1058 }
1059
1060 struct tree_opt_pass pass_store_copy_prop =
1061 {
1062   "store_copyprop",                     /* name */
1063   gate_store_copy_prop,                 /* gate */
1064   store_copy_prop,                      /* execute */
1065   NULL,                                 /* sub */
1066   NULL,                                 /* next */
1067   0,                                    /* static_pass_number */
1068   TV_TREE_STORE_COPY_PROP,              /* tv_id */
1069   PROP_ssa | PROP_alias | PROP_cfg,     /* properties_required */
1070   0,                                    /* properties_provided */
1071   0,                                    /* properties_destroyed */
1072   0,                                    /* todo_flags_start */
1073   TODO_dump_func
1074     | TODO_cleanup_cfg
1075     | TODO_ggc_collect
1076     | TODO_verify_ssa
1077     | TODO_update_ssa,                  /* todo_flags_finish */
1078   0                                     /* letter */
1079 };