* cgraph.h: Flatten. Remove all include files.
[official-gcc.git] / gcc / tree-eh.c
blobebd9a3aec155546da79f573a19ff2d005ca4d323
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 "hashtab.h"
30 #include "hash-set.h"
31 #include "vec.h"
32 #include "machmode.h"
33 #include "hard-reg-set.h"
34 #include "input.h"
35 #include "function.h"
36 #include "except.h"
37 #include "predict.h"
38 #include "dominance.h"
39 #include "cfg.h"
40 #include "cfganal.h"
41 #include "cfgcleanup.h"
42 #include "basic-block.h"
43 #include "tree-ssa-alias.h"
44 #include "internal-fn.h"
45 #include "tree-eh.h"
46 #include "gimple-expr.h"
47 #include "is-a.h"
48 #include "gimple.h"
49 #include "gimple-iterator.h"
50 #include "gimple-ssa.h"
51 #include "hash-map.h"
52 #include "plugin-api.h"
53 #include "ipa-ref.h"
54 #include "cgraph.h"
55 #include "tree-cfg.h"
56 #include "tree-phinodes.h"
57 #include "ssa-iterators.h"
58 #include "stringpool.h"
59 #include "tree-ssanames.h"
60 #include "tree-into-ssa.h"
61 #include "tree-ssa.h"
62 #include "tree-inline.h"
63 #include "tree-pass.h"
64 #include "langhooks.h"
65 #include "diagnostic-core.h"
66 #include "target.h"
67 #include "cfgloop.h"
68 #include "gimple-low.h"
70 /* In some instances a tree and a gimple need to be stored in a same table,
71 i.e. in hash tables. This is a structure to do this. */
72 typedef union {tree *tp; tree t; gimple g;} treemple;
74 /* Misc functions used in this file. */
76 /* Remember and lookup EH landing pad data for arbitrary statements.
77 Really this means any statement that could_throw_p. We could
78 stuff this information into the stmt_ann data structure, but:
80 (1) We absolutely rely on this information being kept until
81 we get to rtl. Once we're done with lowering here, if we lose
82 the information there's no way to recover it!
84 (2) There are many more statements that *cannot* throw as
85 compared to those that can. We should be saving some amount
86 of space by only allocating memory for those that can throw. */
88 /* Add statement T in function IFUN to landing pad NUM. */
90 static void
91 add_stmt_to_eh_lp_fn (struct function *ifun, gimple t, int num)
93 gcc_assert (num != 0);
95 if (!get_eh_throw_stmt_table (ifun))
96 set_eh_throw_stmt_table (ifun, hash_map<gimple, int>::create_ggc (31));
98 gcc_assert (!get_eh_throw_stmt_table (ifun)->put (t, num));
101 /* Add statement T in the current function (cfun) to EH landing pad NUM. */
103 void
104 add_stmt_to_eh_lp (gimple t, int num)
106 add_stmt_to_eh_lp_fn (cfun, t, num);
109 /* Add statement T to the single EH landing pad in REGION. */
111 static void
112 record_stmt_eh_region (eh_region region, gimple t)
114 if (region == NULL)
115 return;
116 if (region->type == ERT_MUST_NOT_THROW)
117 add_stmt_to_eh_lp_fn (cfun, t, -region->index);
118 else
120 eh_landing_pad lp = region->landing_pads;
121 if (lp == NULL)
122 lp = gen_eh_landing_pad (region);
123 else
124 gcc_assert (lp->next_lp == NULL);
125 add_stmt_to_eh_lp_fn (cfun, t, lp->index);
130 /* Remove statement T in function IFUN from its EH landing pad. */
132 bool
133 remove_stmt_from_eh_lp_fn (struct function *ifun, gimple t)
135 if (!get_eh_throw_stmt_table (ifun))
136 return false;
138 if (!get_eh_throw_stmt_table (ifun)->get (t))
139 return false;
141 get_eh_throw_stmt_table (ifun)->remove (t);
142 return true;
146 /* Remove statement T in the current function (cfun) from its
147 EH landing pad. */
149 bool
150 remove_stmt_from_eh_lp (gimple t)
152 return remove_stmt_from_eh_lp_fn (cfun, t);
155 /* Determine if statement T is inside an EH region in function IFUN.
156 Positive numbers indicate a landing pad index; negative numbers
157 indicate a MUST_NOT_THROW region index; zero indicates that the
158 statement is not recorded in the region table. */
161 lookup_stmt_eh_lp_fn (struct function *ifun, gimple t)
163 if (ifun->eh->throw_stmt_table == NULL)
164 return 0;
166 int *lp_nr = ifun->eh->throw_stmt_table->get (t);
167 return lp_nr ? *lp_nr : 0;
170 /* Likewise, but always use the current function. */
173 lookup_stmt_eh_lp (gimple t)
175 /* We can get called from initialized data when -fnon-call-exceptions
176 is on; prevent crash. */
177 if (!cfun)
178 return 0;
179 return lookup_stmt_eh_lp_fn (cfun, t);
182 /* First pass of EH node decomposition. Build up a tree of GIMPLE_TRY_FINALLY
183 nodes and LABEL_DECL nodes. We will use this during the second phase to
184 determine if a goto leaves the body of a TRY_FINALLY_EXPR node. */
186 struct finally_tree_node
188 /* When storing a GIMPLE_TRY, we have to record a gimple. However
189 when deciding whether a GOTO to a certain LABEL_DECL (which is a
190 tree) leaves the TRY block, its necessary to record a tree in
191 this field. Thus a treemple is used. */
192 treemple child;
193 gimple parent;
196 /* Hashtable helpers. */
198 struct finally_tree_hasher : typed_free_remove <finally_tree_node>
200 typedef finally_tree_node value_type;
201 typedef finally_tree_node compare_type;
202 static inline hashval_t hash (const value_type *);
203 static inline bool equal (const value_type *, const compare_type *);
206 inline hashval_t
207 finally_tree_hasher::hash (const value_type *v)
209 return (intptr_t)v->child.t >> 4;
212 inline bool
213 finally_tree_hasher::equal (const value_type *v, const compare_type *c)
215 return v->child.t == c->child.t;
218 /* Note that this table is *not* marked GTY. It is short-lived. */
219 static hash_table<finally_tree_hasher> *finally_tree;
221 static void
222 record_in_finally_tree (treemple child, gimple parent)
224 struct finally_tree_node *n;
225 finally_tree_node **slot;
227 n = XNEW (struct finally_tree_node);
228 n->child = child;
229 n->parent = parent;
231 slot = finally_tree->find_slot (n, INSERT);
232 gcc_assert (!*slot);
233 *slot = n;
236 static void
237 collect_finally_tree (gimple stmt, gimple region);
239 /* Go through the gimple sequence. Works with collect_finally_tree to
240 record all GIMPLE_LABEL and GIMPLE_TRY statements. */
242 static void
243 collect_finally_tree_1 (gimple_seq seq, gimple region)
245 gimple_stmt_iterator gsi;
247 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
248 collect_finally_tree (gsi_stmt (gsi), region);
251 static void
252 collect_finally_tree (gimple stmt, gimple region)
254 treemple temp;
256 switch (gimple_code (stmt))
258 case GIMPLE_LABEL:
259 temp.t = gimple_label_label (stmt);
260 record_in_finally_tree (temp, region);
261 break;
263 case GIMPLE_TRY:
264 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
266 temp.g = stmt;
267 record_in_finally_tree (temp, region);
268 collect_finally_tree_1 (gimple_try_eval (stmt), stmt);
269 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
271 else if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
273 collect_finally_tree_1 (gimple_try_eval (stmt), region);
274 collect_finally_tree_1 (gimple_try_cleanup (stmt), region);
276 break;
278 case GIMPLE_CATCH:
279 collect_finally_tree_1 (gimple_catch_handler (stmt), region);
280 break;
282 case GIMPLE_EH_FILTER:
283 collect_finally_tree_1 (gimple_eh_filter_failure (stmt), region);
284 break;
286 case GIMPLE_EH_ELSE:
287 collect_finally_tree_1 (gimple_eh_else_n_body (stmt), region);
288 collect_finally_tree_1 (gimple_eh_else_e_body (stmt), region);
289 break;
291 default:
292 /* A type, a decl, or some kind of statement that we're not
293 interested in. Don't walk them. */
294 break;
299 /* Use the finally tree to determine if a jump from START to TARGET
300 would leave the try_finally node that START lives in. */
302 static bool
303 outside_finally_tree (treemple start, gimple target)
305 struct finally_tree_node n, *p;
309 n.child = start;
310 p = finally_tree->find (&n);
311 if (!p)
312 return true;
313 start.g = p->parent;
315 while (start.g != target);
317 return false;
320 /* Second pass of EH node decomposition. Actually transform the GIMPLE_TRY
321 nodes into a set of gotos, magic labels, and eh regions.
322 The eh region creation is straight-forward, but frobbing all the gotos
323 and such into shape isn't. */
325 /* The sequence into which we record all EH stuff. This will be
326 placed at the end of the function when we're all done. */
327 static gimple_seq eh_seq;
329 /* Record whether an EH region contains something that can throw,
330 indexed by EH region number. */
331 static bitmap eh_region_may_contain_throw_map;
333 /* The GOTO_QUEUE is is an array of GIMPLE_GOTO and GIMPLE_RETURN
334 statements that are seen to escape this GIMPLE_TRY_FINALLY node.
335 The idea is to record a gimple statement for everything except for
336 the conditionals, which get their labels recorded. Since labels are
337 of type 'tree', we need this node to store both gimple and tree
338 objects. REPL_STMT is the sequence used to replace the goto/return
339 statement. CONT_STMT is used to store the statement that allows
340 the return/goto to jump to the original destination. */
342 struct goto_queue_node
344 treemple stmt;
345 location_t location;
346 gimple_seq repl_stmt;
347 gimple cont_stmt;
348 int index;
349 /* This is used when index >= 0 to indicate that stmt is a label (as
350 opposed to a goto stmt). */
351 int is_label;
354 /* State of the world while lowering. */
356 struct leh_state
358 /* What's "current" while constructing the eh region tree. These
359 correspond to variables of the same name in cfun->eh, which we
360 don't have easy access to. */
361 eh_region cur_region;
363 /* What's "current" for the purposes of __builtin_eh_pointer. For
364 a CATCH, this is the associated TRY. For an EH_FILTER, this is
365 the associated ALLOWED_EXCEPTIONS, etc. */
366 eh_region ehp_region;
368 /* Processing of TRY_FINALLY requires a bit more state. This is
369 split out into a separate structure so that we don't have to
370 copy so much when processing other nodes. */
371 struct leh_tf_state *tf;
374 struct leh_tf_state
376 /* Pointer to the GIMPLE_TRY_FINALLY node under discussion. The
377 try_finally_expr is the original GIMPLE_TRY_FINALLY. We need to retain
378 this so that outside_finally_tree can reliably reference the tree used
379 in the collect_finally_tree data structures. */
380 gimple try_finally_expr;
381 gimple top_p;
383 /* While lowering a top_p usually it is expanded into multiple statements,
384 thus we need the following field to store them. */
385 gimple_seq top_p_seq;
387 /* The state outside this try_finally node. */
388 struct leh_state *outer;
390 /* The exception region created for it. */
391 eh_region region;
393 /* The goto queue. */
394 struct goto_queue_node *goto_queue;
395 size_t goto_queue_size;
396 size_t goto_queue_active;
398 /* Pointer map to help in searching goto_queue when it is large. */
399 hash_map<gimple, goto_queue_node *> *goto_queue_map;
401 /* The set of unique labels seen as entries in the goto queue. */
402 vec<tree> dest_array;
404 /* A label to be added at the end of the completed transformed
405 sequence. It will be set if may_fallthru was true *at one time*,
406 though subsequent transformations may have cleared that flag. */
407 tree fallthru_label;
409 /* True if it is possible to fall out the bottom of the try block.
410 Cleared if the fallthru is converted to a goto. */
411 bool may_fallthru;
413 /* True if any entry in goto_queue is a GIMPLE_RETURN. */
414 bool may_return;
416 /* True if the finally block can receive an exception edge.
417 Cleared if the exception case is handled by code duplication. */
418 bool may_throw;
421 static gimple_seq lower_eh_must_not_throw (struct leh_state *, gimple);
423 /* Search for STMT in the goto queue. Return the replacement,
424 or null if the statement isn't in the queue. */
426 #define LARGE_GOTO_QUEUE 20
428 static void lower_eh_constructs_1 (struct leh_state *state, gimple_seq *seq);
430 static gimple_seq
431 find_goto_replacement (struct leh_tf_state *tf, treemple stmt)
433 unsigned int i;
435 if (tf->goto_queue_active < LARGE_GOTO_QUEUE)
437 for (i = 0; i < tf->goto_queue_active; i++)
438 if ( tf->goto_queue[i].stmt.g == stmt.g)
439 return tf->goto_queue[i].repl_stmt;
440 return NULL;
443 /* If we have a large number of entries in the goto_queue, create a
444 pointer map and use that for searching. */
446 if (!tf->goto_queue_map)
448 tf->goto_queue_map = new hash_map<gimple, goto_queue_node *>;
449 for (i = 0; i < tf->goto_queue_active; i++)
451 bool existed = tf->goto_queue_map->put (tf->goto_queue[i].stmt.g,
452 &tf->goto_queue[i]);
453 gcc_assert (!existed);
457 goto_queue_node **slot = tf->goto_queue_map->get (stmt.g);
458 if (slot != NULL)
459 return ((*slot)->repl_stmt);
461 return NULL;
464 /* A subroutine of replace_goto_queue_1. Handles the sub-clauses of a
465 lowered GIMPLE_COND. If, by chance, the replacement is a simple goto,
466 then we can just splat it in, otherwise we add the new stmts immediately
467 after the GIMPLE_COND and redirect. */
469 static void
470 replace_goto_queue_cond_clause (tree *tp, struct leh_tf_state *tf,
471 gimple_stmt_iterator *gsi)
473 tree label;
474 gimple_seq new_seq;
475 treemple temp;
476 location_t loc = gimple_location (gsi_stmt (*gsi));
478 temp.tp = tp;
479 new_seq = find_goto_replacement (tf, temp);
480 if (!new_seq)
481 return;
483 if (gimple_seq_singleton_p (new_seq)
484 && gimple_code (gimple_seq_first_stmt (new_seq)) == GIMPLE_GOTO)
486 *tp = gimple_goto_dest (gimple_seq_first_stmt (new_seq));
487 return;
490 label = create_artificial_label (loc);
491 /* Set the new label for the GIMPLE_COND */
492 *tp = label;
494 gsi_insert_after (gsi, gimple_build_label (label), GSI_CONTINUE_LINKING);
495 gsi_insert_seq_after (gsi, gimple_seq_copy (new_seq), GSI_CONTINUE_LINKING);
498 /* The real work of replace_goto_queue. Returns with TSI updated to
499 point to the next statement. */
501 static void replace_goto_queue_stmt_list (gimple_seq *, struct leh_tf_state *);
503 static void
504 replace_goto_queue_1 (gimple stmt, struct leh_tf_state *tf,
505 gimple_stmt_iterator *gsi)
507 gimple_seq seq;
508 treemple temp;
509 temp.g = NULL;
511 switch (gimple_code (stmt))
513 case GIMPLE_GOTO:
514 case GIMPLE_RETURN:
515 temp.g = stmt;
516 seq = find_goto_replacement (tf, temp);
517 if (seq)
519 gsi_insert_seq_before (gsi, gimple_seq_copy (seq), GSI_SAME_STMT);
520 gsi_remove (gsi, false);
521 return;
523 break;
525 case GIMPLE_COND:
526 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 2), tf, gsi);
527 replace_goto_queue_cond_clause (gimple_op_ptr (stmt, 3), tf, gsi);
528 break;
530 case GIMPLE_TRY:
531 replace_goto_queue_stmt_list (gimple_try_eval_ptr (stmt), tf);
532 replace_goto_queue_stmt_list (gimple_try_cleanup_ptr (stmt), tf);
533 break;
534 case GIMPLE_CATCH:
535 replace_goto_queue_stmt_list (gimple_catch_handler_ptr (stmt), tf);
536 break;
537 case GIMPLE_EH_FILTER:
538 replace_goto_queue_stmt_list (gimple_eh_filter_failure_ptr (stmt), tf);
539 break;
540 case GIMPLE_EH_ELSE:
541 replace_goto_queue_stmt_list (gimple_eh_else_n_body_ptr (stmt), tf);
542 replace_goto_queue_stmt_list (gimple_eh_else_e_body_ptr (stmt), 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, gimple switch_expr)
707 struct leh_tf_state *tf = state->tf;
708 size_t i, n;
710 if (!tf)
711 return;
713 n = gimple_switch_num_labels (switch_expr);
715 for (i = 0; i < n; ++i)
717 treemple temp;
718 tree lab = CASE_LABEL (gimple_switch_label (switch_expr, i));
719 temp.t = lab;
720 gcc_assert (!outside_finally_tree (temp, tf->try_finally_expr));
723 #else
724 #define verify_norecord_switch_expr(state, switch_expr)
725 #endif
727 /* Redirect a RETURN_EXPR pointed to by Q to FINLAB. If MOD is
728 non-null, insert it before the new branch. */
730 static void
731 do_return_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod)
733 gimple x;
735 /* In the case of a return, the queue node must be a gimple statement. */
736 gcc_assert (!q->is_label);
738 /* Note that the return value may have already been computed, e.g.,
740 int x;
741 int foo (void)
743 x = 0;
744 try {
745 return x;
746 } finally {
747 x++;
751 should return 0, not 1. We don't have to do anything to make
752 this happens because the return value has been placed in the
753 RESULT_DECL already. */
755 q->cont_stmt = q->stmt.g;
757 if (mod)
758 gimple_seq_add_seq (&q->repl_stmt, mod);
760 x = gimple_build_goto (finlab);
761 gimple_set_location (x, q->location);
762 gimple_seq_add_stmt (&q->repl_stmt, x);
765 /* Similar, but easier, for GIMPLE_GOTO. */
767 static void
768 do_goto_redirection (struct goto_queue_node *q, tree finlab, gimple_seq mod,
769 struct leh_tf_state *tf)
771 gimple x;
773 gcc_assert (q->is_label);
775 q->cont_stmt = gimple_build_goto (tf->dest_array[q->index]);
777 if (mod)
778 gimple_seq_add_seq (&q->repl_stmt, mod);
780 x = gimple_build_goto (finlab);
781 gimple_set_location (x, q->location);
782 gimple_seq_add_stmt (&q->repl_stmt, x);
785 /* Emit a standard landing pad sequence into SEQ for REGION. */
787 static void
788 emit_post_landing_pad (gimple_seq *seq, eh_region region)
790 eh_landing_pad lp = region->landing_pads;
791 gimple x;
793 if (lp == NULL)
794 lp = gen_eh_landing_pad (region);
796 lp->post_landing_pad = create_artificial_label (UNKNOWN_LOCATION);
797 EH_LANDING_PAD_NR (lp->post_landing_pad) = lp->index;
799 x = gimple_build_label (lp->post_landing_pad);
800 gimple_seq_add_stmt (seq, x);
803 /* Emit a RESX statement into SEQ for REGION. */
805 static void
806 emit_resx (gimple_seq *seq, eh_region region)
808 gimple x = gimple_build_resx (region->index);
809 gimple_seq_add_stmt (seq, x);
810 if (region->outer)
811 record_stmt_eh_region (region->outer, x);
814 /* Emit an EH_DISPATCH statement into SEQ for REGION. */
816 static void
817 emit_eh_dispatch (gimple_seq *seq, eh_region region)
819 gimple x = gimple_build_eh_dispatch (region->index);
820 gimple_seq_add_stmt (seq, x);
823 /* Note that the current EH region may contain a throw, or a
824 call to a function which itself may contain a throw. */
826 static void
827 note_eh_region_may_contain_throw (eh_region region)
829 while (bitmap_set_bit (eh_region_may_contain_throw_map, region->index))
831 if (region->type == ERT_MUST_NOT_THROW)
832 break;
833 region = region->outer;
834 if (region == NULL)
835 break;
839 /* Check if REGION has been marked as containing a throw. If REGION is
840 NULL, this predicate is false. */
842 static inline bool
843 eh_region_may_contain_throw (eh_region r)
845 return r && bitmap_bit_p (eh_region_may_contain_throw_map, r->index);
848 /* We want to transform
849 try { body; } catch { stuff; }
851 normal_seqence:
852 body;
853 over:
854 eh_seqence:
855 landing_pad:
856 stuff;
857 goto over;
859 TP is a GIMPLE_TRY node. REGION is the region whose post_landing_pad
860 should be placed before the second operand, or NULL. OVER is
861 an existing label that should be put at the exit, or NULL. */
863 static gimple_seq
864 frob_into_branch_around (gimple tp, eh_region region, tree over)
866 gimple x;
867 gimple_seq cleanup, result;
868 location_t loc = gimple_location (tp);
870 cleanup = gimple_try_cleanup (tp);
871 result = gimple_try_eval (tp);
873 if (region)
874 emit_post_landing_pad (&eh_seq, region);
876 if (gimple_seq_may_fallthru (cleanup))
878 if (!over)
879 over = create_artificial_label (loc);
880 x = gimple_build_goto (over);
881 gimple_set_location (x, loc);
882 gimple_seq_add_stmt (&cleanup, x);
884 gimple_seq_add_seq (&eh_seq, cleanup);
886 if (over)
888 x = gimple_build_label (over);
889 gimple_seq_add_stmt (&result, x);
891 return result;
894 /* A subroutine of lower_try_finally. Duplicate the tree rooted at T.
895 Make sure to record all new labels found. */
897 static gimple_seq
898 lower_try_finally_dup_block (gimple_seq seq, struct leh_state *outer_state,
899 location_t loc)
901 gimple region = NULL;
902 gimple_seq new_seq;
903 gimple_stmt_iterator gsi;
905 new_seq = copy_gimple_seq_and_replace_locals (seq);
907 for (gsi = gsi_start (new_seq); !gsi_end_p (gsi); gsi_next (&gsi))
909 gimple stmt = gsi_stmt (gsi);
910 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
912 tree block = gimple_block (stmt);
913 gimple_set_location (stmt, loc);
914 gimple_set_block (stmt, block);
918 if (outer_state->tf)
919 region = outer_state->tf->try_finally_expr;
920 collect_finally_tree_1 (new_seq, region);
922 return new_seq;
925 /* A subroutine of lower_try_finally. Create a fallthru label for
926 the given try_finally state. The only tricky bit here is that
927 we have to make sure to record the label in our outer context. */
929 static tree
930 lower_try_finally_fallthru_label (struct leh_tf_state *tf)
932 tree label = tf->fallthru_label;
933 treemple temp;
935 if (!label)
937 label = create_artificial_label (gimple_location (tf->try_finally_expr));
938 tf->fallthru_label = label;
939 if (tf->outer->tf)
941 temp.t = label;
942 record_in_finally_tree (temp, tf->outer->tf->try_finally_expr);
945 return label;
948 /* A subroutine of lower_try_finally. If FINALLY consits of a
949 GIMPLE_EH_ELSE node, return it. */
951 static inline gimple
952 get_eh_else (gimple_seq finally)
954 gimple x = gimple_seq_first_stmt (finally);
955 if (gimple_code (x) == GIMPLE_EH_ELSE)
957 gcc_assert (gimple_seq_singleton_p (finally));
958 return x;
960 return NULL;
963 /* A subroutine of lower_try_finally. If the eh_protect_cleanup_actions
964 langhook returns non-null, then the language requires that the exception
965 path out of a try_finally be treated specially. To wit: the code within
966 the finally block may not itself throw an exception. We have two choices
967 here. First we can duplicate the finally block and wrap it in a
968 must_not_throw region. Second, we can generate code like
970 try {
971 finally_block;
972 } catch {
973 if (fintmp == eh_edge)
974 protect_cleanup_actions;
977 where "fintmp" is the temporary used in the switch statement generation
978 alternative considered below. For the nonce, we always choose the first
979 option.
981 THIS_STATE may be null if this is a try-cleanup, not a try-finally. */
983 static void
984 honor_protect_cleanup_actions (struct leh_state *outer_state,
985 struct leh_state *this_state,
986 struct leh_tf_state *tf)
988 tree protect_cleanup_actions;
989 gimple_stmt_iterator gsi;
990 bool finally_may_fallthru;
991 gimple_seq finally;
992 gimple x, eh_else;
994 /* First check for nothing to do. */
995 if (lang_hooks.eh_protect_cleanup_actions == NULL)
996 return;
997 protect_cleanup_actions = lang_hooks.eh_protect_cleanup_actions ();
998 if (protect_cleanup_actions == NULL)
999 return;
1001 finally = gimple_try_cleanup (tf->top_p);
1002 eh_else = get_eh_else (finally);
1004 /* Duplicate the FINALLY block. Only need to do this for try-finally,
1005 and not for cleanups. If we've got an EH_ELSE, extract it now. */
1006 if (eh_else)
1008 finally = gimple_eh_else_e_body (eh_else);
1009 gimple_try_set_cleanup (tf->top_p, gimple_eh_else_n_body (eh_else));
1011 else if (this_state)
1012 finally = lower_try_finally_dup_block (finally, outer_state,
1013 gimple_location (tf->try_finally_expr));
1014 finally_may_fallthru = gimple_seq_may_fallthru (finally);
1016 /* If this cleanup consists of a TRY_CATCH_EXPR with TRY_CATCH_IS_CLEANUP
1017 set, the handler of the TRY_CATCH_EXPR is another cleanup which ought
1018 to be in an enclosing scope, but needs to be implemented at this level
1019 to avoid a nesting violation (see wrap_temporary_cleanups in
1020 cp/decl.c). Since it's logically at an outer level, we should call
1021 terminate before we get to it, so strip it away before adding the
1022 MUST_NOT_THROW filter. */
1023 gsi = gsi_start (finally);
1024 x = gsi_stmt (gsi);
1025 if (gimple_code (x) == GIMPLE_TRY
1026 && gimple_try_kind (x) == GIMPLE_TRY_CATCH
1027 && gimple_try_catch_is_cleanup (x))
1029 gsi_insert_seq_before (&gsi, gimple_try_eval (x), GSI_SAME_STMT);
1030 gsi_remove (&gsi, false);
1033 /* Wrap the block with protect_cleanup_actions as the action. */
1034 x = gimple_build_eh_must_not_throw (protect_cleanup_actions);
1035 x = gimple_build_try (finally, gimple_seq_alloc_with_stmt (x),
1036 GIMPLE_TRY_CATCH);
1037 finally = lower_eh_must_not_throw (outer_state, x);
1039 /* Drop all of this into the exception sequence. */
1040 emit_post_landing_pad (&eh_seq, tf->region);
1041 gimple_seq_add_seq (&eh_seq, finally);
1042 if (finally_may_fallthru)
1043 emit_resx (&eh_seq, tf->region);
1045 /* Having now been handled, EH isn't to be considered with
1046 the rest of the outgoing edges. */
1047 tf->may_throw = false;
1050 /* A subroutine of lower_try_finally. We have determined that there is
1051 no fallthru edge out of the finally block. This means that there is
1052 no outgoing edge corresponding to any incoming edge. Restructure the
1053 try_finally node for this special case. */
1055 static void
1056 lower_try_finally_nofallthru (struct leh_state *state,
1057 struct leh_tf_state *tf)
1059 tree lab;
1060 gimple x, eh_else;
1061 gimple_seq finally;
1062 struct goto_queue_node *q, *qe;
1064 lab = create_artificial_label (gimple_location (tf->try_finally_expr));
1066 /* We expect that tf->top_p is a GIMPLE_TRY. */
1067 finally = gimple_try_cleanup (tf->top_p);
1068 tf->top_p_seq = gimple_try_eval (tf->top_p);
1070 x = gimple_build_label (lab);
1071 gimple_seq_add_stmt (&tf->top_p_seq, x);
1073 q = tf->goto_queue;
1074 qe = q + tf->goto_queue_active;
1075 for (; q < qe; ++q)
1076 if (q->index < 0)
1077 do_return_redirection (q, lab, NULL);
1078 else
1079 do_goto_redirection (q, lab, NULL, tf);
1081 replace_goto_queue (tf);
1083 /* Emit the finally block into the stream. Lower EH_ELSE at this time. */
1084 eh_else = get_eh_else (finally);
1085 if (eh_else)
1087 finally = gimple_eh_else_n_body (eh_else);
1088 lower_eh_constructs_1 (state, &finally);
1089 gimple_seq_add_seq (&tf->top_p_seq, finally);
1091 if (tf->may_throw)
1093 finally = gimple_eh_else_e_body (eh_else);
1094 lower_eh_constructs_1 (state, &finally);
1096 emit_post_landing_pad (&eh_seq, tf->region);
1097 gimple_seq_add_seq (&eh_seq, finally);
1100 else
1102 lower_eh_constructs_1 (state, &finally);
1103 gimple_seq_add_seq (&tf->top_p_seq, finally);
1105 if (tf->may_throw)
1107 emit_post_landing_pad (&eh_seq, tf->region);
1109 x = gimple_build_goto (lab);
1110 gimple_set_location (x, gimple_location (tf->try_finally_expr));
1111 gimple_seq_add_stmt (&eh_seq, x);
1116 /* A subroutine of lower_try_finally. We have determined that there is
1117 exactly one destination of the finally block. Restructure the
1118 try_finally node for this special case. */
1120 static void
1121 lower_try_finally_onedest (struct leh_state *state, struct leh_tf_state *tf)
1123 struct goto_queue_node *q, *qe;
1124 gimple x;
1125 gimple_seq finally;
1126 gimple_stmt_iterator gsi;
1127 tree finally_label;
1128 location_t loc = gimple_location (tf->try_finally_expr);
1130 finally = gimple_try_cleanup (tf->top_p);
1131 tf->top_p_seq = gimple_try_eval (tf->top_p);
1133 /* Since there's only one destination, and the destination edge can only
1134 either be EH or non-EH, that implies that all of our incoming edges
1135 are of the same type. Therefore we can lower EH_ELSE immediately. */
1136 x = get_eh_else (finally);
1137 if (x)
1139 if (tf->may_throw)
1140 finally = gimple_eh_else_e_body (x);
1141 else
1142 finally = gimple_eh_else_n_body (x);
1145 lower_eh_constructs_1 (state, &finally);
1147 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1149 gimple stmt = gsi_stmt (gsi);
1150 if (LOCATION_LOCUS (gimple_location (stmt)) == UNKNOWN_LOCATION)
1152 tree block = gimple_block (stmt);
1153 gimple_set_location (stmt, gimple_location (tf->try_finally_expr));
1154 gimple_set_block (stmt, block);
1158 if (tf->may_throw)
1160 /* Only reachable via the exception edge. Add the given label to
1161 the head of the FINALLY block. Append a RESX at the end. */
1162 emit_post_landing_pad (&eh_seq, tf->region);
1163 gimple_seq_add_seq (&eh_seq, finally);
1164 emit_resx (&eh_seq, tf->region);
1165 return;
1168 if (tf->may_fallthru)
1170 /* Only reachable via the fallthru edge. Do nothing but let
1171 the two blocks run together; we'll fall out the bottom. */
1172 gimple_seq_add_seq (&tf->top_p_seq, finally);
1173 return;
1176 finally_label = create_artificial_label (loc);
1177 x = gimple_build_label (finally_label);
1178 gimple_seq_add_stmt (&tf->top_p_seq, x);
1180 gimple_seq_add_seq (&tf->top_p_seq, finally);
1182 q = tf->goto_queue;
1183 qe = q + tf->goto_queue_active;
1185 if (tf->may_return)
1187 /* Reachable by return expressions only. Redirect them. */
1188 for (; q < qe; ++q)
1189 do_return_redirection (q, finally_label, NULL);
1190 replace_goto_queue (tf);
1192 else
1194 /* Reachable by goto expressions only. Redirect them. */
1195 for (; q < qe; ++q)
1196 do_goto_redirection (q, finally_label, NULL, tf);
1197 replace_goto_queue (tf);
1199 if (tf->dest_array[0] == tf->fallthru_label)
1201 /* Reachable by goto to fallthru label only. Redirect it
1202 to the new label (already created, sadly), and do not
1203 emit the final branch out, or the fallthru label. */
1204 tf->fallthru_label = NULL;
1205 return;
1209 /* Place the original return/goto to the original destination
1210 immediately after the finally block. */
1211 x = tf->goto_queue[0].cont_stmt;
1212 gimple_seq_add_stmt (&tf->top_p_seq, x);
1213 maybe_record_in_goto_queue (state, x);
1216 /* A subroutine of lower_try_finally. There are multiple edges incoming
1217 and outgoing from the finally block. Implement this by duplicating the
1218 finally block for every destination. */
1220 static void
1221 lower_try_finally_copy (struct leh_state *state, struct leh_tf_state *tf)
1223 gimple_seq finally;
1224 gimple_seq new_stmt;
1225 gimple_seq seq;
1226 gimple x, eh_else;
1227 tree tmp;
1228 location_t tf_loc = gimple_location (tf->try_finally_expr);
1230 finally = gimple_try_cleanup (tf->top_p);
1232 /* Notice EH_ELSE, and simplify some of the remaining code
1233 by considering FINALLY to be the normal return path only. */
1234 eh_else = get_eh_else (finally);
1235 if (eh_else)
1236 finally = gimple_eh_else_n_body (eh_else);
1238 tf->top_p_seq = gimple_try_eval (tf->top_p);
1239 new_stmt = NULL;
1241 if (tf->may_fallthru)
1243 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1244 lower_eh_constructs_1 (state, &seq);
1245 gimple_seq_add_seq (&new_stmt, seq);
1247 tmp = lower_try_finally_fallthru_label (tf);
1248 x = gimple_build_goto (tmp);
1249 gimple_set_location (x, tf_loc);
1250 gimple_seq_add_stmt (&new_stmt, x);
1253 if (tf->may_throw)
1255 /* We don't need to copy the EH path of EH_ELSE,
1256 since it is only emitted once. */
1257 if (eh_else)
1258 seq = gimple_eh_else_e_body (eh_else);
1259 else
1260 seq = lower_try_finally_dup_block (finally, state, tf_loc);
1261 lower_eh_constructs_1 (state, &seq);
1263 emit_post_landing_pad (&eh_seq, tf->region);
1264 gimple_seq_add_seq (&eh_seq, seq);
1265 emit_resx (&eh_seq, tf->region);
1268 if (tf->goto_queue)
1270 struct goto_queue_node *q, *qe;
1271 int return_index, index;
1272 struct labels_s
1274 struct goto_queue_node *q;
1275 tree label;
1276 } *labels;
1278 return_index = tf->dest_array.length ();
1279 labels = XCNEWVEC (struct labels_s, return_index + 1);
1281 q = tf->goto_queue;
1282 qe = q + tf->goto_queue_active;
1283 for (; q < qe; q++)
1285 index = q->index < 0 ? return_index : q->index;
1287 if (!labels[index].q)
1288 labels[index].q = q;
1291 for (index = 0; index < return_index + 1; index++)
1293 tree lab;
1295 q = labels[index].q;
1296 if (! q)
1297 continue;
1299 lab = labels[index].label
1300 = create_artificial_label (tf_loc);
1302 if (index == return_index)
1303 do_return_redirection (q, lab, NULL);
1304 else
1305 do_goto_redirection (q, lab, NULL, tf);
1307 x = gimple_build_label (lab);
1308 gimple_seq_add_stmt (&new_stmt, x);
1310 seq = lower_try_finally_dup_block (finally, state, q->location);
1311 lower_eh_constructs_1 (state, &seq);
1312 gimple_seq_add_seq (&new_stmt, seq);
1314 gimple_seq_add_stmt (&new_stmt, q->cont_stmt);
1315 maybe_record_in_goto_queue (state, q->cont_stmt);
1318 for (q = tf->goto_queue; q < qe; q++)
1320 tree lab;
1322 index = q->index < 0 ? return_index : q->index;
1324 if (labels[index].q == q)
1325 continue;
1327 lab = labels[index].label;
1329 if (index == return_index)
1330 do_return_redirection (q, lab, NULL);
1331 else
1332 do_goto_redirection (q, lab, NULL, tf);
1335 replace_goto_queue (tf);
1336 free (labels);
1339 /* Need to link new stmts after running replace_goto_queue due
1340 to not wanting to process the same goto stmts twice. */
1341 gimple_seq_add_seq (&tf->top_p_seq, new_stmt);
1344 /* A subroutine of lower_try_finally. There are multiple edges incoming
1345 and outgoing from the finally block. Implement this by instrumenting
1346 each incoming edge and creating a switch statement at the end of the
1347 finally block that branches to the appropriate destination. */
1349 static void
1350 lower_try_finally_switch (struct leh_state *state, struct leh_tf_state *tf)
1352 struct goto_queue_node *q, *qe;
1353 tree finally_tmp, finally_label;
1354 int return_index, eh_index, fallthru_index;
1355 int nlabels, ndests, j, last_case_index;
1356 tree last_case;
1357 vec<tree> case_label_vec;
1358 gimple_seq switch_body = NULL;
1359 gimple x, eh_else;
1360 tree tmp;
1361 gimple switch_stmt;
1362 gimple_seq finally;
1363 hash_map<tree, gimple> *cont_map = NULL;
1364 /* The location of the TRY_FINALLY stmt. */
1365 location_t tf_loc = gimple_location (tf->try_finally_expr);
1366 /* The location of the finally block. */
1367 location_t finally_loc;
1369 finally = gimple_try_cleanup (tf->top_p);
1370 eh_else = get_eh_else (finally);
1372 /* Mash the TRY block to the head of the chain. */
1373 tf->top_p_seq = gimple_try_eval (tf->top_p);
1375 /* The location of the finally is either the last stmt in the finally
1376 block or the location of the TRY_FINALLY itself. */
1377 x = gimple_seq_last_stmt (finally);
1378 finally_loc = x ? gimple_location (x) : tf_loc;
1380 /* Prepare for switch statement generation. */
1381 nlabels = tf->dest_array.length ();
1382 return_index = nlabels;
1383 eh_index = return_index + tf->may_return;
1384 fallthru_index = eh_index + (tf->may_throw && !eh_else);
1385 ndests = fallthru_index + tf->may_fallthru;
1387 finally_tmp = create_tmp_var (integer_type_node, "finally_tmp");
1388 finally_label = create_artificial_label (finally_loc);
1390 /* We use vec::quick_push on case_label_vec throughout this function,
1391 since we know the size in advance and allocate precisely as muce
1392 space as needed. */
1393 case_label_vec.create (ndests);
1394 last_case = NULL;
1395 last_case_index = 0;
1397 /* Begin inserting code for getting to the finally block. Things
1398 are done in this order to correspond to the sequence the code is
1399 laid out. */
1401 if (tf->may_fallthru)
1403 x = gimple_build_assign (finally_tmp,
1404 build_int_cst (integer_type_node,
1405 fallthru_index));
1406 gimple_seq_add_stmt (&tf->top_p_seq, x);
1408 tmp = build_int_cst (integer_type_node, fallthru_index);
1409 last_case = build_case_label (tmp, NULL,
1410 create_artificial_label (tf_loc));
1411 case_label_vec.quick_push (last_case);
1412 last_case_index++;
1414 x = gimple_build_label (CASE_LABEL (last_case));
1415 gimple_seq_add_stmt (&switch_body, x);
1417 tmp = lower_try_finally_fallthru_label (tf);
1418 x = gimple_build_goto (tmp);
1419 gimple_set_location (x, tf_loc);
1420 gimple_seq_add_stmt (&switch_body, x);
1423 /* For EH_ELSE, emit the exception path (plus resx) now, then
1424 subsequently we only need consider the normal path. */
1425 if (eh_else)
1427 if (tf->may_throw)
1429 finally = gimple_eh_else_e_body (eh_else);
1430 lower_eh_constructs_1 (state, &finally);
1432 emit_post_landing_pad (&eh_seq, tf->region);
1433 gimple_seq_add_seq (&eh_seq, finally);
1434 emit_resx (&eh_seq, tf->region);
1437 finally = gimple_eh_else_n_body (eh_else);
1439 else if (tf->may_throw)
1441 emit_post_landing_pad (&eh_seq, tf->region);
1443 x = gimple_build_assign (finally_tmp,
1444 build_int_cst (integer_type_node, eh_index));
1445 gimple_seq_add_stmt (&eh_seq, x);
1447 x = gimple_build_goto (finally_label);
1448 gimple_set_location (x, tf_loc);
1449 gimple_seq_add_stmt (&eh_seq, x);
1451 tmp = build_int_cst (integer_type_node, eh_index);
1452 last_case = build_case_label (tmp, NULL,
1453 create_artificial_label (tf_loc));
1454 case_label_vec.quick_push (last_case);
1455 last_case_index++;
1457 x = gimple_build_label (CASE_LABEL (last_case));
1458 gimple_seq_add_stmt (&eh_seq, x);
1459 emit_resx (&eh_seq, tf->region);
1462 x = gimple_build_label (finally_label);
1463 gimple_seq_add_stmt (&tf->top_p_seq, x);
1465 lower_eh_constructs_1 (state, &finally);
1466 gimple_seq_add_seq (&tf->top_p_seq, finally);
1468 /* Redirect each incoming goto edge. */
1469 q = tf->goto_queue;
1470 qe = q + tf->goto_queue_active;
1471 j = last_case_index + tf->may_return;
1472 /* Prepare the assignments to finally_tmp that are executed upon the
1473 entrance through a particular edge. */
1474 for (; q < qe; ++q)
1476 gimple_seq mod = NULL;
1477 int switch_id;
1478 unsigned int case_index;
1480 if (q->index < 0)
1482 x = gimple_build_assign (finally_tmp,
1483 build_int_cst (integer_type_node,
1484 return_index));
1485 gimple_seq_add_stmt (&mod, x);
1486 do_return_redirection (q, finally_label, mod);
1487 switch_id = return_index;
1489 else
1491 x = gimple_build_assign (finally_tmp,
1492 build_int_cst (integer_type_node, q->index));
1493 gimple_seq_add_stmt (&mod, x);
1494 do_goto_redirection (q, finally_label, mod, tf);
1495 switch_id = q->index;
1498 case_index = j + q->index;
1499 if (case_label_vec.length () <= case_index || !case_label_vec[case_index])
1501 tree case_lab;
1502 tmp = build_int_cst (integer_type_node, switch_id);
1503 case_lab = build_case_label (tmp, NULL,
1504 create_artificial_label (tf_loc));
1505 /* We store the cont_stmt in the pointer map, so that we can recover
1506 it in the loop below. */
1507 if (!cont_map)
1508 cont_map = new hash_map<tree, gimple>;
1509 cont_map->put (case_lab, q->cont_stmt);
1510 case_label_vec.quick_push (case_lab);
1513 for (j = last_case_index; j < last_case_index + nlabels; j++)
1515 gimple cont_stmt;
1517 last_case = case_label_vec[j];
1519 gcc_assert (last_case);
1520 gcc_assert (cont_map);
1522 cont_stmt = *cont_map->get (last_case);
1524 x = gimple_build_label (CASE_LABEL (last_case));
1525 gimple_seq_add_stmt (&switch_body, x);
1526 gimple_seq_add_stmt (&switch_body, cont_stmt);
1527 maybe_record_in_goto_queue (state, cont_stmt);
1529 if (cont_map)
1530 delete cont_map;
1532 replace_goto_queue (tf);
1534 /* Make sure that the last case is the default label, as one is required.
1535 Then sort the labels, which is also required in GIMPLE. */
1536 CASE_LOW (last_case) = NULL;
1537 tree tem = case_label_vec.pop ();
1538 gcc_assert (tem == last_case);
1539 sort_case_labels (case_label_vec);
1541 /* Build the switch statement, setting last_case to be the default
1542 label. */
1543 switch_stmt = gimple_build_switch (finally_tmp, last_case,
1544 case_label_vec);
1545 gimple_set_location (switch_stmt, finally_loc);
1547 /* Need to link SWITCH_STMT after running replace_goto_queue
1548 due to not wanting to process the same goto stmts twice. */
1549 gimple_seq_add_stmt (&tf->top_p_seq, switch_stmt);
1550 gimple_seq_add_seq (&tf->top_p_seq, switch_body);
1553 /* Decide whether or not we are going to duplicate the finally block.
1554 There are several considerations.
1556 First, if this is Java, then the finally block contains code
1557 written by the user. It has line numbers associated with it,
1558 so duplicating the block means it's difficult to set a breakpoint.
1559 Since controlling code generation via -g is verboten, we simply
1560 never duplicate code without optimization.
1562 Second, we'd like to prevent egregious code growth. One way to
1563 do this is to estimate the size of the finally block, multiply
1564 that by the number of copies we'd need to make, and compare against
1565 the estimate of the size of the switch machinery we'd have to add. */
1567 static bool
1568 decide_copy_try_finally (int ndests, bool may_throw, gimple_seq finally)
1570 int f_estimate, sw_estimate;
1571 gimple eh_else;
1573 /* If there's an EH_ELSE involved, the exception path is separate
1574 and really doesn't come into play for this computation. */
1575 eh_else = get_eh_else (finally);
1576 if (eh_else)
1578 ndests -= may_throw;
1579 finally = gimple_eh_else_n_body (eh_else);
1582 if (!optimize)
1584 gimple_stmt_iterator gsi;
1586 if (ndests == 1)
1587 return true;
1589 for (gsi = gsi_start (finally); !gsi_end_p (gsi); gsi_next (&gsi))
1591 gimple stmt = gsi_stmt (gsi);
1592 if (!is_gimple_debug (stmt) && !gimple_clobber_p (stmt))
1593 return false;
1595 return true;
1598 /* Finally estimate N times, plus N gotos. */
1599 f_estimate = count_insns_seq (finally, &eni_size_weights);
1600 f_estimate = (f_estimate + 1) * ndests;
1602 /* Switch statement (cost 10), N variable assignments, N gotos. */
1603 sw_estimate = 10 + 2 * ndests;
1605 /* Optimize for size clearly wants our best guess. */
1606 if (optimize_function_for_size_p (cfun))
1607 return f_estimate < sw_estimate;
1609 /* ??? These numbers are completely made up so far. */
1610 if (optimize > 1)
1611 return f_estimate < 100 || f_estimate < sw_estimate * 2;
1612 else
1613 return f_estimate < 40 || f_estimate * 2 < sw_estimate * 3;
1616 /* REG is the enclosing region for a possible cleanup region, or the region
1617 itself. Returns TRUE if such a region would be unreachable.
1619 Cleanup regions within a must-not-throw region aren't actually reachable
1620 even if there are throwing stmts within them, because the personality
1621 routine will call terminate before unwinding. */
1623 static bool
1624 cleanup_is_dead_in (eh_region reg)
1626 while (reg && reg->type == ERT_CLEANUP)
1627 reg = reg->outer;
1628 return (reg && reg->type == ERT_MUST_NOT_THROW);
1631 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_FINALLY nodes
1632 to a sequence of labels and blocks, plus the exception region trees
1633 that record all the magic. This is complicated by the need to
1634 arrange for the FINALLY block to be executed on all exits. */
1636 static gimple_seq
1637 lower_try_finally (struct leh_state *state, gimple tp)
1639 struct leh_tf_state this_tf;
1640 struct leh_state this_state;
1641 int ndests;
1642 gimple_seq old_eh_seq;
1644 /* Process the try block. */
1646 memset (&this_tf, 0, sizeof (this_tf));
1647 this_tf.try_finally_expr = tp;
1648 this_tf.top_p = tp;
1649 this_tf.outer = state;
1650 if (using_eh_for_cleanups_p () && !cleanup_is_dead_in (state->cur_region))
1652 this_tf.region = gen_eh_region_cleanup (state->cur_region);
1653 this_state.cur_region = this_tf.region;
1655 else
1657 this_tf.region = NULL;
1658 this_state.cur_region = state->cur_region;
1661 this_state.ehp_region = state->ehp_region;
1662 this_state.tf = &this_tf;
1664 old_eh_seq = eh_seq;
1665 eh_seq = NULL;
1667 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1669 /* Determine if the try block is escaped through the bottom. */
1670 this_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1672 /* Determine if any exceptions are possible within the try block. */
1673 if (this_tf.region)
1674 this_tf.may_throw = eh_region_may_contain_throw (this_tf.region);
1675 if (this_tf.may_throw)
1676 honor_protect_cleanup_actions (state, &this_state, &this_tf);
1678 /* Determine how many edges (still) reach the finally block. Or rather,
1679 how many destinations are reached by the finally block. Use this to
1680 determine how we process the finally block itself. */
1682 ndests = this_tf.dest_array.length ();
1683 ndests += this_tf.may_fallthru;
1684 ndests += this_tf.may_return;
1685 ndests += this_tf.may_throw;
1687 /* If the FINALLY block is not reachable, dike it out. */
1688 if (ndests == 0)
1690 gimple_seq_add_seq (&this_tf.top_p_seq, gimple_try_eval (tp));
1691 gimple_try_set_cleanup (tp, NULL);
1693 /* If the finally block doesn't fall through, then any destination
1694 we might try to impose there isn't reached either. There may be
1695 some minor amount of cleanup and redirection still needed. */
1696 else if (!gimple_seq_may_fallthru (gimple_try_cleanup (tp)))
1697 lower_try_finally_nofallthru (state, &this_tf);
1699 /* We can easily special-case redirection to a single destination. */
1700 else if (ndests == 1)
1701 lower_try_finally_onedest (state, &this_tf);
1702 else if (decide_copy_try_finally (ndests, this_tf.may_throw,
1703 gimple_try_cleanup (tp)))
1704 lower_try_finally_copy (state, &this_tf);
1705 else
1706 lower_try_finally_switch (state, &this_tf);
1708 /* If someone requested we add a label at the end of the transformed
1709 block, do so. */
1710 if (this_tf.fallthru_label)
1712 /* This must be reached only if ndests == 0. */
1713 gimple x = gimple_build_label (this_tf.fallthru_label);
1714 gimple_seq_add_stmt (&this_tf.top_p_seq, x);
1717 this_tf.dest_array.release ();
1718 free (this_tf.goto_queue);
1719 if (this_tf.goto_queue_map)
1720 delete this_tf.goto_queue_map;
1722 /* If there was an old (aka outer) eh_seq, append the current eh_seq.
1723 If there was no old eh_seq, then the append is trivially already done. */
1724 if (old_eh_seq)
1726 if (eh_seq == NULL)
1727 eh_seq = old_eh_seq;
1728 else
1730 gimple_seq new_eh_seq = eh_seq;
1731 eh_seq = old_eh_seq;
1732 gimple_seq_add_seq (&eh_seq, new_eh_seq);
1736 return this_tf.top_p_seq;
1739 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY_CATCH with a
1740 list of GIMPLE_CATCH to a sequence of labels and blocks, plus the
1741 exception region trees that records all the magic. */
1743 static gimple_seq
1744 lower_catch (struct leh_state *state, gimple tp)
1746 eh_region try_region = NULL;
1747 struct leh_state this_state = *state;
1748 gimple_stmt_iterator gsi;
1749 tree out_label;
1750 gimple_seq new_seq, cleanup;
1751 gimple x;
1752 location_t try_catch_loc = gimple_location (tp);
1754 if (flag_exceptions)
1756 try_region = gen_eh_region_try (state->cur_region);
1757 this_state.cur_region = try_region;
1760 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1762 if (!eh_region_may_contain_throw (try_region))
1763 return gimple_try_eval (tp);
1765 new_seq = NULL;
1766 emit_eh_dispatch (&new_seq, try_region);
1767 emit_resx (&new_seq, try_region);
1769 this_state.cur_region = state->cur_region;
1770 this_state.ehp_region = try_region;
1772 out_label = NULL;
1773 cleanup = gimple_try_cleanup (tp);
1774 for (gsi = gsi_start (cleanup);
1775 !gsi_end_p (gsi);
1776 gsi_next (&gsi))
1778 eh_catch c;
1779 gimple gcatch;
1780 gimple_seq handler;
1782 gcatch = gsi_stmt (gsi);
1783 c = gen_eh_region_catch (try_region, gimple_catch_types (gcatch));
1785 handler = gimple_catch_handler (gcatch);
1786 lower_eh_constructs_1 (&this_state, &handler);
1788 c->label = create_artificial_label (UNKNOWN_LOCATION);
1789 x = gimple_build_label (c->label);
1790 gimple_seq_add_stmt (&new_seq, x);
1792 gimple_seq_add_seq (&new_seq, handler);
1794 if (gimple_seq_may_fallthru (new_seq))
1796 if (!out_label)
1797 out_label = create_artificial_label (try_catch_loc);
1799 x = gimple_build_goto (out_label);
1800 gimple_seq_add_stmt (&new_seq, x);
1802 if (!c->type_list)
1803 break;
1806 gimple_try_set_cleanup (tp, new_seq);
1808 return frob_into_branch_around (tp, try_region, out_label);
1811 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with a
1812 GIMPLE_EH_FILTER to a sequence of labels and blocks, plus the exception
1813 region trees that record all the magic. */
1815 static gimple_seq
1816 lower_eh_filter (struct leh_state *state, gimple tp)
1818 struct leh_state this_state = *state;
1819 eh_region this_region = NULL;
1820 gimple inner, x;
1821 gimple_seq new_seq;
1823 inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1825 if (flag_exceptions)
1827 this_region = gen_eh_region_allowed (state->cur_region,
1828 gimple_eh_filter_types (inner));
1829 this_state.cur_region = this_region;
1832 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1834 if (!eh_region_may_contain_throw (this_region))
1835 return gimple_try_eval (tp);
1837 new_seq = NULL;
1838 this_state.cur_region = state->cur_region;
1839 this_state.ehp_region = this_region;
1841 emit_eh_dispatch (&new_seq, this_region);
1842 emit_resx (&new_seq, this_region);
1844 this_region->u.allowed.label = create_artificial_label (UNKNOWN_LOCATION);
1845 x = gimple_build_label (this_region->u.allowed.label);
1846 gimple_seq_add_stmt (&new_seq, x);
1848 lower_eh_constructs_1 (&this_state, gimple_eh_filter_failure_ptr (inner));
1849 gimple_seq_add_seq (&new_seq, gimple_eh_filter_failure (inner));
1851 gimple_try_set_cleanup (tp, new_seq);
1853 return frob_into_branch_around (tp, this_region, NULL);
1856 /* A subroutine of lower_eh_constructs_1. Lower a GIMPLE_TRY with
1857 an GIMPLE_EH_MUST_NOT_THROW to a sequence of labels and blocks,
1858 plus the exception region trees that record all the magic. */
1860 static gimple_seq
1861 lower_eh_must_not_throw (struct leh_state *state, gimple tp)
1863 struct leh_state this_state = *state;
1865 if (flag_exceptions)
1867 gimple inner = gimple_seq_first_stmt (gimple_try_cleanup (tp));
1868 eh_region this_region;
1870 this_region = gen_eh_region_must_not_throw (state->cur_region);
1871 this_region->u.must_not_throw.failure_decl
1872 = gimple_eh_must_not_throw_fndecl (inner);
1873 this_region->u.must_not_throw.failure_loc
1874 = LOCATION_LOCUS (gimple_location (tp));
1876 /* In order to get mangling applied to this decl, we must mark it
1877 used now. Otherwise, pass_ipa_free_lang_data won't think it
1878 needs to happen. */
1879 TREE_USED (this_region->u.must_not_throw.failure_decl) = 1;
1881 this_state.cur_region = this_region;
1884 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1886 return gimple_try_eval (tp);
1889 /* Implement a cleanup expression. This is similar to try-finally,
1890 except that we only execute the cleanup block for exception edges. */
1892 static gimple_seq
1893 lower_cleanup (struct leh_state *state, gimple tp)
1895 struct leh_state this_state = *state;
1896 eh_region this_region = NULL;
1897 struct leh_tf_state fake_tf;
1898 gimple_seq result;
1899 bool cleanup_dead = cleanup_is_dead_in (state->cur_region);
1901 if (flag_exceptions && !cleanup_dead)
1903 this_region = gen_eh_region_cleanup (state->cur_region);
1904 this_state.cur_region = this_region;
1907 lower_eh_constructs_1 (&this_state, gimple_try_eval_ptr (tp));
1909 if (cleanup_dead || !eh_region_may_contain_throw (this_region))
1910 return gimple_try_eval (tp);
1912 /* Build enough of a try-finally state so that we can reuse
1913 honor_protect_cleanup_actions. */
1914 memset (&fake_tf, 0, sizeof (fake_tf));
1915 fake_tf.top_p = fake_tf.try_finally_expr = tp;
1916 fake_tf.outer = state;
1917 fake_tf.region = this_region;
1918 fake_tf.may_fallthru = gimple_seq_may_fallthru (gimple_try_eval (tp));
1919 fake_tf.may_throw = true;
1921 honor_protect_cleanup_actions (state, NULL, &fake_tf);
1923 if (fake_tf.may_throw)
1925 /* In this case honor_protect_cleanup_actions had nothing to do,
1926 and we should process this normally. */
1927 lower_eh_constructs_1 (state, gimple_try_cleanup_ptr (tp));
1928 result = frob_into_branch_around (tp, this_region,
1929 fake_tf.fallthru_label);
1931 else
1933 /* In this case honor_protect_cleanup_actions did nearly all of
1934 the work. All we have left is to append the fallthru_label. */
1936 result = gimple_try_eval (tp);
1937 if (fake_tf.fallthru_label)
1939 gimple x = gimple_build_label (fake_tf.fallthru_label);
1940 gimple_seq_add_stmt (&result, x);
1943 return result;
1946 /* Main loop for lowering eh constructs. Also moves gsi to the next
1947 statement. */
1949 static void
1950 lower_eh_constructs_2 (struct leh_state *state, gimple_stmt_iterator *gsi)
1952 gimple_seq replace;
1953 gimple x;
1954 gimple stmt = gsi_stmt (*gsi);
1956 switch (gimple_code (stmt))
1958 case GIMPLE_CALL:
1960 tree fndecl = gimple_call_fndecl (stmt);
1961 tree rhs, lhs;
1963 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1964 switch (DECL_FUNCTION_CODE (fndecl))
1966 case BUILT_IN_EH_POINTER:
1967 /* The front end may have generated a call to
1968 __builtin_eh_pointer (0) within a catch region. Replace
1969 this zero argument with the current catch region number. */
1970 if (state->ehp_region)
1972 tree nr = build_int_cst (integer_type_node,
1973 state->ehp_region->index);
1974 gimple_call_set_arg (stmt, 0, nr);
1976 else
1978 /* The user has dome something silly. Remove it. */
1979 rhs = null_pointer_node;
1980 goto do_replace;
1982 break;
1984 case BUILT_IN_EH_FILTER:
1985 /* ??? This should never appear, but since it's a builtin it
1986 is accessible to abuse by users. Just remove it and
1987 replace the use with the arbitrary value zero. */
1988 rhs = build_int_cst (TREE_TYPE (TREE_TYPE (fndecl)), 0);
1989 do_replace:
1990 lhs = gimple_call_lhs (stmt);
1991 x = gimple_build_assign (lhs, rhs);
1992 gsi_insert_before (gsi, x, GSI_SAME_STMT);
1993 /* FALLTHRU */
1995 case BUILT_IN_EH_COPY_VALUES:
1996 /* Likewise this should not appear. Remove it. */
1997 gsi_remove (gsi, true);
1998 return;
2000 default:
2001 break;
2004 /* FALLTHRU */
2006 case GIMPLE_ASSIGN:
2007 /* If the stmt can throw use a new temporary for the assignment
2008 to a LHS. This makes sure the old value of the LHS is
2009 available on the EH edge. Only do so for statements that
2010 potentially fall through (no noreturn calls e.g.), otherwise
2011 this new assignment might create fake fallthru regions. */
2012 if (stmt_could_throw_p (stmt)
2013 && gimple_has_lhs (stmt)
2014 && gimple_stmt_may_fallthru (stmt)
2015 && !tree_could_throw_p (gimple_get_lhs (stmt))
2016 && is_gimple_reg_type (TREE_TYPE (gimple_get_lhs (stmt))))
2018 tree lhs = gimple_get_lhs (stmt);
2019 tree tmp = create_tmp_var (TREE_TYPE (lhs), NULL);
2020 gimple s = gimple_build_assign (lhs, tmp);
2021 gimple_set_location (s, gimple_location (stmt));
2022 gimple_set_block (s, gimple_block (stmt));
2023 gimple_set_lhs (stmt, tmp);
2024 if (TREE_CODE (TREE_TYPE (tmp)) == COMPLEX_TYPE
2025 || TREE_CODE (TREE_TYPE (tmp)) == VECTOR_TYPE)
2026 DECL_GIMPLE_REG_P (tmp) = 1;
2027 gsi_insert_after (gsi, s, GSI_SAME_STMT);
2029 /* Look for things that can throw exceptions, and record them. */
2030 if (state->cur_region && stmt_could_throw_p (stmt))
2032 record_stmt_eh_region (state->cur_region, stmt);
2033 note_eh_region_may_contain_throw (state->cur_region);
2035 break;
2037 case GIMPLE_COND:
2038 case GIMPLE_GOTO:
2039 case GIMPLE_RETURN:
2040 maybe_record_in_goto_queue (state, stmt);
2041 break;
2043 case GIMPLE_SWITCH:
2044 verify_norecord_switch_expr (state, stmt);
2045 break;
2047 case GIMPLE_TRY:
2048 if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
2049 replace = lower_try_finally (state, stmt);
2050 else
2052 x = gimple_seq_first_stmt (gimple_try_cleanup (stmt));
2053 if (!x)
2055 replace = gimple_try_eval (stmt);
2056 lower_eh_constructs_1 (state, &replace);
2058 else
2059 switch (gimple_code (x))
2061 case GIMPLE_CATCH:
2062 replace = lower_catch (state, stmt);
2063 break;
2064 case GIMPLE_EH_FILTER:
2065 replace = lower_eh_filter (state, stmt);
2066 break;
2067 case GIMPLE_EH_MUST_NOT_THROW:
2068 replace = lower_eh_must_not_throw (state, stmt);
2069 break;
2070 case GIMPLE_EH_ELSE:
2071 /* This code is only valid with GIMPLE_TRY_FINALLY. */
2072 gcc_unreachable ();
2073 default:
2074 replace = lower_cleanup (state, stmt);
2075 break;
2079 /* Remove the old stmt and insert the transformed sequence
2080 instead. */
2081 gsi_insert_seq_before (gsi, replace, GSI_SAME_STMT);
2082 gsi_remove (gsi, true);
2084 /* Return since we don't want gsi_next () */
2085 return;
2087 case GIMPLE_EH_ELSE:
2088 /* We should be eliminating this in lower_try_finally et al. */
2089 gcc_unreachable ();
2091 default:
2092 /* A type, a decl, or some kind of statement that we're not
2093 interested in. Don't walk them. */
2094 break;
2097 gsi_next (gsi);
2100 /* A helper to unwrap a gimple_seq and feed stmts to lower_eh_constructs_2. */
2102 static void
2103 lower_eh_constructs_1 (struct leh_state *state, gimple_seq *pseq)
2105 gimple_stmt_iterator gsi;
2106 for (gsi = gsi_start (*pseq); !gsi_end_p (gsi);)
2107 lower_eh_constructs_2 (state, &gsi);
2110 namespace {
2112 const pass_data pass_data_lower_eh =
2114 GIMPLE_PASS, /* type */
2115 "eh", /* name */
2116 OPTGROUP_NONE, /* optinfo_flags */
2117 TV_TREE_EH, /* tv_id */
2118 PROP_gimple_lcf, /* properties_required */
2119 PROP_gimple_leh, /* properties_provided */
2120 0, /* properties_destroyed */
2121 0, /* todo_flags_start */
2122 0, /* todo_flags_finish */
2125 class pass_lower_eh : public gimple_opt_pass
2127 public:
2128 pass_lower_eh (gcc::context *ctxt)
2129 : gimple_opt_pass (pass_data_lower_eh, ctxt)
2132 /* opt_pass methods: */
2133 virtual unsigned int execute (function *);
2135 }; // class pass_lower_eh
2137 unsigned int
2138 pass_lower_eh::execute (function *fun)
2140 struct leh_state null_state;
2141 gimple_seq bodyp;
2143 bodyp = gimple_body (current_function_decl);
2144 if (bodyp == NULL)
2145 return 0;
2147 finally_tree = new hash_table<finally_tree_hasher> (31);
2148 eh_region_may_contain_throw_map = BITMAP_ALLOC (NULL);
2149 memset (&null_state, 0, sizeof (null_state));
2151 collect_finally_tree_1 (bodyp, NULL);
2152 lower_eh_constructs_1 (&null_state, &bodyp);
2153 gimple_set_body (current_function_decl, bodyp);
2155 /* We assume there's a return statement, or something, at the end of
2156 the function, and thus ploping the EH sequence afterward won't
2157 change anything. */
2158 gcc_assert (!gimple_seq_may_fallthru (bodyp));
2159 gimple_seq_add_seq (&bodyp, eh_seq);
2161 /* We assume that since BODYP already existed, adding EH_SEQ to it
2162 didn't change its value, and we don't have to re-set the function. */
2163 gcc_assert (bodyp == gimple_body (current_function_decl));
2165 delete finally_tree;
2166 finally_tree = NULL;
2167 BITMAP_FREE (eh_region_may_contain_throw_map);
2168 eh_seq = NULL;
2170 /* If this function needs a language specific EH personality routine
2171 and the frontend didn't already set one do so now. */
2172 if (function_needs_eh_personality (fun) == eh_personality_lang
2173 && !DECL_FUNCTION_PERSONALITY (current_function_decl))
2174 DECL_FUNCTION_PERSONALITY (current_function_decl)
2175 = lang_hooks.eh_personality ();
2177 return 0;
2180 } // anon namespace
2182 gimple_opt_pass *
2183 make_pass_lower_eh (gcc::context *ctxt)
2185 return new pass_lower_eh (ctxt);
2188 /* Create the multiple edges from an EH_DISPATCH statement to all of
2189 the possible handlers for its EH region. Return true if there's
2190 no fallthru edge; false if there is. */
2192 bool
2193 make_eh_dispatch_edges (gimple stmt)
2195 eh_region r;
2196 eh_catch c;
2197 basic_block src, dst;
2199 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2200 src = gimple_bb (stmt);
2202 switch (r->type)
2204 case ERT_TRY:
2205 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2207 dst = label_to_block (c->label);
2208 make_edge (src, dst, 0);
2210 /* A catch-all handler doesn't have a fallthru. */
2211 if (c->type_list == NULL)
2212 return false;
2214 break;
2216 case ERT_ALLOWED_EXCEPTIONS:
2217 dst = label_to_block (r->u.allowed.label);
2218 make_edge (src, dst, 0);
2219 break;
2221 default:
2222 gcc_unreachable ();
2225 return true;
2228 /* Create the single EH edge from STMT to its nearest landing pad,
2229 if there is such a landing pad within the current function. */
2231 void
2232 make_eh_edges (gimple stmt)
2234 basic_block src, dst;
2235 eh_landing_pad lp;
2236 int lp_nr;
2238 lp_nr = lookup_stmt_eh_lp (stmt);
2239 if (lp_nr <= 0)
2240 return;
2242 lp = get_eh_landing_pad_from_number (lp_nr);
2243 gcc_assert (lp != NULL);
2245 src = gimple_bb (stmt);
2246 dst = label_to_block (lp->post_landing_pad);
2247 make_edge (src, dst, EDGE_EH);
2250 /* Do the work in redirecting EDGE_IN to NEW_BB within the EH region tree;
2251 do not actually perform the final edge redirection.
2253 CHANGE_REGION is true when we're being called from cleanup_empty_eh and
2254 we intend to change the destination EH region as well; this means
2255 EH_LANDING_PAD_NR must already be set on the destination block label.
2256 If false, we're being called from generic cfg manipulation code and we
2257 should preserve our place within the region tree. */
2259 static void
2260 redirect_eh_edge_1 (edge edge_in, basic_block new_bb, bool change_region)
2262 eh_landing_pad old_lp, new_lp;
2263 basic_block old_bb;
2264 gimple throw_stmt;
2265 int old_lp_nr, new_lp_nr;
2266 tree old_label, new_label;
2267 edge_iterator ei;
2268 edge e;
2270 old_bb = edge_in->dest;
2271 old_label = gimple_block_label (old_bb);
2272 old_lp_nr = EH_LANDING_PAD_NR (old_label);
2273 gcc_assert (old_lp_nr > 0);
2274 old_lp = get_eh_landing_pad_from_number (old_lp_nr);
2276 throw_stmt = last_stmt (edge_in->src);
2277 gcc_assert (lookup_stmt_eh_lp (throw_stmt) == old_lp_nr);
2279 new_label = gimple_block_label (new_bb);
2281 /* Look for an existing region that might be using NEW_BB already. */
2282 new_lp_nr = EH_LANDING_PAD_NR (new_label);
2283 if (new_lp_nr)
2285 new_lp = get_eh_landing_pad_from_number (new_lp_nr);
2286 gcc_assert (new_lp);
2288 /* Unless CHANGE_REGION is true, the new and old landing pad
2289 had better be associated with the same EH region. */
2290 gcc_assert (change_region || new_lp->region == old_lp->region);
2292 else
2294 new_lp = NULL;
2295 gcc_assert (!change_region);
2298 /* Notice when we redirect the last EH edge away from OLD_BB. */
2299 FOR_EACH_EDGE (e, ei, old_bb->preds)
2300 if (e != edge_in && (e->flags & EDGE_EH))
2301 break;
2303 if (new_lp)
2305 /* NEW_LP already exists. If there are still edges into OLD_LP,
2306 there's nothing to do with the EH tree. If there are no more
2307 edges into OLD_LP, then we want to remove OLD_LP as it is unused.
2308 If CHANGE_REGION is true, then our caller is expecting to remove
2309 the landing pad. */
2310 if (e == NULL && !change_region)
2311 remove_eh_landing_pad (old_lp);
2313 else
2315 /* No correct landing pad exists. If there are no more edges
2316 into OLD_LP, then we can simply re-use the existing landing pad.
2317 Otherwise, we have to create a new landing pad. */
2318 if (e == NULL)
2320 EH_LANDING_PAD_NR (old_lp->post_landing_pad) = 0;
2321 new_lp = old_lp;
2323 else
2324 new_lp = gen_eh_landing_pad (old_lp->region);
2325 new_lp->post_landing_pad = new_label;
2326 EH_LANDING_PAD_NR (new_label) = new_lp->index;
2329 /* Maybe move the throwing statement to the new region. */
2330 if (old_lp != new_lp)
2332 remove_stmt_from_eh_lp (throw_stmt);
2333 add_stmt_to_eh_lp (throw_stmt, new_lp->index);
2337 /* Redirect EH edge E to NEW_BB. */
2339 edge
2340 redirect_eh_edge (edge edge_in, basic_block new_bb)
2342 redirect_eh_edge_1 (edge_in, new_bb, false);
2343 return ssa_redirect_edge (edge_in, new_bb);
2346 /* This is a subroutine of gimple_redirect_edge_and_branch. Update the
2347 labels for redirecting a non-fallthru EH_DISPATCH edge E to NEW_BB.
2348 The actual edge update will happen in the caller. */
2350 void
2351 redirect_eh_dispatch_edge (gimple stmt, edge e, basic_block new_bb)
2353 tree new_lab = gimple_block_label (new_bb);
2354 bool any_changed = false;
2355 basic_block old_bb;
2356 eh_region r;
2357 eh_catch c;
2359 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
2360 switch (r->type)
2362 case ERT_TRY:
2363 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
2365 old_bb = label_to_block (c->label);
2366 if (old_bb == e->dest)
2368 c->label = new_lab;
2369 any_changed = true;
2372 break;
2374 case ERT_ALLOWED_EXCEPTIONS:
2375 old_bb = label_to_block (r->u.allowed.label);
2376 gcc_assert (old_bb == e->dest);
2377 r->u.allowed.label = new_lab;
2378 any_changed = true;
2379 break;
2381 default:
2382 gcc_unreachable ();
2385 gcc_assert (any_changed);
2388 /* Helper function for operation_could_trap_p and stmt_could_throw_p. */
2390 bool
2391 operation_could_trap_helper_p (enum tree_code op,
2392 bool fp_operation,
2393 bool honor_trapv,
2394 bool honor_nans,
2395 bool honor_snans,
2396 tree divisor,
2397 bool *handled)
2399 *handled = true;
2400 switch (op)
2402 case TRUNC_DIV_EXPR:
2403 case CEIL_DIV_EXPR:
2404 case FLOOR_DIV_EXPR:
2405 case ROUND_DIV_EXPR:
2406 case EXACT_DIV_EXPR:
2407 case CEIL_MOD_EXPR:
2408 case FLOOR_MOD_EXPR:
2409 case ROUND_MOD_EXPR:
2410 case TRUNC_MOD_EXPR:
2411 case RDIV_EXPR:
2412 if (honor_snans || honor_trapv)
2413 return true;
2414 if (fp_operation)
2415 return flag_trapping_math;
2416 if (!TREE_CONSTANT (divisor) || integer_zerop (divisor))
2417 return true;
2418 return false;
2420 case LT_EXPR:
2421 case LE_EXPR:
2422 case GT_EXPR:
2423 case GE_EXPR:
2424 case LTGT_EXPR:
2425 /* Some floating point comparisons may trap. */
2426 return honor_nans;
2428 case EQ_EXPR:
2429 case NE_EXPR:
2430 case UNORDERED_EXPR:
2431 case ORDERED_EXPR:
2432 case UNLT_EXPR:
2433 case UNLE_EXPR:
2434 case UNGT_EXPR:
2435 case UNGE_EXPR:
2436 case UNEQ_EXPR:
2437 return honor_snans;
2439 case CONVERT_EXPR:
2440 case FIX_TRUNC_EXPR:
2441 /* Conversion of floating point might trap. */
2442 return honor_nans;
2444 case NEGATE_EXPR:
2445 case ABS_EXPR:
2446 case CONJ_EXPR:
2447 /* These operations don't trap with floating point. */
2448 if (honor_trapv)
2449 return true;
2450 return false;
2452 case PLUS_EXPR:
2453 case MINUS_EXPR:
2454 case MULT_EXPR:
2455 /* Any floating arithmetic may trap. */
2456 if (fp_operation && flag_trapping_math)
2457 return true;
2458 if (honor_trapv)
2459 return true;
2460 return false;
2462 case COMPLEX_EXPR:
2463 case CONSTRUCTOR:
2464 /* Constructing an object cannot trap. */
2465 return false;
2467 default:
2468 /* Any floating arithmetic may trap. */
2469 if (fp_operation && flag_trapping_math)
2470 return true;
2472 *handled = false;
2473 return false;
2477 /* Return true if operation OP may trap. FP_OPERATION is true if OP is applied
2478 on floating-point values. HONOR_TRAPV is true if OP is applied on integer
2479 type operands that may trap. If OP is a division operator, DIVISOR contains
2480 the value of the divisor. */
2482 bool
2483 operation_could_trap_p (enum tree_code op, bool fp_operation, bool honor_trapv,
2484 tree divisor)
2486 bool honor_nans = (fp_operation && flag_trapping_math
2487 && !flag_finite_math_only);
2488 bool honor_snans = fp_operation && flag_signaling_nans != 0;
2489 bool handled;
2491 if (TREE_CODE_CLASS (op) != tcc_comparison
2492 && TREE_CODE_CLASS (op) != tcc_unary
2493 && TREE_CODE_CLASS (op) != tcc_binary)
2494 return false;
2496 return operation_could_trap_helper_p (op, fp_operation, honor_trapv,
2497 honor_nans, honor_snans, divisor,
2498 &handled);
2502 /* Returns true if it is possible to prove that the index of
2503 an array access REF (an ARRAY_REF expression) falls into the
2504 array bounds. */
2506 static bool
2507 in_array_bounds_p (tree ref)
2509 tree idx = TREE_OPERAND (ref, 1);
2510 tree min, max;
2512 if (TREE_CODE (idx) != INTEGER_CST)
2513 return false;
2515 min = array_ref_low_bound (ref);
2516 max = array_ref_up_bound (ref);
2517 if (!min
2518 || !max
2519 || TREE_CODE (min) != INTEGER_CST
2520 || TREE_CODE (max) != INTEGER_CST)
2521 return false;
2523 if (tree_int_cst_lt (idx, min)
2524 || tree_int_cst_lt (max, idx))
2525 return false;
2527 return true;
2530 /* Returns true if it is possible to prove that the range of
2531 an array access REF (an ARRAY_RANGE_REF expression) falls
2532 into the array bounds. */
2534 static bool
2535 range_in_array_bounds_p (tree ref)
2537 tree domain_type = TYPE_DOMAIN (TREE_TYPE (ref));
2538 tree range_min, range_max, min, max;
2540 range_min = TYPE_MIN_VALUE (domain_type);
2541 range_max = TYPE_MAX_VALUE (domain_type);
2542 if (!range_min
2543 || !range_max
2544 || TREE_CODE (range_min) != INTEGER_CST
2545 || TREE_CODE (range_max) != INTEGER_CST)
2546 return false;
2548 min = array_ref_low_bound (ref);
2549 max = array_ref_up_bound (ref);
2550 if (!min
2551 || !max
2552 || TREE_CODE (min) != INTEGER_CST
2553 || TREE_CODE (max) != INTEGER_CST)
2554 return false;
2556 if (tree_int_cst_lt (range_min, min)
2557 || tree_int_cst_lt (max, range_max))
2558 return false;
2560 return true;
2563 /* Return true if EXPR can trap, as in dereferencing an invalid pointer
2564 location or floating point arithmetic. C.f. the rtl version, may_trap_p.
2565 This routine expects only GIMPLE lhs or rhs input. */
2567 bool
2568 tree_could_trap_p (tree expr)
2570 enum tree_code code;
2571 bool fp_operation = false;
2572 bool honor_trapv = false;
2573 tree t, base, div = NULL_TREE;
2575 if (!expr)
2576 return false;
2578 code = TREE_CODE (expr);
2579 t = TREE_TYPE (expr);
2581 if (t)
2583 if (COMPARISON_CLASS_P (expr))
2584 fp_operation = FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (expr, 0)));
2585 else
2586 fp_operation = FLOAT_TYPE_P (t);
2587 honor_trapv = INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t);
2590 if (TREE_CODE_CLASS (code) == tcc_binary)
2591 div = TREE_OPERAND (expr, 1);
2592 if (operation_could_trap_p (code, fp_operation, honor_trapv, div))
2593 return true;
2595 restart:
2596 switch (code)
2598 case COMPONENT_REF:
2599 case REALPART_EXPR:
2600 case IMAGPART_EXPR:
2601 case BIT_FIELD_REF:
2602 case VIEW_CONVERT_EXPR:
2603 case WITH_SIZE_EXPR:
2604 expr = TREE_OPERAND (expr, 0);
2605 code = TREE_CODE (expr);
2606 goto restart;
2608 case ARRAY_RANGE_REF:
2609 base = TREE_OPERAND (expr, 0);
2610 if (tree_could_trap_p (base))
2611 return true;
2612 if (TREE_THIS_NOTRAP (expr))
2613 return false;
2614 return !range_in_array_bounds_p (expr);
2616 case ARRAY_REF:
2617 base = TREE_OPERAND (expr, 0);
2618 if (tree_could_trap_p (base))
2619 return true;
2620 if (TREE_THIS_NOTRAP (expr))
2621 return false;
2622 return !in_array_bounds_p (expr);
2624 case TARGET_MEM_REF:
2625 case MEM_REF:
2626 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR
2627 && tree_could_trap_p (TREE_OPERAND (TREE_OPERAND (expr, 0), 0)))
2628 return true;
2629 if (TREE_THIS_NOTRAP (expr))
2630 return false;
2631 /* We cannot prove that the access is in-bounds when we have
2632 variable-index TARGET_MEM_REFs. */
2633 if (code == TARGET_MEM_REF
2634 && (TMR_INDEX (expr) || TMR_INDEX2 (expr)))
2635 return true;
2636 if (TREE_CODE (TREE_OPERAND (expr, 0)) == ADDR_EXPR)
2638 tree base = TREE_OPERAND (TREE_OPERAND (expr, 0), 0);
2639 offset_int off = mem_ref_offset (expr);
2640 if (wi::neg_p (off, SIGNED))
2641 return true;
2642 if (TREE_CODE (base) == STRING_CST)
2643 return wi::leu_p (TREE_STRING_LENGTH (base), off);
2644 else if (DECL_SIZE_UNIT (base) == NULL_TREE
2645 || TREE_CODE (DECL_SIZE_UNIT (base)) != INTEGER_CST
2646 || wi::leu_p (wi::to_offset (DECL_SIZE_UNIT (base)), off))
2647 return true;
2648 /* Now we are sure the first byte of the access is inside
2649 the object. */
2650 return false;
2652 return true;
2654 case INDIRECT_REF:
2655 return !TREE_THIS_NOTRAP (expr);
2657 case ASM_EXPR:
2658 return TREE_THIS_VOLATILE (expr);
2660 case CALL_EXPR:
2661 t = get_callee_fndecl (expr);
2662 /* Assume that calls to weak functions may trap. */
2663 if (!t || !DECL_P (t))
2664 return true;
2665 if (DECL_WEAK (t))
2666 return tree_could_trap_p (t);
2667 return false;
2669 case FUNCTION_DECL:
2670 /* Assume that accesses to weak functions may trap, unless we know
2671 they are certainly defined in current TU or in some other
2672 LTO partition. */
2673 if (DECL_WEAK (expr) && !DECL_COMDAT (expr) && DECL_EXTERNAL (expr))
2675 cgraph_node *node = cgraph_node::get (expr);
2676 if (node)
2677 node = node->function_symbol ();
2678 return !(node && node->in_other_partition);
2680 return false;
2682 case VAR_DECL:
2683 /* Assume that accesses to weak vars 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) && DECL_EXTERNAL (expr))
2688 varpool_node *node = varpool_node::get (expr);
2689 if (node)
2690 node = node->ultimate_alias_target ();
2691 return !(node && node->in_other_partition);
2693 return false;
2695 default:
2696 return false;
2701 /* Helper for stmt_could_throw_p. Return true if STMT (assumed to be a
2702 an assignment or a conditional) may throw. */
2704 static bool
2705 stmt_could_throw_1_p (gimple stmt)
2707 enum tree_code code = gimple_expr_code (stmt);
2708 bool honor_nans = false;
2709 bool honor_snans = false;
2710 bool fp_operation = false;
2711 bool honor_trapv = false;
2712 tree t;
2713 size_t i;
2714 bool handled, ret;
2716 if (TREE_CODE_CLASS (code) == tcc_comparison
2717 || TREE_CODE_CLASS (code) == tcc_unary
2718 || TREE_CODE_CLASS (code) == tcc_binary)
2720 if (is_gimple_assign (stmt)
2721 && TREE_CODE_CLASS (code) == tcc_comparison)
2722 t = TREE_TYPE (gimple_assign_rhs1 (stmt));
2723 else if (gimple_code (stmt) == GIMPLE_COND)
2724 t = TREE_TYPE (gimple_cond_lhs (stmt));
2725 else
2726 t = gimple_expr_type (stmt);
2727 fp_operation = FLOAT_TYPE_P (t);
2728 if (fp_operation)
2730 honor_nans = flag_trapping_math && !flag_finite_math_only;
2731 honor_snans = flag_signaling_nans != 0;
2733 else if (INTEGRAL_TYPE_P (t) && TYPE_OVERFLOW_TRAPS (t))
2734 honor_trapv = true;
2737 /* Check if the main expression may trap. */
2738 t = is_gimple_assign (stmt) ? gimple_assign_rhs2 (stmt) : NULL;
2739 ret = operation_could_trap_helper_p (code, fp_operation, honor_trapv,
2740 honor_nans, honor_snans, t,
2741 &handled);
2742 if (handled)
2743 return ret;
2745 /* If the expression does not trap, see if any of the individual operands may
2746 trap. */
2747 for (i = 0; i < gimple_num_ops (stmt); i++)
2748 if (tree_could_trap_p (gimple_op (stmt, i)))
2749 return true;
2751 return false;
2755 /* Return true if statement STMT could throw an exception. */
2757 bool
2758 stmt_could_throw_p (gimple stmt)
2760 if (!flag_exceptions)
2761 return false;
2763 /* The only statements that can throw an exception are assignments,
2764 conditionals, calls, resx, and asms. */
2765 switch (gimple_code (stmt))
2767 case GIMPLE_RESX:
2768 return true;
2770 case GIMPLE_CALL:
2771 return !gimple_call_nothrow_p (stmt);
2773 case GIMPLE_ASSIGN:
2774 case GIMPLE_COND:
2775 if (!cfun->can_throw_non_call_exceptions)
2776 return false;
2777 return stmt_could_throw_1_p (stmt);
2779 case GIMPLE_ASM:
2780 if (!cfun->can_throw_non_call_exceptions)
2781 return false;
2782 return gimple_asm_volatile_p (stmt);
2784 default:
2785 return false;
2790 /* Return true if expression T could throw an exception. */
2792 bool
2793 tree_could_throw_p (tree t)
2795 if (!flag_exceptions)
2796 return false;
2797 if (TREE_CODE (t) == MODIFY_EXPR)
2799 if (cfun->can_throw_non_call_exceptions
2800 && tree_could_trap_p (TREE_OPERAND (t, 0)))
2801 return true;
2802 t = TREE_OPERAND (t, 1);
2805 if (TREE_CODE (t) == WITH_SIZE_EXPR)
2806 t = TREE_OPERAND (t, 0);
2807 if (TREE_CODE (t) == CALL_EXPR)
2808 return (call_expr_flags (t) & ECF_NOTHROW) == 0;
2809 if (cfun->can_throw_non_call_exceptions)
2810 return tree_could_trap_p (t);
2811 return false;
2814 /* Return true if STMT can throw an exception that is not caught within
2815 the current function (CFUN). */
2817 bool
2818 stmt_can_throw_external (gimple stmt)
2820 int lp_nr;
2822 if (!stmt_could_throw_p (stmt))
2823 return false;
2825 lp_nr = lookup_stmt_eh_lp (stmt);
2826 return lp_nr == 0;
2829 /* Return true if STMT can throw an exception that is caught within
2830 the current function (CFUN). */
2832 bool
2833 stmt_can_throw_internal (gimple stmt)
2835 int lp_nr;
2837 if (!stmt_could_throw_p (stmt))
2838 return false;
2840 lp_nr = lookup_stmt_eh_lp (stmt);
2841 return lp_nr > 0;
2844 /* Given a statement STMT in IFUN, if STMT can no longer throw, then
2845 remove any entry it might have from the EH table. Return true if
2846 any change was made. */
2848 bool
2849 maybe_clean_eh_stmt_fn (struct function *ifun, gimple stmt)
2851 if (stmt_could_throw_p (stmt))
2852 return false;
2853 return remove_stmt_from_eh_lp_fn (ifun, stmt);
2856 /* Likewise, but always use the current function. */
2858 bool
2859 maybe_clean_eh_stmt (gimple stmt)
2861 return maybe_clean_eh_stmt_fn (cfun, stmt);
2864 /* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced
2865 OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT
2866 in the table if it should be in there. Return TRUE if a replacement was
2867 done that my require an EH edge purge. */
2869 bool
2870 maybe_clean_or_replace_eh_stmt (gimple old_stmt, gimple new_stmt)
2872 int lp_nr = lookup_stmt_eh_lp (old_stmt);
2874 if (lp_nr != 0)
2876 bool new_stmt_could_throw = stmt_could_throw_p (new_stmt);
2878 if (new_stmt == old_stmt && new_stmt_could_throw)
2879 return false;
2881 remove_stmt_from_eh_lp (old_stmt);
2882 if (new_stmt_could_throw)
2884 add_stmt_to_eh_lp (new_stmt, lp_nr);
2885 return false;
2887 else
2888 return true;
2891 return false;
2894 /* Given a statement OLD_STMT in OLD_FUN and a duplicate statement NEW_STMT
2895 in NEW_FUN, copy the EH table data from OLD_STMT to NEW_STMT. The MAP
2896 operand is the return value of duplicate_eh_regions. */
2898 bool
2899 maybe_duplicate_eh_stmt_fn (struct function *new_fun, gimple new_stmt,
2900 struct function *old_fun, gimple old_stmt,
2901 hash_map<void *, void *> *map,
2902 int default_lp_nr)
2904 int old_lp_nr, new_lp_nr;
2906 if (!stmt_could_throw_p (new_stmt))
2907 return false;
2909 old_lp_nr = lookup_stmt_eh_lp_fn (old_fun, old_stmt);
2910 if (old_lp_nr == 0)
2912 if (default_lp_nr == 0)
2913 return false;
2914 new_lp_nr = default_lp_nr;
2916 else if (old_lp_nr > 0)
2918 eh_landing_pad old_lp, new_lp;
2920 old_lp = (*old_fun->eh->lp_array)[old_lp_nr];
2921 new_lp = static_cast<eh_landing_pad> (*map->get (old_lp));
2922 new_lp_nr = new_lp->index;
2924 else
2926 eh_region old_r, new_r;
2928 old_r = (*old_fun->eh->region_array)[-old_lp_nr];
2929 new_r = static_cast<eh_region> (*map->get (old_r));
2930 new_lp_nr = -new_r->index;
2933 add_stmt_to_eh_lp_fn (new_fun, new_stmt, new_lp_nr);
2934 return true;
2937 /* Similar, but both OLD_STMT and NEW_STMT are within the current function,
2938 and thus no remapping is required. */
2940 bool
2941 maybe_duplicate_eh_stmt (gimple new_stmt, gimple old_stmt)
2943 int lp_nr;
2945 if (!stmt_could_throw_p (new_stmt))
2946 return false;
2948 lp_nr = lookup_stmt_eh_lp (old_stmt);
2949 if (lp_nr == 0)
2950 return false;
2952 add_stmt_to_eh_lp (new_stmt, lp_nr);
2953 return true;
2956 /* Returns TRUE if oneh and twoh are exception handlers (gimple_try_cleanup of
2957 GIMPLE_TRY) that are similar enough to be considered the same. Currently
2958 this only handles handlers consisting of a single call, as that's the
2959 important case for C++: a destructor call for a particular object showing
2960 up in multiple handlers. */
2962 static bool
2963 same_handler_p (gimple_seq oneh, gimple_seq twoh)
2965 gimple_stmt_iterator gsi;
2966 gimple ones, twos;
2967 unsigned int ai;
2969 gsi = gsi_start (oneh);
2970 if (!gsi_one_before_end_p (gsi))
2971 return false;
2972 ones = gsi_stmt (gsi);
2974 gsi = gsi_start (twoh);
2975 if (!gsi_one_before_end_p (gsi))
2976 return false;
2977 twos = gsi_stmt (gsi);
2979 if (!is_gimple_call (ones)
2980 || !is_gimple_call (twos)
2981 || gimple_call_lhs (ones)
2982 || gimple_call_lhs (twos)
2983 || gimple_call_chain (ones)
2984 || gimple_call_chain (twos)
2985 || !gimple_call_same_target_p (ones, twos)
2986 || gimple_call_num_args (ones) != gimple_call_num_args (twos))
2987 return false;
2989 for (ai = 0; ai < gimple_call_num_args (ones); ++ai)
2990 if (!operand_equal_p (gimple_call_arg (ones, ai),
2991 gimple_call_arg (twos, ai), 0))
2992 return false;
2994 return true;
2997 /* Optimize
2998 try { A() } finally { try { ~B() } catch { ~A() } }
2999 try { ... } finally { ~A() }
3000 into
3001 try { A() } catch { ~B() }
3002 try { ~B() ... } finally { ~A() }
3004 This occurs frequently in C++, where A is a local variable and B is a
3005 temporary used in the initializer for A. */
3007 static void
3008 optimize_double_finally (gimple one, gimple two)
3010 gimple oneh;
3011 gimple_stmt_iterator gsi;
3012 gimple_seq cleanup;
3014 cleanup = gimple_try_cleanup (one);
3015 gsi = gsi_start (cleanup);
3016 if (!gsi_one_before_end_p (gsi))
3017 return;
3019 oneh = gsi_stmt (gsi);
3020 if (gimple_code (oneh) != GIMPLE_TRY
3021 || gimple_try_kind (oneh) != GIMPLE_TRY_CATCH)
3022 return;
3024 if (same_handler_p (gimple_try_cleanup (oneh), gimple_try_cleanup (two)))
3026 gimple_seq seq = gimple_try_eval (oneh);
3028 gimple_try_set_cleanup (one, seq);
3029 gimple_try_set_kind (one, GIMPLE_TRY_CATCH);
3030 seq = copy_gimple_seq_and_replace_locals (seq);
3031 gimple_seq_add_seq (&seq, gimple_try_eval (two));
3032 gimple_try_set_eval (two, seq);
3036 /* Perform EH refactoring optimizations that are simpler to do when code
3037 flow has been lowered but EH structures haven't. */
3039 static void
3040 refactor_eh_r (gimple_seq seq)
3042 gimple_stmt_iterator gsi;
3043 gimple one, two;
3045 one = NULL;
3046 two = NULL;
3047 gsi = gsi_start (seq);
3048 while (1)
3050 one = two;
3051 if (gsi_end_p (gsi))
3052 two = NULL;
3053 else
3054 two = gsi_stmt (gsi);
3055 if (one
3056 && two
3057 && gimple_code (one) == GIMPLE_TRY
3058 && gimple_code (two) == GIMPLE_TRY
3059 && gimple_try_kind (one) == GIMPLE_TRY_FINALLY
3060 && gimple_try_kind (two) == GIMPLE_TRY_FINALLY)
3061 optimize_double_finally (one, two);
3062 if (one)
3063 switch (gimple_code (one))
3065 case GIMPLE_TRY:
3066 refactor_eh_r (gimple_try_eval (one));
3067 refactor_eh_r (gimple_try_cleanup (one));
3068 break;
3069 case GIMPLE_CATCH:
3070 refactor_eh_r (gimple_catch_handler (one));
3071 break;
3072 case GIMPLE_EH_FILTER:
3073 refactor_eh_r (gimple_eh_filter_failure (one));
3074 break;
3075 case GIMPLE_EH_ELSE:
3076 refactor_eh_r (gimple_eh_else_n_body (one));
3077 refactor_eh_r (gimple_eh_else_e_body (one));
3078 break;
3079 default:
3080 break;
3082 if (two)
3083 gsi_next (&gsi);
3084 else
3085 break;
3089 namespace {
3091 const pass_data pass_data_refactor_eh =
3093 GIMPLE_PASS, /* type */
3094 "ehopt", /* name */
3095 OPTGROUP_NONE, /* optinfo_flags */
3096 TV_TREE_EH, /* tv_id */
3097 PROP_gimple_lcf, /* properties_required */
3098 0, /* properties_provided */
3099 0, /* properties_destroyed */
3100 0, /* todo_flags_start */
3101 0, /* todo_flags_finish */
3104 class pass_refactor_eh : public gimple_opt_pass
3106 public:
3107 pass_refactor_eh (gcc::context *ctxt)
3108 : gimple_opt_pass (pass_data_refactor_eh, ctxt)
3111 /* opt_pass methods: */
3112 virtual bool gate (function *) { return flag_exceptions != 0; }
3113 virtual unsigned int execute (function *)
3115 refactor_eh_r (gimple_body (current_function_decl));
3116 return 0;
3119 }; // class pass_refactor_eh
3121 } // anon namespace
3123 gimple_opt_pass *
3124 make_pass_refactor_eh (gcc::context *ctxt)
3126 return new pass_refactor_eh (ctxt);
3129 /* At the end of gimple optimization, we can lower RESX. */
3131 static bool
3132 lower_resx (basic_block bb, gimple stmt, hash_map<eh_region, tree> *mnt_map)
3134 int lp_nr;
3135 eh_region src_r, dst_r;
3136 gimple_stmt_iterator gsi;
3137 gimple x;
3138 tree fn, src_nr;
3139 bool ret = false;
3141 lp_nr = lookup_stmt_eh_lp (stmt);
3142 if (lp_nr != 0)
3143 dst_r = get_eh_region_from_lp_number (lp_nr);
3144 else
3145 dst_r = NULL;
3147 src_r = get_eh_region_from_number (gimple_resx_region (stmt));
3148 gsi = gsi_last_bb (bb);
3150 if (src_r == NULL)
3152 /* We can wind up with no source region when pass_cleanup_eh shows
3153 that there are no entries into an eh region and deletes it, but
3154 then the block that contains the resx isn't removed. This can
3155 happen without optimization when the switch statement created by
3156 lower_try_finally_switch isn't simplified to remove the eh case.
3158 Resolve this by expanding the resx node to an abort. */
3160 fn = builtin_decl_implicit (BUILT_IN_TRAP);
3161 x = gimple_build_call (fn, 0);
3162 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3164 while (EDGE_COUNT (bb->succs) > 0)
3165 remove_edge (EDGE_SUCC (bb, 0));
3167 else if (dst_r)
3169 /* When we have a destination region, we resolve this by copying
3170 the excptr and filter values into place, and changing the edge
3171 to immediately after the landing pad. */
3172 edge e;
3174 if (lp_nr < 0)
3176 basic_block new_bb;
3177 tree lab;
3179 /* We are resuming into a MUST_NOT_CALL region. Expand a call to
3180 the failure decl into a new block, if needed. */
3181 gcc_assert (dst_r->type == ERT_MUST_NOT_THROW);
3183 tree *slot = mnt_map->get (dst_r);
3184 if (slot == NULL)
3186 gimple_stmt_iterator gsi2;
3188 new_bb = create_empty_bb (bb);
3189 add_bb_to_loop (new_bb, bb->loop_father);
3190 lab = gimple_block_label (new_bb);
3191 gsi2 = gsi_start_bb (new_bb);
3193 fn = dst_r->u.must_not_throw.failure_decl;
3194 x = gimple_build_call (fn, 0);
3195 gimple_set_location (x, dst_r->u.must_not_throw.failure_loc);
3196 gsi_insert_after (&gsi2, x, GSI_CONTINUE_LINKING);
3198 mnt_map->put (dst_r, lab);
3200 else
3202 lab = *slot;
3203 new_bb = label_to_block (lab);
3206 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3207 e = make_edge (bb, new_bb, EDGE_FALLTHRU);
3208 e->count = bb->count;
3209 e->probability = REG_BR_PROB_BASE;
3211 else
3213 edge_iterator ei;
3214 tree dst_nr = build_int_cst (integer_type_node, dst_r->index);
3216 fn = builtin_decl_implicit (BUILT_IN_EH_COPY_VALUES);
3217 src_nr = build_int_cst (integer_type_node, src_r->index);
3218 x = gimple_build_call (fn, 2, dst_nr, src_nr);
3219 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3221 /* Update the flags for the outgoing edge. */
3222 e = single_succ_edge (bb);
3223 gcc_assert (e->flags & EDGE_EH);
3224 e->flags = (e->flags & ~EDGE_EH) | EDGE_FALLTHRU;
3226 /* If there are no more EH users of the landing pad, delete it. */
3227 FOR_EACH_EDGE (e, ei, e->dest->preds)
3228 if (e->flags & EDGE_EH)
3229 break;
3230 if (e == NULL)
3232 eh_landing_pad lp = get_eh_landing_pad_from_number (lp_nr);
3233 remove_eh_landing_pad (lp);
3237 ret = true;
3239 else
3241 tree var;
3243 /* When we don't have a destination region, this exception escapes
3244 up the call chain. We resolve this by generating a call to the
3245 _Unwind_Resume library function. */
3247 /* The ARM EABI redefines _Unwind_Resume as __cxa_end_cleanup
3248 with no arguments for C++ and Java. Check for that. */
3249 if (src_r->use_cxa_end_cleanup)
3251 fn = builtin_decl_implicit (BUILT_IN_CXA_END_CLEANUP);
3252 x = gimple_build_call (fn, 0);
3253 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3255 else
3257 fn = builtin_decl_implicit (BUILT_IN_EH_POINTER);
3258 src_nr = build_int_cst (integer_type_node, src_r->index);
3259 x = gimple_build_call (fn, 1, src_nr);
3260 var = create_tmp_var (ptr_type_node, NULL);
3261 var = make_ssa_name (var, x);
3262 gimple_call_set_lhs (x, var);
3263 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3265 fn = builtin_decl_implicit (BUILT_IN_UNWIND_RESUME);
3266 x = gimple_build_call (fn, 1, var);
3267 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3270 gcc_assert (EDGE_COUNT (bb->succs) == 0);
3273 gsi_remove (&gsi, true);
3275 return ret;
3278 namespace {
3280 const pass_data pass_data_lower_resx =
3282 GIMPLE_PASS, /* type */
3283 "resx", /* name */
3284 OPTGROUP_NONE, /* optinfo_flags */
3285 TV_TREE_EH, /* tv_id */
3286 PROP_gimple_lcf, /* properties_required */
3287 0, /* properties_provided */
3288 0, /* properties_destroyed */
3289 0, /* todo_flags_start */
3290 0, /* todo_flags_finish */
3293 class pass_lower_resx : public gimple_opt_pass
3295 public:
3296 pass_lower_resx (gcc::context *ctxt)
3297 : gimple_opt_pass (pass_data_lower_resx, ctxt)
3300 /* opt_pass methods: */
3301 virtual bool gate (function *) { return flag_exceptions != 0; }
3302 virtual unsigned int execute (function *);
3304 }; // class pass_lower_resx
3306 unsigned
3307 pass_lower_resx::execute (function *fun)
3309 basic_block bb;
3310 bool dominance_invalidated = false;
3311 bool any_rewritten = false;
3313 hash_map<eh_region, tree> mnt_map;
3315 FOR_EACH_BB_FN (bb, fun)
3317 gimple last = last_stmt (bb);
3318 if (last && is_gimple_resx (last))
3320 dominance_invalidated |= lower_resx (bb, last, &mnt_map);
3321 any_rewritten = true;
3325 if (dominance_invalidated)
3327 free_dominance_info (CDI_DOMINATORS);
3328 free_dominance_info (CDI_POST_DOMINATORS);
3331 return any_rewritten ? TODO_update_ssa_only_virtuals : 0;
3334 } // anon namespace
3336 gimple_opt_pass *
3337 make_pass_lower_resx (gcc::context *ctxt)
3339 return new pass_lower_resx (ctxt);
3342 /* Try to optimize var = {v} {CLOBBER} stmts followed just by
3343 external throw. */
3345 static void
3346 optimize_clobbers (basic_block bb)
3348 gimple_stmt_iterator gsi = gsi_last_bb (bb);
3349 bool any_clobbers = false;
3350 bool seen_stack_restore = false;
3351 edge_iterator ei;
3352 edge e;
3354 /* Only optimize anything if the bb contains at least one clobber,
3355 ends with resx (checked by caller), optionally contains some
3356 debug stmts or labels, or at most one __builtin_stack_restore
3357 call, and has an incoming EH edge. */
3358 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3360 gimple stmt = gsi_stmt (gsi);
3361 if (is_gimple_debug (stmt))
3362 continue;
3363 if (gimple_clobber_p (stmt))
3365 any_clobbers = true;
3366 continue;
3368 if (!seen_stack_restore
3369 && gimple_call_builtin_p (stmt, BUILT_IN_STACK_RESTORE))
3371 seen_stack_restore = true;
3372 continue;
3374 if (gimple_code (stmt) == GIMPLE_LABEL)
3375 break;
3376 return;
3378 if (!any_clobbers)
3379 return;
3380 FOR_EACH_EDGE (e, ei, bb->preds)
3381 if (e->flags & EDGE_EH)
3382 break;
3383 if (e == NULL)
3384 return;
3385 gsi = gsi_last_bb (bb);
3386 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3388 gimple stmt = gsi_stmt (gsi);
3389 if (!gimple_clobber_p (stmt))
3390 continue;
3391 unlink_stmt_vdef (stmt);
3392 gsi_remove (&gsi, true);
3393 release_defs (stmt);
3397 /* Try to sink var = {v} {CLOBBER} stmts followed just by
3398 internal throw to successor BB. */
3400 static int
3401 sink_clobbers (basic_block bb)
3403 edge e;
3404 edge_iterator ei;
3405 gimple_stmt_iterator gsi, dgsi;
3406 basic_block succbb;
3407 bool any_clobbers = false;
3408 unsigned todo = 0;
3410 /* Only optimize if BB has a single EH successor and
3411 all predecessor edges are EH too. */
3412 if (!single_succ_p (bb)
3413 || (single_succ_edge (bb)->flags & EDGE_EH) == 0)
3414 return 0;
3416 FOR_EACH_EDGE (e, ei, bb->preds)
3418 if ((e->flags & EDGE_EH) == 0)
3419 return 0;
3422 /* And BB contains only CLOBBER stmts before the final
3423 RESX. */
3424 gsi = gsi_last_bb (bb);
3425 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3427 gimple stmt = gsi_stmt (gsi);
3428 if (is_gimple_debug (stmt))
3429 continue;
3430 if (gimple_code (stmt) == GIMPLE_LABEL)
3431 break;
3432 if (!gimple_clobber_p (stmt))
3433 return 0;
3434 any_clobbers = true;
3436 if (!any_clobbers)
3437 return 0;
3439 edge succe = single_succ_edge (bb);
3440 succbb = succe->dest;
3442 /* See if there is a virtual PHI node to take an updated virtual
3443 operand from. */
3444 gimple vphi = NULL;
3445 tree vuse = NULL_TREE;
3446 for (gsi = gsi_start_phis (succbb); !gsi_end_p (gsi); gsi_next (&gsi))
3448 tree res = gimple_phi_result (gsi_stmt (gsi));
3449 if (virtual_operand_p (res))
3451 vphi = gsi_stmt (gsi);
3452 vuse = res;
3453 break;
3457 dgsi = gsi_after_labels (succbb);
3458 gsi = gsi_last_bb (bb);
3459 for (gsi_prev (&gsi); !gsi_end_p (gsi); gsi_prev (&gsi))
3461 gimple stmt = gsi_stmt (gsi);
3462 tree lhs;
3463 if (is_gimple_debug (stmt))
3464 continue;
3465 if (gimple_code (stmt) == GIMPLE_LABEL)
3466 break;
3467 lhs = gimple_assign_lhs (stmt);
3468 /* Unfortunately we don't have dominance info updated at this
3469 point, so checking if
3470 dominated_by_p (CDI_DOMINATORS, succbb,
3471 gimple_bb (SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0)))
3472 would be too costly. Thus, avoid sinking any clobbers that
3473 refer to non-(D) SSA_NAMEs. */
3474 if (TREE_CODE (lhs) == MEM_REF
3475 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME
3476 && !SSA_NAME_IS_DEFAULT_DEF (TREE_OPERAND (lhs, 0)))
3478 unlink_stmt_vdef (stmt);
3479 gsi_remove (&gsi, true);
3480 release_defs (stmt);
3481 continue;
3484 /* As we do not change stmt order when sinking across a
3485 forwarder edge we can keep virtual operands in place. */
3486 gsi_remove (&gsi, false);
3487 gsi_insert_before (&dgsi, stmt, GSI_NEW_STMT);
3489 /* But adjust virtual operands if we sunk across a PHI node. */
3490 if (vuse)
3492 gimple use_stmt;
3493 imm_use_iterator iter;
3494 use_operand_p use_p;
3495 FOR_EACH_IMM_USE_STMT (use_stmt, iter, vuse)
3496 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
3497 SET_USE (use_p, gimple_vdef (stmt));
3498 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse))
3500 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_vdef (stmt)) = 1;
3501 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (vuse) = 0;
3503 /* Adjust the incoming virtual operand. */
3504 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (vphi, succe), gimple_vuse (stmt));
3505 SET_USE (gimple_vuse_op (stmt), vuse);
3507 /* If there isn't a single predecessor but no virtual PHI node
3508 arrange for virtual operands to be renamed. */
3509 else if (gimple_vuse_op (stmt) != NULL_USE_OPERAND_P
3510 && !single_pred_p (succbb))
3512 /* In this case there will be no use of the VDEF of this stmt.
3513 ??? Unless this is a secondary opportunity and we have not
3514 removed unreachable blocks yet, so we cannot assert this.
3515 Which also means we will end up renaming too many times. */
3516 SET_USE (gimple_vuse_op (stmt), gimple_vop (cfun));
3517 mark_virtual_operands_for_renaming (cfun);
3518 todo |= TODO_update_ssa_only_virtuals;
3522 return todo;
3525 /* At the end of inlining, we can lower EH_DISPATCH. Return true when
3526 we have found some duplicate labels and removed some edges. */
3528 static bool
3529 lower_eh_dispatch (basic_block src, gimple stmt)
3531 gimple_stmt_iterator gsi;
3532 int region_nr;
3533 eh_region r;
3534 tree filter, fn;
3535 gimple x;
3536 bool redirected = false;
3538 region_nr = gimple_eh_dispatch_region (stmt);
3539 r = get_eh_region_from_number (region_nr);
3541 gsi = gsi_last_bb (src);
3543 switch (r->type)
3545 case ERT_TRY:
3547 auto_vec<tree> labels;
3548 tree default_label = NULL;
3549 eh_catch c;
3550 edge_iterator ei;
3551 edge e;
3552 hash_set<tree> seen_values;
3554 /* Collect the labels for a switch. Zero the post_landing_pad
3555 field becase we'll no longer have anything keeping these labels
3556 in existence and the optimizer will be free to merge these
3557 blocks at will. */
3558 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
3560 tree tp_node, flt_node, lab = c->label;
3561 bool have_label = false;
3563 c->label = NULL;
3564 tp_node = c->type_list;
3565 flt_node = c->filter_list;
3567 if (tp_node == NULL)
3569 default_label = lab;
3570 break;
3574 /* Filter out duplicate labels that arise when this handler
3575 is shadowed by an earlier one. When no labels are
3576 attached to the handler anymore, we remove
3577 the corresponding edge and then we delete unreachable
3578 blocks at the end of this pass. */
3579 if (! seen_values.contains (TREE_VALUE (flt_node)))
3581 tree t = build_case_label (TREE_VALUE (flt_node),
3582 NULL, lab);
3583 labels.safe_push (t);
3584 seen_values.add (TREE_VALUE (flt_node));
3585 have_label = true;
3588 tp_node = TREE_CHAIN (tp_node);
3589 flt_node = TREE_CHAIN (flt_node);
3591 while (tp_node);
3592 if (! have_label)
3594 remove_edge (find_edge (src, label_to_block (lab)));
3595 redirected = true;
3599 /* Clean up the edge flags. */
3600 FOR_EACH_EDGE (e, ei, src->succs)
3602 if (e->flags & EDGE_FALLTHRU)
3604 /* If there was no catch-all, use the fallthru edge. */
3605 if (default_label == NULL)
3606 default_label = gimple_block_label (e->dest);
3607 e->flags &= ~EDGE_FALLTHRU;
3610 gcc_assert (default_label != NULL);
3612 /* Don't generate a switch if there's only a default case.
3613 This is common in the form of try { A; } catch (...) { B; }. */
3614 if (!labels.exists ())
3616 e = single_succ_edge (src);
3617 e->flags |= EDGE_FALLTHRU;
3619 else
3621 fn = builtin_decl_implicit (BUILT_IN_EH_FILTER);
3622 x = gimple_build_call (fn, 1, build_int_cst (integer_type_node,
3623 region_nr));
3624 filter = create_tmp_var (TREE_TYPE (TREE_TYPE (fn)), NULL);
3625 filter = make_ssa_name (filter, x);
3626 gimple_call_set_lhs (x, filter);
3627 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3629 /* Turn the default label into a default case. */
3630 default_label = build_case_label (NULL, NULL, default_label);
3631 sort_case_labels (labels);
3633 x = gimple_build_switch (filter, default_label, labels);
3634 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3637 break;
3639 case ERT_ALLOWED_EXCEPTIONS:
3641 edge b_e = BRANCH_EDGE (src);
3642 edge f_e = FALLTHRU_EDGE (src);
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 r->u.allowed.label = NULL;
3653 x = gimple_build_cond (EQ_EXPR, filter,
3654 build_int_cst (TREE_TYPE (filter),
3655 r->u.allowed.filter),
3656 NULL_TREE, NULL_TREE);
3657 gsi_insert_before (&gsi, x, GSI_SAME_STMT);
3659 b_e->flags = b_e->flags | EDGE_TRUE_VALUE;
3660 f_e->flags = (f_e->flags & ~EDGE_FALLTHRU) | EDGE_FALSE_VALUE;
3662 break;
3664 default:
3665 gcc_unreachable ();
3668 /* Replace the EH_DISPATCH with the SWITCH or COND generated above. */
3669 gsi_remove (&gsi, true);
3670 return redirected;
3673 namespace {
3675 const pass_data pass_data_lower_eh_dispatch =
3677 GIMPLE_PASS, /* type */
3678 "ehdisp", /* name */
3679 OPTGROUP_NONE, /* optinfo_flags */
3680 TV_TREE_EH, /* tv_id */
3681 PROP_gimple_lcf, /* properties_required */
3682 0, /* properties_provided */
3683 0, /* properties_destroyed */
3684 0, /* todo_flags_start */
3685 0, /* todo_flags_finish */
3688 class pass_lower_eh_dispatch : public gimple_opt_pass
3690 public:
3691 pass_lower_eh_dispatch (gcc::context *ctxt)
3692 : gimple_opt_pass (pass_data_lower_eh_dispatch, ctxt)
3695 /* opt_pass methods: */
3696 virtual bool gate (function *fun) { return fun->eh->region_tree != NULL; }
3697 virtual unsigned int execute (function *);
3699 }; // class pass_lower_eh_dispatch
3701 unsigned
3702 pass_lower_eh_dispatch::execute (function *fun)
3704 basic_block bb;
3705 int flags = 0;
3706 bool redirected = false;
3708 assign_filter_values ();
3710 FOR_EACH_BB_FN (bb, fun)
3712 gimple last = last_stmt (bb);
3713 if (last == NULL)
3714 continue;
3715 if (gimple_code (last) == GIMPLE_EH_DISPATCH)
3717 redirected |= lower_eh_dispatch (bb, last);
3718 flags |= TODO_update_ssa_only_virtuals;
3720 else if (gimple_code (last) == GIMPLE_RESX)
3722 if (stmt_can_throw_external (last))
3723 optimize_clobbers (bb);
3724 else
3725 flags |= sink_clobbers (bb);
3729 if (redirected)
3730 delete_unreachable_blocks ();
3731 return flags;
3734 } // anon namespace
3736 gimple_opt_pass *
3737 make_pass_lower_eh_dispatch (gcc::context *ctxt)
3739 return new pass_lower_eh_dispatch (ctxt);
3742 /* Walk statements, see what regions and, optionally, landing pads
3743 are really referenced.
3745 Returns in R_REACHABLEP an sbitmap with bits set for reachable regions,
3746 and in LP_REACHABLE an sbitmap with bits set for reachable landing pads.
3748 Passing NULL for LP_REACHABLE is valid, in this case only reachable
3749 regions are marked.
3751 The caller is responsible for freeing the returned sbitmaps. */
3753 static void
3754 mark_reachable_handlers (sbitmap *r_reachablep, sbitmap *lp_reachablep)
3756 sbitmap r_reachable, lp_reachable;
3757 basic_block bb;
3758 bool mark_landing_pads = (lp_reachablep != NULL);
3759 gcc_checking_assert (r_reachablep != NULL);
3761 r_reachable = sbitmap_alloc (cfun->eh->region_array->length ());
3762 bitmap_clear (r_reachable);
3763 *r_reachablep = r_reachable;
3765 if (mark_landing_pads)
3767 lp_reachable = sbitmap_alloc (cfun->eh->lp_array->length ());
3768 bitmap_clear (lp_reachable);
3769 *lp_reachablep = lp_reachable;
3771 else
3772 lp_reachable = NULL;
3774 FOR_EACH_BB_FN (bb, cfun)
3776 gimple_stmt_iterator gsi;
3778 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3780 gimple stmt = gsi_stmt (gsi);
3782 if (mark_landing_pads)
3784 int lp_nr = lookup_stmt_eh_lp (stmt);
3786 /* Negative LP numbers are MUST_NOT_THROW regions which
3787 are not considered BB enders. */
3788 if (lp_nr < 0)
3789 bitmap_set_bit (r_reachable, -lp_nr);
3791 /* Positive LP numbers are real landing pads, and BB enders. */
3792 else if (lp_nr > 0)
3794 gcc_assert (gsi_one_before_end_p (gsi));
3795 eh_region region = get_eh_region_from_lp_number (lp_nr);
3796 bitmap_set_bit (r_reachable, region->index);
3797 bitmap_set_bit (lp_reachable, lp_nr);
3801 /* Avoid removing regions referenced from RESX/EH_DISPATCH. */
3802 switch (gimple_code (stmt))
3804 case GIMPLE_RESX:
3805 bitmap_set_bit (r_reachable, gimple_resx_region (stmt));
3806 break;
3807 case GIMPLE_EH_DISPATCH:
3808 bitmap_set_bit (r_reachable, gimple_eh_dispatch_region (stmt));
3809 break;
3810 default:
3811 break;
3817 /* Remove unreachable handlers and unreachable landing pads. */
3819 static void
3820 remove_unreachable_handlers (void)
3822 sbitmap r_reachable, lp_reachable;
3823 eh_region region;
3824 eh_landing_pad lp;
3825 unsigned i;
3827 mark_reachable_handlers (&r_reachable, &lp_reachable);
3829 if (dump_file)
3831 fprintf (dump_file, "Before removal of unreachable regions:\n");
3832 dump_eh_tree (dump_file, cfun);
3833 fprintf (dump_file, "Reachable regions: ");
3834 dump_bitmap_file (dump_file, r_reachable);
3835 fprintf (dump_file, "Reachable landing pads: ");
3836 dump_bitmap_file (dump_file, lp_reachable);
3839 if (dump_file)
3841 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3842 if (region && !bitmap_bit_p (r_reachable, region->index))
3843 fprintf (dump_file,
3844 "Removing unreachable region %d\n",
3845 region->index);
3848 remove_unreachable_eh_regions (r_reachable);
3850 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3851 if (lp && !bitmap_bit_p (lp_reachable, lp->index))
3853 if (dump_file)
3854 fprintf (dump_file,
3855 "Removing unreachable landing pad %d\n",
3856 lp->index);
3857 remove_eh_landing_pad (lp);
3860 if (dump_file)
3862 fprintf (dump_file, "\n\nAfter removal of unreachable regions:\n");
3863 dump_eh_tree (dump_file, cfun);
3864 fprintf (dump_file, "\n\n");
3867 sbitmap_free (r_reachable);
3868 sbitmap_free (lp_reachable);
3870 #ifdef ENABLE_CHECKING
3871 verify_eh_tree (cfun);
3872 #endif
3875 /* Remove unreachable handlers if any landing pads have been removed after
3876 last ehcleanup pass (due to gimple_purge_dead_eh_edges). */
3878 void
3879 maybe_remove_unreachable_handlers (void)
3881 eh_landing_pad lp;
3882 unsigned i;
3884 if (cfun->eh == NULL)
3885 return;
3887 FOR_EACH_VEC_SAFE_ELT (cfun->eh->lp_array, i, lp)
3888 if (lp && lp->post_landing_pad)
3890 if (label_to_block (lp->post_landing_pad) == NULL)
3892 remove_unreachable_handlers ();
3893 return;
3898 /* Remove regions that do not have landing pads. This assumes
3899 that remove_unreachable_handlers has already been run, and
3900 that we've just manipulated the landing pads since then.
3902 Preserve regions with landing pads and regions that prevent
3903 exceptions from propagating further, even if these regions
3904 are not reachable. */
3906 static void
3907 remove_unreachable_handlers_no_lp (void)
3909 eh_region region;
3910 sbitmap r_reachable;
3911 unsigned i;
3913 mark_reachable_handlers (&r_reachable, /*lp_reachablep=*/NULL);
3915 FOR_EACH_VEC_SAFE_ELT (cfun->eh->region_array, i, region)
3917 if (! region)
3918 continue;
3920 if (region->landing_pads != NULL
3921 || region->type == ERT_MUST_NOT_THROW)
3922 bitmap_set_bit (r_reachable, region->index);
3924 if (dump_file
3925 && !bitmap_bit_p (r_reachable, region->index))
3926 fprintf (dump_file,
3927 "Removing unreachable region %d\n",
3928 region->index);
3931 remove_unreachable_eh_regions (r_reachable);
3933 sbitmap_free (r_reachable);
3936 /* Undo critical edge splitting on an EH landing pad. Earlier, we
3937 optimisticaly split all sorts of edges, including EH edges. The
3938 optimization passes in between may not have needed them; if not,
3939 we should undo the split.
3941 Recognize this case by having one EH edge incoming to the BB and
3942 one normal edge outgoing; BB should be empty apart from the
3943 post_landing_pad label.
3945 Note that this is slightly different from the empty handler case
3946 handled by cleanup_empty_eh, in that the actual handler may yet
3947 have actual code but the landing pad has been separated from the
3948 handler. As such, cleanup_empty_eh relies on this transformation
3949 having been done first. */
3951 static bool
3952 unsplit_eh (eh_landing_pad lp)
3954 basic_block bb = label_to_block (lp->post_landing_pad);
3955 gimple_stmt_iterator gsi;
3956 edge e_in, e_out;
3958 /* Quickly check the edge counts on BB for singularity. */
3959 if (!single_pred_p (bb) || !single_succ_p (bb))
3960 return false;
3961 e_in = single_pred_edge (bb);
3962 e_out = single_succ_edge (bb);
3964 /* Input edge must be EH and output edge must be normal. */
3965 if ((e_in->flags & EDGE_EH) == 0 || (e_out->flags & EDGE_EH) != 0)
3966 return false;
3968 /* The block must be empty except for the labels and debug insns. */
3969 gsi = gsi_after_labels (bb);
3970 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
3971 gsi_next_nondebug (&gsi);
3972 if (!gsi_end_p (gsi))
3973 return false;
3975 /* The destination block must not already have a landing pad
3976 for a different region. */
3977 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
3979 gimple stmt = gsi_stmt (gsi);
3980 tree lab;
3981 int lp_nr;
3983 if (gimple_code (stmt) != GIMPLE_LABEL)
3984 break;
3985 lab = gimple_label_label (stmt);
3986 lp_nr = EH_LANDING_PAD_NR (lab);
3987 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
3988 return false;
3991 /* The new destination block must not already be a destination of
3992 the source block, lest we merge fallthru and eh edges and get
3993 all sorts of confused. */
3994 if (find_edge (e_in->src, e_out->dest))
3995 return false;
3997 /* ??? We can get degenerate phis due to cfg cleanups. I would have
3998 thought this should have been cleaned up by a phicprop pass, but
3999 that doesn't appear to handle virtuals. Propagate by hand. */
4000 if (!gimple_seq_empty_p (phi_nodes (bb)))
4002 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); )
4004 gimple use_stmt, phi = gsi_stmt (gsi);
4005 tree lhs = gimple_phi_result (phi);
4006 tree rhs = gimple_phi_arg_def (phi, 0);
4007 use_operand_p use_p;
4008 imm_use_iterator iter;
4010 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
4012 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
4013 SET_USE (use_p, rhs);
4016 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
4017 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs) = 1;
4019 remove_phi_node (&gsi, true);
4023 if (dump_file && (dump_flags & TDF_DETAILS))
4024 fprintf (dump_file, "Unsplit EH landing pad %d to block %i.\n",
4025 lp->index, e_out->dest->index);
4027 /* Redirect the edge. Since redirect_eh_edge_1 expects to be moving
4028 a successor edge, humor it. But do the real CFG change with the
4029 predecessor of E_OUT in order to preserve the ordering of arguments
4030 to the PHI nodes in E_OUT->DEST. */
4031 redirect_eh_edge_1 (e_in, e_out->dest, false);
4032 redirect_edge_pred (e_out, e_in->src);
4033 e_out->flags = e_in->flags;
4034 e_out->probability = e_in->probability;
4035 e_out->count = e_in->count;
4036 remove_edge (e_in);
4038 return true;
4041 /* Examine each landing pad block and see if it matches unsplit_eh. */
4043 static bool
4044 unsplit_all_eh (void)
4046 bool changed = false;
4047 eh_landing_pad lp;
4048 int i;
4050 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4051 if (lp)
4052 changed |= unsplit_eh (lp);
4054 return changed;
4057 /* A subroutine of cleanup_empty_eh. Redirect all EH edges incoming
4058 to OLD_BB to NEW_BB; return true on success, false on failure.
4060 OLD_BB_OUT is the edge into NEW_BB from OLD_BB, so if we miss any
4061 PHI variables from OLD_BB we can pick them up from OLD_BB_OUT.
4062 Virtual PHIs may be deleted and marked for renaming. */
4064 static bool
4065 cleanup_empty_eh_merge_phis (basic_block new_bb, basic_block old_bb,
4066 edge old_bb_out, bool change_region)
4068 gimple_stmt_iterator ngsi, ogsi;
4069 edge_iterator ei;
4070 edge e;
4071 bitmap ophi_handled;
4073 /* The destination block must not be a regular successor for any
4074 of the preds of the landing pad. Thus, avoid turning
4075 <..>
4076 | \ EH
4077 | <..>
4079 <..>
4080 into
4081 <..>
4082 | | EH
4083 <..>
4084 which CFG verification would choke on. See PR45172 and PR51089. */
4085 FOR_EACH_EDGE (e, ei, old_bb->preds)
4086 if (find_edge (e->src, new_bb))
4087 return false;
4089 FOR_EACH_EDGE (e, ei, old_bb->preds)
4090 redirect_edge_var_map_clear (e);
4092 ophi_handled = BITMAP_ALLOC (NULL);
4094 /* First, iterate through the PHIs on NEW_BB and set up the edge_var_map
4095 for the edges we're going to move. */
4096 for (ngsi = gsi_start_phis (new_bb); !gsi_end_p (ngsi); gsi_next (&ngsi))
4098 gimple ophi, nphi = gsi_stmt (ngsi);
4099 tree nresult, nop;
4101 nresult = gimple_phi_result (nphi);
4102 nop = gimple_phi_arg_def (nphi, old_bb_out->dest_idx);
4104 /* Find the corresponding PHI in OLD_BB so we can forward-propagate
4105 the source ssa_name. */
4106 ophi = NULL;
4107 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4109 ophi = gsi_stmt (ogsi);
4110 if (gimple_phi_result (ophi) == nop)
4111 break;
4112 ophi = NULL;
4115 /* If we did find the corresponding PHI, copy those inputs. */
4116 if (ophi)
4118 /* If NOP is used somewhere else beyond phis in new_bb, give up. */
4119 if (!has_single_use (nop))
4121 imm_use_iterator imm_iter;
4122 use_operand_p use_p;
4124 FOR_EACH_IMM_USE_FAST (use_p, imm_iter, nop)
4126 if (!gimple_debug_bind_p (USE_STMT (use_p))
4127 && (gimple_code (USE_STMT (use_p)) != GIMPLE_PHI
4128 || gimple_bb (USE_STMT (use_p)) != new_bb))
4129 goto fail;
4132 bitmap_set_bit (ophi_handled, SSA_NAME_VERSION (nop));
4133 FOR_EACH_EDGE (e, ei, old_bb->preds)
4135 location_t oloc;
4136 tree oop;
4138 if ((e->flags & EDGE_EH) == 0)
4139 continue;
4140 oop = gimple_phi_arg_def (ophi, e->dest_idx);
4141 oloc = gimple_phi_arg_location (ophi, e->dest_idx);
4142 redirect_edge_var_map_add (e, nresult, oop, oloc);
4145 /* If we didn't find the PHI, if it's a real variable or a VOP, we know
4146 from the fact that OLD_BB is tree_empty_eh_handler_p that the
4147 variable is unchanged from input to the block and we can simply
4148 re-use the input to NEW_BB from the OLD_BB_OUT edge. */
4149 else
4151 location_t nloc
4152 = gimple_phi_arg_location (nphi, old_bb_out->dest_idx);
4153 FOR_EACH_EDGE (e, ei, old_bb->preds)
4154 redirect_edge_var_map_add (e, nresult, nop, nloc);
4158 /* Second, verify that all PHIs from OLD_BB have been handled. If not,
4159 we don't know what values from the other edges into NEW_BB to use. */
4160 for (ogsi = gsi_start_phis (old_bb); !gsi_end_p (ogsi); gsi_next (&ogsi))
4162 gimple ophi = gsi_stmt (ogsi);
4163 tree oresult = gimple_phi_result (ophi);
4164 if (!bitmap_bit_p (ophi_handled, SSA_NAME_VERSION (oresult)))
4165 goto fail;
4168 /* Finally, move the edges and update the PHIs. */
4169 for (ei = ei_start (old_bb->preds); (e = ei_safe_edge (ei)); )
4170 if (e->flags & EDGE_EH)
4172 /* ??? CFG manipluation routines do not try to update loop
4173 form on edge redirection. Do so manually here for now. */
4174 /* If we redirect a loop entry or latch edge that will either create
4175 a multiple entry loop or rotate the loop. If the loops merge
4176 we may have created a loop with multiple latches.
4177 All of this isn't easily fixed thus cancel the affected loop
4178 and mark the other loop as possibly having multiple latches. */
4179 if (e->dest == e->dest->loop_father->header)
4181 mark_loop_for_removal (e->dest->loop_father);
4182 new_bb->loop_father->latch = NULL;
4183 loops_state_set (LOOPS_MAY_HAVE_MULTIPLE_LATCHES);
4185 redirect_eh_edge_1 (e, new_bb, change_region);
4186 redirect_edge_succ (e, new_bb);
4187 flush_pending_stmts (e);
4189 else
4190 ei_next (&ei);
4192 BITMAP_FREE (ophi_handled);
4193 return true;
4195 fail:
4196 FOR_EACH_EDGE (e, ei, old_bb->preds)
4197 redirect_edge_var_map_clear (e);
4198 BITMAP_FREE (ophi_handled);
4199 return false;
4202 /* A subroutine of cleanup_empty_eh. Move a landing pad LP from its
4203 old region to NEW_REGION at BB. */
4205 static void
4206 cleanup_empty_eh_move_lp (basic_block bb, edge e_out,
4207 eh_landing_pad lp, eh_region new_region)
4209 gimple_stmt_iterator gsi;
4210 eh_landing_pad *pp;
4212 for (pp = &lp->region->landing_pads; *pp != lp; pp = &(*pp)->next_lp)
4213 continue;
4214 *pp = lp->next_lp;
4216 lp->region = new_region;
4217 lp->next_lp = new_region->landing_pads;
4218 new_region->landing_pads = lp;
4220 /* Delete the RESX that was matched within the empty handler block. */
4221 gsi = gsi_last_bb (bb);
4222 unlink_stmt_vdef (gsi_stmt (gsi));
4223 gsi_remove (&gsi, true);
4225 /* Clean up E_OUT for the fallthru. */
4226 e_out->flags = (e_out->flags & ~EDGE_EH) | EDGE_FALLTHRU;
4227 e_out->probability = REG_BR_PROB_BASE;
4230 /* A subroutine of cleanup_empty_eh. Handle more complex cases of
4231 unsplitting than unsplit_eh was prepared to handle, e.g. when
4232 multiple incoming edges and phis are involved. */
4234 static bool
4235 cleanup_empty_eh_unsplit (basic_block bb, edge e_out, eh_landing_pad lp)
4237 gimple_stmt_iterator gsi;
4238 tree lab;
4240 /* We really ought not have totally lost everything following
4241 a landing pad label. Given that BB is empty, there had better
4242 be a successor. */
4243 gcc_assert (e_out != NULL);
4245 /* The destination block must not already have a landing pad
4246 for a different region. */
4247 lab = NULL;
4248 for (gsi = gsi_start_bb (e_out->dest); !gsi_end_p (gsi); gsi_next (&gsi))
4250 gimple stmt = gsi_stmt (gsi);
4251 int lp_nr;
4253 if (gimple_code (stmt) != GIMPLE_LABEL)
4254 break;
4255 lab = gimple_label_label (stmt);
4256 lp_nr = EH_LANDING_PAD_NR (lab);
4257 if (lp_nr && get_eh_region_from_lp_number (lp_nr) != lp->region)
4258 return false;
4261 /* Attempt to move the PHIs into the successor block. */
4262 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, false))
4264 if (dump_file && (dump_flags & TDF_DETAILS))
4265 fprintf (dump_file,
4266 "Unsplit EH landing pad %d to block %i "
4267 "(via cleanup_empty_eh).\n",
4268 lp->index, e_out->dest->index);
4269 return true;
4272 return false;
4275 /* Return true if edge E_FIRST is part of an empty infinite loop
4276 or leads to such a loop through a series of single successor
4277 empty bbs. */
4279 static bool
4280 infinite_empty_loop_p (edge e_first)
4282 bool inf_loop = false;
4283 edge e;
4285 if (e_first->dest == e_first->src)
4286 return true;
4288 e_first->src->aux = (void *) 1;
4289 for (e = e_first; single_succ_p (e->dest); e = single_succ_edge (e->dest))
4291 gimple_stmt_iterator gsi;
4292 if (e->dest->aux)
4294 inf_loop = true;
4295 break;
4297 e->dest->aux = (void *) 1;
4298 gsi = gsi_after_labels (e->dest);
4299 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4300 gsi_next_nondebug (&gsi);
4301 if (!gsi_end_p (gsi))
4302 break;
4304 e_first->src->aux = NULL;
4305 for (e = e_first; e->dest->aux; e = single_succ_edge (e->dest))
4306 e->dest->aux = NULL;
4308 return inf_loop;
4311 /* Examine the block associated with LP to determine if it's an empty
4312 handler for its EH region. If so, attempt to redirect EH edges to
4313 an outer region. Return true the CFG was updated in any way. This
4314 is similar to jump forwarding, just across EH edges. */
4316 static bool
4317 cleanup_empty_eh (eh_landing_pad lp)
4319 basic_block bb = label_to_block (lp->post_landing_pad);
4320 gimple_stmt_iterator gsi;
4321 gimple resx;
4322 eh_region new_region;
4323 edge_iterator ei;
4324 edge e, e_out;
4325 bool has_non_eh_pred;
4326 bool ret = false;
4327 int new_lp_nr;
4329 /* There can be zero or one edges out of BB. This is the quickest test. */
4330 switch (EDGE_COUNT (bb->succs))
4332 case 0:
4333 e_out = NULL;
4334 break;
4335 case 1:
4336 e_out = single_succ_edge (bb);
4337 break;
4338 default:
4339 return false;
4342 resx = last_stmt (bb);
4343 if (resx && is_gimple_resx (resx))
4345 if (stmt_can_throw_external (resx))
4346 optimize_clobbers (bb);
4347 else if (sink_clobbers (bb))
4348 ret = true;
4351 gsi = gsi_after_labels (bb);
4353 /* Make sure to skip debug statements. */
4354 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
4355 gsi_next_nondebug (&gsi);
4357 /* If the block is totally empty, look for more unsplitting cases. */
4358 if (gsi_end_p (gsi))
4360 /* For the degenerate case of an infinite loop bail out.
4361 If bb has no successors and is totally empty, which can happen e.g.
4362 because of incorrect noreturn attribute, bail out too. */
4363 if (e_out == NULL
4364 || infinite_empty_loop_p (e_out))
4365 return ret;
4367 return ret | cleanup_empty_eh_unsplit (bb, e_out, lp);
4370 /* The block should consist only of a single RESX statement, modulo a
4371 preceding call to __builtin_stack_restore if there is no outgoing
4372 edge, since the call can be eliminated in this case. */
4373 resx = gsi_stmt (gsi);
4374 if (!e_out && gimple_call_builtin_p (resx, BUILT_IN_STACK_RESTORE))
4376 gsi_next (&gsi);
4377 resx = gsi_stmt (gsi);
4379 if (!is_gimple_resx (resx))
4380 return ret;
4381 gcc_assert (gsi_one_before_end_p (gsi));
4383 /* Determine if there are non-EH edges, or resx edges into the handler. */
4384 has_non_eh_pred = false;
4385 FOR_EACH_EDGE (e, ei, bb->preds)
4386 if (!(e->flags & EDGE_EH))
4387 has_non_eh_pred = true;
4389 /* Find the handler that's outer of the empty handler by looking at
4390 where the RESX instruction was vectored. */
4391 new_lp_nr = lookup_stmt_eh_lp (resx);
4392 new_region = get_eh_region_from_lp_number (new_lp_nr);
4394 /* If there's no destination region within the current function,
4395 redirection is trivial via removing the throwing statements from
4396 the EH region, removing the EH edges, and allowing the block
4397 to go unreachable. */
4398 if (new_region == NULL)
4400 gcc_assert (e_out == NULL);
4401 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4402 if (e->flags & EDGE_EH)
4404 gimple stmt = last_stmt (e->src);
4405 remove_stmt_from_eh_lp (stmt);
4406 remove_edge (e);
4408 else
4409 ei_next (&ei);
4410 goto succeed;
4413 /* If the destination region is a MUST_NOT_THROW, allow the runtime
4414 to handle the abort and allow the blocks to go unreachable. */
4415 if (new_region->type == ERT_MUST_NOT_THROW)
4417 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4418 if (e->flags & EDGE_EH)
4420 gimple stmt = last_stmt (e->src);
4421 remove_stmt_from_eh_lp (stmt);
4422 add_stmt_to_eh_lp (stmt, new_lp_nr);
4423 remove_edge (e);
4425 else
4426 ei_next (&ei);
4427 goto succeed;
4430 /* Try to redirect the EH edges and merge the PHIs into the destination
4431 landing pad block. If the merge succeeds, we'll already have redirected
4432 all the EH edges. The handler itself will go unreachable if there were
4433 no normal edges. */
4434 if (cleanup_empty_eh_merge_phis (e_out->dest, bb, e_out, true))
4435 goto succeed;
4437 /* Finally, if all input edges are EH edges, then we can (potentially)
4438 reduce the number of transfers from the runtime by moving the landing
4439 pad from the original region to the new region. This is a win when
4440 we remove the last CLEANUP region along a particular exception
4441 propagation path. Since nothing changes except for the region with
4442 which the landing pad is associated, the PHI nodes do not need to be
4443 adjusted at all. */
4444 if (!has_non_eh_pred)
4446 cleanup_empty_eh_move_lp (bb, e_out, lp, new_region);
4447 if (dump_file && (dump_flags & TDF_DETAILS))
4448 fprintf (dump_file, "Empty EH handler %i moved to EH region %i.\n",
4449 lp->index, new_region->index);
4451 /* ??? The CFG didn't change, but we may have rendered the
4452 old EH region unreachable. Trigger a cleanup there. */
4453 return true;
4456 return ret;
4458 succeed:
4459 if (dump_file && (dump_flags & TDF_DETAILS))
4460 fprintf (dump_file, "Empty EH handler %i removed.\n", lp->index);
4461 remove_eh_landing_pad (lp);
4462 return true;
4465 /* Do a post-order traversal of the EH region tree. Examine each
4466 post_landing_pad block and see if we can eliminate it as empty. */
4468 static bool
4469 cleanup_all_empty_eh (void)
4471 bool changed = false;
4472 eh_landing_pad lp;
4473 int i;
4475 for (i = 1; vec_safe_iterate (cfun->eh->lp_array, i, &lp); ++i)
4476 if (lp)
4477 changed |= cleanup_empty_eh (lp);
4479 return changed;
4482 /* Perform cleanups and lowering of exception handling
4483 1) cleanups regions with handlers doing nothing are optimized out
4484 2) MUST_NOT_THROW regions that became dead because of 1) are optimized out
4485 3) Info about regions that are containing instructions, and regions
4486 reachable via local EH edges is collected
4487 4) Eh tree is pruned for regions no longer necessary.
4489 TODO: Push MUST_NOT_THROW regions to the root of the EH tree.
4490 Unify those that have the same failure decl and locus.
4493 static unsigned int
4494 execute_cleanup_eh_1 (void)
4496 /* Do this first: unsplit_all_eh and cleanup_all_empty_eh can die
4497 looking up unreachable landing pads. */
4498 remove_unreachable_handlers ();
4500 /* Watch out for the region tree vanishing due to all unreachable. */
4501 if (cfun->eh->region_tree)
4503 bool changed = false;
4505 if (optimize)
4506 changed |= unsplit_all_eh ();
4507 changed |= cleanup_all_empty_eh ();
4509 if (changed)
4511 free_dominance_info (CDI_DOMINATORS);
4512 free_dominance_info (CDI_POST_DOMINATORS);
4514 /* We delayed all basic block deletion, as we may have performed
4515 cleanups on EH edges while non-EH edges were still present. */
4516 delete_unreachable_blocks ();
4518 /* We manipulated the landing pads. Remove any region that no
4519 longer has a landing pad. */
4520 remove_unreachable_handlers_no_lp ();
4522 return TODO_cleanup_cfg | TODO_update_ssa_only_virtuals;
4526 return 0;
4529 namespace {
4531 const pass_data pass_data_cleanup_eh =
4533 GIMPLE_PASS, /* type */
4534 "ehcleanup", /* name */
4535 OPTGROUP_NONE, /* optinfo_flags */
4536 TV_TREE_EH, /* tv_id */
4537 PROP_gimple_lcf, /* properties_required */
4538 0, /* properties_provided */
4539 0, /* properties_destroyed */
4540 0, /* todo_flags_start */
4541 0, /* todo_flags_finish */
4544 class pass_cleanup_eh : public gimple_opt_pass
4546 public:
4547 pass_cleanup_eh (gcc::context *ctxt)
4548 : gimple_opt_pass (pass_data_cleanup_eh, ctxt)
4551 /* opt_pass methods: */
4552 opt_pass * clone () { return new pass_cleanup_eh (m_ctxt); }
4553 virtual bool gate (function *fun)
4555 return fun->eh != NULL && fun->eh->region_tree != NULL;
4558 virtual unsigned int execute (function *);
4560 }; // class pass_cleanup_eh
4562 unsigned int
4563 pass_cleanup_eh::execute (function *fun)
4565 int ret = execute_cleanup_eh_1 ();
4567 /* If the function no longer needs an EH personality routine
4568 clear it. This exposes cross-language inlining opportunities
4569 and avoids references to a never defined personality routine. */
4570 if (DECL_FUNCTION_PERSONALITY (current_function_decl)
4571 && function_needs_eh_personality (fun) != eh_personality_lang)
4572 DECL_FUNCTION_PERSONALITY (current_function_decl) = NULL_TREE;
4574 return ret;
4577 } // anon namespace
4579 gimple_opt_pass *
4580 make_pass_cleanup_eh (gcc::context *ctxt)
4582 return new pass_cleanup_eh (ctxt);
4585 /* Verify that BB containing STMT as the last statement, has precisely the
4586 edge that make_eh_edges would create. */
4588 DEBUG_FUNCTION bool
4589 verify_eh_edges (gimple stmt)
4591 basic_block bb = gimple_bb (stmt);
4592 eh_landing_pad lp = NULL;
4593 int lp_nr;
4594 edge_iterator ei;
4595 edge e, eh_edge;
4597 lp_nr = lookup_stmt_eh_lp (stmt);
4598 if (lp_nr > 0)
4599 lp = get_eh_landing_pad_from_number (lp_nr);
4601 eh_edge = NULL;
4602 FOR_EACH_EDGE (e, ei, bb->succs)
4604 if (e->flags & EDGE_EH)
4606 if (eh_edge)
4608 error ("BB %i has multiple EH edges", bb->index);
4609 return true;
4611 else
4612 eh_edge = e;
4616 if (lp == NULL)
4618 if (eh_edge)
4620 error ("BB %i can not throw but has an EH edge", bb->index);
4621 return true;
4623 return false;
4626 if (!stmt_could_throw_p (stmt))
4628 error ("BB %i last statement has incorrectly set lp", bb->index);
4629 return true;
4632 if (eh_edge == NULL)
4634 error ("BB %i is missing an EH edge", bb->index);
4635 return true;
4638 if (eh_edge->dest != label_to_block (lp->post_landing_pad))
4640 error ("Incorrect EH edge %i->%i", bb->index, eh_edge->dest->index);
4641 return true;
4644 return false;
4647 /* Similarly, but handle GIMPLE_EH_DISPATCH specifically. */
4649 DEBUG_FUNCTION bool
4650 verify_eh_dispatch_edge (gimple stmt)
4652 eh_region r;
4653 eh_catch c;
4654 basic_block src, dst;
4655 bool want_fallthru = true;
4656 edge_iterator ei;
4657 edge e, fall_edge;
4659 r = get_eh_region_from_number (gimple_eh_dispatch_region (stmt));
4660 src = gimple_bb (stmt);
4662 FOR_EACH_EDGE (e, ei, src->succs)
4663 gcc_assert (e->aux == NULL);
4665 switch (r->type)
4667 case ERT_TRY:
4668 for (c = r->u.eh_try.first_catch; c ; c = c->next_catch)
4670 dst = label_to_block (c->label);
4671 e = find_edge (src, dst);
4672 if (e == NULL)
4674 error ("BB %i is missing an edge", src->index);
4675 return true;
4677 e->aux = (void *)e;
4679 /* A catch-all handler doesn't have a fallthru. */
4680 if (c->type_list == NULL)
4682 want_fallthru = false;
4683 break;
4686 break;
4688 case ERT_ALLOWED_EXCEPTIONS:
4689 dst = label_to_block (r->u.allowed.label);
4690 e = find_edge (src, dst);
4691 if (e == NULL)
4693 error ("BB %i is missing an edge", src->index);
4694 return true;
4696 e->aux = (void *)e;
4697 break;
4699 default:
4700 gcc_unreachable ();
4703 fall_edge = NULL;
4704 FOR_EACH_EDGE (e, ei, src->succs)
4706 if (e->flags & EDGE_FALLTHRU)
4708 if (fall_edge != NULL)
4710 error ("BB %i too many fallthru edges", src->index);
4711 return true;
4713 fall_edge = e;
4715 else if (e->aux)
4716 e->aux = NULL;
4717 else
4719 error ("BB %i has incorrect edge", src->index);
4720 return true;
4723 if ((fall_edge != NULL) ^ want_fallthru)
4725 error ("BB %i has incorrect fallthru edge", src->index);
4726 return true;
4729 return false;