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