Default to dwarf version 4 on hppa64-hpux
[official-gcc.git] / gcc / tree-ssa-dce.c
blobc4907af923cb5c21991d6fbcf64577ad3bc2be2c
1 /* Dead code elimination pass for the GNU compiler.
2 Copyright (C) 2002-2021 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 3, or (at your option) any
12 later version.
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
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* Dead code elimination.
25 References:
27 Building an Optimizing Compiler,
28 Robert Morgan, Butterworth-Heinemann, 1998, Section 8.9.
30 Advanced Compiler Design and Implementation,
31 Steven Muchnick, Morgan Kaufmann, 1997, Section 18.10.
33 Dead-code elimination is the removal of statements which have no
34 impact on the program's output. "Dead statements" have no impact
35 on the program's output, while "necessary statements" may have
36 impact on the output.
38 The algorithm consists of three phases:
39 1. Marking as necessary all statements known to be necessary,
40 e.g. most function calls, writing a value to memory, etc;
41 2. Propagating necessary statements, e.g., the statements
42 giving values to operands in necessary statements; and
43 3. Removing dead statements. */
45 #include "config.h"
46 #include "system.h"
47 #include "coretypes.h"
48 #include "backend.h"
49 #include "rtl.h"
50 #include "tree.h"
51 #include "gimple.h"
52 #include "cfghooks.h"
53 #include "tree-pass.h"
54 #include "ssa.h"
55 #include "gimple-pretty-print.h"
56 #include "fold-const.h"
57 #include "calls.h"
58 #include "cfganal.h"
59 #include "tree-eh.h"
60 #include "gimplify.h"
61 #include "gimple-iterator.h"
62 #include "tree-cfg.h"
63 #include "tree-ssa-loop-niter.h"
64 #include "tree-into-ssa.h"
65 #include "tree-dfa.h"
66 #include "cfgloop.h"
67 #include "tree-scalar-evolution.h"
68 #include "tree-ssa-propagate.h"
69 #include "gimple-fold.h"
71 static struct stmt_stats
73 int total;
74 int total_phis;
75 int removed;
76 int removed_phis;
77 } stats;
79 #define STMT_NECESSARY GF_PLF_1
81 static vec<gimple *> worklist;
83 /* Vector indicating an SSA name has already been processed and marked
84 as necessary. */
85 static sbitmap processed;
87 /* Vector indicating that the last statement of a basic block has already
88 been marked as necessary. */
89 static sbitmap last_stmt_necessary;
91 /* Vector indicating that BB contains statements that are live. */
92 static sbitmap bb_contains_live_stmts;
94 /* Before we can determine whether a control branch is dead, we need to
95 compute which blocks are control dependent on which edges.
97 We expect each block to be control dependent on very few edges so we
98 use a bitmap for each block recording its edges. An array holds the
99 bitmap. The Ith bit in the bitmap is set if that block is dependent
100 on the Ith edge. */
101 static control_dependences *cd;
103 /* Vector indicating that a basic block has already had all the edges
104 processed that it is control dependent on. */
105 static sbitmap visited_control_parents;
107 /* TRUE if this pass alters the CFG (by removing control statements).
108 FALSE otherwise.
110 If this pass alters the CFG, then it will arrange for the dominators
111 to be recomputed. */
112 static bool cfg_altered;
114 /* When non-NULL holds map from basic block index into the postorder. */
115 static int *bb_postorder;
118 /* True if we should treat any stmt with a vdef as necessary. */
120 static inline bool
121 keep_all_vdefs_p ()
123 return optimize_debug;
126 /* If STMT is not already marked necessary, mark it, and add it to the
127 worklist if ADD_TO_WORKLIST is true. */
129 static inline void
130 mark_stmt_necessary (gimple *stmt, bool add_to_worklist)
132 gcc_assert (stmt);
134 if (gimple_plf (stmt, STMT_NECESSARY))
135 return;
137 if (dump_file && (dump_flags & TDF_DETAILS))
139 fprintf (dump_file, "Marking useful stmt: ");
140 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
141 fprintf (dump_file, "\n");
144 gimple_set_plf (stmt, STMT_NECESSARY, true);
145 if (add_to_worklist)
146 worklist.safe_push (stmt);
147 if (add_to_worklist && bb_contains_live_stmts && !is_gimple_debug (stmt))
148 bitmap_set_bit (bb_contains_live_stmts, gimple_bb (stmt)->index);
152 /* Mark the statement defining operand OP as necessary. */
154 static inline void
155 mark_operand_necessary (tree op)
157 gimple *stmt;
158 int ver;
160 gcc_assert (op);
162 ver = SSA_NAME_VERSION (op);
163 if (bitmap_bit_p (processed, ver))
165 stmt = SSA_NAME_DEF_STMT (op);
166 gcc_assert (gimple_nop_p (stmt)
167 || gimple_plf (stmt, STMT_NECESSARY));
168 return;
170 bitmap_set_bit (processed, ver);
172 stmt = SSA_NAME_DEF_STMT (op);
173 gcc_assert (stmt);
175 if (gimple_plf (stmt, STMT_NECESSARY) || gimple_nop_p (stmt))
176 return;
178 if (dump_file && (dump_flags & TDF_DETAILS))
180 fprintf (dump_file, "marking necessary through ");
181 print_generic_expr (dump_file, op);
182 fprintf (dump_file, " stmt ");
183 print_gimple_stmt (dump_file, stmt, 0);
186 gimple_set_plf (stmt, STMT_NECESSARY, true);
187 if (bb_contains_live_stmts)
188 bitmap_set_bit (bb_contains_live_stmts, gimple_bb (stmt)->index);
189 worklist.safe_push (stmt);
193 /* Mark STMT as necessary if it obviously is. Add it to the worklist if
194 it can make other statements necessary.
196 If AGGRESSIVE is false, control statements are conservatively marked as
197 necessary. */
199 static void
200 mark_stmt_if_obviously_necessary (gimple *stmt, bool aggressive)
202 /* Statements that are implicitly live. Most function calls, asm
203 and return statements are required. Labels and GIMPLE_BIND nodes
204 are kept because they are control flow, and we have no way of
205 knowing whether they can be removed. DCE can eliminate all the
206 other statements in a block, and CFG can then remove the block
207 and labels. */
208 switch (gimple_code (stmt))
210 case GIMPLE_PREDICT:
211 case GIMPLE_LABEL:
212 mark_stmt_necessary (stmt, false);
213 return;
215 case GIMPLE_ASM:
216 case GIMPLE_RESX:
217 case GIMPLE_RETURN:
218 mark_stmt_necessary (stmt, true);
219 return;
221 case GIMPLE_CALL:
223 tree callee = gimple_call_fndecl (stmt);
224 if (callee != NULL_TREE
225 && fndecl_built_in_p (callee, BUILT_IN_NORMAL))
226 switch (DECL_FUNCTION_CODE (callee))
228 case BUILT_IN_MALLOC:
229 case BUILT_IN_ALIGNED_ALLOC:
230 case BUILT_IN_CALLOC:
231 CASE_BUILT_IN_ALLOCA:
232 case BUILT_IN_STRDUP:
233 case BUILT_IN_STRNDUP:
234 case BUILT_IN_GOMP_ALLOC:
235 return;
237 default:;
240 if (callee != NULL_TREE
241 && flag_allocation_dce
242 && DECL_IS_REPLACEABLE_OPERATOR_NEW_P (callee))
243 return;
245 /* IFN_GOACC_LOOP calls are necessary in that they are used to
246 represent parameter (i.e. step, bound) of a lowered OpenACC
247 partitioned loop. But this kind of partitioned loop might not
248 survive from aggressive loop removal for it has loop exit and
249 is assumed to be finite. Therefore, we need to explicitly mark
250 these calls. (An example is libgomp.oacc-c-c++-common/pr84955.c) */
251 if (gimple_call_internal_p (stmt, IFN_GOACC_LOOP))
253 mark_stmt_necessary (stmt, true);
254 return;
256 break;
259 case GIMPLE_DEBUG:
260 /* Debug temps without a value are not useful. ??? If we could
261 easily locate the debug temp bind stmt for a use thereof,
262 would could refrain from marking all debug temps here, and
263 mark them only if they're used. */
264 if (gimple_debug_nonbind_marker_p (stmt)
265 || !gimple_debug_bind_p (stmt)
266 || gimple_debug_bind_has_value_p (stmt)
267 || TREE_CODE (gimple_debug_bind_get_var (stmt)) != DEBUG_EXPR_DECL)
268 mark_stmt_necessary (stmt, false);
269 return;
271 case GIMPLE_GOTO:
272 gcc_assert (!simple_goto_p (stmt));
273 mark_stmt_necessary (stmt, true);
274 return;
276 case GIMPLE_COND:
277 gcc_assert (EDGE_COUNT (gimple_bb (stmt)->succs) == 2);
278 /* Fall through. */
280 case GIMPLE_SWITCH:
281 if (! aggressive)
282 mark_stmt_necessary (stmt, true);
283 break;
285 case GIMPLE_ASSIGN:
286 if (gimple_clobber_p (stmt))
287 return;
288 break;
290 default:
291 break;
294 /* If the statement has volatile operands, it needs to be preserved.
295 Same for statements that can alter control flow in unpredictable
296 ways. */
297 if (gimple_has_side_effects (stmt) || is_ctrl_altering_stmt (stmt))
299 mark_stmt_necessary (stmt, true);
300 return;
303 /* If a statement could throw, it can be deemed necessary unless we
304 are allowed to remove dead EH. Test this after checking for
305 new/delete operators since we always elide their EH. */
306 if (!cfun->can_delete_dead_exceptions
307 && stmt_could_throw_p (cfun, stmt))
309 mark_stmt_necessary (stmt, true);
310 return;
313 if ((gimple_vdef (stmt) && keep_all_vdefs_p ())
314 || stmt_may_clobber_global_p (stmt))
316 mark_stmt_necessary (stmt, true);
317 return;
320 return;
324 /* Mark the last statement of BB as necessary. */
326 static void
327 mark_last_stmt_necessary (basic_block bb)
329 gimple *stmt = last_stmt (bb);
331 bitmap_set_bit (last_stmt_necessary, bb->index);
332 bitmap_set_bit (bb_contains_live_stmts, bb->index);
334 /* We actually mark the statement only if it is a control statement. */
335 if (stmt && is_ctrl_stmt (stmt))
336 mark_stmt_necessary (stmt, true);
340 /* Mark control dependent edges of BB as necessary. We have to do this only
341 once for each basic block so we set the appropriate bit after we're done.
343 When IGNORE_SELF is true, ignore BB in the list of control dependences. */
345 static void
346 mark_control_dependent_edges_necessary (basic_block bb, bool ignore_self)
348 bitmap_iterator bi;
349 unsigned edge_number;
350 bool skipped = false;
352 gcc_assert (bb != EXIT_BLOCK_PTR_FOR_FN (cfun));
354 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
355 return;
357 EXECUTE_IF_SET_IN_BITMAP (cd->get_edges_dependent_on (bb->index),
358 0, edge_number, bi)
360 basic_block cd_bb = cd->get_edge_src (edge_number);
362 if (ignore_self && cd_bb == bb)
364 skipped = true;
365 continue;
368 if (!bitmap_bit_p (last_stmt_necessary, cd_bb->index))
369 mark_last_stmt_necessary (cd_bb);
372 if (!skipped)
373 bitmap_set_bit (visited_control_parents, bb->index);
377 /* Find obviously necessary statements. These are things like most function
378 calls, and stores to file level variables.
380 If EL is NULL, control statements are conservatively marked as
381 necessary. Otherwise it contains the list of edges used by control
382 dependence analysis. */
384 static void
385 find_obviously_necessary_stmts (bool aggressive)
387 basic_block bb;
388 gimple_stmt_iterator gsi;
389 edge e;
390 gimple *phi, *stmt;
391 int flags;
393 FOR_EACH_BB_FN (bb, cfun)
395 /* PHI nodes are never inherently necessary. */
396 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
398 phi = gsi_stmt (gsi);
399 gimple_set_plf (phi, STMT_NECESSARY, false);
402 /* Check all statements in the block. */
403 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
405 stmt = gsi_stmt (gsi);
406 gimple_set_plf (stmt, STMT_NECESSARY, false);
407 mark_stmt_if_obviously_necessary (stmt, aggressive);
411 /* Pure and const functions are finite and thus have no infinite loops in
412 them. */
413 flags = flags_from_decl_or_type (current_function_decl);
414 if ((flags & (ECF_CONST|ECF_PURE)) && !(flags & ECF_LOOPING_CONST_OR_PURE))
415 return;
417 /* Prevent the empty possibly infinite loops from being removed. This is
418 needed to make the logic in remove_dead_stmt work to identify the
419 correct edge to keep when removing a controlling condition. */
420 if (aggressive)
422 if (mark_irreducible_loops ())
423 FOR_EACH_BB_FN (bb, cfun)
425 edge_iterator ei;
426 FOR_EACH_EDGE (e, ei, bb->succs)
427 if ((e->flags & EDGE_DFS_BACK)
428 && (e->flags & EDGE_IRREDUCIBLE_LOOP))
430 if (dump_file)
431 fprintf (dump_file, "Marking back edge of irreducible "
432 "loop %i->%i\n", e->src->index, e->dest->index);
433 mark_control_dependent_edges_necessary (e->dest, false);
437 for (auto loop : loops_list (cfun, 0))
438 /* For loops without an exit do not mark any condition. */
439 if (loop->exits->next && !finite_loop_p (loop))
441 if (dump_file)
442 fprintf (dump_file, "cannot prove finiteness of loop %i\n",
443 loop->num);
444 mark_control_dependent_edges_necessary (loop->latch, false);
450 /* Return true if REF is based on an aliased base, otherwise false. */
452 static bool
453 ref_may_be_aliased (tree ref)
455 gcc_assert (TREE_CODE (ref) != WITH_SIZE_EXPR);
456 while (handled_component_p (ref))
457 ref = TREE_OPERAND (ref, 0);
458 if ((TREE_CODE (ref) == MEM_REF || TREE_CODE (ref) == TARGET_MEM_REF)
459 && TREE_CODE (TREE_OPERAND (ref, 0)) == ADDR_EXPR)
460 ref = TREE_OPERAND (TREE_OPERAND (ref, 0), 0);
461 return !(DECL_P (ref)
462 && !may_be_aliased (ref));
465 static bitmap visited = NULL;
466 static unsigned int longest_chain = 0;
467 static unsigned int total_chain = 0;
468 static unsigned int nr_walks = 0;
469 static bool chain_ovfl = false;
471 /* Worker for the walker that marks reaching definitions of REF,
472 which is based on a non-aliased decl, necessary. It returns
473 true whenever the defining statement of the current VDEF is
474 a kill for REF, as no dominating may-defs are necessary for REF
475 anymore. DATA points to the basic-block that contains the
476 stmt that refers to REF. */
478 static bool
479 mark_aliased_reaching_defs_necessary_1 (ao_ref *ref, tree vdef, void *data)
481 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef);
483 /* All stmts we visit are necessary. */
484 if (! gimple_clobber_p (def_stmt))
485 mark_operand_necessary (vdef);
487 /* If the stmt lhs kills ref, then we can stop walking. */
488 if (gimple_has_lhs (def_stmt)
489 && TREE_CODE (gimple_get_lhs (def_stmt)) != SSA_NAME
490 /* The assignment is not necessarily carried out if it can throw
491 and we can catch it in the current function where we could inspect
492 the previous value.
493 ??? We only need to care about the RHS throwing. For aggregate
494 assignments or similar calls and non-call exceptions the LHS
495 might throw as well. */
496 && !stmt_can_throw_internal (cfun, def_stmt))
498 tree base, lhs = gimple_get_lhs (def_stmt);
499 poly_int64 size, offset, max_size;
500 bool reverse;
501 ao_ref_base (ref);
502 base
503 = get_ref_base_and_extent (lhs, &offset, &size, &max_size, &reverse);
504 /* We can get MEM[symbol: sZ, index: D.8862_1] here,
505 so base == refd->base does not always hold. */
506 if (base == ref->base)
508 /* For a must-alias check we need to be able to constrain
509 the accesses properly. */
510 if (known_eq (size, max_size)
511 && known_subrange_p (ref->offset, ref->max_size, offset, size))
512 return true;
513 /* Or they need to be exactly the same. */
514 else if (ref->ref
515 /* Make sure there is no induction variable involved
516 in the references (gcc.c-torture/execute/pr42142.c).
517 The simplest way is to check if the kill dominates
518 the use. */
519 /* But when both are in the same block we cannot
520 easily tell whether we came from a backedge
521 unless we decide to compute stmt UIDs
522 (see PR58246). */
523 && (basic_block) data != gimple_bb (def_stmt)
524 && dominated_by_p (CDI_DOMINATORS, (basic_block) data,
525 gimple_bb (def_stmt))
526 && operand_equal_p (ref->ref, lhs, 0))
527 return true;
531 /* Otherwise keep walking. */
532 return false;
535 static void
536 mark_aliased_reaching_defs_necessary (gimple *stmt, tree ref)
538 /* Should have been caught before calling this function. */
539 gcc_checking_assert (!keep_all_vdefs_p ());
541 unsigned int chain;
542 ao_ref refd;
543 gcc_assert (!chain_ovfl);
544 ao_ref_init (&refd, ref);
545 chain = walk_aliased_vdefs (&refd, gimple_vuse (stmt),
546 mark_aliased_reaching_defs_necessary_1,
547 gimple_bb (stmt), NULL);
548 if (chain > longest_chain)
549 longest_chain = chain;
550 total_chain += chain;
551 nr_walks++;
554 /* Worker for the walker that marks reaching definitions of REF, which
555 is not based on a non-aliased decl. For simplicity we need to end
556 up marking all may-defs necessary that are not based on a non-aliased
557 decl. The only job of this walker is to skip may-defs based on
558 a non-aliased decl. */
560 static bool
561 mark_all_reaching_defs_necessary_1 (ao_ref *ref ATTRIBUTE_UNUSED,
562 tree vdef, void *data ATTRIBUTE_UNUSED)
564 gimple *def_stmt = SSA_NAME_DEF_STMT (vdef);
566 /* We have to skip already visited (and thus necessary) statements
567 to make the chaining work after we dropped back to simple mode. */
568 if (chain_ovfl
569 && bitmap_bit_p (processed, SSA_NAME_VERSION (vdef)))
571 gcc_assert (gimple_nop_p (def_stmt)
572 || gimple_plf (def_stmt, STMT_NECESSARY));
573 return false;
576 /* We want to skip stores to non-aliased variables. */
577 if (!chain_ovfl
578 && gimple_assign_single_p (def_stmt))
580 tree lhs = gimple_assign_lhs (def_stmt);
581 if (!ref_may_be_aliased (lhs))
582 return false;
585 /* We want to skip statments that do not constitute stores but have
586 a virtual definition. */
587 if (gcall *call = dyn_cast <gcall *> (def_stmt))
589 tree callee = gimple_call_fndecl (call);
590 if (callee != NULL_TREE
591 && fndecl_built_in_p (callee, BUILT_IN_NORMAL))
592 switch (DECL_FUNCTION_CODE (callee))
594 case BUILT_IN_MALLOC:
595 case BUILT_IN_ALIGNED_ALLOC:
596 case BUILT_IN_CALLOC:
597 CASE_BUILT_IN_ALLOCA:
598 case BUILT_IN_FREE:
599 case BUILT_IN_GOMP_ALLOC:
600 case BUILT_IN_GOMP_FREE:
601 return false;
603 default:;
606 if (callee != NULL_TREE
607 && (DECL_IS_REPLACEABLE_OPERATOR_NEW_P (callee)
608 || DECL_IS_OPERATOR_DELETE_P (callee))
609 && gimple_call_from_new_or_delete (call))
610 return false;
613 if (! gimple_clobber_p (def_stmt))
614 mark_operand_necessary (vdef);
616 return false;
619 static void
620 mark_all_reaching_defs_necessary (gimple *stmt)
622 /* Should have been caught before calling this function. */
623 gcc_checking_assert (!keep_all_vdefs_p ());
624 walk_aliased_vdefs (NULL, gimple_vuse (stmt),
625 mark_all_reaching_defs_necessary_1, NULL, &visited);
628 /* Return true for PHI nodes with one or identical arguments
629 can be removed. */
630 static bool
631 degenerate_phi_p (gimple *phi)
633 unsigned int i;
634 tree op = gimple_phi_arg_def (phi, 0);
635 for (i = 1; i < gimple_phi_num_args (phi); i++)
636 if (gimple_phi_arg_def (phi, i) != op)
637 return false;
638 return true;
641 /* Return that NEW_CALL and DELETE_CALL are a valid pair of new
642 and delete operators. */
644 static bool
645 valid_new_delete_pair_p (gimple *new_call, gimple *delete_call)
647 tree new_asm = DECL_ASSEMBLER_NAME (gimple_call_fndecl (new_call));
648 tree delete_asm = DECL_ASSEMBLER_NAME (gimple_call_fndecl (delete_call));
649 return valid_new_delete_pair_p (new_asm, delete_asm);
652 /* Propagate necessity using the operands of necessary statements.
653 Process the uses on each statement in the worklist, and add all
654 feeding statements which contribute to the calculation of this
655 value to the worklist.
657 In conservative mode, EL is NULL. */
659 static void
660 propagate_necessity (bool aggressive)
662 gimple *stmt;
664 if (dump_file && (dump_flags & TDF_DETAILS))
665 fprintf (dump_file, "\nProcessing worklist:\n");
667 while (worklist.length () > 0)
669 /* Take STMT from worklist. */
670 stmt = worklist.pop ();
672 if (dump_file && (dump_flags & TDF_DETAILS))
674 fprintf (dump_file, "processing: ");
675 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
676 fprintf (dump_file, "\n");
679 if (aggressive)
681 /* Mark the last statement of the basic blocks on which the block
682 containing STMT is control dependent, but only if we haven't
683 already done so. */
684 basic_block bb = gimple_bb (stmt);
685 if (bb != ENTRY_BLOCK_PTR_FOR_FN (cfun)
686 && !bitmap_bit_p (visited_control_parents, bb->index))
687 mark_control_dependent_edges_necessary (bb, false);
690 if (gimple_code (stmt) == GIMPLE_PHI
691 /* We do not process virtual PHI nodes nor do we track their
692 necessity. */
693 && !virtual_operand_p (gimple_phi_result (stmt)))
695 /* PHI nodes are somewhat special in that each PHI alternative has
696 data and control dependencies. All the statements feeding the
697 PHI node's arguments are always necessary. In aggressive mode,
698 we also consider the control dependent edges leading to the
699 predecessor block associated with each PHI alternative as
700 necessary. */
701 gphi *phi = as_a <gphi *> (stmt);
702 size_t k;
704 for (k = 0; k < gimple_phi_num_args (stmt); k++)
706 tree arg = PHI_ARG_DEF (stmt, k);
707 if (TREE_CODE (arg) == SSA_NAME)
708 mark_operand_necessary (arg);
711 /* For PHI operands it matters from where the control flow arrives
712 to the BB. Consider the following example:
714 a=exp1;
715 b=exp2;
716 if (test)
718 else
720 c=PHI(a,b)
722 We need to mark control dependence of the empty basic blocks, since they
723 contains computation of PHI operands.
725 Doing so is too restrictive in the case the predecestor block is in
726 the loop. Consider:
728 if (b)
730 int i;
731 for (i = 0; i<1000; ++i)
733 j = 0;
735 return j;
737 There is PHI for J in the BB containing return statement.
738 In this case the control dependence of predecestor block (that is
739 within the empty loop) also contains the block determining number
740 of iterations of the block that would prevent removing of empty
741 loop in this case.
743 This scenario can be avoided by splitting critical edges.
744 To save the critical edge splitting pass we identify how the control
745 dependence would look like if the edge was split.
747 Consider the modified CFG created from current CFG by splitting
748 edge B->C. In the postdominance tree of modified CFG, C' is
749 always child of C. There are two cases how chlids of C' can look
750 like:
752 1) C' is leaf
754 In this case the only basic block C' is control dependent on is B.
756 2) C' has single child that is B
758 In this case control dependence of C' is same as control
759 dependence of B in original CFG except for block B itself.
760 (since C' postdominate B in modified CFG)
762 Now how to decide what case happens? There are two basic options:
764 a) C postdominate B. Then C immediately postdominate B and
765 case 2 happens iff there is no other way from B to C except
766 the edge B->C.
768 There is other way from B to C iff there is succesor of B that
769 is not postdominated by B. Testing this condition is somewhat
770 expensive, because we need to iterate all succesors of B.
771 We are safe to assume that this does not happen: we will mark B
772 as needed when processing the other path from B to C that is
773 conrol dependent on B and marking control dependencies of B
774 itself is harmless because they will be processed anyway after
775 processing control statement in B.
777 b) C does not postdominate B. Always case 1 happens since there is
778 path from C to exit that does not go through B and thus also C'. */
780 if (aggressive && !degenerate_phi_p (stmt))
782 for (k = 0; k < gimple_phi_num_args (stmt); k++)
784 basic_block arg_bb = gimple_phi_arg_edge (phi, k)->src;
786 if (gimple_bb (stmt)
787 != get_immediate_dominator (CDI_POST_DOMINATORS, arg_bb))
789 if (!bitmap_bit_p (last_stmt_necessary, arg_bb->index))
790 mark_last_stmt_necessary (arg_bb);
792 else if (arg_bb != ENTRY_BLOCK_PTR_FOR_FN (cfun)
793 && !bitmap_bit_p (visited_control_parents,
794 arg_bb->index))
795 mark_control_dependent_edges_necessary (arg_bb, true);
799 else
801 /* Propagate through the operands. Examine all the USE, VUSE and
802 VDEF operands in this statement. Mark all the statements
803 which feed this statement's uses as necessary. */
804 ssa_op_iter iter;
805 tree use;
807 /* If this is a call to free which is directly fed by an
808 allocation function do not mark that necessary through
809 processing the argument. */
810 bool is_delete_operator
811 = (is_gimple_call (stmt)
812 && gimple_call_from_new_or_delete (as_a <gcall *> (stmt))
813 && gimple_call_operator_delete_p (as_a <gcall *> (stmt)));
814 if (is_delete_operator
815 || gimple_call_builtin_p (stmt, BUILT_IN_FREE)
816 || gimple_call_builtin_p (stmt, BUILT_IN_GOMP_FREE))
818 tree ptr = gimple_call_arg (stmt, 0);
819 gcall *def_stmt;
820 tree def_callee;
821 /* If the pointer we free is defined by an allocation
822 function do not add the call to the worklist. */
823 if (TREE_CODE (ptr) == SSA_NAME
824 && (def_stmt = dyn_cast <gcall *> (SSA_NAME_DEF_STMT (ptr)))
825 && (def_callee = gimple_call_fndecl (def_stmt))
826 && ((DECL_BUILT_IN_CLASS (def_callee) == BUILT_IN_NORMAL
827 && (DECL_FUNCTION_CODE (def_callee) == BUILT_IN_ALIGNED_ALLOC
828 || DECL_FUNCTION_CODE (def_callee) == BUILT_IN_MALLOC
829 || DECL_FUNCTION_CODE (def_callee) == BUILT_IN_CALLOC
830 || DECL_FUNCTION_CODE (def_callee) == BUILT_IN_GOMP_ALLOC))
831 || (DECL_IS_REPLACEABLE_OPERATOR_NEW_P (def_callee)
832 && gimple_call_from_new_or_delete (def_stmt))))
834 if (is_delete_operator
835 && !valid_new_delete_pair_p (def_stmt, stmt))
836 mark_operand_necessary (gimple_call_arg (stmt, 0));
838 /* Delete operators can have alignment and (or) size
839 as next arguments. When being a SSA_NAME, they
840 must be marked as necessary. Similarly GOMP_free. */
841 if (gimple_call_num_args (stmt) >= 2)
842 for (unsigned i = 1; i < gimple_call_num_args (stmt);
843 i++)
845 tree arg = gimple_call_arg (stmt, i);
846 if (TREE_CODE (arg) == SSA_NAME)
847 mark_operand_necessary (arg);
850 continue;
854 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
855 mark_operand_necessary (use);
857 use = gimple_vuse (stmt);
858 if (!use)
859 continue;
861 /* No need to search for vdefs if we intrinsicly keep them all. */
862 if (keep_all_vdefs_p ())
863 continue;
865 /* If we dropped to simple mode make all immediately
866 reachable definitions necessary. */
867 if (chain_ovfl)
869 mark_all_reaching_defs_necessary (stmt);
870 continue;
873 /* For statements that may load from memory (have a VUSE) we
874 have to mark all reaching (may-)definitions as necessary.
875 We partition this task into two cases:
876 1) explicit loads based on decls that are not aliased
877 2) implicit loads (like calls) and explicit loads not
878 based on decls that are not aliased (like indirect
879 references or loads from globals)
880 For 1) we mark all reaching may-defs as necessary, stopping
881 at dominating kills. For 2) we want to mark all dominating
882 references necessary, but non-aliased ones which we handle
883 in 1). By keeping a global visited bitmap for references
884 we walk for 2) we avoid quadratic behavior for those. */
886 if (gcall *call = dyn_cast <gcall *> (stmt))
888 tree callee = gimple_call_fndecl (call);
889 unsigned i;
891 /* Calls to functions that are merely acting as barriers
892 or that only store to memory do not make any previous
893 stores necessary. */
894 if (callee != NULL_TREE
895 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL
896 && (DECL_FUNCTION_CODE (callee) == BUILT_IN_MEMSET
897 || DECL_FUNCTION_CODE (callee) == BUILT_IN_MEMSET_CHK
898 || DECL_FUNCTION_CODE (callee) == BUILT_IN_MALLOC
899 || DECL_FUNCTION_CODE (callee) == BUILT_IN_ALIGNED_ALLOC
900 || DECL_FUNCTION_CODE (callee) == BUILT_IN_CALLOC
901 || DECL_FUNCTION_CODE (callee) == BUILT_IN_FREE
902 || DECL_FUNCTION_CODE (callee) == BUILT_IN_VA_END
903 || ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (callee))
904 || DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_SAVE
905 || DECL_FUNCTION_CODE (callee) == BUILT_IN_STACK_RESTORE
906 || DECL_FUNCTION_CODE (callee) == BUILT_IN_ASSUME_ALIGNED))
907 continue;
909 if (callee != NULL_TREE
910 && (DECL_IS_REPLACEABLE_OPERATOR_NEW_P (callee)
911 || DECL_IS_OPERATOR_DELETE_P (callee))
912 && gimple_call_from_new_or_delete (call))
913 continue;
915 /* Calls implicitly load from memory, their arguments
916 in addition may explicitly perform memory loads. */
917 mark_all_reaching_defs_necessary (call);
918 for (i = 0; i < gimple_call_num_args (call); ++i)
920 tree arg = gimple_call_arg (call, i);
921 if (TREE_CODE (arg) == SSA_NAME
922 || is_gimple_min_invariant (arg))
923 continue;
924 if (TREE_CODE (arg) == WITH_SIZE_EXPR)
925 arg = TREE_OPERAND (arg, 0);
926 if (!ref_may_be_aliased (arg))
927 mark_aliased_reaching_defs_necessary (call, arg);
930 else if (gimple_assign_single_p (stmt))
932 tree rhs;
933 /* If this is a load mark things necessary. */
934 rhs = gimple_assign_rhs1 (stmt);
935 if (TREE_CODE (rhs) != SSA_NAME
936 && !is_gimple_min_invariant (rhs)
937 && TREE_CODE (rhs) != CONSTRUCTOR)
939 if (!ref_may_be_aliased (rhs))
940 mark_aliased_reaching_defs_necessary (stmt, rhs);
941 else
942 mark_all_reaching_defs_necessary (stmt);
945 else if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
947 tree rhs = gimple_return_retval (return_stmt);
948 /* A return statement may perform a load. */
949 if (rhs
950 && TREE_CODE (rhs) != SSA_NAME
951 && !is_gimple_min_invariant (rhs)
952 && TREE_CODE (rhs) != CONSTRUCTOR)
954 if (!ref_may_be_aliased (rhs))
955 mark_aliased_reaching_defs_necessary (stmt, rhs);
956 else
957 mark_all_reaching_defs_necessary (stmt);
960 else if (gasm *asm_stmt = dyn_cast <gasm *> (stmt))
962 unsigned i;
963 mark_all_reaching_defs_necessary (stmt);
964 /* Inputs may perform loads. */
965 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
967 tree op = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
968 if (TREE_CODE (op) != SSA_NAME
969 && !is_gimple_min_invariant (op)
970 && TREE_CODE (op) != CONSTRUCTOR
971 && !ref_may_be_aliased (op))
972 mark_aliased_reaching_defs_necessary (stmt, op);
975 else if (gimple_code (stmt) == GIMPLE_TRANSACTION)
977 /* The beginning of a transaction is a memory barrier. */
978 /* ??? If we were really cool, we'd only be a barrier
979 for the memories touched within the transaction. */
980 mark_all_reaching_defs_necessary (stmt);
982 else
983 gcc_unreachable ();
985 /* If we over-used our alias oracle budget drop to simple
986 mode. The cost metric allows quadratic behavior
987 (number of uses times number of may-defs queries) up to
988 a constant maximal number of queries and after that falls back to
989 super-linear complexity. */
990 if (/* Constant but quadratic for small functions. */
991 total_chain > 128 * 128
992 /* Linear in the number of may-defs. */
993 && total_chain > 32 * longest_chain
994 /* Linear in the number of uses. */
995 && total_chain > nr_walks * 32)
997 chain_ovfl = true;
998 if (visited)
999 bitmap_clear (visited);
1005 /* Remove dead PHI nodes from block BB. */
1007 static bool
1008 remove_dead_phis (basic_block bb)
1010 bool something_changed = false;
1011 gphi *phi;
1012 gphi_iterator gsi;
1014 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi);)
1016 stats.total_phis++;
1017 phi = gsi.phi ();
1019 /* We do not track necessity of virtual PHI nodes. Instead do
1020 very simple dead PHI removal here. */
1021 if (virtual_operand_p (gimple_phi_result (phi)))
1023 /* Virtual PHI nodes with one or identical arguments
1024 can be removed. */
1025 if (degenerate_phi_p (phi))
1027 tree vdef = gimple_phi_result (phi);
1028 tree vuse = gimple_phi_arg_def (phi, 0);
1030 use_operand_p use_p;
1031 imm_use_iterator iter;
1032 gimple *use_stmt;
1033 FOR_EACH_IMM_USE_STMT (use_stmt, iter, vdef)
1034 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1035 SET_USE (use_p, vuse);
1036 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vdef)
1037 && TREE_CODE (vuse) == SSA_NAME)
1038 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse) = 1;
1040 else
1041 gimple_set_plf (phi, STMT_NECESSARY, true);
1044 if (!gimple_plf (phi, STMT_NECESSARY))
1046 something_changed = true;
1047 if (dump_file && (dump_flags & TDF_DETAILS))
1049 fprintf (dump_file, "Deleting : ");
1050 print_gimple_stmt (dump_file, phi, 0, TDF_SLIM);
1051 fprintf (dump_file, "\n");
1054 remove_phi_node (&gsi, true);
1055 stats.removed_phis++;
1056 continue;
1059 gsi_next (&gsi);
1061 return something_changed;
1065 /* Remove dead statement pointed to by iterator I. Receives the basic block BB
1066 containing I so that we don't have to look it up. */
1068 static void
1069 remove_dead_stmt (gimple_stmt_iterator *i, basic_block bb,
1070 vec<edge> &to_remove_edges)
1072 gimple *stmt = gsi_stmt (*i);
1074 if (dump_file && (dump_flags & TDF_DETAILS))
1076 fprintf (dump_file, "Deleting : ");
1077 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1078 fprintf (dump_file, "\n");
1081 stats.removed++;
1083 /* If we have determined that a conditional branch statement contributes
1084 nothing to the program, then we not only remove it, but we need to update
1085 the CFG. We can chose any of edges out of BB as long as we are sure to not
1086 close infinite loops. This is done by always choosing the edge closer to
1087 exit in inverted_post_order_compute order. */
1088 if (is_ctrl_stmt (stmt))
1090 edge_iterator ei;
1091 edge e = NULL, e2;
1093 /* See if there is only one non-abnormal edge. */
1094 if (single_succ_p (bb))
1095 e = single_succ_edge (bb);
1096 /* Otherwise chose one that is closer to bb with live statement in it.
1097 To be able to chose one, we compute inverted post order starting from
1098 all BBs with live statements. */
1099 if (!e)
1101 if (!bb_postorder)
1103 auto_vec<int, 20> postorder;
1104 inverted_post_order_compute (&postorder,
1105 &bb_contains_live_stmts);
1106 bb_postorder = XNEWVEC (int, last_basic_block_for_fn (cfun));
1107 for (unsigned int i = 0; i < postorder.length (); ++i)
1108 bb_postorder[postorder[i]] = i;
1110 FOR_EACH_EDGE (e2, ei, bb->succs)
1111 if (!e || e2->dest == EXIT_BLOCK_PTR_FOR_FN (cfun)
1112 || bb_postorder [e->dest->index]
1113 < bb_postorder [e2->dest->index])
1114 e = e2;
1116 gcc_assert (e);
1117 e->probability = profile_probability::always ();
1119 /* The edge is no longer associated with a conditional, so it does
1120 not have TRUE/FALSE flags.
1121 We are also safe to drop EH/ABNORMAL flags and turn them into
1122 normal control flow, because we know that all the destinations (including
1123 those odd edges) are equivalent for program execution. */
1124 e->flags &= ~(EDGE_TRUE_VALUE | EDGE_FALSE_VALUE | EDGE_EH | EDGE_ABNORMAL);
1126 /* The lone outgoing edge from BB will be a fallthru edge. */
1127 e->flags |= EDGE_FALLTHRU;
1129 /* Remove the remaining outgoing edges. */
1130 FOR_EACH_EDGE (e2, ei, bb->succs)
1131 if (e != e2)
1133 /* If we made a BB unconditionally exit a loop or removed
1134 an entry into an irreducible region, then this transform
1135 alters the set of BBs in the loop. Schedule a fixup. */
1136 if (loop_exit_edge_p (bb->loop_father, e)
1137 || (e2->dest->flags & BB_IRREDUCIBLE_LOOP))
1138 loops_state_set (LOOPS_NEED_FIXUP);
1139 to_remove_edges.safe_push (e2);
1143 /* If this is a store into a variable that is being optimized away,
1144 add a debug bind stmt if possible. */
1145 if (MAY_HAVE_DEBUG_BIND_STMTS
1146 && gimple_assign_single_p (stmt)
1147 && is_gimple_val (gimple_assign_rhs1 (stmt)))
1149 tree lhs = gimple_assign_lhs (stmt);
1150 if ((VAR_P (lhs) || TREE_CODE (lhs) == PARM_DECL)
1151 && !DECL_IGNORED_P (lhs)
1152 && is_gimple_reg_type (TREE_TYPE (lhs))
1153 && !is_global_var (lhs)
1154 && !DECL_HAS_VALUE_EXPR_P (lhs))
1156 tree rhs = gimple_assign_rhs1 (stmt);
1157 gdebug *note
1158 = gimple_build_debug_bind (lhs, unshare_expr (rhs), stmt);
1159 gsi_insert_after (i, note, GSI_SAME_STMT);
1163 unlink_stmt_vdef (stmt);
1164 gsi_remove (i, true);
1165 release_defs (stmt);
1168 /* Helper for maybe_optimize_arith_overflow. Find in *TP if there are any
1169 uses of data (SSA_NAME) other than REALPART_EXPR referencing it. */
1171 static tree
1172 find_non_realpart_uses (tree *tp, int *walk_subtrees, void *data)
1174 if (TYPE_P (*tp) || TREE_CODE (*tp) == REALPART_EXPR)
1175 *walk_subtrees = 0;
1176 if (*tp == (tree) data)
1177 return *tp;
1178 return NULL_TREE;
1181 /* If the IMAGPART_EXPR of the {ADD,SUB,MUL}_OVERFLOW result is never used,
1182 but REALPART_EXPR is, optimize the {ADD,SUB,MUL}_OVERFLOW internal calls
1183 into plain unsigned {PLUS,MINUS,MULT}_EXPR, and if needed reset debug
1184 uses. */
1186 static void
1187 maybe_optimize_arith_overflow (gimple_stmt_iterator *gsi,
1188 enum tree_code subcode)
1190 gimple *stmt = gsi_stmt (*gsi);
1191 tree lhs = gimple_call_lhs (stmt);
1193 if (lhs == NULL || TREE_CODE (lhs) != SSA_NAME)
1194 return;
1196 imm_use_iterator imm_iter;
1197 use_operand_p use_p;
1198 bool has_debug_uses = false;
1199 bool has_realpart_uses = false;
1200 bool has_other_uses = false;
1201 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, lhs)
1203 gimple *use_stmt = USE_STMT (use_p);
1204 if (is_gimple_debug (use_stmt))
1205 has_debug_uses = true;
1206 else if (is_gimple_assign (use_stmt)
1207 && gimple_assign_rhs_code (use_stmt) == REALPART_EXPR
1208 && TREE_OPERAND (gimple_assign_rhs1 (use_stmt), 0) == lhs)
1209 has_realpart_uses = true;
1210 else
1212 has_other_uses = true;
1213 break;
1217 if (!has_realpart_uses || has_other_uses)
1218 return;
1220 tree arg0 = gimple_call_arg (stmt, 0);
1221 tree arg1 = gimple_call_arg (stmt, 1);
1222 location_t loc = gimple_location (stmt);
1223 tree type = TREE_TYPE (TREE_TYPE (lhs));
1224 tree utype = type;
1225 if (!TYPE_UNSIGNED (type))
1226 utype = build_nonstandard_integer_type (TYPE_PRECISION (type), 1);
1227 tree result = fold_build2_loc (loc, subcode, utype,
1228 fold_convert_loc (loc, utype, arg0),
1229 fold_convert_loc (loc, utype, arg1));
1230 result = fold_convert_loc (loc, type, result);
1232 if (has_debug_uses)
1234 gimple *use_stmt;
1235 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, lhs)
1237 if (!gimple_debug_bind_p (use_stmt))
1238 continue;
1239 tree v = gimple_debug_bind_get_value (use_stmt);
1240 if (walk_tree (&v, find_non_realpart_uses, lhs, NULL))
1242 gimple_debug_bind_reset_value (use_stmt);
1243 update_stmt (use_stmt);
1248 if (TREE_CODE (result) == INTEGER_CST && TREE_OVERFLOW (result))
1249 result = drop_tree_overflow (result);
1250 tree overflow = build_zero_cst (type);
1251 tree ctype = build_complex_type (type);
1252 if (TREE_CODE (result) == INTEGER_CST)
1253 result = build_complex (ctype, result, overflow);
1254 else
1255 result = build2_loc (gimple_location (stmt), COMPLEX_EXPR,
1256 ctype, result, overflow);
1258 if (dump_file && (dump_flags & TDF_DETAILS))
1260 fprintf (dump_file, "Transforming call: ");
1261 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1262 fprintf (dump_file, "because the overflow result is never used into: ");
1263 print_generic_stmt (dump_file, result, TDF_SLIM);
1264 fprintf (dump_file, "\n");
1267 gimplify_and_update_call_from_tree (gsi, result);
1270 /* Eliminate unnecessary statements. Any instruction not marked as necessary
1271 contributes nothing to the program, and can be deleted. */
1273 static bool
1274 eliminate_unnecessary_stmts (void)
1276 bool something_changed = false;
1277 basic_block bb;
1278 gimple_stmt_iterator gsi, psi;
1279 gimple *stmt;
1280 tree call;
1281 auto_vec<edge> to_remove_edges;
1283 if (dump_file && (dump_flags & TDF_DETAILS))
1284 fprintf (dump_file, "\nEliminating unnecessary statements:\n");
1286 clear_special_calls ();
1288 /* Walking basic blocks and statements in reverse order avoids
1289 releasing SSA names before any other DEFs that refer to them are
1290 released. This helps avoid loss of debug information, as we get
1291 a chance to propagate all RHSs of removed SSAs into debug uses,
1292 rather than only the latest ones. E.g., consider:
1294 x_3 = y_1 + z_2;
1295 a_5 = x_3 - b_4;
1296 # DEBUG a => a_5
1298 If we were to release x_3 before a_5, when we reached a_5 and
1299 tried to substitute it into the debug stmt, we'd see x_3 there,
1300 but x_3's DEF, type, etc would have already been disconnected.
1301 By going backwards, the debug stmt first changes to:
1303 # DEBUG a => x_3 - b_4
1305 and then to:
1307 # DEBUG a => y_1 + z_2 - b_4
1309 as desired. */
1310 gcc_assert (dom_info_available_p (CDI_DOMINATORS));
1311 auto_vec<basic_block> h;
1312 h = get_all_dominated_blocks (CDI_DOMINATORS,
1313 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
1315 while (h.length ())
1317 bb = h.pop ();
1319 /* Remove dead statements. */
1320 auto_bitmap debug_seen;
1321 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi = psi)
1323 stmt = gsi_stmt (gsi);
1325 psi = gsi;
1326 gsi_prev (&psi);
1328 stats.total++;
1330 /* We can mark a call to free as not necessary if the
1331 defining statement of its argument is not necessary
1332 (and thus is getting removed). */
1333 if (gimple_plf (stmt, STMT_NECESSARY)
1334 && (gimple_call_builtin_p (stmt, BUILT_IN_FREE)
1335 || (is_gimple_call (stmt)
1336 && gimple_call_from_new_or_delete (as_a <gcall *> (stmt))
1337 && gimple_call_operator_delete_p (as_a <gcall *> (stmt)))))
1339 tree ptr = gimple_call_arg (stmt, 0);
1340 if (TREE_CODE (ptr) == SSA_NAME)
1342 gimple *def_stmt = SSA_NAME_DEF_STMT (ptr);
1343 if (!gimple_nop_p (def_stmt)
1344 && !gimple_plf (def_stmt, STMT_NECESSARY))
1345 gimple_set_plf (stmt, STMT_NECESSARY, false);
1349 /* If GSI is not necessary then remove it. */
1350 if (!gimple_plf (stmt, STMT_NECESSARY))
1352 /* Keep clobbers that we can keep live live. */
1353 if (gimple_clobber_p (stmt))
1355 ssa_op_iter iter;
1356 use_operand_p use_p;
1357 bool dead = false;
1358 FOR_EACH_SSA_USE_OPERAND (use_p, stmt, iter, SSA_OP_USE)
1360 tree name = USE_FROM_PTR (use_p);
1361 if (!SSA_NAME_IS_DEFAULT_DEF (name)
1362 && !bitmap_bit_p (processed, SSA_NAME_VERSION (name)))
1364 dead = true;
1365 break;
1368 if (!dead)
1370 bitmap_clear (debug_seen);
1371 continue;
1374 if (!is_gimple_debug (stmt))
1375 something_changed = true;
1376 remove_dead_stmt (&gsi, bb, to_remove_edges);
1377 continue;
1379 else if (is_gimple_call (stmt))
1381 tree name = gimple_call_lhs (stmt);
1383 notice_special_calls (as_a <gcall *> (stmt));
1385 /* When LHS of var = call (); is dead, simplify it into
1386 call (); saving one operand. */
1387 if (name
1388 && TREE_CODE (name) == SSA_NAME
1389 && !bitmap_bit_p (processed, SSA_NAME_VERSION (name))
1390 /* Avoid doing so for allocation calls which we
1391 did not mark as necessary, it will confuse the
1392 special logic we apply to malloc/free pair removal. */
1393 && (!(call = gimple_call_fndecl (stmt))
1394 || ((DECL_BUILT_IN_CLASS (call) != BUILT_IN_NORMAL
1395 || (DECL_FUNCTION_CODE (call) != BUILT_IN_ALIGNED_ALLOC
1396 && DECL_FUNCTION_CODE (call) != BUILT_IN_MALLOC
1397 && DECL_FUNCTION_CODE (call) != BUILT_IN_CALLOC
1398 && !ALLOCA_FUNCTION_CODE_P
1399 (DECL_FUNCTION_CODE (call))))
1400 && !DECL_IS_REPLACEABLE_OPERATOR_NEW_P (call))))
1402 something_changed = true;
1403 if (dump_file && (dump_flags & TDF_DETAILS))
1405 fprintf (dump_file, "Deleting LHS of call: ");
1406 print_gimple_stmt (dump_file, stmt, 0, TDF_SLIM);
1407 fprintf (dump_file, "\n");
1410 gimple_call_set_lhs (stmt, NULL_TREE);
1411 maybe_clean_or_replace_eh_stmt (stmt, stmt);
1412 update_stmt (stmt);
1413 release_ssa_name (name);
1415 /* GOMP_SIMD_LANE (unless three argument) or ASAN_POISON
1416 without lhs is not needed. */
1417 if (gimple_call_internal_p (stmt))
1418 switch (gimple_call_internal_fn (stmt))
1420 case IFN_GOMP_SIMD_LANE:
1421 if (gimple_call_num_args (stmt) >= 3
1422 && !integer_nonzerop (gimple_call_arg (stmt, 2)))
1423 break;
1424 /* FALLTHRU */
1425 case IFN_ASAN_POISON:
1426 remove_dead_stmt (&gsi, bb, to_remove_edges);
1427 break;
1428 default:
1429 break;
1432 else if (gimple_call_internal_p (stmt))
1433 switch (gimple_call_internal_fn (stmt))
1435 case IFN_ADD_OVERFLOW:
1436 maybe_optimize_arith_overflow (&gsi, PLUS_EXPR);
1437 break;
1438 case IFN_SUB_OVERFLOW:
1439 maybe_optimize_arith_overflow (&gsi, MINUS_EXPR);
1440 break;
1441 case IFN_MUL_OVERFLOW:
1442 maybe_optimize_arith_overflow (&gsi, MULT_EXPR);
1443 break;
1444 default:
1445 break;
1448 else if (gimple_debug_bind_p (stmt))
1450 /* We are only keeping the last debug-bind of a
1451 non-DEBUG_EXPR_DECL variable in a series of
1452 debug-bind stmts. */
1453 tree var = gimple_debug_bind_get_var (stmt);
1454 if (TREE_CODE (var) != DEBUG_EXPR_DECL
1455 && !bitmap_set_bit (debug_seen, DECL_UID (var)))
1456 remove_dead_stmt (&gsi, bb, to_remove_edges);
1457 continue;
1459 bitmap_clear (debug_seen);
1462 /* Remove dead PHI nodes. */
1463 something_changed |= remove_dead_phis (bb);
1467 /* Since we don't track liveness of virtual PHI nodes, it is possible that we
1468 rendered some PHI nodes unreachable while they are still in use.
1469 Mark them for renaming. */
1470 if (!to_remove_edges.is_empty ())
1472 basic_block prev_bb;
1474 /* Remove edges. We've delayed this to not get bogus debug stmts
1475 during PHI node removal. */
1476 for (unsigned i = 0; i < to_remove_edges.length (); ++i)
1477 remove_edge (to_remove_edges[i]);
1478 cfg_altered = true;
1480 find_unreachable_blocks ();
1482 /* Delete all unreachable basic blocks in reverse dominator order. */
1483 for (bb = EXIT_BLOCK_PTR_FOR_FN (cfun)->prev_bb;
1484 bb != ENTRY_BLOCK_PTR_FOR_FN (cfun); bb = prev_bb)
1486 prev_bb = bb->prev_bb;
1488 if (!bitmap_bit_p (bb_contains_live_stmts, bb->index)
1489 || !(bb->flags & BB_REACHABLE))
1491 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
1492 gsi_next (&gsi))
1493 if (virtual_operand_p (gimple_phi_result (gsi.phi ())))
1495 bool found = false;
1496 imm_use_iterator iter;
1498 FOR_EACH_IMM_USE_STMT (stmt, iter,
1499 gimple_phi_result (gsi.phi ()))
1501 if (!(gimple_bb (stmt)->flags & BB_REACHABLE))
1502 continue;
1503 if (gimple_code (stmt) == GIMPLE_PHI
1504 || gimple_plf (stmt, STMT_NECESSARY))
1506 found = true;
1507 break;
1510 if (found)
1511 mark_virtual_phi_result_for_renaming (gsi.phi ());
1514 if (!(bb->flags & BB_REACHABLE))
1516 /* Speed up the removal of blocks that don't
1517 dominate others. Walking backwards, this should
1518 be the common case. ??? Do we need to recompute
1519 dominators because of cfg_altered? */
1520 if (!first_dom_son (CDI_DOMINATORS, bb))
1521 delete_basic_block (bb);
1522 else
1524 h = get_all_dominated_blocks (CDI_DOMINATORS, bb);
1526 while (h.length ())
1528 bb = h.pop ();
1529 prev_bb = bb->prev_bb;
1530 /* Rearrangements to the CFG may have failed
1531 to update the dominators tree, so that
1532 formerly-dominated blocks are now
1533 otherwise reachable. */
1534 if (!!(bb->flags & BB_REACHABLE))
1535 continue;
1536 delete_basic_block (bb);
1539 h.release ();
1546 if (bb_postorder)
1547 free (bb_postorder);
1548 bb_postorder = NULL;
1550 return something_changed;
1554 /* Print out removed statement statistics. */
1556 static void
1557 print_stats (void)
1559 float percg;
1561 percg = ((float) stats.removed / (float) stats.total) * 100;
1562 fprintf (dump_file, "Removed %d of %d statements (%d%%)\n",
1563 stats.removed, stats.total, (int) percg);
1565 if (stats.total_phis == 0)
1566 percg = 0;
1567 else
1568 percg = ((float) stats.removed_phis / (float) stats.total_phis) * 100;
1570 fprintf (dump_file, "Removed %d of %d PHI nodes (%d%%)\n",
1571 stats.removed_phis, stats.total_phis, (int) percg);
1574 /* Initialization for this pass. Set up the used data structures. */
1576 static void
1577 tree_dce_init (bool aggressive)
1579 memset ((void *) &stats, 0, sizeof (stats));
1581 if (aggressive)
1583 last_stmt_necessary = sbitmap_alloc (last_basic_block_for_fn (cfun));
1584 bitmap_clear (last_stmt_necessary);
1585 bb_contains_live_stmts = sbitmap_alloc (last_basic_block_for_fn (cfun));
1586 bitmap_clear (bb_contains_live_stmts);
1589 processed = sbitmap_alloc (num_ssa_names + 1);
1590 bitmap_clear (processed);
1592 worklist.create (64);
1593 cfg_altered = false;
1596 /* Cleanup after this pass. */
1598 static void
1599 tree_dce_done (bool aggressive)
1601 if (aggressive)
1603 delete cd;
1604 sbitmap_free (visited_control_parents);
1605 sbitmap_free (last_stmt_necessary);
1606 sbitmap_free (bb_contains_live_stmts);
1607 bb_contains_live_stmts = NULL;
1610 sbitmap_free (processed);
1612 worklist.release ();
1615 /* Main routine to eliminate dead code.
1617 AGGRESSIVE controls the aggressiveness of the algorithm.
1618 In conservative mode, we ignore control dependence and simply declare
1619 all but the most trivially dead branches necessary. This mode is fast.
1620 In aggressive mode, control dependences are taken into account, which
1621 results in more dead code elimination, but at the cost of some time.
1623 FIXME: Aggressive mode before PRE doesn't work currently because
1624 the dominance info is not invalidated after DCE1. This is
1625 not an issue right now because we only run aggressive DCE
1626 as the last tree SSA pass, but keep this in mind when you
1627 start experimenting with pass ordering. */
1629 static unsigned int
1630 perform_tree_ssa_dce (bool aggressive)
1632 bool something_changed = 0;
1634 calculate_dominance_info (CDI_DOMINATORS);
1636 /* Preheaders are needed for SCEV to work.
1637 Simple lateches and recorded exits improve chances that loop will
1638 proved to be finite in testcases such as in loop-15.c and loop-24.c */
1639 bool in_loop_pipeline = scev_initialized_p ();
1640 if (aggressive && ! in_loop_pipeline)
1642 scev_initialize ();
1643 loop_optimizer_init (LOOPS_NORMAL
1644 | LOOPS_HAVE_RECORDED_EXITS);
1647 tree_dce_init (aggressive);
1649 if (aggressive)
1651 /* Compute control dependence. */
1652 calculate_dominance_info (CDI_POST_DOMINATORS);
1653 cd = new control_dependences ();
1655 visited_control_parents =
1656 sbitmap_alloc (last_basic_block_for_fn (cfun));
1657 bitmap_clear (visited_control_parents);
1659 mark_dfs_back_edges ();
1662 find_obviously_necessary_stmts (aggressive);
1664 if (aggressive && ! in_loop_pipeline)
1666 loop_optimizer_finalize ();
1667 scev_finalize ();
1670 longest_chain = 0;
1671 total_chain = 0;
1672 nr_walks = 0;
1673 chain_ovfl = false;
1674 visited = BITMAP_ALLOC (NULL);
1675 propagate_necessity (aggressive);
1676 BITMAP_FREE (visited);
1678 something_changed |= eliminate_unnecessary_stmts ();
1679 something_changed |= cfg_altered;
1681 /* We do not update postdominators, so free them unconditionally. */
1682 free_dominance_info (CDI_POST_DOMINATORS);
1684 /* If we removed paths in the CFG, then we need to update
1685 dominators as well. I haven't investigated the possibility
1686 of incrementally updating dominators. */
1687 if (cfg_altered)
1688 free_dominance_info (CDI_DOMINATORS);
1690 statistics_counter_event (cfun, "Statements deleted", stats.removed);
1691 statistics_counter_event (cfun, "PHI nodes deleted", stats.removed_phis);
1693 /* Debugging dumps. */
1694 if (dump_file && (dump_flags & (TDF_STATS|TDF_DETAILS)))
1695 print_stats ();
1697 tree_dce_done (aggressive);
1699 if (something_changed)
1701 free_numbers_of_iterations_estimates (cfun);
1702 if (in_loop_pipeline)
1703 scev_reset ();
1704 return TODO_update_ssa | TODO_cleanup_cfg;
1706 return 0;
1709 /* Pass entry points. */
1710 static unsigned int
1711 tree_ssa_dce (void)
1713 return perform_tree_ssa_dce (/*aggressive=*/false);
1716 static unsigned int
1717 tree_ssa_cd_dce (void)
1719 return perform_tree_ssa_dce (/*aggressive=*/optimize >= 2);
1722 namespace {
1724 const pass_data pass_data_dce =
1726 GIMPLE_PASS, /* type */
1727 "dce", /* name */
1728 OPTGROUP_NONE, /* optinfo_flags */
1729 TV_TREE_DCE, /* tv_id */
1730 ( PROP_cfg | PROP_ssa ), /* properties_required */
1731 0, /* properties_provided */
1732 0, /* properties_destroyed */
1733 0, /* todo_flags_start */
1734 0, /* todo_flags_finish */
1737 class pass_dce : public gimple_opt_pass
1739 public:
1740 pass_dce (gcc::context *ctxt)
1741 : gimple_opt_pass (pass_data_dce, ctxt)
1744 /* opt_pass methods: */
1745 opt_pass * clone () { return new pass_dce (m_ctxt); }
1746 virtual bool gate (function *) { return flag_tree_dce != 0; }
1747 virtual unsigned int execute (function *) { return tree_ssa_dce (); }
1749 }; // class pass_dce
1751 } // anon namespace
1753 gimple_opt_pass *
1754 make_pass_dce (gcc::context *ctxt)
1756 return new pass_dce (ctxt);
1759 namespace {
1761 const pass_data pass_data_cd_dce =
1763 GIMPLE_PASS, /* type */
1764 "cddce", /* name */
1765 OPTGROUP_NONE, /* optinfo_flags */
1766 TV_TREE_CD_DCE, /* tv_id */
1767 ( PROP_cfg | PROP_ssa ), /* properties_required */
1768 0, /* properties_provided */
1769 0, /* properties_destroyed */
1770 0, /* todo_flags_start */
1771 0, /* todo_flags_finish */
1774 class pass_cd_dce : public gimple_opt_pass
1776 public:
1777 pass_cd_dce (gcc::context *ctxt)
1778 : gimple_opt_pass (pass_data_cd_dce, ctxt), update_address_taken_p (false)
1781 /* opt_pass methods: */
1782 opt_pass * clone () { return new pass_cd_dce (m_ctxt); }
1783 void set_pass_param (unsigned n, bool param)
1785 gcc_assert (n == 0);
1786 update_address_taken_p = param;
1788 virtual bool gate (function *) { return flag_tree_dce != 0; }
1789 virtual unsigned int execute (function *)
1791 return (tree_ssa_cd_dce ()
1792 | (update_address_taken_p ? TODO_update_address_taken : 0));
1795 private:
1796 bool update_address_taken_p;
1797 }; // class pass_cd_dce
1799 } // anon namespace
1801 gimple_opt_pass *
1802 make_pass_cd_dce (gcc::context *ctxt)
1804 return new pass_cd_dce (ctxt);
1808 /* A cheap DCE interface. WORKLIST is a list of possibly dead stmts and
1809 is consumed by this function. The function has linear complexity in
1810 the number of dead stmts with a constant factor like the average SSA
1811 use operands number. */
1813 void
1814 simple_dce_from_worklist (bitmap worklist)
1816 while (! bitmap_empty_p (worklist))
1818 /* Pop item. */
1819 unsigned i = bitmap_first_set_bit (worklist);
1820 bitmap_clear_bit (worklist, i);
1822 tree def = ssa_name (i);
1823 /* Removed by somebody else or still in use. */
1824 if (! def || ! has_zero_uses (def))
1825 continue;
1827 gimple *t = SSA_NAME_DEF_STMT (def);
1828 if (gimple_has_side_effects (t))
1829 continue;
1831 /* Add uses to the worklist. */
1832 ssa_op_iter iter;
1833 use_operand_p use_p;
1834 FOR_EACH_PHI_OR_STMT_USE (use_p, t, iter, SSA_OP_USE)
1836 tree use = USE_FROM_PTR (use_p);
1837 if (TREE_CODE (use) == SSA_NAME
1838 && ! SSA_NAME_IS_DEFAULT_DEF (use))
1839 bitmap_set_bit (worklist, SSA_NAME_VERSION (use));
1842 /* Remove stmt. */
1843 if (dump_file && (dump_flags & TDF_DETAILS))
1845 fprintf (dump_file, "Removing dead stmt:");
1846 print_gimple_stmt (dump_file, t, 0);
1848 gimple_stmt_iterator gsi = gsi_for_stmt (t);
1849 if (gimple_code (t) == GIMPLE_PHI)
1850 remove_phi_node (&gsi, true);
1851 else
1853 gsi_remove (&gsi, true);
1854 release_defs (t);