OSDN Git Service

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