* g++.dg/debug/dwarf2/ref-3.C: XFAIL AIX.
[official-gcc.git] / gcc / gimple-ssa-isolate-paths.c
blob9d2fc8a30c0de4759da7bf990262fc7f9a553cac
1 /* Detect paths through the CFG which can never be executed in a conforming
2 program and isolate them.
4 Copyright (C) 2013-2016 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "cfghooks.h"
29 #include "tree-pass.h"
30 #include "ssa.h"
31 #include "diagnostic-core.h"
32 #include "fold-const.h"
33 #include "gimple-iterator.h"
34 #include "gimple-walk.h"
35 #include "tree-ssa.h"
36 #include "cfgloop.h"
37 #include "tree-cfg.h"
38 #include "intl.h"
41 static bool cfg_altered;
43 /* Callback for walk_stmt_load_store_ops.
45 Return TRUE if OP will dereference the tree stored in DATA, FALSE
46 otherwise.
48 This routine only makes a superficial check for a dereference. Thus,
49 it must only be used if it is safe to return a false negative. */
50 static bool
51 check_loadstore (gimple *stmt, tree op, tree, void *data)
53 if ((TREE_CODE (op) == MEM_REF || TREE_CODE (op) == TARGET_MEM_REF)
54 && operand_equal_p (TREE_OPERAND (op, 0), (tree)data, 0))
56 TREE_THIS_VOLATILE (op) = 1;
57 TREE_SIDE_EFFECTS (op) = 1;
58 update_stmt (stmt);
59 return true;
61 return false;
64 /* Insert a trap after SI and split the block after the trap. */
66 static void
67 insert_trap (gimple_stmt_iterator *si_p, tree op)
69 /* We want the NULL pointer dereference to actually occur so that
70 code that wishes to catch the signal can do so.
72 If the dereference is a load, then there's nothing to do as the
73 LHS will be a throw-away SSA_NAME and the RHS is the NULL dereference.
75 If the dereference is a store and we can easily transform the RHS,
76 then simplify the RHS to enable more DCE. Note that we require the
77 statement to be a GIMPLE_ASSIGN which filters out calls on the RHS. */
78 gimple *stmt = gsi_stmt (*si_p);
79 if (walk_stmt_load_store_ops (stmt, (void *)op, NULL, check_loadstore)
80 && is_gimple_assign (stmt)
81 && INTEGRAL_TYPE_P (TREE_TYPE (gimple_assign_lhs (stmt))))
83 /* We just need to turn the RHS into zero converted to the proper
84 type. */
85 tree type = TREE_TYPE (gimple_assign_lhs (stmt));
86 gimple_assign_set_rhs_code (stmt, INTEGER_CST);
87 gimple_assign_set_rhs1 (stmt, fold_convert (type, integer_zero_node));
88 update_stmt (stmt);
91 gcall *new_stmt
92 = gimple_build_call (builtin_decl_explicit (BUILT_IN_TRAP), 0);
93 gimple_seq seq = NULL;
94 gimple_seq_add_stmt (&seq, new_stmt);
96 /* If we had a NULL pointer dereference, then we want to insert the
97 __builtin_trap after the statement, for the other cases we want
98 to insert before the statement. */
99 if (walk_stmt_load_store_ops (stmt, (void *)op,
100 check_loadstore,
101 check_loadstore))
103 gsi_insert_after (si_p, seq, GSI_NEW_STMT);
104 if (stmt_ends_bb_p (stmt))
106 split_block (gimple_bb (stmt), stmt);
107 return;
110 else
111 gsi_insert_before (si_p, seq, GSI_NEW_STMT);
113 split_block (gimple_bb (new_stmt), new_stmt);
114 *si_p = gsi_for_stmt (stmt);
117 /* BB when reached via incoming edge E will exhibit undefined behavior
118 at STMT. Isolate and optimize the path which exhibits undefined
119 behavior.
121 Isolation is simple. Duplicate BB and redirect E to BB'.
123 Optimization is simple as well. Replace STMT in BB' with an
124 unconditional trap and remove all outgoing edges from BB'.
126 If RET_ZERO, do not trap, only return NULL.
128 DUPLICATE is a pre-existing duplicate, use it as BB' if it exists.
130 Return BB'. */
132 basic_block
133 isolate_path (basic_block bb, basic_block duplicate,
134 edge e, gimple *stmt, tree op, bool ret_zero)
136 gimple_stmt_iterator si, si2;
137 edge_iterator ei;
138 edge e2;
140 /* First duplicate BB if we have not done so already and remove all
141 the duplicate's outgoing edges as duplicate is going to unconditionally
142 trap. Removing the outgoing edges is both an optimization and ensures
143 we don't need to do any PHI node updates. */
144 if (!duplicate)
146 duplicate = duplicate_block (bb, NULL, NULL);
147 if (!ret_zero)
148 for (ei = ei_start (duplicate->succs); (e2 = ei_safe_edge (ei)); )
149 remove_edge (e2);
152 /* Complete the isolation step by redirecting E to reach DUPLICATE. */
153 e2 = redirect_edge_and_branch (e, duplicate);
154 if (e2)
155 flush_pending_stmts (e2);
158 /* There may be more than one statement in DUPLICATE which exhibits
159 undefined behavior. Ultimately we want the first such statement in
160 DUPLCIATE so that we're able to delete as much code as possible.
162 So each time we discover undefined behavior in DUPLICATE, search for
163 the statement which triggers undefined behavior. If found, then
164 transform the statement into a trap and delete everything after the
165 statement. If not found, then this particular instance was subsumed by
166 an earlier instance of undefined behavior and there's nothing to do.
168 This is made more complicated by the fact that we have STMT, which is in
169 BB rather than in DUPLICATE. So we set up two iterators, one for each
170 block and walk forward looking for STMT in BB, advancing each iterator at
171 each step.
173 When we find STMT the second iterator should point to STMT's equivalent in
174 duplicate. If DUPLICATE ends before STMT is found in BB, then there's
175 nothing to do.
177 Ignore labels and debug statements. */
178 si = gsi_start_nondebug_after_labels_bb (bb);
179 si2 = gsi_start_nondebug_after_labels_bb (duplicate);
180 while (!gsi_end_p (si) && !gsi_end_p (si2) && gsi_stmt (si) != stmt)
182 gsi_next_nondebug (&si);
183 gsi_next_nondebug (&si2);
186 /* This would be an indicator that we never found STMT in BB, which should
187 never happen. */
188 gcc_assert (!gsi_end_p (si));
190 /* If we did not run to the end of DUPLICATE, then SI points to STMT and
191 SI2 points to the duplicate of STMT in DUPLICATE. Insert a trap
192 before SI2 and remove SI2 and all trailing statements. */
193 if (!gsi_end_p (si2))
195 if (ret_zero)
197 greturn *ret = as_a <greturn *> (gsi_stmt (si2));
198 tree zero = build_zero_cst (TREE_TYPE (gimple_return_retval (ret)));
199 gimple_return_set_retval (ret, zero);
200 update_stmt (ret);
202 else
203 insert_trap (&si2, op);
206 return duplicate;
209 /* Look for PHI nodes which feed statements in the same block where
210 the value of the PHI node implies the statement is erroneous.
212 For example, a NULL PHI arg value which then feeds a pointer
213 dereference.
215 When found isolate and optimize the path associated with the PHI
216 argument feeding the erroneous statement. */
217 static void
218 find_implicit_erroneous_behavior (void)
220 basic_block bb;
222 FOR_EACH_BB_FN (bb, cfun)
224 gphi_iterator si;
226 /* Out of an abundance of caution, do not isolate paths to a
227 block where the block has any abnormal outgoing edges.
229 We might be able to relax this in the future. We have to detect
230 when we have to split the block with the NULL dereference and
231 the trap we insert. We have to preserve abnormal edges out
232 of the isolated block which in turn means updating PHIs at
233 the targets of those abnormal outgoing edges. */
234 if (has_abnormal_or_eh_outgoing_edge_p (bb))
235 continue;
237 /* First look for a PHI which sets a pointer to NULL and which
238 is then dereferenced within BB. This is somewhat overly
239 conservative, but probably catches most of the interesting
240 cases. */
241 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
243 gphi *phi = si.phi ();
244 tree lhs = gimple_phi_result (phi);
246 /* If the result is not a pointer, then there is no need to
247 examine the arguments. */
248 if (!POINTER_TYPE_P (TREE_TYPE (lhs)))
249 continue;
251 /* PHI produces a pointer result. See if any of the PHI's
252 arguments are NULL.
254 When we remove an edge, we want to reprocess the current
255 index, hence the ugly way we update I for each iteration. */
256 basic_block duplicate = NULL;
257 for (unsigned i = 0, next_i = 0;
258 i < gimple_phi_num_args (phi);
259 i = next_i)
261 tree op = gimple_phi_arg_def (phi, i);
262 edge e = gimple_phi_arg_edge (phi, i);
263 imm_use_iterator iter;
264 gimple *use_stmt;
266 next_i = i + 1;
268 if (TREE_CODE (op) == ADDR_EXPR)
270 tree valbase = get_base_address (TREE_OPERAND (op, 0));
271 if ((VAR_P (valbase) && !is_global_var (valbase))
272 || TREE_CODE (valbase) == PARM_DECL)
274 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
276 greturn *return_stmt
277 = dyn_cast <greturn *> (use_stmt);
278 if (!return_stmt)
279 continue;
281 if (gimple_return_retval (return_stmt) != lhs)
282 continue;
284 if (warning_at (gimple_location (use_stmt),
285 OPT_Wreturn_local_addr,
286 "function may return address "
287 "of local variable"))
288 inform (DECL_SOURCE_LOCATION(valbase),
289 "declared here");
291 if (gimple_bb (use_stmt) == bb)
293 duplicate = isolate_path (bb, duplicate, e,
294 use_stmt, lhs, true);
296 /* When we remove an incoming edge, we need to
297 reprocess the Ith element. */
298 next_i = i;
299 cfg_altered = true;
305 if (!integer_zerop (op))
306 continue;
308 /* We've got a NULL PHI argument. Now see if the
309 PHI's result is dereferenced within BB. */
310 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
312 /* We only care about uses in BB. Catching cases in
313 in other blocks would require more complex path
314 isolation code. */
315 if (gimple_bb (use_stmt) != bb)
316 continue;
318 bool by_dereference
319 = infer_nonnull_range_by_dereference (use_stmt, lhs);
321 if (by_dereference
322 || infer_nonnull_range_by_attribute (use_stmt, lhs))
324 location_t loc = gimple_location (use_stmt)
325 ? gimple_location (use_stmt)
326 : gimple_phi_arg_location (phi, i);
328 if (by_dereference)
330 warning_at (loc, OPT_Wnull_dereference,
331 "potential null pointer dereference");
332 if (!flag_isolate_erroneous_paths_dereference)
333 continue;
335 else
337 if (!flag_isolate_erroneous_paths_attribute)
338 continue;
341 duplicate = isolate_path (bb, duplicate, e,
342 use_stmt, lhs, false);
344 /* When we remove an incoming edge, we need to
345 reprocess the Ith element. */
346 next_i = i;
347 cfg_altered = true;
355 /* Look for statements which exhibit erroneous behavior. For example
356 a NULL pointer dereference.
358 When found, optimize the block containing the erroneous behavior. */
359 static void
360 find_explicit_erroneous_behavior (void)
362 basic_block bb;
364 FOR_EACH_BB_FN (bb, cfun)
366 gimple_stmt_iterator si;
368 /* Out of an abundance of caution, do not isolate paths to a
369 block where the block has any abnormal outgoing edges.
371 We might be able to relax this in the future. We have to detect
372 when we have to split the block with the NULL dereference and
373 the trap we insert. We have to preserve abnormal edges out
374 of the isolated block which in turn means updating PHIs at
375 the targets of those abnormal outgoing edges. */
376 if (has_abnormal_or_eh_outgoing_edge_p (bb))
377 continue;
379 /* Now look at the statements in the block and see if any of
380 them explicitly dereference a NULL pointer. This happens
381 because of jump threading and constant propagation. */
382 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
384 gimple *stmt = gsi_stmt (si);
386 /* By passing null_pointer_node, we can use the
387 infer_nonnull_range functions to detect explicit NULL
388 pointer dereferences and other uses where a non-NULL
389 value is required. */
391 bool by_dereference
392 = infer_nonnull_range_by_dereference (stmt, null_pointer_node);
393 if (by_dereference
394 || infer_nonnull_range_by_attribute (stmt, null_pointer_node))
396 if (by_dereference)
398 warning_at (gimple_location (stmt), OPT_Wnull_dereference,
399 "null pointer dereference");
400 if (!flag_isolate_erroneous_paths_dereference)
401 continue;
403 else
405 if (!flag_isolate_erroneous_paths_attribute)
406 continue;
409 insert_trap (&si, null_pointer_node);
410 bb = gimple_bb (gsi_stmt (si));
412 /* Ignore any more operands on this statement and
413 continue the statement iterator (which should
414 terminate its loop immediately. */
415 cfg_altered = true;
416 break;
419 /* Detect returning the address of a local variable. This only
420 becomes undefined behavior if the result is used, so we do not
421 insert a trap and only return NULL instead. */
422 if (greturn *return_stmt = dyn_cast <greturn *> (stmt))
424 tree val = gimple_return_retval (return_stmt);
425 if (val && TREE_CODE (val) == ADDR_EXPR)
427 tree valbase = get_base_address (TREE_OPERAND (val, 0));
428 if ((VAR_P (valbase) && !is_global_var (valbase))
429 || TREE_CODE (valbase) == PARM_DECL)
431 /* We only need it for this particular case. */
432 calculate_dominance_info (CDI_POST_DOMINATORS);
433 const char* msg;
434 bool always_executed = dominated_by_p
435 (CDI_POST_DOMINATORS,
436 single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)), bb);
437 if (always_executed)
438 msg = N_("function returns address of local variable");
439 else
440 msg = N_("function may return address of "
441 "local variable");
443 if (warning_at (gimple_location (stmt),
444 OPT_Wreturn_local_addr, msg))
445 inform (DECL_SOURCE_LOCATION(valbase), "declared here");
446 tree zero = build_zero_cst (TREE_TYPE (val));
447 gimple_return_set_retval (return_stmt, zero);
448 update_stmt (stmt);
456 /* Search the function for statements which, if executed, would cause
457 the program to fault such as a dereference of a NULL pointer.
459 Such a program can't be valid if such a statement was to execute
460 according to ISO standards.
462 We detect explicit NULL pointer dereferences as well as those implied
463 by a PHI argument having a NULL value which unconditionally flows into
464 a dereference in the same block as the PHI.
466 In the former case we replace the offending statement with an
467 unconditional trap and eliminate the outgoing edges from the statement's
468 basic block. This may expose secondary optimization opportunities.
470 In the latter case, we isolate the path(s) with the NULL PHI
471 feeding the dereference. We can then replace the offending statement
472 and eliminate the outgoing edges in the duplicate. Again, this may
473 expose secondary optimization opportunities.
475 A warning for both cases may be advisable as well.
477 Other statically detectable violations of the ISO standard could be
478 handled in a similar way, such as out-of-bounds array indexing. */
480 static unsigned int
481 gimple_ssa_isolate_erroneous_paths (void)
483 initialize_original_copy_tables ();
485 /* Search all the blocks for edges which, if traversed, will
486 result in undefined behavior. */
487 cfg_altered = false;
489 /* First handle cases where traversal of a particular edge
490 triggers undefined behavior. These cases require creating
491 duplicate blocks and thus new SSA_NAMEs.
493 We want that process complete prior to the phase where we start
494 removing edges from the CFG. Edge removal may ultimately result in
495 removal of PHI nodes and thus releasing SSA_NAMEs back to the
496 name manager.
498 If the two processes run in parallel we could release an SSA_NAME
499 back to the manager but we could still have dangling references
500 to the released SSA_NAME in unreachable blocks.
501 that any released names not have dangling references in the IL. */
502 find_implicit_erroneous_behavior ();
503 find_explicit_erroneous_behavior ();
505 free_original_copy_tables ();
507 /* We scramble the CFG and loop structures a bit, clean up
508 appropriately. We really should incrementally update the
509 loop structures, in theory it shouldn't be that hard. */
510 free_dominance_info (CDI_POST_DOMINATORS);
511 if (cfg_altered)
513 free_dominance_info (CDI_DOMINATORS);
514 loops_state_set (LOOPS_NEED_FIXUP);
515 return TODO_cleanup_cfg | TODO_update_ssa;
517 return 0;
520 namespace {
521 const pass_data pass_data_isolate_erroneous_paths =
523 GIMPLE_PASS, /* type */
524 "isolate-paths", /* name */
525 OPTGROUP_NONE, /* optinfo_flags */
526 TV_ISOLATE_ERRONEOUS_PATHS, /* tv_id */
527 ( PROP_cfg | PROP_ssa ), /* properties_required */
528 0, /* properties_provided */
529 0, /* properties_destroyed */
530 0, /* todo_flags_start */
531 0, /* todo_flags_finish */
534 class pass_isolate_erroneous_paths : public gimple_opt_pass
536 public:
537 pass_isolate_erroneous_paths (gcc::context *ctxt)
538 : gimple_opt_pass (pass_data_isolate_erroneous_paths, ctxt)
541 /* opt_pass methods: */
542 opt_pass * clone () { return new pass_isolate_erroneous_paths (m_ctxt); }
543 virtual bool gate (function *)
545 /* If we do not have a suitable builtin function for the trap statement,
546 then do not perform the optimization. */
547 return (flag_isolate_erroneous_paths_dereference != 0
548 || flag_isolate_erroneous_paths_attribute != 0
549 || warn_null_dereference);
552 virtual unsigned int execute (function *)
554 return gimple_ssa_isolate_erroneous_paths ();
557 }; // class pass_isolate_erroneous_paths
560 gimple_opt_pass *
561 make_pass_isolate_erroneous_paths (gcc::context *ctxt)
563 return new pass_isolate_erroneous_paths (ctxt);