hash-table.h: Update comments.
[gcc.git] / gcc / tree-ssa-live.c
1 /* Liveness for SSA trees.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
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 "alias.h"
26 #include "symtab.h"
27 #include "tree.h"
28 #include "fold-const.h"
29 #include "gimple-pretty-print.h"
30 #include "bitmap.h"
31 #include "sbitmap.h"
32 #include "predict.h"
33 #include "hard-reg-set.h"
34 #include "function.h"
35 #include "dominance.h"
36 #include "cfg.h"
37 #include "basic-block.h"
38 #include "tree-ssa-alias.h"
39 #include "internal-fn.h"
40 #include "gimple-expr.h"
41 #include "gimple.h"
42 #include "gimple-iterator.h"
43 #include "gimple-ssa.h"
44 #include "tree-phinodes.h"
45 #include "ssa-iterators.h"
46 #include "stringpool.h"
47 #include "tree-ssanames.h"
48 #include "rtl.h"
49 #include "flags.h"
50 #include "insn-config.h"
51 #include "expmed.h"
52 #include "dojump.h"
53 #include "explow.h"
54 #include "calls.h"
55 #include "emit-rtl.h"
56 #include "varasm.h"
57 #include "stmt.h"
58 #include "expr.h"
59 #include "tree-dfa.h"
60 #include "timevar.h"
61 #include "dumpfile.h"
62 #include "tree-ssa-live.h"
63 #include "diagnostic-core.h"
64 #include "debug.h"
65 #include "tree-ssa.h"
66 #include "lto-streamer.h"
67 #include "ipa-ref.h"
68 #include "cgraph.h"
69 #include "ipa-utils.h"
70
71 #ifdef ENABLE_CHECKING
72 static void verify_live_on_entry (tree_live_info_p);
73 #endif
74
75
76 /* VARMAP maintains a mapping from SSA version number to real variables.
77
78 All SSA_NAMES are divided into partitions. Initially each ssa_name is the
79 only member of it's own partition. Coalescing will attempt to group any
80 ssa_names which occur in a copy or in a PHI node into the same partition.
81
82 At the end of out-of-ssa, each partition becomes a "real" variable and is
83 rewritten as a compiler variable.
84
85 The var_map data structure is used to manage these partitions. It allows
86 partitions to be combined, and determines which partition belongs to what
87 ssa_name or variable, and vice versa. */
88
89
90 /* Hashtable helpers. */
91
92 struct tree_int_map_hasher : nofree_ptr_hash <tree_int_map>
93 {
94 static inline hashval_t hash (const tree_int_map *);
95 static inline bool equal (const tree_int_map *, const tree_int_map *);
96 };
97
98 inline hashval_t
99 tree_int_map_hasher::hash (const tree_int_map *v)
100 {
101 return tree_map_base_hash (v);
102 }
103
104 inline bool
105 tree_int_map_hasher::equal (const tree_int_map *v, const tree_int_map *c)
106 {
107 return tree_int_map_eq (v, c);
108 }
109
110
111 /* This routine will initialize the basevar fields of MAP. */
112
113 static void
114 var_map_base_init (var_map map)
115 {
116 int x, num_part;
117 tree var;
118 struct tree_int_map *m, *mapstorage;
119
120 num_part = num_var_partitions (map);
121 hash_table<tree_int_map_hasher> tree_to_index (num_part);
122 /* We can have at most num_part entries in the hash tables, so it's
123 enough to allocate so many map elements once, saving some malloc
124 calls. */
125 mapstorage = m = XNEWVEC (struct tree_int_map, num_part);
126
127 /* If a base table already exists, clear it, otherwise create it. */
128 free (map->partition_to_base_index);
129 map->partition_to_base_index = (int *) xmalloc (sizeof (int) * num_part);
130
131 /* Build the base variable list, and point partitions at their bases. */
132 for (x = 0; x < num_part; x++)
133 {
134 struct tree_int_map **slot;
135 unsigned baseindex;
136 var = partition_to_var (map, x);
137 if (SSA_NAME_VAR (var)
138 && (!VAR_P (SSA_NAME_VAR (var))
139 || !DECL_IGNORED_P (SSA_NAME_VAR (var))))
140 m->base.from = SSA_NAME_VAR (var);
141 else
142 /* This restricts what anonymous SSA names we can coalesce
143 as it restricts the sets we compute conflicts for.
144 Using TREE_TYPE to generate sets is the easies as
145 type equivalency also holds for SSA names with the same
146 underlying decl.
147
148 Check gimple_can_coalesce_p when changing this code. */
149 m->base.from = (TYPE_CANONICAL (TREE_TYPE (var))
150 ? TYPE_CANONICAL (TREE_TYPE (var))
151 : TREE_TYPE (var));
152 /* If base variable hasn't been seen, set it up. */
153 slot = tree_to_index.find_slot (m, INSERT);
154 if (!*slot)
155 {
156 baseindex = m - mapstorage;
157 m->to = baseindex;
158 *slot = m;
159 m++;
160 }
161 else
162 baseindex = (*slot)->to;
163 map->partition_to_base_index[x] = baseindex;
164 }
165
166 map->num_basevars = m - mapstorage;
167
168 free (mapstorage);
169 }
170
171
172 /* Remove the base table in MAP. */
173
174 static void
175 var_map_base_fini (var_map map)
176 {
177 /* Free the basevar info if it is present. */
178 if (map->partition_to_base_index != NULL)
179 {
180 free (map->partition_to_base_index);
181 map->partition_to_base_index = NULL;
182 map->num_basevars = 0;
183 }
184 }
185 /* Create a variable partition map of SIZE, initialize and return it. */
186
187 var_map
188 init_var_map (int size)
189 {
190 var_map map;
191
192 map = (var_map) xmalloc (sizeof (struct _var_map));
193 map->var_partition = partition_new (size);
194
195 map->partition_to_view = NULL;
196 map->view_to_partition = NULL;
197 map->num_partitions = size;
198 map->partition_size = size;
199 map->num_basevars = 0;
200 map->partition_to_base_index = NULL;
201 return map;
202 }
203
204
205 /* Free memory associated with MAP. */
206
207 void
208 delete_var_map (var_map map)
209 {
210 var_map_base_fini (map);
211 partition_delete (map->var_partition);
212 free (map->partition_to_view);
213 free (map->view_to_partition);
214 free (map);
215 }
216
217
218 /* This function will combine the partitions in MAP for VAR1 and VAR2. It
219 Returns the partition which represents the new partition. If the two
220 partitions cannot be combined, NO_PARTITION is returned. */
221
222 int
223 var_union (var_map map, tree var1, tree var2)
224 {
225 int p1, p2, p3;
226
227 gcc_assert (TREE_CODE (var1) == SSA_NAME);
228 gcc_assert (TREE_CODE (var2) == SSA_NAME);
229
230 /* This is independent of partition_to_view. If partition_to_view is
231 on, then whichever one of these partitions is absorbed will never have a
232 dereference into the partition_to_view array any more. */
233
234 p1 = partition_find (map->var_partition, SSA_NAME_VERSION (var1));
235 p2 = partition_find (map->var_partition, SSA_NAME_VERSION (var2));
236
237 gcc_assert (p1 != NO_PARTITION);
238 gcc_assert (p2 != NO_PARTITION);
239
240 if (p1 == p2)
241 p3 = p1;
242 else
243 p3 = partition_union (map->var_partition, p1, p2);
244
245 if (map->partition_to_view)
246 p3 = map->partition_to_view[p3];
247
248 return p3;
249 }
250
251
252 /* Compress the partition numbers in MAP such that they fall in the range
253 0..(num_partitions-1) instead of wherever they turned out during
254 the partitioning exercise. This removes any references to unused
255 partitions, thereby allowing bitmaps and other vectors to be much
256 denser.
257
258 This is implemented such that compaction doesn't affect partitioning.
259 Ie., once partitions are created and possibly merged, running one
260 or more different kind of compaction will not affect the partitions
261 themselves. Their index might change, but all the same variables will
262 still be members of the same partition group. This allows work on reduced
263 sets, and no loss of information when a larger set is later desired.
264
265 In particular, coalescing can work on partitions which have 2 or more
266 definitions, and then 'recompact' later to include all the single
267 definitions for assignment to program variables. */
268
269
270 /* Set MAP back to the initial state of having no partition view. Return a
271 bitmap which has a bit set for each partition number which is in use in the
272 varmap. */
273
274 static bitmap
275 partition_view_init (var_map map)
276 {
277 bitmap used;
278 int tmp;
279 unsigned int x;
280
281 used = BITMAP_ALLOC (NULL);
282
283 /* Already in a view? Abandon the old one. */
284 if (map->partition_to_view)
285 {
286 free (map->partition_to_view);
287 map->partition_to_view = NULL;
288 }
289 if (map->view_to_partition)
290 {
291 free (map->view_to_partition);
292 map->view_to_partition = NULL;
293 }
294
295 /* Find out which partitions are actually referenced. */
296 for (x = 0; x < map->partition_size; x++)
297 {
298 tmp = partition_find (map->var_partition, x);
299 if (ssa_name (tmp) != NULL_TREE && !virtual_operand_p (ssa_name (tmp))
300 && (!has_zero_uses (ssa_name (tmp))
301 || !SSA_NAME_IS_DEFAULT_DEF (ssa_name (tmp))))
302 bitmap_set_bit (used, tmp);
303 }
304
305 map->num_partitions = map->partition_size;
306 return used;
307 }
308
309
310 /* This routine will finalize the view data for MAP based on the partitions
311 set in SELECTED. This is either the same bitmap returned from
312 partition_view_init, or a trimmed down version if some of those partitions
313 were not desired in this view. SELECTED is freed before returning. */
314
315 static void
316 partition_view_fini (var_map map, bitmap selected)
317 {
318 bitmap_iterator bi;
319 unsigned count, i, x, limit;
320
321 gcc_assert (selected);
322
323 count = bitmap_count_bits (selected);
324 limit = map->partition_size;
325
326 /* If its a one-to-one ratio, we don't need any view compaction. */
327 if (count < limit)
328 {
329 map->partition_to_view = (int *)xmalloc (limit * sizeof (int));
330 memset (map->partition_to_view, 0xff, (limit * sizeof (int)));
331 map->view_to_partition = (int *)xmalloc (count * sizeof (int));
332
333 i = 0;
334 /* Give each selected partition an index. */
335 EXECUTE_IF_SET_IN_BITMAP (selected, 0, x, bi)
336 {
337 map->partition_to_view[x] = i;
338 map->view_to_partition[i] = x;
339 i++;
340 }
341 gcc_assert (i == count);
342 map->num_partitions = i;
343 }
344
345 BITMAP_FREE (selected);
346 }
347
348
349 /* Create a partition view which includes all the used partitions in MAP. If
350 WANT_BASES is true, create the base variable map as well. */
351
352 void
353 partition_view_normal (var_map map, bool want_bases)
354 {
355 bitmap used;
356
357 used = partition_view_init (map);
358 partition_view_fini (map, used);
359
360 if (want_bases)
361 var_map_base_init (map);
362 else
363 var_map_base_fini (map);
364 }
365
366
367 /* Create a partition view in MAP which includes just partitions which occur in
368 the bitmap ONLY. If WANT_BASES is true, create the base variable map
369 as well. */
370
371 void
372 partition_view_bitmap (var_map map, bitmap only, bool want_bases)
373 {
374 bitmap used;
375 bitmap new_partitions = BITMAP_ALLOC (NULL);
376 unsigned x, p;
377 bitmap_iterator bi;
378
379 used = partition_view_init (map);
380 EXECUTE_IF_SET_IN_BITMAP (only, 0, x, bi)
381 {
382 p = partition_find (map->var_partition, x);
383 gcc_assert (bitmap_bit_p (used, p));
384 bitmap_set_bit (new_partitions, p);
385 }
386 partition_view_fini (map, new_partitions);
387
388 if (want_bases)
389 var_map_base_init (map);
390 else
391 var_map_base_fini (map);
392 }
393
394
395 static bitmap usedvars;
396
397 /* Mark VAR as used, so that it'll be preserved during rtl expansion.
398 Returns true if VAR wasn't marked before. */
399
400 static inline bool
401 set_is_used (tree var)
402 {
403 return bitmap_set_bit (usedvars, DECL_UID (var));
404 }
405
406 /* Return true if VAR is marked as used. */
407
408 static inline bool
409 is_used_p (tree var)
410 {
411 return bitmap_bit_p (usedvars, DECL_UID (var));
412 }
413
414 static inline void mark_all_vars_used (tree *);
415
416 /* Helper function for mark_all_vars_used, called via walk_tree. */
417
418 static tree
419 mark_all_vars_used_1 (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
420 {
421 tree t = *tp;
422 enum tree_code_class c = TREE_CODE_CLASS (TREE_CODE (t));
423 tree b;
424
425 if (TREE_CODE (t) == SSA_NAME)
426 {
427 *walk_subtrees = 0;
428 t = SSA_NAME_VAR (t);
429 if (!t)
430 return NULL;
431 }
432
433 if (IS_EXPR_CODE_CLASS (c)
434 && (b = TREE_BLOCK (t)) != NULL)
435 TREE_USED (b) = true;
436
437 /* Ignore TMR_OFFSET and TMR_STEP for TARGET_MEM_REFS, as those
438 fields do not contain vars. */
439 if (TREE_CODE (t) == TARGET_MEM_REF)
440 {
441 mark_all_vars_used (&TMR_BASE (t));
442 mark_all_vars_used (&TMR_INDEX (t));
443 mark_all_vars_used (&TMR_INDEX2 (t));
444 *walk_subtrees = 0;
445 return NULL;
446 }
447
448 /* Only need to mark VAR_DECLS; parameters and return results are not
449 eliminated as unused. */
450 if (TREE_CODE (t) == VAR_DECL)
451 {
452 /* When a global var becomes used for the first time also walk its
453 initializer (non global ones don't have any). */
454 if (set_is_used (t) && is_global_var (t)
455 && DECL_CONTEXT (t) == current_function_decl)
456 mark_all_vars_used (&DECL_INITIAL (t));
457 }
458 /* remove_unused_scope_block_p requires information about labels
459 which are not DECL_IGNORED_P to tell if they might be used in the IL. */
460 else if (TREE_CODE (t) == LABEL_DECL)
461 /* Although the TREE_USED values that the frontend uses would be
462 acceptable (albeit slightly over-conservative) for our purposes,
463 init_vars_expansion clears TREE_USED for LABEL_DECLs too, so we
464 must re-compute it here. */
465 TREE_USED (t) = 1;
466
467 if (IS_TYPE_OR_DECL_P (t))
468 *walk_subtrees = 0;
469
470 return NULL;
471 }
472
473 /* Mark the scope block SCOPE and its subblocks unused when they can be
474 possibly eliminated if dead. */
475
476 static void
477 mark_scope_block_unused (tree scope)
478 {
479 tree t;
480 TREE_USED (scope) = false;
481 if (!(*debug_hooks->ignore_block) (scope))
482 TREE_USED (scope) = true;
483 for (t = BLOCK_SUBBLOCKS (scope); t ; t = BLOCK_CHAIN (t))
484 mark_scope_block_unused (t);
485 }
486
487 /* Look if the block is dead (by possibly eliminating its dead subblocks)
488 and return true if so.
489 Block is declared dead if:
490 1) No statements are associated with it.
491 2) Declares no live variables
492 3) All subblocks are dead
493 or there is precisely one subblocks and the block
494 has same abstract origin as outer block and declares
495 no variables, so it is pure wrapper.
496 When we are not outputting full debug info, we also eliminate dead variables
497 out of scope blocks to let them to be recycled by GGC and to save copying work
498 done by the inliner. */
499
500 static bool
501 remove_unused_scope_block_p (tree scope, bool in_ctor_dtor_block)
502 {
503 tree *t, *next;
504 bool unused = !TREE_USED (scope);
505 int nsubblocks = 0;
506
507 /* For ipa-polymorphic-call.c purposes, preserve blocks:
508 1) with BLOCK_ABSTRACT_ORIGIN of a ctor/dtor or their clones */
509 if (inlined_polymorphic_ctor_dtor_block_p (scope, true))
510 {
511 in_ctor_dtor_block = true;
512 unused = false;
513 }
514 /* 2) inside such blocks, the outermost block with BLOCK_ABSTRACT_ORIGIN
515 being a FUNCTION_DECL. */
516 else if (in_ctor_dtor_block
517 && BLOCK_ABSTRACT_ORIGIN (scope)
518 && TREE_CODE (BLOCK_ABSTRACT_ORIGIN (scope)) == FUNCTION_DECL)
519 {
520 in_ctor_dtor_block = false;
521 unused = false;
522 }
523
524 for (t = &BLOCK_VARS (scope); *t; t = next)
525 {
526 next = &DECL_CHAIN (*t);
527
528 /* Debug info of nested function refers to the block of the
529 function. We might stil call it even if all statements
530 of function it was nested into was elliminated.
531
532 TODO: We can actually look into cgraph to see if function
533 will be output to file. */
534 if (TREE_CODE (*t) == FUNCTION_DECL)
535 unused = false;
536
537 /* If a decl has a value expr, we need to instantiate it
538 regardless of debug info generation, to avoid codegen
539 differences in memory overlap tests. update_equiv_regs() may
540 indirectly call validate_equiv_mem() to test whether a
541 SET_DEST overlaps with others, and if the value expr changes
542 by virtual register instantiation, we may get end up with
543 different results. */
544 else if (TREE_CODE (*t) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (*t))
545 unused = false;
546
547 /* Remove everything we don't generate debug info for. */
548 else if (DECL_IGNORED_P (*t))
549 {
550 *t = DECL_CHAIN (*t);
551 next = t;
552 }
553
554 /* When we are outputting debug info, we usually want to output
555 info about optimized-out variables in the scope blocks.
556 Exception are the scope blocks not containing any instructions
557 at all so user can't get into the scopes at first place. */
558 else if (is_used_p (*t))
559 unused = false;
560 else if (TREE_CODE (*t) == LABEL_DECL && TREE_USED (*t))
561 /* For labels that are still used in the IL, the decision to
562 preserve them must not depend DEBUG_INFO_LEVEL, otherwise we
563 risk having different ordering in debug vs. non-debug builds
564 during inlining or versioning.
565 A label appearing here (we have already checked DECL_IGNORED_P)
566 should not be used in the IL unless it has been explicitly used
567 before, so we use TREE_USED as an approximation. */
568 /* In principle, we should do the same here as for the debug case
569 below, however, when debugging, there might be additional nested
570 levels that keep an upper level with a label live, so we have to
571 force this block to be considered used, too. */
572 unused = false;
573
574 /* When we are not doing full debug info, we however can keep around
575 only the used variables for cfgexpand's memory packing saving quite
576 a lot of memory.
577
578 For sake of -g3, we keep around those vars but we don't count this as
579 use of block, so innermost block with no used vars and no instructions
580 can be considered dead. We only want to keep around blocks user can
581 breakpoint into and ask about value of optimized out variables.
582
583 Similarly we need to keep around types at least until all
584 variables of all nested blocks are gone. We track no
585 information on whether given type is used or not, so we have
586 to keep them even when not emitting debug information,
587 otherwise we may end up remapping variables and their (local)
588 types in different orders depending on whether debug
589 information is being generated. */
590
591 else if (TREE_CODE (*t) == TYPE_DECL
592 || debug_info_level == DINFO_LEVEL_NORMAL
593 || debug_info_level == DINFO_LEVEL_VERBOSE)
594 ;
595 else
596 {
597 *t = DECL_CHAIN (*t);
598 next = t;
599 }
600 }
601
602 for (t = &BLOCK_SUBBLOCKS (scope); *t ;)
603 if (remove_unused_scope_block_p (*t, in_ctor_dtor_block))
604 {
605 if (BLOCK_SUBBLOCKS (*t))
606 {
607 tree next = BLOCK_CHAIN (*t);
608 tree supercontext = BLOCK_SUPERCONTEXT (*t);
609
610 *t = BLOCK_SUBBLOCKS (*t);
611 while (BLOCK_CHAIN (*t))
612 {
613 BLOCK_SUPERCONTEXT (*t) = supercontext;
614 t = &BLOCK_CHAIN (*t);
615 }
616 BLOCK_CHAIN (*t) = next;
617 BLOCK_SUPERCONTEXT (*t) = supercontext;
618 t = &BLOCK_CHAIN (*t);
619 nsubblocks ++;
620 }
621 else
622 *t = BLOCK_CHAIN (*t);
623 }
624 else
625 {
626 t = &BLOCK_CHAIN (*t);
627 nsubblocks ++;
628 }
629
630
631 if (!unused)
632 ;
633 /* Outer scope is always used. */
634 else if (!BLOCK_SUPERCONTEXT (scope)
635 || TREE_CODE (BLOCK_SUPERCONTEXT (scope)) == FUNCTION_DECL)
636 unused = false;
637 /* Innermost blocks with no live variables nor statements can be always
638 eliminated. */
639 else if (!nsubblocks)
640 ;
641 /* When not generating debug info we can eliminate info on unused
642 variables. */
643 else if (!flag_auto_profile && debug_info_level == DINFO_LEVEL_NONE)
644 {
645 /* Even for -g0 don't prune outer scopes from artificial
646 functions, otherwise diagnostics using tree_nonartificial_location
647 will not be emitted properly. */
648 if (inlined_function_outer_scope_p (scope))
649 {
650 tree ao = scope;
651
652 while (ao
653 && TREE_CODE (ao) == BLOCK
654 && BLOCK_ABSTRACT_ORIGIN (ao) != ao)
655 ao = BLOCK_ABSTRACT_ORIGIN (ao);
656 if (ao
657 && TREE_CODE (ao) == FUNCTION_DECL
658 && DECL_DECLARED_INLINE_P (ao)
659 && lookup_attribute ("artificial", DECL_ATTRIBUTES (ao)))
660 unused = false;
661 }
662 }
663 else if (BLOCK_VARS (scope) || BLOCK_NUM_NONLOCALIZED_VARS (scope))
664 unused = false;
665 /* See if this block is important for representation of inlined function.
666 Inlined functions are always represented by block with
667 block_ultimate_origin being set to FUNCTION_DECL and DECL_SOURCE_LOCATION
668 set... */
669 else if (inlined_function_outer_scope_p (scope))
670 unused = false;
671 else
672 /* Verfify that only blocks with source location set
673 are entry points to the inlined functions. */
674 gcc_assert (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (scope))
675 == UNKNOWN_LOCATION);
676
677 TREE_USED (scope) = !unused;
678 return unused;
679 }
680
681 /* Mark all VAR_DECLS under *EXPR_P as used, so that they won't be
682 eliminated during the tree->rtl conversion process. */
683
684 static inline void
685 mark_all_vars_used (tree *expr_p)
686 {
687 walk_tree (expr_p, mark_all_vars_used_1, NULL, NULL);
688 }
689
690 /* Helper function for clear_unused_block_pointer, called via walk_tree. */
691
692 static tree
693 clear_unused_block_pointer_1 (tree *tp, int *, void *)
694 {
695 if (EXPR_P (*tp) && TREE_BLOCK (*tp)
696 && !TREE_USED (TREE_BLOCK (*tp)))
697 TREE_SET_BLOCK (*tp, NULL);
698 return NULL_TREE;
699 }
700
701 /* Set all block pointer in debug or clobber stmt to NULL if the block
702 is unused, so that they will not be streamed out. */
703
704 static void
705 clear_unused_block_pointer (void)
706 {
707 basic_block bb;
708 gimple_stmt_iterator gsi;
709
710 FOR_EACH_BB_FN (bb, cfun)
711 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
712 {
713 unsigned i;
714 tree b;
715 gimple stmt = gsi_stmt (gsi);
716
717 if (!is_gimple_debug (stmt) && !gimple_clobber_p (stmt))
718 continue;
719 b = gimple_block (stmt);
720 if (b && !TREE_USED (b))
721 gimple_set_block (stmt, NULL);
722 for (i = 0; i < gimple_num_ops (stmt); i++)
723 walk_tree (gimple_op_ptr (stmt, i), clear_unused_block_pointer_1,
724 NULL, NULL);
725 }
726 }
727
728 /* Dump scope blocks starting at SCOPE to FILE. INDENT is the
729 indentation level and FLAGS is as in print_generic_expr. */
730
731 static void
732 dump_scope_block (FILE *file, int indent, tree scope, int flags)
733 {
734 tree var, t;
735 unsigned int i;
736
737 fprintf (file, "\n%*s{ Scope block #%i%s%s",indent, "" , BLOCK_NUMBER (scope),
738 TREE_USED (scope) ? "" : " (unused)",
739 BLOCK_ABSTRACT (scope) ? " (abstract)": "");
740 if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (scope)) != UNKNOWN_LOCATION)
741 {
742 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (scope));
743 fprintf (file, " %s:%i", s.file, s.line);
744 }
745 if (BLOCK_ABSTRACT_ORIGIN (scope))
746 {
747 tree origin = block_ultimate_origin (scope);
748 if (origin)
749 {
750 fprintf (file, " Originating from :");
751 if (DECL_P (origin))
752 print_generic_decl (file, origin, flags);
753 else
754 fprintf (file, "#%i", BLOCK_NUMBER (origin));
755 }
756 }
757 fprintf (file, " \n");
758 for (var = BLOCK_VARS (scope); var; var = DECL_CHAIN (var))
759 {
760 fprintf (file, "%*s", indent, "");
761 print_generic_decl (file, var, flags);
762 fprintf (file, "\n");
763 }
764 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (scope); i++)
765 {
766 fprintf (file, "%*s",indent, "");
767 print_generic_decl (file, BLOCK_NONLOCALIZED_VAR (scope, i),
768 flags);
769 fprintf (file, " (nonlocalized)\n");
770 }
771 for (t = BLOCK_SUBBLOCKS (scope); t ; t = BLOCK_CHAIN (t))
772 dump_scope_block (file, indent + 2, t, flags);
773 fprintf (file, "\n%*s}\n",indent, "");
774 }
775
776 /* Dump the tree of lexical scopes starting at SCOPE to stderr. FLAGS
777 is as in print_generic_expr. */
778
779 DEBUG_FUNCTION void
780 debug_scope_block (tree scope, int flags)
781 {
782 dump_scope_block (stderr, 0, scope, flags);
783 }
784
785
786 /* Dump the tree of lexical scopes of current_function_decl to FILE.
787 FLAGS is as in print_generic_expr. */
788
789 void
790 dump_scope_blocks (FILE *file, int flags)
791 {
792 dump_scope_block (file, 0, DECL_INITIAL (current_function_decl), flags);
793 }
794
795
796 /* Dump the tree of lexical scopes of current_function_decl to stderr.
797 FLAGS is as in print_generic_expr. */
798
799 DEBUG_FUNCTION void
800 debug_scope_blocks (int flags)
801 {
802 dump_scope_blocks (stderr, flags);
803 }
804
805 /* Remove local variables that are not referenced in the IL. */
806
807 void
808 remove_unused_locals (void)
809 {
810 basic_block bb;
811 tree var;
812 unsigned srcidx, dstidx, num;
813 bool have_local_clobbers = false;
814
815 /* Removing declarations from lexical blocks when not optimizing is
816 not only a waste of time, it actually causes differences in stack
817 layout. */
818 if (!optimize)
819 return;
820
821 timevar_push (TV_REMOVE_UNUSED);
822
823 mark_scope_block_unused (DECL_INITIAL (current_function_decl));
824
825 usedvars = BITMAP_ALLOC (NULL);
826
827 /* Walk the CFG marking all referenced symbols. */
828 FOR_EACH_BB_FN (bb, cfun)
829 {
830 gimple_stmt_iterator gsi;
831 size_t i;
832 edge_iterator ei;
833 edge e;
834
835 /* Walk the statements. */
836 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
837 {
838 gimple stmt = gsi_stmt (gsi);
839 tree b = gimple_block (stmt);
840
841 if (is_gimple_debug (stmt))
842 continue;
843
844 if (gimple_clobber_p (stmt))
845 {
846 have_local_clobbers = true;
847 continue;
848 }
849
850 if (b)
851 TREE_USED (b) = true;
852
853 for (i = 0; i < gimple_num_ops (stmt); i++)
854 mark_all_vars_used (gimple_op_ptr (gsi_stmt (gsi), i));
855 }
856
857 for (gphi_iterator gpi = gsi_start_phis (bb);
858 !gsi_end_p (gpi);
859 gsi_next (&gpi))
860 {
861 use_operand_p arg_p;
862 ssa_op_iter i;
863 tree def;
864 gphi *phi = gpi.phi ();
865
866 if (virtual_operand_p (gimple_phi_result (phi)))
867 continue;
868
869 def = gimple_phi_result (phi);
870 mark_all_vars_used (&def);
871
872 FOR_EACH_PHI_ARG (arg_p, phi, i, SSA_OP_ALL_USES)
873 {
874 tree arg = USE_FROM_PTR (arg_p);
875 int index = PHI_ARG_INDEX_FROM_USE (arg_p);
876 tree block =
877 LOCATION_BLOCK (gimple_phi_arg_location (phi, index));
878 if (block != NULL)
879 TREE_USED (block) = true;
880 mark_all_vars_used (&arg);
881 }
882 }
883
884 FOR_EACH_EDGE (e, ei, bb->succs)
885 if (LOCATION_BLOCK (e->goto_locus) != NULL)
886 TREE_USED (LOCATION_BLOCK (e->goto_locus)) = true;
887 }
888
889 /* We do a two-pass approach about the out-of-scope clobbers. We want
890 to remove them if they are the only references to a local variable,
891 but we want to retain them when there's any other. So the first pass
892 ignores them, and the second pass (if there were any) tries to remove
893 them. */
894 if (have_local_clobbers)
895 FOR_EACH_BB_FN (bb, cfun)
896 {
897 gimple_stmt_iterator gsi;
898
899 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi);)
900 {
901 gimple stmt = gsi_stmt (gsi);
902 tree b = gimple_block (stmt);
903
904 if (gimple_clobber_p (stmt))
905 {
906 tree lhs = gimple_assign_lhs (stmt);
907 tree base = get_base_address (lhs);
908 /* Remove clobbers referencing unused vars, or clobbers
909 with MEM_REF lhs referencing uninitialized pointers. */
910 if ((TREE_CODE (base) == VAR_DECL && !is_used_p (base))
911 || (TREE_CODE (lhs) == MEM_REF
912 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME
913 && SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs, 0))
914 && (TREE_CODE (SSA_NAME_VAR (TREE_OPERAND (lhs, 0)))
915 != PARM_DECL)))
916 {
917 unlink_stmt_vdef (stmt);
918 gsi_remove (&gsi, true);
919 release_defs (stmt);
920 continue;
921 }
922 if (b)
923 TREE_USED (b) = true;
924 }
925 gsi_next (&gsi);
926 }
927 }
928
929 cfun->has_local_explicit_reg_vars = false;
930
931 /* Remove unmarked local and global vars from local_decls. */
932 num = vec_safe_length (cfun->local_decls);
933 for (srcidx = 0, dstidx = 0; srcidx < num; srcidx++)
934 {
935 var = (*cfun->local_decls)[srcidx];
936 if (TREE_CODE (var) == VAR_DECL)
937 {
938 if (!is_used_p (var))
939 {
940 tree def;
941 if (cfun->nonlocal_goto_save_area
942 && TREE_OPERAND (cfun->nonlocal_goto_save_area, 0) == var)
943 cfun->nonlocal_goto_save_area = NULL;
944 /* Release any default def associated with var. */
945 if ((def = ssa_default_def (cfun, var)) != NULL_TREE)
946 {
947 set_ssa_default_def (cfun, var, NULL_TREE);
948 release_ssa_name (def);
949 }
950 continue;
951 }
952 }
953 if (TREE_CODE (var) == VAR_DECL
954 && DECL_HARD_REGISTER (var)
955 && !is_global_var (var))
956 cfun->has_local_explicit_reg_vars = true;
957
958 if (srcidx != dstidx)
959 (*cfun->local_decls)[dstidx] = var;
960 dstidx++;
961 }
962 if (dstidx != num)
963 {
964 statistics_counter_event (cfun, "unused VAR_DECLs removed", num - dstidx);
965 cfun->local_decls->truncate (dstidx);
966 }
967
968 remove_unused_scope_block_p (DECL_INITIAL (current_function_decl), false);
969 clear_unused_block_pointer ();
970
971 BITMAP_FREE (usedvars);
972
973 if (dump_file && (dump_flags & TDF_DETAILS))
974 {
975 fprintf (dump_file, "Scope blocks after cleanups:\n");
976 dump_scope_blocks (dump_file, dump_flags);
977 }
978
979 timevar_pop (TV_REMOVE_UNUSED);
980 }
981
982 /* Allocate and return a new live range information object base on MAP. */
983
984 static tree_live_info_p
985 new_tree_live_info (var_map map)
986 {
987 tree_live_info_p live;
988 basic_block bb;
989
990 live = XNEW (struct tree_live_info_d);
991 live->map = map;
992 live->num_blocks = last_basic_block_for_fn (cfun);
993
994 bitmap_obstack_initialize (&live->livein_obstack);
995 bitmap_obstack_initialize (&live->liveout_obstack);
996 live->livein = XNEWVEC (bitmap_head, last_basic_block_for_fn (cfun));
997 FOR_EACH_BB_FN (bb, cfun)
998 bitmap_initialize (&live->livein[bb->index], &live->livein_obstack);
999
1000 live->liveout = XNEWVEC (bitmap_head, last_basic_block_for_fn (cfun));
1001 FOR_EACH_BB_FN (bb, cfun)
1002 bitmap_initialize (&live->liveout[bb->index], &live->liveout_obstack);
1003
1004 live->work_stack = XNEWVEC (int, last_basic_block_for_fn (cfun));
1005 live->stack_top = live->work_stack;
1006
1007 live->global = BITMAP_ALLOC (NULL);
1008 return live;
1009 }
1010
1011
1012 /* Free storage for live range info object LIVE. */
1013
1014 void
1015 delete_tree_live_info (tree_live_info_p live)
1016 {
1017 if (live->livein)
1018 {
1019 bitmap_obstack_release (&live->livein_obstack);
1020 free (live->livein);
1021 }
1022 if (live->liveout)
1023 {
1024 bitmap_obstack_release (&live->liveout_obstack);
1025 free (live->liveout);
1026 }
1027 BITMAP_FREE (live->global);
1028 free (live->work_stack);
1029 free (live);
1030 }
1031
1032
1033 /* Visit basic block BB and propagate any required live on entry bits from
1034 LIVE into the predecessors. VISITED is the bitmap of visited blocks.
1035 TMP is a temporary work bitmap which is passed in to avoid reallocating
1036 it each time. */
1037
1038 static void
1039 loe_visit_block (tree_live_info_p live, basic_block bb, sbitmap visited)
1040 {
1041 edge e;
1042 bool change;
1043 edge_iterator ei;
1044 basic_block pred_bb;
1045 bitmap loe;
1046
1047 gcc_checking_assert (!bitmap_bit_p (visited, bb->index));
1048 bitmap_set_bit (visited, bb->index);
1049
1050 loe = live_on_entry (live, bb);
1051
1052 FOR_EACH_EDGE (e, ei, bb->preds)
1053 {
1054 pred_bb = e->src;
1055 if (pred_bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1056 continue;
1057 /* Variables live-on-entry from BB that aren't defined in the
1058 predecessor block. This should be the live on entry vars to pred.
1059 Note that liveout is the DEFs in a block while live on entry is
1060 being calculated.
1061 Add these bits to live-on-entry for the pred. if there are any
1062 changes, and pred_bb has been visited already, add it to the
1063 revisit stack. */
1064 change = bitmap_ior_and_compl_into (live_on_entry (live, pred_bb),
1065 loe, &live->liveout[pred_bb->index]);
1066 if (change
1067 && bitmap_bit_p (visited, pred_bb->index))
1068 {
1069 bitmap_clear_bit (visited, pred_bb->index);
1070 *(live->stack_top)++ = pred_bb->index;
1071 }
1072 }
1073 }
1074
1075
1076 /* Using LIVE, fill in all the live-on-entry blocks between the defs and uses
1077 of all the variables. */
1078
1079 static void
1080 live_worklist (tree_live_info_p live)
1081 {
1082 unsigned b;
1083 basic_block bb;
1084 sbitmap visited = sbitmap_alloc (last_basic_block_for_fn (cfun) + 1);
1085
1086 bitmap_clear (visited);
1087
1088 /* Visit all the blocks in reverse order and propagate live on entry values
1089 into the predecessors blocks. */
1090 FOR_EACH_BB_REVERSE_FN (bb, cfun)
1091 loe_visit_block (live, bb, visited);
1092
1093 /* Process any blocks which require further iteration. */
1094 while (live->stack_top != live->work_stack)
1095 {
1096 b = *--(live->stack_top);
1097 loe_visit_block (live, BASIC_BLOCK_FOR_FN (cfun, b), visited);
1098 }
1099
1100 sbitmap_free (visited);
1101 }
1102
1103
1104 /* Calculate the initial live on entry vector for SSA_NAME using immediate_use
1105 links. Set the live on entry fields in LIVE. Def's are marked temporarily
1106 in the liveout vector. */
1107
1108 static void
1109 set_var_live_on_entry (tree ssa_name, tree_live_info_p live)
1110 {
1111 int p;
1112 gimple stmt;
1113 use_operand_p use;
1114 basic_block def_bb = NULL;
1115 imm_use_iterator imm_iter;
1116 bool global = false;
1117
1118 p = var_to_partition (live->map, ssa_name);
1119 if (p == NO_PARTITION)
1120 return;
1121
1122 stmt = SSA_NAME_DEF_STMT (ssa_name);
1123 if (stmt)
1124 {
1125 def_bb = gimple_bb (stmt);
1126 /* Mark defs in liveout bitmap temporarily. */
1127 if (def_bb)
1128 bitmap_set_bit (&live->liveout[def_bb->index], p);
1129 }
1130 else
1131 def_bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1132
1133 /* An undefined local variable does not need to be very alive. */
1134 if (ssa_undefined_value_p (ssa_name, false))
1135 return;
1136
1137 /* Visit each use of SSA_NAME and if it isn't in the same block as the def,
1138 add it to the list of live on entry blocks. */
1139 FOR_EACH_IMM_USE_FAST (use, imm_iter, ssa_name)
1140 {
1141 gimple use_stmt = USE_STMT (use);
1142 basic_block add_block = NULL;
1143
1144 if (gimple_code (use_stmt) == GIMPLE_PHI)
1145 {
1146 /* Uses in PHI's are considered to be live at exit of the SRC block
1147 as this is where a copy would be inserted. Check to see if it is
1148 defined in that block, or whether its live on entry. */
1149 int index = PHI_ARG_INDEX_FROM_USE (use);
1150 edge e = gimple_phi_arg_edge (as_a <gphi *> (use_stmt), index);
1151 if (e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun))
1152 {
1153 if (e->src != def_bb)
1154 add_block = e->src;
1155 }
1156 }
1157 else if (is_gimple_debug (use_stmt))
1158 continue;
1159 else
1160 {
1161 /* If its not defined in this block, its live on entry. */
1162 basic_block use_bb = gimple_bb (use_stmt);
1163 if (use_bb != def_bb)
1164 add_block = use_bb;
1165 }
1166
1167 /* If there was a live on entry use, set the bit. */
1168 if (add_block)
1169 {
1170 global = true;
1171 bitmap_set_bit (&live->livein[add_block->index], p);
1172 }
1173 }
1174
1175 /* If SSA_NAME is live on entry to at least one block, fill in all the live
1176 on entry blocks between the def and all the uses. */
1177 if (global)
1178 bitmap_set_bit (live->global, p);
1179 }
1180
1181
1182 /* Calculate the live on exit vectors based on the entry info in LIVEINFO. */
1183
1184 static void
1185 calculate_live_on_exit (tree_live_info_p liveinfo)
1186 {
1187 basic_block bb;
1188 edge e;
1189 edge_iterator ei;
1190
1191 /* live on entry calculations used liveout vectors for defs, clear them. */
1192 FOR_EACH_BB_FN (bb, cfun)
1193 bitmap_clear (&liveinfo->liveout[bb->index]);
1194
1195 /* Set all the live-on-exit bits for uses in PHIs. */
1196 FOR_EACH_BB_FN (bb, cfun)
1197 {
1198 gphi_iterator gsi;
1199 size_t i;
1200
1201 /* Mark the PHI arguments which are live on exit to the pred block. */
1202 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1203 {
1204 gphi *phi = gsi.phi ();
1205 for (i = 0; i < gimple_phi_num_args (phi); i++)
1206 {
1207 tree t = PHI_ARG_DEF (phi, i);
1208 int p;
1209
1210 if (TREE_CODE (t) != SSA_NAME)
1211 continue;
1212
1213 p = var_to_partition (liveinfo->map, t);
1214 if (p == NO_PARTITION)
1215 continue;
1216 e = gimple_phi_arg_edge (phi, i);
1217 if (e->src != ENTRY_BLOCK_PTR_FOR_FN (cfun))
1218 bitmap_set_bit (&liveinfo->liveout[e->src->index], p);
1219 }
1220 }
1221
1222 /* Add each successors live on entry to this bock live on exit. */
1223 FOR_EACH_EDGE (e, ei, bb->succs)
1224 if (e->dest != EXIT_BLOCK_PTR_FOR_FN (cfun))
1225 bitmap_ior_into (&liveinfo->liveout[bb->index],
1226 live_on_entry (liveinfo, e->dest));
1227 }
1228 }
1229
1230
1231 /* Given partition map MAP, calculate all the live on entry bitmaps for
1232 each partition. Return a new live info object. */
1233
1234 tree_live_info_p
1235 calculate_live_ranges (var_map map, bool want_livein)
1236 {
1237 tree var;
1238 unsigned i;
1239 tree_live_info_p live;
1240
1241 live = new_tree_live_info (map);
1242 for (i = 0; i < num_var_partitions (map); i++)
1243 {
1244 var = partition_to_var (map, i);
1245 if (var != NULL_TREE)
1246 set_var_live_on_entry (var, live);
1247 }
1248
1249 live_worklist (live);
1250
1251 #ifdef ENABLE_CHECKING
1252 verify_live_on_entry (live);
1253 #endif
1254
1255 calculate_live_on_exit (live);
1256
1257 if (!want_livein)
1258 {
1259 bitmap_obstack_release (&live->livein_obstack);
1260 free (live->livein);
1261 live->livein = NULL;
1262 }
1263
1264 return live;
1265 }
1266
1267
1268 /* Output partition map MAP to file F. */
1269
1270 void
1271 dump_var_map (FILE *f, var_map map)
1272 {
1273 int t;
1274 unsigned x, y;
1275 int p;
1276
1277 fprintf (f, "\nPartition map \n\n");
1278
1279 for (x = 0; x < map->num_partitions; x++)
1280 {
1281 if (map->view_to_partition != NULL)
1282 p = map->view_to_partition[x];
1283 else
1284 p = x;
1285
1286 if (ssa_name (p) == NULL_TREE
1287 || virtual_operand_p (ssa_name (p)))
1288 continue;
1289
1290 t = 0;
1291 for (y = 1; y < num_ssa_names; y++)
1292 {
1293 p = partition_find (map->var_partition, y);
1294 if (map->partition_to_view)
1295 p = map->partition_to_view[p];
1296 if (p == (int)x)
1297 {
1298 if (t++ == 0)
1299 {
1300 fprintf (f, "Partition %d (", x);
1301 print_generic_expr (f, partition_to_var (map, p), TDF_SLIM);
1302 fprintf (f, " - ");
1303 }
1304 fprintf (f, "%d ", y);
1305 }
1306 }
1307 if (t != 0)
1308 fprintf (f, ")\n");
1309 }
1310 fprintf (f, "\n");
1311 }
1312
1313
1314 /* Generic dump for the above. */
1315
1316 DEBUG_FUNCTION void
1317 debug (_var_map &ref)
1318 {
1319 dump_var_map (stderr, &ref);
1320 }
1321
1322 DEBUG_FUNCTION void
1323 debug (_var_map *ptr)
1324 {
1325 if (ptr)
1326 debug (*ptr);
1327 else
1328 fprintf (stderr, "<nil>\n");
1329 }
1330
1331
1332 /* Output live range info LIVE to file F, controlled by FLAG. */
1333
1334 void
1335 dump_live_info (FILE *f, tree_live_info_p live, int flag)
1336 {
1337 basic_block bb;
1338 unsigned i;
1339 var_map map = live->map;
1340 bitmap_iterator bi;
1341
1342 if ((flag & LIVEDUMP_ENTRY) && live->livein)
1343 {
1344 FOR_EACH_BB_FN (bb, cfun)
1345 {
1346 fprintf (f, "\nLive on entry to BB%d : ", bb->index);
1347 EXECUTE_IF_SET_IN_BITMAP (&live->livein[bb->index], 0, i, bi)
1348 {
1349 print_generic_expr (f, partition_to_var (map, i), TDF_SLIM);
1350 fprintf (f, " ");
1351 }
1352 fprintf (f, "\n");
1353 }
1354 }
1355
1356 if ((flag & LIVEDUMP_EXIT) && live->liveout)
1357 {
1358 FOR_EACH_BB_FN (bb, cfun)
1359 {
1360 fprintf (f, "\nLive on exit from BB%d : ", bb->index);
1361 EXECUTE_IF_SET_IN_BITMAP (&live->liveout[bb->index], 0, i, bi)
1362 {
1363 print_generic_expr (f, partition_to_var (map, i), TDF_SLIM);
1364 fprintf (f, " ");
1365 }
1366 fprintf (f, "\n");
1367 }
1368 }
1369 }
1370
1371
1372 /* Generic dump for the above. */
1373
1374 DEBUG_FUNCTION void
1375 debug (tree_live_info_d &ref)
1376 {
1377 dump_live_info (stderr, &ref, 0);
1378 }
1379
1380 DEBUG_FUNCTION void
1381 debug (tree_live_info_d *ptr)
1382 {
1383 if (ptr)
1384 debug (*ptr);
1385 else
1386 fprintf (stderr, "<nil>\n");
1387 }
1388
1389
1390 #ifdef ENABLE_CHECKING
1391 /* Verify that SSA_VAR is a non-virtual SSA_NAME. */
1392
1393 void
1394 register_ssa_partition_check (tree ssa_var)
1395 {
1396 gcc_assert (TREE_CODE (ssa_var) == SSA_NAME);
1397 if (virtual_operand_p (ssa_var))
1398 {
1399 fprintf (stderr, "Illegally registering a virtual SSA name :");
1400 print_generic_expr (stderr, ssa_var, TDF_SLIM);
1401 fprintf (stderr, " in the SSA->Normal phase.\n");
1402 internal_error ("SSA corruption");
1403 }
1404 }
1405
1406
1407 /* Verify that the info in LIVE matches the current cfg. */
1408
1409 static void
1410 verify_live_on_entry (tree_live_info_p live)
1411 {
1412 unsigned i;
1413 tree var;
1414 gimple stmt;
1415 basic_block bb;
1416 edge e;
1417 int num;
1418 edge_iterator ei;
1419 var_map map = live->map;
1420
1421 /* Check for live on entry partitions and report those with a DEF in
1422 the program. This will typically mean an optimization has done
1423 something wrong. */
1424 bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1425 num = 0;
1426 FOR_EACH_EDGE (e, ei, bb->succs)
1427 {
1428 int entry_block = e->dest->index;
1429 if (e->dest == EXIT_BLOCK_PTR_FOR_FN (cfun))
1430 continue;
1431 for (i = 0; i < (unsigned)num_var_partitions (map); i++)
1432 {
1433 basic_block tmp;
1434 tree d = NULL_TREE;
1435 bitmap loe;
1436 var = partition_to_var (map, i);
1437 stmt = SSA_NAME_DEF_STMT (var);
1438 tmp = gimple_bb (stmt);
1439 if (SSA_NAME_VAR (var))
1440 d = ssa_default_def (cfun, SSA_NAME_VAR (var));
1441
1442 loe = live_on_entry (live, e->dest);
1443 if (loe && bitmap_bit_p (loe, i))
1444 {
1445 if (!gimple_nop_p (stmt))
1446 {
1447 num++;
1448 print_generic_expr (stderr, var, TDF_SLIM);
1449 fprintf (stderr, " is defined ");
1450 if (tmp)
1451 fprintf (stderr, " in BB%d, ", tmp->index);
1452 fprintf (stderr, "by:\n");
1453 print_gimple_stmt (stderr, stmt, 0, TDF_SLIM);
1454 fprintf (stderr, "\nIt is also live-on-entry to entry BB %d",
1455 entry_block);
1456 fprintf (stderr, " So it appears to have multiple defs.\n");
1457 }
1458 else
1459 {
1460 if (d != var)
1461 {
1462 num++;
1463 print_generic_expr (stderr, var, TDF_SLIM);
1464 fprintf (stderr, " is live-on-entry to BB%d ",
1465 entry_block);
1466 if (d)
1467 {
1468 fprintf (stderr, " but is not the default def of ");
1469 print_generic_expr (stderr, d, TDF_SLIM);
1470 fprintf (stderr, "\n");
1471 }
1472 else
1473 fprintf (stderr, " and there is no default def.\n");
1474 }
1475 }
1476 }
1477 else
1478 if (d == var)
1479 {
1480 /* An undefined local variable does not need to be very
1481 alive. */
1482 if (ssa_undefined_value_p (var, false))
1483 continue;
1484
1485 /* The only way this var shouldn't be marked live on entry is
1486 if it occurs in a PHI argument of the block. */
1487 size_t z;
1488 bool ok = false;
1489 gphi_iterator gsi;
1490 for (gsi = gsi_start_phis (e->dest);
1491 !gsi_end_p (gsi) && !ok;
1492 gsi_next (&gsi))
1493 {
1494 gphi *phi = gsi.phi ();
1495 for (z = 0; z < gimple_phi_num_args (phi); z++)
1496 if (var == gimple_phi_arg_def (phi, z))
1497 {
1498 ok = true;
1499 break;
1500 }
1501 }
1502 if (ok)
1503 continue;
1504 num++;
1505 print_generic_expr (stderr, var, TDF_SLIM);
1506 fprintf (stderr, " is not marked live-on-entry to entry BB%d ",
1507 entry_block);
1508 fprintf (stderr, "but it is a default def so it should be.\n");
1509 }
1510 }
1511 }
1512 gcc_assert (num <= 0);
1513 }
1514 #endif