1 /* RTL dead code elimination.
2 Copyright (C) 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
28 #include "hard-reg-set.h"
34 #include "tree-pass.h"
39 DEF_VEC_ALLOC_I(int,heap
);
42 /* -------------------------------------------------------------------------
43 Core mark/delete routines
44 ------------------------------------------------------------------------- */
46 /* True if we are invoked while the df engine is running; in this case,
47 we don't want to reenter it. */
48 static bool df_in_progress
= false;
50 /* Instructions that have been marked but whose dependencies have not
51 yet been processed. */
52 static VEC(rtx
,heap
) *worklist
;
54 /* Bitmap of instructions marked as needed indexed by INSN_UID. */
55 static sbitmap marked
;
57 /* Bitmap obstacks used for block processing by the fast algorithm. */
58 static bitmap_obstack dce_blocks_bitmap_obstack
;
59 static bitmap_obstack dce_tmp_bitmap_obstack
;
61 static bool find_call_stack_args (rtx
, bool, bool, bitmap
);
63 /* A subroutine for which BODY is part of the instruction being tested;
64 either the top-level pattern, or an element of a PARALLEL. The
65 instruction is known not to be a bare USE or CLOBBER. */
68 deletable_insn_p_1 (rtx body
)
70 switch (GET_CODE (body
))
74 /* The UNSPEC case was added here because the ia-64 claims that
75 USEs do not work after reload and generates UNSPECS rather
76 than USEs. Since dce is run after reload we need to avoid
77 deleting these even if they are dead. If it turns out that
78 USEs really do work after reload, the ia-64 should be
79 changed, and the UNSPEC case can be removed. */
84 if (volatile_refs_p (body
))
87 if (flag_non_call_exceptions
&& may_trap_p (body
))
95 /* Return true if INSN is a normal instruction that can be deleted by
99 deletable_insn_p (rtx insn
, bool fast
, bitmap arg_stores
)
105 /* We cannot delete calls inside of the recursive dce because
106 this may cause basic blocks to be deleted and this messes up
107 the rest of the stack of optimization passes. */
109 /* We cannot delete pure or const sibling calls because it is
110 hard to see the result. */
111 && (!SIBLING_CALL_P (insn
))
112 /* We can delete dead const or pure calls as long as they do not
114 && (RTL_CONST_OR_PURE_CALL_P (insn
)
115 && !RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)))
116 return find_call_stack_args (insn
, false, fast
, arg_stores
);
118 if (!NONJUMP_INSN_P (insn
))
121 body
= PATTERN (insn
);
122 switch (GET_CODE (body
))
130 /* A CLOBBER of a dead pseudo register serves no purpose.
131 That is not necessarily true for hard registers until
134 return REG_P (x
) && (!HARD_REGISTER_P (x
) || reload_completed
);
137 /* Because of the way that use-def chains are built, it is not
138 possible to tell if the clobber is dead because it can
139 never be the target of a use-def chain. */
143 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
144 if (!deletable_insn_p_1 (XVECEXP (body
, 0, i
)))
149 return deletable_insn_p_1 (body
);
154 /* Return true if INSN has been marked as needed. */
157 marked_insn_p (rtx insn
)
159 /* Artificial defs are always needed and they do not have an insn.
160 We should never see them here. */
162 return TEST_BIT (marked
, INSN_UID (insn
));
166 /* If INSN has not yet been marked as needed, mark it now, and add it to
170 mark_insn (rtx insn
, bool fast
)
172 if (!marked_insn_p (insn
))
175 VEC_safe_push (rtx
, heap
, worklist
, insn
);
176 SET_BIT (marked
, INSN_UID (insn
));
178 fprintf (dump_file
, " Adding insn %d to worklist\n", INSN_UID (insn
));
181 && !SIBLING_CALL_P (insn
)
182 && (RTL_CONST_OR_PURE_CALL_P (insn
)
183 && !RTL_LOOPING_CONST_OR_PURE_CALL_P (insn
)))
184 find_call_stack_args (insn
, true, fast
, NULL
);
189 /* A note_stores callback used by mark_nonreg_stores. DATA is the
190 instruction containing DEST. */
193 mark_nonreg_stores_1 (rtx dest
, const_rtx pattern
, void *data
)
195 if (GET_CODE (pattern
) != CLOBBER
&& !REG_P (dest
))
196 mark_insn ((rtx
) data
, true);
200 /* A note_stores callback used by mark_nonreg_stores. DATA is the
201 instruction containing DEST. */
204 mark_nonreg_stores_2 (rtx dest
, const_rtx pattern
, void *data
)
206 if (GET_CODE (pattern
) != CLOBBER
&& !REG_P (dest
))
207 mark_insn ((rtx
) data
, false);
211 /* Mark INSN if BODY stores to a non-register destination. */
214 mark_nonreg_stores (rtx body
, rtx insn
, bool fast
)
217 note_stores (body
, mark_nonreg_stores_1
, insn
);
219 note_stores (body
, mark_nonreg_stores_2
, insn
);
223 /* Try to find all stack stores of CALL_INSN arguments if
224 ACCUMULATE_OUTGOING_ARGS. If all stack stores have been found
225 and it is therefore safe to eliminate the call, return true,
226 otherwise return false. This function should be first called
227 with DO_MARK false, and only when the CALL_INSN is actually
228 going to be marked called again with DO_MARK true. */
231 find_call_stack_args (rtx call_insn
, bool do_mark
, bool fast
,
234 rtx p
, insn
, prev_insn
;
236 HOST_WIDE_INT min_sp_off
, max_sp_off
;
239 gcc_assert (CALL_P (call_insn
));
240 if (!ACCUMULATE_OUTGOING_ARGS
)
245 gcc_assert (arg_stores
);
246 bitmap_clear (arg_stores
);
249 min_sp_off
= INTTYPE_MAXIMUM (HOST_WIDE_INT
);
252 /* First determine the minimum and maximum offset from sp for
254 for (p
= CALL_INSN_FUNCTION_USAGE (call_insn
); p
; p
= XEXP (p
, 1))
255 if (GET_CODE (XEXP (p
, 0)) == USE
256 && MEM_P (XEXP (XEXP (p
, 0), 0)))
258 rtx mem
= XEXP (XEXP (p
, 0), 0), addr
, size
;
259 HOST_WIDE_INT off
= 0;
260 size
= MEM_SIZE (mem
);
261 if (size
== NULL_RTX
)
263 addr
= XEXP (mem
, 0);
264 if (GET_CODE (addr
) == PLUS
265 && REG_P (XEXP (addr
, 0))
266 && CONST_INT_P (XEXP (addr
, 1)))
268 off
= INTVAL (XEXP (addr
, 1));
269 addr
= XEXP (addr
, 0);
271 if (addr
!= stack_pointer_rtx
)
275 /* If not fast, use chains to see if addr wasn't set to
280 struct df_link
*defs
;
283 for (use_rec
= DF_INSN_USES (call_insn
); *use_rec
; use_rec
++)
284 if (rtx_equal_p (addr
, DF_REF_REG (*use_rec
)))
287 if (*use_rec
== NULL
)
290 for (defs
= DF_REF_CHAIN (*use_rec
); defs
; defs
= defs
->next
)
291 if (! DF_REF_IS_ARTIFICIAL (defs
->ref
))
297 set
= single_set (DF_REF_INSN (defs
->ref
));
301 if (GET_CODE (SET_SRC (set
)) != PLUS
302 || XEXP (SET_SRC (set
), 0) != stack_pointer_rtx
303 || !CONST_INT_P (XEXP (SET_SRC (set
), 1)))
306 off
+= INTVAL (XEXP (SET_SRC (set
), 1));
311 min_sp_off
= MIN (min_sp_off
, off
);
312 max_sp_off
= MAX (max_sp_off
, off
+ INTVAL (size
));
315 if (min_sp_off
>= max_sp_off
)
317 sp_bytes
= BITMAP_ALLOC (NULL
);
319 /* Set bits in SP_BYTES bitmap for bytes relative to sp + min_sp_off
320 which contain arguments. Checking has been done in the previous
322 for (p
= CALL_INSN_FUNCTION_USAGE (call_insn
); p
; p
= XEXP (p
, 1))
323 if (GET_CODE (XEXP (p
, 0)) == USE
324 && MEM_P (XEXP (XEXP (p
, 0), 0)))
326 rtx mem
= XEXP (XEXP (p
, 0), 0), addr
;
327 HOST_WIDE_INT off
= 0, byte
;
328 addr
= XEXP (mem
, 0);
329 if (GET_CODE (addr
) == PLUS
330 && REG_P (XEXP (addr
, 0))
331 && CONST_INT_P (XEXP (addr
, 1)))
333 off
= INTVAL (XEXP (addr
, 1));
334 addr
= XEXP (addr
, 0);
336 if (addr
!= stack_pointer_rtx
)
339 struct df_link
*defs
;
342 for (use_rec
= DF_INSN_USES (call_insn
); *use_rec
; use_rec
++)
343 if (rtx_equal_p (addr
, DF_REF_REG (*use_rec
)))
346 for (defs
= DF_REF_CHAIN (*use_rec
); defs
; defs
= defs
->next
)
347 if (! DF_REF_IS_ARTIFICIAL (defs
->ref
))
350 set
= single_set (DF_REF_INSN (defs
->ref
));
351 off
+= INTVAL (XEXP (SET_SRC (set
), 1));
353 for (byte
= off
; byte
< off
+ INTVAL (MEM_SIZE (mem
)); byte
++)
355 gcc_assert (!bitmap_bit_p (sp_bytes
, byte
- min_sp_off
));
356 bitmap_set_bit (sp_bytes
, byte
- min_sp_off
);
360 /* Walk backwards, looking for argument stores. The search stops
361 when seeing another call, sp adjustment or memory store other than
364 for (insn
= PREV_INSN (call_insn
); insn
; insn
= prev_insn
)
367 HOST_WIDE_INT off
, byte
;
369 if (insn
== BB_HEAD (BLOCK_FOR_INSN (call_insn
)))
370 prev_insn
= NULL_RTX
;
372 prev_insn
= PREV_INSN (insn
);
380 set
= single_set (insn
);
381 if (!set
|| SET_DEST (set
) == stack_pointer_rtx
)
384 if (!MEM_P (SET_DEST (set
)))
387 mem
= SET_DEST (set
);
388 addr
= XEXP (mem
, 0);
390 if (GET_CODE (addr
) == PLUS
391 && REG_P (XEXP (addr
, 0))
392 && CONST_INT_P (XEXP (addr
, 1)))
394 off
= INTVAL (XEXP (addr
, 1));
395 addr
= XEXP (addr
, 0);
397 if (addr
!= stack_pointer_rtx
)
404 struct df_link
*defs
;
407 for (use_rec
= DF_INSN_USES (insn
); *use_rec
; use_rec
++)
408 if (rtx_equal_p (addr
, DF_REF_REG (*use_rec
)))
411 if (*use_rec
== NULL
)
414 for (defs
= DF_REF_CHAIN (*use_rec
); defs
; defs
= defs
->next
)
415 if (! DF_REF_IS_ARTIFICIAL (defs
->ref
))
421 set
= single_set (DF_REF_INSN (defs
->ref
));
425 if (GET_CODE (SET_SRC (set
)) != PLUS
426 || XEXP (SET_SRC (set
), 0) != stack_pointer_rtx
427 || !CONST_INT_P (XEXP (SET_SRC (set
), 1)))
430 off
+= INTVAL (XEXP (SET_SRC (set
), 1));
436 if (GET_MODE_SIZE (GET_MODE (mem
)) == 0)
439 for (byte
= off
; byte
< off
+ GET_MODE_SIZE (GET_MODE (mem
)); byte
++)
441 if (byte
< min_sp_off
442 || byte
>= max_sp_off
443 || !bitmap_bit_p (sp_bytes
, byte
- min_sp_off
))
445 bitmap_clear_bit (sp_bytes
, byte
- min_sp_off
);
448 if (!deletable_insn_p (insn
, fast
, NULL
))
452 mark_insn (insn
, fast
);
454 bitmap_set_bit (arg_stores
, INSN_UID (insn
));
456 if (bitmap_empty_p (sp_bytes
))
463 BITMAP_FREE (sp_bytes
);
464 if (!ret
&& arg_stores
)
465 bitmap_clear (arg_stores
);
471 /* Delete all REG_EQUAL notes of the registers INSN writes, to prevent
472 bad dangling REG_EQUAL notes. */
475 delete_corresponding_reg_eq_notes (rtx insn
)
478 for (def_rec
= DF_INSN_DEFS (insn
); *def_rec
; def_rec
++)
480 df_ref def
= *def_rec
;
481 unsigned int regno
= DF_REF_REGNO (def
);
482 /* This loop is a little tricky. We cannot just go down the
483 chain because it is being modified by the actions in the
484 loop. So we just get the head. We plan to drain the list
486 while (DF_REG_EQ_USE_CHAIN (regno
))
488 df_ref eq_use
= DF_REG_EQ_USE_CHAIN (regno
);
489 rtx noted_insn
= DF_REF_INSN (eq_use
);
490 rtx note
= find_reg_note (noted_insn
, REG_EQUAL
, NULL_RTX
);
492 note
= find_reg_note (noted_insn
, REG_EQUIV
, NULL_RTX
);
494 /* This assert is generally triggered when someone deletes a
495 REG_EQUAL or REG_EQUIV note by hacking the list manually
496 rather than calling remove_note. */
498 remove_note (noted_insn
, note
);
504 /* Delete every instruction that hasn't been marked. */
507 delete_unmarked_insns (void)
511 bool must_clean
= false;
513 FOR_EACH_BB_REVERSE (bb
)
514 FOR_BB_INSNS_REVERSE_SAFE (bb
, insn
, next
)
517 /* Always delete no-op moves. */
518 if (noop_move_p (insn
))
521 /* Otherwise rely only on the DCE algorithm. */
522 else if (marked_insn_p (insn
))
525 /* Beware that reaching a dbg counter limit here can result
526 in miscompiled file. This occurs when a group of insns
527 must be deleted together, typically because the kept insn
528 depends on the output from the deleted insn. Deleting
529 this insns in reverse order (both at the bb level and
530 when looking at the blocks) minimizes this, but does not
531 eliminate it, since it is possible for the using insn to
532 be top of a block and the producer to be at the bottom of
533 the block. However, in most cases this will only result
534 in an uninitialized use of an insn that is dead anyway.
536 However, there is one rare case that will cause a
537 miscompile: deletion of non-looping pure and constant
538 calls on a machine where ACCUMULATE_OUTGOING_ARGS is true.
539 In this case it is possible to remove the call, but leave
540 the argument pushes to the stack. Because of the changes
541 to the stack pointer, this will almost always lead to a
547 fprintf (dump_file
, "DCE: Deleting insn %d\n", INSN_UID (insn
));
549 /* Before we delete the insn we have to delete REG_EQUAL notes
550 for the destination regs in order to avoid dangling notes. */
551 delete_corresponding_reg_eq_notes (insn
);
553 /* If a pure or const call is deleted, this may make the cfg
554 have unreachable blocks. We rememeber this and call
555 delete_unreachable_blocks at the end. */
559 /* Now delete the insn. */
560 delete_insn_and_edges (insn
);
563 /* Deleted a pure or const call. */
565 delete_unreachable_blocks ();
569 /* Go through the instructions and mark those whose necessity is not
570 dependent on inter-instruction information. Make sure all other
571 instructions are not marked. */
574 prescan_insns_for_dce (bool fast
)
578 bitmap arg_stores
= NULL
;
581 fprintf (dump_file
, "Finding needed instructions:\n");
583 if (!df_in_progress
&& ACCUMULATE_OUTGOING_ARGS
)
584 arg_stores
= BITMAP_ALLOC (NULL
);
588 FOR_BB_INSNS_REVERSE_SAFE (bb
, insn
, prev
)
591 /* Don't mark argument stores now. They will be marked
592 if needed when the associated CALL is marked. */
593 if (arg_stores
&& bitmap_bit_p (arg_stores
, INSN_UID (insn
)))
595 if (deletable_insn_p (insn
, fast
, arg_stores
))
596 mark_nonreg_stores (PATTERN (insn
), insn
, fast
);
598 mark_insn (insn
, fast
);
600 /* find_call_stack_args only looks at argument stores in the
603 bitmap_clear (arg_stores
);
607 BITMAP_FREE (arg_stores
);
610 fprintf (dump_file
, "Finished finding needed instructions:\n");
614 /* UD-based DSE routines. */
616 /* Mark instructions that define artificially-used registers, such as
617 the frame pointer and the stack pointer. */
620 mark_artificial_uses (void)
623 struct df_link
*defs
;
628 for (use_rec
= df_get_artificial_uses (bb
->index
);
630 for (defs
= DF_REF_CHAIN (*use_rec
); defs
; defs
= defs
->next
)
631 if (! DF_REF_IS_ARTIFICIAL (defs
->ref
))
632 mark_insn (DF_REF_INSN (defs
->ref
), false);
637 /* Mark every instruction that defines a register value that INSN uses. */
640 mark_reg_dependencies (rtx insn
)
642 struct df_link
*defs
;
645 for (use_rec
= DF_INSN_USES (insn
); *use_rec
; use_rec
++)
647 df_ref use
= *use_rec
;
650 fprintf (dump_file
, "Processing use of ");
651 print_simple_rtl (dump_file
, DF_REF_REG (use
));
652 fprintf (dump_file
, " in insn %d:\n", INSN_UID (insn
));
654 for (defs
= DF_REF_CHAIN (use
); defs
; defs
= defs
->next
)
655 if (! DF_REF_IS_ARTIFICIAL (defs
->ref
))
656 mark_insn (DF_REF_INSN (defs
->ref
), false);
661 /* Initialize global variables for a new DCE pass. */
669 df_chain_add_problem (DF_UD_CHAIN
);
678 bitmap_obstack_initialize (&dce_blocks_bitmap_obstack
);
679 bitmap_obstack_initialize (&dce_tmp_bitmap_obstack
);
682 marked
= sbitmap_alloc (get_max_uid () + 1);
683 sbitmap_zero (marked
);
687 /* Free the data allocated by init_dce. */
692 sbitmap_free (marked
);
696 bitmap_obstack_release (&dce_blocks_bitmap_obstack
);
697 bitmap_obstack_release (&dce_tmp_bitmap_obstack
);
702 /* UD-chain based DCE. */
705 rest_of_handle_ud_dce (void)
711 prescan_insns_for_dce (false);
712 mark_artificial_uses ();
713 while (VEC_length (rtx
, worklist
) > 0)
715 insn
= VEC_pop (rtx
, worklist
);
716 mark_reg_dependencies (insn
);
718 VEC_free (rtx
, heap
, worklist
);
720 /* Before any insns are deleted, we must remove the chains since
721 they are not bidirectional. */
722 df_remove_problem (df_chain
);
723 delete_unmarked_insns ();
733 return optimize
> 1 && flag_dce
737 struct rtl_opt_pass pass_ud_rtl_dce
=
742 gate_ud_dce
, /* gate */
743 rest_of_handle_ud_dce
, /* execute */
746 0, /* static_pass_number */
748 0, /* properties_required */
749 0, /* properties_provided */
750 0, /* properties_destroyed */
751 0, /* todo_flags_start */
753 TODO_df_finish
| TODO_verify_rtl_sharing
|
754 TODO_ggc_collect
/* todo_flags_finish */
759 /* -------------------------------------------------------------------------
761 ------------------------------------------------------------------------- */
763 /* Process basic block BB. Return true if the live_in set has
764 changed. REDO_OUT is true if the info at the bottom of the block
765 needs to be recalculated before starting. AU is the proper set of
769 byte_dce_process_block (basic_block bb
, bool redo_out
, bitmap au
)
771 bitmap local_live
= BITMAP_ALLOC (&dce_tmp_bitmap_obstack
);
778 /* Need to redo the live_out set of this block if when one of
779 the succs of this block has had a change in it live in
783 df_confluence_function_n con_fun_n
= df_byte_lr
->problem
->con_fun_n
;
784 bitmap_clear (DF_BYTE_LR_OUT (bb
));
785 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
791 fprintf (dump_file
, "processing block %d live out = ", bb
->index
);
792 df_print_byte_regset (dump_file
, DF_BYTE_LR_OUT (bb
));
795 bitmap_copy (local_live
, DF_BYTE_LR_OUT (bb
));
797 df_byte_lr_simulate_artificial_refs_at_end (bb
, local_live
);
799 FOR_BB_INSNS_REVERSE (bb
, insn
)
802 /* The insn is needed if there is someone who uses the output. */
803 for (def_rec
= DF_INSN_DEFS (insn
); *def_rec
; def_rec
++)
805 df_ref def
= *def_rec
;
807 unsigned int dregno
= DF_REF_REGNO (def
);
808 unsigned int start
= df_byte_lr_get_regno_start (dregno
);
809 unsigned int len
= df_byte_lr_get_regno_len (dregno
);
813 /* This is one of the only places where DF_MM_MAY should
814 be used for defs. Need to make sure that we are
815 checking for all of the bits that may be used. */
817 if (!df_compute_accessed_bytes (def
, DF_MM_MAY
, &sb
, &lb
))
823 if (bitmap_bit_p (au
, dregno
))
825 mark_insn (insn
, true);
831 if (bitmap_bit_p (local_live
, start
++))
833 mark_insn (insn
, true);
840 /* No matter if the instruction is needed or not, we remove
841 any regno in the defs from the live set. */
842 df_byte_lr_simulate_defs (insn
, local_live
);
844 /* On the other hand, we do not allow the dead uses to set
845 anything in local_live. */
846 if (marked_insn_p (insn
))
847 df_byte_lr_simulate_uses (insn
, local_live
);
851 fprintf (dump_file
, "finished processing insn %d live out = ",
853 df_print_byte_regset (dump_file
, local_live
);
857 df_byte_lr_simulate_artificial_refs_at_top (bb
, local_live
);
859 block_changed
= !bitmap_equal_p (local_live
, DF_BYTE_LR_IN (bb
));
861 bitmap_copy (DF_BYTE_LR_IN (bb
), local_live
);
862 BITMAP_FREE (local_live
);
863 return block_changed
;
867 /* Process basic block BB. Return true if the live_in set has
868 changed. REDO_OUT is true if the info at the bottom of the block
869 needs to be recalculated before starting. AU is the proper set of
873 dce_process_block (basic_block bb
, bool redo_out
, bitmap au
)
875 bitmap local_live
= BITMAP_ALLOC (&dce_tmp_bitmap_obstack
);
882 /* Need to redo the live_out set of this block if when one of
883 the succs of this block has had a change in it live in
887 df_confluence_function_n con_fun_n
= df_lr
->problem
->con_fun_n
;
888 bitmap_clear (DF_LR_OUT (bb
));
889 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
895 fprintf (dump_file
, "processing block %d lr out = ", bb
->index
);
896 df_print_regset (dump_file
, DF_LR_OUT (bb
));
899 bitmap_copy (local_live
, DF_LR_OUT (bb
));
901 df_simulate_initialize_backwards (bb
, local_live
);
903 FOR_BB_INSNS_REVERSE (bb
, insn
)
908 /* The insn is needed if there is someone who uses the output. */
909 for (def_rec
= DF_INSN_DEFS (insn
); *def_rec
; def_rec
++)
910 if (bitmap_bit_p (local_live
, DF_REF_REGNO (*def_rec
))
911 || bitmap_bit_p (au
, DF_REF_REGNO (*def_rec
)))
918 mark_insn (insn
, true);
920 /* No matter if the instruction is needed or not, we remove
921 any regno in the defs from the live set. */
922 df_simulate_defs (insn
, local_live
);
924 /* On the other hand, we do not allow the dead uses to set
925 anything in local_live. */
926 if (marked_insn_p (insn
))
927 df_simulate_uses (insn
, local_live
);
930 df_simulate_finalize_backwards (bb
, local_live
);
932 block_changed
= !bitmap_equal_p (local_live
, DF_LR_IN (bb
));
934 bitmap_copy (DF_LR_IN (bb
), local_live
);
936 BITMAP_FREE (local_live
);
937 return block_changed
;
941 /* Perform fast DCE once initialization is done. If BYTE_LEVEL is
942 true, use the byte level dce, otherwise do it at the pseudo
946 fast_dce (bool byte_level
)
948 int *postorder
= df_get_postorder (DF_BACKWARD
);
949 int n_blocks
= df_get_n_blocks (DF_BACKWARD
);
950 /* The set of blocks that have been seen on this iteration. */
951 bitmap processed
= BITMAP_ALLOC (&dce_blocks_bitmap_obstack
);
952 /* The set of blocks that need to have the out vectors reset because
953 the in of one of their successors has changed. */
954 bitmap redo_out
= BITMAP_ALLOC (&dce_blocks_bitmap_obstack
);
955 bitmap all_blocks
= BITMAP_ALLOC (&dce_blocks_bitmap_obstack
);
956 bool global_changed
= true;
958 /* These regs are considered always live so if they end up dying
959 because of some def, we need to bring the back again. Calling
960 df_simulate_fixup_sets has the disadvantage of calling
961 bb_has_eh_pred once per insn, so we cache the information
963 bitmap au
= df
->regular_block_artificial_uses
;
964 bitmap au_eh
= df
->eh_block_artificial_uses
;
967 prescan_insns_for_dce (true);
969 for (i
= 0; i
< n_blocks
; i
++)
970 bitmap_set_bit (all_blocks
, postorder
[i
]);
972 while (global_changed
)
974 global_changed
= false;
976 for (i
= 0; i
< n_blocks
; i
++)
978 int index
= postorder
[i
];
979 basic_block bb
= BASIC_BLOCK (index
);
982 if (index
< NUM_FIXED_BLOCKS
)
984 bitmap_set_bit (processed
, index
);
990 = byte_dce_process_block (bb
, bitmap_bit_p (redo_out
, index
),
991 bb_has_eh_pred (bb
) ? au_eh
: au
);
994 = dce_process_block (bb
, bitmap_bit_p (redo_out
, index
),
995 bb_has_eh_pred (bb
) ? au_eh
: au
);
996 bitmap_set_bit (processed
, index
);
1002 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1003 if (bitmap_bit_p (processed
, e
->src
->index
))
1004 /* Be tricky about when we need to iterate the
1005 analysis. We only have redo the analysis if the
1006 bitmaps change at the top of a block that is the
1008 global_changed
= true;
1010 bitmap_set_bit (redo_out
, e
->src
->index
);
1016 /* Turn off the RUN_DCE flag to prevent recursive calls to
1018 int old_flag
= df_clear_flags (DF_LR_RUN_DCE
);
1020 /* So something was deleted that requires a redo. Do it on
1022 delete_unmarked_insns ();
1023 sbitmap_zero (marked
);
1024 bitmap_clear (processed
);
1025 bitmap_clear (redo_out
);
1027 /* We do not need to rescan any instructions. We only need
1028 to redo the dataflow equations for the blocks that had a
1029 change at the top of the block. Then we need to redo the
1032 df_analyze_problem (df_byte_lr
, all_blocks
, postorder
, n_blocks
);
1034 df_analyze_problem (df_lr
, all_blocks
, postorder
, n_blocks
);
1036 if (old_flag
& DF_LR_RUN_DCE
)
1037 df_set_flags (DF_LR_RUN_DCE
);
1039 prescan_insns_for_dce (true);
1043 delete_unmarked_insns ();
1045 BITMAP_FREE (processed
);
1046 BITMAP_FREE (redo_out
);
1047 BITMAP_FREE (all_blocks
);
1051 /* Fast register level DCE. */
1054 rest_of_handle_fast_dce (void)
1063 /* Fast byte level DCE. */
1066 rest_of_handle_fast_byte_dce (void)
1068 df_byte_lr_add_problem ();
1076 /* This is an internal call that is used by the df live register
1077 problem to run fast dce as a side effect of creating the live
1078 information. The stack is organized so that the lr problem is run,
1079 this pass is run, which updates the live info and the df scanning
1080 info, and then returns to allow the rest of the problems to be run.
1082 This can be called by elsewhere but it will not update the bit
1083 vectors for any other problems than LR. */
1086 run_fast_df_dce (void)
1090 /* If dce is able to delete something, it has to happen
1091 immediately. Otherwise there will be problems handling the
1093 enum df_changeable_flags old_flags
1094 = df_clear_flags (DF_DEFER_INSN_RESCAN
+ DF_NO_INSN_RESCAN
);
1096 df_in_progress
= true;
1097 rest_of_handle_fast_dce ();
1098 df_in_progress
= false;
1100 df_set_flags (old_flags
);
1105 /* Run a fast DCE pass. */
1111 rest_of_handle_fast_dce ();
1116 gate_fast_dce (void)
1118 return optimize
> 0 && flag_dce
1119 && dbg_cnt (dce_fast
);
1122 struct rtl_opt_pass pass_fast_rtl_dce
=
1127 gate_fast_dce
, /* gate */
1128 rest_of_handle_fast_dce
, /* execute */
1131 0, /* static_pass_number */
1133 0, /* properties_required */
1134 0, /* properties_provided */
1135 0, /* properties_destroyed */
1136 0, /* todo_flags_start */
1138 TODO_df_finish
| TODO_verify_rtl_sharing
|
1139 TODO_ggc_collect
/* todo_flags_finish */
1143 struct rtl_opt_pass pass_fast_rtl_byte_dce
=
1147 "byte-dce", /* name */
1148 gate_fast_dce
, /* gate */
1149 rest_of_handle_fast_byte_dce
, /* execute */
1152 0, /* static_pass_number */
1154 0, /* properties_required */
1155 0, /* properties_provided */
1156 0, /* properties_destroyed */
1157 0, /* todo_flags_start */
1159 TODO_df_finish
| TODO_verify_rtl_sharing
|
1160 TODO_ggc_collect
/* todo_flags_finish */