]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-ssa-dse.c
[Ada] Fix documentation for GNAT.Command_Line.Exit_From_Command_Line
[thirdparty/gcc.git] / gcc / tree-ssa-dse.c
CommitLineData
bc5b8e83 1/* Dead and redundant store elimination
fbd26352 2 Copyright (C) 2004-2019 Free Software Foundation, Inc.
4ee9c684 3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8c4c00c1 8the Free Software Foundation; either version 3, or (at your option)
4ee9c684 9any later version.
10
11GCC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
8c4c00c1 17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
4ee9c684 19
20#include "config.h"
21#include "system.h"
22#include "coretypes.h"
9ef16211 23#include "backend.h"
7c29e30e 24#include "rtl.h"
4ee9c684 25#include "tree.h"
9ef16211 26#include "gimple.h"
7c29e30e 27#include "tree-pass.h"
9ef16211 28#include "ssa.h"
7c29e30e 29#include "gimple-pretty-print.h"
b20a8bb4 30#include "fold-const.h"
dcf1a1ec 31#include "gimple-iterator.h"
073c1fd5 32#include "tree-cfg.h"
073c1fd5 33#include "tree-dfa.h"
4ee9c684 34#include "domwalk.h"
424a4a92 35#include "tree-cfgcleanup.h"
64123137 36#include "params.h"
56ce87e3 37#include "alias.h"
560934d2 38#include "tree-ssa-loop.h"
4ee9c684 39
40/* This file implements dead store elimination.
41
42 A dead store is a store into a memory location which will later be
43 overwritten by another store without any intervening loads. In this
bc5b8e83 44 case the earlier store can be deleted or trimmed if the store
45 was partially dead.
46
47 A redundant store is a store into a memory location which stores
48 the exact same value as a prior store to the same memory location.
49 While this can often be handled by dead store elimination, removing
50 the redundant store is often better than removing or trimming the
51 dead store.
4ee9c684 52
53 In our SSA + virtual operand world we use immediate uses of virtual
bc5b8e83 54 operands to detect these cases. If a store's virtual definition
4ee9c684 55 is used precisely once by a later store to the same location which
bc5b8e83 56 post dominates the first store, then the first store is dead. If
57 the data stored is the same, then the second store is redundant.
4ee9c684 58
59 The single use of the store's virtual definition ensures that
60 there are no intervening aliased loads and the requirement that
61 the second load post dominate the first ensures that if the earlier
62 store executes, then the later stores will execute before the function
63 exits.
64
65 It may help to think of this as first moving the earlier store to
66 the point immediately before the later store. Again, the single
2c763ed4 67 use of the virtual definition and the post-dominance relationship
48e1416a 68 ensure that such movement would be safe. Clearly if there are
bc5b8e83 69 back to back stores, then the second is makes the first dead. If
70 the second store stores the same value, then the second store is
71 redundant.
4ee9c684 72
73 Reviewing section 10.7.2 in Morgan's "Building an Optimizing Compiler"
74 may also help in understanding this code since it discusses the
75 relationship between dead store and redundant load elimination. In
76 fact, they are the same transformation applied to different views of
77 the CFG. */
75a70cf9 78
a5e83404 79static void delete_dead_or_redundant_assignment (gimple_stmt_iterator *, const char *);
80static void delete_dead_or_redundant_call (gimple_stmt_iterator *, const char *);
4ee9c684 81
d02c8339 82/* Bitmap of blocks that have had EH statements cleaned. We should
83 remove their dead edges eventually. */
84static bitmap need_eh_cleanup;
85
64123137 86/* Return value from dse_classify_store */
87enum dse_store_status
88{
89 DSE_STORE_LIVE,
90 DSE_STORE_MAYBE_PARTIAL_DEAD,
91 DSE_STORE_DEAD
92};
93
94/* STMT is a statement that may write into memory. Analyze it and
95 initialize WRITE to describe how STMT affects memory.
96
97 Return TRUE if the the statement was analyzed, FALSE otherwise.
98
99 It is always safe to return FALSE. But typically better optimziation
100 can be achieved by analyzing more statements. */
101
102static bool
103initialize_ao_ref_for_dse (gimple *stmt, ao_ref *write)
104{
105 /* It's advantageous to handle certain mem* functions. */
106 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
107 {
108 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt)))
109 {
407a2aeb 110 case BUILT_IN_MEMCPY:
111 case BUILT_IN_MEMMOVE:
112 case BUILT_IN_MEMSET:
113 case BUILT_IN_MEMCPY_CHK:
114 case BUILT_IN_MEMMOVE_CHK:
115 case BUILT_IN_MEMSET_CHK:
37ea4f1e 116 case BUILT_IN_STRNCPY:
117 case BUILT_IN_STRNCPY_CHK:
407a2aeb 118 {
37ea4f1e 119 tree size = gimple_call_arg (stmt, 2);
407a2aeb 120 tree ptr = gimple_call_arg (stmt, 0);
121 ao_ref_init_from_ptr_and_size (write, ptr, size);
122 return true;
123 }
bc5b8e83 124
407a2aeb 125 /* A calloc call can never be dead, but it can make
126 subsequent stores redundant if they store 0 into
127 the same memory locations. */
128 case BUILT_IN_CALLOC:
129 {
130 tree nelem = gimple_call_arg (stmt, 0);
131 tree selem = gimple_call_arg (stmt, 1);
132 tree lhs;
133 if (TREE_CODE (nelem) == INTEGER_CST
134 && TREE_CODE (selem) == INTEGER_CST
135 && (lhs = gimple_call_lhs (stmt)) != NULL_TREE)
136 {
137 tree size = fold_build2 (MULT_EXPR, TREE_TYPE (nelem),
138 nelem, selem);
139 ao_ref_init_from_ptr_and_size (write, lhs, size);
140 return true;
141 }
142 }
bc5b8e83 143
407a2aeb 144 default:
145 break;
64123137 146 }
147 }
148 else if (is_gimple_assign (stmt))
149 {
150 ao_ref_init (write, gimple_assign_lhs (stmt));
151 return true;
152 }
153 return false;
154}
155
156/* Given REF from the the alias oracle, return TRUE if it is a valid
157 memory reference for dead store elimination, false otherwise.
158
159 In particular, the reference must have a known base, known maximum
160 size, start at a byte offset and have a size that is one or more
161 bytes. */
162
163static bool
164valid_ao_ref_for_dse (ao_ref *ref)
165{
166 return (ao_ref_base (ref)
fe60c82c 167 && known_size_p (ref->max_size)
168 && maybe_ne (ref->size, 0)
169 && known_eq (ref->max_size, ref->size)
170 && known_ge (ref->offset, 0)
171 && multiple_p (ref->offset, BITS_PER_UNIT)
172 && multiple_p (ref->size, BITS_PER_UNIT));
64123137 173}
174
5dae9486 175/* Try to normalize COPY (an ao_ref) relative to REF. Essentially when we are
176 done COPY will only refer bytes found within REF. Return true if COPY
177 is known to intersect at least one byte of REF. */
64123137 178
5dae9486 179static bool
64123137 180normalize_ref (ao_ref *copy, ao_ref *ref)
181{
fe60c82c 182 if (!ordered_p (copy->offset, ref->offset))
183 return false;
184
64123137 185 /* If COPY starts before REF, then reset the beginning of
186 COPY to match REF and decrease the size of COPY by the
187 number of bytes removed from COPY. */
fe60c82c 188 if (maybe_lt (copy->offset, ref->offset))
64123137 189 {
fe60c82c 190 poly_int64 diff = ref->offset - copy->offset;
191 if (maybe_le (copy->size, diff))
5dae9486 192 return false;
193 copy->size -= diff;
64123137 194 copy->offset = ref->offset;
195 }
196
fe60c82c 197 poly_int64 diff = copy->offset - ref->offset;
198 if (maybe_le (ref->size, diff))
5dae9486 199 return false;
200
64123137 201 /* If COPY extends beyond REF, chop off its size appropriately. */
fe60c82c 202 poly_int64 limit = ref->size - diff;
203 if (!ordered_p (limit, copy->size))
204 return false;
205
206 if (maybe_gt (copy->size, limit))
5dae9486 207 copy->size = limit;
208 return true;
64123137 209}
210
211/* Clear any bytes written by STMT from the bitmap LIVE_BYTES. The base
212 address written by STMT must match the one found in REF, which must
213 have its base address previously initialized.
214
215 This routine must be conservative. If we don't know the offset or
216 actual size written, assume nothing was written. */
217
218static void
219clear_bytes_written_by (sbitmap live_bytes, gimple *stmt, ao_ref *ref)
220{
221 ao_ref write;
222 if (!initialize_ao_ref_for_dse (stmt, &write))
223 return;
224
225 /* Verify we have the same base memory address, the write
226 has a known size and overlaps with REF. */
fe60c82c 227 HOST_WIDE_INT start, size;
64123137 228 if (valid_ao_ref_for_dse (&write)
b87372d9 229 && operand_equal_p (write.base, ref->base, OEP_ADDRESS_OF)
fe60c82c 230 && known_eq (write.size, write.max_size)
231 && normalize_ref (&write, ref)
232 && (write.offset - ref->offset).is_constant (&start)
233 && write.size.is_constant (&size))
234 bitmap_clear_range (live_bytes, start / BITS_PER_UNIT,
235 size / BITS_PER_UNIT);
64123137 236}
237
238/* REF is a memory write. Extract relevant information from it and
239 initialize the LIVE_BYTES bitmap. If successful, return TRUE.
240 Otherwise return FALSE. */
241
242static bool
243setup_live_bytes_from_ref (ao_ref *ref, sbitmap live_bytes)
244{
fe60c82c 245 HOST_WIDE_INT const_size;
64123137 246 if (valid_ao_ref_for_dse (ref)
fe60c82c 247 && ref->size.is_constant (&const_size)
248 && (const_size / BITS_PER_UNIT
64123137 249 <= PARAM_VALUE (PARAM_DSE_MAX_OBJECT_SIZE)))
250 {
251 bitmap_clear (live_bytes);
fe60c82c 252 bitmap_set_range (live_bytes, 0, const_size / BITS_PER_UNIT);
64123137 253 return true;
254 }
255 return false;
256}
257
258/* Compute the number of elements that we can trim from the head and
259 tail of ORIG resulting in a bitmap that is a superset of LIVE.
260
261 Store the number of elements trimmed from the head and tail in
f4826e25 262 TRIM_HEAD and TRIM_TAIL.
263
264 STMT is the statement being trimmed and is used for debugging dump
265 output only. */
64123137 266
267static void
f4826e25 268compute_trims (ao_ref *ref, sbitmap live, int *trim_head, int *trim_tail,
269 gimple *stmt)
64123137 270{
271 /* We use sbitmaps biased such that ref->offset is bit zero and the bitmap
272 extends through ref->size. So we know that in the original bitmap
273 bits 0..ref->size were true. We don't actually need the bitmap, just
274 the REF to compute the trims. */
275
276 /* Now identify how much, if any of the tail we can chop off. */
fe60c82c 277 HOST_WIDE_INT const_size;
6c01fc45 278 int last_live = bitmap_last_set_bit (live);
fe60c82c 279 if (ref->size.is_constant (&const_size))
280 {
281 int last_orig = (const_size / BITS_PER_UNIT) - 1;
6c01fc45 282 /* We can leave inconvenient amounts on the tail as
283 residual handling in mem* and str* functions is usually
284 reasonably efficient. */
285 *trim_tail = last_orig - last_live;
d0eb64b2 286
287 /* But don't trim away out of bounds accesses, as this defeats
f4455d5f 288 proper warnings.
289
290 We could have a type with no TYPE_SIZE_UNIT or we could have a VLA
291 where TYPE_SIZE_UNIT is not a constant. */
d0eb64b2 292 if (*trim_tail
407db075 293 && TYPE_SIZE_UNIT (TREE_TYPE (ref->base))
f4455d5f 294 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (ref->base))) == INTEGER_CST
d0eb64b2 295 && compare_tree_int (TYPE_SIZE_UNIT (TREE_TYPE (ref->base)),
296 last_orig) <= 0)
297 *trim_tail = 0;
fe60c82c 298 }
299 else
300 *trim_tail = 0;
64123137 301
302 /* Identify how much, if any of the head we can chop off. */
303 int first_orig = 0;
304 int first_live = bitmap_first_set_bit (live);
6c01fc45 305 *trim_head = first_live - first_orig;
306
307 /* If more than a word remains, then make sure to keep the
308 starting point at least word aligned. */
309 if (last_live - first_live > UNITS_PER_WORD)
b2471e18 310 *trim_head &= ~(UNITS_PER_WORD - 1);
f4826e25 311
312 if ((*trim_head || *trim_tail)
313 && dump_file && (dump_flags & TDF_DETAILS))
314 {
315 fprintf (dump_file, " Trimming statement (head = %d, tail = %d): ",
316 *trim_head, *trim_tail);
1ffa4346 317 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
f4826e25 318 fprintf (dump_file, "\n");
319 }
64123137 320}
321
322/* STMT initializes an object from COMPLEX_CST where one or more of the
323 bytes written may be dead stores. REF is a representation of the
324 memory written. LIVE is the bitmap of stores that are actually live.
325
326 Attempt to rewrite STMT so that only the real or imaginary part of
327 the object is actually stored. */
328
329static void
330maybe_trim_complex_store (ao_ref *ref, sbitmap live, gimple *stmt)
331{
332 int trim_head, trim_tail;
f4826e25 333 compute_trims (ref, live, &trim_head, &trim_tail, stmt);
64123137 334
335 /* The amount of data trimmed from the head or tail must be at
336 least half the size of the object to ensure we're trimming
337 the entire real or imaginary half. By writing things this
338 way we avoid more O(n) bitmap operations. */
fe60c82c 339 if (known_ge (trim_tail * 2 * BITS_PER_UNIT, ref->size))
64123137 340 {
341 /* TREE_REALPART is live */
342 tree x = TREE_REALPART (gimple_assign_rhs1 (stmt));
343 tree y = gimple_assign_lhs (stmt);
344 y = build1 (REALPART_EXPR, TREE_TYPE (x), y);
345 gimple_assign_set_lhs (stmt, y);
346 gimple_assign_set_rhs1 (stmt, x);
347 }
fe60c82c 348 else if (known_ge (trim_head * 2 * BITS_PER_UNIT, ref->size))
64123137 349 {
350 /* TREE_IMAGPART is live */
351 tree x = TREE_IMAGPART (gimple_assign_rhs1 (stmt));
352 tree y = gimple_assign_lhs (stmt);
353 y = build1 (IMAGPART_EXPR, TREE_TYPE (x), y);
354 gimple_assign_set_lhs (stmt, y);
355 gimple_assign_set_rhs1 (stmt, x);
356 }
357
358 /* Other cases indicate parts of both the real and imag subobjects
359 are live. We do not try to optimize those cases. */
360}
361
56ce87e3 362/* STMT initializes an object using a CONSTRUCTOR where one or more of the
363 bytes written are dead stores. ORIG is the bitmap of bytes stored by
364 STMT. LIVE is the bitmap of stores that are actually live.
365
366 Attempt to rewrite STMT so that only the real or imaginary part of
367 the object is actually stored.
368
369 The most common case for getting here is a CONSTRUCTOR with no elements
370 being used to zero initialize an object. We do not try to handle other
371 cases as those would force us to fully cover the object with the
372 CONSTRUCTOR node except for the components that are dead. */
373
374static void
375maybe_trim_constructor_store (ao_ref *ref, sbitmap live, gimple *stmt)
376{
377 tree ctor = gimple_assign_rhs1 (stmt);
378
379 /* This is the only case we currently handle. It actually seems to
380 catch most cases of actual interest. */
381 gcc_assert (CONSTRUCTOR_NELTS (ctor) == 0);
382
383 int head_trim = 0;
384 int tail_trim = 0;
f4826e25 385 compute_trims (ref, live, &head_trim, &tail_trim, stmt);
56ce87e3 386
387 /* Now we want to replace the constructor initializer
388 with memset (object + head_trim, 0, size - head_trim - tail_trim). */
389 if (head_trim || tail_trim)
390 {
391 /* We want &lhs for the MEM_REF expression. */
392 tree lhs_addr = build_fold_addr_expr (gimple_assign_lhs (stmt));
393
394 if (! is_gimple_min_invariant (lhs_addr))
395 return;
396
397 /* The number of bytes for the new constructor. */
fe60c82c 398 poly_int64 ref_bytes = exact_div (ref->size, BITS_PER_UNIT);
399 poly_int64 count = ref_bytes - head_trim - tail_trim;
56ce87e3 400
401 /* And the new type for the CONSTRUCTOR. Essentially it's just
402 a char array large enough to cover the non-trimmed parts of
403 the original CONSTRUCTOR. Note we want explicit bounds here
404 so that we know how many bytes to clear when expanding the
405 CONSTRUCTOR. */
406 tree type = build_array_type_nelts (char_type_node, count);
407
408 /* Build a suitable alias type rather than using alias set zero
409 to avoid pessimizing. */
410 tree alias_type = reference_alias_ptr_type (gimple_assign_lhs (stmt));
411
412 /* Build a MEM_REF representing the whole accessed area, starting
413 at the first byte not trimmed. */
414 tree exp = fold_build2 (MEM_REF, type, lhs_addr,
415 build_int_cst (alias_type, head_trim));
416
417 /* Now update STMT with a new RHS and LHS. */
418 gimple_assign_set_lhs (stmt, exp);
419 gimple_assign_set_rhs1 (stmt, build_constructor (type, NULL));
420 }
421}
422
339f327d 423/* STMT is a memcpy, memmove or memset. Decrement the number of bytes
424 copied/set by DECREMENT. */
425static void
426decrement_count (gimple *stmt, int decrement)
427{
428 tree *countp = gimple_call_arg_ptr (stmt, 2);
429 gcc_assert (TREE_CODE (*countp) == INTEGER_CST);
430 *countp = wide_int_to_tree (TREE_TYPE (*countp), (TREE_INT_CST_LOW (*countp)
431 - decrement));
432
433}
434
435static void
436increment_start_addr (gimple *stmt, tree *where, int increment)
437{
438 if (TREE_CODE (*where) == SSA_NAME)
439 {
440 tree tem = make_ssa_name (TREE_TYPE (*where));
441 gassign *newop
442 = gimple_build_assign (tem, POINTER_PLUS_EXPR, *where,
443 build_int_cst (sizetype, increment));
444 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
445 gsi_insert_before (&gsi, newop, GSI_SAME_STMT);
446 *where = tem;
447 update_stmt (gsi_stmt (gsi));
448 return;
449 }
450
451 *where = build_fold_addr_expr (fold_build2 (MEM_REF, char_type_node,
452 *where,
453 build_int_cst (ptr_type_node,
454 increment)));
455}
456
457/* STMT is builtin call that writes bytes in bitmap ORIG, some bytes are dead
458 (ORIG & ~NEW) and need not be stored. Try to rewrite STMT to reduce
459 the amount of data it actually writes.
460
461 Right now we only support trimming from the head or the tail of the
462 memory region. In theory we could split the mem* call, but it's
463 likely of marginal value. */
464
465static void
466maybe_trim_memstar_call (ao_ref *ref, sbitmap live, gimple *stmt)
467{
468 switch (DECL_FUNCTION_CODE (gimple_call_fndecl (stmt)))
469 {
470 case BUILT_IN_MEMCPY:
471 case BUILT_IN_MEMMOVE:
37ea4f1e 472 case BUILT_IN_STRNCPY:
2d7e0f32 473 case BUILT_IN_MEMCPY_CHK:
474 case BUILT_IN_MEMMOVE_CHK:
37ea4f1e 475 case BUILT_IN_STRNCPY_CHK:
339f327d 476 {
477 int head_trim, tail_trim;
f4826e25 478 compute_trims (ref, live, &head_trim, &tail_trim, stmt);
339f327d 479
480 /* Tail trimming is easy, we can just reduce the count. */
481 if (tail_trim)
482 decrement_count (stmt, tail_trim);
483
484 /* Head trimming requires adjusting all the arguments. */
485 if (head_trim)
486 {
487 tree *dst = gimple_call_arg_ptr (stmt, 0);
488 increment_start_addr (stmt, dst, head_trim);
489 tree *src = gimple_call_arg_ptr (stmt, 1);
490 increment_start_addr (stmt, src, head_trim);
491 decrement_count (stmt, head_trim);
492 }
493 break;
494 }
495
496 case BUILT_IN_MEMSET:
2d7e0f32 497 case BUILT_IN_MEMSET_CHK:
339f327d 498 {
499 int head_trim, tail_trim;
f4826e25 500 compute_trims (ref, live, &head_trim, &tail_trim, stmt);
339f327d 501
502 /* Tail trimming is easy, we can just reduce the count. */
503 if (tail_trim)
504 decrement_count (stmt, tail_trim);
505
506 /* Head trimming requires adjusting all the arguments. */
507 if (head_trim)
508 {
509 tree *dst = gimple_call_arg_ptr (stmt, 0);
510 increment_start_addr (stmt, dst, head_trim);
511 decrement_count (stmt, head_trim);
512 }
513 break;
514 }
515
516 default:
517 break;
518 }
519}
520
64123137 521/* STMT is a memory write where one or more bytes written are dead
522 stores. ORIG is the bitmap of bytes stored by STMT. LIVE is the
523 bitmap of stores that are actually live.
524
525 Attempt to rewrite STMT so that it writes fewer memory locations. Right
526 now we only support trimming at the start or end of the memory region.
527 It's not clear how much there is to be gained by trimming from the middle
528 of the region. */
529
530static void
531maybe_trim_partially_dead_store (ao_ref *ref, sbitmap live, gimple *stmt)
532{
1bcbd566 533 if (is_gimple_assign (stmt)
534 && TREE_CODE (gimple_assign_lhs (stmt)) != TARGET_MEM_REF)
64123137 535 {
536 switch (gimple_assign_rhs_code (stmt))
537 {
56ce87e3 538 case CONSTRUCTOR:
539 maybe_trim_constructor_store (ref, live, stmt);
540 break;
64123137 541 case COMPLEX_CST:
542 maybe_trim_complex_store (ref, live, stmt);
543 break;
544 default:
545 break;
546 }
547 }
548}
4ee9c684 549
1b487905 550/* Return TRUE if USE_REF reads bytes from LIVE where live is
551 derived from REF, a write reference.
552
553 While this routine may modify USE_REF, it's passed by value, not
554 location. So callers do not see those modifications. */
555
556static bool
557live_bytes_read (ao_ref use_ref, ao_ref *ref, sbitmap live)
558{
559 /* We have already verified that USE_REF and REF hit the same object.
560 Now verify that there's actually an overlap between USE_REF and REF. */
fe60c82c 561 HOST_WIDE_INT start, size;
562 if (normalize_ref (&use_ref, ref)
563 && (use_ref.offset - ref->offset).is_constant (&start)
564 && use_ref.size.is_constant (&size))
1b487905 565 {
1b487905 566 /* If USE_REF covers all of REF, then it will hit one or more
567 live bytes. This avoids useless iteration over the bitmap
568 below. */
fe60c82c 569 if (start == 0 && known_eq (size, ref->size))
1b487905 570 return true;
571
572 /* Now check if any of the remaining bits in use_ref are set in LIVE. */
5dae9486 573 return bitmap_bit_in_range_p (live, start / BITS_PER_UNIT,
574 (start + size - 1) / BITS_PER_UNIT);
1b487905 575 }
576 return true;
577}
578
560934d2 579/* Callback for dse_classify_store calling for_each_index. Verify that
580 indices are invariant in the loop with backedge PHI in basic-block DATA. */
581
582static bool
583check_name (tree, tree *idx, void *data)
584{
585 basic_block phi_bb = (basic_block) data;
586 if (TREE_CODE (*idx) == SSA_NAME
587 && !SSA_NAME_IS_DEFAULT_DEF (*idx)
588 && dominated_by_p (CDI_DOMINATORS, gimple_bb (SSA_NAME_DEF_STMT (*idx)),
589 phi_bb))
590 return false;
591 return true;
592}
593
bc5b8e83 594/* STMT stores the value 0 into one or more memory locations
595 (via memset, empty constructor, calloc call, etc).
596
597 See if there is a subsequent store of the value 0 to one
598 or more of the same memory location(s). If so, the subsequent
599 store is redundant and can be removed.
600
601 The subsequent stores could be via memset, empty constructors,
602 simple MEM stores, etc. */
603
604static void
605dse_optimize_redundant_stores (gimple *stmt)
606{
607 int cnt = 0;
608
609 /* We could do something fairly complex and look through PHIs
610 like DSE_CLASSIFY_STORE, but it doesn't seem to be worth
611 the effort.
612
613 Look at all the immediate uses of the VDEF (which are obviously
614 dominated by STMT). See if one or more stores 0 into the same
615 memory locations a STMT, if so remove the immediate use statements. */
616 tree defvar = gimple_vdef (stmt);
617 imm_use_iterator ui;
618 gimple *use_stmt;
619 FOR_EACH_IMM_USE_STMT (use_stmt, ui, defvar)
620 {
621 /* Limit stmt walking. */
622 if (++cnt > PARAM_VALUE (PARAM_DSE_MAX_ALIAS_QUERIES_PER_STORE))
623 BREAK_FROM_IMM_USE_STMT (ui);
624
625 /* If USE_STMT stores 0 into one or more of the same locations
626 as STMT and STMT would kill USE_STMT, then we can just remove
627 USE_STMT. */
628 tree fndecl;
629 if ((is_gimple_assign (use_stmt)
630 && gimple_vdef (use_stmt)
631 && ((gimple_assign_rhs_code (use_stmt) == CONSTRUCTOR
632 && CONSTRUCTOR_NELTS (gimple_assign_rhs1 (use_stmt)) == 0
633 && !gimple_clobber_p (stmt))
634 || (gimple_assign_rhs_code (use_stmt) == INTEGER_CST
635 && integer_zerop (gimple_assign_rhs1 (use_stmt)))))
636 || (gimple_call_builtin_p (use_stmt, BUILT_IN_NORMAL)
637 && (fndecl = gimple_call_fndecl (use_stmt)) != NULL
638 && (DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMSET
639 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMSET_CHK)
640 && integer_zerop (gimple_call_arg (use_stmt, 1))))
641 {
642 ao_ref write;
643
644 if (!initialize_ao_ref_for_dse (use_stmt, &write))
645 BREAK_FROM_IMM_USE_STMT (ui)
646
647 if (valid_ao_ref_for_dse (&write)
648 && stmt_kills_ref_p (stmt, &write))
649 {
650 gimple_stmt_iterator gsi = gsi_for_stmt (use_stmt);
651 if (is_gimple_assign (use_stmt))
652 delete_dead_or_redundant_assignment (&gsi, "redundant");
653 else if (is_gimple_call (use_stmt))
654 delete_dead_or_redundant_call (&gsi, "redundant");
655 else
656 gcc_unreachable ();
657 }
658 }
659 }
660}
661
4fb5e5ca 662/* A helper of dse_optimize_stmt.
8ade4cde 663 Given a GIMPLE_ASSIGN in STMT that writes to REF, classify it
664 according to downstream uses and defs. Sets *BY_CLOBBER_P to true
665 if only clobber statements influenced the classification result.
666 Returns the classification. */
4fb5e5ca 667
64123137 668static dse_store_status
8ade4cde 669dse_classify_store (ao_ref *ref, gimple *stmt,
670 bool byte_tracking_enabled, sbitmap live_bytes,
671 bool *by_clobber_p = NULL)
4fb5e5ca 672{
42acab1c 673 gimple *temp;
560934d2 674 int cnt = 0;
675 auto_bitmap visited;
4fb5e5ca 676
8ade4cde 677 if (by_clobber_p)
678 *by_clobber_p = true;
4fb5e5ca 679
dd277d48 680 /* Find the first dominated statement that clobbers (part of) the
681 memory stmt stores to with no intermediate statement that may use
682 part of the memory stmt stores. That is, find a store that may
683 prove stmt to be a dead store. */
684 temp = stmt;
685 do
686 {
560934d2 687 gimple *use_stmt;
dd277d48 688 imm_use_iterator ui;
689 bool fail = false;
690 tree defvar;
691
75a70cf9 692 if (gimple_code (temp) == GIMPLE_PHI)
560934d2 693 {
694 /* If we visit this PHI by following a backedge then we have to
695 make sure ref->ref only refers to SSA names that are invariant
696 with respect to the loop represented by this PHI node. */
697 if (dominated_by_p (CDI_DOMINATORS, gimple_bb (stmt),
698 gimple_bb (temp))
699 && !for_each_index (ref->ref ? &ref->ref : &ref->base,
700 check_name, gimple_bb (temp)))
701 return DSE_STORE_LIVE;
702 defvar = PHI_RESULT (temp);
703 bitmap_set_bit (visited, SSA_NAME_VERSION (defvar));
704 }
dd277d48 705 else
706 defvar = gimple_vdef (temp);
8ade4cde 707 auto_vec<gimple *, 10> defs;
7acf1661 708 gimple *phi_def = NULL;
dd277d48 709 FOR_EACH_IMM_USE_STMT (use_stmt, ui, defvar)
77ad2905 710 {
560934d2 711 /* Limit stmt walking. */
712 if (++cnt > PARAM_VALUE (PARAM_DSE_MAX_ALIAS_QUERIES_PER_STORE))
43e2b34d 713 {
714 fail = true;
715 BREAK_FROM_IMM_USE_STMT (ui);
716 }
560934d2 717
718 /* We have visited ourselves already so ignore STMT for the
719 purpose of chaining. */
720 if (use_stmt == stmt)
721 ;
dd277d48 722 /* In simple cases we can look through PHI nodes, but we
723 have to be careful with loops and with memory references
724 containing operands that are also operands of PHI nodes.
725 See gcc.c-torture/execute/20051110-*.c. */
43e2b34d 726 else if (gimple_code (use_stmt) == GIMPLE_PHI)
dd277d48 727 {
560934d2 728 /* If we already visited this PHI ignore it for further
729 processing. */
730 if (!bitmap_bit_p (visited,
731 SSA_NAME_VERSION (PHI_RESULT (use_stmt))))
7acf1661 732 {
733 defs.safe_push (use_stmt);
734 phi_def = use_stmt;
735 }
dd277d48 736 }
737 /* If the statement is a use the store is not dead. */
258bd648 738 else if (ref_maybe_used_by_stmt_p (use_stmt, ref))
161fe168 739 {
a11cd437 740 /* Handle common cases where we can easily build an ao_ref
1b487905 741 structure for USE_STMT and in doing so we find that the
742 references hit non-live bytes and thus can be ignored. */
8ade4cde 743 if (byte_tracking_enabled
560934d2 744 && is_gimple_assign (use_stmt))
1b487905 745 {
560934d2 746 ao_ref use_ref;
747 ao_ref_init (&use_ref, gimple_assign_rhs1 (use_stmt));
748 if (valid_ao_ref_for_dse (&use_ref)
749 && use_ref.base == ref->base
750 && known_eq (use_ref.size, use_ref.max_size)
751 && !live_bytes_read (use_ref, ref, live_bytes))
1b487905 752 {
560934d2 753 /* If this is a store, remember it as we possibly
754 need to walk the defs uses. */
755 if (gimple_vdef (use_stmt))
756 defs.safe_push (use_stmt);
757 continue;
1b487905 758 }
759 }
760
161fe168 761 fail = true;
dd277d48 762 BREAK_FROM_IMM_USE_STMT (ui);
763 }
8ade4cde 764 /* If this is a store, remember it as we possibly need to walk the
765 defs uses. */
dd277d48 766 else if (gimple_vdef (use_stmt))
8ade4cde 767 defs.safe_push (use_stmt);
161fe168 768 }
769
dd277d48 770 if (fail)
64123137 771 {
772 /* STMT might be partially dead and we may be able to reduce
773 how many memory locations it stores into. */
774 if (byte_tracking_enabled && !gimple_clobber_p (stmt))
775 return DSE_STORE_MAYBE_PARTIAL_DEAD;
776 return DSE_STORE_LIVE;
777 }
dd277d48 778
779 /* If we didn't find any definition this means the store is dead
780 if it isn't a store to global reachable memory. In this case
781 just pretend the stmt makes itself dead. Otherwise fail. */
8ade4cde 782 if (defs.is_empty ())
4fb5e5ca 783 {
258bd648 784 if (ref_may_alias_global_p (ref))
64123137 785 return DSE_STORE_LIVE;
dd277d48 786
8ade4cde 787 if (by_clobber_p)
788 *by_clobber_p = false;
789 return DSE_STORE_DEAD;
4fb5e5ca 790 }
64123137 791
7acf1661 792 /* Process defs and remove those we need not process further. */
ceccd756 793 for (unsigned i = 0; i < defs.length ();)
7acf1661 794 {
795 gimple *def = defs[i];
796 gimple *use_stmt;
797 use_operand_p use_p;
798 /* If the path to check starts with a kill we do not need to
799 process it further.
800 ??? With byte tracking we need only kill the bytes currently
801 live. */
802 if (stmt_kills_ref_p (def, ref))
803 {
804 if (by_clobber_p && !gimple_clobber_p (def))
805 *by_clobber_p = false;
806 defs.unordered_remove (i);
807 }
808 /* In addition to kills we can remove defs whose only use
809 is another def in defs. That can only ever be PHIs of which
810 we track a single for simplicity reasons (we fail for multiple
ceccd756 811 PHIs anyways). We can also ignore defs that feed only into
812 already visited PHIs. */
7acf1661 813 else if (gimple_code (def) != GIMPLE_PHI
814 && single_imm_use (gimple_vdef (def), &use_p, &use_stmt)
ceccd756 815 && (use_stmt == phi_def
816 || (gimple_code (use_stmt) == GIMPLE_PHI
817 && bitmap_bit_p (visited,
818 SSA_NAME_VERSION
819 (PHI_RESULT (use_stmt))))))
8ade4cde 820 defs.unordered_remove (i);
ceccd756 821 else
822 ++i;
7acf1661 823 }
8ade4cde 824
825 /* If all defs kill the ref we are done. */
826 if (defs.is_empty ())
827 return DSE_STORE_DEAD;
828 /* If more than one def survives fail. */
829 if (defs.length () > 1)
830 {
831 /* STMT might be partially dead and we may be able to reduce
832 how many memory locations it stores into. */
833 if (byte_tracking_enabled && !gimple_clobber_p (stmt))
834 return DSE_STORE_MAYBE_PARTIAL_DEAD;
835 return DSE_STORE_LIVE;
836 }
837 temp = defs[0];
4fb5e5ca 838
8ade4cde 839 /* Track partial kills. */
840 if (byte_tracking_enabled)
841 {
842 clear_bytes_written_by (live_bytes, temp, ref);
843 if (bitmap_empty_p (live_bytes))
844 {
845 if (by_clobber_p && !gimple_clobber_p (temp))
846 *by_clobber_p = false;
847 return DSE_STORE_DEAD;
848 }
849 }
850 }
851 /* Continue walking until there are no more live bytes. */
852 while (1);
64123137 853}
854
855
856class dse_dom_walker : public dom_walker
857{
858public:
859 dse_dom_walker (cdi_direction direction)
07a7b947 860 : dom_walker (direction),
861 m_live_bytes (PARAM_VALUE (PARAM_DSE_MAX_OBJECT_SIZE)),
862 m_byte_tracking_enabled (false) {}
64123137 863
864 virtual edge before_dom_children (basic_block);
865
866private:
07a7b947 867 auto_sbitmap m_live_bytes;
64123137 868 bool m_byte_tracking_enabled;
869 void dse_optimize_stmt (gimple_stmt_iterator *);
870};
871
a0b1e585 872/* Delete a dead call at GSI, which is mem* call of some kind. */
64123137 873static void
a5e83404 874delete_dead_or_redundant_call (gimple_stmt_iterator *gsi, const char *type)
64123137 875{
ec40332f 876 gimple *stmt = gsi_stmt (*gsi);
64123137 877 if (dump_file && (dump_flags & TDF_DETAILS))
878 {
bc5b8e83 879 fprintf (dump_file, " Deleted %s call: ", type);
1ffa4346 880 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
64123137 881 fprintf (dump_file, "\n");
882 }
883
884 tree lhs = gimple_call_lhs (stmt);
64123137 885 if (lhs)
886 {
887 tree ptr = gimple_call_arg (stmt, 0);
888 gimple *new_stmt = gimple_build_assign (lhs, ptr);
889 unlink_stmt_vdef (stmt);
ec40332f 890 if (gsi_replace (gsi, new_stmt, true))
64123137 891 bitmap_set_bit (need_eh_cleanup, gimple_bb (stmt)->index);
892 }
893 else
894 {
895 /* Then we need to fix the operand of the consuming stmt. */
896 unlink_stmt_vdef (stmt);
897
898 /* Remove the dead store. */
ec40332f 899 if (gsi_remove (gsi, true))
64123137 900 bitmap_set_bit (need_eh_cleanup, gimple_bb (stmt)->index);
901 release_defs (stmt);
902 }
4fb5e5ca 903}
904
a0b1e585 905/* Delete a dead store at GSI, which is a gimple assignment. */
64123137 906
907static void
a5e83404 908delete_dead_or_redundant_assignment (gimple_stmt_iterator *gsi, const char *type)
64123137 909{
ec40332f 910 gimple *stmt = gsi_stmt (*gsi);
64123137 911 if (dump_file && (dump_flags & TDF_DETAILS))
912 {
bc5b8e83 913 fprintf (dump_file, " Deleted %s store: ", type);
1ffa4346 914 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
64123137 915 fprintf (dump_file, "\n");
916 }
917
918 /* Then we need to fix the operand of the consuming stmt. */
919 unlink_stmt_vdef (stmt);
920
921 /* Remove the dead store. */
64123137 922 basic_block bb = gimple_bb (stmt);
ec40332f 923 if (gsi_remove (gsi, true))
64123137 924 bitmap_set_bit (need_eh_cleanup, bb->index);
925
926 /* And release any SSA_NAMEs set in this statement back to the
927 SSA_NAME manager. */
928 release_defs (stmt);
929}
4fb5e5ca 930
4ee9c684 931/* Attempt to eliminate dead stores in the statement referenced by BSI.
932
933 A dead store is a store into a memory location which will later be
934 overwritten by another store without any intervening loads. In this
935 case the earlier store can be deleted.
936
937 In our SSA + virtual operand world we use immediate uses of virtual
938 operands to detect dead stores. If a store's virtual definition
939 is used precisely once by a later store to the same location which
940 post dominates the first store, then the first store is dead. */
941
64123137 942void
943dse_dom_walker::dse_optimize_stmt (gimple_stmt_iterator *gsi)
4ee9c684 944{
42acab1c 945 gimple *stmt = gsi_stmt (*gsi);
4ee9c684 946
e920115e 947 /* If this statement has no virtual defs, then there is nothing
4ee9c684 948 to do. */
dd277d48 949 if (!gimple_vdef (stmt))
4ee9c684 950 return;
951
9f559b20 952 /* Don't return early on *this_2(D) ={v} {CLOBBER}. */
953 if (gimple_has_volatile_ops (stmt)
954 && (!gimple_clobber_p (stmt)
955 || TREE_CODE (gimple_assign_lhs (stmt)) != MEM_REF))
52c2a307 956 return;
957
64123137 958 ao_ref ref;
959 if (!initialize_ao_ref_for_dse (stmt, &ref))
960 return;
961
258bd648 962 /* We know we have virtual definitions. We can handle assignments and
963 some builtin calls. */
964 if (gimple_call_builtin_p (stmt, BUILT_IN_NORMAL))
965 {
bc5b8e83 966 tree fndecl = gimple_call_fndecl (stmt);
967 switch (DECL_FUNCTION_CODE (fndecl))
258bd648 968 {
407a2aeb 969 case BUILT_IN_MEMCPY:
970 case BUILT_IN_MEMMOVE:
37ea4f1e 971 case BUILT_IN_STRNCPY:
407a2aeb 972 case BUILT_IN_MEMSET:
973 case BUILT_IN_MEMCPY_CHK:
974 case BUILT_IN_MEMMOVE_CHK:
37ea4f1e 975 case BUILT_IN_STRNCPY_CHK:
407a2aeb 976 case BUILT_IN_MEMSET_CHK:
977 {
978 /* Occasionally calls with an explicit length of zero
979 show up in the IL. It's pointless to do analysis
980 on them, they're trivially dead. */
981 tree size = gimple_call_arg (stmt, 2);
982 if (integer_zerop (size))
983 {
bc5b8e83 984 delete_dead_or_redundant_call (gsi, "dead");
407a2aeb 985 return;
986 }
987
988 /* If this is a memset call that initializes an object
989 to zero, it may be redundant with an earlier memset
990 or empty CONSTRUCTOR of a larger object. */
991 if ((DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMSET
992 || DECL_FUNCTION_CODE (fndecl) == BUILT_IN_MEMSET_CHK)
993 && integer_zerop (gimple_call_arg (stmt, 1)))
994 dse_optimize_redundant_stores (stmt);
995
996 enum dse_store_status store_status;
997 m_byte_tracking_enabled
998 = setup_live_bytes_from_ref (&ref, m_live_bytes);
999 store_status = dse_classify_store (&ref, stmt,
1000 m_byte_tracking_enabled,
1001 m_live_bytes);
1002 if (store_status == DSE_STORE_LIVE)
64123137 1003 return;
64123137 1004
407a2aeb 1005 if (store_status == DSE_STORE_MAYBE_PARTIAL_DEAD)
1006 {
1007 maybe_trim_memstar_call (&ref, m_live_bytes, stmt);
1008 return;
1009 }
bc5b8e83 1010
407a2aeb 1011 if (store_status == DSE_STORE_DEAD)
1012 delete_dead_or_redundant_call (gsi, "dead");
258bd648 1013 return;
407a2aeb 1014 }
1015
1016 case BUILT_IN_CALLOC:
1017 /* We already know the arguments are integer constants. */
1018 dse_optimize_redundant_stores (stmt);
1019 return;
1020
1021 default:
1022 return;
258bd648 1023 }
1024 }
1025
75a70cf9 1026 if (is_gimple_assign (stmt))
4ee9c684 1027 {
8ade4cde 1028 bool by_clobber_p = false;
4ee9c684 1029
bc5b8e83 1030 /* First see if this store is a CONSTRUCTOR and if there
1031 are subsequent CONSTRUCTOR stores which are totally
1032 subsumed by this statement. If so remove the subsequent
1033 CONSTRUCTOR store.
1034
1035 This will tend to make fewer calls into memset with longer
1036 arguments. */
1037 if (gimple_assign_rhs_code (stmt) == CONSTRUCTOR
1038 && CONSTRUCTOR_NELTS (gimple_assign_rhs1 (stmt)) == 0
1039 && !gimple_clobber_p (stmt))
1040 dse_optimize_redundant_stores (stmt);
1041
258bd648 1042 /* Self-assignments are zombies. */
1043 if (operand_equal_p (gimple_assign_rhs1 (stmt),
1044 gimple_assign_lhs (stmt), 0))
8ade4cde 1045 ;
258bd648 1046 else
1047 {
64123137 1048 m_byte_tracking_enabled
1049 = setup_live_bytes_from_ref (&ref, m_live_bytes);
1050 enum dse_store_status store_status;
8ade4cde 1051 store_status = dse_classify_store (&ref, stmt,
64123137 1052 m_byte_tracking_enabled,
8ade4cde 1053 m_live_bytes, &by_clobber_p);
64123137 1054 if (store_status == DSE_STORE_LIVE)
258bd648 1055 return;
64123137 1056
1057 if (store_status == DSE_STORE_MAYBE_PARTIAL_DEAD)
1058 {
1059 maybe_trim_partially_dead_store (&ref, m_live_bytes, stmt);
1060 return;
1061 }
258bd648 1062 }
2bf1fefd 1063
88114c9f 1064 /* Now we know that use_stmt kills the LHS of stmt. */
1065
9f559b20 1066 /* But only remove *this_2(D) ={v} {CLOBBER} if killed by
1067 another clobber stmt. */
1068 if (gimple_clobber_p (stmt)
8ade4cde 1069 && !by_clobber_p)
9f559b20 1070 return;
1071
bc5b8e83 1072 delete_dead_or_redundant_assignment (gsi, "dead");
4ee9c684 1073 }
1074}
1075
96752458 1076edge
54c91640 1077dse_dom_walker::before_dom_children (basic_block bb)
4ee9c684 1078{
75a70cf9 1079 gimple_stmt_iterator gsi;
4ee9c684 1080
3222e348 1081 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi);)
1082 {
1083 dse_optimize_stmt (&gsi);
1084 if (gsi_end_p (gsi))
1085 gsi = gsi_last_bb (bb);
1086 else
1087 gsi_prev (&gsi);
1088 }
96752458 1089 return NULL;
4ee9c684 1090}
1091
7620bc82 1092namespace {
1093
1094const pass_data pass_data_dse =
65b0537f 1095{
1096 GIMPLE_PASS, /* type */
1097 "dse", /* name */
1098 OPTGROUP_NONE, /* optinfo_flags */
65b0537f 1099 TV_TREE_DSE, /* tv_id */
1100 ( PROP_cfg | PROP_ssa ), /* properties_required */
1101 0, /* properties_provided */
1102 0, /* properties_destroyed */
1103 0, /* todo_flags_start */
8b88439e 1104 0, /* todo_flags_finish */
65b0537f 1105};
1106
7620bc82 1107class pass_dse : public gimple_opt_pass
65b0537f 1108{
1109public:
1110 pass_dse (gcc::context *ctxt)
1111 : gimple_opt_pass (pass_data_dse, ctxt)
1112 {}
1113
1114 /* opt_pass methods: */
1115 opt_pass * clone () { return new pass_dse (m_ctxt); }
1116 virtual bool gate (function *) { return flag_tree_dse != 0; }
1117 virtual unsigned int execute (function *);
1118
1119}; // class pass_dse
4fb5e5ca 1120
65b0537f 1121unsigned int
1122pass_dse::execute (function *fun)
4ee9c684 1123{
d02c8339 1124 need_eh_cleanup = BITMAP_ALLOC (NULL);
1125
ec415c45 1126 renumber_gimple_stmt_uids ();
4ee9c684 1127
1128 /* We might consider making this a property of each pass so that it
1129 can be [re]computed on an as-needed basis. Particularly since
1130 this pass could be seen as an extension of DCE which needs post
1131 dominators. */
1132 calculate_dominance_info (CDI_POST_DOMINATORS);
dd277d48 1133 calculate_dominance_info (CDI_DOMINATORS);
4ee9c684 1134
4ee9c684 1135 /* Dead store elimination is fundamentally a walk of the post-dominator
1136 tree and a backwards walk of statements within each block. */
65b0537f 1137 dse_dom_walker (CDI_POST_DOMINATORS).walk (fun->cfg->x_exit_block_ptr);
4ee9c684 1138
d02c8339 1139 /* Removal of stores may make some EH edges dead. Purge such edges from
1140 the CFG as needed. */
1141 if (!bitmap_empty_p (need_eh_cleanup))
1142 {
1143 gimple_purge_all_dead_eh_edges (need_eh_cleanup);
1144 cleanup_tree_cfg ();
1145 }
1146
1147 BITMAP_FREE (need_eh_cleanup);
64123137 1148
4ee9c684 1149 /* For now, just wipe the post-dominator information. */
1150 free_dominance_info (CDI_POST_DOMINATORS);
2a1990e9 1151 return 0;
4ee9c684 1152}
1153
7620bc82 1154} // anon namespace
1155
cbe8bda8 1156gimple_opt_pass *
1157make_pass_dse (gcc::context *ctxt)
1158{
1159 return new pass_dse (ctxt);
1160}