1 /* Support routines for Value Range Propagation (VRP).
2 Copyright (C) 2005-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
26 #include "tree-pass.h"
28 #include "gimple-pretty-print.h"
30 #include "gimple-fold.h"
32 #include "gimple-iterator.h"
34 #include "tree-ssa-loop-manip.h"
35 #include "tree-ssa-loop.h"
37 #include "tree-scalar-evolution.h"
38 #include "tree-ssa-propagate.h"
39 #include "alloc-pool.h"
41 #include "tree-cfgcleanup.h"
42 #include "vr-values.h"
43 #include "gimple-ssa-evrp-analyze.h"
45 class evrp_folder
: public substitute_and_fold_engine
48 tree
get_value (tree
) FINAL OVERRIDE
;
49 evrp_folder (class vr_values
*vr_values_
) : vr_values (vr_values_
) { }
50 bool simplify_stmt_using_ranges (gimple_stmt_iterator
*gsi
)
51 { return vr_values
->simplify_stmt_using_ranges (gsi
); }
52 class vr_values
*vr_values
;
55 DISABLE_COPY_AND_ASSIGN (evrp_folder
);
59 evrp_folder::get_value (tree op
)
61 return vr_values
->op_with_constant_singleton_value_range (op
);
64 /* evrp_dom_walker visits the basic blocks in the dominance order and set
65 the Value Ranges (VR) for SSA_NAMEs in the scope. Use this VR to
68 class evrp_dom_walker
: public dom_walker
72 : dom_walker (CDI_DOMINATORS
),
73 evrp_folder (evrp_range_analyzer
.get_vr_values ())
75 need_eh_cleanup
= BITMAP_ALLOC (NULL
);
79 BITMAP_FREE (need_eh_cleanup
);
81 virtual edge
before_dom_children (basic_block
);
82 virtual void after_dom_children (basic_block
);
86 DISABLE_COPY_AND_ASSIGN (evrp_dom_walker
);
87 bitmap need_eh_cleanup
;
88 auto_vec
<gimple
*> stmts_to_fixup
;
89 auto_vec
<gimple
*> stmts_to_remove
;
91 class evrp_range_analyzer evrp_range_analyzer
;
92 class evrp_folder evrp_folder
;
96 evrp_dom_walker::before_dom_children (basic_block bb
)
98 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
99 fprintf (dump_file
, "Visiting BB%d\n", bb
->index
);
101 evrp_range_analyzer
.enter (bb
);
103 for (gphi_iterator gpi
= gsi_start_phis (bb
);
104 !gsi_end_p (gpi
); gsi_next (&gpi
))
106 gphi
*phi
= gpi
.phi ();
107 tree lhs
= PHI_RESULT (phi
);
108 if (virtual_operand_p (lhs
))
111 value_range
*vr
= evrp_range_analyzer
.get_value_range (lhs
);
112 /* Mark PHIs whose lhs we fully propagate for removal. */
113 tree val
= value_range_constant_singleton (vr
);
114 if (val
&& may_propagate_copy (lhs
, val
))
116 stmts_to_remove
.safe_push (phi
);
121 edge taken_edge
= NULL
;
123 /* Visit all other stmts and discover any new VRs possible. */
124 for (gimple_stmt_iterator gsi
= gsi_start_bb (bb
);
125 !gsi_end_p (gsi
); gsi_next (&gsi
))
127 gimple
*stmt
= gsi_stmt (gsi
);
128 tree output
= NULL_TREE
;
129 gimple
*old_stmt
= stmt
;
130 bool was_noreturn
= (is_gimple_call (stmt
)
131 && gimple_call_noreturn_p (stmt
));
133 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
135 fprintf (dump_file
, "Visiting stmt ");
136 print_gimple_stmt (dump_file
, stmt
, 0);
139 evrp_range_analyzer
.record_ranges_from_stmt (stmt
, false);
141 if (gcond
*cond
= dyn_cast
<gcond
*> (stmt
))
143 evrp_range_analyzer
.vrp_visit_cond_stmt (cond
, &taken_edge
);
146 if (taken_edge
->flags
& EDGE_TRUE_VALUE
)
147 gimple_cond_make_true (cond
);
148 else if (taken_edge
->flags
& EDGE_FALSE_VALUE
)
149 gimple_cond_make_false (cond
);
155 else if (stmt_interesting_for_vrp (stmt
))
157 output
= get_output_for_vrp (stmt
);
161 value_range
*vr
= evrp_range_analyzer
.get_value_range (output
);
163 /* Mark stmts whose output we fully propagate for removal. */
164 if ((val
= value_range_constant_singleton (vr
))
165 && may_propagate_copy (output
, val
)
166 && !stmt_could_throw_p (cfun
, stmt
)
167 && !gimple_has_side_effects (stmt
))
169 stmts_to_remove
.safe_push (stmt
);
175 /* Try folding stmts with the VR discovered. */
176 bool did_replace
= evrp_folder
.replace_uses_in (stmt
);
177 if (fold_stmt (&gsi
, follow_single_use_edges
)
180 stmt
= gsi_stmt (gsi
);
184 if (evrp_folder
.simplify_stmt_using_ranges (&gsi
))
186 stmt
= gsi_stmt (gsi
);
193 /* If we cleaned up EH information from the statement,
195 if (maybe_clean_or_replace_eh_stmt (old_stmt
, stmt
))
196 bitmap_set_bit (need_eh_cleanup
, bb
->index
);
198 /* If we turned a not noreturn call into a noreturn one
199 schedule it for fixup. */
201 && is_gimple_call (stmt
)
202 && gimple_call_noreturn_p (stmt
))
203 stmts_to_fixup
.safe_push (stmt
);
205 if (gimple_assign_single_p (stmt
))
207 tree rhs
= gimple_assign_rhs1 (stmt
);
208 if (TREE_CODE (rhs
) == ADDR_EXPR
)
209 recompute_tree_invariant_for_addr_expr (rhs
);
214 /* Visit BB successor PHI nodes and replace PHI args. */
217 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
219 for (gphi_iterator gpi
= gsi_start_phis (e
->dest
);
220 !gsi_end_p (gpi
); gsi_next (&gpi
))
222 gphi
*phi
= gpi
.phi ();
223 use_operand_p use_p
= PHI_ARG_DEF_PTR_FROM_EDGE (phi
, e
);
224 tree arg
= USE_FROM_PTR (use_p
);
225 if (TREE_CODE (arg
) != SSA_NAME
226 || virtual_operand_p (arg
))
228 value_range
*vr
= evrp_range_analyzer
.get_value_range (arg
);
229 tree val
= value_range_constant_singleton (vr
);
230 if (val
&& may_propagate_copy (arg
, val
))
231 propagate_value (use_p
, val
);
239 evrp_dom_walker::after_dom_children (basic_block bb
)
241 evrp_range_analyzer
.leave (bb
);
244 /* Perform any cleanups after the main phase of EVRP has completed. */
247 evrp_dom_walker::cleanup (void)
251 fprintf (dump_file
, "\nValue ranges after Early VRP:\n\n");
252 evrp_range_analyzer
.dump_all_value_ranges (dump_file
);
253 fprintf (dump_file
, "\n");
256 /* Remove stmts in reverse order to make debug stmt creation possible. */
257 while (! stmts_to_remove
.is_empty ())
259 gimple
*stmt
= stmts_to_remove
.pop ();
260 if (dump_file
&& dump_flags
& TDF_DETAILS
)
262 fprintf (dump_file
, "Removing dead stmt ");
263 print_gimple_stmt (dump_file
, stmt
, 0);
264 fprintf (dump_file
, "\n");
266 gimple_stmt_iterator gsi
= gsi_for_stmt (stmt
);
267 if (gimple_code (stmt
) == GIMPLE_PHI
)
268 remove_phi_node (&gsi
, true);
271 unlink_stmt_vdef (stmt
);
272 gsi_remove (&gsi
, true);
277 if (!bitmap_empty_p (need_eh_cleanup
))
278 gimple_purge_all_dead_eh_edges (need_eh_cleanup
);
280 /* Fixup stmts that became noreturn calls. This may require splitting
281 blocks and thus isn't possible during the dominator walk. Do this
282 in reverse order so we don't inadvertedly remove a stmt we want to
283 fixup by visiting a dominating now noreturn call first. */
284 while (!stmts_to_fixup
.is_empty ())
286 gimple
*stmt
= stmts_to_fixup
.pop ();
287 fixup_noreturn_call (stmt
);
290 evrp_folder
.vr_values
->cleanup_edges_and_switches ();
293 /* Main entry point for the early vrp pass which is a simplified non-iterative
294 version of vrp where basic blocks are visited in dominance order. Value
295 ranges discovered in early vrp will also be used by ipa-vrp. */
300 /* Ideally this setup code would move into the ctor for the dominator
301 walk. However, this setup can change the number of blocks which
302 invalidates the internal arrays that are set up by the dominator
304 loop_optimizer_init (LOOPS_NORMAL
| LOOPS_HAVE_RECORDED_EXITS
);
305 rewrite_into_loop_closed_ssa (NULL
, TODO_update_ssa
);
307 calculate_dominance_info (CDI_DOMINATORS
);
309 /* Walk stmts in dominance order and propagate VRP. */
310 evrp_dom_walker walker
;
311 walker
.walk (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
315 loop_optimizer_finalize ();
321 const pass_data pass_data_early_vrp
=
323 GIMPLE_PASS
, /* type */
325 OPTGROUP_NONE
, /* optinfo_flags */
326 TV_TREE_EARLY_VRP
, /* tv_id */
327 PROP_ssa
, /* properties_required */
328 0, /* properties_provided */
329 0, /* properties_destroyed */
330 0, /* todo_flags_start */
331 ( TODO_cleanup_cfg
| TODO_update_ssa
| TODO_verify_all
),
334 class pass_early_vrp
: public gimple_opt_pass
337 pass_early_vrp (gcc::context
*ctxt
)
338 : gimple_opt_pass (pass_data_early_vrp
, ctxt
)
341 /* opt_pass methods: */
342 opt_pass
* clone () { return new pass_early_vrp (m_ctxt
); }
343 virtual bool gate (function
*)
345 return flag_tree_vrp
!= 0;
347 virtual unsigned int execute (function
*)
348 { return execute_early_vrp (); }
354 make_pass_early_vrp (gcc::context
*ctxt
)
356 return new pass_early_vrp (ctxt
);