1 /* Liveness for SSA trees.
2 Copyright (C) 2003-2023 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
5 This file is part of GCC.
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)
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.
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/>. */
23 #include "coretypes.h"
31 #include "gimple-pretty-print.h"
32 #include "diagnostic-core.h"
33 #include "gimple-iterator.h"
36 #include "tree-ssa-live.h"
39 #include "ipa-utils.h"
41 #include "stringpool.h"
44 #include "gimple-walk.h"
48 static void verify_live_on_entry (tree_live_info_p
);
51 /* VARMAP maintains a mapping from SSA version number to real variables.
53 All SSA_NAMES are divided into partitions. Initially each ssa_name is the
54 only member of it's own partition. Coalescing will attempt to group any
55 ssa_names which occur in a copy or in a PHI node into the same partition.
57 At the end of out-of-ssa, each partition becomes a "real" variable and is
58 rewritten as a compiler variable.
60 The var_map data structure is used to manage these partitions. It allows
61 partitions to be combined, and determines which partition belongs to what
62 ssa_name or variable, and vice versa. */
65 /* Remove the base table in MAP. */
68 var_map_base_fini (var_map map
)
70 /* Free the basevar info if it is present. */
71 if (map
->partition_to_base_index
!= NULL
)
73 free (map
->partition_to_base_index
);
74 map
->partition_to_base_index
= NULL
;
75 map
->num_basevars
= 0;
78 /* Create a variable partition map of SIZE for region, initialize and return
79 it. Region is a loop if LOOP is non-NULL, otherwise is the current
80 function. If BITINT is non-NULL, only SSA_NAMEs from that bitmap
84 init_var_map (int size
, class loop
*loop
, bitmap bitint
)
88 map
= (var_map
) xmalloc (sizeof (struct _var_map
));
89 map
->var_partition
= partition_new (size
);
91 map
->partition_to_view
= NULL
;
92 map
->view_to_partition
= NULL
;
93 map
->num_partitions
= size
;
94 map
->partition_size
= size
;
95 map
->num_basevars
= 0;
96 map
->partition_to_base_index
= NULL
;
100 map
->bmp_bbs
= BITMAP_ALLOC (NULL
);
101 map
->outofssa_p
= false;
102 basic_block
*bbs
= get_loop_body_in_dom_order (loop
);
103 for (unsigned i
= 0; i
< loop
->num_nodes
; ++i
)
105 bitmap_set_bit (map
->bmp_bbs
, bbs
[i
]->index
);
106 map
->vec_bbs
.safe_push (bbs
[i
]);
113 map
->outofssa_p
= bitint
== NULL
;
114 map
->bitint
= bitint
;
116 FOR_EACH_BB_FN (bb
, cfun
)
117 map
->vec_bbs
.safe_push (bb
);
123 /* Free memory associated with MAP. */
126 delete_var_map (var_map map
)
128 var_map_base_fini (map
);
129 partition_delete (map
->var_partition
);
130 free (map
->partition_to_view
);
131 free (map
->view_to_partition
);
133 BITMAP_FREE (map
->bmp_bbs
);
134 map
->vec_bbs
.release ();
139 /* This function will combine the partitions in MAP for VAR1 and VAR2. It
140 Returns the partition which represents the new partition. If the two
141 partitions cannot be combined, NO_PARTITION is returned. */
144 var_union (var_map map
, tree var1
, tree var2
)
148 gcc_assert (TREE_CODE (var1
) == SSA_NAME
);
149 gcc_assert (TREE_CODE (var2
) == SSA_NAME
);
151 /* This is independent of partition_to_view. If partition_to_view is
152 on, then whichever one of these partitions is absorbed will never have a
153 dereference into the partition_to_view array any more. */
155 p1
= partition_find (map
->var_partition
, SSA_NAME_VERSION (var1
));
156 p2
= partition_find (map
->var_partition
, SSA_NAME_VERSION (var2
));
158 gcc_assert (p1
!= NO_PARTITION
);
159 gcc_assert (p2
!= NO_PARTITION
);
164 p3
= partition_union (map
->var_partition
, p1
, p2
);
166 if (map
->partition_to_view
)
167 p3
= map
->partition_to_view
[p3
];
173 /* Compress the partition numbers in MAP such that they fall in the range
174 0..(num_partitions-1) instead of wherever they turned out during
175 the partitioning exercise. This removes any references to unused
176 partitions, thereby allowing bitmaps and other vectors to be much
179 This is implemented such that compaction doesn't affect partitioning.
180 Ie., once partitions are created and possibly merged, running one
181 or more different kind of compaction will not affect the partitions
182 themselves. Their index might change, but all the same variables will
183 still be members of the same partition group. This allows work on reduced
184 sets, and no loss of information when a larger set is later desired.
186 In particular, coalescing can work on partitions which have 2 or more
187 definitions, and then 'recompact' later to include all the single
188 definitions for assignment to program variables. */
191 /* Set MAP back to the initial state of having no partition view. Return a
192 bitmap which has a bit set for each partition number which is in use in the
196 partition_view_init (var_map map
)
202 used
= BITMAP_ALLOC (NULL
);
204 /* Already in a view? Abandon the old one. */
205 if (map
->partition_to_view
)
207 free (map
->partition_to_view
);
208 map
->partition_to_view
= NULL
;
210 if (map
->view_to_partition
)
212 free (map
->view_to_partition
);
213 map
->view_to_partition
= NULL
;
216 /* Find out which partitions are actually referenced. */
217 for (x
= 0; x
< map
->partition_size
; x
++)
219 tmp
= partition_find (map
->var_partition
, x
);
220 if (ssa_name (tmp
) != NULL_TREE
&& !virtual_operand_p (ssa_name (tmp
))
221 && (!has_zero_uses (ssa_name (tmp
))
222 || !SSA_NAME_IS_DEFAULT_DEF (ssa_name (tmp
))
223 || (SSA_NAME_VAR (ssa_name (tmp
))
224 && !VAR_P (SSA_NAME_VAR (ssa_name (tmp
))))))
225 bitmap_set_bit (used
, tmp
);
228 map
->num_partitions
= map
->partition_size
;
233 /* This routine will finalize the view data for MAP based on the partitions
234 set in SELECTED. This is either the same bitmap returned from
235 partition_view_init, or a trimmed down version if some of those partitions
236 were not desired in this view. SELECTED is freed before returning. */
239 partition_view_fini (var_map map
, bitmap selected
)
242 unsigned count
, i
, x
, limit
;
244 gcc_assert (selected
);
246 count
= bitmap_count_bits (selected
);
247 limit
= map
->partition_size
;
249 /* If its a one-to-one ratio, we don't need any view compaction. */
252 map
->partition_to_view
= (int *)xmalloc (limit
* sizeof (int));
253 memset (map
->partition_to_view
, 0xff, (limit
* sizeof (int)));
254 map
->view_to_partition
= (int *)xmalloc (count
* sizeof (int));
257 /* Give each selected partition an index. */
258 EXECUTE_IF_SET_IN_BITMAP (selected
, 0, x
, bi
)
260 map
->partition_to_view
[x
] = i
;
261 map
->view_to_partition
[i
] = x
;
264 gcc_assert (i
== count
);
265 map
->num_partitions
= i
;
268 BITMAP_FREE (selected
);
272 /* Create a partition view which includes all the used partitions in MAP. */
275 partition_view_normal (var_map map
)
279 used
= partition_view_init (map
);
280 partition_view_fini (map
, used
);
282 var_map_base_fini (map
);
286 /* Create a partition view in MAP which includes just partitions which occur in
287 the bitmap ONLY. If WANT_BASES is true, create the base variable map
291 partition_view_bitmap (var_map map
, bitmap only
)
294 bitmap new_partitions
= BITMAP_ALLOC (NULL
);
298 used
= partition_view_init (map
);
299 EXECUTE_IF_SET_IN_BITMAP (only
, 0, x
, bi
)
301 p
= partition_find (map
->var_partition
, x
);
302 gcc_assert (bitmap_bit_p (used
, p
));
303 bitmap_set_bit (new_partitions
, p
);
305 partition_view_fini (map
, new_partitions
);
307 var_map_base_fini (map
);
311 static bitmap usedvars
;
313 /* Mark VAR as used, so that it'll be preserved during rtl expansion.
314 Returns true if VAR wasn't marked before. */
317 set_is_used (tree var
)
319 return bitmap_set_bit (usedvars
, DECL_UID (var
));
322 /* Return true if VAR is marked as used. */
327 return bitmap_bit_p (usedvars
, DECL_UID (var
));
330 static inline void mark_all_vars_used (tree
*);
332 /* Helper function for mark_all_vars_used, called via walk_tree. */
335 mark_all_vars_used_1 (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
338 enum tree_code_class c
= TREE_CODE_CLASS (TREE_CODE (t
));
341 if (TREE_CODE (t
) == SSA_NAME
)
344 t
= SSA_NAME_VAR (t
);
349 if (IS_EXPR_CODE_CLASS (c
)
350 && (b
= TREE_BLOCK (t
)) != NULL
)
351 TREE_USED (b
) = true;
353 /* Ignore TMR_OFFSET and TMR_STEP for TARGET_MEM_REFS, as those
354 fields do not contain vars. */
355 if (TREE_CODE (t
) == TARGET_MEM_REF
)
357 mark_all_vars_used (&TMR_BASE (t
));
358 mark_all_vars_used (&TMR_INDEX (t
));
359 mark_all_vars_used (&TMR_INDEX2 (t
));
364 /* Only need to mark VAR_DECLS; parameters and return results are not
365 eliminated as unused. */
368 /* When a global var becomes used for the first time also walk its
369 initializer (non global ones don't have any). */
370 if (set_is_used (t
) && is_global_var (t
)
371 && DECL_CONTEXT (t
) == current_function_decl
)
372 mark_all_vars_used (&DECL_INITIAL (t
));
374 /* remove_unused_scope_block_p requires information about labels
375 which are not DECL_IGNORED_P to tell if they might be used in the IL. */
376 else if (TREE_CODE (t
) == LABEL_DECL
)
377 /* Although the TREE_USED values that the frontend uses would be
378 acceptable (albeit slightly over-conservative) for our purposes,
379 init_vars_expansion clears TREE_USED for LABEL_DECLs too, so we
380 must re-compute it here. */
383 if (IS_TYPE_OR_DECL_P (t
))
389 /* Mark the scope block SCOPE and its subblocks unused when they can be
390 possibly eliminated if dead. */
393 mark_scope_block_unused (tree scope
)
396 TREE_USED (scope
) = false;
397 if (!(*debug_hooks
->ignore_block
) (scope
))
398 TREE_USED (scope
) = true;
399 for (t
= BLOCK_SUBBLOCKS (scope
); t
; t
= BLOCK_CHAIN (t
))
400 mark_scope_block_unused (t
);
403 /* Look if the block is dead (by possibly eliminating its dead subblocks)
404 and return true if so.
405 Block is declared dead if:
406 1) No statements are associated with it.
407 2) Declares no live variables
408 3) All subblocks are dead
409 or there is precisely one subblocks and the block
410 has same abstract origin as outer block and declares
411 no variables, so it is pure wrapper.
412 When we are not outputting full debug info, we also eliminate dead variables
413 out of scope blocks to let them to be recycled by GGC and to save copying work
414 done by the inliner. */
417 remove_unused_scope_block_p (tree scope
, bool in_ctor_dtor_block
)
420 bool unused
= !TREE_USED (scope
);
423 /* For ipa-polymorphic-call.cc purposes, preserve blocks:
424 1) with BLOCK_ABSTRACT_ORIGIN of a ctor/dtor or their clones */
425 if (inlined_polymorphic_ctor_dtor_block_p (scope
, true))
427 in_ctor_dtor_block
= true;
430 /* 2) inside such blocks, the outermost block with block_ultimate_origin
431 being a FUNCTION_DECL. */
432 else if (in_ctor_dtor_block
)
434 tree fn
= block_ultimate_origin (scope
);
435 if (fn
&& TREE_CODE (fn
) == FUNCTION_DECL
)
437 in_ctor_dtor_block
= false;
442 for (t
= &BLOCK_VARS (scope
); *t
; t
= next
)
444 next
= &DECL_CHAIN (*t
);
446 /* Debug info of nested function refers to the block of the
447 function. We might stil call it even if all statements
448 of function it was nested into was elliminated.
450 TODO: We can actually look into cgraph to see if function
451 will be output to file. */
452 if (TREE_CODE (*t
) == FUNCTION_DECL
)
455 /* If a decl has a value expr, we need to instantiate it
456 regardless of debug info generation, to avoid codegen
457 differences in memory overlap tests. update_equiv_regs() may
458 indirectly call validate_equiv_mem() to test whether a
459 SET_DEST overlaps with others, and if the value expr changes
460 by virtual register instantiation, we may get end up with
461 different results. */
462 else if (VAR_P (*t
) && DECL_HAS_VALUE_EXPR_P (*t
))
465 /* Remove everything we don't generate debug info for. */
466 else if (DECL_IGNORED_P (*t
))
468 *t
= DECL_CHAIN (*t
);
472 /* When we are outputting debug info, we usually want to output
473 info about optimized-out variables in the scope blocks.
474 Exception are the scope blocks not containing any instructions
475 at all so user can't get into the scopes at first place. */
476 else if (is_used_p (*t
))
478 else if (TREE_CODE (*t
) == LABEL_DECL
&& TREE_USED (*t
))
479 /* For labels that are still used in the IL, the decision to
480 preserve them must not depend DEBUG_INFO_LEVEL, otherwise we
481 risk having different ordering in debug vs. non-debug builds
482 during inlining or versioning.
483 A label appearing here (we have already checked DECL_IGNORED_P)
484 should not be used in the IL unless it has been explicitly used
485 before, so we use TREE_USED as an approximation. */
486 /* In principle, we should do the same here as for the debug case
487 below, however, when debugging, there might be additional nested
488 levels that keep an upper level with a label live, so we have to
489 force this block to be considered used, too. */
492 /* When we are not doing full debug info, we however can keep around
493 only the used variables for cfgexpand's memory packing saving quite
496 For sake of -g3, we keep around those vars but we don't count this as
497 use of block, so innermost block with no used vars and no instructions
498 can be considered dead. We only want to keep around blocks user can
499 breakpoint into and ask about value of optimized out variables.
501 Similarly we need to keep around types at least until all
502 variables of all nested blocks are gone. We track no
503 information on whether given type is used or not, so we have
504 to keep them even when not emitting debug information,
505 otherwise we may end up remapping variables and their (local)
506 types in different orders depending on whether debug
507 information is being generated. */
509 else if (TREE_CODE (*t
) == TYPE_DECL
510 || debug_info_level
== DINFO_LEVEL_NORMAL
511 || debug_info_level
== DINFO_LEVEL_VERBOSE
)
515 *t
= DECL_CHAIN (*t
);
520 for (t
= &BLOCK_SUBBLOCKS (scope
); *t
;)
521 if (remove_unused_scope_block_p (*t
, in_ctor_dtor_block
))
523 if (BLOCK_SUBBLOCKS (*t
))
525 tree next
= BLOCK_CHAIN (*t
);
526 tree supercontext
= BLOCK_SUPERCONTEXT (*t
);
528 *t
= BLOCK_SUBBLOCKS (*t
);
529 while (BLOCK_CHAIN (*t
))
531 BLOCK_SUPERCONTEXT (*t
) = supercontext
;
532 t
= &BLOCK_CHAIN (*t
);
534 BLOCK_CHAIN (*t
) = next
;
535 BLOCK_SUPERCONTEXT (*t
) = supercontext
;
536 t
= &BLOCK_CHAIN (*t
);
540 *t
= BLOCK_CHAIN (*t
);
544 t
= &BLOCK_CHAIN (*t
);
551 /* Outer scope is always used. */
552 else if (!BLOCK_SUPERCONTEXT (scope
)
553 || TREE_CODE (BLOCK_SUPERCONTEXT (scope
)) == FUNCTION_DECL
)
555 /* Innermost blocks with no live variables nor statements can be always
557 else if (!nsubblocks
)
559 /* When not generating debug info we can eliminate info on unused
561 else if (!flag_auto_profile
562 && debug_info_level
== DINFO_LEVEL_NONE
563 && !optinfo_wants_inlining_info_p ())
565 /* Even for -g0 don't prune outer scopes from inlined functions,
566 otherwise late diagnostics from such functions will not be
567 emitted or suppressed properly. */
568 if (inlined_function_outer_scope_p (scope
))
570 gcc_assert (TREE_CODE (BLOCK_ORIGIN (scope
)) == FUNCTION_DECL
);
574 else if (BLOCK_VARS (scope
) || BLOCK_NUM_NONLOCALIZED_VARS (scope
))
576 /* See if this block is important for representation of inlined
577 function. Inlined functions are always represented by block
578 with block_ultimate_origin being set to FUNCTION_DECL and
579 DECL_SOURCE_LOCATION set, unless they expand to nothing... */
580 else if (inlined_function_outer_scope_p (scope
))
583 /* Verfify that only blocks with source location set
584 are entry points to the inlined functions. */
585 gcc_assert (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (scope
))
586 == UNKNOWN_LOCATION
);
588 TREE_USED (scope
) = !unused
;
592 /* Mark all VAR_DECLS under *EXPR_P as used, so that they won't be
593 eliminated during the tree->rtl conversion process. */
596 mark_all_vars_used (tree
*expr_p
)
598 walk_tree (expr_p
, mark_all_vars_used_1
, NULL
, NULL
);
601 /* Helper function for clear_unused_block_pointer, called via walk_tree. */
604 clear_unused_block_pointer_1 (tree
*tp
, int *, void *)
606 if (EXPR_P (*tp
) && TREE_BLOCK (*tp
)
607 && !TREE_USED (TREE_BLOCK (*tp
)))
608 TREE_SET_BLOCK (*tp
, NULL
);
612 /* Set all block pointer in debug or clobber stmt to NULL if the block
613 is unused, so that they will not be streamed out. */
616 clear_unused_block_pointer (void)
619 gimple_stmt_iterator gsi
;
621 FOR_EACH_BB_FN (bb
, cfun
)
622 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
629 stmt
= gsi_stmt (gsi
);
630 if (!is_gimple_debug (stmt
) && !gimple_clobber_p (stmt
))
632 b
= gimple_block (stmt
);
633 if (b
&& !TREE_USED (b
))
635 /* Elide debug marker stmts that have an associated BLOCK from an
636 inline instance removed with also the outermost scope BLOCK of
637 said inline instance removed. If the outermost scope BLOCK of
638 said inline instance is preserved use that in place of the
639 removed BLOCK. That keeps the marker associated to the correct
640 inline instance (or no inline instance in case it was not from
641 an inline instance). */
642 if (gimple_debug_nonbind_marker_p (stmt
)
643 && BLOCK_ABSTRACT_ORIGIN (b
))
645 while (TREE_CODE (b
) == BLOCK
646 && !inlined_function_outer_scope_p (b
))
647 b
= BLOCK_SUPERCONTEXT (b
);
648 if (TREE_CODE (b
) == BLOCK
)
652 gimple_set_block (stmt
, b
);
655 gsi_remove (&gsi
, true);
661 gimple_set_block (stmt
, NULL
);
663 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
664 walk_tree (gimple_op_ptr (stmt
, i
), clear_unused_block_pointer_1
,
669 /* Dump scope blocks starting at SCOPE to FILE. INDENT is the
670 indentation level and FLAGS is as in print_generic_expr. */
673 dump_scope_block (FILE *file
, int indent
, tree scope
, dump_flags_t flags
)
678 fprintf (file
, "\n%*s{ Scope block #%i%s",indent
, "" , BLOCK_NUMBER (scope
),
679 TREE_USED (scope
) ? "" : " (unused)");
680 if (LOCATION_LOCUS (BLOCK_SOURCE_LOCATION (scope
)) != UNKNOWN_LOCATION
)
682 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (scope
));
683 fprintf (file
, " %s:%i", s
.file
, s
.line
);
685 if (BLOCK_ABSTRACT_ORIGIN (scope
))
687 tree origin
= block_ultimate_origin (scope
);
690 fprintf (file
, " Originating from :");
692 print_generic_decl (file
, origin
, flags
);
694 fprintf (file
, "#%i", BLOCK_NUMBER (origin
));
697 if (BLOCK_FRAGMENT_ORIGIN (scope
))
698 fprintf (file
, " Fragment of : #%i",
699 BLOCK_NUMBER (BLOCK_FRAGMENT_ORIGIN (scope
)));
700 else if (BLOCK_FRAGMENT_CHAIN (scope
))
702 fprintf (file
, " Fragment chain :");
703 for (t
= BLOCK_FRAGMENT_CHAIN (scope
); t
;
704 t
= BLOCK_FRAGMENT_CHAIN (t
))
705 fprintf (file
, " #%i", BLOCK_NUMBER (t
));
707 fprintf (file
, " \n");
708 for (var
= BLOCK_VARS (scope
); var
; var
= DECL_CHAIN (var
))
710 fprintf (file
, "%*s", indent
, "");
711 print_generic_decl (file
, var
, flags
);
712 fprintf (file
, "\n");
714 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (scope
); i
++)
716 fprintf (file
, "%*s",indent
, "");
717 print_generic_decl (file
, BLOCK_NONLOCALIZED_VAR (scope
, i
),
719 fprintf (file
, " (nonlocalized)\n");
721 for (t
= BLOCK_SUBBLOCKS (scope
); t
; t
= BLOCK_CHAIN (t
))
722 dump_scope_block (file
, indent
+ 2, t
, flags
);
723 fprintf (file
, "\n%*s}\n",indent
, "");
726 /* Dump the tree of lexical scopes starting at SCOPE to stderr. FLAGS
727 is as in print_generic_expr. */
730 debug_scope_block (tree scope
, dump_flags_t flags
)
732 dump_scope_block (stderr
, 0, scope
, flags
);
736 /* Dump the tree of lexical scopes of current_function_decl to FILE.
737 FLAGS is as in print_generic_expr. */
740 dump_scope_blocks (FILE *file
, dump_flags_t flags
)
742 dump_scope_block (file
, 0, DECL_INITIAL (current_function_decl
), flags
);
746 /* Dump the tree of lexical scopes of current_function_decl to stderr.
747 FLAGS is as in print_generic_expr. */
750 debug_scope_blocks (dump_flags_t flags
)
752 dump_scope_blocks (stderr
, flags
);
755 /* Remove local variables that are not referenced in the IL. */
758 remove_unused_locals (void)
762 unsigned srcidx
, dstidx
, num
;
763 bool have_local_clobbers
= false;
765 /* Removing declarations from lexical blocks when not optimizing is
766 not only a waste of time, it actually causes differences in stack
771 timevar_push (TV_REMOVE_UNUSED
);
773 mark_scope_block_unused (DECL_INITIAL (current_function_decl
));
775 usedvars
= BITMAP_ALLOC (NULL
);
776 auto_bitmap useddebug
;
778 /* Walk the CFG marking all referenced symbols. */
779 FOR_EACH_BB_FN (bb
, cfun
)
781 gimple_stmt_iterator gsi
;
786 /* Walk the statements. */
787 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
789 gimple
*stmt
= gsi_stmt (gsi
);
790 tree b
= gimple_block (stmt
);
792 /* If we wanted to mark the block referenced by the inline
793 entry point marker as used, this would be a good spot to
794 do it. If the block is not otherwise used, the stmt will
795 be cleaned up in clean_unused_block_pointer. */
796 if (is_gimple_debug (stmt
))
798 if (gimple_debug_bind_p (stmt
))
800 tree var
= gimple_debug_bind_get_var (stmt
);
803 if (!gimple_debug_bind_get_value (stmt
))
804 /* Run the 2nd phase. */
805 have_local_clobbers
= true;
807 bitmap_set_bit (useddebug
, DECL_UID (var
));
813 if (gimple_clobber_p (stmt
))
815 have_local_clobbers
= true;
819 if (gimple_call_internal_p (stmt
, IFN_DEFERRED_INIT
))
821 have_local_clobbers
= true;
826 TREE_USED (b
) = true;
828 for (i
= 0; i
< gimple_num_ops (stmt
); i
++)
829 mark_all_vars_used (gimple_op_ptr (gsi_stmt (gsi
), i
));
832 for (gphi_iterator gpi
= gsi_start_phis (bb
);
839 gphi
*phi
= gpi
.phi ();
841 if (virtual_operand_p (gimple_phi_result (phi
)))
844 def
= gimple_phi_result (phi
);
845 mark_all_vars_used (&def
);
847 FOR_EACH_PHI_ARG (arg_p
, phi
, i
, SSA_OP_ALL_USES
)
849 tree arg
= USE_FROM_PTR (arg_p
);
850 int index
= PHI_ARG_INDEX_FROM_USE (arg_p
);
852 LOCATION_BLOCK (gimple_phi_arg_location (phi
, index
));
854 TREE_USED (block
) = true;
855 mark_all_vars_used (&arg
);
859 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
860 if (LOCATION_BLOCK (e
->goto_locus
) != NULL
)
861 TREE_USED (LOCATION_BLOCK (e
->goto_locus
)) = true;
864 /* We do a two-pass approach about the out-of-scope clobbers. We want
865 to remove them if they are the only references to a local variable,
866 but we want to retain them when there's any other. So the first pass
867 ignores them, and the second pass (if there were any) tries to remove
868 them. We do the same for .DEFERRED_INIT. */
869 if (have_local_clobbers
)
870 FOR_EACH_BB_FN (bb
, cfun
)
872 gimple_stmt_iterator gsi
;
874 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
);)
876 gimple
*stmt
= gsi_stmt (gsi
);
877 tree b
= gimple_block (stmt
);
879 if (gimple_clobber_p (stmt
))
881 tree lhs
= gimple_assign_lhs (stmt
);
882 tree base
= get_base_address (lhs
);
883 /* Remove clobbers referencing unused vars, or clobbers
884 with MEM_REF lhs referencing uninitialized pointers. */
885 if ((VAR_P (base
) && !is_used_p (base
))
886 || (TREE_CODE (lhs
) == MEM_REF
887 && TREE_CODE (TREE_OPERAND (lhs
, 0)) == SSA_NAME
888 && SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs
, 0))
889 && (TREE_CODE (SSA_NAME_VAR (TREE_OPERAND (lhs
, 0)))
892 unlink_stmt_vdef (stmt
);
893 gsi_remove (&gsi
, true);
898 TREE_USED (b
) = true;
900 else if (gimple_call_internal_p (stmt
, IFN_DEFERRED_INIT
))
902 tree lhs
= gimple_call_lhs (stmt
);
903 tree base
= get_base_address (lhs
);
904 if (DECL_P (base
) && !is_used_p (base
))
906 unlink_stmt_vdef (stmt
);
907 gsi_remove (&gsi
, true);
912 TREE_USED (b
) = true;
914 else if (gimple_debug_bind_p (stmt
))
916 tree var
= gimple_debug_bind_get_var (stmt
);
918 && !bitmap_bit_p (useddebug
, DECL_UID (var
))
921 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
922 fprintf (dump_file
, "Dead debug bind reset to %u\n",
924 gsi_remove (&gsi
, true);
932 if (cfun
->has_simduid_loops
)
934 for (auto loop
: loops_list (cfun
, 0))
935 if (loop
->simduid
&& !is_used_p (loop
->simduid
))
936 loop
->simduid
= NULL_TREE
;
939 cfun
->has_local_explicit_reg_vars
= false;
941 /* Remove unmarked local and global vars from local_decls. */
942 num
= vec_safe_length (cfun
->local_decls
);
943 for (srcidx
= 0, dstidx
= 0; srcidx
< num
; srcidx
++)
945 var
= (*cfun
->local_decls
)[srcidx
];
948 if (!is_used_p (var
))
951 if (cfun
->nonlocal_goto_save_area
952 && TREE_OPERAND (cfun
->nonlocal_goto_save_area
, 0) == var
)
953 cfun
->nonlocal_goto_save_area
= NULL
;
954 /* Release any default def associated with var. */
955 if ((def
= ssa_default_def (cfun
, var
)) != NULL_TREE
)
957 set_ssa_default_def (cfun
, var
, NULL_TREE
);
958 release_ssa_name (def
);
963 if (VAR_P (var
) && DECL_HARD_REGISTER (var
) && !is_global_var (var
))
964 cfun
->has_local_explicit_reg_vars
= true;
966 if (srcidx
!= dstidx
)
967 (*cfun
->local_decls
)[dstidx
] = var
;
972 statistics_counter_event (cfun
, "unused VAR_DECLs removed", num
- dstidx
);
973 cfun
->local_decls
->truncate (dstidx
);
976 remove_unused_scope_block_p (DECL_INITIAL (current_function_decl
),
977 polymorphic_ctor_dtor_p (current_function_decl
,
979 clear_unused_block_pointer ();
981 BITMAP_FREE (usedvars
);
983 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
985 fprintf (dump_file
, "Scope blocks after cleanups:\n");
986 dump_scope_blocks (dump_file
, dump_flags
);
989 timevar_pop (TV_REMOVE_UNUSED
);
992 /* Allocate and return a new live range information object base on MAP. */
994 static tree_live_info_p
995 new_tree_live_info (var_map map
)
997 tree_live_info_p live
;
1000 live
= XNEW (struct tree_live_info_d
);
1002 live
->num_blocks
= last_basic_block_for_fn (cfun
);
1004 bitmap_obstack_initialize (&live
->livein_obstack
);
1005 bitmap_obstack_initialize (&live
->liveout_obstack
);
1007 live
->livein
= XCNEWVEC (bitmap_head
, last_basic_block_for_fn (cfun
));
1008 live
->liveout
= XCNEWVEC (bitmap_head
, last_basic_block_for_fn (cfun
));
1009 for (unsigned i
= 0; map
->vec_bbs
.iterate (i
, &bb
); ++i
)
1011 bitmap_initialize (&live
->livein
[bb
->index
], &live
->livein_obstack
);
1012 bitmap_initialize (&live
->liveout
[bb
->index
], &live
->liveout_obstack
);
1015 live
->work_stack
= XNEWVEC (int, last_basic_block_for_fn (cfun
));
1016 live
->stack_top
= live
->work_stack
;
1018 live
->global
= BITMAP_ALLOC (NULL
);
1023 /* Free storage for live range info object LIVE. */
1026 delete_tree_live_info (tree_live_info_p live
)
1030 bitmap_obstack_release (&live
->livein_obstack
);
1031 free (live
->livein
);
1035 bitmap_obstack_release (&live
->liveout_obstack
);
1036 free (live
->liveout
);
1038 BITMAP_FREE (live
->global
);
1039 free (live
->work_stack
);
1044 /* Visit basic block BB and propagate any required live on entry bits from
1045 LIVE into the predecessors. VISITED is the bitmap of visited blocks.
1046 TMP is a temporary work bitmap which is passed in to avoid reallocating
1050 loe_visit_block (tree_live_info_p live
, basic_block bb
, sbitmap visited
)
1055 basic_block pred_bb
;
1058 gcc_checking_assert (!bitmap_bit_p (visited
, bb
->index
));
1059 bitmap_set_bit (visited
, bb
->index
);
1061 loe
= live_on_entry (live
, bb
);
1063 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1066 if (!region_contains_p (live
->map
, pred_bb
))
1068 /* Variables live-on-entry from BB that aren't defined in the
1069 predecessor block. This should be the live on entry vars to pred.
1070 Note that liveout is the DEFs in a block while live on entry is
1072 Add these bits to live-on-entry for the pred. if there are any
1073 changes, and pred_bb has been visited already, add it to the
1075 change
= bitmap_ior_and_compl_into (live_on_entry (live
, pred_bb
),
1076 loe
, &live
->liveout
[pred_bb
->index
]);
1078 && bitmap_bit_p (visited
, pred_bb
->index
))
1080 bitmap_clear_bit (visited
, pred_bb
->index
);
1081 *(live
->stack_top
)++ = pred_bb
->index
;
1087 /* Using LIVE, fill in all the live-on-entry blocks between the defs and uses
1088 of all the variables. */
1091 live_worklist (tree_live_info_p live
)
1095 auto_sbitmap
visited (last_basic_block_for_fn (cfun
) + 1);
1097 bitmap_clear (visited
);
1099 /* Visit region's blocks in reverse order and propagate live on entry values
1100 into the predecessors blocks. */
1101 for (unsigned i
= live
->map
->vec_bbs
.length () - 1;
1102 live
->map
->vec_bbs
.iterate (i
, &bb
); --i
)
1103 loe_visit_block (live
, bb
, visited
);
1105 /* Process any blocks which require further iteration. */
1106 while (live
->stack_top
!= live
->work_stack
)
1108 b
= *--(live
->stack_top
);
1109 loe_visit_block (live
, BASIC_BLOCK_FOR_FN (cfun
, b
), visited
);
1114 /* Calculate the initial live on entry vector for SSA_NAME using immediate_use
1115 links. Set the live on entry fields in LIVE. Def's are marked temporarily
1116 in the liveout vector. */
1119 set_var_live_on_entry (tree ssa_name
, tree_live_info_p live
)
1124 basic_block def_bb
= NULL
;
1125 imm_use_iterator imm_iter
;
1126 bool global
= false;
1128 p
= var_to_partition (live
->map
, ssa_name
);
1129 if (p
== NO_PARTITION
)
1132 stmt
= SSA_NAME_DEF_STMT (ssa_name
);
1135 def_bb
= gimple_bb (stmt
);
1136 /* Mark defs in liveout bitmap temporarily. */
1137 if (def_bb
&& region_contains_p (live
->map
, def_bb
))
1138 bitmap_set_bit (&live
->liveout
[def_bb
->index
], p
);
1141 def_bb
= ENTRY_BLOCK_PTR_FOR_FN (cfun
);
1143 /* An undefined local variable does not need to be very alive. */
1144 if (ssa_undefined_value_p (ssa_name
, false))
1147 /* Visit each use of SSA_NAME and if it isn't in the same block as the def,
1148 add it to the list of live on entry blocks. */
1149 FOR_EACH_IMM_USE_FAST (use
, imm_iter
, ssa_name
)
1151 gimple
*use_stmt
= USE_STMT (use
);
1152 basic_block add_block
= NULL
;
1154 if (gimple_code (use_stmt
) == GIMPLE_PHI
)
1156 /* Uses in PHI's are considered to be live at exit of the SRC block
1157 as this is where a copy would be inserted. Check to see if it is
1158 defined in that block, or whether its live on entry. */
1159 int index
= PHI_ARG_INDEX_FROM_USE (use
);
1160 edge e
= gimple_phi_arg_edge (as_a
<gphi
*> (use_stmt
), index
);
1161 if (e
->src
!= def_bb
&& region_contains_p (live
->map
, e
->src
))
1164 else if (is_gimple_debug (use_stmt
))
1168 /* If its not defined in this block, its live on entry. */
1169 basic_block use_bb
= gimple_bb (use_stmt
);
1170 if (use_bb
!= def_bb
&& region_contains_p (live
->map
, use_bb
))
1174 /* If there was a live on entry use, set the bit. */
1178 bitmap_set_bit (&live
->livein
[add_block
->index
], p
);
1182 /* If SSA_NAME is live on entry to at least one block, fill in all the live
1183 on entry blocks between the def and all the uses. */
1185 bitmap_set_bit (live
->global
, p
);
1189 /* Calculate the live on exit vectors based on the entry info in LIVEINFO. */
1192 calculate_live_on_exit (tree_live_info_p liveinfo
)
1198 /* live on entry calculations used liveout vectors for defs, clear them. */
1199 for (unsigned i
= 0; liveinfo
->map
->vec_bbs
.iterate (i
, &bb
); ++i
)
1200 bitmap_clear (&liveinfo
->liveout
[bb
->index
]);
1202 /* Set all the live-on-exit bits for uses in PHIs. */
1203 FOR_EACH_BB_FN (bb
, cfun
)
1208 /* Mark the PHI arguments which are live on exit to the pred block. */
1209 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1211 gphi
*phi
= gsi
.phi ();
1212 if (virtual_operand_p (gimple_phi_result (phi
)))
1214 for (i
= 0; i
< gimple_phi_num_args (phi
); i
++)
1216 tree t
= PHI_ARG_DEF (phi
, i
);
1219 if (TREE_CODE (t
) != SSA_NAME
)
1222 p
= var_to_partition (liveinfo
->map
, t
);
1223 if (p
== NO_PARTITION
)
1225 e
= gimple_phi_arg_edge (phi
, i
);
1226 if (region_contains_p (liveinfo
->map
, e
->src
))
1227 bitmap_set_bit (&liveinfo
->liveout
[e
->src
->index
], p
);
1231 if (!region_contains_p (liveinfo
->map
, bb
))
1234 /* Add each successors live on entry to this bock live on exit. */
1235 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1236 if (region_contains_p (liveinfo
->map
, e
->dest
))
1237 bitmap_ior_into (&liveinfo
->liveout
[bb
->index
],
1238 live_on_entry (liveinfo
, e
->dest
));
1243 /* Given partition map MAP, calculate all the live on entry bitmaps for
1244 each partition. Return a new live info object. */
1247 calculate_live_ranges (var_map map
, bool want_livein
)
1251 tree_live_info_p live
;
1253 live
= new_tree_live_info (map
);
1254 for (i
= 0; i
< num_var_partitions (map
); i
++)
1256 var
= partition_to_var (map
, i
);
1257 if (var
!= NULL_TREE
)
1258 set_var_live_on_entry (var
, live
);
1261 live_worklist (live
);
1264 verify_live_on_entry (live
);
1266 calculate_live_on_exit (live
);
1270 bitmap_obstack_release (&live
->livein_obstack
);
1271 free (live
->livein
);
1272 live
->livein
= NULL
;
1278 /* Data structure for compute_live_vars* functions. */
1280 struct compute_live_vars_data
{
1281 /* Vector of bitmaps for live vars indices at the end of basic blocks,
1282 indexed by bb->index. ACTIVE[ENTRY_BLOCK] must be empty bitmap,
1283 ACTIVE[EXIT_BLOCK] is used for STOP_AFTER. */
1284 vec
<bitmap_head
> active
;
1285 /* Work bitmap of currently live variables. */
1287 /* Set of interesting variables. Variables with uids not in this
1288 hash_map are not tracked. */
1289 live_vars_map
*vars
;
1292 /* Callback for walk_stmt_load_store_addr_ops. If OP is a VAR_DECL with
1293 uid set in DATA->vars, enter its corresponding index into bitmap
1297 compute_live_vars_visit (gimple
*, tree op
, tree
, void *pdata
)
1299 compute_live_vars_data
*data
= (compute_live_vars_data
*) pdata
;
1300 op
= get_base_address (op
);
1301 if (op
&& VAR_P (op
))
1302 if (unsigned int *v
= data
->vars
->get (DECL_UID (op
)))
1303 bitmap_set_bit (data
->work
, *v
);
1307 /* Helper routine for compute_live_vars, calculating the sets of live
1308 variables at the end of BB, leaving the result in DATA->work.
1309 If STOP_AFTER is non-NULL, stop processing after that stmt. */
1312 compute_live_vars_1 (basic_block bb
, compute_live_vars_data
*data
,
1317 gimple_stmt_iterator gsi
;
1318 walk_stmt_load_store_addr_fn visit
= compute_live_vars_visit
;
1320 bitmap_clear (data
->work
);
1321 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1322 bitmap_ior_into (data
->work
, &data
->active
[e
->src
->index
]);
1324 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1325 walk_stmt_load_store_addr_ops (gsi_stmt (gsi
), data
, NULL
, NULL
, visit
);
1326 for (gsi
= gsi_after_labels (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1328 gimple
*stmt
= gsi_stmt (gsi
);
1330 if (gimple_clobber_p (stmt
))
1332 tree lhs
= gimple_assign_lhs (stmt
);
1334 if (unsigned int *v
= data
->vars
->get (DECL_UID (lhs
)))
1335 bitmap_clear_bit (data
->work
, *v
);
1337 else if (!is_gimple_debug (stmt
))
1338 walk_stmt_load_store_addr_ops (stmt
, data
, visit
, visit
, visit
);
1339 if (stmt
== stop_after
)
1344 /* For function FN and live_vars_map (hash map from DECL_UIDs to a dense set of
1345 indexes of automatic variables VARS, compute which of those variables are
1346 (might be) live at the end of each basic block. */
1349 compute_live_vars (struct function
*fn
, live_vars_map
*vars
)
1351 vec
<bitmap_head
> active
;
1353 /* We approximate the live range of a stack variable by taking the first
1354 mention of its name as starting point(s), and by the end-of-scope
1355 death clobber added by gimplify as ending point(s) of the range.
1356 This overapproximates in the case we for instance moved an address-taken
1357 operation upward, without also moving a dereference to it upwards.
1358 But it's conservatively correct as a variable never can hold values
1359 before its name is mentioned at least once.
1361 We then do a mostly classical bitmap liveness algorithm. */
1363 active
.create (last_basic_block_for_fn (fn
));
1364 active
.quick_grow_cleared (last_basic_block_for_fn (fn
));
1365 for (int i
= 0; i
< last_basic_block_for_fn (fn
); i
++)
1366 bitmap_initialize (&active
[i
], &bitmap_default_obstack
);
1368 bitmap work
= BITMAP_ALLOC (NULL
);
1370 int *rpo
= XNEWVEC (int, last_basic_block_for_fn (fn
));
1371 int n_bbs
= pre_and_rev_post_order_compute_fn (fn
, NULL
, rpo
, false);
1373 bool changed
= true;
1374 compute_live_vars_data data
= { active
, work
, vars
};
1379 for (i
= 0; i
< n_bbs
; i
++)
1381 basic_block bb
= BASIC_BLOCK_FOR_FN (fn
, rpo
[i
]);
1382 compute_live_vars_1 (bb
, &data
, NULL
);
1383 if (bitmap_ior_into (&active
[bb
->index
], work
))
1394 /* For ACTIVE computed by compute_live_vars, compute a bitmap of variables
1395 live after the STOP_AFTER statement and return that bitmap. */
1398 live_vars_at_stmt (vec
<bitmap_head
> &active
, live_vars_map
*vars
,
1401 bitmap work
= BITMAP_ALLOC (NULL
);
1402 compute_live_vars_data data
= { active
, work
, vars
};
1403 basic_block bb
= gimple_bb (stop_after
);
1404 compute_live_vars_1 (bb
, &data
, stop_after
);
1408 /* Destroy what compute_live_vars has returned when it is no longer needed. */
1411 destroy_live_vars (vec
<bitmap_head
> &active
)
1413 unsigned len
= active
.length ();
1414 for (unsigned i
= 0; i
< len
; i
++)
1415 bitmap_clear (&active
[i
]);
1420 /* Output partition map MAP to file F. */
1423 dump_var_map (FILE *f
, var_map map
)
1429 fprintf (f
, "\nPartition map \n\n");
1431 for (x
= 0; x
< map
->num_partitions
; x
++)
1433 if (map
->view_to_partition
!= NULL
)
1434 p
= map
->view_to_partition
[x
];
1438 if (ssa_name (p
) == NULL_TREE
1439 || virtual_operand_p (ssa_name (p
)))
1443 for (y
= 1; y
< num_ssa_names
; y
++)
1445 p
= partition_find (map
->var_partition
, y
);
1446 if (map
->partition_to_view
)
1447 p
= map
->partition_to_view
[p
];
1452 fprintf (f
, "Partition %d (", x
);
1453 print_generic_expr (f
, partition_to_var (map
, p
), TDF_SLIM
);
1456 fprintf (f
, "%d ", y
);
1466 /* Generic dump for the above. */
1469 debug (_var_map
&ref
)
1471 dump_var_map (stderr
, &ref
);
1475 debug (_var_map
*ptr
)
1480 fprintf (stderr
, "<nil>\n");
1484 /* Output live range info LIVE to file F, controlled by FLAG. */
1487 dump_live_info (FILE *f
, tree_live_info_p live
, int flag
)
1491 var_map map
= live
->map
;
1494 if ((flag
& LIVEDUMP_ENTRY
) && live
->livein
)
1496 FOR_EACH_BB_FN (bb
, cfun
)
1498 fprintf (f
, "\nLive on entry to BB%d : ", bb
->index
);
1499 EXECUTE_IF_SET_IN_BITMAP (&live
->livein
[bb
->index
], 0, i
, bi
)
1501 print_generic_expr (f
, partition_to_var (map
, i
), TDF_SLIM
);
1508 if ((flag
& LIVEDUMP_EXIT
) && live
->liveout
)
1510 FOR_EACH_BB_FN (bb
, cfun
)
1512 fprintf (f
, "\nLive on exit from BB%d : ", bb
->index
);
1513 EXECUTE_IF_SET_IN_BITMAP (&live
->liveout
[bb
->index
], 0, i
, bi
)
1515 print_generic_expr (f
, partition_to_var (map
, i
), TDF_SLIM
);
1524 /* Generic dump for the above. */
1527 debug (tree_live_info_d
&ref
)
1529 dump_live_info (stderr
, &ref
, 0);
1533 debug (tree_live_info_d
*ptr
)
1538 fprintf (stderr
, "<nil>\n");
1542 /* Verify that the info in LIVE matches the current cfg. */
1545 verify_live_on_entry (tree_live_info_p live
)
1554 var_map map
= live
->map
;
1556 /* Check for live on entry partitions and report those with a DEF in
1557 the program. This will typically mean an optimization has done
1559 bb
= ENTRY_BLOCK_PTR_FOR_FN (cfun
);
1561 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1563 int entry_block
= e
->dest
->index
;
1564 if (!region_contains_p (live
->map
, e
->dest
))
1566 for (i
= 0; i
< (unsigned)num_var_partitions (map
); i
++)
1571 var
= partition_to_var (map
, i
);
1572 stmt
= SSA_NAME_DEF_STMT (var
);
1573 tmp
= gimple_bb (stmt
);
1574 if (SSA_NAME_VAR (var
))
1575 d
= ssa_default_def (cfun
, SSA_NAME_VAR (var
));
1577 loe
= live_on_entry (live
, e
->dest
);
1578 if (loe
&& bitmap_bit_p (loe
, i
))
1580 if (!gimple_nop_p (stmt
))
1583 print_generic_expr (stderr
, var
, TDF_SLIM
);
1584 fprintf (stderr
, " is defined ");
1586 fprintf (stderr
, " in BB%d, ", tmp
->index
);
1587 fprintf (stderr
, "by:\n");
1588 print_gimple_stmt (stderr
, stmt
, 0, TDF_SLIM
);
1589 fprintf (stderr
, "\nIt is also live-on-entry to entry BB %d",
1591 fprintf (stderr
, " So it appears to have multiple defs.\n");
1598 print_generic_expr (stderr
, var
, TDF_SLIM
);
1599 fprintf (stderr
, " is live-on-entry to BB%d ",
1603 fprintf (stderr
, " but is not the default def of ");
1604 print_generic_expr (stderr
, d
, TDF_SLIM
);
1605 fprintf (stderr
, "\n");
1608 fprintf (stderr
, " and there is no default def.\n");
1615 /* An undefined local variable does not need to be very
1617 if (ssa_undefined_value_p (var
, false))
1620 /* The only way this var shouldn't be marked live on entry is
1621 if it occurs in a PHI argument of the block. */
1625 for (gsi
= gsi_start_phis (e
->dest
);
1626 !gsi_end_p (gsi
) && !ok
;
1629 gphi
*phi
= gsi
.phi ();
1630 if (virtual_operand_p (gimple_phi_result (phi
)))
1632 for (z
= 0; z
< gimple_phi_num_args (phi
); z
++)
1633 if (var
== gimple_phi_arg_def (phi
, z
))
1641 /* Expand adds unused default defs for PARM_DECLs and
1642 RESULT_DECLs. They're ok. */
1643 if (has_zero_uses (var
)
1644 && SSA_NAME_VAR (var
)
1645 && !VAR_P (SSA_NAME_VAR (var
)))
1648 print_generic_expr (stderr
, var
, TDF_SLIM
);
1649 fprintf (stderr
, " is not marked live-on-entry to entry BB%d ",
1651 fprintf (stderr
, "but it is a default def so it should be.\n");
1655 gcc_assert (num
<= 0);
1659 /* Virtual operand liveness analysis data init. */
1662 virtual_operand_live::init ()
1664 liveout
= XCNEWVEC (tree
, last_basic_block_for_fn (cfun
) + 1);
1665 liveout
[ENTRY_BLOCK
] = ssa_default_def (cfun
, gimple_vop (cfun
));
1668 /* Compute live-in of BB from cached live-out. */
1671 virtual_operand_live::get_live_in (basic_block bb
)
1673 /* A virtual PHI is a convenient cache for live-in. */
1674 gphi
*phi
= get_virtual_phi (bb
);
1676 return gimple_phi_result (phi
);
1681 /* Since we don't have a virtual PHI and we don't know whether there's
1682 a downstream virtual use (and thus PHIs are inserted where necessary)
1683 we now have to check each incoming edge live-out. */
1686 tree livein
= NULL_TREE
;
1687 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1688 if (e
->flags
& EDGE_DFS_BACK
)
1689 /* We can ignore backedges since if there's a def there it would
1690 have forced a PHI in the source because it also acts as use
1694 livein
= get_live_out (e
->src
);
1695 else if (get_live_out (e
->src
) != livein
)
1696 /* When there's no virtual use downstream this indicates a point
1697 where we'd insert a PHI merging the different live virtual
1704 /* Compute live-out of BB. */
1707 virtual_operand_live::get_live_out (basic_block bb
)
1712 if (liveout
[bb
->index
])
1713 return liveout
[bb
->index
];
1715 tree lo
= NULL_TREE
;
1716 for (auto gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
1718 gimple
*stmt
= gsi_stmt (gsi
);
1719 if (gimple_vdef (stmt
))
1721 lo
= gimple_vdef (stmt
);
1724 if (gimple_vuse (stmt
))
1726 lo
= gimple_vuse (stmt
);
1731 lo
= get_live_in (bb
);
1732 liveout
[bb
->index
] = lo
;