2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / dce.c
blobd20906d048f09eed917cf333e77cc476414e7fac
1 /* RTL dead code elimination.
2 Copyright (C) 2005-2015 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "input.h"
26 #include "alias.h"
27 #include "symtab.h"
28 #include "tree.h"
29 #include "regs.h"
30 #include "hard-reg-set.h"
31 #include "flags.h"
32 #include "except.h"
33 #include "dominance.h"
34 #include "cfg.h"
35 #include "cfgrtl.h"
36 #include "cfgbuild.h"
37 #include "cfgcleanup.h"
38 #include "predict.h"
39 #include "basic-block.h"
40 #include "df.h"
41 #include "cselib.h"
42 #include "dce.h"
43 #include "valtrack.h"
44 #include "tree-pass.h"
45 #include "dbgcnt.h"
46 #include "tm_p.h"
47 #include "emit-rtl.h" /* FIXME: Can go away once crtl is moved to rtl.h. */
50 /* -------------------------------------------------------------------------
51 Core mark/delete routines
52 ------------------------------------------------------------------------- */
54 /* True if we are invoked while the df engine is running; in this case,
55 we don't want to reenter it. */
56 static bool df_in_progress = false;
58 /* True if we are allowed to alter the CFG in this pass. */
59 static bool can_alter_cfg = false;
61 /* Instructions that have been marked but whose dependencies have not
62 yet been processed. */
63 static vec<rtx_insn *> worklist;
65 /* Bitmap of instructions marked as needed indexed by INSN_UID. */
66 static sbitmap marked;
68 /* Bitmap obstacks used for block processing by the fast algorithm. */
69 static bitmap_obstack dce_blocks_bitmap_obstack;
70 static bitmap_obstack dce_tmp_bitmap_obstack;
72 static bool find_call_stack_args (rtx_call_insn *, bool, bool, bitmap);
74 /* A subroutine for which BODY is part of the instruction being tested;
75 either the top-level pattern, or an element of a PARALLEL. The
76 instruction is known not to be a bare USE or CLOBBER. */
78 static bool
79 deletable_insn_p_1 (rtx body)
81 switch (GET_CODE (body))
83 case PREFETCH:
84 case TRAP_IF:
85 /* The UNSPEC case was added here because the ia-64 claims that
86 USEs do not work after reload and generates UNSPECS rather
87 than USEs. Since dce is run after reload we need to avoid
88 deleting these even if they are dead. If it turns out that
89 USEs really do work after reload, the ia-64 should be
90 changed, and the UNSPEC case can be removed. */
91 case UNSPEC:
92 return false;
94 default:
95 return !volatile_refs_p (body);
100 /* Return true if INSN is a normal instruction that can be deleted by
101 the DCE pass. */
103 static bool
104 deletable_insn_p (rtx_insn *insn, bool fast, bitmap arg_stores)
106 rtx body, x;
107 int i;
108 df_ref def;
110 if (CALL_P (insn)
111 /* We cannot delete calls inside of the recursive dce because
112 this may cause basic blocks to be deleted and this messes up
113 the rest of the stack of optimization passes. */
114 && (!df_in_progress)
115 /* We cannot delete pure or const sibling calls because it is
116 hard to see the result. */
117 && (!SIBLING_CALL_P (insn))
118 /* We can delete dead const or pure calls as long as they do not
119 infinite loop. */
120 && (RTL_CONST_OR_PURE_CALL_P (insn)
121 && !RTL_LOOPING_CONST_OR_PURE_CALL_P (insn)))
122 return find_call_stack_args (as_a <rtx_call_insn *> (insn), false,
123 fast, arg_stores);
125 /* Don't delete jumps, notes and the like. */
126 if (!NONJUMP_INSN_P (insn))
127 return false;
129 /* Don't delete insns that may throw if we cannot do so. */
130 if (!(cfun->can_delete_dead_exceptions && can_alter_cfg)
131 && !insn_nothrow_p (insn))
132 return false;
134 /* If INSN sets a global_reg, leave it untouched. */
135 FOR_EACH_INSN_DEF (def, insn)
136 if (HARD_REGISTER_NUM_P (DF_REF_REGNO (def))
137 && global_regs[DF_REF_REGNO (def)])
138 return false;
139 /* Initialization of pseudo PIC register should never be removed. */
140 else if (DF_REF_REG (def) == pic_offset_table_rtx
141 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
142 return false;
144 body = PATTERN (insn);
145 switch (GET_CODE (body))
147 case USE:
148 case VAR_LOCATION:
149 return false;
151 case CLOBBER:
152 if (fast)
154 /* A CLOBBER of a dead pseudo register serves no purpose.
155 That is not necessarily true for hard registers until
156 after reload. */
157 x = XEXP (body, 0);
158 return REG_P (x) && (!HARD_REGISTER_P (x) || reload_completed);
160 else
161 /* Because of the way that use-def chains are built, it is not
162 possible to tell if the clobber is dead because it can
163 never be the target of a use-def chain. */
164 return false;
166 case PARALLEL:
167 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
168 if (!deletable_insn_p_1 (XVECEXP (body, 0, i)))
169 return false;
170 return true;
172 default:
173 return deletable_insn_p_1 (body);
178 /* Return true if INSN has been marked as needed. */
180 static inline int
181 marked_insn_p (rtx_insn *insn)
183 /* Artificial defs are always needed and they do not have an insn.
184 We should never see them here. */
185 gcc_assert (insn);
186 return bitmap_bit_p (marked, INSN_UID (insn));
190 /* If INSN has not yet been marked as needed, mark it now, and add it to
191 the worklist. */
193 static void
194 mark_insn (rtx_insn *insn, bool fast)
196 if (!marked_insn_p (insn))
198 if (!fast)
199 worklist.safe_push (insn);
200 bitmap_set_bit (marked, INSN_UID (insn));
201 if (dump_file)
202 fprintf (dump_file, " Adding insn %d to worklist\n", INSN_UID (insn));
203 if (CALL_P (insn)
204 && !df_in_progress
205 && !SIBLING_CALL_P (insn)
206 && (RTL_CONST_OR_PURE_CALL_P (insn)
207 && !RTL_LOOPING_CONST_OR_PURE_CALL_P (insn)))
208 find_call_stack_args (as_a <rtx_call_insn *> (insn), true, fast, NULL);
213 /* A note_stores callback used by mark_nonreg_stores. DATA is the
214 instruction containing DEST. */
216 static void
217 mark_nonreg_stores_1 (rtx dest, const_rtx pattern, void *data)
219 if (GET_CODE (pattern) != CLOBBER && !REG_P (dest))
220 mark_insn ((rtx_insn *) data, true);
224 /* A note_stores callback used by mark_nonreg_stores. DATA is the
225 instruction containing DEST. */
227 static void
228 mark_nonreg_stores_2 (rtx dest, const_rtx pattern, void *data)
230 if (GET_CODE (pattern) != CLOBBER && !REG_P (dest))
231 mark_insn ((rtx_insn *) data, false);
235 /* Mark INSN if BODY stores to a non-register destination. */
237 static void
238 mark_nonreg_stores (rtx body, rtx_insn *insn, bool fast)
240 if (fast)
241 note_stores (body, mark_nonreg_stores_1, insn);
242 else
243 note_stores (body, mark_nonreg_stores_2, insn);
247 /* Return true if store to MEM, starting OFF bytes from stack pointer,
248 is a call argument store, and clear corresponding bits from SP_BYTES
249 bitmap if it is. */
251 static bool
252 check_argument_store (rtx mem, HOST_WIDE_INT off, HOST_WIDE_INT min_sp_off,
253 HOST_WIDE_INT max_sp_off, bitmap sp_bytes)
255 HOST_WIDE_INT byte;
256 for (byte = off; byte < off + GET_MODE_SIZE (GET_MODE (mem)); byte++)
258 if (byte < min_sp_off
259 || byte >= max_sp_off
260 || !bitmap_clear_bit (sp_bytes, byte - min_sp_off))
261 return false;
263 return true;
267 /* Try to find all stack stores of CALL_INSN arguments if
268 ACCUMULATE_OUTGOING_ARGS. If all stack stores have been found
269 and it is therefore safe to eliminate the call, return true,
270 otherwise return false. This function should be first called
271 with DO_MARK false, and only when the CALL_INSN is actually
272 going to be marked called again with DO_MARK true. */
274 static bool
275 find_call_stack_args (rtx_call_insn *call_insn, bool do_mark, bool fast,
276 bitmap arg_stores)
278 rtx p;
279 rtx_insn *insn, *prev_insn;
280 bool ret;
281 HOST_WIDE_INT min_sp_off, max_sp_off;
282 bitmap sp_bytes;
284 gcc_assert (CALL_P (call_insn));
285 if (!ACCUMULATE_OUTGOING_ARGS)
286 return true;
288 if (!do_mark)
290 gcc_assert (arg_stores);
291 bitmap_clear (arg_stores);
294 min_sp_off = INTTYPE_MAXIMUM (HOST_WIDE_INT);
295 max_sp_off = 0;
297 /* First determine the minimum and maximum offset from sp for
298 stored arguments. */
299 for (p = CALL_INSN_FUNCTION_USAGE (call_insn); p; p = XEXP (p, 1))
300 if (GET_CODE (XEXP (p, 0)) == USE
301 && MEM_P (XEXP (XEXP (p, 0), 0)))
303 rtx mem = XEXP (XEXP (p, 0), 0), addr;
304 HOST_WIDE_INT off = 0, size;
305 if (!MEM_SIZE_KNOWN_P (mem))
306 return false;
307 size = MEM_SIZE (mem);
308 addr = XEXP (mem, 0);
309 if (GET_CODE (addr) == PLUS
310 && REG_P (XEXP (addr, 0))
311 && CONST_INT_P (XEXP (addr, 1)))
313 off = INTVAL (XEXP (addr, 1));
314 addr = XEXP (addr, 0);
316 if (addr != stack_pointer_rtx)
318 if (!REG_P (addr))
319 return false;
320 /* If not fast, use chains to see if addr wasn't set to
321 sp + offset. */
322 if (!fast)
324 df_ref use;
325 struct df_link *defs;
326 rtx set;
328 FOR_EACH_INSN_USE (use, call_insn)
329 if (rtx_equal_p (addr, DF_REF_REG (use)))
330 break;
332 if (use == NULL)
333 return false;
335 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
336 if (! DF_REF_IS_ARTIFICIAL (defs->ref))
337 break;
339 if (defs == NULL)
340 return false;
342 set = single_set (DF_REF_INSN (defs->ref));
343 if (!set)
344 return false;
346 if (GET_CODE (SET_SRC (set)) != PLUS
347 || XEXP (SET_SRC (set), 0) != stack_pointer_rtx
348 || !CONST_INT_P (XEXP (SET_SRC (set), 1)))
349 return false;
351 off += INTVAL (XEXP (SET_SRC (set), 1));
353 else
354 return false;
356 min_sp_off = MIN (min_sp_off, off);
357 max_sp_off = MAX (max_sp_off, off + size);
360 if (min_sp_off >= max_sp_off)
361 return true;
362 sp_bytes = BITMAP_ALLOC (NULL);
364 /* Set bits in SP_BYTES bitmap for bytes relative to sp + min_sp_off
365 which contain arguments. Checking has been done in the previous
366 loop. */
367 for (p = CALL_INSN_FUNCTION_USAGE (call_insn); p; p = XEXP (p, 1))
368 if (GET_CODE (XEXP (p, 0)) == USE
369 && MEM_P (XEXP (XEXP (p, 0), 0)))
371 rtx mem = XEXP (XEXP (p, 0), 0), addr;
372 HOST_WIDE_INT off = 0, byte;
373 addr = XEXP (mem, 0);
374 if (GET_CODE (addr) == PLUS
375 && REG_P (XEXP (addr, 0))
376 && CONST_INT_P (XEXP (addr, 1)))
378 off = INTVAL (XEXP (addr, 1));
379 addr = XEXP (addr, 0);
381 if (addr != stack_pointer_rtx)
383 df_ref use;
384 struct df_link *defs;
385 rtx set;
387 FOR_EACH_INSN_USE (use, call_insn)
388 if (rtx_equal_p (addr, DF_REF_REG (use)))
389 break;
391 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
392 if (! DF_REF_IS_ARTIFICIAL (defs->ref))
393 break;
395 set = single_set (DF_REF_INSN (defs->ref));
396 off += INTVAL (XEXP (SET_SRC (set), 1));
398 for (byte = off; byte < off + MEM_SIZE (mem); byte++)
400 if (!bitmap_set_bit (sp_bytes, byte - min_sp_off))
401 gcc_unreachable ();
405 /* Walk backwards, looking for argument stores. The search stops
406 when seeing another call, sp adjustment or memory store other than
407 argument store. */
408 ret = false;
409 for (insn = PREV_INSN (call_insn); insn; insn = prev_insn)
411 rtx set, mem, addr;
412 HOST_WIDE_INT off;
414 if (insn == BB_HEAD (BLOCK_FOR_INSN (call_insn)))
415 prev_insn = NULL;
416 else
417 prev_insn = PREV_INSN (insn);
419 if (CALL_P (insn))
420 break;
422 if (!NONDEBUG_INSN_P (insn))
423 continue;
425 set = single_set (insn);
426 if (!set || SET_DEST (set) == stack_pointer_rtx)
427 break;
429 if (!MEM_P (SET_DEST (set)))
430 continue;
432 mem = SET_DEST (set);
433 addr = XEXP (mem, 0);
434 off = 0;
435 if (GET_CODE (addr) == PLUS
436 && REG_P (XEXP (addr, 0))
437 && CONST_INT_P (XEXP (addr, 1)))
439 off = INTVAL (XEXP (addr, 1));
440 addr = XEXP (addr, 0);
442 if (addr != stack_pointer_rtx)
444 if (!REG_P (addr))
445 break;
446 if (!fast)
448 df_ref use;
449 struct df_link *defs;
450 rtx set;
452 FOR_EACH_INSN_USE (use, insn)
453 if (rtx_equal_p (addr, DF_REF_REG (use)))
454 break;
456 if (use == NULL)
457 break;
459 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
460 if (! DF_REF_IS_ARTIFICIAL (defs->ref))
461 break;
463 if (defs == NULL)
464 break;
466 set = single_set (DF_REF_INSN (defs->ref));
467 if (!set)
468 break;
470 if (GET_CODE (SET_SRC (set)) != PLUS
471 || XEXP (SET_SRC (set), 0) != stack_pointer_rtx
472 || !CONST_INT_P (XEXP (SET_SRC (set), 1)))
473 break;
475 off += INTVAL (XEXP (SET_SRC (set), 1));
477 else
478 break;
481 if (GET_MODE_SIZE (GET_MODE (mem)) == 0
482 || !check_argument_store (mem, off, min_sp_off,
483 max_sp_off, sp_bytes))
484 break;
486 if (!deletable_insn_p (insn, fast, NULL))
487 break;
489 if (do_mark)
490 mark_insn (insn, fast);
491 else
492 bitmap_set_bit (arg_stores, INSN_UID (insn));
494 if (bitmap_empty_p (sp_bytes))
496 ret = true;
497 break;
501 BITMAP_FREE (sp_bytes);
502 if (!ret && arg_stores)
503 bitmap_clear (arg_stores);
505 return ret;
509 /* Remove all REG_EQUAL and REG_EQUIV notes referring to the registers INSN
510 writes to. */
512 static void
513 remove_reg_equal_equiv_notes_for_defs (rtx_insn *insn)
515 df_ref def;
517 FOR_EACH_INSN_DEF (def, insn)
518 remove_reg_equal_equiv_notes_for_regno (DF_REF_REGNO (def));
521 /* Scan all BBs for debug insns and reset those that reference values
522 defined in unmarked insns. */
524 static void
525 reset_unmarked_insns_debug_uses (void)
527 basic_block bb;
528 rtx_insn *insn, *next;
530 FOR_EACH_BB_REVERSE_FN (bb, cfun)
531 FOR_BB_INSNS_REVERSE_SAFE (bb, insn, next)
532 if (DEBUG_INSN_P (insn))
534 df_ref use;
536 FOR_EACH_INSN_USE (use, insn)
538 struct df_link *defs;
539 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
541 rtx_insn *ref_insn;
542 if (DF_REF_IS_ARTIFICIAL (defs->ref))
543 continue;
544 ref_insn = DF_REF_INSN (defs->ref);
545 if (!marked_insn_p (ref_insn))
546 break;
548 if (!defs)
549 continue;
550 /* ??? FIXME could we propagate the values assigned to
551 each of the DEFs? */
552 INSN_VAR_LOCATION_LOC (insn) = gen_rtx_UNKNOWN_VAR_LOC ();
553 df_insn_rescan_debug_internal (insn);
554 break;
559 /* Delete every instruction that hasn't been marked. */
561 static void
562 delete_unmarked_insns (void)
564 basic_block bb;
565 rtx_insn *insn, *next;
566 bool must_clean = false;
568 FOR_EACH_BB_REVERSE_FN (bb, cfun)
569 FOR_BB_INSNS_REVERSE_SAFE (bb, insn, next)
570 if (NONDEBUG_INSN_P (insn))
572 /* Always delete no-op moves. */
573 if (noop_move_p (insn))
576 /* Otherwise rely only on the DCE algorithm. */
577 else if (marked_insn_p (insn))
578 continue;
580 /* Beware that reaching a dbg counter limit here can result
581 in miscompiled file. This occurs when a group of insns
582 must be deleted together, typically because the kept insn
583 depends on the output from the deleted insn. Deleting
584 this insns in reverse order (both at the bb level and
585 when looking at the blocks) minimizes this, but does not
586 eliminate it, since it is possible for the using insn to
587 be top of a block and the producer to be at the bottom of
588 the block. However, in most cases this will only result
589 in an uninitialized use of an insn that is dead anyway.
591 However, there is one rare case that will cause a
592 miscompile: deletion of non-looping pure and constant
593 calls on a machine where ACCUMULATE_OUTGOING_ARGS is true.
594 In this case it is possible to remove the call, but leave
595 the argument pushes to the stack. Because of the changes
596 to the stack pointer, this will almost always lead to a
597 miscompile. */
598 if (!dbg_cnt (dce))
599 continue;
601 if (dump_file)
602 fprintf (dump_file, "DCE: Deleting insn %d\n", INSN_UID (insn));
604 /* Before we delete the insn we have to remove the REG_EQUAL notes
605 for the destination regs in order to avoid dangling notes. */
606 remove_reg_equal_equiv_notes_for_defs (insn);
608 /* If a pure or const call is deleted, this may make the cfg
609 have unreachable blocks. We rememeber this and call
610 delete_unreachable_blocks at the end. */
611 if (CALL_P (insn))
612 must_clean = true;
614 /* Now delete the insn. */
615 delete_insn_and_edges (insn);
618 /* Deleted a pure or const call. */
619 if (must_clean)
620 delete_unreachable_blocks ();
624 /* Go through the instructions and mark those whose necessity is not
625 dependent on inter-instruction information. Make sure all other
626 instructions are not marked. */
628 static void
629 prescan_insns_for_dce (bool fast)
631 basic_block bb;
632 rtx_insn *insn, *prev;
633 bitmap arg_stores = NULL;
635 if (dump_file)
636 fprintf (dump_file, "Finding needed instructions:\n");
638 if (!df_in_progress && ACCUMULATE_OUTGOING_ARGS)
639 arg_stores = BITMAP_ALLOC (NULL);
641 FOR_EACH_BB_FN (bb, cfun)
643 FOR_BB_INSNS_REVERSE_SAFE (bb, insn, prev)
644 if (NONDEBUG_INSN_P (insn))
646 /* Don't mark argument stores now. They will be marked
647 if needed when the associated CALL is marked. */
648 if (arg_stores && bitmap_bit_p (arg_stores, INSN_UID (insn)))
649 continue;
650 if (deletable_insn_p (insn, fast, arg_stores))
651 mark_nonreg_stores (PATTERN (insn), insn, fast);
652 else
653 mark_insn (insn, fast);
655 /* find_call_stack_args only looks at argument stores in the
656 same bb. */
657 if (arg_stores)
658 bitmap_clear (arg_stores);
661 if (arg_stores)
662 BITMAP_FREE (arg_stores);
664 if (dump_file)
665 fprintf (dump_file, "Finished finding needed instructions:\n");
669 /* UD-based DSE routines. */
671 /* Mark instructions that define artificially-used registers, such as
672 the frame pointer and the stack pointer. */
674 static void
675 mark_artificial_uses (void)
677 basic_block bb;
678 struct df_link *defs;
679 df_ref use;
681 FOR_ALL_BB_FN (bb, cfun)
682 FOR_EACH_ARTIFICIAL_USE (use, bb->index)
683 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
684 if (!DF_REF_IS_ARTIFICIAL (defs->ref))
685 mark_insn (DF_REF_INSN (defs->ref), false);
689 /* Mark every instruction that defines a register value that INSN uses. */
691 static void
692 mark_reg_dependencies (rtx_insn *insn)
694 struct df_link *defs;
695 df_ref use;
697 if (DEBUG_INSN_P (insn))
698 return;
700 FOR_EACH_INSN_USE (use, insn)
702 if (dump_file)
704 fprintf (dump_file, "Processing use of ");
705 print_simple_rtl (dump_file, DF_REF_REG (use));
706 fprintf (dump_file, " in insn %d:\n", INSN_UID (insn));
708 for (defs = DF_REF_CHAIN (use); defs; defs = defs->next)
709 if (! DF_REF_IS_ARTIFICIAL (defs->ref))
710 mark_insn (DF_REF_INSN (defs->ref), false);
715 /* Initialize global variables for a new DCE pass. */
717 static void
718 init_dce (bool fast)
720 if (!df_in_progress)
722 if (!fast)
724 df_set_flags (DF_RD_PRUNE_DEAD_DEFS);
725 df_chain_add_problem (DF_UD_CHAIN);
727 df_analyze ();
730 if (dump_file)
731 df_dump (dump_file);
733 if (fast)
735 bitmap_obstack_initialize (&dce_blocks_bitmap_obstack);
736 bitmap_obstack_initialize (&dce_tmp_bitmap_obstack);
737 can_alter_cfg = false;
739 else
740 can_alter_cfg = true;
742 marked = sbitmap_alloc (get_max_uid () + 1);
743 bitmap_clear (marked);
747 /* Free the data allocated by init_dce. */
749 static void
750 fini_dce (bool fast)
752 sbitmap_free (marked);
754 if (fast)
756 bitmap_obstack_release (&dce_blocks_bitmap_obstack);
757 bitmap_obstack_release (&dce_tmp_bitmap_obstack);
762 /* UD-chain based DCE. */
764 static unsigned int
765 rest_of_handle_ud_dce (void)
767 rtx_insn *insn;
769 init_dce (false);
771 prescan_insns_for_dce (false);
772 mark_artificial_uses ();
773 while (worklist.length () > 0)
775 insn = worklist.pop ();
776 mark_reg_dependencies (insn);
778 worklist.release ();
780 if (MAY_HAVE_DEBUG_INSNS)
781 reset_unmarked_insns_debug_uses ();
783 /* Before any insns are deleted, we must remove the chains since
784 they are not bidirectional. */
785 df_remove_problem (df_chain);
786 delete_unmarked_insns ();
788 fini_dce (false);
789 return 0;
793 namespace {
795 const pass_data pass_data_ud_rtl_dce =
797 RTL_PASS, /* type */
798 "ud_dce", /* name */
799 OPTGROUP_NONE, /* optinfo_flags */
800 TV_DCE, /* tv_id */
801 0, /* properties_required */
802 0, /* properties_provided */
803 0, /* properties_destroyed */
804 0, /* todo_flags_start */
805 TODO_df_finish, /* todo_flags_finish */
808 class pass_ud_rtl_dce : public rtl_opt_pass
810 public:
811 pass_ud_rtl_dce (gcc::context *ctxt)
812 : rtl_opt_pass (pass_data_ud_rtl_dce, ctxt)
815 /* opt_pass methods: */
816 virtual bool gate (function *)
818 return optimize > 1 && flag_dce && dbg_cnt (dce_ud);
821 virtual unsigned int execute (function *)
823 return rest_of_handle_ud_dce ();
826 }; // class pass_ud_rtl_dce
828 } // anon namespace
830 rtl_opt_pass *
831 make_pass_ud_rtl_dce (gcc::context *ctxt)
833 return new pass_ud_rtl_dce (ctxt);
837 /* -------------------------------------------------------------------------
838 Fast DCE functions
839 ------------------------------------------------------------------------- */
841 /* Process basic block BB. Return true if the live_in set has
842 changed. REDO_OUT is true if the info at the bottom of the block
843 needs to be recalculated before starting. AU is the proper set of
844 artificial uses. Track global substitution of uses of dead pseudos
845 in debug insns using GLOBAL_DEBUG. */
847 static bool
848 word_dce_process_block (basic_block bb, bool redo_out,
849 struct dead_debug_global *global_debug)
851 bitmap local_live = BITMAP_ALLOC (&dce_tmp_bitmap_obstack);
852 rtx_insn *insn;
853 bool block_changed;
854 struct dead_debug_local debug;
856 if (redo_out)
858 /* Need to redo the live_out set of this block if when one of
859 the succs of this block has had a change in it live in
860 set. */
861 edge e;
862 edge_iterator ei;
863 df_confluence_function_n con_fun_n = df_word_lr->problem->con_fun_n;
864 bitmap_clear (DF_WORD_LR_OUT (bb));
865 FOR_EACH_EDGE (e, ei, bb->succs)
866 (*con_fun_n) (e);
869 if (dump_file)
871 fprintf (dump_file, "processing block %d live out = ", bb->index);
872 df_print_word_regset (dump_file, DF_WORD_LR_OUT (bb));
875 bitmap_copy (local_live, DF_WORD_LR_OUT (bb));
876 dead_debug_local_init (&debug, NULL, global_debug);
878 FOR_BB_INSNS_REVERSE (bb, insn)
879 if (DEBUG_INSN_P (insn))
881 df_ref use;
882 FOR_EACH_INSN_USE (use, insn)
883 if (DF_REF_REGNO (use) >= FIRST_PSEUDO_REGISTER
884 && (GET_MODE_SIZE (GET_MODE (DF_REF_REAL_REG (use)))
885 == 2 * UNITS_PER_WORD)
886 && !bitmap_bit_p (local_live, 2 * DF_REF_REGNO (use))
887 && !bitmap_bit_p (local_live, 2 * DF_REF_REGNO (use) + 1))
888 dead_debug_add (&debug, use, DF_REF_REGNO (use));
890 else if (INSN_P (insn))
892 bool any_changed;
894 /* No matter if the instruction is needed or not, we remove
895 any regno in the defs from the live set. */
896 any_changed = df_word_lr_simulate_defs (insn, local_live);
897 if (any_changed)
898 mark_insn (insn, true);
900 /* On the other hand, we do not allow the dead uses to set
901 anything in local_live. */
902 if (marked_insn_p (insn))
903 df_word_lr_simulate_uses (insn, local_live);
905 /* Insert debug temps for dead REGs used in subsequent debug
906 insns. We may have to emit a debug temp even if the insn
907 was marked, in case the debug use was after the point of
908 death. */
909 if (debug.used && !bitmap_empty_p (debug.used))
911 df_ref def;
913 FOR_EACH_INSN_DEF (def, insn)
914 dead_debug_insert_temp (&debug, DF_REF_REGNO (def), insn,
915 marked_insn_p (insn)
916 && !control_flow_insn_p (insn)
917 ? DEBUG_TEMP_AFTER_WITH_REG_FORCE
918 : DEBUG_TEMP_BEFORE_WITH_VALUE);
921 if (dump_file)
923 fprintf (dump_file, "finished processing insn %d live out = ",
924 INSN_UID (insn));
925 df_print_word_regset (dump_file, local_live);
929 block_changed = !bitmap_equal_p (local_live, DF_WORD_LR_IN (bb));
930 if (block_changed)
931 bitmap_copy (DF_WORD_LR_IN (bb), local_live);
933 dead_debug_local_finish (&debug, NULL);
934 BITMAP_FREE (local_live);
935 return block_changed;
939 /* Process basic block BB. Return true if the live_in set has
940 changed. REDO_OUT is true if the info at the bottom of the block
941 needs to be recalculated before starting. AU is the proper set of
942 artificial uses. Track global substitution of uses of dead pseudos
943 in debug insns using GLOBAL_DEBUG. */
945 static bool
946 dce_process_block (basic_block bb, bool redo_out, bitmap au,
947 struct dead_debug_global *global_debug)
949 bitmap local_live = BITMAP_ALLOC (&dce_tmp_bitmap_obstack);
950 rtx_insn *insn;
951 bool block_changed;
952 df_ref def;
953 struct dead_debug_local debug;
955 if (redo_out)
957 /* Need to redo the live_out set of this block if when one of
958 the succs of this block has had a change in it live in
959 set. */
960 edge e;
961 edge_iterator ei;
962 df_confluence_function_n con_fun_n = df_lr->problem->con_fun_n;
963 bitmap_clear (DF_LR_OUT (bb));
964 FOR_EACH_EDGE (e, ei, bb->succs)
965 (*con_fun_n) (e);
968 if (dump_file)
970 fprintf (dump_file, "processing block %d lr out = ", bb->index);
971 df_print_regset (dump_file, DF_LR_OUT (bb));
974 bitmap_copy (local_live, DF_LR_OUT (bb));
976 df_simulate_initialize_backwards (bb, local_live);
977 dead_debug_local_init (&debug, NULL, global_debug);
979 FOR_BB_INSNS_REVERSE (bb, insn)
980 if (DEBUG_INSN_P (insn))
982 df_ref use;
983 FOR_EACH_INSN_USE (use, insn)
984 if (!bitmap_bit_p (local_live, DF_REF_REGNO (use))
985 && !bitmap_bit_p (au, DF_REF_REGNO (use)))
986 dead_debug_add (&debug, use, DF_REF_REGNO (use));
988 else if (INSN_P (insn))
990 bool needed = marked_insn_p (insn);
992 /* The insn is needed if there is someone who uses the output. */
993 if (!needed)
994 FOR_EACH_INSN_DEF (def, insn)
995 if (bitmap_bit_p (local_live, DF_REF_REGNO (def))
996 || bitmap_bit_p (au, DF_REF_REGNO (def)))
998 needed = true;
999 mark_insn (insn, true);
1000 break;
1003 /* No matter if the instruction is needed or not, we remove
1004 any regno in the defs from the live set. */
1005 df_simulate_defs (insn, local_live);
1007 /* On the other hand, we do not allow the dead uses to set
1008 anything in local_live. */
1009 if (needed)
1010 df_simulate_uses (insn, local_live);
1012 /* Insert debug temps for dead REGs used in subsequent debug
1013 insns. We may have to emit a debug temp even if the insn
1014 was marked, in case the debug use was after the point of
1015 death. */
1016 if (debug.used && !bitmap_empty_p (debug.used))
1017 FOR_EACH_INSN_DEF (def, insn)
1018 dead_debug_insert_temp (&debug, DF_REF_REGNO (def), insn,
1019 needed && !control_flow_insn_p (insn)
1020 ? DEBUG_TEMP_AFTER_WITH_REG_FORCE
1021 : DEBUG_TEMP_BEFORE_WITH_VALUE);
1024 dead_debug_local_finish (&debug, NULL);
1025 df_simulate_finalize_backwards (bb, local_live);
1027 block_changed = !bitmap_equal_p (local_live, DF_LR_IN (bb));
1028 if (block_changed)
1029 bitmap_copy (DF_LR_IN (bb), local_live);
1031 BITMAP_FREE (local_live);
1032 return block_changed;
1036 /* Perform fast DCE once initialization is done. If WORD_LEVEL is
1037 true, use the word level dce, otherwise do it at the pseudo
1038 level. */
1040 static void
1041 fast_dce (bool word_level)
1043 int *postorder = df_get_postorder (DF_BACKWARD);
1044 int n_blocks = df_get_n_blocks (DF_BACKWARD);
1045 /* The set of blocks that have been seen on this iteration. */
1046 bitmap processed = BITMAP_ALLOC (&dce_blocks_bitmap_obstack);
1047 /* The set of blocks that need to have the out vectors reset because
1048 the in of one of their successors has changed. */
1049 bitmap redo_out = BITMAP_ALLOC (&dce_blocks_bitmap_obstack);
1050 bitmap all_blocks = BITMAP_ALLOC (&dce_blocks_bitmap_obstack);
1051 bool global_changed = true;
1053 /* These regs are considered always live so if they end up dying
1054 because of some def, we need to bring the back again. Calling
1055 df_simulate_fixup_sets has the disadvantage of calling
1056 bb_has_eh_pred once per insn, so we cache the information
1057 here. */
1058 bitmap au = &df->regular_block_artificial_uses;
1059 bitmap au_eh = &df->eh_block_artificial_uses;
1060 int i;
1061 struct dead_debug_global global_debug;
1063 prescan_insns_for_dce (true);
1065 for (i = 0; i < n_blocks; i++)
1066 bitmap_set_bit (all_blocks, postorder[i]);
1068 dead_debug_global_init (&global_debug, NULL);
1070 while (global_changed)
1072 global_changed = false;
1074 for (i = 0; i < n_blocks; i++)
1076 int index = postorder[i];
1077 basic_block bb = BASIC_BLOCK_FOR_FN (cfun, index);
1078 bool local_changed;
1080 if (index < NUM_FIXED_BLOCKS)
1082 bitmap_set_bit (processed, index);
1083 continue;
1086 if (word_level)
1087 local_changed
1088 = word_dce_process_block (bb, bitmap_bit_p (redo_out, index),
1089 &global_debug);
1090 else
1091 local_changed
1092 = dce_process_block (bb, bitmap_bit_p (redo_out, index),
1093 bb_has_eh_pred (bb) ? au_eh : au,
1094 &global_debug);
1095 bitmap_set_bit (processed, index);
1097 if (local_changed)
1099 edge e;
1100 edge_iterator ei;
1101 FOR_EACH_EDGE (e, ei, bb->preds)
1102 if (bitmap_bit_p (processed, e->src->index))
1103 /* Be tricky about when we need to iterate the
1104 analysis. We only have redo the analysis if the
1105 bitmaps change at the top of a block that is the
1106 entry to a loop. */
1107 global_changed = true;
1108 else
1109 bitmap_set_bit (redo_out, e->src->index);
1113 if (global_changed)
1115 /* Turn off the RUN_DCE flag to prevent recursive calls to
1116 dce. */
1117 int old_flag = df_clear_flags (DF_LR_RUN_DCE);
1119 /* So something was deleted that requires a redo. Do it on
1120 the cheap. */
1121 delete_unmarked_insns ();
1122 bitmap_clear (marked);
1123 bitmap_clear (processed);
1124 bitmap_clear (redo_out);
1126 /* We do not need to rescan any instructions. We only need
1127 to redo the dataflow equations for the blocks that had a
1128 change at the top of the block. Then we need to redo the
1129 iteration. */
1130 if (word_level)
1131 df_analyze_problem (df_word_lr, all_blocks, postorder, n_blocks);
1132 else
1133 df_analyze_problem (df_lr, all_blocks, postorder, n_blocks);
1135 if (old_flag & DF_LR_RUN_DCE)
1136 df_set_flags (DF_LR_RUN_DCE);
1138 prescan_insns_for_dce (true);
1142 dead_debug_global_finish (&global_debug, NULL);
1144 delete_unmarked_insns ();
1146 BITMAP_FREE (processed);
1147 BITMAP_FREE (redo_out);
1148 BITMAP_FREE (all_blocks);
1152 /* Fast register level DCE. */
1154 static unsigned int
1155 rest_of_handle_fast_dce (void)
1157 init_dce (true);
1158 fast_dce (false);
1159 fini_dce (true);
1160 return 0;
1164 /* Fast byte level DCE. */
1166 void
1167 run_word_dce (void)
1169 int old_flags;
1171 if (!flag_dce)
1172 return;
1174 timevar_push (TV_DCE);
1175 old_flags = df_clear_flags (DF_DEFER_INSN_RESCAN + DF_NO_INSN_RESCAN);
1176 df_word_lr_add_problem ();
1177 init_dce (true);
1178 fast_dce (true);
1179 fini_dce (true);
1180 df_set_flags (old_flags);
1181 timevar_pop (TV_DCE);
1185 /* This is an internal call that is used by the df live register
1186 problem to run fast dce as a side effect of creating the live
1187 information. The stack is organized so that the lr problem is run,
1188 this pass is run, which updates the live info and the df scanning
1189 info, and then returns to allow the rest of the problems to be run.
1191 This can be called by elsewhere but it will not update the bit
1192 vectors for any other problems than LR. */
1194 void
1195 run_fast_df_dce (void)
1197 if (flag_dce)
1199 /* If dce is able to delete something, it has to happen
1200 immediately. Otherwise there will be problems handling the
1201 eq_notes. */
1202 int old_flags =
1203 df_clear_flags (DF_DEFER_INSN_RESCAN + DF_NO_INSN_RESCAN);
1205 df_in_progress = true;
1206 rest_of_handle_fast_dce ();
1207 df_in_progress = false;
1209 df_set_flags (old_flags);
1214 /* Run a fast DCE pass. */
1216 void
1217 run_fast_dce (void)
1219 if (flag_dce)
1220 rest_of_handle_fast_dce ();
1224 namespace {
1226 const pass_data pass_data_fast_rtl_dce =
1228 RTL_PASS, /* type */
1229 "rtl_dce", /* name */
1230 OPTGROUP_NONE, /* optinfo_flags */
1231 TV_DCE, /* tv_id */
1232 0, /* properties_required */
1233 0, /* properties_provided */
1234 0, /* properties_destroyed */
1235 0, /* todo_flags_start */
1236 TODO_df_finish, /* todo_flags_finish */
1239 class pass_fast_rtl_dce : public rtl_opt_pass
1241 public:
1242 pass_fast_rtl_dce (gcc::context *ctxt)
1243 : rtl_opt_pass (pass_data_fast_rtl_dce, ctxt)
1246 /* opt_pass methods: */
1247 virtual bool gate (function *)
1249 return optimize > 0 && flag_dce && dbg_cnt (dce_fast);
1252 virtual unsigned int execute (function *)
1254 return rest_of_handle_fast_dce ();
1257 }; // class pass_fast_rtl_dce
1259 } // anon namespace
1261 rtl_opt_pass *
1262 make_pass_fast_rtl_dce (gcc::context *ctxt)
1264 return new pass_fast_rtl_dce (ctxt);