OSDN Git Service

2010-07-14 Mikael Morin <mikael@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa.c
1 /* Miscellaneous SSA utility functions.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
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 "tm_p.h"
28 #include "target.h"
29 #include "ggc.h"
30 #include "langhooks.h"
31 #include "basic-block.h"
32 #include "output.h"
33 #include "function.h"
34 #include "tree-pretty-print.h"
35 #include "gimple-pretty-print.h"
36 #include "bitmap.h"
37 #include "pointer-set.h"
38 #include "tree-flow.h"
39 #include "gimple.h"
40 #include "tree-inline.h"
41 #include "timevar.h"
42 #include "hashtab.h"
43 #include "tree-dump.h"
44 #include "tree-pass.h"
45 #include "diagnostic-core.h"
46
47 /* Pointer map of variable mappings, keyed by edge.  */
48 static struct pointer_map_t *edge_var_maps;
49
50
51 /* Add a mapping with PHI RESULT and PHI DEF associated with edge E.  */
52
53 void
54 redirect_edge_var_map_add (edge e, tree result, tree def, source_location locus)
55 {
56   void **slot;
57   edge_var_map_vector old_head, head;
58   edge_var_map new_node;
59
60   if (edge_var_maps == NULL)
61     edge_var_maps = pointer_map_create ();
62
63   slot = pointer_map_insert (edge_var_maps, e);
64   old_head = head = (edge_var_map_vector) *slot;
65   if (!head)
66     {
67       head = VEC_alloc (edge_var_map, heap, 5);
68       *slot = head;
69     }
70   new_node.def = def;
71   new_node.result = result;
72   new_node.locus = locus;
73
74   VEC_safe_push (edge_var_map, heap, head, &new_node);
75   if (old_head != head)
76     {
77       /* The push did some reallocation.  Update the pointer map.  */
78       *slot = head;
79     }
80 }
81
82
83 /* Clear the var mappings in edge E.  */
84
85 void
86 redirect_edge_var_map_clear (edge e)
87 {
88   void **slot;
89   edge_var_map_vector head;
90
91   if (!edge_var_maps)
92     return;
93
94   slot = pointer_map_contains (edge_var_maps, e);
95
96   if (slot)
97     {
98       head = (edge_var_map_vector) *slot;
99       VEC_free (edge_var_map, heap, head);
100       *slot = NULL;
101     }
102 }
103
104
105 /* Duplicate the redirected var mappings in OLDE in NEWE.
106
107    Since we can't remove a mapping, let's just duplicate it.  This assumes a
108    pointer_map can have multiple edges mapping to the same var_map (many to
109    one mapping), since we don't remove the previous mappings.  */
110
111 void
112 redirect_edge_var_map_dup (edge newe, edge olde)
113 {
114   void **new_slot, **old_slot;
115   edge_var_map_vector head;
116
117   if (!edge_var_maps)
118     return;
119
120   new_slot = pointer_map_insert (edge_var_maps, newe);
121   old_slot = pointer_map_contains (edge_var_maps, olde);
122   if (!old_slot)
123     return;
124   head = (edge_var_map_vector) *old_slot;
125
126   if (head)
127     *new_slot = VEC_copy (edge_var_map, heap, head);
128   else
129     *new_slot = VEC_alloc (edge_var_map, heap, 5);
130 }
131
132
133 /* Return the variable mappings for a given edge.  If there is none, return
134    NULL.  */
135
136 edge_var_map_vector
137 redirect_edge_var_map_vector (edge e)
138 {
139   void **slot;
140
141   /* Hey, what kind of idiot would... you'd be surprised.  */
142   if (!edge_var_maps)
143     return NULL;
144
145   slot = pointer_map_contains (edge_var_maps, e);
146   if (!slot)
147     return NULL;
148
149   return (edge_var_map_vector) *slot;
150 }
151
152 /* Used by redirect_edge_var_map_destroy to free all memory.  */
153
154 static bool
155 free_var_map_entry (const void *key ATTRIBUTE_UNUSED,
156                     void **value,
157                     void *data ATTRIBUTE_UNUSED)
158 {
159   edge_var_map_vector head = (edge_var_map_vector) *value;
160   VEC_free (edge_var_map, heap, head);
161   return true;
162 }
163
164 /* Clear the edge variable mappings.  */
165
166 void
167 redirect_edge_var_map_destroy (void)
168 {
169   if (edge_var_maps)
170     {
171       pointer_map_traverse (edge_var_maps, free_var_map_entry, NULL);
172       pointer_map_destroy (edge_var_maps);
173       edge_var_maps = NULL;
174     }
175 }
176
177
178 /* Remove the corresponding arguments from the PHI nodes in E's
179    destination block and redirect it to DEST.  Return redirected edge.
180    The list of removed arguments is stored in a vector accessed
181    through edge_var_maps.  */
182
183 edge
184 ssa_redirect_edge (edge e, basic_block dest)
185 {
186   gimple_stmt_iterator gsi;
187   gimple phi;
188
189   redirect_edge_var_map_clear (e);
190
191   /* Remove the appropriate PHI arguments in E's destination block.  */
192   for (gsi = gsi_start_phis (e->dest); !gsi_end_p (gsi); gsi_next (&gsi))
193     {
194       tree def;
195       source_location locus ;
196
197       phi = gsi_stmt (gsi);
198       def = gimple_phi_arg_def (phi, e->dest_idx);
199       locus = gimple_phi_arg_location (phi, e->dest_idx);
200
201       if (def == NULL_TREE)
202         continue;
203
204       redirect_edge_var_map_add (e, gimple_phi_result (phi), def, locus);
205     }
206
207   e = redirect_edge_succ_nodup (e, dest);
208
209   return e;
210 }
211
212
213 /* Add PHI arguments queued in PENDING_STMT list on edge E to edge
214    E->dest.  */
215
216 void
217 flush_pending_stmts (edge e)
218 {
219   gimple phi;
220   edge_var_map_vector v;
221   edge_var_map *vm;
222   int i;
223   gimple_stmt_iterator gsi;
224
225   v = redirect_edge_var_map_vector (e);
226   if (!v)
227     return;
228
229   for (gsi = gsi_start_phis (e->dest), i = 0;
230        !gsi_end_p (gsi) && VEC_iterate (edge_var_map, v, i, vm);
231        gsi_next (&gsi), i++)
232     {
233       tree def;
234
235       phi = gsi_stmt (gsi);
236       def = redirect_edge_var_map_def (vm);
237       add_phi_arg (phi, def, e, redirect_edge_var_map_location (vm));
238     }
239
240   redirect_edge_var_map_clear (e);
241 }
242
243 /* Given a tree for an expression for which we might want to emit
244    locations or values in debug information (generally a variable, but
245    we might deal with other kinds of trees in the future), return the
246    tree that should be used as the variable of a DEBUG_BIND STMT or
247    VAR_LOCATION INSN or NOTE.  Return NULL if VAR is not to be tracked.  */
248
249 tree
250 target_for_debug_bind (tree var)
251 {
252   if (!MAY_HAVE_DEBUG_STMTS)
253     return NULL_TREE;
254
255   if (TREE_CODE (var) != VAR_DECL
256       && TREE_CODE (var) != PARM_DECL)
257     return NULL_TREE;
258
259   if (DECL_HAS_VALUE_EXPR_P (var))
260     return target_for_debug_bind (DECL_VALUE_EXPR (var));
261
262   if (DECL_IGNORED_P (var))
263     return NULL_TREE;
264
265   if (!is_gimple_reg (var))
266     return NULL_TREE;
267
268   return var;
269 }
270
271 /* Called via walk_tree, look for SSA_NAMEs that have already been
272    released.  */
273
274 static tree
275 find_released_ssa_name (tree *tp, int *walk_subtrees, void *data_)
276 {
277   struct walk_stmt_info *wi = (struct walk_stmt_info *) data_;
278
279   if (wi && wi->is_lhs)
280     return NULL_TREE;
281
282   if (TREE_CODE (*tp) == SSA_NAME)
283     {
284       if (SSA_NAME_IN_FREE_LIST (*tp))
285         return *tp;
286
287       *walk_subtrees = 0;
288     }
289   else if (IS_TYPE_OR_DECL_P (*tp))
290     *walk_subtrees = 0;
291
292   return NULL_TREE;
293 }
294
295 /* Insert a DEBUG BIND stmt before the DEF of VAR if VAR is referenced
296    by other DEBUG stmts, and replace uses of the DEF with the
297    newly-created debug temp.  */
298
299 void
300 insert_debug_temp_for_var_def (gimple_stmt_iterator *gsi, tree var)
301 {
302   imm_use_iterator imm_iter;
303   use_operand_p use_p;
304   gimple stmt;
305   gimple def_stmt = NULL;
306   int usecount = 0;
307   tree value = NULL;
308
309   if (!MAY_HAVE_DEBUG_STMTS)
310     return;
311
312   /* If this name has already been registered for replacement, do nothing
313      as anything that uses this name isn't in SSA form.  */
314   if (name_registered_for_update_p (var))
315     return;
316
317   /* Check whether there are debug stmts that reference this variable and,
318      if there are, decide whether we should use a debug temp.  */
319   FOR_EACH_IMM_USE_FAST (use_p, imm_iter, var)
320     {
321       stmt = USE_STMT (use_p);
322
323       if (!gimple_debug_bind_p (stmt))
324         continue;
325
326       if (usecount++)
327         break;
328
329       if (gimple_debug_bind_get_value (stmt) != var)
330         {
331           /* Count this as an additional use, so as to make sure we
332              use a temp unless VAR's definition has a SINGLE_RHS that
333              can be shared.  */
334           usecount++;
335           break;
336         }
337     }
338
339   if (!usecount)
340     return;
341
342   if (gsi)
343     def_stmt = gsi_stmt (*gsi);
344   else
345     def_stmt = SSA_NAME_DEF_STMT (var);
346
347   /* If we didn't get an insertion point, and the stmt has already
348      been removed, we won't be able to insert the debug bind stmt, so
349      we'll have to drop debug information.  */
350   if (gimple_code (def_stmt) == GIMPLE_PHI)
351     {
352       value = degenerate_phi_result (def_stmt);
353       if (value && walk_tree (&value, find_released_ssa_name, NULL, NULL))
354         value = NULL;
355     }
356   else if (is_gimple_assign (def_stmt))
357     {
358       bool no_value = false;
359
360       if (!dom_info_available_p (CDI_DOMINATORS))
361         {
362           struct walk_stmt_info wi;
363
364           memset (&wi, 0, sizeof (wi));
365
366           /* When removing blocks without following reverse dominance
367              order, we may sometimes encounter SSA_NAMEs that have
368              already been released, referenced in other SSA_DEFs that
369              we're about to release.  Consider:
370
371              <bb X>:
372              v_1 = foo;
373
374              <bb Y>:
375              w_2 = v_1 + bar;
376              # DEBUG w => w_2
377
378              If we deleted BB X first, propagating the value of w_2
379              won't do us any good.  It's too late to recover their
380              original definition of v_1: when it was deleted, it was
381              only referenced in other DEFs, it couldn't possibly know
382              it should have been retained, and propagating every
383              single DEF just in case it might have to be propagated
384              into a DEBUG STMT would probably be too wasteful.
385
386              When dominator information is not readily available, we
387              check for and accept some loss of debug information.  But
388              if it is available, there's no excuse for us to remove
389              blocks in the wrong order, so we don't even check for
390              dead SSA NAMEs.  SSA verification shall catch any
391              errors.  */
392           if ((!gsi && !gimple_bb (def_stmt))
393               || walk_gimple_op (def_stmt, find_released_ssa_name, &wi))
394             no_value = true;
395         }
396
397       if (!no_value)
398         value = gimple_assign_rhs_to_tree (def_stmt);
399     }
400
401   if (value)
402     {
403       /* If there's a single use of VAR, and VAR is the entire debug
404          expression (usecount would have been incremented again
405          otherwise), and the definition involves only constants and
406          SSA names, then we can propagate VALUE into this single use,
407          avoiding the temp.
408
409          We can also avoid using a temp if VALUE can be shared and
410          propagated into all uses, without generating expressions that
411          wouldn't be valid gimple RHSs.
412
413          Other cases that would require unsharing or non-gimple RHSs
414          are deferred to a debug temp, although we could avoid temps
415          at the expense of duplication of expressions.  */
416
417       if (CONSTANT_CLASS_P (value)
418           || gimple_code (def_stmt) == GIMPLE_PHI
419           || (usecount == 1
420               && (!gimple_assign_single_p (def_stmt)
421                   || is_gimple_min_invariant (value)))
422           || is_gimple_reg (value))
423         value = unshare_expr (value);
424       else
425         {
426           gimple def_temp;
427           tree vexpr = make_node (DEBUG_EXPR_DECL);
428
429           def_temp = gimple_build_debug_bind (vexpr,
430                                               unshare_expr (value),
431                                               def_stmt);
432
433           DECL_ARTIFICIAL (vexpr) = 1;
434           TREE_TYPE (vexpr) = TREE_TYPE (value);
435           if (DECL_P (value))
436             DECL_MODE (vexpr) = DECL_MODE (value);
437           else
438             DECL_MODE (vexpr) = TYPE_MODE (TREE_TYPE (value));
439
440           if (gsi)
441             gsi_insert_before (gsi, def_temp, GSI_SAME_STMT);
442           else
443             {
444               gimple_stmt_iterator ngsi = gsi_for_stmt (def_stmt);
445               gsi_insert_before (&ngsi, def_temp, GSI_SAME_STMT);
446             }
447
448           value = vexpr;
449         }
450     }
451
452   FOR_EACH_IMM_USE_STMT (stmt, imm_iter, var)
453     {
454       if (!gimple_debug_bind_p (stmt))
455         continue;
456
457       if (value)
458         FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
459           /* unshare_expr is not needed here.  vexpr is either a
460              SINGLE_RHS, that can be safely shared, some other RHS
461              that was unshared when we found it had a single debug
462              use, or a DEBUG_EXPR_DECL, that can be safely
463              shared.  */
464           SET_USE (use_p, value);
465       else
466         gimple_debug_bind_reset_value (stmt);
467
468       update_stmt (stmt);
469     }
470 }
471
472
473 /* Insert a DEBUG BIND stmt before STMT for each DEF referenced by
474    other DEBUG stmts, and replace uses of the DEF with the
475    newly-created debug temp.  */
476
477 void
478 insert_debug_temps_for_defs (gimple_stmt_iterator *gsi)
479 {
480   gimple stmt;
481   ssa_op_iter op_iter;
482   def_operand_p def_p;
483
484   if (!MAY_HAVE_DEBUG_STMTS)
485     return;
486
487   stmt = gsi_stmt (*gsi);
488
489   FOR_EACH_PHI_OR_STMT_DEF (def_p, stmt, op_iter, SSA_OP_DEF)
490     {
491       tree var = DEF_FROM_PTR (def_p);
492
493       if (TREE_CODE (var) != SSA_NAME)
494         continue;
495
496       insert_debug_temp_for_var_def (gsi, var);
497     }
498 }
499
500 /* Delete SSA DEFs for SSA versions in the TOREMOVE bitmap, removing
501    dominated stmts before their dominators, so that release_ssa_defs
502    stands a chance of propagating DEFs into debug bind stmts.  */
503
504 void
505 release_defs_bitset (bitmap toremove)
506 {
507   unsigned j;
508   bitmap_iterator bi;
509
510   /* Performing a topological sort is probably overkill, this will
511      most likely run in slightly superlinear time, rather than the
512      pathological quadratic worst case.  */
513   while (!bitmap_empty_p (toremove))
514     EXECUTE_IF_SET_IN_BITMAP (toremove, 0, j, bi)
515       {
516         bool remove_now = true;
517         tree var = ssa_name (j);
518         gimple stmt;
519         imm_use_iterator uit;
520
521         FOR_EACH_IMM_USE_STMT (stmt, uit, var)
522           {
523             ssa_op_iter dit;
524             def_operand_p def_p;
525
526             /* We can't propagate PHI nodes into debug stmts.  */
527             if (gimple_code (stmt) == GIMPLE_PHI
528                 || is_gimple_debug (stmt))
529               continue;
530
531             /* If we find another definition to remove that uses
532                the one we're looking at, defer the removal of this
533                one, so that it can be propagated into debug stmts
534                after the other is.  */
535             FOR_EACH_SSA_DEF_OPERAND (def_p, stmt, dit, SSA_OP_DEF)
536               {
537                 tree odef = DEF_FROM_PTR (def_p);
538
539                 if (bitmap_bit_p (toremove, SSA_NAME_VERSION (odef)))
540                   {
541                     remove_now = false;
542                     break;
543                   }
544               }
545
546             if (!remove_now)
547               BREAK_FROM_IMM_USE_STMT (uit);
548           }
549
550         if (remove_now)
551           {
552             gimple def = SSA_NAME_DEF_STMT (var);
553             gimple_stmt_iterator gsi = gsi_for_stmt (def);
554
555             if (gimple_code (def) == GIMPLE_PHI)
556               remove_phi_node (&gsi, true);
557             else
558               {
559                 gsi_remove (&gsi, true);
560                 release_defs (def);
561               }
562
563             bitmap_clear_bit (toremove, j);
564           }
565       }
566 }
567
568 /* Return true if SSA_NAME is malformed and mark it visited.
569
570    IS_VIRTUAL is true if this SSA_NAME was found inside a virtual
571       operand.  */
572
573 static bool
574 verify_ssa_name (tree ssa_name, bool is_virtual)
575 {
576   if (TREE_CODE (ssa_name) != SSA_NAME)
577     {
578       error ("expected an SSA_NAME object");
579       return true;
580     }
581
582   if (TREE_TYPE (ssa_name) != TREE_TYPE (SSA_NAME_VAR (ssa_name)))
583     {
584       error ("type mismatch between an SSA_NAME and its symbol");
585       return true;
586     }
587
588   if (SSA_NAME_IN_FREE_LIST (ssa_name))
589     {
590       error ("found an SSA_NAME that had been released into the free pool");
591       return true;
592     }
593
594   if (is_virtual && is_gimple_reg (ssa_name))
595     {
596       error ("found a virtual definition for a GIMPLE register");
597       return true;
598     }
599
600   if (is_virtual && SSA_NAME_VAR (ssa_name) != gimple_vop (cfun))
601     {
602       error ("virtual SSA name for non-VOP decl");
603       return true;
604     }
605
606   if (!is_virtual && !is_gimple_reg (ssa_name))
607     {
608       error ("found a real definition for a non-register");
609       return true;
610     }
611
612   if (SSA_NAME_IS_DEFAULT_DEF (ssa_name)
613       && !gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name)))
614     {
615       error ("found a default name with a non-empty defining statement");
616       return true;
617     }
618
619   return false;
620 }
621
622
623 /* Return true if the definition of SSA_NAME at block BB is malformed.
624
625    STMT is the statement where SSA_NAME is created.
626
627    DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
628       version numbers.  If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
629       it means that the block in that array slot contains the
630       definition of SSA_NAME.
631
632    IS_VIRTUAL is true if SSA_NAME is created by a VDEF.  */
633
634 static bool
635 verify_def (basic_block bb, basic_block *definition_block, tree ssa_name,
636             gimple stmt, bool is_virtual)
637 {
638   if (verify_ssa_name (ssa_name, is_virtual))
639     goto err;
640
641   if (TREE_CODE (SSA_NAME_VAR (ssa_name)) == RESULT_DECL
642       && DECL_BY_REFERENCE (SSA_NAME_VAR (ssa_name)))
643     {
644       error ("RESULT_DECL should be read only when DECL_BY_REFERENCE is set.");
645       goto err;
646     }
647
648   if (definition_block[SSA_NAME_VERSION (ssa_name)])
649     {
650       error ("SSA_NAME created in two different blocks %i and %i",
651              definition_block[SSA_NAME_VERSION (ssa_name)]->index, bb->index);
652       goto err;
653     }
654
655   definition_block[SSA_NAME_VERSION (ssa_name)] = bb;
656
657   if (SSA_NAME_DEF_STMT (ssa_name) != stmt)
658     {
659       error ("SSA_NAME_DEF_STMT is wrong");
660       fprintf (stderr, "Expected definition statement:\n");
661       print_gimple_stmt (stderr, SSA_NAME_DEF_STMT (ssa_name), 4, TDF_VOPS);
662       fprintf (stderr, "\nActual definition statement:\n");
663       print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
664       goto err;
665     }
666
667   return false;
668
669 err:
670   fprintf (stderr, "while verifying SSA_NAME ");
671   print_generic_expr (stderr, ssa_name, 0);
672   fprintf (stderr, " in statement\n");
673   print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
674
675   return true;
676 }
677
678
679 /* Return true if the use of SSA_NAME at statement STMT in block BB is
680    malformed.
681
682    DEF_BB is the block where SSA_NAME was found to be created.
683
684    IDOM contains immediate dominator information for the flowgraph.
685
686    CHECK_ABNORMAL is true if the caller wants to check whether this use
687       is flowing through an abnormal edge (only used when checking PHI
688       arguments).
689
690    If NAMES_DEFINED_IN_BB is not NULL, it contains a bitmap of ssa names
691      that are defined before STMT in basic block BB.  */
692
693 static bool
694 verify_use (basic_block bb, basic_block def_bb, use_operand_p use_p,
695             gimple stmt, bool check_abnormal, bitmap names_defined_in_bb)
696 {
697   bool err = false;
698   tree ssa_name = USE_FROM_PTR (use_p);
699
700   if (!TREE_VISITED (ssa_name))
701     if (verify_imm_links (stderr, ssa_name))
702       err = true;
703
704   TREE_VISITED (ssa_name) = 1;
705
706   if (gimple_nop_p (SSA_NAME_DEF_STMT (ssa_name))
707       && SSA_NAME_IS_DEFAULT_DEF (ssa_name))
708     ; /* Default definitions have empty statements.  Nothing to do.  */
709   else if (!def_bb)
710     {
711       error ("missing definition");
712       err = true;
713     }
714   else if (bb != def_bb
715            && !dominated_by_p (CDI_DOMINATORS, bb, def_bb))
716     {
717       error ("definition in block %i does not dominate use in block %i",
718              def_bb->index, bb->index);
719       err = true;
720     }
721   else if (bb == def_bb
722            && names_defined_in_bb != NULL
723            && !bitmap_bit_p (names_defined_in_bb, SSA_NAME_VERSION (ssa_name)))
724     {
725       error ("definition in block %i follows the use", def_bb->index);
726       err = true;
727     }
728
729   if (check_abnormal
730       && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (ssa_name))
731     {
732       error ("SSA_NAME_OCCURS_IN_ABNORMAL_PHI should be set");
733       err = true;
734     }
735
736   /* Make sure the use is in an appropriate list by checking the previous
737      element to make sure it's the same.  */
738   if (use_p->prev == NULL)
739     {
740       error ("no immediate_use list");
741       err = true;
742     }
743   else
744     {
745       tree listvar;
746       if (use_p->prev->use == NULL)
747         listvar = use_p->prev->loc.ssa_name;
748       else
749         listvar = USE_FROM_PTR (use_p->prev);
750       if (listvar != ssa_name)
751         {
752           error ("wrong immediate use list");
753           err = true;
754         }
755     }
756
757   if (err)
758     {
759       fprintf (stderr, "for SSA_NAME: ");
760       print_generic_expr (stderr, ssa_name, TDF_VOPS);
761       fprintf (stderr, " in statement:\n");
762       print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
763     }
764
765   return err;
766 }
767
768
769 /* Return true if any of the arguments for PHI node PHI at block BB is
770    malformed.
771
772    DEFINITION_BLOCK is an array of basic blocks indexed by SSA_NAME
773       version numbers.  If DEFINITION_BLOCK[SSA_NAME_VERSION] is set,
774       it means that the block in that array slot contains the
775       definition of SSA_NAME.  */
776
777 static bool
778 verify_phi_args (gimple phi, basic_block bb, basic_block *definition_block)
779 {
780   edge e;
781   bool err = false;
782   size_t i, phi_num_args = gimple_phi_num_args (phi);
783
784   if (EDGE_COUNT (bb->preds) != phi_num_args)
785     {
786       error ("incoming edge count does not match number of PHI arguments");
787       err = true;
788       goto error;
789     }
790
791   for (i = 0; i < phi_num_args; i++)
792     {
793       use_operand_p op_p = gimple_phi_arg_imm_use_ptr (phi, i);
794       tree op = USE_FROM_PTR (op_p);
795
796       e = EDGE_PRED (bb, i);
797
798       if (op == NULL_TREE)
799         {
800           error ("PHI argument is missing for edge %d->%d",
801                  e->src->index,
802                  e->dest->index);
803           err = true;
804           goto error;
805         }
806
807       if (TREE_CODE (op) != SSA_NAME && !is_gimple_min_invariant (op))
808         {
809           error ("PHI argument is not SSA_NAME, or invariant");
810           err = true;
811         }
812
813       if (TREE_CODE (op) == SSA_NAME)
814         {
815           err = verify_ssa_name (op, !is_gimple_reg (gimple_phi_result (phi)));
816           err |= verify_use (e->src, definition_block[SSA_NAME_VERSION (op)],
817                              op_p, phi, e->flags & EDGE_ABNORMAL, NULL);
818         }
819
820       if (TREE_CODE (op) == ADDR_EXPR)
821         {
822           tree base = TREE_OPERAND (op, 0);
823           while (handled_component_p (base))
824             base = TREE_OPERAND (base, 0);
825           if ((TREE_CODE (base) == VAR_DECL
826                || TREE_CODE (base) == PARM_DECL
827                || TREE_CODE (base) == RESULT_DECL)
828               && !TREE_ADDRESSABLE (base))
829             {
830               error ("address taken, but ADDRESSABLE bit not set");
831               err = true;
832             }
833         }
834
835       if (e->dest != bb)
836         {
837           error ("wrong edge %d->%d for PHI argument",
838                  e->src->index, e->dest->index);
839           err = true;
840         }
841
842       if (err)
843         {
844           fprintf (stderr, "PHI argument\n");
845           print_generic_stmt (stderr, op, TDF_VOPS);
846           goto error;
847         }
848     }
849
850 error:
851   if (err)
852     {
853       fprintf (stderr, "for PHI node\n");
854       print_gimple_stmt (stderr, phi, 0, TDF_VOPS|TDF_MEMSYMS);
855     }
856
857
858   return err;
859 }
860
861
862 /* Verify common invariants in the SSA web.
863    TODO: verify the variable annotations.  */
864
865 DEBUG_FUNCTION void
866 verify_ssa (bool check_modified_stmt)
867 {
868   size_t i;
869   basic_block bb;
870   basic_block *definition_block = XCNEWVEC (basic_block, num_ssa_names);
871   ssa_op_iter iter;
872   tree op;
873   enum dom_state orig_dom_state = dom_info_state (CDI_DOMINATORS);
874   bitmap names_defined_in_bb = BITMAP_ALLOC (NULL);
875
876   gcc_assert (!need_ssa_update_p (cfun));
877
878   verify_stmts ();
879
880   timevar_push (TV_TREE_SSA_VERIFY);
881
882   /* Keep track of SSA names present in the IL.  */
883   for (i = 1; i < num_ssa_names; i++)
884     {
885       tree name = ssa_name (i);
886       if (name)
887         {
888           gimple stmt;
889           TREE_VISITED (name) = 0;
890
891           stmt = SSA_NAME_DEF_STMT (name);
892           if (!gimple_nop_p (stmt))
893             {
894               basic_block bb = gimple_bb (stmt);
895               verify_def (bb, definition_block,
896                           name, stmt, !is_gimple_reg (name));
897
898             }
899         }
900     }
901
902   calculate_dominance_info (CDI_DOMINATORS);
903
904   /* Now verify all the uses and make sure they agree with the definitions
905      found in the previous pass.  */
906   FOR_EACH_BB (bb)
907     {
908       edge e;
909       gimple phi;
910       edge_iterator ei;
911       gimple_stmt_iterator gsi;
912
913       /* Make sure that all edges have a clear 'aux' field.  */
914       FOR_EACH_EDGE (e, ei, bb->preds)
915         {
916           if (e->aux)
917             {
918               error ("AUX pointer initialized for edge %d->%d", e->src->index,
919                       e->dest->index);
920               goto err;
921             }
922         }
923
924       /* Verify the arguments for every PHI node in the block.  */
925       for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
926         {
927           phi = gsi_stmt (gsi);
928           if (verify_phi_args (phi, bb, definition_block))
929             goto err;
930
931           bitmap_set_bit (names_defined_in_bb,
932                           SSA_NAME_VERSION (gimple_phi_result (phi)));
933         }
934
935       /* Now verify all the uses and vuses in every statement of the block.  */
936       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
937         {
938           gimple stmt = gsi_stmt (gsi);
939           use_operand_p use_p;
940           bool has_err;
941
942           if (check_modified_stmt && gimple_modified_p (stmt))
943             {
944               error ("stmt (%p) marked modified after optimization pass: ",
945                      (void *)stmt);
946               print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
947               goto err;
948             }
949
950           if (is_gimple_assign (stmt)
951               && TREE_CODE (gimple_assign_lhs (stmt)) != SSA_NAME)
952             {
953               tree lhs, base_address;
954
955               lhs = gimple_assign_lhs (stmt);
956               base_address = get_base_address (lhs);
957
958               if (base_address
959                   && SSA_VAR_P (base_address)
960                   && !gimple_vdef (stmt)
961                   && optimize > 0)
962                 {
963                   error ("statement makes a memory store, but has no VDEFS");
964                   print_gimple_stmt (stderr, stmt, 0, TDF_VOPS);
965                   goto err;
966                 }
967             }
968           else if (gimple_debug_bind_p (stmt)
969                    && !gimple_debug_bind_has_value_p (stmt))
970             continue;
971
972           /* Verify the single virtual operand and its constraints.  */
973           has_err = false;
974           if (gimple_vdef (stmt))
975             {
976               if (gimple_vdef_op (stmt) == NULL_DEF_OPERAND_P)
977                 {
978                   error ("statement has VDEF operand not in defs list");
979                   has_err = true;
980                 }
981               if (!gimple_vuse (stmt))
982                 {
983                   error ("statement has VDEF but no VUSE operand");
984                   has_err = true;
985                 }
986               else if (SSA_NAME_VAR (gimple_vdef (stmt))
987                        != SSA_NAME_VAR (gimple_vuse (stmt)))
988                 {
989                   error ("VDEF and VUSE do not use the same symbol");
990                   has_err = true;
991                 }
992               has_err |= verify_ssa_name (gimple_vdef (stmt), true);
993             }
994           if (gimple_vuse (stmt))
995             {
996               if  (gimple_vuse_op (stmt) == NULL_USE_OPERAND_P)
997                 {
998                   error ("statement has VUSE operand not in uses list");
999                   has_err = true;
1000                 }
1001               has_err |= verify_ssa_name (gimple_vuse (stmt), true);
1002             }
1003           if (has_err)
1004             {
1005               error ("in statement");
1006               print_gimple_stmt (stderr, stmt, 0, TDF_VOPS|TDF_MEMSYMS);
1007               goto err;
1008             }
1009
1010           FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_USE|SSA_OP_DEF)
1011             {
1012               if (verify_ssa_name (op, false))
1013                 {
1014                   error ("in statement");
1015                   print_gimple_stmt (stderr, stmt, 0, TDF_VOPS|TDF_MEMSYMS);
1016                   goto err;
1017                 }
1018             }
1019
1020           FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE|SSA_OP_VUSE)
1021             {
1022               op = USE_FROM_PTR (use_p);
1023               if (verify_use (bb, definition_block[SSA_NAME_VERSION (op)],
1024                               use_p, stmt, false, names_defined_in_bb))
1025                 goto err;
1026             }
1027
1028           FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_ALL_DEFS)
1029             {
1030               if (SSA_NAME_DEF_STMT (op) != stmt)
1031                 {
1032                   error ("SSA_NAME_DEF_STMT is wrong");
1033                   fprintf (stderr, "Expected definition statement:\n");
1034                   print_gimple_stmt (stderr, stmt, 4, TDF_VOPS);
1035                   fprintf (stderr, "\nActual definition statement:\n");
1036                   print_gimple_stmt (stderr, SSA_NAME_DEF_STMT (op),
1037                                      4, TDF_VOPS);
1038                   goto err;
1039                 }
1040               bitmap_set_bit (names_defined_in_bb, SSA_NAME_VERSION (op));
1041             }
1042         }
1043
1044       bitmap_clear (names_defined_in_bb);
1045     }
1046
1047   free (definition_block);
1048
1049   /* Restore the dominance information to its prior known state, so
1050      that we do not perturb the compiler's subsequent behavior.  */
1051   if (orig_dom_state == DOM_NONE)
1052     free_dominance_info (CDI_DOMINATORS);
1053   else
1054     set_dom_info_availability (CDI_DOMINATORS, orig_dom_state);
1055
1056   BITMAP_FREE (names_defined_in_bb);
1057   timevar_pop (TV_TREE_SSA_VERIFY);
1058   return;
1059
1060 err:
1061   internal_error ("verify_ssa failed");
1062 }
1063
1064 /* Return true if the uid in both int tree maps are equal.  */
1065
1066 int
1067 int_tree_map_eq (const void *va, const void *vb)
1068 {
1069   const struct int_tree_map *a = (const struct int_tree_map *) va;
1070   const struct int_tree_map *b = (const struct int_tree_map *) vb;
1071   return (a->uid == b->uid);
1072 }
1073
1074 /* Hash a UID in a int_tree_map.  */
1075
1076 unsigned int
1077 int_tree_map_hash (const void *item)
1078 {
1079   return ((const struct int_tree_map *)item)->uid;
1080 }
1081
1082 /* Return true if the DECL_UID in both trees are equal.  */
1083
1084 int
1085 uid_decl_map_eq (const void *va, const void *vb)
1086 {
1087   const_tree a = (const_tree) va;
1088   const_tree b = (const_tree) vb;
1089   return (a->decl_minimal.uid == b->decl_minimal.uid);
1090 }
1091
1092 /* Hash a tree in a uid_decl_map.  */
1093
1094 unsigned int
1095 uid_decl_map_hash (const void *item)
1096 {
1097   return ((const_tree)item)->decl_minimal.uid;
1098 }
1099
1100 /* Return true if the DECL_UID in both trees are equal.  */
1101
1102 static int
1103 uid_ssaname_map_eq (const void *va, const void *vb)
1104 {
1105   const_tree a = (const_tree) va;
1106   const_tree b = (const_tree) vb;
1107   return (a->ssa_name.var->decl_minimal.uid == b->ssa_name.var->decl_minimal.uid);
1108 }
1109
1110 /* Hash a tree in a uid_decl_map.  */
1111
1112 static unsigned int
1113 uid_ssaname_map_hash (const void *item)
1114 {
1115   return ((const_tree)item)->ssa_name.var->decl_minimal.uid;
1116 }
1117
1118
1119 /* Initialize global DFA and SSA structures.  */
1120
1121 void
1122 init_tree_ssa (struct function *fn)
1123 {
1124   fn->gimple_df = ggc_alloc_cleared_gimple_df ();
1125   fn->gimple_df->referenced_vars = htab_create_ggc (20, uid_decl_map_hash,
1126                                                     uid_decl_map_eq, NULL);
1127   fn->gimple_df->default_defs = htab_create_ggc (20, uid_ssaname_map_hash,
1128                                                  uid_ssaname_map_eq, NULL);
1129   pt_solution_reset (&fn->gimple_df->escaped);
1130   init_ssanames (fn, 0);
1131   init_phinodes ();
1132 }
1133
1134
1135 /* Deallocate memory associated with SSA data structures for FNDECL.  */
1136
1137 void
1138 delete_tree_ssa (void)
1139 {
1140   referenced_var_iterator rvi;
1141   tree var;
1142
1143   /* Remove annotations from every referenced local variable.  */
1144   FOR_EACH_REFERENCED_VAR (var, rvi)
1145     {
1146       if (is_global_var (var))
1147         continue;
1148       if (var_ann (var))
1149         {
1150           ggc_free (var_ann (var));
1151           *DECL_VAR_ANN_PTR (var) = NULL;
1152         }
1153     }
1154   htab_delete (gimple_referenced_vars (cfun));
1155   cfun->gimple_df->referenced_vars = NULL;
1156
1157   fini_ssanames ();
1158   fini_phinodes ();
1159
1160   /* We no longer maintain the SSA operand cache at this point.  */
1161   if (ssa_operands_active ())
1162     fini_ssa_operands ();
1163
1164   delete_alias_heapvars ();
1165
1166   htab_delete (cfun->gimple_df->default_defs);
1167   cfun->gimple_df->default_defs = NULL;
1168   pt_solution_reset (&cfun->gimple_df->escaped);
1169   if (cfun->gimple_df->decls_to_pointers != NULL)
1170     pointer_map_destroy (cfun->gimple_df->decls_to_pointers);
1171   cfun->gimple_df->decls_to_pointers = NULL;
1172   cfun->gimple_df->modified_noreturn_calls = NULL;
1173   cfun->gimple_df = NULL;
1174
1175   /* We no longer need the edge variable maps.  */
1176   redirect_edge_var_map_destroy ();
1177 }
1178
1179 /* Return true if the conversion from INNER_TYPE to OUTER_TYPE is a
1180    useless type conversion, otherwise return false.
1181
1182    This function implicitly defines the middle-end type system.  With
1183    the notion of 'a < b' meaning that useless_type_conversion_p (a, b)
1184    holds and 'a > b' meaning that useless_type_conversion_p (b, a) holds,
1185    the following invariants shall be fulfilled:
1186
1187      1) useless_type_conversion_p is transitive.
1188         If a < b and b < c then a < c.
1189
1190      2) useless_type_conversion_p is not symmetric.
1191         From a < b does not follow a > b.
1192
1193      3) Types define the available set of operations applicable to values.
1194         A type conversion is useless if the operations for the target type
1195         is a subset of the operations for the source type.  For example
1196         casts to void* are useless, casts from void* are not (void* can't
1197         be dereferenced or offsetted, but copied, hence its set of operations
1198         is a strict subset of that of all other data pointer types).  Casts
1199         to const T* are useless (can't be written to), casts from const T*
1200         to T* are not.  */
1201
1202 bool
1203 useless_type_conversion_p (tree outer_type, tree inner_type)
1204 {
1205   /* Do the following before stripping toplevel qualifiers.  */
1206   if (POINTER_TYPE_P (inner_type)
1207       && POINTER_TYPE_P (outer_type))
1208     {
1209       /* Do not lose casts between pointers to different address spaces.  */
1210       if (TYPE_ADDR_SPACE (TREE_TYPE (outer_type))
1211           != TYPE_ADDR_SPACE (TREE_TYPE (inner_type)))
1212         return false;
1213
1214       /* Do not lose casts to restrict qualified pointers.  */
1215       if ((TYPE_RESTRICT (outer_type)
1216            != TYPE_RESTRICT (inner_type))
1217           && TYPE_RESTRICT (outer_type))
1218         return false;
1219
1220       /* If the outer type is (void *) or a pointer to an incomplete
1221          record type or a pointer to an unprototyped function,
1222          then the conversion is not necessary.  */
1223       if (VOID_TYPE_P (TREE_TYPE (outer_type))
1224           || ((TREE_CODE (TREE_TYPE (outer_type)) == FUNCTION_TYPE
1225                || TREE_CODE (TREE_TYPE (outer_type)) == METHOD_TYPE)
1226               && (TREE_CODE (TREE_TYPE (outer_type))
1227                   == TREE_CODE (TREE_TYPE (inner_type)))
1228               && !TYPE_ARG_TYPES (TREE_TYPE (outer_type))
1229               && useless_type_conversion_p (TREE_TYPE (TREE_TYPE (outer_type)),
1230                                             TREE_TYPE (TREE_TYPE (inner_type)))))
1231         return true;
1232     }
1233
1234   /* From now on qualifiers on value types do not matter.  */
1235   inner_type = TYPE_MAIN_VARIANT (inner_type);
1236   outer_type = TYPE_MAIN_VARIANT (outer_type);
1237
1238   if (inner_type == outer_type)
1239     return true;
1240
1241   /* If we know the canonical types, compare them.  */
1242   if (TYPE_CANONICAL (inner_type)
1243       && TYPE_CANONICAL (inner_type) == TYPE_CANONICAL (outer_type))
1244     return true;
1245
1246   /* Changes in machine mode are never useless conversions unless we
1247      deal with aggregate types in which case we defer to later checks.  */
1248   if (TYPE_MODE (inner_type) != TYPE_MODE (outer_type)
1249       && !AGGREGATE_TYPE_P (inner_type))
1250     return false;
1251
1252   /* If both the inner and outer types are integral types, then the
1253      conversion is not necessary if they have the same mode and
1254      signedness and precision, and both or neither are boolean.  */
1255   if (INTEGRAL_TYPE_P (inner_type)
1256       && INTEGRAL_TYPE_P (outer_type))
1257     {
1258       /* Preserve changes in signedness or precision.  */
1259       if (TYPE_UNSIGNED (inner_type) != TYPE_UNSIGNED (outer_type)
1260           || TYPE_PRECISION (inner_type) != TYPE_PRECISION (outer_type))
1261         return false;
1262
1263       /* We don't need to preserve changes in the types minimum or
1264          maximum value in general as these do not generate code
1265          unless the types precisions are different.  */
1266       return true;
1267     }
1268
1269   /* Scalar floating point types with the same mode are compatible.  */
1270   else if (SCALAR_FLOAT_TYPE_P (inner_type)
1271            && SCALAR_FLOAT_TYPE_P (outer_type))
1272     return true;
1273
1274   /* Fixed point types with the same mode are compatible.  */
1275   else if (FIXED_POINT_TYPE_P (inner_type)
1276            && FIXED_POINT_TYPE_P (outer_type))
1277     return true;
1278
1279   /* We need to take special care recursing to pointed-to types.  */
1280   else if (POINTER_TYPE_P (inner_type)
1281            && POINTER_TYPE_P (outer_type))
1282     {
1283       /* Do not lose casts to function pointer types.  */
1284       if ((TREE_CODE (TREE_TYPE (outer_type)) == FUNCTION_TYPE
1285            || TREE_CODE (TREE_TYPE (outer_type)) == METHOD_TYPE)
1286           && !useless_type_conversion_p (TREE_TYPE (outer_type),
1287                                          TREE_TYPE (inner_type)))
1288         return false;
1289
1290       /* We do not care for const qualification of the pointed-to types
1291          as const qualification has no semantic value to the middle-end.  */
1292
1293       /* Otherwise pointers/references are equivalent.  */
1294       return true;
1295     }
1296
1297   /* Recurse for complex types.  */
1298   else if (TREE_CODE (inner_type) == COMPLEX_TYPE
1299            && TREE_CODE (outer_type) == COMPLEX_TYPE)
1300     return useless_type_conversion_p (TREE_TYPE (outer_type),
1301                                       TREE_TYPE (inner_type));
1302
1303   /* Recurse for vector types with the same number of subparts.  */
1304   else if (TREE_CODE (inner_type) == VECTOR_TYPE
1305            && TREE_CODE (outer_type) == VECTOR_TYPE
1306            && TYPE_PRECISION (inner_type) == TYPE_PRECISION (outer_type))
1307     return useless_type_conversion_p (TREE_TYPE (outer_type),
1308                                       TREE_TYPE (inner_type));
1309
1310   else if (TREE_CODE (inner_type) == ARRAY_TYPE
1311            && TREE_CODE (outer_type) == ARRAY_TYPE)
1312     {
1313       /* Preserve string attributes.  */
1314       if (TYPE_STRING_FLAG (inner_type) != TYPE_STRING_FLAG (outer_type))
1315         return false;
1316
1317       /* Conversions from array types with unknown extent to
1318          array types with known extent are not useless.  */
1319       if (!TYPE_DOMAIN (inner_type)
1320           && TYPE_DOMAIN (outer_type))
1321         return false;
1322
1323       /* Nor are conversions from array types with non-constant size to
1324          array types with constant size or to different size.  */
1325       if (TYPE_SIZE (outer_type)
1326           && TREE_CODE (TYPE_SIZE (outer_type)) == INTEGER_CST
1327           && (!TYPE_SIZE (inner_type)
1328               || TREE_CODE (TYPE_SIZE (inner_type)) != INTEGER_CST
1329               || !tree_int_cst_equal (TYPE_SIZE (outer_type),
1330                                       TYPE_SIZE (inner_type))))
1331         return false;
1332
1333       /* Check conversions between arrays with partially known extents.
1334          If the array min/max values are constant they have to match.
1335          Otherwise allow conversions to unknown and variable extents.
1336          In particular this declares conversions that may change the
1337          mode to BLKmode as useless.  */
1338       if (TYPE_DOMAIN (inner_type)
1339           && TYPE_DOMAIN (outer_type)
1340           && TYPE_DOMAIN (inner_type) != TYPE_DOMAIN (outer_type))
1341         {
1342           tree inner_min = TYPE_MIN_VALUE (TYPE_DOMAIN (inner_type));
1343           tree outer_min = TYPE_MIN_VALUE (TYPE_DOMAIN (outer_type));
1344           tree inner_max = TYPE_MAX_VALUE (TYPE_DOMAIN (inner_type));
1345           tree outer_max = TYPE_MAX_VALUE (TYPE_DOMAIN (outer_type));
1346
1347           /* After gimplification a variable min/max value carries no
1348              additional information compared to a NULL value.  All that
1349              matters has been lowered to be part of the IL.  */
1350           if (inner_min && TREE_CODE (inner_min) != INTEGER_CST)
1351             inner_min = NULL_TREE;
1352           if (outer_min && TREE_CODE (outer_min) != INTEGER_CST)
1353             outer_min = NULL_TREE;
1354           if (inner_max && TREE_CODE (inner_max) != INTEGER_CST)
1355             inner_max = NULL_TREE;
1356           if (outer_max && TREE_CODE (outer_max) != INTEGER_CST)
1357             outer_max = NULL_TREE;
1358
1359           /* Conversions NULL / variable <- cst are useless, but not
1360              the other way around.  */
1361           if (outer_min
1362               && (!inner_min
1363                   || !tree_int_cst_equal (inner_min, outer_min)))
1364             return false;
1365           if (outer_max
1366               && (!inner_max
1367                   || !tree_int_cst_equal (inner_max, outer_max)))
1368             return false;
1369         }
1370
1371       /* Recurse on the element check.  */
1372       return useless_type_conversion_p (TREE_TYPE (outer_type),
1373                                         TREE_TYPE (inner_type));
1374     }
1375
1376   else if ((TREE_CODE (inner_type) == FUNCTION_TYPE
1377             || TREE_CODE (inner_type) == METHOD_TYPE)
1378            && TREE_CODE (inner_type) == TREE_CODE (outer_type))
1379     {
1380       tree outer_parm, inner_parm;
1381
1382       /* If the return types are not compatible bail out.  */
1383       if (!useless_type_conversion_p (TREE_TYPE (outer_type),
1384                                       TREE_TYPE (inner_type)))
1385         return false;
1386
1387       /* Method types should belong to a compatible base class.  */
1388       if (TREE_CODE (inner_type) == METHOD_TYPE
1389           && !useless_type_conversion_p (TYPE_METHOD_BASETYPE (outer_type),
1390                                          TYPE_METHOD_BASETYPE (inner_type)))
1391         return false;
1392
1393       /* A conversion to an unprototyped argument list is ok.  */
1394       if (!TYPE_ARG_TYPES (outer_type))
1395         return true;
1396
1397       /* If the unqualified argument types are compatible the conversion
1398          is useless.  */
1399       if (TYPE_ARG_TYPES (outer_type) == TYPE_ARG_TYPES (inner_type))
1400         return true;
1401
1402       for (outer_parm = TYPE_ARG_TYPES (outer_type),
1403            inner_parm = TYPE_ARG_TYPES (inner_type);
1404            outer_parm && inner_parm;
1405            outer_parm = TREE_CHAIN (outer_parm),
1406            inner_parm = TREE_CHAIN (inner_parm))
1407         if (!useless_type_conversion_p
1408                (TYPE_MAIN_VARIANT (TREE_VALUE (outer_parm)),
1409                 TYPE_MAIN_VARIANT (TREE_VALUE (inner_parm))))
1410           return false;
1411
1412       /* If there is a mismatch in the number of arguments the functions
1413          are not compatible.  */
1414       if (outer_parm || inner_parm)
1415         return false;
1416
1417       /* Defer to the target if necessary.  */
1418       if (TYPE_ATTRIBUTES (inner_type) || TYPE_ATTRIBUTES (outer_type))
1419         return targetm.comp_type_attributes (outer_type, inner_type) != 0;
1420
1421       return true;
1422     }
1423
1424   /* For aggregates we rely on TYPE_CANONICAL exclusively and require
1425      explicit conversions for types involving to be structurally
1426      compared types.  */
1427   else if (AGGREGATE_TYPE_P (inner_type)
1428            && TREE_CODE (inner_type) == TREE_CODE (outer_type))
1429     return false;
1430
1431   return false;
1432 }
1433
1434 /* Return true if a conversion from either type of TYPE1 and TYPE2
1435    to the other is not required.  Otherwise return false.  */
1436
1437 bool
1438 types_compatible_p (tree type1, tree type2)
1439 {
1440   return (type1 == type2
1441           || (useless_type_conversion_p (type1, type2)
1442               && useless_type_conversion_p (type2, type1)));
1443 }
1444
1445 /* Return true if EXPR is a useless type conversion, otherwise return
1446    false.  */
1447
1448 bool
1449 tree_ssa_useless_type_conversion (tree expr)
1450 {
1451   /* If we have an assignment that merely uses a NOP_EXPR to change
1452      the top of the RHS to the type of the LHS and the type conversion
1453      is "safe", then strip away the type conversion so that we can
1454      enter LHS = RHS into the const_and_copies table.  */
1455   if (CONVERT_EXPR_P (expr)
1456       || TREE_CODE (expr) == VIEW_CONVERT_EXPR
1457       || TREE_CODE (expr) == NON_LVALUE_EXPR)
1458     return useless_type_conversion_p
1459       (TREE_TYPE (expr),
1460        TREE_TYPE (TREE_OPERAND (expr, 0)));
1461
1462   return false;
1463 }
1464
1465 /* Strip conversions from EXP according to
1466    tree_ssa_useless_type_conversion and return the resulting
1467    expression.  */
1468
1469 tree
1470 tree_ssa_strip_useless_type_conversions (tree exp)
1471 {
1472   while (tree_ssa_useless_type_conversion (exp))
1473     exp = TREE_OPERAND (exp, 0);
1474   return exp;
1475 }
1476
1477
1478 /* Internal helper for walk_use_def_chains.  VAR, FN and DATA are as
1479    described in walk_use_def_chains.
1480
1481    VISITED is a pointer set used to mark visited SSA_NAMEs to avoid
1482       infinite loops.  We used to have a bitmap for this to just mark
1483       SSA versions we had visited.  But non-sparse bitmaps are way too
1484       expensive, while sparse bitmaps may cause quadratic behavior.
1485
1486    IS_DFS is true if the caller wants to perform a depth-first search
1487       when visiting PHI nodes.  A DFS will visit each PHI argument and
1488       call FN after each one.  Otherwise, all the arguments are
1489       visited first and then FN is called with each of the visited
1490       arguments in a separate pass.  */
1491
1492 static bool
1493 walk_use_def_chains_1 (tree var, walk_use_def_chains_fn fn, void *data,
1494                        struct pointer_set_t *visited, bool is_dfs)
1495 {
1496   gimple def_stmt;
1497
1498   if (pointer_set_insert (visited, var))
1499     return false;
1500
1501   def_stmt = SSA_NAME_DEF_STMT (var);
1502
1503   if (gimple_code (def_stmt) != GIMPLE_PHI)
1504     {
1505       /* If we reached the end of the use-def chain, call FN.  */
1506       return fn (var, def_stmt, data);
1507     }
1508   else
1509     {
1510       size_t i;
1511
1512       /* When doing a breadth-first search, call FN before following the
1513          use-def links for each argument.  */
1514       if (!is_dfs)
1515         for (i = 0; i < gimple_phi_num_args (def_stmt); i++)
1516           if (fn (gimple_phi_arg_def (def_stmt, i), def_stmt, data))
1517             return true;
1518
1519       /* Follow use-def links out of each PHI argument.  */
1520       for (i = 0; i < gimple_phi_num_args (def_stmt); i++)
1521         {
1522           tree arg = gimple_phi_arg_def (def_stmt, i);
1523
1524           /* ARG may be NULL for newly introduced PHI nodes.  */
1525           if (arg
1526               && TREE_CODE (arg) == SSA_NAME
1527               && walk_use_def_chains_1 (arg, fn, data, visited, is_dfs))
1528             return true;
1529         }
1530
1531       /* When doing a depth-first search, call FN after following the
1532          use-def links for each argument.  */
1533       if (is_dfs)
1534         for (i = 0; i < gimple_phi_num_args (def_stmt); i++)
1535           if (fn (gimple_phi_arg_def (def_stmt, i), def_stmt, data))
1536             return true;
1537     }
1538
1539   return false;
1540 }
1541
1542
1543
1544 /* Walk use-def chains starting at the SSA variable VAR.  Call
1545    function FN at each reaching definition found.  FN takes three
1546    arguments: VAR, its defining statement (DEF_STMT) and a generic
1547    pointer to whatever state information that FN may want to maintain
1548    (DATA).  FN is able to stop the walk by returning true, otherwise
1549    in order to continue the walk, FN should return false.
1550
1551    Note, that if DEF_STMT is a PHI node, the semantics are slightly
1552    different.  The first argument to FN is no longer the original
1553    variable VAR, but the PHI argument currently being examined.  If FN
1554    wants to get at VAR, it should call PHI_RESULT (PHI).
1555
1556    If IS_DFS is true, this function will:
1557
1558         1- walk the use-def chains for all the PHI arguments, and,
1559         2- call (*FN) (ARG, PHI, DATA) on all the PHI arguments.
1560
1561    If IS_DFS is false, the two steps above are done in reverse order
1562    (i.e., a breadth-first search).  */
1563
1564 void
1565 walk_use_def_chains (tree var, walk_use_def_chains_fn fn, void *data,
1566                      bool is_dfs)
1567 {
1568   gimple def_stmt;
1569
1570   gcc_assert (TREE_CODE (var) == SSA_NAME);
1571
1572   def_stmt = SSA_NAME_DEF_STMT (var);
1573
1574   /* We only need to recurse if the reaching definition comes from a PHI
1575      node.  */
1576   if (gimple_code (def_stmt) != GIMPLE_PHI)
1577     (*fn) (var, def_stmt, data);
1578   else
1579     {
1580       struct pointer_set_t *visited = pointer_set_create ();
1581       walk_use_def_chains_1 (var, fn, data, visited, is_dfs);
1582       pointer_set_destroy (visited);
1583     }
1584 }
1585
1586 \f
1587 /* Emit warnings for uninitialized variables.  This is done in two passes.
1588
1589    The first pass notices real uses of SSA names with undefined values.
1590    Such uses are unconditionally uninitialized, and we can be certain that
1591    such a use is a mistake.  This pass is run before most optimizations,
1592    so that we catch as many as we can.
1593
1594    The second pass follows PHI nodes to find uses that are potentially
1595    uninitialized.  In this case we can't necessarily prove that the use
1596    is really uninitialized.  This pass is run after most optimizations,
1597    so that we thread as many jumps and possible, and delete as much dead
1598    code as possible, in order to reduce false positives.  We also look
1599    again for plain uninitialized variables, since optimization may have
1600    changed conditionally uninitialized to unconditionally uninitialized.  */
1601
1602 /* Emit a warning for T, an SSA_NAME, being uninitialized.  The exact
1603    warning text is in MSGID and LOCUS may contain a location or be null.  */
1604
1605 void
1606 warn_uninit (tree t, const char *gmsgid, void *data)
1607 {
1608   tree var = SSA_NAME_VAR (t);
1609   gimple context = (gimple) data;
1610   location_t location;
1611   expanded_location xloc, floc;
1612
1613   if (!ssa_undefined_value_p (t))
1614     return;
1615
1616   /* TREE_NO_WARNING either means we already warned, or the front end
1617      wishes to suppress the warning.  */
1618   if (TREE_NO_WARNING (var))
1619     return;
1620
1621   /* Do not warn if it can be initialized outside this module.  */
1622   if (is_global_var (var))
1623     return;
1624
1625   location = (context != NULL && gimple_has_location (context))
1626              ? gimple_location (context)
1627              : DECL_SOURCE_LOCATION (var);
1628   xloc = expand_location (location);
1629   floc = expand_location (DECL_SOURCE_LOCATION (cfun->decl));
1630   if (warning_at (location, OPT_Wuninitialized, gmsgid, var))
1631     {
1632       TREE_NO_WARNING (var) = 1;
1633
1634       if (xloc.file != floc.file
1635           || xloc.line < floc.line
1636           || xloc.line > LOCATION_LINE (cfun->function_end_locus))
1637         inform (DECL_SOURCE_LOCATION (var), "%qD was declared here", var);
1638     }
1639 }
1640
1641 struct walk_data {
1642   gimple stmt;
1643   bool always_executed;
1644   bool warn_possibly_uninitialized;
1645 };
1646
1647 /* Called via walk_tree, look for SSA_NAMEs that have empty definitions
1648    and warn about them.  */
1649
1650 static tree
1651 warn_uninitialized_var (tree *tp, int *walk_subtrees, void *data_)
1652 {
1653   struct walk_stmt_info *wi = (struct walk_stmt_info *) data_;
1654   struct walk_data *data = (struct walk_data *) wi->info;
1655   tree t = *tp;
1656
1657   /* We do not care about LHS.  */
1658   if (wi->is_lhs)
1659     {
1660       /* Except for operands of dereferences.  */
1661       if (!INDIRECT_REF_P (t)
1662           && TREE_CODE (t) != MEM_REF)
1663         return NULL_TREE;
1664       t = TREE_OPERAND (t, 0);
1665     }
1666
1667   switch (TREE_CODE (t))
1668     {
1669     case ADDR_EXPR:
1670       /* Taking the address of an uninitialized variable does not
1671          count as using it.  */
1672       *walk_subtrees = 0;
1673       break;
1674
1675     case VAR_DECL:
1676       {
1677         /* A VAR_DECL in the RHS of a gimple statement may mean that
1678            this variable is loaded from memory.  */
1679         use_operand_p vuse;
1680         tree op;
1681
1682         /* If there is not gimple stmt,
1683            or alias information has not been computed,
1684            then we cannot check VUSE ops.  */
1685         if (data->stmt == NULL)
1686           return NULL_TREE;
1687
1688         /* If the load happens as part of a call do not warn about it.  */
1689         if (is_gimple_call (data->stmt))
1690           return NULL_TREE;
1691
1692         vuse = gimple_vuse_op (data->stmt);
1693         if (vuse == NULL_USE_OPERAND_P)
1694           return NULL_TREE;
1695
1696         op = USE_FROM_PTR (vuse);
1697         if (t != SSA_NAME_VAR (op)
1698             || !SSA_NAME_IS_DEFAULT_DEF (op))
1699           return NULL_TREE;
1700         /* If this is a VUSE of t and it is the default definition,
1701            then warn about op.  */
1702         t = op;
1703         /* Fall through into SSA_NAME.  */
1704       }
1705
1706     case SSA_NAME:
1707       /* We only do data flow with SSA_NAMEs, so that's all we
1708          can warn about.  */
1709       if (data->always_executed)
1710         warn_uninit (t, "%qD is used uninitialized in this function",
1711                      data->stmt);
1712       else if (data->warn_possibly_uninitialized)
1713         warn_uninit (t, "%qD may be used uninitialized in this function",
1714                      data->stmt);
1715       *walk_subtrees = 0;
1716       break;
1717
1718     case REALPART_EXPR:
1719     case IMAGPART_EXPR:
1720       /* The total store transformation performed during gimplification
1721          creates uninitialized variable uses.  If all is well, these will
1722          be optimized away, so don't warn now.  */
1723       if (TREE_CODE (TREE_OPERAND (t, 0)) == SSA_NAME)
1724         *walk_subtrees = 0;
1725       break;
1726
1727     default:
1728       if (IS_TYPE_OR_DECL_P (t))
1729         *walk_subtrees = 0;
1730       break;
1731     }
1732
1733   return NULL_TREE;
1734 }
1735
1736 unsigned int
1737 warn_uninitialized_vars (bool warn_possibly_uninitialized)
1738 {
1739   gimple_stmt_iterator gsi;
1740   basic_block bb;
1741   struct walk_data data;
1742
1743   data.warn_possibly_uninitialized = warn_possibly_uninitialized;
1744
1745
1746   FOR_EACH_BB (bb)
1747     {
1748       data.always_executed = dominated_by_p (CDI_POST_DOMINATORS,
1749                                              single_succ (ENTRY_BLOCK_PTR), bb);
1750       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1751         {
1752           struct walk_stmt_info wi;
1753           data.stmt = gsi_stmt (gsi);
1754           if (is_gimple_debug (data.stmt))
1755             continue;
1756           memset (&wi, 0, sizeof (wi));
1757           wi.info = &data;
1758           walk_gimple_op (gsi_stmt (gsi), warn_uninitialized_var, &wi);
1759         }
1760     }
1761
1762   return 0;
1763 }
1764
1765 static unsigned int
1766 execute_early_warn_uninitialized (void)
1767 {
1768   /* Currently, this pass runs always but
1769      execute_late_warn_uninitialized only runs with optimization. With
1770      optimization we want to warn about possible uninitialized as late
1771      as possible, thus don't do it here.  However, without
1772      optimization we need to warn here about "may be uninitialized".
1773   */
1774   calculate_dominance_info (CDI_POST_DOMINATORS);
1775
1776   warn_uninitialized_vars (/*warn_possibly_uninitialized=*/!optimize);
1777
1778   /* Post-dominator information can not be reliably updated. Free it
1779      after the use.  */
1780
1781   free_dominance_info (CDI_POST_DOMINATORS);
1782   return 0;
1783 }
1784
1785 static bool
1786 gate_warn_uninitialized (void)
1787 {
1788   return warn_uninitialized != 0;
1789 }
1790
1791 struct gimple_opt_pass pass_early_warn_uninitialized =
1792 {
1793  {
1794   GIMPLE_PASS,
1795   "*early_warn_uninitialized",          /* name */
1796   gate_warn_uninitialized,              /* gate */
1797   execute_early_warn_uninitialized,     /* execute */
1798   NULL,                                 /* sub */
1799   NULL,                                 /* next */
1800   0,                                    /* static_pass_number */
1801   TV_NONE,                              /* tv_id */
1802   PROP_ssa,                             /* properties_required */
1803   0,                                    /* properties_provided */
1804   0,                                    /* properties_destroyed */
1805   0,                                    /* todo_flags_start */
1806   0                                     /* todo_flags_finish */
1807  }
1808 };
1809
1810
1811 /* If necessary, rewrite the base of the reference tree *TP from
1812    a MEM_REF to a plain or converted symbol.  */
1813
1814 static void
1815 maybe_rewrite_mem_ref_base (tree *tp)
1816 {
1817   tree sym;
1818
1819   while (handled_component_p (*tp))
1820     tp = &TREE_OPERAND (*tp, 0);
1821   if (TREE_CODE (*tp) == MEM_REF
1822       && TREE_CODE (TREE_OPERAND (*tp, 0)) == ADDR_EXPR
1823       && integer_zerop (TREE_OPERAND (*tp, 1))
1824       && (sym = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0))
1825       && DECL_P (sym)
1826       && !TREE_ADDRESSABLE (sym)
1827       && symbol_marked_for_renaming (sym))
1828     {
1829       if (!useless_type_conversion_p (TREE_TYPE (*tp),
1830                                       TREE_TYPE (sym)))
1831         *tp = build1 (VIEW_CONVERT_EXPR,
1832                         TREE_TYPE (*tp), sym);
1833       else
1834         *tp = sym;
1835     }
1836 }
1837
1838 /* Compute TREE_ADDRESSABLE and DECL_GIMPLE_REG_P for local variables.  */
1839
1840 void
1841 execute_update_addresses_taken (bool do_optimize)
1842 {
1843   tree var;
1844   referenced_var_iterator rvi;
1845   gimple_stmt_iterator gsi;
1846   basic_block bb;
1847   bitmap addresses_taken = BITMAP_ALLOC (NULL);
1848   bitmap not_reg_needs = BITMAP_ALLOC (NULL);
1849   bool update_vops = false;
1850
1851   /* Collect into ADDRESSES_TAKEN all variables whose address is taken within
1852      the function body.  */
1853   FOR_EACH_BB (bb)
1854     {
1855       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1856         {
1857           gimple stmt = gsi_stmt (gsi);
1858           enum gimple_code code = gimple_code (stmt);
1859
1860           /* Note all addresses taken by the stmt.  */
1861           gimple_ior_addresses_taken (addresses_taken, stmt);
1862
1863           /* If we have a call or an assignment, see if the lhs contains
1864              a local decl that requires not to be a gimple register.  */
1865           if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1866             {
1867               tree lhs = gimple_get_lhs (stmt);
1868
1869               /* A plain decl does not need it set.  */
1870               if (lhs && !DECL_P (lhs))
1871                 {
1872                   if (handled_component_p (lhs))
1873                     lhs = get_base_address (lhs);
1874
1875                   if (DECL_P (lhs))
1876                     bitmap_set_bit (not_reg_needs, DECL_UID (lhs));
1877                   else if (TREE_CODE (lhs) == MEM_REF
1878                            && TREE_CODE (TREE_OPERAND (lhs, 0)) == ADDR_EXPR)
1879                     {
1880                       tree decl = TREE_OPERAND (TREE_OPERAND (lhs, 0), 0);
1881                       if (DECL_P (decl)
1882                           && (!integer_zerop (TREE_OPERAND (lhs, 1))
1883                               || (DECL_SIZE (decl)
1884                                   != TYPE_SIZE (TREE_TYPE (lhs)))))
1885                         bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1886                     }
1887                 }
1888             }
1889
1890           if (gimple_assign_single_p (stmt))
1891             {
1892               tree rhs = gimple_assign_rhs1 (stmt);
1893
1894               /* A plain decl does not need it set.  */
1895               if (!DECL_P (rhs))
1896                 {
1897                   tree base = rhs;
1898                   while (handled_component_p (base))
1899                     base = TREE_OPERAND (base, 0);
1900
1901                   /* But watch out for MEM_REFs we cannot lower to a
1902                      VIEW_CONVERT_EXPR.  */
1903                   if (TREE_CODE (base) == MEM_REF
1904                       && TREE_CODE (TREE_OPERAND (base, 0)) == ADDR_EXPR)
1905                     {
1906                       tree decl = TREE_OPERAND (TREE_OPERAND (base, 0), 0);
1907                       if (DECL_P (decl)
1908                           && (!integer_zerop (TREE_OPERAND (base, 1))
1909                               || (DECL_SIZE (decl)
1910                                   != TYPE_SIZE (TREE_TYPE (base)))))
1911                         bitmap_set_bit (not_reg_needs, DECL_UID (decl));
1912                     }
1913                 }
1914             }
1915         }
1916
1917       for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1918         {
1919           size_t i;
1920           gimple phi = gsi_stmt (gsi);
1921
1922           for (i = 0; i < gimple_phi_num_args (phi); i++)
1923             {
1924               tree op = PHI_ARG_DEF (phi, i), var;
1925               if (TREE_CODE (op) == ADDR_EXPR
1926                   && (var = get_base_address (TREE_OPERAND (op, 0))) != NULL
1927                   && DECL_P (var))
1928                 bitmap_set_bit (addresses_taken, DECL_UID (var));
1929             }
1930         }
1931     }
1932
1933   /* When possible, clear ADDRESSABLE bit or set the REGISTER bit
1934      and mark variable for conversion into SSA.  */
1935   if (optimize && do_optimize)
1936     FOR_EACH_REFERENCED_VAR (var, rvi)
1937       {
1938         /* Global Variables, result decls cannot be changed.  */
1939         if (is_global_var (var)
1940             || TREE_CODE (var) == RESULT_DECL
1941             || bitmap_bit_p (addresses_taken, DECL_UID (var)))
1942           continue;
1943
1944         if (TREE_ADDRESSABLE (var)
1945             /* Do not change TREE_ADDRESSABLE if we need to preserve var as
1946                a non-register.  Otherwise we are confused and forget to
1947                add virtual operands for it.  */
1948             && (!is_gimple_reg_type (TREE_TYPE (var))
1949                 || !bitmap_bit_p (not_reg_needs, DECL_UID (var))))
1950           {
1951             TREE_ADDRESSABLE (var) = 0;
1952             if (is_gimple_reg (var))
1953               mark_sym_for_renaming (var);
1954             update_vops = true;
1955             if (dump_file)
1956               {
1957                 fprintf (dump_file, "No longer having address taken ");
1958                 print_generic_expr (dump_file, var, 0);
1959                 fprintf (dump_file, "\n");
1960               }
1961           }
1962         if (!DECL_GIMPLE_REG_P (var)
1963             && !bitmap_bit_p (not_reg_needs, DECL_UID (var))
1964             && (TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE
1965                 || TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE)
1966             && !TREE_THIS_VOLATILE (var)
1967             && (TREE_CODE (var) != VAR_DECL || !DECL_HARD_REGISTER (var)))
1968           {
1969             DECL_GIMPLE_REG_P (var) = 1;
1970             mark_sym_for_renaming (var);
1971             update_vops = true;
1972             if (dump_file)
1973               {
1974                 fprintf (dump_file, "Decl is now a gimple register ");
1975                 print_generic_expr (dump_file, var, 0);
1976                 fprintf (dump_file, "\n");
1977               }
1978           }
1979       }
1980
1981   /* Operand caches needs to be recomputed for operands referencing the updated
1982      variables.  */
1983   if (update_vops)
1984     {
1985       FOR_EACH_BB (bb)
1986         for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1987           {
1988             gimple stmt = gsi_stmt (gsi);
1989
1990             /* Re-write TARGET_MEM_REFs of symbols we want to
1991                rewrite into SSA form.  */
1992             if (gimple_assign_single_p (stmt))
1993               {
1994                 tree lhs = gimple_assign_lhs (stmt);
1995                 tree rhs, *rhsp = gimple_assign_rhs1_ptr (stmt);
1996                 tree sym;
1997
1998                 /* We shouldn't have any fancy wrapping of
1999                    component-refs on the LHS, but look through
2000                    VIEW_CONVERT_EXPRs as that is easy.  */
2001                 while (TREE_CODE (lhs) == VIEW_CONVERT_EXPR)
2002                   lhs = TREE_OPERAND (lhs, 0);
2003                 if (TREE_CODE (lhs) == MEM_REF
2004                     && TREE_CODE (TREE_OPERAND (lhs, 0)) == ADDR_EXPR
2005                     && integer_zerop (TREE_OPERAND (lhs, 1))
2006                     && (sym = TREE_OPERAND (TREE_OPERAND (lhs, 0), 0))
2007                     && DECL_P (sym)
2008                     && !TREE_ADDRESSABLE (sym)
2009                     && symbol_marked_for_renaming (sym))
2010                   lhs = sym;
2011                 else
2012                   lhs = gimple_assign_lhs (stmt);
2013
2014                 /* Rewrite the RHS and make sure the resulting assignment
2015                    is validly typed.  */
2016                 maybe_rewrite_mem_ref_base (rhsp);
2017                 rhs = gimple_assign_rhs1 (stmt);
2018                 if (gimple_assign_lhs (stmt) != lhs
2019                     && !useless_type_conversion_p (TREE_TYPE (lhs),
2020                                                    TREE_TYPE (rhs)))
2021                   rhs = fold_build1 (VIEW_CONVERT_EXPR,
2022                                      TREE_TYPE (lhs), rhs);
2023
2024                 if (gimple_assign_lhs (stmt) != lhs)
2025                   gimple_assign_set_lhs (stmt, lhs);
2026
2027                 if (gimple_assign_rhs1 (stmt) != rhs)
2028                   {
2029                     gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
2030                     gimple_assign_set_rhs_from_tree (&gsi, rhs);
2031                   }
2032               }
2033
2034             if (gimple_code (stmt) == GIMPLE_ASM)
2035               {
2036                 unsigned i;
2037                 for (i = 0; i < gimple_asm_noutputs (stmt); ++i)
2038                   {
2039                     tree link = gimple_asm_output_op (stmt, i);
2040                     maybe_rewrite_mem_ref_base (&TREE_VALUE (link));
2041                   }
2042                 for (i = 0; i < gimple_asm_ninputs (stmt); ++i)
2043                   {
2044                     tree link = gimple_asm_input_op (stmt, i);
2045                     maybe_rewrite_mem_ref_base (&TREE_VALUE (link));
2046                   }
2047               }
2048
2049             if (gimple_references_memory_p (stmt)
2050                 || is_gimple_debug (stmt))
2051               update_stmt (stmt);
2052           }
2053
2054       /* Update SSA form here, we are called as non-pass as well.  */
2055       update_ssa (TODO_update_ssa);
2056     }
2057
2058   BITMAP_FREE (not_reg_needs);
2059   BITMAP_FREE (addresses_taken);
2060 }
2061
2062 struct gimple_opt_pass pass_update_address_taken =
2063 {
2064  {
2065   GIMPLE_PASS,
2066   "addressables",                       /* name */
2067   NULL,                                 /* gate */
2068   NULL,                                 /* execute */
2069   NULL,                                 /* sub */
2070   NULL,                                 /* next */
2071   0,                                    /* static_pass_number */
2072   TV_NONE,                              /* tv_id */
2073   PROP_ssa,                             /* properties_required */
2074   0,                                    /* properties_provided */
2075   0,                                    /* properties_destroyed */
2076   0,                                    /* todo_flags_start */
2077   TODO_update_address_taken
2078   | TODO_dump_func                      /* todo_flags_finish */
2079  }
2080 };