1 /* Dead code elimination pass for the GNU compiler.
2 Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Ben Elliston <bje@redhat.com>
4 and Andrew MacLeod <amacleod@redhat.com>
5 Adapted to use control dependence by Steven Bosscher, SUSE Labs.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2, or (at your option) any
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING. If not, write to the Free
21 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 /* Dead code elimination.
28 Building an Optimizing Compiler,
29 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
31 Advanced Compiler Design and Implementation,
32 Steven Muchnick, Morgan Kaufmann, 1997, Section 18.10.
34 Dead-code elimination is the removal of statements which have no
35 impact on the program's output. "Dead statements" have no impact
36 on the program's output, while "necessary statements" may have
39 The algorithm consists of three phases:
40 1. Marking as necessary all statements known to be necessary,
41 e.g. most function calls, writing a value to memory, etc;
42 2. Propagating necessary statements, e.g., the statements
43 giving values to operands in necessary statements; and
44 3. Removing dead statements. */
48 #include "coretypes.h"
53 /* These RTL headers are needed for basic-block.h. */
56 #include "hard-reg-set.h"
57 #include "basic-block.h"
60 #include "diagnostic.h"
61 #include "tree-flow.h"
62 #include "tree-gimple.h"
63 #include "tree-dump.h"
64 #include "tree-pass.h"
68 static struct stmt_stats
76 static varray_type worklist
;
78 /* Vector indicating an SSA name has already been processed and marked
80 static sbitmap processed
;
82 /* Vector indicating that last_stmt if a basic block has already been
83 marked as necessary. */
84 static sbitmap last_stmt_necessary
;
86 /* Before we can determine whether a control branch is dead, we need to
87 compute which blocks are control dependent on which edges.
89 We expect each block to be control dependent on very few edges so we
90 use a bitmap for each block recording its edges. An array holds the
91 bitmap. The Ith bit in the bitmap is set if that block is dependent
93 bitmap
*control_dependence_map
;
95 /* Execute CODE for each edge (given number EDGE_NUMBER within the CODE)
96 for which the block with index N is control dependent. */
97 #define EXECUTE_IF_CONTROL_DEPENDENT(N, EDGE_NUMBER, CODE) \
98 EXECUTE_IF_SET_IN_BITMAP (control_dependence_map[N], 0, EDGE_NUMBER, CODE)
100 /* Local function prototypes. */
101 static inline void set_control_dependence_map_bit (basic_block
, int);
102 static inline void clear_control_dependence_bitmap (basic_block
);
103 static void find_all_control_dependences (struct edge_list
*);
104 static void find_control_dependence (struct edge_list
*, int);
105 static inline basic_block
find_pdom (basic_block
);
107 static inline void mark_stmt_necessary (tree
, bool);
108 static inline void mark_operand_necessary (tree
);
110 static void mark_stmt_if_obviously_necessary (tree
, bool);
111 static void find_obviously_necessary_stmts (struct edge_list
*);
113 static void mark_control_dependent_edges_necessary (basic_block
, struct edge_list
*);
114 static void propagate_necessity (struct edge_list
*);
116 static void eliminate_unnecessary_stmts (void);
117 static void remove_dead_phis (basic_block
);
118 static void remove_dead_stmt (block_stmt_iterator
*, basic_block
);
120 static void print_stats (void);
121 static void tree_dce_init (bool);
122 static void tree_dce_done (bool);
124 /* Indicate block BB is control dependent on an edge with index EDGE_INDEX. */
126 set_control_dependence_map_bit (basic_block bb
, int edge_index
)
128 if (bb
== ENTRY_BLOCK_PTR
)
130 gcc_assert (bb
!= EXIT_BLOCK_PTR
);
131 bitmap_set_bit (control_dependence_map
[bb
->index
], edge_index
);
134 /* Clear all control dependences for block BB. */
136 void clear_control_dependence_bitmap (basic_block bb
)
138 bitmap_clear (control_dependence_map
[bb
->index
]);
141 /* Record all blocks' control dependences on all edges in the edge
142 list EL, ala Morgan, Section 3.6. */
145 find_all_control_dependences (struct edge_list
*el
)
149 for (i
= 0; i
< NUM_EDGES (el
); ++i
)
150 find_control_dependence (el
, i
);
153 /* Determine all blocks' control dependences on the given edge with edge_list
154 EL index EDGE_INDEX, ala Morgan, Section 3.6. */
157 find_control_dependence (struct edge_list
*el
, int edge_index
)
159 basic_block current_block
;
160 basic_block ending_block
;
162 gcc_assert (INDEX_EDGE_PRED_BB (el
, edge_index
) != EXIT_BLOCK_PTR
);
164 if (INDEX_EDGE_PRED_BB (el
, edge_index
) == ENTRY_BLOCK_PTR
)
165 ending_block
= ENTRY_BLOCK_PTR
->next_bb
;
167 ending_block
= find_pdom (INDEX_EDGE_PRED_BB (el
, edge_index
));
169 for (current_block
= INDEX_EDGE_SUCC_BB (el
, edge_index
);
170 current_block
!= ending_block
&& current_block
!= EXIT_BLOCK_PTR
;
171 current_block
= find_pdom (current_block
))
173 edge e
= INDEX_EDGE (el
, edge_index
);
175 /* For abnormal edges, we don't make current_block control
176 dependent because instructions that throw are always necessary
178 if (e
->flags
& EDGE_ABNORMAL
)
181 set_control_dependence_map_bit (current_block
, edge_index
);
185 /* Find the immediate postdominator PDOM of the specified basic block BLOCK.
186 This function is necessary because some blocks have negative numbers. */
188 static inline basic_block
189 find_pdom (basic_block block
)
191 gcc_assert (block
!= ENTRY_BLOCK_PTR
);
193 if (block
== EXIT_BLOCK_PTR
)
194 return EXIT_BLOCK_PTR
;
197 basic_block bb
= get_immediate_dominator (CDI_POST_DOMINATORS
, block
);
199 return EXIT_BLOCK_PTR
;
204 #define NECESSARY(stmt) stmt->common.asm_written_flag
206 /* If STMT is not already marked necessary, mark it, and add it to the
207 worklist if ADD_TO_WORKLIST is true. */
209 mark_stmt_necessary (tree stmt
, bool add_to_worklist
)
212 gcc_assert (stmt
!= error_mark_node
);
213 gcc_assert (!DECL_P (stmt
));
215 if (NECESSARY (stmt
))
218 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
220 fprintf (dump_file
, "Marking useful stmt: ");
221 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
222 fprintf (dump_file
, "\n");
225 NECESSARY (stmt
) = 1;
227 VARRAY_PUSH_TREE (worklist
, stmt
);
230 /* Mark the statement defining operand OP as necessary. */
233 mark_operand_necessary (tree op
)
240 ver
= SSA_NAME_VERSION (op
);
241 if (TEST_BIT (processed
, ver
))
243 SET_BIT (processed
, ver
);
245 stmt
= SSA_NAME_DEF_STMT (op
);
249 || IS_EMPTY_STMT (stmt
))
252 NECESSARY (stmt
) = 1;
253 VARRAY_PUSH_TREE (worklist
, stmt
);
257 /* Mark STMT as necessary if it is obviously is. Add it to the worklist if
258 it can make other statements necessary.
260 If AGGRESSIVE is false, control statements are conservatively marked as
264 mark_stmt_if_obviously_necessary (tree stmt
, bool aggressive
)
266 v_may_def_optype v_may_defs
;
267 v_must_def_optype v_must_defs
;
272 /* Statements that are implicitly live. Most function calls, asm and return
273 statements are required. Labels and BIND_EXPR nodes are kept because
274 they are control flow, and we have no way of knowing whether they can be
275 removed. DCE can eliminate all the other statements in a block, and CFG
276 can then remove the block and labels. */
277 switch (TREE_CODE (stmt
))
281 case CASE_LABEL_EXPR
:
282 mark_stmt_necessary (stmt
, false);
288 mark_stmt_necessary (stmt
, true);
292 /* Most, but not all function calls are required. Function calls that
293 produce no result and have no side effects (i.e. const pure
294 functions) are unnecessary. */
295 if (TREE_SIDE_EFFECTS (stmt
))
296 mark_stmt_necessary (stmt
, true);
300 op
= get_call_expr_in (stmt
);
301 if (op
&& TREE_SIDE_EFFECTS (op
))
303 mark_stmt_necessary (stmt
, true);
307 /* These values are mildly magic bits of the EH runtime. We can't
308 see the entire lifetime of these values until landing pads are
310 if (TREE_CODE (TREE_OPERAND (stmt
, 0)) == EXC_PTR_EXPR
311 || TREE_CODE (TREE_OPERAND (stmt
, 0)) == FILTER_EXPR
)
313 mark_stmt_necessary (stmt
, true);
319 if (! simple_goto_p (stmt
))
320 mark_stmt_necessary (stmt
, true);
324 if (GOTO_DESTINATION (COND_EXPR_THEN (stmt
))
325 == GOTO_DESTINATION (COND_EXPR_ELSE (stmt
)))
327 /* A COND_EXPR is obviously dead if the target labels are the same.
328 We cannot kill the statement at this point, so to prevent the
329 statement from being marked necessary, we replace the condition
330 with a constant. The stmt is killed later on in cfg_cleanup. */
331 COND_EXPR_COND (stmt
) = integer_zero_node
;
339 mark_stmt_necessary (stmt
, true);
346 ann
= stmt_ann (stmt
);
348 /* If the statement has volatile operands, it needs to be preserved.
349 Same for statements that can alter control flow in unpredictable
351 if (ann
->has_volatile_ops
|| is_ctrl_altering_stmt (stmt
))
353 mark_stmt_necessary (stmt
, true);
357 get_stmt_operands (stmt
);
359 FOR_EACH_SSA_TREE_OPERAND (def
, stmt
, iter
, SSA_OP_DEF
)
361 if (is_global_var (SSA_NAME_VAR (def
)))
363 mark_stmt_necessary (stmt
, true);
368 /* Check virtual definitions. If we get here, the only virtual
369 definitions we should see are those generated by assignment
371 v_may_defs
= V_MAY_DEF_OPS (ann
);
372 v_must_defs
= V_MUST_DEF_OPS (ann
);
373 if (NUM_V_MAY_DEFS (v_may_defs
) > 0 || NUM_V_MUST_DEFS (v_must_defs
) > 0)
377 gcc_assert (TREE_CODE (stmt
) == MODIFY_EXPR
);
379 /* Note that we must not check the individual virtual operands
380 here. In particular, if this is an aliased store, we could
381 end up with something like the following (SSA notation
382 redacted for brevity):
387 p_1 = (i_2 > 3) ? &x : p_1;
389 # x_4 = V_MAY_DEF <x_3>
395 Notice that the store to '*p_1' should be preserved, if we
396 were to check the virtual definitions in that store, we would
397 not mark it needed. This is because 'x' is not a global
400 Therefore, we check the base address of the LHS. If the
401 address is a pointer, we check if its name tag or type tag is
402 a global variable. Otherwise, we check if the base variable
404 lhs
= TREE_OPERAND (stmt
, 0);
405 if (REFERENCE_CLASS_P (lhs
))
406 lhs
= get_base_address (lhs
);
408 if (lhs
== NULL_TREE
)
410 /* If LHS is NULL, it means that we couldn't get the base
411 address of the reference. In which case, we should not
412 remove this store. */
413 mark_stmt_necessary (stmt
, true);
415 else if (DECL_P (lhs
))
417 /* If the store is to a global symbol, we need to keep it. */
418 if (is_global_var (lhs
))
419 mark_stmt_necessary (stmt
, true);
421 else if (TREE_CODE (lhs
) == INDIRECT_REF
422 || TREE_CODE (lhs
) == ALIGN_INDIRECT_REF
423 || TREE_CODE (lhs
) == MISALIGNED_INDIRECT_REF
)
425 tree ptr
= TREE_OPERAND (lhs
, 0);
426 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (ptr
);
427 tree nmt
= (pi
) ? pi
->name_mem_tag
: NULL_TREE
;
428 tree tmt
= var_ann (SSA_NAME_VAR (ptr
))->type_mem_tag
;
430 /* If either the name tag or the type tag for PTR is a
431 global variable, then the store is necessary. */
432 if ((nmt
&& is_global_var (nmt
))
433 || (tmt
&& is_global_var (tmt
)))
435 mark_stmt_necessary (stmt
, true);
446 /* Find obviously necessary statements. These are things like most function
447 calls, and stores to file level variables.
449 If EL is NULL, control statements are conservatively marked as
450 necessary. Otherwise it contains the list of edges used by control
451 dependence analysis. */
454 find_obviously_necessary_stmts (struct edge_list
*el
)
457 block_stmt_iterator i
;
464 /* Check any PHI nodes in the block. */
465 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
469 /* PHIs for virtual variables do not directly affect code
470 generation and need not be considered inherently necessary
471 regardless of the bits set in their decl.
473 Thus, we only need to mark PHIs for real variables which
474 need their result preserved as being inherently necessary. */
475 if (is_gimple_reg (PHI_RESULT (phi
))
476 && is_global_var (SSA_NAME_VAR (PHI_RESULT (phi
))))
477 mark_stmt_necessary (phi
, true);
480 /* Check all statements in the block. */
481 for (i
= bsi_start (bb
); ! bsi_end_p (i
); bsi_next (&i
))
483 tree stmt
= bsi_stmt (i
);
484 NECESSARY (stmt
) = 0;
485 mark_stmt_if_obviously_necessary (stmt
, el
!= NULL
);
488 /* Mark this basic block as `not visited'. A block will be marked
489 visited when the edges that it is control dependent on have been
491 bb
->flags
&= ~BB_VISITED
;
496 /* Prevent the loops from being removed. We must keep the infinite loops,
497 and we currently do not have a means to recognize the finite ones. */
500 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
501 if (e
->flags
& EDGE_DFS_BACK
)
502 mark_control_dependent_edges_necessary (e
->dest
, el
);
507 /* Make corresponding control dependent edges necessary. We only
508 have to do this once for each basic block, so we clear the bitmap
511 mark_control_dependent_edges_necessary (basic_block bb
, struct edge_list
*el
)
515 gcc_assert (bb
!= EXIT_BLOCK_PTR
);
517 if (bb
== ENTRY_BLOCK_PTR
)
520 EXECUTE_IF_CONTROL_DEPENDENT (bb
->index
, edge_number
,
523 basic_block cd_bb
= INDEX_EDGE_PRED_BB (el
, edge_number
);
525 if (TEST_BIT (last_stmt_necessary
, cd_bb
->index
))
527 SET_BIT (last_stmt_necessary
, cd_bb
->index
);
529 t
= last_stmt (cd_bb
);
530 if (t
&& is_ctrl_stmt (t
))
531 mark_stmt_necessary (t
, true);
535 /* Propagate necessity using the operands of necessary statements. Process
536 the uses on each statement in the worklist, and add all feeding statements
537 which contribute to the calculation of this value to the worklist.
539 In conservative mode, EL is NULL. */
542 propagate_necessity (struct edge_list
*el
)
545 bool aggressive
= (el
? true : false);
547 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
548 fprintf (dump_file
, "\nProcessing worklist:\n");
550 while (VARRAY_ACTIVE_SIZE (worklist
) > 0)
552 /* Take `i' from worklist. */
553 i
= VARRAY_TOP_TREE (worklist
);
554 VARRAY_POP (worklist
);
556 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
558 fprintf (dump_file
, "processing: ");
559 print_generic_stmt (dump_file
, i
, TDF_SLIM
);
560 fprintf (dump_file
, "\n");
565 /* Mark the last statements of the basic blocks that the block
566 containing `i' is control dependent on, but only if we haven't
568 basic_block bb
= bb_for_stmt (i
);
569 if (! (bb
->flags
& BB_VISITED
))
571 bb
->flags
|= BB_VISITED
;
572 mark_control_dependent_edges_necessary (bb
, el
);
576 if (TREE_CODE (i
) == PHI_NODE
)
578 /* PHI nodes are somewhat special in that each PHI alternative has
579 data and control dependencies. All the statements feeding the
580 PHI node's arguments are always necessary. In aggressive mode,
581 we also consider the control dependent edges leading to the
582 predecessor block associated with each PHI alternative as
585 for (k
= 0; k
< PHI_NUM_ARGS (i
); k
++)
587 tree arg
= PHI_ARG_DEF (i
, k
);
588 if (TREE_CODE (arg
) == SSA_NAME
)
589 mark_operand_necessary (arg
);
594 for (k
= 0; k
< PHI_NUM_ARGS (i
); k
++)
596 basic_block arg_bb
= PHI_ARG_EDGE (i
, k
)->src
;
597 if (! (arg_bb
->flags
& BB_VISITED
))
599 arg_bb
->flags
|= BB_VISITED
;
600 mark_control_dependent_edges_necessary (arg_bb
, el
);
607 /* Propagate through the operands. Examine all the USE, VUSE and
608 V_MAY_DEF operands in this statement. Mark all the statements
609 which feed this statement's uses as necessary. */
613 get_stmt_operands (i
);
615 /* The operands of V_MAY_DEF expressions are also needed as they
616 represent potential definitions that may reach this
617 statement (V_MAY_DEF operands allow us to follow def-def
620 FOR_EACH_SSA_TREE_OPERAND (use
, i
, iter
, SSA_OP_ALL_USES
)
621 mark_operand_necessary (use
);
626 /* Eliminate unnecessary statements. Any instruction not marked as necessary
627 contributes nothing to the program, and can be deleted. */
630 eliminate_unnecessary_stmts (void)
633 block_stmt_iterator i
;
635 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
636 fprintf (dump_file
, "\nEliminating unnecessary statements:\n");
638 clear_special_calls ();
641 /* Remove dead PHI nodes. */
642 remove_dead_phis (bb
);
644 /* Remove dead statements. */
645 for (i
= bsi_start (bb
); ! bsi_end_p (i
) ; )
647 tree t
= bsi_stmt (i
);
651 /* If `i' is not necessary then remove it. */
653 remove_dead_stmt (&i
, bb
);
656 tree call
= get_call_expr_in (t
);
658 notice_special_calls (call
);
665 /* Remove dead PHI nodes from block BB. */
668 remove_dead_phis (basic_block bb
)
673 phi
= phi_nodes (bb
);
678 if (! NECESSARY (phi
))
680 tree next
= PHI_CHAIN (phi
);
682 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
684 fprintf (dump_file
, "Deleting : ");
685 print_generic_stmt (dump_file
, phi
, TDF_SLIM
);
686 fprintf (dump_file
, "\n");
689 remove_phi_node (phi
, prev
, bb
);
690 stats
.removed_phis
++;
696 phi
= PHI_CHAIN (phi
);
701 /* Remove dead statement pointed by iterator I. Receives the basic block BB
702 containing I so that we don't have to look it up. */
705 remove_dead_stmt (block_stmt_iterator
*i
, basic_block bb
)
707 tree t
= bsi_stmt (*i
);
709 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
711 fprintf (dump_file
, "Deleting : ");
712 print_generic_stmt (dump_file
, t
, TDF_SLIM
);
713 fprintf (dump_file
, "\n");
718 /* If we have determined that a conditional branch statement contributes
719 nothing to the program, then we not only remove it, but we also change
720 the flow graph so that the current block will simply fall-thru to its
721 immediate post-dominator. The blocks we are circumventing will be
722 removed by cleaup_cfg if this change in the flow graph makes them
724 if (is_ctrl_stmt (t
))
726 basic_block post_dom_bb
;
728 /* The post dominance info has to be up-to-date. */
729 gcc_assert (dom_computed
[CDI_POST_DOMINATORS
] == DOM_OK
);
730 /* Get the immediate post dominator of bb. */
731 post_dom_bb
= get_immediate_dominator (CDI_POST_DOMINATORS
, bb
);
732 /* Some blocks don't have an immediate post dominator. This can happen
733 for example with infinite loops. Removing an infinite loop is an
734 inappropriate transformation anyway... */
741 /* Redirect the first edge out of BB to reach POST_DOM_BB. */
742 redirect_edge_and_branch (bb
->succ
, post_dom_bb
);
743 PENDING_STMT (bb
->succ
) = NULL
;
744 bb
->succ
->probability
= REG_BR_PROB_BASE
;
745 bb
->succ
->count
= bb
->count
;
747 /* The edge is no longer associated with a conditional, so it does
748 not have TRUE/FALSE flags. */
749 bb
->succ
->flags
&= ~(EDGE_TRUE_VALUE
| EDGE_FALSE_VALUE
);
751 /* If the edge reaches any block other than the exit, then it is a
752 fallthru edge; if it reaches the exit, then it is not a fallthru
754 if (post_dom_bb
!= EXIT_BLOCK_PTR
)
755 bb
->succ
->flags
|= EDGE_FALLTHRU
;
757 bb
->succ
->flags
&= ~EDGE_FALLTHRU
;
759 /* Remove the remaining the outgoing edges. */
760 for (e
= bb
->succ
->succ_next
; e
!= NULL
;)
772 /* Print out removed statement statistics. */
777 if (dump_file
&& (dump_flags
& (TDF_STATS
|TDF_DETAILS
)))
781 percg
= ((float) stats
.removed
/ (float) stats
.total
) * 100;
782 fprintf (dump_file
, "Removed %d of %d statements (%d%%)\n",
783 stats
.removed
, stats
.total
, (int) percg
);
785 if (stats
.total_phis
== 0)
788 percg
= ((float) stats
.removed_phis
/ (float) stats
.total_phis
) * 100;
790 fprintf (dump_file
, "Removed %d of %d PHI nodes (%d%%)\n",
791 stats
.removed_phis
, stats
.total_phis
, (int) percg
);
795 /* Initialization for this pass. Set up the used data structures. */
798 tree_dce_init (bool aggressive
)
800 memset ((void *) &stats
, 0, sizeof (stats
));
806 control_dependence_map
807 = xmalloc (last_basic_block
* sizeof (bitmap
));
808 for (i
= 0; i
< last_basic_block
; ++i
)
809 control_dependence_map
[i
] = BITMAP_XMALLOC ();
811 last_stmt_necessary
= sbitmap_alloc (last_basic_block
);
812 sbitmap_zero (last_stmt_necessary
);
815 processed
= sbitmap_alloc (num_ssa_names
+ 1);
816 sbitmap_zero (processed
);
818 VARRAY_TREE_INIT (worklist
, 64, "work list");
821 /* Cleanup after this pass. */
824 tree_dce_done (bool aggressive
)
830 for (i
= 0; i
< last_basic_block
; ++i
)
831 BITMAP_XFREE (control_dependence_map
[i
]);
832 free (control_dependence_map
);
834 sbitmap_free (last_stmt_necessary
);
837 sbitmap_free (processed
);
840 /* Main routine to eliminate dead code.
842 AGGRESSIVE controls the aggressiveness of the algorithm.
843 In conservative mode, we ignore control dependence and simply declare
844 all but the most trivially dead branches necessary. This mode is fast.
845 In aggressive mode, control dependences are taken into account, which
846 results in more dead code elimination, but at the cost of some time.
848 FIXME: Aggressive mode before PRE doesn't work currently because
849 the dominance info is not invalidated after DCE1. This is
850 not an issue right now because we only run aggressive DCE
851 as the last tree SSA pass, but keep this in mind when you
852 start experimenting with pass ordering. */
855 perform_tree_ssa_dce (bool aggressive
)
857 struct edge_list
*el
= NULL
;
859 tree_dce_init (aggressive
);
863 /* Compute control dependence. */
864 timevar_push (TV_CONTROL_DEPENDENCES
);
865 calculate_dominance_info (CDI_POST_DOMINATORS
);
866 el
= create_edge_list ();
867 find_all_control_dependences (el
);
868 timevar_pop (TV_CONTROL_DEPENDENCES
);
870 mark_dfs_back_edges ();
873 find_obviously_necessary_stmts (el
);
875 propagate_necessity (el
);
877 eliminate_unnecessary_stmts ();
880 free_dominance_info (CDI_POST_DOMINATORS
);
884 /* Debugging dumps. */
887 dump_function_to_file (current_function_decl
, dump_file
, dump_flags
);
891 tree_dce_done (aggressive
);
896 /* Pass entry points. */
900 perform_tree_ssa_dce (/*aggressive=*/false);
904 tree_ssa_cd_dce (void)
906 perform_tree_ssa_dce (/*aggressive=*/optimize
>= 2);
912 return flag_tree_dce
!= 0;
915 struct tree_opt_pass pass_dce
=
919 tree_ssa_dce
, /* execute */
922 0, /* static_pass_number */
923 TV_TREE_DCE
, /* tv_id */
924 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
925 0, /* properties_provided */
926 0, /* properties_destroyed */
927 0, /* todo_flags_start */
928 TODO_ggc_collect
| TODO_verify_ssa
, /* todo_flags_finish */
932 struct tree_opt_pass pass_cd_dce
=
936 tree_ssa_cd_dce
, /* execute */
939 0, /* static_pass_number */
940 TV_TREE_CD_DCE
, /* tv_id */
941 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
942 0, /* properties_provided */
943 0, /* properties_destroyed */
944 0, /* todo_flags_start */
945 TODO_ggc_collect
| TODO_verify_ssa
| TODO_verify_flow
,
946 /* todo_flags_finish */