Concretize three gimple_try_set_ accessors
[official-gcc.git] / gcc / tree-eh.c
blobda5477278d34c94ea52824eeed0ee48ce04ce2a0
1 /* Exception handling semantics and decomposition for trees.
2 Copyright (C) 2003-2014 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)
9 any later version.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "hash-table.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "expr.h"
27 #include "calls.h"
28 #include "flags.h"
29 #include "function.h"
30 #include "except.h"
31 #include "hash-set.h"
32 #include "basic-block.h"
33 #include "tree-ssa-alias.h"
34 #include "internal-fn.h"
35 #include "tree-eh.h"
36 #include "gimple-expr.h"
37 #include "is-a.h"
38 #include "gimple.h"
39 #include "gimple-iterator.h"
40 #include "gimple-ssa.h"
41 #include "cgraph.h"
42 #include "tree-cfg.h"
43 #include "tree-phinodes.h"
44 #include "ssa-iterators.h"
45 #include "stringpool.h"
46 #include "tree-ssanames.h"
47 #include "tree-into-ssa.h"
48 #include "tree-ssa.h"
49 #include "tree-inline.h"
50 #include "tree-pass.h"
51 #include "langhooks.h"
52 #include "diagnostic-core.h"
53 #include "target.h"
54 #include "cfgloop.h"
55 #include "gimple-low.h"
57 /* In some instances a tree and a gimple need to be stored in a same table,
58 i.e. in hash tables. This is a structure to do this. */
59 typedef union {tree *tp; tree t; gimple g;} treemple;
61 /* Misc functions used in this file. */
63 /* Remember and lookup EH landing pad data for arbitrary statements.
64 Really this means any statement that could_throw_p. We could
65 stuff this information into the stmt_ann data structure, but:
67 (1) We absolutely rely on this information being kept until
68 we get to rtl. Once we're done with lowering here, if we lose
69 the information there's no way to recover it!
71 (2) There are many more statements that *cannot* throw as
72 compared to those that can. We should be saving some amount
73 of space by only allocating memory for those that can throw. */
75 /* Add statement T in function IFUN to landing pad NUM. */
77 static void
78 add_stmt_to_eh_lp_fn (struct function *ifun, gimple t, int num)
80 gcc_assert (num != 0);
82 if (!get_eh_throw_stmt_table (ifun))
83 set_eh_throw_stmt_table (ifun, hash_map<gimple, int>::create_ggc (31));
85 gcc_assert (!get_eh_throw_stmt_table (ifun)->put (t, num));
88 /* Add statement T in the current function (cfun) to EH landing pad NUM. */
90 void
91 add_stmt_to_eh_lp (gimple t, int num)
93 add_stmt_to_eh_lp_fn (cfun, t, num);
96 /* Add statement T to the single EH landing pad in REGION. */
98 static void
99 record_stmt_eh_region (eh_region region, gimple t)
101 if (region == NULL)
102 return;
103 if (region->type == ERT_MUST_NOT_THROW)
104 add_stmt_to_eh_lp_fn (cfun, t, -region->index);
105 else
107 eh_landing_pad lp = region->landing_pads;
108 if (lp == NULL)
109 lp = gen_eh_landing_pad (region);
110 else
111 gcc_assert (lp->next_lp == NULL);
112 add_stmt_to_eh_lp_fn (cfun, t, lp->index);
117 /* Remove statement T in function IFUN from its EH landing pad. */
119 bool
120 remove_stmt_from_eh_lp_fn (struct function *ifun, gimple t)
122 if (!get_eh_throw_stmt_table (ifun))
123 return false;
125 if (!get_eh_throw_stmt_table (ifun)->get (t))
126 return false;
128 get_eh_throw_stmt_table (ifun)->remove (t);
129 return true;
133 /* Remove statement T in the current function (cfun) from its
134 EH landing pad. */
136 bool
137 remove_stmt_from_eh_lp (gimple t)
139 return remove_stmt_from_eh_lp_fn (cfun, t);
142 /* Determine if statement T is inside an EH region in function IFUN.
143 Positive numbers indicate a landing pad index; negative numbers
144 indicate a MUST_NOT_THROW region index; zero indicates that the
145 statement is not recorded in the region table. */
148 lookup_stmt_eh_lp_fn (struct function *ifun, gimple t)
150 if (ifun->eh->throw_stmt_table == NULL)
151 return 0;
153 int *lp_nr = ifun->eh->throw_stmt_table->get (t);
154 return lp_nr ? *lp_nr : 0;
157 /* Likewise, but always use the current function. */
160 lookup_stmt_eh_lp (gimple t)
162 /* We can get called from initialized data when -fnon-call-exceptions
163 is on; prevent crash. */
164 if (!cfun)
165 return 0;
166 return lookup_stmt_eh_lp_fn (cfun, t);
169 /* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
170 nodes and LABEL_DECL nodes. We will use this during the second phase to
171 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
173 struct finally_tree_node
175 /* When storing a GIMPLE_TRY, we have to record a gimple. However
176 when deciding whether a GOTO to a certain LABEL_DECL (which is a
177 tree) leaves the TRY block, its necessary to record a tree in
178 this field. Thus a treemple is used. */
179 treemple child;
180 gimple_try parent;
183 /* Hashtable helpers. */
185 struct finally_tree_hasher : typed_free_remove <finally_tree_node>
187 typedef finally_tree_node value_type;
188 typedef finally_tree_node compare_type;
189 static inline hashval_t hash (const value_type *);
190 static inline bool equal (const value_type *, const compare_type *);
193 inline hashval_t
194 finally_tree_hasher::hash (const value_type *v)
196 return (intptr_t)v->child.t >> 4;
199 inline bool
200 finally_tree_hasher::equal (const value_type *v, const compare_type *c)
202 return v->child.t == c->child.t;
205 /* Note that this table is *not* marked GTY. It is short-lived. */
206 static hash_table<finally_tree_hasher> *finally_tree;
208 static void
209 record_in_finally_tree (treemple child, gimple_try parent)
211 struct finally_tree_node *n;
212 finally_tree_node **slot;
214 n = XNEW (struct finally_tree_node);
215 n->child = child;
216 n->parent = parent;
218 slot = finally_tree->find_slot (n, INSERT);
219 gcc_assert (!*slot);
220 *slot = n;
223 static void
224 collect_finally_tree (gimple stmt, gimple_try region);
226 /* Go through the gimple sequence. Works with collect_finally_tree to
227 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
229 static void
230 collect_finally_tree_1 (gimple_seq seq, gimple_try region)
232 gimple_stmt_iterator gsi;
234 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
235 collect_finally_tree (gsi_stmt (gsi), region);
238 static void
239 collect_finally_tree (gimple stmt, gimple_try region)
241 treemple temp;
243 switch (gimple_code (stmt))
245 case GIMPLE_LABEL:
246 temp.t = gimple_label_label (as_a <gimple_label> (stmt));
247 record_in_finally_tree (temp, region);
248 break;
250 case GIMPLE_TRY:
251 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
253 temp.g = stmt;
254 record_in_finally_tree (temp, region);
255 collect_finally_tree_1 (gimple_try_eval (stmt),
256 as_a <gimple_try> (stmt));
257 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
259 else if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
261 collect_finally_tree_1 (gimple_try_eval (stmt), region);
262 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
264 break;
266 case GIMPLE_CATCH:
267 collect_finally_tree_1 (gimple_catch_handler (
268 as_a <gimple_catch> (stmt)),
269 region);
270 break;
272 case GIMPLE_EH_FILTER:
273 collect_finally_tree_1 (gimple_eh_filter_failure (stmt), region);
274 break;
276 case GIMPLE_EH_ELSE:
278 gimple_eh_else eh_else_stmt = as_a <gimple_eh_else> (stmt);
279 collect_finally_tree_1 (gimple_eh_else_n_body (eh_else_stmt), region);
280 collect_finally_tree_1 (gimple_eh_else_e_body (eh_else_stmt), region);
282 break;
284 default:
285 /* A type, a decl, or some kind of statement that we're not
286 interested in. Don't walk them. */
287 break;
292 /* Use the finally tree to determine if a jump from START to TARGET
293 would leave the try_finally node that START lives in. */
295 static bool
296 outside_finally_tree (treemple start, gimple target)
298 struct finally_tree_node n, *p;
302 n.child = start;
303 p = finally_tree->find (&n);
304 if (!p)
305 return true;
306 start.g = p->parent;
308 while (start.g != target);
310 return false;
313 /* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
314 nodes into a set of gotos, magic labels, and eh regions.
315 The eh region creation is straight-forward, but frobbing all the gotos
316 and such into shape isn't. */
318 /* The sequence into which we record all EH stuff. This will be
319 placed at the end of the function when we're all done. */
320 static gimple_seq eh_seq;
322 /* Record whether an EH region contains something that can throw,
323 indexed by EH region number. */
324 static bitmap eh_region_may_contain_throw_map;
326 /* The GOTO_QUEUE is is an array of GIMPLE_GOTO and GIMPLE_RETURN
327 statements that are seen to escape this GIMPLE_TRY_FINALLY node.
328 The idea is to record a gimple statement for everything except for
329 the conditionals, which get their labels recorded. Since labels are
330 of type 'tree', we need this node to store both gimple and tree
331 objects. REPL_STMT is the sequence used to replace the goto/return
332 statement. CONT_STMT is used to store the statement that allows
333 the return/goto to jump to the original destination. */
335 struct goto_queue_node
337 treemple stmt;
338 location_t location;
339 gimple_seq repl_stmt;
340 gimple cont_stmt;
341 int index;
342 /* This is used when index >= 0 to indicate that stmt is a label (as
343 opposed to a goto stmt). */
344 int is_label;
347 /* State of the world while lowering. */
349 struct leh_state
351 /* What's "current" while constructing the eh region tree. These
352 correspond to variables of the same name in cfun->eh, which we
353 don't have easy access to. */
354 eh_region cur_region;
356 /* What's "current" for the purposes of __builtin_eh_pointer. For
357 a CATCH, this is the associated TRY. For an EH_FILTER, this is
358 the associated ALLOWED_EXCEPTIONS, etc. */
359 eh_region ehp_region;
361 /* Processing of TRY_FINALLY requires a bit more state. This is
362 split out into a separate structure so that we don't have to
363 copy so much when processing other nodes. */
364 struct leh_tf_state *tf;
367 struct leh_tf_state
369 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
370 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
371 this so that outside_finally_tree can reliably reference the tree used
372 in the collect_finally_tree data structures. */
373 gimple_try try_finally_expr;
374 gimple_try top_p;
376 /* While lowering a top_p usually it is expanded into multiple statements,
377 thus we need the following field to store them. */
378 gimple_seq top_p_seq;
380 /* The state outside this try_finally node. */
381 struct leh_state *outer;
383 /* The exception region created for it. */
384 eh_region region;
386 /* The goto queue. */
387 struct goto_queue_node *goto_queue;
388 size_t goto_queue_size;
389 size_t goto_queue_active;
391 /* Pointer map to help in searching goto_queue when it is large. */
392 hash_map<gimple, goto_queue_node *> *goto_queue_map;
394 /* The set of unique labels seen as entries in the goto queue. */
395 vec<tree> dest_array;
397 /* A label to be added at the end of the completed transformed
398 sequence. It will be set if may_fallthru was true *at one time*,
399 though subsequent transformations may have cleared that flag. */
400 tree fallthru_label;
402 /* True if it is possible to fall out the bottom of the try block.
403 Cleared if the fallthru is converted to a goto. */
404 bool may_fallthru;
406 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
407 bool may_return;
409 /* True if the finally block can receive an exception edge.
410 Cleared if the exception case is handled by code duplication. */
411 bool may_throw;
414 static gimple_seq lower_eh_must_not_throw (struct leh_state *, gimple_try);
416 /* Search for STMT in the goto queue. Return the replacement,
417 or null if the statement isn't in the queue. */
419 #define LARGE_GOTO_QUEUE 20
421 static void lower_eh_constructs_1 (struct leh_state *state, gimple_seq *seq);
423 static gimple_seq
424 find_goto_replacement (struct leh_tf_state *tf, treemple stmt)
426 unsigned int i;
428 if (tf->goto_queue_active < LARGE_GOTO_QUEUE)
430 for (i = 0; i < tf->goto_queue_active; i++)
431 if ( tf->goto_queue[i].stmt.g == stmt.g)
432 return tf->goto_queue[i].repl_stmt;
433 return NULL;
436 /* If we have a large number of entries in the goto_queue, create a
437 pointer map and use that for searching. */
439 if (!tf->goto_queue_map)
441 tf->goto_queue_map = new hash_map<gimple, goto_queue_node *>;
442 for (i = 0; i < tf->goto_queue_active; i++)
444 bool existed = tf->goto_queue_map->put (tf->goto_queue[i].stmt.g,
445 &tf->goto_queue[i]);
446 gcc_assert (!existed);
450 goto_queue_node **slot = tf->goto_queue_map->get (stmt.g);
451 if (slot != NULL)
452 return ((*slot)->repl_stmt);
454 return NULL;
457 /* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
458 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
459 then we can just splat it in, otherwise we add the new stmts immediately
460 after the GIMPLE_COND and redirect. */
462 static void
463 replace_goto_queue_cond_clause (tree *tp, struct leh_tf_state *tf,
464 gimple_stmt_iterator *gsi)
466 tree label;
467 gimple_seq new_seq;
468 treemple temp;
469 location_t loc = gimple_location (gsi_stmt (*gsi));
471 temp.tp = tp;
472 new_seq = find_goto_replacement (tf, temp);
473 if (!new_seq)
474 return;
476 if (gimple_seq_singleton_p (new_seq)
477 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO)
479 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq));
480 return;
483 label = create_artificial_label (loc);
484 /* Set the new label for the GIMPLE_COND */
485 *tp = label;
487 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
488 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING);
491 /* The real work of replace_goto_queue. Returns with TSI updated to
492 point to the next statement. */
494 static void replace_goto_queue_stmt_list (gimple_seq *, struct leh_tf_state *);
496 static void
497 replace_goto_queue_1 (gimple stmt, struct leh_tf_state *tf,
498 gimple_stmt_iterator *gsi)
500 gimple_seq seq;
501 treemple temp;
502 temp.g = NULL;
504 switch (gimple_code (stmt))
506 case GIMPLE_GOTO:
507 case GIMPLE_RETURN:
508 temp.g = stmt;
509 seq = find_goto_replacement (tf, temp);
510 if (seq)
512 gsi_insert_seq_before (gsi, gimple_seq_copy (seq), GSI_SAME_STMT);
513 gsi_remove (gsi, false);
514 return;
516 break;
518 case GIMPLE_COND:
519 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 2), tf, gsi);
520 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 3), tf, gsi);
521 break;
523 case GIMPLE_TRY:
524 replace_goto_queue_stmt_list (gimple_try_eval_ptr (stmt), tf);
525 replace_goto_queue_stmt_list (gimple_try_cleanup_ptr (stmt), tf);
526 break;
527 case GIMPLE_CATCH:
528 replace_goto_queue_stmt_list (gimple_catch_handler_ptr (
529 as_a <gimple_catch> (stmt)),
530 tf);
531 break;
532 case GIMPLE_EH_FILTER:
533 replace_goto_queue_stmt_list (gimple_eh_filter_failure_ptr (stmt), tf);
534 break;
535 case GIMPLE_EH_ELSE:
537 gimple_eh_else eh_else_stmt = as_a <gimple_eh_else> (stmt);
538 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (eh_else_stmt),
539 tf);
540 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (eh_else_stmt),
541 tf);
543 break;
545 default:
546 /* These won't have gotos in them. */
547 break;
550 gsi_next (gsi);
553 /* A subroutine of replace_goto_queue. Handles GIMPLE_SEQ. */
555 static void
556 replace_goto_queue_stmt_list (gimple_seq *seq, struct leh_tf_state *tf)
558 gimple_stmt_iterator gsi = gsi_start (*seq);
560 while (!gsi_end_p (gsi))
561 replace_goto_queue_1 (gsi_stmt (gsi), tf, &gsi);
564 /* Replace all goto queue members. */
566 static void
567 replace_goto_queue (struct leh_tf_state *tf)
569 if (tf->goto_queue_active == 0)
570 return;
571 replace_goto_queue_stmt_list (&tf->top_p_seq, tf);
572 replace_goto_queue_stmt_list (&eh_seq, tf);
575 /* Add a new record to the goto queue contained in TF. NEW_STMT is the
576 data to be added, IS_LABEL indicates whether NEW_STMT is a label or
577 a gimple return. */
579 static void
580 record_in_goto_queue (struct leh_tf_state *tf,
581 treemple new_stmt,
582 int index,
583 bool is_label,
584 location_t location)
586 size_t active, size;
587 struct goto_queue_node *q;
589 gcc_assert (!tf->goto_queue_map);
591 active = tf->goto_queue_active;
592 size = tf->goto_queue_size;
593 if (active >= size)
595 size = (size ? size * 2 : 32);
596 tf->goto_queue_size = size;
597 tf->goto_queue
598 = XRESIZEVEC (struct goto_queue_node, tf->goto_queue, size);
601 q = &tf->goto_queue[active];
602 tf->goto_queue_active = active + 1;
604 memset (q, 0, sizeof (*q));
605 q->stmt = new_stmt;
606 q->index = index;
607 q->location = location;
608 q->is_label = is_label;
611 /* Record the LABEL label in the goto queue contained in TF.
612 TF is not null. */
614 static void
615 record_in_goto_queue_label (struct leh_tf_state *tf, treemple stmt, tree label,
616 location_t location)
618 int index;
619 treemple temp, new_stmt;
621 if (!label)
622 return;
624 /* Computed and non-local gotos do not get processed. Given
625 their nature we can neither tell whether we've escaped the
626 finally block nor redirect them if we knew. */
627 if (TREE_CODE (label) != LABEL_DECL)
628 return;
630 /* No need to record gotos that don't leave the try block. */
631 temp.t = label;
632 if (!outside_finally_tree (temp, tf->try_finally_expr))
633 return;
635 if (! tf->dest_array.exists ())
637 tf->dest_array.create (10);
638 tf->dest_array.quick_push (label);
639 index = 0;
641 else
643 int n = tf->dest_array.length ();
644 for (index = 0; index < n; ++index)
645 if (tf->dest_array[index] == label)
646 break;
647 if (index == n)
648 tf->dest_array.safe_push (label);
651 /* In the case of a GOTO we want to record the destination label,
652 since with a GIMPLE_COND we have an easy access to the then/else
653 labels. */
654 new_stmt = stmt;
655 record_in_goto_queue (tf, new_stmt, index, true, location);
658 /* For any GIMPLE_GOTO or GIMPLE_RETURN, decide whether it leaves a try_finally
659 node, and if so record that fact in the goto queue associated with that
660 try_finally node. */
662 static void
663 maybe_record_in_goto_queue (struct leh_state *state, gimple stmt)
665 struct leh_tf_state *tf = state->tf;
666 treemple new_stmt;
668 if (!tf)
669 return;
671 switch (gimple_code (stmt))
673 case GIMPLE_COND:
674 new_stmt.tp = gimple_op_ptr (stmt, 2);
675 record_in_goto_queue_label (tf, new_stmt, gimple_cond_true_label (stmt),
676 EXPR_LOCATION (*new_stmt.tp));
677 new_stmt.tp = gimple_op_ptr (stmt, 3);
678 record_in_goto_queue_label (tf, new_stmt, gimple_cond_false_label (stmt),
679 EXPR_LOCATION (*new_stmt.tp));
680 break;
681 case GIMPLE_GOTO:
682 new_stmt.g = stmt;
683 record_in_goto_queue_label (tf, new_stmt, gimple_goto_dest (stmt),
684 gimple_location (stmt));
685 break;
687 case GIMPLE_RETURN:
688 tf->may_return = true;
689 new_stmt.g = stmt;
690 record_in_goto_queue (tf, new_stmt, -1, false, gimple_location (stmt));
691 break;
693 default:
694 gcc_unreachable ();
699 #ifdef ENABLE_CHECKING
700 /* We do not process GIMPLE_SWITCHes for now. As long as the original source
701 was in fact structured, and we've not yet done jump threading, then none
702 of the labels will leave outer GIMPLE_TRY_FINALLY nodes. Verify this. */
704 static void
705 verify_norecord_switch_expr (struct leh_state *state,
706 gimple_switch switch_expr)
708 struct leh_tf_state *tf = state->tf;
709 size_t i, n;
711 if (!tf)
712 return;
714 n = gimple_switch_num_labels (switch_expr);
716 for (i = 0; i < n; ++i)
718 treemple temp;
719 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i));
720 temp.t = lab;
721 gcc_assert (!outside_finally_tree (temp, tf->try_finally_expr));
724 #else
725 #define verify_norecord_switch_expr(state, switch_expr)
726 #endif
728 /* Redirect a RETURN_EXPR pointed to by Q to FINLAB. If MOD is
729 non-null, insert it before the new branch. */
731 static void
732 do_return_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod)
734 gimple x;
736 /* In the case of a return, the queue node must be a gimple statement. */
737 gcc_assert (!q->is_label);
739 /* Note that the return value may have already been computed, e.g.,
741 int x;
742 int foo (void)
744 x = 0;
745 try {
746 return x;
747 } finally {
748 x++;
752 should return 0, not 1. We don't have to do anything to make
753 this happens because the return value has been placed in the
754 RESULT_DECL already. */
756 q->cont_stmt = q->stmt.g;
758 if (mod)
759 gimple_seq_add_seq (&q->repl_stmt, mod);
761 x = gimple_build_goto (finlab);
762 gimple_set_location (x, q->location);
763 gimple_seq_add_stmt (&q->repl_stmt, x);
766 /* Similar, but easier, for GIMPLE_GOTO. */
768 static void
769 do_goto_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
770 struct leh_tf_state *tf)
772 gimple_goto x;
774 gcc_assert (q->is_label);
776 q->cont_stmt = gimple_build_goto (tf->dest_array[q->index]);
778 if (mod)
779 gimple_seq_add_seq (&q->repl_stmt, mod);
781 x = gimple_build_goto (finlab);
782 gimple_set_location (x, q->location);
783 gimple_seq_add_stmt (&q->repl_stmt, x);
786 /* Emit a standard landing pad sequence into SEQ for REGION. */
788 static void
789 emit_post_landing_pad (gimple_seq *seq, eh_region region)
791 eh_landing_pad lp = region->landing_pads;
792 gimple_label x;
794 if (lp == NULL)
795 lp = gen_eh_landing_pad (region);
797 lp->post_landing_pad = create_artificial_label (UNKNOWN_LOCATION);
798 EH_LANDING_PAD_NR (lp->post_landing_pad) = lp->index;
800 x = gimple_build_label (lp->post_landing_pad);
801 gimple_seq_add_stmt (seq, x);
804 /* Emit a RESX statement into SEQ for REGION. */
806 static void
807 emit_resx (gimple_seq *seq, eh_region region)
809 gimple_resx x = gimple_build_resx (region->index);
810 gimple_seq_add_stmt (seq, x);
811 if (region->outer)
812 record_stmt_eh_region (region->outer, x);
815 /* Emit an EH_DISPATCH statement into SEQ for REGION. */
817 static void
818 emit_eh_dispatch (gimple_seq *seq, eh_region region)
820 gimple_eh_dispatch x = gimple_build_eh_dispatch (region->index);
821 gimple_seq_add_stmt (seq, x);
824 /* Note that the current EH region may contain a throw, or a
825 call to a function which itself may contain a throw. */
827 static void
828 note_eh_region_may_contain_throw (eh_region region)
830 while (bitmap_set_bit (eh_region_may_contain_throw_map, region->index))
832 if (region->type == ERT_MUST_NOT_THROW)
833 break;
834 region = region->outer;
835 if (region == NULL)
836 break;
840 /* Check if REGION has been marked as containing a throw. If REGION is
841 NULL, this predicate is false. */
843 static inline bool
844 eh_region_may_contain_throw (eh_region r)
846 return r && bitmap_bit_p (eh_region_may_contain_throw_map, r->index);
849 /* We want to transform
850 try { body; } catch { stuff; }
852 normal_seqence:
853 body;
854 over:
855 eh_seqence:
856 landing_pad:
857 stuff;
858 goto over;
860 TP is a GIMPLE_TRY node. REGION is the region whose post_landing_pad
861 should be placed before the second operand, or NULL. OVER is
862 an existing label that should be put at the exit, or NULL. */
864 static gimple_seq
865 frob_into_branch_around (gimple_try tp, eh_region region, tree over)
867 gimple x;
868 gimple_seq cleanup, result;
869 location_t loc = gimple_location (tp);
871 cleanup = gimple_try_cleanup (tp);
872 result = gimple_try_eval (tp);
874 if (region)
875 emit_post_landing_pad (&eh_seq, region);
877 if (gimple_seq_may_fallthru (cleanup))
879 if (!over)
880 over = create_artificial_label (loc);
881 x = gimple_build_goto (over);
882 gimple_set_location (x, loc);
883 gimple_seq_add_stmt (&cleanup, x);
885 gimple_seq_add_seq (&eh_seq, cleanup);
887 if (over)
889 x = gimple_build_label (over);
890 gimple_seq_add_stmt (&result, x);
892 return result;
895 /* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
896 Make sure to record all new labels found. */
898 static gimple_seq
899 lower_try_finally_dup_block (gimple_seq seq, struct leh_state *outer_state,
900 location_t loc)
902 gimple_try region = NULL;
903 gimple_seq new_seq;
904 gimple_stmt_iterator gsi;
906 new_seq = copy_gimple_seq_and_replace_locals (seq);
908 for (gsi = gsi_start (new_seq); !gsi_end_p (gsi); gsi_next (&gsi))
910 gimple stmt = gsi_stmt (gsi);
911 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
913 tree block = gimple_block (stmt);
914 gimple_set_location (stmt, loc);
915 gimple_set_block (stmt, block);
919 if (outer_state->tf)
920 region = outer_state->tf->try_finally_expr;
921 collect_finally_tree_1 (new_seq, region);
923 return new_seq;
926 /* A subroutine of lower_try_finally. Create a fallthru label for
927 the given try_finally state. The only tricky bit here is that
928 we have to make sure to record the label in our outer context. */
930 static tree
931 lower_try_finally_fallthru_label (struct leh_tf_state *tf)
933 tree label = tf->fallthru_label;
934 treemple temp;
936 if (!label)
938 label = create_artificial_label (gimple_location (tf->try_finally_expr));
939 tf->fallthru_label = label;
940 if (tf->outer->tf)
942 temp.t = label;
943 record_in_finally_tree (temp, tf->outer->tf->try_finally_expr);
946 return label;
949 /* A subroutine of lower_try_finally. If FINALLY consits of a
950 GIMPLE_EH_ELSE node, return it. */
952 static inline gimple_eh_else
953 get_eh_else (gimple_seq finally)
955 gimple x = gimple_seq_first_stmt (finally);
956 if (gimple_code (x) == GIMPLE_EH_ELSE)
958 gcc_assert (gimple_seq_singleton_p (finally));
959 return as_a <gimple_eh_else> (x);
961 return NULL;
964 /* A subroutine of lower_try_finally. If the eh_protect_cleanup_actions
965 langhook returns non-null, then the language requires that the exception
966 path out of a try_finally be treated specially. To wit: the code within
967 the finally block may not itself throw an exception. We have two choices
968 here. First we can duplicate the finally block and wrap it in a
969 must_not_throw region. Second, we can generate code like
971 try {
972 finally_block;
973 } catch {
974 if (fintmp == eh_edge)
975 protect_cleanup_actions;
978 where "fintmp" is the temporary used in the switch statement generation
979 alternative considered below. For the nonce, we always choose the first
980 option.
982 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
984 static void
985 honor_protect_cleanup_actions (struct leh_state *outer_state,
986 struct leh_state *this_state,
987 struct leh_tf_state *tf)
989 tree protect_cleanup_actions;
990 gimple_stmt_iterator gsi;
991 bool finally_may_fallthru;
992 gimple_seq finally;
993 gimple x;
994 gimple_eh_must_not_throw eh_mnt;
995 gimple_try try_stmt;
996 gimple_eh_else eh_else;
998 /* First check for nothing to do. */
999 if (lang_hooks.eh_protect_cleanup_actions == NULL)
1000 return;
1001 protect_cleanup_actions = lang_hooks.eh_protect_cleanup_actions ();
1002 if (protect_cleanup_actions == NULL)
1003 return;
1005 finally = gimple_try_cleanup (tf->top_p);
1006 eh_else = get_eh_else (finally);
1008 /* Duplicate the FINALLY block. Only need to do this for try-finally,
1009 and not for cleanups. If we've got an EH_ELSE, extract it now. */
1010 if (eh_else)
1012 finally = gimple_eh_else_e_body (eh_else);
1013 gimple_try_set_cleanup (tf->top_p, gimple_eh_else_n_body (eh_else));
1015 else if (this_state)
1016 finally = lower_try_finally_dup_block (finally, outer_state,
1017 gimple_location (tf->try_finally_expr));
1018 finally_may_fallthru = gimple_seq_may_fallthru (finally);
1020 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
1021 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
1022 to be in an enclosing scope, but needs to be implemented at this level
1023 to avoid a nesting violation (see wrap_temporary_cleanups in
1024 cp/decl.c). Since it's logically at an outer level, we should call
1025 terminate before we get to it, so strip it away before adding the
1026 MUST_NOT_THROW filter. */
1027 gsi = gsi_start (finally);
1028 x = gsi_stmt (gsi);
1029 if (gimple_code (x) == GIMPLE_TRY
1030 && gimple_try_kind (x) == GIMPLE_TRY_CATCH
1031 && gimple_try_catch_is_cleanup (x))
1033 gsi_insert_seq_before (&gsi, gimple_try_eval (x), GSI_SAME_STMT);
1034 gsi_remove (&gsi, false);
1037 /* Wrap the block with protect_cleanup_actions as the action. */
1038 eh_mnt = gimple_build_eh_must_not_throw (protect_cleanup_actions);
1039 try_stmt = gimple_build_try (finally, gimple_seq_alloc_with_stmt (eh_mnt),
1040 GIMPLE_TRY_CATCH);
1041 finally = lower_eh_must_not_throw (outer_state, try_stmt);
1043 /* Drop all of this into the exception sequence. */
1044 emit_post_landing_pad (&eh_seq, tf->region);
1045 gimple_seq_add_seq (&eh_seq, finally);
1046 if (finally_may_fallthru)
1047 emit_resx (&eh_seq, tf->region);
1049 /* Having now been handled, EH isn't to be considered with
1050 the rest of the outgoing edges. */
1051 tf->may_throw = false;
1054 /* A subroutine of lower_try_finally. We have determined that there is
1055 no fallthru edge out of the finally block. This means that there is
1056 no outgoing edge corresponding to any incoming edge. Restructure the
1057 try_finally node for this special case. */
1059 static void
1060 lower_try_finally_nofallthru (struct leh_state *state,
1061 struct leh_tf_state *tf)
1063 tree lab;
1064 gimple x;
1065 gimple_eh_else eh_else;
1066 gimple_seq finally;
1067 struct goto_queue_node *q, *qe;
1069 lab = create_artificial_label (gimple_location (tf->try_finally_expr));
1071 /* We expect that tf->top_p is a GIMPLE_TRY. */
1072 finally = gimple_try_cleanup (tf->top_p);
1073 tf->top_p_seq = gimple_try_eval (tf->top_p);
1075 x = gimple_build_label (lab);
1076 gimple_seq_add_stmt (&tf->top_p_seq, x);
1078 q = tf->goto_queue;
1079 qe = q + tf->goto_queue_active;
1080 for (; q < qe; ++q)
1081 if (q->index < 0)
1082 do_return_redirection (q, lab, NULL);
1083 else
1084 do_goto_redirection (q, lab, NULL, tf);
1086 replace_goto_queue (tf);
1088 /* Emit the finally block into the stream. Lower EH_ELSE at this time. */
1089 eh_else = get_eh_else (finally);
1090 if (eh_else)
1092 finally = gimple_eh_else_n_body (eh_else);
1093 lower_eh_constructs_1 (state, &finally);
1094 gimple_seq_add_seq (&tf->top_p_seq, finally);
1096 if (tf->may_throw)
1098 finally = gimple_eh_else_e_body (eh_else);
1099 lower_eh_constructs_1 (state, &finally);
1101 emit_post_landing_pad (&eh_seq, tf->region);
1102 gimple_seq_add_seq (&eh_seq, finally);
1105 else
1107 lower_eh_constructs_1 (state, &finally);
1108 gimple_seq_add_seq (&tf->top_p_seq, finally);
1110 if (tf->may_throw)
1112 emit_post_landing_pad (&eh_seq, tf->region);
1114 x = gimple_build_goto (lab);
1115 gimple_set_location (x, gimple_location (tf->try_finally_expr));
1116 gimple_seq_add_stmt (&eh_seq, x);
1121 /* A subroutine of lower_try_finally. We have determined that there is
1122 exactly one destination of the finally block. Restructure the
1123 try_finally node for this special case. */
1125 static void
1126 lower_try_finally_onedest (struct leh_state *state, struct leh_tf_state *tf)
1128 struct goto_queue_node *q, *qe;
1129 gimple_eh_else eh_else;
1130 gimple_label label_stmt;
1131 gimple x;
1132 gimple_seq finally;
1133 gimple_stmt_iterator gsi;
1134 tree finally_label;
1135 location_t loc = gimple_location (tf->try_finally_expr);
1137 finally = gimple_try_cleanup (tf->top_p);
1138 tf->top_p_seq = gimple_try_eval (tf->top_p);
1140 /* Since there's only one destination, and the destination edge can only
1141 either be EH or non-EH, that implies that all of our incoming edges
1142 are of the same type. Therefore we can lower EH_ELSE immediately. */
1143 eh_else = get_eh_else (finally);
1144 if (eh_else)
1146 if (tf->may_throw)
1147 finally = gimple_eh_else_e_body (eh_else);
1148 else
1149 finally = gimple_eh_else_n_body (eh_else);
1152 lower_eh_constructs_1 (state, &finally);
1154 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1156 gimple stmt = gsi_stmt (gsi);
1157 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
1159 tree block = gimple_block (stmt);
1160 gimple_set_location (stmt, gimple_location (tf->try_finally_expr));
1161 gimple_set_block (stmt, block);
1165 if (tf->may_throw)
1167 /* Only reachable via the exception edge. Add the given label to
1168 the head of the FINALLY block. Append a RESX at the end. */
1169 emit_post_landing_pad (&eh_seq, tf->region);
1170 gimple_seq_add_seq (&eh_seq, finally);
1171 emit_resx (&eh_seq, tf->region);
1172 return;
1175 if (tf->may_fallthru)
1177 /* Only reachable via the fallthru edge. Do nothing but let
1178 the two blocks run together; we'll fall out the bottom. */
1179 gimple_seq_add_seq (&tf->top_p_seq, finally);
1180 return;
1183 finally_label = create_artificial_label (loc);
1184 label_stmt = gimple_build_label (finally_label);
1185 gimple_seq_add_stmt (&tf->top_p_seq, label_stmt);
1187 gimple_seq_add_seq (&tf->top_p_seq, finally);
1189 q = tf->goto_queue;
1190 qe = q + tf->goto_queue_active;
1192 if (tf->may_return)
1194 /* Reachable by return expressions only. Redirect them. */
1195 for (; q < qe; ++q)
1196 do_return_redirection (q, finally_label, NULL);
1197 replace_goto_queue (tf);
1199 else
1201 /* Reachable by goto expressions only. Redirect them. */
1202 for (; q < qe; ++q)
1203 do_goto_redirection (q, finally_label, NULL, tf);
1204 replace_goto_queue (tf);
1206 if (tf->dest_array[0] == tf->fallthru_label)
1208 /* Reachable by goto to fallthru label only. Redirect it
1209 to the new label (already created, sadly), and do not
1210 emit the final branch out, or the fallthru label. */
1211 tf->fallthru_label = NULL;
1212 return;
1216 /* Place the original return/goto to the original destination
1217 immediately after the finally block. */
1218 x = tf->goto_queue[0].cont_stmt;
1219 gimple_seq_add_stmt (&tf->top_p_seq, x);
1220 maybe_record_in_goto_queue (state, x);
1223 /* A subroutine of lower_try_finally. There are multiple edges incoming
1224 and outgoing from the finally block. Implement this by duplicating the
1225 finally block for every destination. */
1227 static void
1228 lower_try_finally_copy (struct leh_state *state, struct leh_tf_state *tf)
1230 gimple_seq finally;
1231 gimple_seq new_stmt;
1232 gimple_seq seq;
1233 gimple x;
1234 gimple_eh_else eh_else;
1235 tree tmp;
1236 location_t tf_loc = gimple_location (tf->try_finally_expr);
1238 finally = gimple_try_cleanup (tf->top_p);
1240 /* Notice EH_ELSE, and simplify some of the remaining code
1241 by considering FINALLY to be the normal return path only. */
1242 eh_else = get_eh_else (finally);
1243 if (eh_else)
1244 finally = gimple_eh_else_n_body (eh_else);
1246 tf->top_p_seq = gimple_try_eval (tf->top_p);
1247 new_stmt = NULL;
1249 if (tf->may_fallthru)
1251 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1252 lower_eh_constructs_1 (state, &seq);
1253 gimple_seq_add_seq (&new_stmt, seq);
1255 tmp = lower_try_finally_fallthru_label (tf);
1256 x = gimple_build_goto (tmp);
1257 gimple_set_location (x, tf_loc);
1258 gimple_seq_add_stmt (&new_stmt, x);
1261 if (tf->may_throw)
1263 /* We don't need to copy the EH path of EH_ELSE,
1264 since it is only emitted once. */
1265 if (eh_else)
1266 seq = gimple_eh_else_e_body (eh_else);
1267 else
1268 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1269 lower_eh_constructs_1 (state, &seq);
1271 emit_post_landing_pad (&eh_seq, tf->region);
1272 gimple_seq_add_seq (&eh_seq, seq);
1273 emit_resx (&eh_seq, tf->region);
1276 if (tf->goto_queue)
1278 struct goto_queue_node *q, *qe;
1279 int return_index, index;
1280 struct labels_s
1282 struct goto_queue_node *q;
1283 tree label;
1284 } *labels;
1286 return_index = tf->dest_array.length ();
1287 labels = XCNEWVEC (struct labels_s, return_index + 1);
1289 q = tf->goto_queue;
1290 qe = q + tf->goto_queue_active;
1291 for (; q < qe; q++)
1293 index = q->index < 0 ? return_index : q->index;
1295 if (!labels[index].q)
1296 labels[index].q = q;
1299 for (index = 0; index < return_index + 1; index++)
1301 tree lab;
1303 q = labels[index].q;
1304 if (! q)
1305 continue;
1307 lab = labels[index].label
1308 = create_artificial_label (tf_loc);
1310 if (index == return_index)
1311 do_return_redirection (q, lab, NULL);
1312 else
1313 do_goto_redirection (q, lab, NULL, tf);
1315 x = gimple_build_label (lab);
1316 gimple_seq_add_stmt (&new_stmt, x);
1318 seq = lower_try_finally_dup_block (finally, state, q->location);
1319 lower_eh_constructs_1 (state, &seq);
1320 gimple_seq_add_seq (&new_stmt, seq);
1322 gimple_seq_add_stmt (&new_stmt, q->cont_stmt);
1323 maybe_record_in_goto_queue (state, q->cont_stmt);
1326 for (q = tf->goto_queue; q < qe; q++)
1328 tree lab;
1330 index = q->index < 0 ? return_index : q->index;
1332 if (labels[index].q == q)
1333 continue;
1335 lab = labels[index].label;
1337 if (index == return_index)
1338 do_return_redirection (q, lab, NULL);
1339 else
1340 do_goto_redirection (q, lab, NULL, tf);
1343 replace_goto_queue (tf);
1344 free (labels);
1347 /* Need to link new stmts after running replace_goto_queue due
1348 to not wanting to process the same goto stmts twice. */
1349 gimple_seq_add_seq (&tf->top_p_seq, new_stmt);
1352 /* A subroutine of lower_try_finally. There are multiple edges incoming
1353 and outgoing from the finally block. Implement this by instrumenting
1354 each incoming edge and creating a switch statement at the end of the
1355 finally block that branches to the appropriate destination. */
1357 static void
1358 lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
1360 struct goto_queue_node *q, *qe;
1361 tree finally_tmp, finally_label;
1362 int return_index, eh_index, fallthru_index;
1363 int nlabels, ndests, j, last_case_index;
1364 tree last_case;
1365 vec<tree> case_label_vec;
1366 gimple_seq switch_body = NULL;
1367 gimple x;
1368 gimple_eh_else eh_else;
1369 tree tmp;
1370 gimple switch_stmt;
1371 gimple_seq finally;
1372 hash_map<tree, gimple> *cont_map = NULL;
1373 /* The location of the TRY_FINALLY stmt. */
1374 location_t tf_loc = gimple_location (tf->try_finally_expr);
1375 /* The location of the finally block. */
1376 location_t finally_loc;
1378 finally = gimple_try_cleanup (tf->top_p);
1379 eh_else = get_eh_else (finally);
1381 /* Mash the TRY block to the head of the chain. */
1382 tf->top_p_seq = gimple_try_eval (tf->top_p);
1384 /* The location of the finally is either the last stmt in the finally
1385 block or the location of the TRY_FINALLY itself. */
1386 x = gimple_seq_last_stmt (finally);
1387 finally_loc = x ? gimple_location (x) : tf_loc;
1389 /* Prepare for switch statement generation. */
1390 nlabels = tf->dest_array.length ();
1391 return_index = nlabels;
1392 eh_index = return_index + tf->may_return;
1393 fallthru_index = eh_index + (tf->may_throw && !eh_else);
1394 ndests = fallthru_index + tf->may_fallthru;
1396 finally_tmp = create_tmp_var (integer_type_node, "finally_tmp");
1397 finally_label = create_artificial_label (finally_loc);
1399 /* We use vec::quick_push on case_label_vec throughout this function,
1400 since we know the size in advance and allocate precisely as muce
1401 space as needed. */
1402 case_label_vec.create (ndests);
1403 last_case = NULL;
1404 last_case_index = 0;
1406 /* Begin inserting code for getting to the finally block. Things
1407 are done in this order to correspond to the sequence the code is
1408 laid out. */
1410 if (tf->may_fallthru)
1412 x = gimple_build_assign (finally_tmp,
1413 build_int_cst (integer_type_node,
1414 fallthru_index));
1415 gimple_seq_add_stmt (&tf->top_p_seq, x);
1417 tmp = build_int_cst (integer_type_node, fallthru_index);
1418 last_case = build_case_label (tmp, NULL,
1419 create_artificial_label (tf_loc));
1420 case_label_vec.quick_push (last_case);
1421 last_case_index++;
1423 x = gimple_build_label (CASE_LABEL (last_case));
1424 gimple_seq_add_stmt (&switch_body, x);
1426 tmp = lower_try_finally_fallthru_label (tf);
1427 x = gimple_build_goto (tmp);
1428 gimple_set_location (x, tf_loc);
1429 gimple_seq_add_stmt (&switch_body, x);
1432 /* For EH_ELSE, emit the exception path (plus resx) now, then
1433 subsequently we only need consider the normal path. */
1434 if (eh_else)
1436 if (tf->may_throw)
1438 finally = gimple_eh_else_e_body (eh_else);
1439 lower_eh_constructs_1 (state, &finally);
1441 emit_post_landing_pad (&eh_seq, tf->region);
1442 gimple_seq_add_seq (&eh_seq, finally);
1443 emit_resx (&eh_seq, tf->region);
1446 finally = gimple_eh_else_n_body (eh_else);
1448 else if (tf->may_throw)
1450 emit_post_landing_pad (&eh_seq, tf->region);
1452 x = gimple_build_assign (finally_tmp,
1453 build_int_cst (integer_type_node, eh_index));
1454 gimple_seq_add_stmt (&eh_seq, x);
1456 x = gimple_build_goto (finally_label);
1457 gimple_set_location (x, tf_loc);
1458 gimple_seq_add_stmt (&eh_seq, x);
1460 tmp = build_int_cst (integer_type_node, eh_index);
1461 last_case = build_case_label (tmp, NULL,
1462 create_artificial_label (tf_loc));
1463 case_label_vec.quick_push (last_case);
1464 last_case_index++;
1466 x = gimple_build_label (CASE_LABEL (last_case));
1467 gimple_seq_add_stmt (&eh_seq, x);
1468 emit_resx (&eh_seq, tf->region);
1471 x = gimple_build_label (finally_label);
1472 gimple_seq_add_stmt (&tf->top_p_seq, x);
1474 lower_eh_constructs_1 (state, &finally);
1475 gimple_seq_add_seq (&tf->top_p_seq, finally);
1477 /* Redirect each incoming goto edge. */
1478 q = tf->goto_queue;
1479 qe = q + tf->goto_queue_active;
1480 j = last_case_index + tf->may_return;
1481 /* Prepare the assignments to finally_tmp that are executed upon the
1482 entrance through a particular edge. */
1483 for (; q < qe; ++q)
1485 gimple_seq mod = NULL;
1486 int switch_id;
1487 unsigned int case_index;
1489 if (q->index < 0)
1491 x = gimple_build_assign (finally_tmp,
1492 build_int_cst (integer_type_node,
1493 return_index));
1494 gimple_seq_add_stmt (&mod, x);
1495 do_return_redirection (q, finally_label, mod);
1496 switch_id = return_index;
1498 else
1500 x = gimple_build_assign (finally_tmp,
1501 build_int_cst (integer_type_node, q->index));
1502 gimple_seq_add_stmt (&mod, x);
1503 do_goto_redirection (q, finally_label, mod, tf);
1504 switch_id = q->index;
1507 case_index = j + q->index;
1508 if (case_label_vec.length () <= case_index || !case_label_vec[case_index])
1510 tree case_lab;
1511 tmp = build_int_cst (integer_type_node, switch_id);
1512 case_lab = build_case_label (tmp, NULL,
1513 create_artificial_label (tf_loc));
1514 /* We store the cont_stmt in the pointer map, so that we can recover
1515 it in the loop below. */
1516 if (!cont_map)
1517 cont_map = new hash_map<tree, gimple>;
1518 cont_map->put (case_lab, q->cont_stmt);
1519 case_label_vec.quick_push (case_lab);
1522 for (j = last_case_index; j < last_case_index + nlabels; j++)
1524 gimple cont_stmt;
1526 last_case = case_label_vec[j];
1528 gcc_assert (last_case);
1529 gcc_assert (cont_map);
1531 cont_stmt = *cont_map->get (last_case);
1533 x = gimple_build_label (CASE_LABEL (last_case));
1534 gimple_seq_add_stmt (&switch_body, x);
1535 gimple_seq_add_stmt (&switch_body, cont_stmt);
1536 maybe_record_in_goto_queue (state, cont_stmt);
1538 if (cont_map)
1539 delete cont_map;
1541 replace_goto_queue (tf);
1543 /* Make sure that the last case is the default label, as one is required.
1544 Then sort the labels, which is also required in GIMPLE. */
1545 CASE_LOW (last_case) = NULL;
1546 tree tem = case_label_vec.pop ();
1547 gcc_assert (tem == last_case);
1548 sort_case_labels (case_label_vec);
1550 /* Build the switch statement, setting last_case to be the default
1551 label. */
1552 switch_stmt = gimple_build_switch (finally_tmp, last_case,
1553 case_label_vec);
1554 gimple_set_location (switch_stmt, finally_loc);
1556 /* Need to link SWITCH_STMT after running replace_goto_queue
1557 due to not wanting to process the same goto stmts twice. */
1558 gimple_seq_add_stmt (&tf->top_p_seq, switch_stmt);
1559 gimple_seq_add_seq (&tf->top_p_seq, switch_body);
1562 /* Decide whether or not we are going to duplicate the finally block.
1563 There are several considerations.
1565 First, if this is Java, then the finally block contains code
1566 written by the user. It has line numbers associated with it,
1567 so duplicating the block means it's difficult to set a breakpoint.
1568 Since controlling code generation via -g is verboten, we simply
1569 never duplicate code without optimization.
1571 Second, we'd like to prevent egregious code growth. One way to
1572 do this is to estimate the size of the finally block, multiply
1573 that by the number of copies we'd need to make, and compare against
1574 the estimate of the size of the switch machinery we'd have to add. */
1576 static bool
1577 decide_copy_try_finally (int ndests, bool may_throw, gimple_seq finally)
1579 int f_estimate, sw_estimate;
1580 gimple_eh_else eh_else;
1582 /* If there's an EH_ELSE involved, the exception path is separate
1583 and really doesn't come into play for this computation. */
1584 eh_else = get_eh_else (finally);
1585 if (eh_else)
1587 ndests -= may_throw;
1588 finally = gimple_eh_else_n_body (eh_else);
1591 if (!optimize)
1593 gimple_stmt_iterator gsi;
1595 if (ndests == 1)
1596 return true;
1598 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1600 gimple stmt = gsi_stmt (gsi);
1601 if (!is_gimple_debug (stmt) && !gimple_clobber_p (stmt))
1602 return false;
1604 return true;
1607 /* Finally estimate N times, plus N gotos. */
1608 f_estimate = count_insns_seq (finally, &eni_size_weights);
1609 f_estimate = (f_estimate + 1) * ndests;
1611 /* Switch statement (cost 10), N variable assignments, N gotos. */
1612 sw_estimate = 10 + 2 * ndests;
1614 /* Optimize for size clearly wants our best guess. */
1615 if (optimize_function_for_size_p (cfun))
1616 return f_estimate < sw_estimate;
1618 /* ??? These numbers are completely made up so far. */
1619 if (optimize > 1)
1620 return f_estimate < 100 || f_estimate < sw_estimate * 2;
1621 else
1622 return f_estimate < 40 || f_estimate * 2 < sw_estimate * 3;
1625 /* REG is the enclosing region for a possible cleanup region, or the region
1626 itself. Returns TRUE if such a region would be unreachable.
1628 Cleanup regions within a must-not-throw region aren't actually reachable
1629 even if there are throwing stmts within them, because the personality
1630 routine will call terminate before unwinding. */
1632 static bool
1633 cleanup_is_dead_in (eh_region reg)
1635 while (reg && reg->type == ERT_CLEANUP)
1636 reg = reg->outer;
1637 return (reg && reg->type == ERT_MUST_NOT_THROW);
1640 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
1641 to a sequence of labels and blocks, plus the exception region trees
1642 that record all the magic. This is complicated by the need to
1643 arrange for the FINALLY block to be executed on all exits. */
1645 static gimple_seq
1646 lower_try_finally (struct leh_state *state, gimple_try tp)
1648 struct leh_tf_state this_tf;
1649 struct leh_state this_state;
1650 int ndests;
1651 gimple_seq old_eh_seq;
1653 /* Process the try block. */
1655 memset (&this_tf, 0, sizeof (this_tf));
1656 this_tf.try_finally_expr = tp;
1657 this_tf.top_p = tp;
1658 this_tf.outer = state;
1659 if (using_eh_for_cleanups_p () && !cleanup_is_dead_in (state->cur_region))
1661 this_tf.region = gen_eh_region_cleanup (state->cur_region);
1662 this_state.cur_region = this_tf.region;
1664 else
1666 this_tf.region = NULL;
1667 this_state.cur_region = state->cur_region;
1670 this_state.ehp_region = state->ehp_region;
1671 this_state.tf = &this_tf;
1673 old_eh_seq = eh_seq;
1674 eh_seq = NULL;
1676 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1678 /* Determine if the try block is escaped through the bottom. */
1679 this_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1681 /* Determine if any exceptions are possible within the try block. */
1682 if (this_tf.region)
1683 this_tf.may_throw = eh_region_may_contain_throw (this_tf.region);
1684 if (this_tf.may_throw)
1685 honor_protect_cleanup_actions (state, &this_state, &this_tf);
1687 /* Determine how many edges (still) reach the finally block. Or rather,
1688 how many destinations are reached by the finally block. Use this to
1689 determine how we process the finally block itself. */
1691 ndests = this_tf.dest_array.length ();
1692 ndests += this_tf.may_fallthru;
1693 ndests += this_tf.may_return;
1694 ndests += this_tf.may_throw;
1696 /* If the FINALLY block is not reachable, dike it out. */
1697 if (ndests == 0)
1699 gimple_seq_add_seq (&this_tf.top_p_seq, gimple_try_eval (tp));
1700 gimple_try_set_cleanup (tp, NULL);
1702 /* If the finally block doesn't fall through, then any destination
1703 we might try to impose there isn't reached either. There may be
1704 some minor amount of cleanup and redirection still needed. */
1705 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp)))
1706 lower_try_finally_nofallthru (state, &this_tf);
1708 /* We can easily special-case redirection to a single destination. */
1709 else if (ndests == 1)
1710 lower_try_finally_onedest (state, &this_tf);
1711 else if (decide_copy_try_finally (ndests, this_tf.may_throw,
1712 gimple_try_cleanup (tp)))
1713 lower_try_finally_copy (state, &this_tf);
1714 else
1715 lower_try_finally_switch (state, &this_tf);
1717 /* If someone requested we add a label at the end of the transformed
1718 block, do so. */
1719 if (this_tf.fallthru_label)
1721 /* This must be reached only if ndests == 0. */
1722 gimple x = gimple_build_label (this_tf.fallthru_label);
1723 gimple_seq_add_stmt (&this_tf.top_p_seq, x);
1726 this_tf.dest_array.release ();
1727 free (this_tf.goto_queue);
1728 if (this_tf.goto_queue_map)
1729 delete this_tf.goto_queue_map;
1731 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1732 If there was no old eh_seq, then the append is trivially already done. */
1733 if (old_eh_seq)
1735 if (eh_seq == NULL)
1736 eh_seq = old_eh_seq;
1737 else
1739 gimple_seq new_eh_seq = eh_seq;
1740 eh_seq = old_eh_seq;
1741 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1745 return this_tf.top_p_seq;
1748 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1749 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1750 exception region trees that records all the magic. */
1752 static gimple_seq
1753 lower_catch (struct leh_state *state, gimple_try tp)
1755 eh_region try_region = NULL;
1756 struct leh_state this_state = *state;
1757 gimple_stmt_iterator gsi;
1758 tree out_label;
1759 gimple_seq new_seq, cleanup;
1760 gimple x;
1761 location_t try_catch_loc = gimple_location (tp);
1763 if (flag_exceptions)
1765 try_region = gen_eh_region_try (state->cur_region);
1766 this_state.cur_region = try_region;
1769 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1771 if (!eh_region_may_contain_throw (try_region))
1772 return gimple_try_eval (tp);
1774 new_seq = NULL;
1775 emit_eh_dispatch (&new_seq, try_region);
1776 emit_resx (&new_seq, try_region);
1778 this_state.cur_region = state->cur_region;
1779 this_state.ehp_region = try_region;
1781 out_label = NULL;
1782 cleanup = gimple_try_cleanup (tp);
1783 for (gsi = gsi_start (cleanup);
1784 !gsi_end_p (gsi);
1785 gsi_next (&gsi))
1787 eh_catch c;
1788 gimple_catch gcatch;
1789 gimple_seq handler;
1791 gcatch = as_a <gimple_catch> (gsi_stmt (gsi));
1792 c = gen_eh_region_catch (try_region, gimple_catch_types (gcatch));
1794 handler = gimple_catch_handler (gcatch);
1795 lower_eh_constructs_1 (&this_state, &handler);
1797 c->label = create_artificial_label (UNKNOWN_LOCATION);
1798 x = gimple_build_label (c->label);
1799 gimple_seq_add_stmt (&new_seq, x);
1801 gimple_seq_add_seq (&new_seq, handler);
1803 if (gimple_seq_may_fallthru (new_seq))
1805 if (!out_label)
1806 out_label = create_artificial_label (try_catch_loc);
1808 x = gimple_build_goto (out_label);
1809 gimple_seq_add_stmt (&new_seq, x);
1811 if (!c->type_list)
1812 break;
1815 gimple_try_set_cleanup (tp, new_seq);
1817 return frob_into_branch_around (tp, try_region, out_label);
1820 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1821 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
1822 region trees that record all the magic. */
1824 static gimple_seq
1825 lower_eh_filter (struct leh_state *state, gimple_try tp)
1827 struct leh_state this_state = *state;
1828 eh_region this_region = NULL;
1829 gimple inner, x;
1830 gimple_seq new_seq;
1832 inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1834 if (flag_exceptions)
1836 this_region = gen_eh_region_allowed (state->cur_region,
1837 gimple_eh_filter_types (inner));
1838 this_state.cur_region = this_region;
1841 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1843 if (!eh_region_may_contain_throw (this_region))
1844 return gimple_try_eval (tp);
1846 new_seq = NULL;
1847 this_state.cur_region = state->cur_region;
1848 this_state.ehp_region = this_region;
1850 emit_eh_dispatch (&new_seq, this_region);
1851 emit_resx (&new_seq, this_region);
1853 this_region->u.allowed.label = create_artificial_label (UNKNOWN_LOCATION);
1854 x = gimple_build_label (this_region->u.allowed.label);
1855 gimple_seq_add_stmt (&new_seq, x);
1857 lower_eh_constructs_1 (&this_state, gimple_eh_filter_failure_ptr (inner));
1858 gimple_seq_add_seq (&new_seq, gimple_eh_filter_failure (inner));
1860 gimple_try_set_cleanup (tp, new_seq);
1862 return frob_into_branch_around (tp, this_region, NULL);
1865 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with
1866 an GIMPLE_EH_MUST_NOT_THROW to a sequence of labels and blocks,
1867 plus the exception region trees that record all the magic. */
1869 static gimple_seq
1870 lower_eh_must_not_throw (struct leh_state *state, gimple_try tp)
1872 struct leh_state this_state = *state;
1874 if (flag_exceptions)
1876 gimple inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1877 eh_region this_region;
1879 this_region = gen_eh_region_must_not_throw (state->cur_region);
1880 this_region->u.must_not_throw.failure_decl
1881 = gimple_eh_must_not_throw_fndecl (
1882 as_a <gimple_eh_must_not_throw> (inner));
1883 this_region->u.must_not_throw.failure_loc
1884 = LOCATION_LOCUS (gimple_location (tp));
1886 /* In order to get mangling applied to this decl, we must mark it
1887 used now. Otherwise, pass_ipa_free_lang_data won't think it
1888 needs to happen. */
1889 TREE_USED (this_region->u.must_not_throw.failure_decl) = 1;
1891 this_state.cur_region = this_region;
1894 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1896 return gimple_try_eval (tp);
1899 /* Implement a cleanup expression. This is similar to try-finally,
1900 except that we only execute the cleanup block for exception edges. */
1902 static gimple_seq
1903 lower_cleanup (struct leh_state *state, gimple_try tp)
1905 struct leh_state this_state = *state;
1906 eh_region this_region = NULL;
1907 struct leh_tf_state fake_tf;
1908 gimple_seq result;
1909 bool cleanup_dead = cleanup_is_dead_in (state->cur_region);
1911 if (flag_exceptions && !cleanup_dead)
1913 this_region = gen_eh_region_cleanup (state->cur_region);
1914 this_state.cur_region = this_region;
1917 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1919 if (cleanup_dead || !eh_region_may_contain_throw (this_region))
1920 return gimple_try_eval (tp);
1922 /* Build enough of a try-finally state so that we can reuse
1923 honor_protect_cleanup_actions. */
1924 memset (&fake_tf, 0, sizeof (fake_tf));
1925 fake_tf.top_p = fake_tf.try_finally_expr = tp;
1926 fake_tf.outer = state;
1927 fake_tf.region = this_region;
1928 fake_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1929 fake_tf.may_throw = true;
1931 honor_protect_cleanup_actions (state, NULL, &fake_tf);
1933 if (fake_tf.may_throw)
1935 /* In this case honor_protect_cleanup_actions had nothing to do,
1936 and we should process this normally. */
1937 lower_eh_constructs_1 (state, gimple_try_cleanup_ptr (tp));
1938 result = frob_into_branch_around (tp, this_region,
1939 fake_tf.fallthru_label);
1941 else
1943 /* In this case honor_protect_cleanup_actions did nearly all of
1944 the work. All we have left is to append the fallthru_label. */
1946 result = gimple_try_eval (tp);
1947 if (fake_tf.fallthru_label)
1949 gimple x = gimple_build_label (fake_tf.fallthru_label);
1950 gimple_seq_add_stmt (&result, x);
1953 return result;
1956 /* Main loop for lowering eh constructs. Also moves gsi to the next
1957 statement. */
1959 static void
1960 lower_eh_constructs_2 (struct leh_state *state, gimple_stmt_iterator *gsi)
1962 gimple_seq replace;
1963 gimple x;
1964 gimple stmt = gsi_stmt (*gsi);
1966 switch (gimple_code (stmt))
1968 case GIMPLE_CALL:
1970 tree fndecl = gimple_call_fndecl (stmt);
1971 tree rhs, lhs;
1973 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1974 switch (DECL_FUNCTION_CODE (fndecl))
1976 case BUILT_IN_EH_POINTER:
1977 /* The front end may have generated a call to
1978 __builtin_eh_pointer (0) within a catch region. Replace
1979 this zero argument with the current catch region number. */
1980 if (state->ehp_region)
1982 tree nr = build_int_cst (integer_type_node,
1983 state->ehp_region->index);
1984 gimple_call_set_arg (stmt, 0, nr);
1986 else
1988 /* The user has dome something silly. Remove it. */
1989 rhs = null_pointer_node;
1990 goto do_replace;
1992 break;
1994 case BUILT_IN_EH_FILTER:
1995 /* ??? This should never appear, but since it's a builtin it
1996 is accessible to abuse by users. Just remove it and
1997 replace the use with the arbitrary value zero. */
1998 rhs = build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
1999 do_replace:
2000 lhs = gimple_call_lhs (stmt);
2001 x = gimple_build_assign (lhs, rhs);
2002 gsi_insert_before (gsi, x, GSI_SAME_STMT);
2003 /* FALLTHRU */
2005 case BUILT_IN_EH_COPY_VALUES:
2006 /* Likewise this should not appear. Remove it. */
2007 gsi_remove (gsi, true);
2008 return;
2010 default:
2011 break;
2014 /* FALLTHRU */
2016 case GIMPLE_ASSIGN:
2017 /* If the stmt can throw use a new temporary for the assignment
2018 to a LHS. This makes sure the old value of the LHS is
2019 available on the EH edge. Only do so for statements that
2020 potentially fall through (no noreturn calls e.g.), otherwise
2021 this new assignment might create fake fallthru regions. */
2022 if (stmt_could_throw_p (stmt)
2023 && gimple_has_lhs (stmt)
2024 && gimple_stmt_may_fallthru (stmt)
2025 && !tree_could_throw_p (gimple_get_lhs (stmt))
2026 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
2028 tree lhs = gimple_get_lhs (stmt);
2029 tree tmp = create_tmp_var (TREE_TYPE (lhs), NULL);
2030 gimple s = gimple_build_assign (lhs, tmp);
2031 gimple_set_location (s, gimple_location (stmt));
2032 gimple_set_block (s, gimple_block (stmt));
2033 gimple_set_lhs (stmt, tmp);
2034 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
2035 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
2036 DECL_GIMPLE_REG_P (tmp) = 1;
2037 gsi_insert_after (gsi, s, GSI_SAME_STMT);
2039 /* Look for things that can throw exceptions, and record them. */
2040 if (state->cur_region && stmt_could_throw_p (stmt))
2042 record_stmt_eh_region (state->cur_region, stmt);
2043 note_eh_region_may_contain_throw (state->cur_region);
2045 break;
2047 case GIMPLE_COND:
2048 case GIMPLE_GOTO:
2049 case GIMPLE_RETURN:
2050 maybe_record_in_goto_queue (state, stmt);
2051 break;
2053 case GIMPLE_SWITCH:
2054 verify_norecord_switch_expr (state, as_a <gimple_switch> (stmt));
2055 break;
2057 case GIMPLE_TRY:
2059 gimple_try try_stmt = as_a <gimple_try> (stmt);
2060 if (gimple_try_kind (try_stmt) == GIMPLE_TRY_FINALLY)
2061 replace = lower_try_finally (state, try_stmt);
2062 else
2064 x = gimple_seq_first_stmt (gimple_try_cleanup (try_stmt));
2065 if (!x)
2067 replace = gimple_try_eval (try_stmt);
2068 lower_eh_constructs_1 (state, &replace);
2070 else
2071 switch (gimple_code (x))
2073 case GIMPLE_CATCH:
2074 replace = lower_catch (state, try_stmt);
2075 break;
2076 case GIMPLE_EH_FILTER:
2077 replace = lower_eh_filter (state, try_stmt);
2078 break;
2079 case GIMPLE_EH_MUST_NOT_THROW:
2080 replace = lower_eh_must_not_throw (state, try_stmt);
2081 break;
2082 case GIMPLE_EH_ELSE:
2083 /* This code is only valid with GIMPLE_TRY_FINALLY. */
2084 gcc_unreachable ();
2085 default:
2086 replace = lower_cleanup (state, try_stmt);
2087 break;
2092 /* Remove the old stmt and insert the transformed sequence
2093 instead. */
2094 gsi_insert_seq_before (gsi, replace, GSI_SAME_STMT);
2095 gsi_remove (gsi, true);
2097 /* Return since we don't want gsi_next () */
2098 return;
2100 case GIMPLE_EH_ELSE:
2101 /* We should be eliminating this in lower_try_finally et al. */
2102 gcc_unreachable ();
2104 default:
2105 /* A type, a decl, or some kind of statement that we're not
2106 interested in. Don't walk them. */
2107 break;
2110 gsi_next (gsi);
2113 /* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
2115 static void
2116 lower_eh_constructs_1 (struct leh_state *state, gimple_seq *pseq)
2118 gimple_stmt_iterator gsi;
2119 for (gsi = gsi_start (*pseq); !gsi_end_p (gsi);)
2120 lower_eh_constructs_2 (state, &gsi);
2123 namespace {
2125 const pass_data pass_data_lower_eh =
2127 GIMPLE_PASS, /* type */
2128 "eh", /* name */
2129 OPTGROUP_NONE, /* optinfo_flags */
2130 TV_TREE_EH, /* tv_id */
2131 PROP_gimple_lcf, /* properties_required */
2132 PROP_gimple_leh, /* properties_provided */
2133 0, /* properties_destroyed */
2134 0, /* todo_flags_start */
2135 0, /* todo_flags_finish */
2138 class pass_lower_eh : public gimple_opt_pass
2140 public:
2141 pass_lower_eh (gcc::context *ctxt)
2142 : gimple_opt_pass (pass_data_lower_eh, ctxt)
2145 /* opt_pass methods: */
2146 virtual unsigned int execute (function *);
2148 }; // class pass_lower_eh
2150 unsigned int
2151 pass_lower_eh::execute (function *fun)
2153 struct leh_state null_state;
2154 gimple_seq bodyp;
2156 bodyp = gimple_body (current_function_decl);
2157 if (bodyp == NULL)
2158 return 0;
2160 finally_tree = new hash_table<finally_tree_hasher> (31);
2161 eh_region_may_contain_throw_map = BITMAP_ALLOC (NULL);
2162 memset (&null_state, 0, sizeof (null_state));
2164 collect_finally_tree_1 (bodyp, NULL);
2165 lower_eh_constructs_1 (&null_state, &bodyp);
2166 gimple_set_body (current_function_decl, bodyp);
2168 /* We assume there's a return statement, or something, at the end of
2169 the function, and thus ploping the EH sequence afterward won't
2170 change anything. */
2171 gcc_assert (!gimple_seq_may_fallthru (bodyp));
2172 gimple_seq_add_seq (&bodyp, eh_seq);
2174 /* We assume that since BODYP already existed, adding EH_SEQ to it
2175 didn't change its value, and we don't have to re-set the function. */
2176 gcc_assert (bodyp == gimple_body (current_function_decl));
2178 delete finally_tree;
2179 finally_tree = NULL;
2180 BITMAP_FREE (eh_region_may_contain_throw_map);
2181 eh_seq = NULL;
2183 /* If this function needs a language specific EH personality routine
2184 and the frontend didn't already set one do so now. */
2185 if (function_needs_eh_personality (fun) == eh_personality_lang
2186 && !DECL_FUNCTION_PERSONALITY (current_function_decl))
2187 DECL_FUNCTION_PERSONALITY (current_function_decl)
2188 = lang_hooks.eh_personality ();
2190 return 0;
2193 } // anon namespace
2195 gimple_opt_pass *
2196 make_pass_lower_eh (gcc::context *ctxt)
2198 return new pass_lower_eh (ctxt);
2201 /* Create the multiple edges from an EH_DISPATCH statement to all of
2202 the possible handlers for its EH region. Return true if there's
2203 no fallthru edge; false if there is. */
2205 bool
2206 make_eh_dispatch_edges (gimple_eh_dispatch stmt)
2208 eh_region r;
2209 eh_catch c;
2210 basic_block src, dst;
2212 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2213 src = gimple_bb (stmt);
2215 switch (r->type)
2217 case ERT_TRY:
2218 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2220 dst = label_to_block (c->label);
2221 make_edge (src, dst, 0);
2223 /* A catch-all handler doesn't have a fallthru. */
2224 if (c->type_list == NULL)
2225 return false;
2227 break;
2229 case ERT_ALLOWED_EXCEPTIONS:
2230 dst = label_to_block (r->u.allowed.label);
2231 make_edge (src, dst, 0);
2232 break;
2234 default:
2235 gcc_unreachable ();
2238 return true;
2241 /* Create the single EH edge from STMT to its nearest landing pad,
2242 if there is such a landing pad within the current function. */
2244 void
2245 make_eh_edges (gimple stmt)
2247 basic_block src, dst;
2248 eh_landing_pad lp;
2249 int lp_nr;
2251 lp_nr = lookup_stmt_eh_lp (stmt);
2252 if (lp_nr <= 0)
2253 return;
2255 lp = get_eh_landing_pad_from_number (lp_nr);
2256 gcc_assert (lp != NULL);
2258 src = gimple_bb (stmt);
2259 dst = label_to_block (lp->post_landing_pad);
2260 make_edge (src, dst, EDGE_EH);
2263 /* Do the work in redirecting EDGE_IN to NEW_BB within the EH region tree;
2264 do not actually perform the final edge redirection.
2266 CHANGE_REGION is true when we're being called from cleanup_empty_eh and
2267 we intend to change the destination EH region as well; this means
2268 EH_LANDING_PAD_NR must already be set on the destination block label.
2269 If false, we're being called from generic cfg manipulation code and we
2270 should preserve our place within the region tree. */
2272 static void
2273 redirect_eh_edge_1 (edge edge_in, basic_block new_bb, bool change_region)
2275 eh_landing_pad old_lp, new_lp;
2276 basic_block old_bb;
2277 gimple throw_stmt;
2278 int old_lp_nr, new_lp_nr;
2279 tree old_label, new_label;
2280 edge_iterator ei;
2281 edge e;
2283 old_bb = edge_in->dest;
2284 old_label = gimple_block_label (old_bb);
2285 old_lp_nr = EH_LANDING_PAD_NR (old_label);
2286 gcc_assert (old_lp_nr > 0);
2287 old_lp = get_eh_landing_pad_from_number (old_lp_nr);
2289 throw_stmt = last_stmt (edge_in->src);
2290 gcc_assert (lookup_stmt_eh_lp (throw_stmt) == old_lp_nr);
2292 new_label = gimple_block_label (new_bb);
2294 /* Look for an existing region that might be using NEW_BB already. */
2295 new_lp_nr = EH_LANDING_PAD_NR (new_label);
2296 if (new_lp_nr)
2298 new_lp = get_eh_landing_pad_from_number (new_lp_nr);
2299 gcc_assert (new_lp);
2301 /* Unless CHANGE_REGION is true, the new and old landing pad
2302 had better be associated with the same EH region. */
2303 gcc_assert (change_region || new_lp->region == old_lp->region);
2305 else
2307 new_lp = NULL;
2308 gcc_assert (!change_region);
2311 /* Notice when we redirect the last EH edge away from OLD_BB. */
2312 FOR_EACH_EDGE (e, ei, old_bb->preds)
2313 if (e != edge_in && (e->flags & EDGE_EH))
2314 break;
2316 if (new_lp)
2318 /* NEW_LP already exists. If there are still edges into OLD_LP,
2319 there's nothing to do with the EH tree. If there are no more
2320 edges into OLD_LP, then we want to remove OLD_LP as it is unused.
2321 If CHANGE_REGION is true, then our caller is expecting to remove
2322 the landing pad. */
2323 if (e == NULL && !change_region)
2324 remove_eh_landing_pad (old_lp);
2326 else
2328 /* No correct landing pad exists. If there are no more edges
2329 into OLD_LP, then we can simply re-use the existing landing pad.
2330 Otherwise, we have to create a new landing pad. */
2331 if (e == NULL)
2333 EH_LANDING_PAD_NR (old_lp->post_landing_pad) = 0;
2334 new_lp = old_lp;
2336 else
2337 new_lp = gen_eh_landing_pad (old_lp->region);
2338 new_lp->post_landing_pad = new_label;
2339 EH_LANDING_PAD_NR (new_label) = new_lp->index;
2342 /* Maybe move the throwing statement to the new region. */
2343 if (old_lp != new_lp)
2345 remove_stmt_from_eh_lp (throw_stmt);
2346 add_stmt_to_eh_lp (throw_stmt, new_lp->index);
2350 /* Redirect EH edge E to NEW_BB. */
2352 edge
2353 redirect_eh_edge (edge edge_in, basic_block new_bb)
2355 redirect_eh_edge_1 (edge_in, new_bb, false);
2356 return ssa_redirect_edge (edge_in, new_bb);
2359 /* This is a subroutine of gimple_redirect_edge_and_branch. Update the
2360 labels for redirecting a non-fallthru EH_DISPATCH edge E to NEW_BB.
2361 The actual edge update will happen in the caller. */
2363 void
2364 redirect_eh_dispatch_edge (gimple_eh_dispatch stmt, edge e, basic_block new_bb)
2366 tree new_lab = gimple_block_label (new_bb);
2367 bool any_changed = false;
2368 basic_block old_bb;
2369 eh_region r;
2370 eh_catch c;
2372 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2373 switch (r->type)
2375 case ERT_TRY:
2376 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2378 old_bb = label_to_block (c->label);
2379 if (old_bb == e->dest)
2381 c->label = new_lab;
2382 any_changed = true;
2385 break;
2387 case ERT_ALLOWED_EXCEPTIONS:
2388 old_bb = label_to_block (r->u.allowed.label);
2389 gcc_assert (old_bb == e->dest);
2390 r->u.allowed.label = new_lab;
2391 any_changed = true;
2392 break;
2394 default:
2395 gcc_unreachable ();
2398 gcc_assert (any_changed);
2401 /* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2403 bool
2404 operation_could_trap_helper_p (enum tree_code op,
2405 bool fp_operation,
2406 bool honor_trapv,
2407 bool honor_nans,
2408 bool honor_snans,
2409 tree divisor,
2410 bool *handled)
2412 *handled = true;
2413 switch (op)
2415 case TRUNC_DIV_EXPR:
2416 case CEIL_DIV_EXPR:
2417 case FLOOR_DIV_EXPR:
2418 case ROUND_DIV_EXPR:
2419 case EXACT_DIV_EXPR:
2420 case CEIL_MOD_EXPR:
2421 case FLOOR_MOD_EXPR:
2422 case ROUND_MOD_EXPR:
2423 case TRUNC_MOD_EXPR:
2424 case RDIV_EXPR:
2425 if (honor_snans || honor_trapv)
2426 return true;
2427 if (fp_operation)
2428 return flag_trapping_math;
2429 if (!TREE_CONSTANT (divisor) || integer_zerop (divisor))
2430 return true;
2431 return false;
2433 case LT_EXPR:
2434 case LE_EXPR:
2435 case GT_EXPR:
2436 case GE_EXPR:
2437 case LTGT_EXPR:
2438 /* Some floating point comparisons may trap. */
2439 return honor_nans;
2441 case EQ_EXPR:
2442 case NE_EXPR:
2443 case UNORDERED_EXPR:
2444 case ORDERED_EXPR:
2445 case UNLT_EXPR:
2446 case UNLE_EXPR:
2447 case UNGT_EXPR:
2448 case UNGE_EXPR:
2449 case UNEQ_EXPR:
2450 return honor_snans;
2452 case CONVERT_EXPR:
2453 case FIX_TRUNC_EXPR:
2454 /* Conversion of floating point might trap. */
2455 return honor_nans;
2457 case NEGATE_EXPR:
2458 case ABS_EXPR:
2459 case CONJ_EXPR:
2460 /* These operations don't trap with floating point. */
2461 if (honor_trapv)
2462 return true;
2463 return false;
2465 case PLUS_EXPR:
2466 case MINUS_EXPR:
2467 case MULT_EXPR:
2468 /* Any floating arithmetic may trap. */
2469 if (fp_operation && flag_trapping_math)
2470 return true;
2471 if (honor_trapv)
2472 return true;
2473 return false;
2475 case COMPLEX_EXPR:
2476 case CONSTRUCTOR:
2477 /* Constructing an object cannot trap. */
2478 return false;
2480 default:
2481 /* Any floating arithmetic may trap. */
2482 if (fp_operation && flag_trapping_math)
2483 return true;
2485 *handled = false;
2486 return false;
2490 /* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2491 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2492 type operands that may trap. If OP is a division operator, DIVISOR contains
2493 the value of the divisor. */
2495 bool
2496 operation_could_trap_p (enum tree_code op, bool fp_operation, bool honor_trapv,
2497 tree divisor)
2499 bool honor_nans = (fp_operation && flag_trapping_math
2500 && !flag_finite_math_only);
2501 bool honor_snans = fp_operation && flag_signaling_nans != 0;
2502 bool handled;
2504 if (TREE_CODE_CLASS (op) != tcc_comparison
2505 && TREE_CODE_CLASS (op) != tcc_unary
2506 && TREE_CODE_CLASS (op) != tcc_binary)
2507 return false;
2509 return operation_could_trap_helper_p (op, fp_operation, honor_trapv,
2510 honor_nans, honor_snans, divisor,
2511 &handled);
2515 /* Returns true if it is possible to prove that the index of
2516 an array access REF (an ARRAY_REF expression) falls into the
2517 array bounds. */
2519 static bool
2520 in_array_bounds_p (tree ref)
2522 tree idx = TREE_OPERAND (ref, 1);
2523 tree min, max;
2525 if (TREE_CODE (idx) != INTEGER_CST)
2526 return false;
2528 min = array_ref_low_bound (ref);
2529 max = array_ref_up_bound (ref);
2530 if (!min
2531 || !max
2532 || TREE_CODE (min) != INTEGER_CST
2533 || TREE_CODE (max) != INTEGER_CST)
2534 return false;
2536 if (tree_int_cst_lt (idx, min)
2537 || tree_int_cst_lt (max, idx))
2538 return false;
2540 return true;
2543 /* Returns true if it is possible to prove that the range of
2544 an array access REF (an ARRAY_RANGE_REF expression) falls
2545 into the array bounds. */
2547 static bool
2548 range_in_array_bounds_p (tree ref)
2550 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
2551 tree range_min, range_max, min, max;
2553 range_min = TYPE_MIN_VALUE (domain_type);
2554 range_max = TYPE_MAX_VALUE (domain_type);
2555 if (!range_min
2556 || !range_max
2557 || TREE_CODE (range_min) != INTEGER_CST
2558 || TREE_CODE (range_max) != INTEGER_CST)
2559 return false;
2561 min = array_ref_low_bound (ref);
2562 max = array_ref_up_bound (ref);
2563 if (!min
2564 || !max
2565 || TREE_CODE (min) != INTEGER_CST
2566 || TREE_CODE (max) != INTEGER_CST)
2567 return false;
2569 if (tree_int_cst_lt (range_min, min)
2570 || tree_int_cst_lt (max, range_max))
2571 return false;
2573 return true;
2576 /* Return true if EXPR can trap, as in dereferencing an invalid pointer
2577 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2578 This routine expects only GIMPLE lhs or rhs input. */
2580 bool
2581 tree_could_trap_p (tree expr)
2583 enum tree_code code;
2584 bool fp_operation = false;
2585 bool honor_trapv = false;
2586 tree t, base, div = NULL_TREE;
2588 if (!expr)
2589 return false;
2591 code = TREE_CODE (expr);
2592 t = TREE_TYPE (expr);
2594 if (t)
2596 if (COMPARISON_CLASS_P (expr))
2597 fp_operation = FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
2598 else
2599 fp_operation = FLOAT_TYPE_P (t);
2600 honor_trapv = INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t);
2603 if (TREE_CODE_CLASS (code) == tcc_binary)
2604 div = TREE_OPERAND (expr, 1);
2605 if (operation_could_trap_p (code, fp_operation, honor_trapv, div))
2606 return true;
2608 restart:
2609 switch (code)
2611 case COMPONENT_REF:
2612 case REALPART_EXPR:
2613 case IMAGPART_EXPR:
2614 case BIT_FIELD_REF:
2615 case VIEW_CONVERT_EXPR:
2616 case WITH_SIZE_EXPR:
2617 expr = TREE_OPERAND (expr, 0);
2618 code = TREE_CODE (expr);
2619 goto restart;
2621 case ARRAY_RANGE_REF:
2622 base = TREE_OPERAND (expr, 0);
2623 if (tree_could_trap_p (base))
2624 return true;
2625 if (TREE_THIS_NOTRAP (expr))
2626 return false;
2627 return !range_in_array_bounds_p (expr);
2629 case ARRAY_REF:
2630 base = TREE_OPERAND (expr, 0);
2631 if (tree_could_trap_p (base))
2632 return true;
2633 if (TREE_THIS_NOTRAP (expr))
2634 return false;
2635 return !in_array_bounds_p (expr);
2637 case TARGET_MEM_REF:
2638 case MEM_REF:
2639 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
2640 && tree_could_trap_p (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
2641 return true;
2642 if (TREE_THIS_NOTRAP (expr))
2643 return false;
2644 /* We cannot prove that the access is in-bounds when we have
2645 variable-index TARGET_MEM_REFs. */
2646 if (code == TARGET_MEM_REF
2647 && (TMR_INDEX (expr) || TMR_INDEX2 (expr)))
2648 return true;
2649 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
2651 tree base = TREE_OPERAND (TREE_OPERAND (expr, 0), 0);
2652 offset_int off = mem_ref_offset (expr);
2653 if (wi::neg_p (off, SIGNED))
2654 return true;
2655 if (TREE_CODE (base) == STRING_CST)
2656 return wi::leu_p (TREE_STRING_LENGTH (base), off);
2657 else if (DECL_SIZE_UNIT (base) == NULL_TREE
2658 || TREE_CODE (DECL_SIZE_UNIT (base)) != INTEGER_CST
2659 || wi::leu_p (wi::to_offset (DECL_SIZE_UNIT (base)), off))
2660 return true;
2661 /* Now we are sure the first byte of the access is inside
2662 the object. */
2663 return false;
2665 return true;
2667 case INDIRECT_REF:
2668 return !TREE_THIS_NOTRAP (expr);
2670 case ASM_EXPR:
2671 return TREE_THIS_VOLATILE (expr);
2673 case CALL_EXPR:
2674 t = get_callee_fndecl (expr);
2675 /* Assume that calls to weak functions may trap. */
2676 if (!t || !DECL_P (t))
2677 return true;
2678 if (DECL_WEAK (t))
2679 return tree_could_trap_p (t);
2680 return false;
2682 case FUNCTION_DECL:
2683 /* Assume that accesses to weak functions may trap, unless we know
2684 they are certainly defined in current TU or in some other
2685 LTO partition. */
2686 if (DECL_WEAK (expr) && !DECL_COMDAT (expr))
2688 struct cgraph_node *node;
2689 if (!DECL_EXTERNAL (expr))
2690 return false;
2691 node = cgraph_node::get (expr)->function_symbol ();
2692 if (node && node->in_other_partition)
2693 return false;
2694 return true;
2696 return false;
2698 case VAR_DECL:
2699 /* Assume that accesses to weak vars may trap, unless we know
2700 they are certainly defined in current TU or in some other
2701 LTO partition. */
2702 if (DECL_WEAK (expr) && !DECL_COMDAT (expr))
2704 varpool_node *node;
2705 if (!DECL_EXTERNAL (expr))
2706 return false;
2707 node = varpool_node::get (expr)->ultimate_alias_target ();
2708 if (node && node->in_other_partition)
2709 return false;
2710 return true;
2712 return false;
2714 default:
2715 return false;
2720 /* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2721 an assignment or a conditional) may throw. */
2723 static bool
2724 stmt_could_throw_1_p (gimple stmt)
2726 enum tree_code code = gimple_expr_code (stmt);
2727 bool honor_nans = false;
2728 bool honor_snans = false;
2729 bool fp_operation = false;
2730 bool honor_trapv = false;
2731 tree t;
2732 size_t i;
2733 bool handled, ret;
2735 if (TREE_CODE_CLASS (code) == tcc_comparison
2736 || TREE_CODE_CLASS (code) == tcc_unary
2737 || TREE_CODE_CLASS (code) == tcc_binary)
2739 if (is_gimple_assign (stmt)
2740 && TREE_CODE_CLASS (code) == tcc_comparison)
2741 t = TREE_TYPE (gimple_assign_rhs1 (stmt));
2742 else if (gimple_code (stmt) == GIMPLE_COND)
2743 t = TREE_TYPE (gimple_cond_lhs (stmt));
2744 else
2745 t = gimple_expr_type (stmt);
2746 fp_operation = FLOAT_TYPE_P (t);
2747 if (fp_operation)
2749 honor_nans = flag_trapping_math && !flag_finite_math_only;
2750 honor_snans = flag_signaling_nans != 0;
2752 else if (INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t))
2753 honor_trapv = true;
2756 /* Check if the main expression may trap. */
2757 t = is_gimple_assign (stmt) ? gimple_assign_rhs2 (stmt) : NULL;
2758 ret = operation_could_trap_helper_p (code, fp_operation, honor_trapv,
2759 honor_nans, honor_snans, t,
2760 &handled);
2761 if (handled)
2762 return ret;
2764 /* If the expression does not trap, see if any of the individual operands may
2765 trap. */
2766 for (i = 0; i < gimple_num_ops (stmt); i++)
2767 if (tree_could_trap_p (gimple_op (stmt, i)))
2768 return true;
2770 return false;
2774 /* Return true if statement STMT could throw an exception. */
2776 bool
2777 stmt_could_throw_p (gimple stmt)
2779 if (!flag_exceptions)
2780 return false;
2782 /* The only statements that can throw an exception are assignments,
2783 conditionals, calls, resx, and asms. */
2784 switch (gimple_code (stmt))
2786 case GIMPLE_RESX:
2787 return true;
2789 case GIMPLE_CALL:
2790 return !gimple_call_nothrow_p (stmt);
2792 case GIMPLE_ASSIGN:
2793 case GIMPLE_COND:
2794 if (!cfun->can_throw_non_call_exceptions)
2795 return false;
2796 return stmt_could_throw_1_p (stmt);
2798 case GIMPLE_ASM:
2799 if (!cfun->can_throw_non_call_exceptions)
2800 return false;
2801 return gimple_asm_volatile_p (as_a <gimple_asm> (stmt));
2803 default:
2804 return false;
2809 /* Return true if expression T could throw an exception. */
2811 bool
2812 tree_could_throw_p (tree t)
2814 if (!flag_exceptions)
2815 return false;
2816 if (TREE_CODE (t) == MODIFY_EXPR)
2818 if (cfun->can_throw_non_call_exceptions
2819 && tree_could_trap_p (TREE_OPERAND (t, 0)))
2820 return true;
2821 t = TREE_OPERAND (t, 1);
2824 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2825 t = TREE_OPERAND (t, 0);
2826 if (TREE_CODE (t) == CALL_EXPR)
2827 return (call_expr_flags (t) & ECF_NOTHROW) == 0;
2828 if (cfun->can_throw_non_call_exceptions)
2829 return tree_could_trap_p (t);
2830 return false;
2833 /* Return true if STMT can throw an exception that is not caught within
2834 the current function (CFUN). */
2836 bool
2837 stmt_can_throw_external (gimple stmt)
2839 int lp_nr;
2841 if (!stmt_could_throw_p (stmt))
2842 return false;
2844 lp_nr = lookup_stmt_eh_lp (stmt);
2845 return lp_nr == 0;
2848 /* Return true if STMT can throw an exception that is caught within
2849 the current function (CFUN). */
2851 bool
2852 stmt_can_throw_internal (gimple stmt)
2854 int lp_nr;
2856 if (!stmt_could_throw_p (stmt))
2857 return false;
2859 lp_nr = lookup_stmt_eh_lp (stmt);
2860 return lp_nr > 0;
2863 /* Given a statement STMT in IFUN, if STMT can no longer throw, then
2864 remove any entry it might have from the EH table. Return true if
2865 any change was made. */
2867 bool
2868 maybe_clean_eh_stmt_fn (struct function *ifun, gimple stmt)
2870 if (stmt_could_throw_p (stmt))
2871 return false;
2872 return remove_stmt_from_eh_lp_fn (ifun, stmt);
2875 /* Likewise, but always use the current function. */
2877 bool
2878 maybe_clean_eh_stmt (gimple stmt)
2880 return maybe_clean_eh_stmt_fn (cfun, stmt);
2883 /* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2884 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2885 in the table if it should be in there. Return TRUE if a replacement was
2886 done that my require an EH edge purge. */
2888 bool
2889 maybe_clean_or_replace_eh_stmt (gimple old_stmt, gimple new_stmt)
2891 int lp_nr = lookup_stmt_eh_lp (old_stmt);
2893 if (lp_nr != 0)
2895 bool new_stmt_could_throw = stmt_could_throw_p (new_stmt);
2897 if (new_stmt == old_stmt && new_stmt_could_throw)
2898 return false;
2900 remove_stmt_from_eh_lp (old_stmt);
2901 if (new_stmt_could_throw)
2903 add_stmt_to_eh_lp (new_stmt, lp_nr);
2904 return false;
2906 else
2907 return true;
2910 return false;
2913 /* Given a statement OLD_STMT in OLD_FUN and a duplicate statement NEW_STMT
2914 in NEW_FUN, copy the EH table data from OLD_STMT to NEW_STMT. The MAP
2915 operand is the return value of duplicate_eh_regions. */
2917 bool
2918 maybe_duplicate_eh_stmt_fn (struct function *new_fun, gimple new_stmt,
2919 struct function *old_fun, gimple old_stmt,
2920 hash_map<void *, void *> *map,
2921 int default_lp_nr)
2923 int old_lp_nr, new_lp_nr;
2925 if (!stmt_could_throw_p (new_stmt))
2926 return false;
2928 old_lp_nr = lookup_stmt_eh_lp_fn (old_fun, old_stmt);
2929 if (old_lp_nr == 0)
2931 if (default_lp_nr == 0)
2932 return false;
2933 new_lp_nr = default_lp_nr;
2935 else if (old_lp_nr > 0)
2937 eh_landing_pad old_lp, new_lp;
2939 old_lp = (*old_fun->eh->lp_array)[old_lp_nr];
2940 new_lp = static_cast<eh_landing_pad> (*map->get (old_lp));
2941 new_lp_nr = new_lp->index;
2943 else
2945 eh_region old_r, new_r;
2947 old_r = (*old_fun->eh->region_array)[-old_lp_nr];
2948 new_r = static_cast<eh_region> (*map->get (old_r));
2949 new_lp_nr = -new_r->index;
2952 add_stmt_to_eh_lp_fn (new_fun, new_stmt, new_lp_nr);
2953 return true;
2956 /* Similar, but both OLD_STMT and NEW_STMT are within the current function,
2957 and thus no remapping is required. */
2959 bool
2960 maybe_duplicate_eh_stmt (gimple new_stmt, gimple old_stmt)
2962 int lp_nr;
2964 if (!stmt_could_throw_p (new_stmt))
2965 return false;
2967 lp_nr = lookup_stmt_eh_lp (old_stmt);
2968 if (lp_nr == 0)
2969 return false;
2971 add_stmt_to_eh_lp (new_stmt, lp_nr);
2972 return true;
2975 /* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2976 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2977 this only handles handlers consisting of a single call, as that's the
2978 important case for C++: a destructor call for a particular object showing
2979 up in multiple handlers. */
2981 static bool
2982 same_handler_p (gimple_seq oneh, gimple_seq twoh)
2984 gimple_stmt_iterator gsi;
2985 gimple ones, twos;
2986 unsigned int ai;
2988 gsi = gsi_start (oneh);
2989 if (!gsi_one_before_end_p (gsi))
2990 return false;
2991 ones = gsi_stmt (gsi);
2993 gsi = gsi_start (twoh);
2994 if (!gsi_one_before_end_p (gsi))
2995 return false;
2996 twos = gsi_stmt (gsi);
2998 if (!is_gimple_call (ones)
2999 || !is_gimple_call (twos)
3000 || gimple_call_lhs (ones)
3001 || gimple_call_lhs (twos)
3002 || gimple_call_chain (ones)
3003 || gimple_call_chain (twos)
3004 || !gimple_call_same_target_p (ones, twos)
3005 || gimple_call_num_args (ones) != gimple_call_num_args (twos))
3006 return false;
3008 for (ai = 0; ai < gimple_call_num_args (ones); ++ai)
3009 if (!operand_equal_p (gimple_call_arg (ones, ai),
3010 gimple_call_arg (twos, ai), 0))
3011 return false;
3013 return true;
3016 /* Optimize
3017 try { A() } finally { try { ~B() } catch { ~A() } }
3018 try { ... } finally { ~A() }
3019 into
3020 try { A() } catch { ~B() }
3021 try { ~B() ... } finally { ~A() }
3023 This occurs frequently in C++, where A is a local variable and B is a
3024 temporary used in the initializer for A. */
3026 static void
3027 optimize_double_finally (gimple_try one, gimple_try two)
3029 gimple oneh;
3030 gimple_stmt_iterator gsi;
3031 gimple_seq cleanup;
3033 cleanup = gimple_try_cleanup (one);
3034 gsi = gsi_start (cleanup);
3035 if (!gsi_one_before_end_p (gsi))
3036 return;
3038 oneh = gsi_stmt (gsi);
3039 if (gimple_code (oneh) != GIMPLE_TRY
3040 || gimple_try_kind (oneh) != GIMPLE_TRY_CATCH)
3041 return;
3043 if (same_handler_p (gimple_try_cleanup (oneh), gimple_try_cleanup (two)))
3045 gimple_seq seq = gimple_try_eval (oneh);
3047 gimple_try_set_cleanup (one, seq);
3048 gimple_try_set_kind (one, GIMPLE_TRY_CATCH);
3049 seq = copy_gimple_seq_and_replace_locals (seq);
3050 gimple_seq_add_seq (&seq, gimple_try_eval (two));
3051 gimple_try_set_eval (two, seq);
3055 /* Perform EH refactoring optimizations that are simpler to do when code
3056 flow has been lowered but EH structures haven't. */
3058 static void
3059 refactor_eh_r (gimple_seq seq)
3061 gimple_stmt_iterator gsi;
3062 gimple one, two;
3064 one = NULL;
3065 two = NULL;
3066 gsi = gsi_start (seq);
3067 while (1)
3069 one = two;
3070 if (gsi_end_p (gsi))
3071 two = NULL;
3072 else
3073 two = gsi_stmt (gsi);
3074 if (one && two)
3075 if (gimple_try try_one = dyn_cast <gimple_try> (one))
3076 if (gimple_try try_two = dyn_cast <gimple_try> (two))
3077 if (gimple_try_kind (try_one) == GIMPLE_TRY_FINALLY
3078 && gimple_try_kind (try_two) == GIMPLE_TRY_FINALLY)
3079 optimize_double_finally (try_one, try_two);
3080 if (one)
3081 switch (gimple_code (one))
3083 case GIMPLE_TRY:
3084 refactor_eh_r (gimple_try_eval (one));
3085 refactor_eh_r (gimple_try_cleanup (one));
3086 break;
3087 case GIMPLE_CATCH:
3088 refactor_eh_r (gimple_catch_handler (as_a <gimple_catch> (one)));
3089 break;
3090 case GIMPLE_EH_FILTER:
3091 refactor_eh_r (gimple_eh_filter_failure (one));
3092 break;
3093 case GIMPLE_EH_ELSE:
3095 gimple_eh_else eh_else_stmt = as_a <gimple_eh_else> (one);
3096 refactor_eh_r (gimple_eh_else_n_body (eh_else_stmt));
3097 refactor_eh_r (gimple_eh_else_e_body (eh_else_stmt));
3099 break;
3100 default:
3101 break;
3103 if (two)
3104 gsi_next (&gsi);
3105 else
3106 break;
3110 namespace {
3112 const pass_data pass_data_refactor_eh =
3114 GIMPLE_PASS, /* type */
3115 "ehopt", /* name */
3116 OPTGROUP_NONE, /* optinfo_flags */
3117 TV_TREE_EH, /* tv_id */
3118 PROP_gimple_lcf, /* properties_required */
3119 0, /* properties_provided */
3120 0, /* properties_destroyed */
3121 0, /* todo_flags_start */
3122 0, /* todo_flags_finish */
3125 class pass_refactor_eh : public gimple_opt_pass
3127 public:
3128 pass_refactor_eh (gcc::context *ctxt)
3129 : gimple_opt_pass (pass_data_refactor_eh, ctxt)
3132 /* opt_pass methods: */
3133 virtual bool gate (function *) { return flag_exceptions != 0; }
3134 virtual unsigned int execute (function *)
3136 refactor_eh_r (gimple_body (current_function_decl));
3137 return 0;
3140 }; // class pass_refactor_eh
3142 } // anon namespace
3144 gimple_opt_pass *
3145 make_pass_refactor_eh (gcc::context *ctxt)
3147 return new pass_refactor_eh (ctxt);
3150 /* At the end of gimple optimization, we can lower RESX. */
3152 static bool
3153 lower_resx (basic_block bb, gimple_resx stmt,
3154 hash_map<eh_region, tree> *mnt_map)
3156 int lp_nr;
3157 eh_region src_r, dst_r;
3158 gimple_stmt_iterator gsi;
3159 gimple x;
3160 tree fn, src_nr;
3161 bool ret = false;
3163 lp_nr = lookup_stmt_eh_lp (stmt);
3164 if (lp_nr != 0)
3165 dst_r = get_eh_region_from_lp_number (lp_nr);
3166 else
3167 dst_r = NULL;
3169 src_r = get_eh_region_from_number (gimple_resx_region (stmt));
3170 gsi = gsi_last_bb (bb);
3172 if (src_r == NULL)
3174 /* We can wind up with no source region when pass_cleanup_eh shows
3175 that there are no entries into an eh region and deletes it, but
3176 then the block that contains the resx isn't removed. This can
3177 happen without optimization when the switch statement created by
3178 lower_try_finally_switch isn't simplified to remove the eh case.
3180 Resolve this by expanding the resx node to an abort. */
3182 fn = builtin_decl_implicit (BUILT_IN_TRAP);
3183 x = gimple_build_call (fn, 0);
3184 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3186 while (EDGE_COUNT (bb->succs) > 0)
3187 remove_edge (EDGE_SUCC (bb, 0));
3189 else if (dst_r)
3191 /* When we have a destination region, we resolve this by copying
3192 the excptr and filter values into place, and changing the edge
3193 to immediately after the landing pad. */
3194 edge e;
3196 if (lp_nr < 0)
3198 basic_block new_bb;
3199 tree lab;
3201 /* We are resuming into a MUST_NOT_CALL region. Expand a call to
3202 the failure decl into a new block, if needed. */
3203 gcc_assert (dst_r->type == ERT_MUST_NOT_THROW);
3205 tree *slot = mnt_map->get (dst_r);
3206 if (slot == NULL)
3208 gimple_stmt_iterator gsi2;
3210 new_bb = create_empty_bb (bb);
3211 add_bb_to_loop (new_bb, bb->loop_father);
3212 lab = gimple_block_label (new_bb);
3213 gsi2 = gsi_start_bb (new_bb);
3215 fn = dst_r->u.must_not_throw.failure_decl;
3216 x = gimple_build_call (fn, 0);
3217 gimple_set_location (x, dst_r->u.must_not_throw.failure_loc);
3218 gsi_insert_after (&gsi2, x, GSI_CONTINUE_LINKING);
3220 mnt_map->put (dst_r, lab);
3222 else
3224 lab = *slot;
3225 new_bb = label_to_block (lab);
3228 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3229 e = make_edge (bb, new_bb, EDGE_FALLTHRU);
3230 e->count = bb->count;
3231 e->probability = REG_BR_PROB_BASE;
3233 else
3235 edge_iterator ei;
3236 tree dst_nr = build_int_cst (integer_type_node, dst_r->index);
3238 fn = builtin_decl_implicit (BUILT_IN_EH_COPY_VALUES);
3239 src_nr = build_int_cst (integer_type_node, src_r->index);
3240 x = gimple_build_call (fn, 2, dst_nr, src_nr);
3241 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3243 /* Update the flags for the outgoing edge. */
3244 e = single_succ_edge (bb);
3245 gcc_assert (e->flags & EDGE_EH);
3246 e->flags = (e->flags & ~EDGE_EH) | EDGE_FALLTHRU;
3248 /* If there are no more EH users of the landing pad, delete it. */
3249 FOR_EACH_EDGE (e, ei, e->dest->preds)
3250 if (e->flags & EDGE_EH)
3251 break;
3252 if (e == NULL)
3254 eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
3255 remove_eh_landing_pad (lp);
3259 ret = true;
3261 else
3263 tree var;
3265 /* When we don't have a destination region, this exception escapes
3266 up the call chain. We resolve this by generating a call to the
3267 _Unwind_Resume library function. */
3269 /* The ARM EABI redefines _Unwind_Resume as __cxa_end_cleanup
3270 with no arguments for C++ and Java. Check for that. */
3271 if (src_r->use_cxa_end_cleanup)
3273 fn = builtin_decl_implicit (BUILT_IN_CXA_END_CLEANUP);
3274 x = gimple_build_call (fn, 0);
3275 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3277 else
3279 fn = builtin_decl_implicit (BUILT_IN_EH_POINTER);
3280 src_nr = build_int_cst (integer_type_node, src_r->index);
3281 x = gimple_build_call (fn, 1, src_nr);
3282 var = create_tmp_var (ptr_type_node, NULL);
3283 var = make_ssa_name (var, x);
3284 gimple_call_set_lhs (x, var);
3285 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3287 fn = builtin_decl_implicit (BUILT_IN_UNWIND_RESUME);
3288 x = gimple_build_call (fn, 1, var);
3289 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3292 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3295 gsi_remove (&gsi, true);
3297 return ret;
3300 namespace {
3302 const pass_data pass_data_lower_resx =
3304 GIMPLE_PASS, /* type */
3305 "resx", /* name */
3306 OPTGROUP_NONE, /* optinfo_flags */
3307 TV_TREE_EH, /* tv_id */
3308 PROP_gimple_lcf, /* properties_required */
3309 0, /* properties_provided */
3310 0, /* properties_destroyed */
3311 0, /* todo_flags_start */
3312 0, /* todo_flags_finish */
3315 class pass_lower_resx : public gimple_opt_pass
3317 public:
3318 pass_lower_resx (gcc::context *ctxt)
3319 : gimple_opt_pass (pass_data_lower_resx, ctxt)
3322 /* opt_pass methods: */
3323 virtual bool gate (function *) { return flag_exceptions != 0; }
3324 virtual unsigned int execute (function *);
3326 }; // class pass_lower_resx
3328 unsigned
3329 pass_lower_resx::execute (function *fun)
3331 basic_block bb;
3332 bool dominance_invalidated = false;
3333 bool any_rewritten = false;
3335 hash_map<eh_region, tree> mnt_map;
3337 FOR_EACH_BB_FN (bb, fun)
3339 gimple last = last_stmt (bb);
3340 if (last && is_gimple_resx (last))
3342 dominance_invalidated |=
3343 lower_resx (bb, as_a <gimple_resx> (last), &mnt_map);
3344 any_rewritten = true;
3348 if (dominance_invalidated)
3350 free_dominance_info (CDI_DOMINATORS);
3351 free_dominance_info (CDI_POST_DOMINATORS);
3354 return any_rewritten ? TODO_update_ssa_only_virtuals : 0;
3357 } // anon namespace
3359 gimple_opt_pass *
3360 make_pass_lower_resx (gcc::context *ctxt)
3362 return new pass_lower_resx (ctxt);
3365 /* Try to optimize var = {v} {CLOBBER} stmts followed just by
3366 external throw. */
3368 static void
3369 optimize_clobbers (basic_block bb)
3371 gimple_stmt_iterator gsi = gsi_last_bb (bb);
3372 bool any_clobbers = false;
3373 bool seen_stack_restore = false;
3374 edge_iterator ei;
3375 edge e;
3377 /* Only optimize anything if the bb contains at least one clobber,
3378 ends with resx (checked by caller), optionally contains some
3379 debug stmts or labels, or at most one __builtin_stack_restore
3380 call, and has an incoming EH edge. */
3381 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3383 gimple stmt = gsi_stmt (gsi);
3384 if (is_gimple_debug (stmt))
3385 continue;
3386 if (gimple_clobber_p (stmt))
3388 any_clobbers = true;
3389 continue;
3391 if (!seen_stack_restore
3392 && gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
3394 seen_stack_restore = true;
3395 continue;
3397 if (gimple_code (stmt) == GIMPLE_LABEL)
3398 break;
3399 return;
3401 if (!any_clobbers)
3402 return;
3403 FOR_EACH_EDGE (e, ei, bb->preds)
3404 if (e->flags & EDGE_EH)
3405 break;
3406 if (e == NULL)
3407 return;
3408 gsi = gsi_last_bb (bb);
3409 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3411 gimple stmt = gsi_stmt (gsi);
3412 if (!gimple_clobber_p (stmt))
3413 continue;
3414 unlink_stmt_vdef (stmt);
3415 gsi_remove (&gsi, true);
3416 release_defs (stmt);
3420 /* Try to sink var = {v} {CLOBBER} stmts followed just by
3421 internal throw to successor BB. */
3423 static int
3424 sink_clobbers (basic_block bb)
3426 edge e;
3427 edge_iterator ei;
3428 gimple_stmt_iterator gsi, dgsi;
3429 basic_block succbb;
3430 bool any_clobbers = false;
3431 unsigned todo = 0;
3433 /* Only optimize if BB has a single EH successor and
3434 all predecessor edges are EH too. */
3435 if (!single_succ_p (bb)
3436 || (single_succ_edge (bb)->flags & EDGE_EH) == 0)
3437 return 0;
3439 FOR_EACH_EDGE (e, ei, bb->preds)
3441 if ((e->flags & EDGE_EH) == 0)
3442 return 0;
3445 /* And BB contains only CLOBBER stmts before the final
3446 RESX. */
3447 gsi = gsi_last_bb (bb);
3448 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3450 gimple stmt = gsi_stmt (gsi);
3451 if (is_gimple_debug (stmt))
3452 continue;
3453 if (gimple_code (stmt) == GIMPLE_LABEL)
3454 break;
3455 if (!gimple_clobber_p (stmt))
3456 return 0;
3457 any_clobbers = true;
3459 if (!any_clobbers)
3460 return 0;
3462 edge succe = single_succ_edge (bb);
3463 succbb = succe->dest;
3465 /* See if there is a virtual PHI node to take an updated virtual
3466 operand from. */
3467 gimple vphi = NULL;
3468 tree vuse = NULL_TREE;
3469 for (gsi = gsi_start_phis (succbb); !gsi_end_p (gsi); gsi_next (&gsi))
3471 tree res = gimple_phi_result (gsi_stmt (gsi));
3472 if (virtual_operand_p (res))
3474 vphi = gsi_stmt (gsi);
3475 vuse = res;
3476 break;
3480 dgsi = gsi_after_labels (succbb);
3481 gsi = gsi_last_bb (bb);
3482 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3484 gimple stmt = gsi_stmt (gsi);
3485 tree lhs;
3486 if (is_gimple_debug (stmt))
3487 continue;
3488 if (gimple_code (stmt) == GIMPLE_LABEL)
3489 break;
3490 lhs = gimple_assign_lhs (stmt);
3491 /* Unfortunately we don't have dominance info updated at this
3492 point, so checking if
3493 dominated_by_p (CDI_DOMINATORS, succbb,
3494 gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0)))
3495 would be too costly. Thus, avoid sinking any clobbers that
3496 refer to non-(D) SSA_NAMEs. */
3497 if (TREE_CODE (lhs) == MEM_REF
3498 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME
3499 && !SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs, 0)))
3501 unlink_stmt_vdef (stmt);
3502 gsi_remove (&gsi, true);
3503 release_defs (stmt);
3504 continue;
3507 /* As we do not change stmt order when sinking across a
3508 forwarder edge we can keep virtual operands in place. */
3509 gsi_remove (&gsi, false);
3510 gsi_insert_before (&dgsi, stmt, GSI_NEW_STMT);
3512 /* But adjust virtual operands if we sunk across a PHI node. */
3513 if (vuse)
3515 gimple use_stmt;
3516 imm_use_iterator iter;
3517 use_operand_p use_p;
3518 FOR_EACH_IMM_USE_STMT (use_stmt, iter, vuse)
3519 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3520 SET_USE (use_p, gimple_vdef (stmt));
3521 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse))
3523 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)) = 1;
3524 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse) = 0;
3526 /* Adjust the incoming virtual operand. */
3527 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (vphi, succe), gimple_vuse (stmt));
3528 SET_USE (gimple_vuse_op (stmt), vuse);
3530 /* If there isn't a single predecessor but no virtual PHI node
3531 arrange for virtual operands to be renamed. */
3532 else if (gimple_vuse_op (stmt) != NULL_USE_OPERAND_P
3533 && !single_pred_p (succbb))
3535 /* In this case there will be no use of the VDEF of this stmt.
3536 ??? Unless this is a secondary opportunity and we have not
3537 removed unreachable blocks yet, so we cannot assert this.
3538 Which also means we will end up renaming too many times. */
3539 SET_USE (gimple_vuse_op (stmt), gimple_vop (cfun));
3540 mark_virtual_operands_for_renaming (cfun);
3541 todo |= TODO_update_ssa_only_virtuals;
3545 return todo;
3548 /* At the end of inlining, we can lower EH_DISPATCH. Return true when
3549 we have found some duplicate labels and removed some edges. */
3551 static bool
3552 lower_eh_dispatch (basic_block src, gimple_eh_dispatch stmt)
3554 gimple_stmt_iterator gsi;
3555 int region_nr;
3556 eh_region r;
3557 tree filter, fn;
3558 gimple x;
3559 bool redirected = false;
3561 region_nr = gimple_eh_dispatch_region (stmt);
3562 r = get_eh_region_from_number (region_nr);
3564 gsi = gsi_last_bb (src);
3566 switch (r->type)
3568 case ERT_TRY:
3570 auto_vec<tree> labels;
3571 tree default_label = NULL;
3572 eh_catch c;
3573 edge_iterator ei;
3574 edge e;
3575 hash_set<tree> seen_values;
3577 /* Collect the labels for a switch. Zero the post_landing_pad
3578 field becase we'll no longer have anything keeping these labels
3579 in existence and the optimizer will be free to merge these
3580 blocks at will. */
3581 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
3583 tree tp_node, flt_node, lab = c->label;
3584 bool have_label = false;
3586 c->label = NULL;
3587 tp_node = c->type_list;
3588 flt_node = c->filter_list;
3590 if (tp_node == NULL)
3592 default_label = lab;
3593 break;
3597 /* Filter out duplicate labels that arise when this handler
3598 is shadowed by an earlier one. When no labels are
3599 attached to the handler anymore, we remove
3600 the corresponding edge and then we delete unreachable
3601 blocks at the end of this pass. */
3602 if (! seen_values.contains (TREE_VALUE (flt_node)))
3604 tree t = build_case_label (TREE_VALUE (flt_node),
3605 NULL, lab);
3606 labels.safe_push (t);
3607 seen_values.add (TREE_VALUE (flt_node));
3608 have_label = true;
3611 tp_node = TREE_CHAIN (tp_node);
3612 flt_node = TREE_CHAIN (flt_node);
3614 while (tp_node);
3615 if (! have_label)
3617 remove_edge (find_edge (src, label_to_block (lab)));
3618 redirected = true;
3622 /* Clean up the edge flags. */
3623 FOR_EACH_EDGE (e, ei, src->succs)
3625 if (e->flags & EDGE_FALLTHRU)
3627 /* If there was no catch-all, use the fallthru edge. */
3628 if (default_label == NULL)
3629 default_label = gimple_block_label (e->dest);
3630 e->flags &= ~EDGE_FALLTHRU;
3633 gcc_assert (default_label != NULL);
3635 /* Don't generate a switch if there's only a default case.
3636 This is common in the form of try { A; } catch (...) { B; }. */
3637 if (!labels.exists ())
3639 e = single_succ_edge (src);
3640 e->flags |= EDGE_FALLTHRU;
3642 else
3644 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
3645 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3646 region_nr));
3647 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)), NULL);
3648 filter = make_ssa_name (filter, x);
3649 gimple_call_set_lhs (x, filter);
3650 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3652 /* Turn the default label into a default case. */
3653 default_label = build_case_label (NULL, NULL, default_label);
3654 sort_case_labels (labels);
3656 x = gimple_build_switch (filter, default_label, labels);
3657 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3660 break;
3662 case ERT_ALLOWED_EXCEPTIONS:
3664 edge b_e = BRANCH_EDGE (src);
3665 edge f_e = FALLTHRU_EDGE (src);
3667 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
3668 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3669 region_nr));
3670 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)), NULL);
3671 filter = make_ssa_name (filter, x);
3672 gimple_call_set_lhs (x, filter);
3673 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3675 r->u.allowed.label = NULL;
3676 x = gimple_build_cond (EQ_EXPR, filter,
3677 build_int_cst (TREE_TYPE (filter),
3678 r->u.allowed.filter),
3679 NULL_TREE, NULL_TREE);
3680 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3682 b_e->flags = b_e->flags | EDGE_TRUE_VALUE;
3683 f_e->flags = (f_e->flags & ~EDGE_FALLTHRU) | EDGE_FALSE_VALUE;
3685 break;
3687 default:
3688 gcc_unreachable ();
3691 /* Replace the EH_DISPATCH with the SWITCH or COND generated above. */
3692 gsi_remove (&gsi, true);
3693 return redirected;
3696 namespace {
3698 const pass_data pass_data_lower_eh_dispatch =
3700 GIMPLE_PASS, /* type */
3701 "ehdisp", /* name */
3702 OPTGROUP_NONE, /* optinfo_flags */
3703 TV_TREE_EH, /* tv_id */
3704 PROP_gimple_lcf, /* properties_required */
3705 0, /* properties_provided */
3706 0, /* properties_destroyed */
3707 0, /* todo_flags_start */
3708 0, /* todo_flags_finish */
3711 class pass_lower_eh_dispatch : public gimple_opt_pass
3713 public:
3714 pass_lower_eh_dispatch (gcc::context *ctxt)
3715 : gimple_opt_pass (pass_data_lower_eh_dispatch, ctxt)
3718 /* opt_pass methods: */
3719 virtual bool gate (function *fun) { return fun->eh->region_tree != NULL; }
3720 virtual unsigned int execute (function *);
3722 }; // class pass_lower_eh_dispatch
3724 unsigned
3725 pass_lower_eh_dispatch::execute (function *fun)
3727 basic_block bb;
3728 int flags = 0;
3729 bool redirected = false;
3731 assign_filter_values ();
3733 FOR_EACH_BB_FN (bb, fun)
3735 gimple last = last_stmt (bb);
3736 if (last == NULL)
3737 continue;
3738 if (gimple_code (last) == GIMPLE_EH_DISPATCH)
3740 redirected |= lower_eh_dispatch (bb,
3741 as_a <gimple_eh_dispatch> (last));
3742 flags |= TODO_update_ssa_only_virtuals;
3744 else if (gimple_code (last) == GIMPLE_RESX)
3746 if (stmt_can_throw_external (last))
3747 optimize_clobbers (bb);
3748 else
3749 flags |= sink_clobbers (bb);
3753 if (redirected)
3754 delete_unreachable_blocks ();
3755 return flags;
3758 } // anon namespace
3760 gimple_opt_pass *
3761 make_pass_lower_eh_dispatch (gcc::context *ctxt)
3763 return new pass_lower_eh_dispatch (ctxt);
3766 /* Walk statements, see what regions and, optionally, landing pads
3767 are really referenced.
3769 Returns in R_REACHABLEP an sbitmap with bits set for reachable regions,
3770 and in LP_REACHABLE an sbitmap with bits set for reachable landing pads.
3772 Passing NULL for LP_REACHABLE is valid, in this case only reachable
3773 regions are marked.
3775 The caller is responsible for freeing the returned sbitmaps. */
3777 static void
3778 mark_reachable_handlers (sbitmap *r_reachablep, sbitmap *lp_reachablep)
3780 sbitmap r_reachable, lp_reachable;
3781 basic_block bb;
3782 bool mark_landing_pads = (lp_reachablep != NULL);
3783 gcc_checking_assert (r_reachablep != NULL);
3785 r_reachable = sbitmap_alloc (cfun->eh->region_array->length ());
3786 bitmap_clear (r_reachable);
3787 *r_reachablep = r_reachable;
3789 if (mark_landing_pads)
3791 lp_reachable = sbitmap_alloc (cfun->eh->lp_array->length ());
3792 bitmap_clear (lp_reachable);
3793 *lp_reachablep = lp_reachable;
3795 else
3796 lp_reachable = NULL;
3798 FOR_EACH_BB_FN (bb, cfun)
3800 gimple_stmt_iterator gsi;
3802 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3804 gimple stmt = gsi_stmt (gsi);
3806 if (mark_landing_pads)
3808 int lp_nr = lookup_stmt_eh_lp (stmt);
3810 /* Negative LP numbers are MUST_NOT_THROW regions which
3811 are not considered BB enders. */
3812 if (lp_nr < 0)
3813 bitmap_set_bit (r_reachable, -lp_nr);
3815 /* Positive LP numbers are real landing pads, and BB enders. */
3816 else if (lp_nr > 0)
3818 gcc_assert (gsi_one_before_end_p (gsi));
3819 eh_region region = get_eh_region_from_lp_number (lp_nr);
3820 bitmap_set_bit (r_reachable, region->index);
3821 bitmap_set_bit (lp_reachable, lp_nr);
3825 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3826 switch (gimple_code (stmt))
3828 case GIMPLE_RESX:
3829 bitmap_set_bit (r_reachable,
3830 gimple_resx_region (as_a <gimple_resx> (stmt)));
3831 break;
3832 case GIMPLE_EH_DISPATCH:
3833 bitmap_set_bit (r_reachable,
3834 gimple_eh_dispatch_region (
3835 as_a <gimple_eh_dispatch> (stmt)));
3836 break;
3837 default:
3838 break;
3844 /* Remove unreachable handlers and unreachable landing pads. */
3846 static void
3847 remove_unreachable_handlers (void)
3849 sbitmap r_reachable, lp_reachable;
3850 eh_region region;
3851 eh_landing_pad lp;
3852 unsigned i;
3854 mark_reachable_handlers (&r_reachable, &lp_reachable);
3856 if (dump_file)
3858 fprintf (dump_file, "Before removal of unreachable regions:\n");
3859 dump_eh_tree (dump_file, cfun);
3860 fprintf (dump_file, "Reachable regions: ");
3861 dump_bitmap_file (dump_file, r_reachable);
3862 fprintf (dump_file, "Reachable landing pads: ");
3863 dump_bitmap_file (dump_file, lp_reachable);
3866 if (dump_file)
3868 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3869 if (region && !bitmap_bit_p (r_reachable, region->index))
3870 fprintf (dump_file,
3871 "Removing unreachable region %d\n",
3872 region->index);
3875 remove_unreachable_eh_regions (r_reachable);
3877 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3878 if (lp && !bitmap_bit_p (lp_reachable, lp->index))
3880 if (dump_file)
3881 fprintf (dump_file,
3882 "Removing unreachable landing pad %d\n",
3883 lp->index);
3884 remove_eh_landing_pad (lp);
3887 if (dump_file)
3889 fprintf (dump_file, "\n\nAfter removal of unreachable regions:\n");
3890 dump_eh_tree (dump_file, cfun);
3891 fprintf (dump_file, "\n\n");
3894 sbitmap_free (r_reachable);
3895 sbitmap_free (lp_reachable);
3897 #ifdef ENABLE_CHECKING
3898 verify_eh_tree (cfun);
3899 #endif
3902 /* Remove unreachable handlers if any landing pads have been removed after
3903 last ehcleanup pass (due to gimple_purge_dead_eh_edges). */
3905 void
3906 maybe_remove_unreachable_handlers (void)
3908 eh_landing_pad lp;
3909 unsigned i;
3911 if (cfun->eh == NULL)
3912 return;
3914 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3915 if (lp && lp->post_landing_pad)
3917 if (label_to_block (lp->post_landing_pad) == NULL)
3919 remove_unreachable_handlers ();
3920 return;
3925 /* Remove regions that do not have landing pads. This assumes
3926 that remove_unreachable_handlers has already been run, and
3927 that we've just manipulated the landing pads since then.
3929 Preserve regions with landing pads and regions that prevent
3930 exceptions from propagating further, even if these regions
3931 are not reachable. */
3933 static void
3934 remove_unreachable_handlers_no_lp (void)
3936 eh_region region;
3937 sbitmap r_reachable;
3938 unsigned i;
3940 mark_reachable_handlers (&r_reachable, /*lp_reachablep=*/NULL);
3942 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3944 if (! region)
3945 continue;
3947 if (region->landing_pads != NULL
3948 || region->type == ERT_MUST_NOT_THROW)
3949 bitmap_set_bit (r_reachable, region->index);
3951 if (dump_file
3952 && !bitmap_bit_p (r_reachable, region->index))
3953 fprintf (dump_file,
3954 "Removing unreachable region %d\n",
3955 region->index);
3958 remove_unreachable_eh_regions (r_reachable);
3960 sbitmap_free (r_reachable);
3963 /* Undo critical edge splitting on an EH landing pad. Earlier, we
3964 optimisticaly split all sorts of edges, including EH edges. The
3965 optimization passes in between may not have needed them; if not,
3966 we should undo the split.
3968 Recognize this case by having one EH edge incoming to the BB and
3969 one normal edge outgoing; BB should be empty apart from the
3970 post_landing_pad label.
3972 Note that this is slightly different from the empty handler case
3973 handled by cleanup_empty_eh, in that the actual handler may yet
3974 have actual code but the landing pad has been separated from the
3975 handler. As such, cleanup_empty_eh relies on this transformation
3976 having been done first. */
3978 static bool
3979 unsplit_eh (eh_landing_pad lp)
3981 basic_block bb = label_to_block (lp->post_landing_pad);
3982 gimple_stmt_iterator gsi;
3983 edge e_in, e_out;
3985 /* Quickly check the edge counts on BB for singularity. */
3986 if (!single_pred_p (bb) || !single_succ_p (bb))
3987 return false;
3988 e_in = single_pred_edge (bb);
3989 e_out = single_succ_edge (bb);
3991 /* Input edge must be EH and output edge must be normal. */
3992 if ((e_in->flags & EDGE_EH) == 0 || (e_out->flags & EDGE_EH) != 0)
3993 return false;
3995 /* The block must be empty except for the labels and debug insns. */
3996 gsi = gsi_after_labels (bb);
3997 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
3998 gsi_next_nondebug (&gsi);
3999 if (!gsi_end_p (gsi))
4000 return false;
4002 /* The destination block must not already have a landing pad
4003 for a different region. */
4004 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4006 gimple_label label_stmt = dyn_cast <gimple_label> (gsi_stmt (gsi));
4007 tree lab;
4008 int lp_nr;
4010 if (!label_stmt)
4011 break;
4012 lab = gimple_label_label (label_stmt);
4013 lp_nr = EH_LANDING_PAD_NR (lab);
4014 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4015 return false;
4018 /* The new destination block must not already be a destination of
4019 the source block, lest we merge fallthru and eh edges and get
4020 all sorts of confused. */
4021 if (find_edge (e_in->src, e_out->dest))
4022 return false;
4024 /* ??? We can get degenerate phis due to cfg cleanups. I would have
4025 thought this should have been cleaned up by a phicprop pass, but
4026 that doesn't appear to handle virtuals. Propagate by hand. */
4027 if (!gimple_seq_empty_p (phi_nodes (bb)))
4029 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); )
4031 gimple use_stmt, phi = gsi_stmt (gsi);
4032 tree lhs = gimple_phi_result (phi);
4033 tree rhs = gimple_phi_arg_def (phi, 0);
4034 use_operand_p use_p;
4035 imm_use_iterator iter;
4037 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
4039 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
4040 SET_USE (use_p, rhs);
4043 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
4044 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
4046 remove_phi_node (&gsi, true);
4050 if (dump_file && (dump_flags & TDF_DETAILS))
4051 fprintf (dump_file, "Unsplit EH landing pad %d to block %i.\n",
4052 lp->index, e_out->dest->index);
4054 /* Redirect the edge. Since redirect_eh_edge_1 expects to be moving
4055 a successor edge, humor it. But do the real CFG change with the
4056 predecessor of E_OUT in order to preserve the ordering of arguments
4057 to the PHI nodes in E_OUT->DEST. */
4058 redirect_eh_edge_1 (e_in, e_out->dest, false);
4059 redirect_edge_pred (e_out, e_in->src);
4060 e_out->flags = e_in->flags;
4061 e_out->probability = e_in->probability;
4062 e_out->count = e_in->count;
4063 remove_edge (e_in);
4065 return true;
4068 /* Examine each landing pad block and see if it matches unsplit_eh. */
4070 static bool
4071 unsplit_all_eh (void)
4073 bool changed = false;
4074 eh_landing_pad lp;
4075 int i;
4077 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4078 if (lp)
4079 changed |= unsplit_eh (lp);
4081 return changed;
4084 /* A subroutine of cleanup_empty_eh. Redirect all EH edges incoming
4085 to OLD_BB to NEW_BB; return true on success, false on failure.
4087 OLD_BB_OUT is the edge into NEW_BB from OLD_BB, so if we miss any
4088 PHI variables from OLD_BB we can pick them up from OLD_BB_OUT.
4089 Virtual PHIs may be deleted and marked for renaming. */
4091 static bool
4092 cleanup_empty_eh_merge_phis (basic_block new_bb, basic_block old_bb,
4093 edge old_bb_out, bool change_region)
4095 gimple_phi_iterator ngsi, ogsi;
4096 edge_iterator ei;
4097 edge e;
4098 bitmap ophi_handled;
4100 /* The destination block must not be a regular successor for any
4101 of the preds of the landing pad. Thus, avoid turning
4102 <..>
4103 | \ EH
4104 | <..>
4106 <..>
4107 into
4108 <..>
4109 | | EH
4110 <..>
4111 which CFG verification would choke on. See PR45172 and PR51089. */
4112 FOR_EACH_EDGE (e, ei, old_bb->preds)
4113 if (find_edge (e->src, new_bb))
4114 return false;
4116 FOR_EACH_EDGE (e, ei, old_bb->preds)
4117 redirect_edge_var_map_clear (e);
4119 ophi_handled = BITMAP_ALLOC (NULL);
4121 /* First, iterate through the PHIs on NEW_BB and set up the edge_var_map
4122 for the edges we're going to move. */
4123 for (ngsi = gsi_start_phis (new_bb); !gsi_end_p (ngsi); gsi_next (&ngsi))
4125 gimple_phi ophi, nphi = ngsi.phi ();
4126 tree nresult, nop;
4128 nresult = gimple_phi_result (nphi);
4129 nop = gimple_phi_arg_def (nphi, old_bb_out->dest_idx);
4131 /* Find the corresponding PHI in OLD_BB so we can forward-propagate
4132 the source ssa_name. */
4133 ophi = NULL;
4134 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4136 ophi = ogsi.phi ();
4137 if (gimple_phi_result (ophi) == nop)
4138 break;
4139 ophi = NULL;
4142 /* If we did find the corresponding PHI, copy those inputs. */
4143 if (ophi)
4145 /* If NOP is used somewhere else beyond phis in new_bb, give up. */
4146 if (!has_single_use (nop))
4148 imm_use_iterator imm_iter;
4149 use_operand_p use_p;
4151 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, nop)
4153 if (!gimple_debug_bind_p (USE_STMT (use_p))
4154 && (gimple_code (USE_STMT (use_p)) != GIMPLE_PHI
4155 || gimple_bb (USE_STMT (use_p)) != new_bb))
4156 goto fail;
4159 bitmap_set_bit (ophi_handled, SSA_NAME_VERSION (nop));
4160 FOR_EACH_EDGE (e, ei, old_bb->preds)
4162 location_t oloc;
4163 tree oop;
4165 if ((e->flags & EDGE_EH) == 0)
4166 continue;
4167 oop = gimple_phi_arg_def (ophi, e->dest_idx);
4168 oloc = gimple_phi_arg_location (ophi, e->dest_idx);
4169 redirect_edge_var_map_add (e, nresult, oop, oloc);
4172 /* If we didn't find the PHI, if it's a real variable or a VOP, we know
4173 from the fact that OLD_BB is tree_empty_eh_handler_p that the
4174 variable is unchanged from input to the block and we can simply
4175 re-use the input to NEW_BB from the OLD_BB_OUT edge. */
4176 else
4178 location_t nloc
4179 = gimple_phi_arg_location (nphi, old_bb_out->dest_idx);
4180 FOR_EACH_EDGE (e, ei, old_bb->preds)
4181 redirect_edge_var_map_add (e, nresult, nop, nloc);
4185 /* Second, verify that all PHIs from OLD_BB have been handled. If not,
4186 we don't know what values from the other edges into NEW_BB to use. */
4187 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4189 gimple ophi = gsi_stmt (ogsi);
4190 tree oresult = gimple_phi_result (ophi);
4191 if (!bitmap_bit_p (ophi_handled, SSA_NAME_VERSION (oresult)))
4192 goto fail;
4195 /* Finally, move the edges and update the PHIs. */
4196 for (ei = ei_start (old_bb->preds); (e = ei_safe_edge (ei)); )
4197 if (e->flags & EDGE_EH)
4199 /* ??? CFG manipluation routines do not try to update loop
4200 form on edge redirection. Do so manually here for now. */
4201 /* If we redirect a loop entry or latch edge that will either create
4202 a multiple entry loop or rotate the loop. If the loops merge
4203 we may have created a loop with multiple latches.
4204 All of this isn't easily fixed thus cancel the affected loop
4205 and mark the other loop as possibly having multiple latches. */
4206 if (e->dest == e->dest->loop_father->header)
4208 mark_loop_for_removal (e->dest->loop_father);
4209 new_bb->loop_father->latch = NULL;
4210 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
4212 redirect_eh_edge_1 (e, new_bb, change_region);
4213 redirect_edge_succ (e, new_bb);
4214 flush_pending_stmts (e);
4216 else
4217 ei_next (&ei);
4219 BITMAP_FREE (ophi_handled);
4220 return true;
4222 fail:
4223 FOR_EACH_EDGE (e, ei, old_bb->preds)
4224 redirect_edge_var_map_clear (e);
4225 BITMAP_FREE (ophi_handled);
4226 return false;
4229 /* A subroutine of cleanup_empty_eh. Move a landing pad LP from its
4230 old region to NEW_REGION at BB. */
4232 static void
4233 cleanup_empty_eh_move_lp (basic_block bb, edge e_out,
4234 eh_landing_pad lp, eh_region new_region)
4236 gimple_stmt_iterator gsi;
4237 eh_landing_pad *pp;
4239 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
4240 continue;
4241 *pp = lp->next_lp;
4243 lp->region = new_region;
4244 lp->next_lp = new_region->landing_pads;
4245 new_region->landing_pads = lp;
4247 /* Delete the RESX that was matched within the empty handler block. */
4248 gsi = gsi_last_bb (bb);
4249 unlink_stmt_vdef (gsi_stmt (gsi));
4250 gsi_remove (&gsi, true);
4252 /* Clean up E_OUT for the fallthru. */
4253 e_out->flags = (e_out->flags & ~EDGE_EH) | EDGE_FALLTHRU;
4254 e_out->probability = REG_BR_PROB_BASE;
4257 /* A subroutine of cleanup_empty_eh. Handle more complex cases of
4258 unsplitting than unsplit_eh was prepared to handle, e.g. when
4259 multiple incoming edges and phis are involved. */
4261 static bool
4262 cleanup_empty_eh_unsplit (basic_block bb, edge e_out, eh_landing_pad lp)
4264 gimple_stmt_iterator gsi;
4265 tree lab;
4267 /* We really ought not have totally lost everything following
4268 a landing pad label. Given that BB is empty, there had better
4269 be a successor. */
4270 gcc_assert (e_out != NULL);
4272 /* The destination block must not already have a landing pad
4273 for a different region. */
4274 lab = NULL;
4275 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4277 gimple_label stmt = dyn_cast <gimple_label> (gsi_stmt (gsi));
4278 int lp_nr;
4280 if (!stmt)
4281 break;
4282 lab = gimple_label_label (stmt);
4283 lp_nr = EH_LANDING_PAD_NR (lab);
4284 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4285 return false;
4288 /* Attempt to move the PHIs into the successor block. */
4289 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, false))
4291 if (dump_file && (dump_flags & TDF_DETAILS))
4292 fprintf (dump_file,
4293 "Unsplit EH landing pad %d to block %i "
4294 "(via cleanup_empty_eh).\n",
4295 lp->index, e_out->dest->index);
4296 return true;
4299 return false;
4302 /* Return true if edge E_FIRST is part of an empty infinite loop
4303 or leads to such a loop through a series of single successor
4304 empty bbs. */
4306 static bool
4307 infinite_empty_loop_p (edge e_first)
4309 bool inf_loop = false;
4310 edge e;
4312 if (e_first->dest == e_first->src)
4313 return true;
4315 e_first->src->aux = (void *) 1;
4316 for (e = e_first; single_succ_p (e->dest); e = single_succ_edge (e->dest))
4318 gimple_stmt_iterator gsi;
4319 if (e->dest->aux)
4321 inf_loop = true;
4322 break;
4324 e->dest->aux = (void *) 1;
4325 gsi = gsi_after_labels (e->dest);
4326 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4327 gsi_next_nondebug (&gsi);
4328 if (!gsi_end_p (gsi))
4329 break;
4331 e_first->src->aux = NULL;
4332 for (e = e_first; e->dest->aux; e = single_succ_edge (e->dest))
4333 e->dest->aux = NULL;
4335 return inf_loop;
4338 /* Examine the block associated with LP to determine if it's an empty
4339 handler for its EH region. If so, attempt to redirect EH edges to
4340 an outer region. Return true the CFG was updated in any way. This
4341 is similar to jump forwarding, just across EH edges. */
4343 static bool
4344 cleanup_empty_eh (eh_landing_pad lp)
4346 basic_block bb = label_to_block (lp->post_landing_pad);
4347 gimple_stmt_iterator gsi;
4348 gimple resx;
4349 eh_region new_region;
4350 edge_iterator ei;
4351 edge e, e_out;
4352 bool has_non_eh_pred;
4353 bool ret = false;
4354 int new_lp_nr;
4356 /* There can be zero or one edges out of BB. This is the quickest test. */
4357 switch (EDGE_COUNT (bb->succs))
4359 case 0:
4360 e_out = NULL;
4361 break;
4362 case 1:
4363 e_out = single_succ_edge (bb);
4364 break;
4365 default:
4366 return false;
4369 resx = last_stmt (bb);
4370 if (resx && is_gimple_resx (resx))
4372 if (stmt_can_throw_external (resx))
4373 optimize_clobbers (bb);
4374 else if (sink_clobbers (bb))
4375 ret = true;
4378 gsi = gsi_after_labels (bb);
4380 /* Make sure to skip debug statements. */
4381 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4382 gsi_next_nondebug (&gsi);
4384 /* If the block is totally empty, look for more unsplitting cases. */
4385 if (gsi_end_p (gsi))
4387 /* For the degenerate case of an infinite loop bail out.
4388 If bb has no successors and is totally empty, which can happen e.g.
4389 because of incorrect noreturn attribute, bail out too. */
4390 if (e_out == NULL
4391 || infinite_empty_loop_p (e_out))
4392 return ret;
4394 return ret | cleanup_empty_eh_unsplit (bb, e_out, lp);
4397 /* The block should consist only of a single RESX statement, modulo a
4398 preceding call to __builtin_stack_restore if there is no outgoing
4399 edge, since the call can be eliminated in this case. */
4400 resx = gsi_stmt (gsi);
4401 if (!e_out && gimple_call_builtin_p (resx, BUILT_IN_STACK_RESTORE))
4403 gsi_next (&gsi);
4404 resx = gsi_stmt (gsi);
4406 if (!is_gimple_resx (resx))
4407 return ret;
4408 gcc_assert (gsi_one_before_end_p (gsi));
4410 /* Determine if there are non-EH edges, or resx edges into the handler. */
4411 has_non_eh_pred = false;
4412 FOR_EACH_EDGE (e, ei, bb->preds)
4413 if (!(e->flags & EDGE_EH))
4414 has_non_eh_pred = true;
4416 /* Find the handler that's outer of the empty handler by looking at
4417 where the RESX instruction was vectored. */
4418 new_lp_nr = lookup_stmt_eh_lp (resx);
4419 new_region = get_eh_region_from_lp_number (new_lp_nr);
4421 /* If there's no destination region within the current function,
4422 redirection is trivial via removing the throwing statements from
4423 the EH region, removing the EH edges, and allowing the block
4424 to go unreachable. */
4425 if (new_region == NULL)
4427 gcc_assert (e_out == NULL);
4428 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4429 if (e->flags & EDGE_EH)
4431 gimple stmt = last_stmt (e->src);
4432 remove_stmt_from_eh_lp (stmt);
4433 remove_edge (e);
4435 else
4436 ei_next (&ei);
4437 goto succeed;
4440 /* If the destination region is a MUST_NOT_THROW, allow the runtime
4441 to handle the abort and allow the blocks to go unreachable. */
4442 if (new_region->type == ERT_MUST_NOT_THROW)
4444 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4445 if (e->flags & EDGE_EH)
4447 gimple stmt = last_stmt (e->src);
4448 remove_stmt_from_eh_lp (stmt);
4449 add_stmt_to_eh_lp (stmt, new_lp_nr);
4450 remove_edge (e);
4452 else
4453 ei_next (&ei);
4454 goto succeed;
4457 /* Try to redirect the EH edges and merge the PHIs into the destination
4458 landing pad block. If the merge succeeds, we'll already have redirected
4459 all the EH edges. The handler itself will go unreachable if there were
4460 no normal edges. */
4461 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, true))
4462 goto succeed;
4464 /* Finally, if all input edges are EH edges, then we can (potentially)
4465 reduce the number of transfers from the runtime by moving the landing
4466 pad from the original region to the new region. This is a win when
4467 we remove the last CLEANUP region along a particular exception
4468 propagation path. Since nothing changes except for the region with
4469 which the landing pad is associated, the PHI nodes do not need to be
4470 adjusted at all. */
4471 if (!has_non_eh_pred)
4473 cleanup_empty_eh_move_lp (bb, e_out, lp, new_region);
4474 if (dump_file && (dump_flags & TDF_DETAILS))
4475 fprintf (dump_file, "Empty EH handler %i moved to EH region %i.\n",
4476 lp->index, new_region->index);
4478 /* ??? The CFG didn't change, but we may have rendered the
4479 old EH region unreachable. Trigger a cleanup there. */
4480 return true;
4483 return ret;
4485 succeed:
4486 if (dump_file && (dump_flags & TDF_DETAILS))
4487 fprintf (dump_file, "Empty EH handler %i removed.\n", lp->index);
4488 remove_eh_landing_pad (lp);
4489 return true;
4492 /* Do a post-order traversal of the EH region tree. Examine each
4493 post_landing_pad block and see if we can eliminate it as empty. */
4495 static bool
4496 cleanup_all_empty_eh (void)
4498 bool changed = false;
4499 eh_landing_pad lp;
4500 int i;
4502 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4503 if (lp)
4504 changed |= cleanup_empty_eh (lp);
4506 return changed;
4509 /* Perform cleanups and lowering of exception handling
4510 1) cleanups regions with handlers doing nothing are optimized out
4511 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
4512 3) Info about regions that are containing instructions, and regions
4513 reachable via local EH edges is collected
4514 4) Eh tree is pruned for regions no longer necessary.
4516 TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
4517 Unify those that have the same failure decl and locus.
4520 static unsigned int
4521 execute_cleanup_eh_1 (void)
4523 /* Do this first: unsplit_all_eh and cleanup_all_empty_eh can die
4524 looking up unreachable landing pads. */
4525 remove_unreachable_handlers ();
4527 /* Watch out for the region tree vanishing due to all unreachable. */
4528 if (cfun->eh->region_tree)
4530 bool changed = false;
4532 if (optimize)
4533 changed |= unsplit_all_eh ();
4534 changed |= cleanup_all_empty_eh ();
4536 if (changed)
4538 free_dominance_info (CDI_DOMINATORS);
4539 free_dominance_info (CDI_POST_DOMINATORS);
4541 /* We delayed all basic block deletion, as we may have performed
4542 cleanups on EH edges while non-EH edges were still present. */
4543 delete_unreachable_blocks ();
4545 /* We manipulated the landing pads. Remove any region that no
4546 longer has a landing pad. */
4547 remove_unreachable_handlers_no_lp ();
4549 return TODO_cleanup_cfg | TODO_update_ssa_only_virtuals;
4553 return 0;
4556 namespace {
4558 const pass_data pass_data_cleanup_eh =
4560 GIMPLE_PASS, /* type */
4561 "ehcleanup", /* name */
4562 OPTGROUP_NONE, /* optinfo_flags */
4563 TV_TREE_EH, /* tv_id */
4564 PROP_gimple_lcf, /* properties_required */
4565 0, /* properties_provided */
4566 0, /* properties_destroyed */
4567 0, /* todo_flags_start */
4568 0, /* todo_flags_finish */
4571 class pass_cleanup_eh : public gimple_opt_pass
4573 public:
4574 pass_cleanup_eh (gcc::context *ctxt)
4575 : gimple_opt_pass (pass_data_cleanup_eh, ctxt)
4578 /* opt_pass methods: */
4579 opt_pass * clone () { return new pass_cleanup_eh (m_ctxt); }
4580 virtual bool gate (function *fun)
4582 return fun->eh != NULL && fun->eh->region_tree != NULL;
4585 virtual unsigned int execute (function *);
4587 }; // class pass_cleanup_eh
4589 unsigned int
4590 pass_cleanup_eh::execute (function *fun)
4592 int ret = execute_cleanup_eh_1 ();
4594 /* If the function no longer needs an EH personality routine
4595 clear it. This exposes cross-language inlining opportunities
4596 and avoids references to a never defined personality routine. */
4597 if (DECL_FUNCTION_PERSONALITY (current_function_decl)
4598 && function_needs_eh_personality (fun) != eh_personality_lang)
4599 DECL_FUNCTION_PERSONALITY (current_function_decl) = NULL_TREE;
4601 return ret;
4604 } // anon namespace
4606 gimple_opt_pass *
4607 make_pass_cleanup_eh (gcc::context *ctxt)
4609 return new pass_cleanup_eh (ctxt);
4612 /* Verify that BB containing STMT as the last statement, has precisely the
4613 edge that make_eh_edges would create. */
4615 DEBUG_FUNCTION bool
4616 verify_eh_edges (gimple stmt)
4618 basic_block bb = gimple_bb (stmt);
4619 eh_landing_pad lp = NULL;
4620 int lp_nr;
4621 edge_iterator ei;
4622 edge e, eh_edge;
4624 lp_nr = lookup_stmt_eh_lp (stmt);
4625 if (lp_nr > 0)
4626 lp = get_eh_landing_pad_from_number (lp_nr);
4628 eh_edge = NULL;
4629 FOR_EACH_EDGE (e, ei, bb->succs)
4631 if (e->flags & EDGE_EH)
4633 if (eh_edge)
4635 error ("BB %i has multiple EH edges", bb->index);
4636 return true;
4638 else
4639 eh_edge = e;
4643 if (lp == NULL)
4645 if (eh_edge)
4647 error ("BB %i can not throw but has an EH edge", bb->index);
4648 return true;
4650 return false;
4653 if (!stmt_could_throw_p (stmt))
4655 error ("BB %i last statement has incorrectly set lp", bb->index);
4656 return true;
4659 if (eh_edge == NULL)
4661 error ("BB %i is missing an EH edge", bb->index);
4662 return true;
4665 if (eh_edge->dest != label_to_block (lp->post_landing_pad))
4667 error ("Incorrect EH edge %i->%i", bb->index, eh_edge->dest->index);
4668 return true;
4671 return false;
4674 /* Similarly, but handle GIMPLE_EH_DISPATCH specifically. */
4676 DEBUG_FUNCTION bool
4677 verify_eh_dispatch_edge (gimple_eh_dispatch stmt)
4679 eh_region r;
4680 eh_catch c;
4681 basic_block src, dst;
4682 bool want_fallthru = true;
4683 edge_iterator ei;
4684 edge e, fall_edge;
4686 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
4687 src = gimple_bb (stmt);
4689 FOR_EACH_EDGE (e, ei, src->succs)
4690 gcc_assert (e->aux == NULL);
4692 switch (r->type)
4694 case ERT_TRY:
4695 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4697 dst = label_to_block (c->label);
4698 e = find_edge (src, dst);
4699 if (e == NULL)
4701 error ("BB %i is missing an edge", src->index);
4702 return true;
4704 e->aux = (void *)e;
4706 /* A catch-all handler doesn't have a fallthru. */
4707 if (c->type_list == NULL)
4709 want_fallthru = false;
4710 break;
4713 break;
4715 case ERT_ALLOWED_EXCEPTIONS:
4716 dst = label_to_block (r->u.allowed.label);
4717 e = find_edge (src, dst);
4718 if (e == NULL)
4720 error ("BB %i is missing an edge", src->index);
4721 return true;
4723 e->aux = (void *)e;
4724 break;
4726 default:
4727 gcc_unreachable ();
4730 fall_edge = NULL;
4731 FOR_EACH_EDGE (e, ei, src->succs)
4733 if (e->flags & EDGE_FALLTHRU)
4735 if (fall_edge != NULL)
4737 error ("BB %i too many fallthru edges", src->index);
4738 return true;
4740 fall_edge = e;
4742 else if (e->aux)
4743 e->aux = NULL;
4744 else
4746 error ("BB %i has incorrect edge", src->index);
4747 return true;
4750 if ((fall_edge != NULL) ^ want_fallthru)
4752 error ("BB %i has incorrect fallthru edge", src->index);
4753 return true;
4756 return false;