1 /* Dead store elimination
2 Copyright (C) 2004-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License 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/>. */
22 #include "coretypes.h"
29 #include "fold-const.h"
31 #include "gimple-pretty-print.h"
32 #include "internal-fn.h"
33 #include "gimple-iterator.h"
36 #include "insn-config.h"
46 #include "tree-pass.h"
48 #include "langhooks.h"
49 #include "tree-cfgcleanup.h"
51 /* This file implements dead store elimination.
53 A dead store is a store into a memory location which will later be
54 overwritten by another store without any intervening loads. In this
55 case the earlier store can be deleted.
57 In our SSA + virtual operand world we use immediate uses of virtual
58 operands to detect dead stores. If a store's virtual definition
59 is used precisely once by a later store to the same location which
60 post dominates the first store, then the first store is dead.
62 The single use of the store's virtual definition ensures that
63 there are no intervening aliased loads and the requirement that
64 the second load post dominate the first ensures that if the earlier
65 store executes, then the later stores will execute before the function
68 It may help to think of this as first moving the earlier store to
69 the point immediately before the later store. Again, the single
70 use of the virtual definition and the post-dominance relationship
71 ensure that such movement would be safe. Clearly if there are
72 back to back stores, then the second is redundant.
74 Reviewing section 10.7.2 in Morgan's "Building an Optimizing Compiler"
75 may also help in understanding this code since it discusses the
76 relationship between dead store and redundant load elimination. In
77 fact, they are the same transformation applied to different views of
81 /* Bitmap of blocks that have had EH statements cleaned. We should
82 remove their dead edges eventually. */
83 static bitmap need_eh_cleanup
;
86 /* A helper of dse_optimize_stmt.
87 Given a GIMPLE_ASSIGN in STMT that writes to REF, find a candidate
88 statement *USE_STMT that may prove STMT to be dead.
89 Return TRUE if the above conditions are met, otherwise FALSE. */
92 dse_possible_dead_store_p (ao_ref
*ref
, gimple
*stmt
, gimple
**use_stmt
)
99 /* Find the first dominated statement that clobbers (part of) the
100 memory stmt stores to with no intermediate statement that may use
101 part of the memory stmt stores. That is, find a store that may
102 prove stmt to be a dead store. */
106 gimple
*use_stmt
, *defvar_def
;
111 /* Limit stmt walking to be linear in the number of possibly
116 if (gimple_code (temp
) == GIMPLE_PHI
)
117 defvar
= PHI_RESULT (temp
);
119 defvar
= gimple_vdef (temp
);
122 FOR_EACH_IMM_USE_STMT (use_stmt
, ui
, defvar
)
126 /* If we ever reach our DSE candidate stmt again fail. We
127 cannot handle dead stores in loops. */
128 if (use_stmt
== stmt
)
131 BREAK_FROM_IMM_USE_STMT (ui
);
133 /* In simple cases we can look through PHI nodes, but we
134 have to be careful with loops and with memory references
135 containing operands that are also operands of PHI nodes.
136 See gcc.c-torture/execute/20051110-*.c. */
137 else if (gimple_code (use_stmt
) == GIMPLE_PHI
)
140 /* Make sure we are not in a loop latch block. */
141 || gimple_bb (stmt
) == gimple_bb (use_stmt
)
142 || dominated_by_p (CDI_DOMINATORS
,
143 gimple_bb (stmt
), gimple_bb (use_stmt
))
144 /* We can look through PHIs to regions post-dominating
145 the DSE candidate stmt. */
146 || !dominated_by_p (CDI_POST_DOMINATORS
,
147 gimple_bb (stmt
), gimple_bb (use_stmt
)))
150 BREAK_FROM_IMM_USE_STMT (ui
);
152 /* Do not consider the PHI as use if it dominates the
153 stmt defining the virtual operand we are processing,
154 we have processed it already in this case. */
155 if (gimple_bb (defvar_def
) != gimple_bb (use_stmt
)
156 && !dominated_by_p (CDI_DOMINATORS
,
157 gimple_bb (defvar_def
),
158 gimple_bb (use_stmt
)))
161 /* If the statement is a use the store is not dead. */
162 else if (ref_maybe_used_by_stmt_p (use_stmt
, ref
))
165 BREAK_FROM_IMM_USE_STMT (ui
);
167 /* If this is a store, remember it or bail out if we have
168 multiple ones (the will be in different CFG parts then). */
169 else if (gimple_vdef (use_stmt
))
174 BREAK_FROM_IMM_USE_STMT (ui
);
183 /* If we didn't find any definition this means the store is dead
184 if it isn't a store to global reachable memory. In this case
185 just pretend the stmt makes itself dead. Otherwise fail. */
188 if (ref_may_alias_global_p (ref
))
195 /* Continue walking until we reach a kill. */
196 while (!stmt_kills_ref_p (temp
, ref
));
204 /* Attempt to eliminate dead stores in the statement referenced by BSI.
206 A dead store is a store into a memory location which will later be
207 overwritten by another store without any intervening loads. In this
208 case the earlier store can be deleted.
210 In our SSA + virtual operand world we use immediate uses of virtual
211 operands to detect dead stores. If a store's virtual definition
212 is used precisely once by a later store to the same location which
213 post dominates the first store, then the first store is dead. */
216 dse_optimize_stmt (gimple_stmt_iterator
*gsi
)
218 gimple
*stmt
= gsi_stmt (*gsi
);
220 /* If this statement has no virtual defs, then there is nothing
222 if (!gimple_vdef (stmt
))
225 /* Don't return early on *this_2(D) ={v} {CLOBBER}. */
226 if (gimple_has_volatile_ops (stmt
)
227 && (!gimple_clobber_p (stmt
)
228 || TREE_CODE (gimple_assign_lhs (stmt
)) != MEM_REF
))
231 /* We know we have virtual definitions. We can handle assignments and
232 some builtin calls. */
233 if (gimple_call_builtin_p (stmt
, BUILT_IN_NORMAL
))
235 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt
)))
237 case BUILT_IN_MEMCPY
:
238 case BUILT_IN_MEMMOVE
:
239 case BUILT_IN_MEMSET
:
243 tree size
= NULL_TREE
;
244 if (gimple_call_num_args (stmt
) == 3)
245 size
= gimple_call_arg (stmt
, 2);
246 tree ptr
= gimple_call_arg (stmt
, 0);
247 ao_ref_init_from_ptr_and_size (&ref
, ptr
, size
);
248 if (!dse_possible_dead_store_p (&ref
, stmt
, &use_stmt
))
251 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
253 fprintf (dump_file
, " Deleted dead call '");
254 print_gimple_stmt (dump_file
, gsi_stmt (*gsi
), dump_flags
, 0);
255 fprintf (dump_file
, "'\n");
258 tree lhs
= gimple_call_lhs (stmt
);
261 gimple
*new_stmt
= gimple_build_assign (lhs
, ptr
);
262 unlink_stmt_vdef (stmt
);
263 if (gsi_replace (gsi
, new_stmt
, true))
264 bitmap_set_bit (need_eh_cleanup
, gimple_bb (stmt
)->index
);
268 /* Then we need to fix the operand of the consuming stmt. */
269 unlink_stmt_vdef (stmt
);
271 /* Remove the dead store. */
272 if (gsi_remove (gsi
, true))
273 bitmap_set_bit (need_eh_cleanup
, gimple_bb (stmt
)->index
);
283 if (is_gimple_assign (stmt
))
287 /* Self-assignments are zombies. */
288 if (operand_equal_p (gimple_assign_rhs1 (stmt
),
289 gimple_assign_lhs (stmt
), 0))
294 ao_ref_init (&ref
, gimple_assign_lhs (stmt
));
295 if (!dse_possible_dead_store_p (&ref
, stmt
, &use_stmt
))
299 /* Now we know that use_stmt kills the LHS of stmt. */
301 /* But only remove *this_2(D) ={v} {CLOBBER} if killed by
302 another clobber stmt. */
303 if (gimple_clobber_p (stmt
)
304 && !gimple_clobber_p (use_stmt
))
307 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
309 fprintf (dump_file
, " Deleted dead store '");
310 print_gimple_stmt (dump_file
, gsi_stmt (*gsi
), dump_flags
, 0);
311 fprintf (dump_file
, "'\n");
314 /* Then we need to fix the operand of the consuming stmt. */
315 unlink_stmt_vdef (stmt
);
317 /* Remove the dead store. */
318 basic_block bb
= gimple_bb (stmt
);
319 if (gsi_remove (gsi
, true))
320 bitmap_set_bit (need_eh_cleanup
, bb
->index
);
322 /* And release any SSA_NAMEs set in this statement back to the
328 class dse_dom_walker
: public dom_walker
331 dse_dom_walker (cdi_direction direction
) : dom_walker (direction
) {}
333 virtual void before_dom_children (basic_block
);
337 dse_dom_walker::before_dom_children (basic_block bb
)
339 gimple_stmt_iterator gsi
;
341 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
);)
343 dse_optimize_stmt (&gsi
);
345 gsi
= gsi_last_bb (bb
);
353 const pass_data pass_data_dse
=
355 GIMPLE_PASS
, /* type */
357 OPTGROUP_NONE
, /* optinfo_flags */
358 TV_TREE_DSE
, /* tv_id */
359 ( PROP_cfg
| PROP_ssa
), /* properties_required */
360 0, /* properties_provided */
361 0, /* properties_destroyed */
362 0, /* todo_flags_start */
363 0, /* todo_flags_finish */
366 class pass_dse
: public gimple_opt_pass
369 pass_dse (gcc::context
*ctxt
)
370 : gimple_opt_pass (pass_data_dse
, ctxt
)
373 /* opt_pass methods: */
374 opt_pass
* clone () { return new pass_dse (m_ctxt
); }
375 virtual bool gate (function
*) { return flag_tree_dse
!= 0; }
376 virtual unsigned int execute (function
*);
381 pass_dse::execute (function
*fun
)
383 need_eh_cleanup
= BITMAP_ALLOC (NULL
);
385 renumber_gimple_stmt_uids ();
387 /* We might consider making this a property of each pass so that it
388 can be [re]computed on an as-needed basis. Particularly since
389 this pass could be seen as an extension of DCE which needs post
391 calculate_dominance_info (CDI_POST_DOMINATORS
);
392 calculate_dominance_info (CDI_DOMINATORS
);
394 /* Dead store elimination is fundamentally a walk of the post-dominator
395 tree and a backwards walk of statements within each block. */
396 dse_dom_walker (CDI_POST_DOMINATORS
).walk (fun
->cfg
->x_exit_block_ptr
);
398 /* Removal of stores may make some EH edges dead. Purge such edges from
399 the CFG as needed. */
400 if (!bitmap_empty_p (need_eh_cleanup
))
402 gimple_purge_all_dead_eh_edges (need_eh_cleanup
);
406 BITMAP_FREE (need_eh_cleanup
);
408 /* For now, just wipe the post-dominator information. */
409 free_dominance_info (CDI_POST_DOMINATORS
);
416 make_pass_dse (gcc::context
*ctxt
)
418 return new pass_dse (ctxt
);